~~Later revisions are available but they introduce pkgconfig support
which make vcpkg complain that hard coded file paths are deployed to
lib/pkgconfig/*.pc files and I am not sure what to do about them.~~
Upgraded to the latest revision to date.
<!-- If your PR fixes issues, please note that here by adding "Fixes
#NNNNNN." for each fixed issue on separate lines. -->
<!-- If you are still working on the PR, open it as a Draft:
https://github.blog/2019-02-14-introducing-draft-pull-requests/. -->
- [x] Changes comply with the [maintainer
guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md).
- [x] SHA512s are updated for each updated download.
- [x] The "supports" clause reflects platforms that may be fixed by this
new version.
- [x] Any fixed [CI
baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt)
entries are removed from that file.
- [x] Any patches that are no longer applied are deleted from the port's
directory.
- [x] The version database is fixed by rerunning `./vcpkg x-add-version
--all` and committing the result.
- [x] Only one version is added to each modified port's versions file.
* Updated rapidcheck to 2023-01-13.
* Updated version files.
* Add license note and quotes.
* Forgot to fix version DB :)
---------
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
* Add initial support for RapidCheck
Create a portfile for the C++ property-based testing library RapidCheck.
This port is relatively straight forward but there are a couple of caveats:
* The current port uses a branch from a fork that I modified as the CMake installation logic had some problems.
The library was almost exclusively used by being added as a subfolder so the CMake export machinery was probably not well tested.
* The changes are going to get merged into the main repository eventually and then it would be possible to change where the source
code is downloaded.
I am unaware when the main RapidCheck library maintainer will accept my pull request, so it is better to have this library in VCPKG
sooner, rather than later.
* Update the RapidCheck portfile to download the library sources for the main repository
* Since the maintainer of RapidCheck very quickly merged the required CMake modifications
to enable the proper installation of the library, it is better to now use the official
repository's master branch.
* Change the versioning of the library to be based on the date of the git reference chosen
since rapid check does not have an explicit versioning scheme.
* Update rapidcheck and modify configuration step
* [rapidcheck] Tidy