Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: rapidcheck
@ 2023-08-15 14:47 argenet
  2023-08-15 14:54 ` ahesford
  2023-08-15 14:54 ` [PR PATCH] [Closed]: " ahesford
  0 siblings, 2 replies; 3+ messages in thread
From: argenet @ 2023-08-15 14:47 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1583 bytes --]

There is a new pull request by argenet against master on the void-packages repository

https://github.com/argenet/void-packages rapidcheck-new-package
https://github.com/void-linux/void-packages/pull/45614

New package: rapidcheck
Rapidcheck is a QuickCheck clone for C++.
This package is used by newer versions of the Nix package manager and so it needs to be introduced for the 'nix' package to be updated.

Rapidcheck has no versioning or tags, the revision supported and used by Nix is currently being used when building this package.

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**|**briefly**|**NO**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/45614.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rapidcheck-new-package-45614.patch --]
[-- Type: text/x-diff, Size: 2022 bytes --]

From 5f54cfecd4914eb9932613ec00102f473ac082b9 Mon Sep 17 00:00:00 2001
From: Vladimir Krivopalov <vladimir@krivopalov.ru>
Date: Tue, 15 Aug 2023 10:44:14 -0400
Subject: [PATCH] New package: rapidcheck

Rapidcheck is a QuickCheck clone for C++.
This package is used by newer versions of the Nix package manager and so
it needs to be introduced for the 'nix' package to be updated.

Rapidcheck has no versioning or tags, the revision supported and used by
Nix is currently being used when building this package.

Signed-off-by: Vladimir Krivopalov <vladimir.krivopalov@gmail.com>
---
 srcpkgs/rapidcheck/template | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 srcpkgs/rapidcheck/template

diff --git a/srcpkgs/rapidcheck/template b/srcpkgs/rapidcheck/template
new file mode 100644
index 0000000000000..2c64136d86c5e
--- /dev/null
+++ b/srcpkgs/rapidcheck/template
@@ -0,0 +1,32 @@
+# Template file for 'rapidcheck'
+
+# Upstream has no tags or release versioning, see:
+# https://github.com/emil-e/rapidcheck/issues/255
+# Commit here was picked based on what works to build nix.
+# https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/libraries/rapidcheck/default.nix
+pkgname=rapidcheck
+version=r1010.b78f892
+_commit=b78f89288c7e086d06e2a1e10b605d8375517a8a
+revision=1
+build_style=cmake
+configure_args="-DCMAKE_POSITION_INDEPENDENT_CODE=True -DRC_ENABLE_EXAMPLES=Off -DRC_ENABLE_TESTS=Off -DRC_INSTALL_ALL_EXTRAS=On"
+short_desc="QuickCheck clone for C++"
+maintainer="Vladimir Krivopalov <vladimir.krivopalov@gmail.com>"
+license="BSD-2-Clause"
+homepage="https://github.com/emil-e/rapidcheck"
+hostmakedepends="git cmake"
+
+do_fetch() {
+    rm -rf ${wrksrc}
+    git clone \
+    --filter=blob:none \
+    https://github.com/emil-e/rapidcheck ${wrksrc}
+    cd ${wrksrc}
+    git checkout ${_commit}
+}
+
+post_install() {
+    cd ${wrksrc}
+    cmake -P "build/cmake_install.cmake"
+    install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE.md
+}

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: New package: rapidcheck
  2023-08-15 14:47 [PR PATCH] New package: rapidcheck argenet
@ 2023-08-15 14:54 ` ahesford
  2023-08-15 14:54 ` [PR PATCH] [Closed]: " ahesford
  1 sibling, 0 replies; 3+ messages in thread
From: ahesford @ 2023-08-15 14:54 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 212 bytes --]

New comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/45614#issuecomment-1679077515

Comment:
Untagged repository checkouts are not accepted by Void for packaging.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PR PATCH] [Closed]: New package: rapidcheck
  2023-08-15 14:47 [PR PATCH] New package: rapidcheck argenet
  2023-08-15 14:54 ` ahesford
@ 2023-08-15 14:54 ` ahesford
  1 sibling, 0 replies; 3+ messages in thread
From: ahesford @ 2023-08-15 14:54 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1398 bytes --]

There's a closed pull request on the void-packages repository

New package: rapidcheck
https://github.com/void-linux/void-packages/pull/45614

Description:
Rapidcheck is a QuickCheck clone for C++.
This package is used by newer versions of the Nix package manager and so it needs to be introduced for the 'nix' package to be updated.

Rapidcheck has no versioning or tags, the revision supported and used by Nix is currently being used when building this package.

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-08-15 14:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-15 14:47 [PR PATCH] New package: rapidcheck argenet
2023-08-15 14:54 ` ahesford
2023-08-15 14:54 ` [PR PATCH] [Closed]: " ahesford

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).