* [gentoo-commits] repo/gentoo:master commit in: dev-libs/zug/
@ 2024-07-13 18:02 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2024-07-13 18:02 UTC (permalink / raw
To: gentoo-commits
commit: 41760d52db4e0381cb5334ff0ed7d3abe6f070ca
Author: Sebastian Parborg <darkdefende <AT> gmail <DOT> com>
AuthorDate: Wed Jan 10 15:43:04 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 13 17:34:37 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41760d52
dev-libs/zug: new package, add 0.1.1
Signed-off-by: Sebastian Parborg <darkdefende <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/zug/Manifest | 1 +
dev-libs/zug/metadata.xml | 15 +++++++++++++++
dev-libs/zug/zug-0.1.1.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
3 files changed, 54 insertions(+)
diff --git a/dev-libs/zug/Manifest b/dev-libs/zug/Manifest
new file mode 100644
index 000000000000..b74bd015ded3
--- /dev/null
+++ b/dev-libs/zug/Manifest
@@ -0,0 +1 @@
+DIST zug-0.1.1.tar.gz 102857 BLAKE2B 659e557fcac7c00d8ec3dcb54839bd6fbb23ca46b9d2052197b2f5e983eec1dc4251b36ed920b6f43225ff98a8bd1d3e65218f301dd121bdf8c2394efbb5e1b3 SHA512 1348a0bdd7aed1a590287ff3a1c45c0cb1aef2aca12dc37e77705c2b2015704f766fac82833fa28beb79efe00f6ff63ee1dcb220cdc43517f625ba5edecc090c
diff --git a/dev-libs/zug/metadata.xml b/dev-libs/zug/metadata.xml
new file mode 100644
index 000000000000..31d7c54166cc
--- /dev/null
+++ b/dev-libs/zug/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person" proxied="yes">
+ <email>darkdefende@gmail.com</email>
+ <name>Sebastian Parborg</name>
+ </maintainer>
+ <maintainer type="project" proxied="proxy">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">arximboldi/zug</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-libs/zug/zug-0.1.1.ebuild b/dev-libs/zug/zug-0.1.1.ebuild
new file mode 100644
index 000000000000..1b99a2b549ac
--- /dev/null
+++ b/dev-libs/zug/zug-0.1.1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Transducers for C++"
+HOMEPAGE="https://sinusoid.es/zug/"
+SRC_URI="https://github.com/arximboldi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Boost-1.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ test? ( <dev-cpp/catch-3:0 )
+"
+
+src_configure() {
+ local mycmakeargs=(
+ -Dzug_BUILD_DOCS=OFF # Recheck if documentation is in a better state when bumping
+ -Dzug_BUILD_EXAMPLES=OFF
+ -Dzug_BUILD_TESTS=$(usex test)
+ )
+
+ cmake_src_configure
+}
+
+src_compile() {
+ cmake_src_compile
+ if use test; then
+ cmake_build tests
+ fi
+
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/zug/
@ 2024-07-13 18:02 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2024-07-13 18:02 UTC (permalink / raw
To: gentoo-commits
commit: 5ef236d84bacc14c04e67ecaa1f47b1a744ff157
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 13 17:51:28 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 13 17:51:28 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ef236d8
dev-libs/zug: disable finding ccache
This is for the user to specify, not to be done automagically.
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/zug/zug-0.1.1.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-libs/zug/zug-0.1.1.ebuild b/dev-libs/zug/zug-0.1.1.ebuild
index f6f0e778379f..9b3bb2436a40 100644
--- a/dev-libs/zug/zug-0.1.1.ebuild
+++ b/dev-libs/zug/zug-0.1.1.ebuild
@@ -21,6 +21,7 @@ BDEPEND="
src_configure() {
local mycmakeargs=(
+ -DCCACHE=no
-Dzug_BUILD_DOCS=OFF # Recheck if documentation is in a better state when bumping
-Dzug_BUILD_EXAMPLES=OFF
-Dzug_BUILD_TESTS=$(usex test)
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/zug/
@ 2024-07-13 18:02 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2024-07-13 18:02 UTC (permalink / raw
To: gentoo-commits
commit: e90af10567197e0a3e55724f46e23b42f6b87492
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 13 17:50:24 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 13 17:50:24 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e90af105
dev-libs/zug: fix RDEPEND->BDEPEND for test deps
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/zug/zug-0.1.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/zug/zug-0.1.1.ebuild b/dev-libs/zug/zug-0.1.1.ebuild
index 1b99a2b549ac..f6f0e778379f 100644
--- a/dev-libs/zug/zug-0.1.1.ebuild
+++ b/dev-libs/zug/zug-0.1.1.ebuild
@@ -15,7 +15,7 @@ KEYWORDS="~amd64"
IUSE="test"
RESTRICT="!test? ( test )"
-RDEPEND="
+BDEPEND="
test? ( <dev-cpp/catch-3:0 )
"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/zug/
@ 2024-07-13 20:36 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2024-07-13 20:36 UTC (permalink / raw
To: gentoo-commits
commit: 0d6606c34f9734adac204391254c447e638423c1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 13 20:36:13 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 13 20:36:13 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d6606c3
dev-libs/zug: Keyword 0.1.1 arm64, #936009
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/zug/zug-0.1.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/zug/zug-0.1.1.ebuild b/dev-libs/zug/zug-0.1.1.ebuild
index 9b3bb2436a40..1b6a10f771e6 100644
--- a/dev-libs/zug/zug-0.1.1.ebuild
+++ b/dev-libs/zug/zug-0.1.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/arximboldi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="Boost-1.0"
SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/zug/
@ 2024-07-14 18:34 Jakov Smolić
0 siblings, 0 replies; 8+ messages in thread
From: Jakov Smolić @ 2024-07-14 18:34 UTC (permalink / raw
To: gentoo-commits
commit: aa56b168089a8079e17cf2160ab30ca49d0754f4
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 14 18:33:54 2024 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun Jul 14 18:33:54 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa56b168
dev-libs/zug: Keyword 0.1.1 riscv, #936009
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-libs/zug/zug-0.1.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/zug/zug-0.1.1.ebuild b/dev-libs/zug/zug-0.1.1.ebuild
index 1b6a10f771e6..5daa480a025c 100644
--- a/dev-libs/zug/zug-0.1.1.ebuild
+++ b/dev-libs/zug/zug-0.1.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/arximboldi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="Boost-1.0"
SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="~amd64 ~arm64 ~riscv"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/zug/
@ 2024-07-16 7:04 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2024-07-16 7:04 UTC (permalink / raw
To: gentoo-commits
commit: cea470d6267050d1e21af5070c7c67e5a7e17f5f
Author: Sebastian Parborg <sebastian <AT> blender <DOT> org>
AuthorDate: Mon Jul 15 10:01:25 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul 16 07:04:01 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cea470d6
dev-libs/zug: Add missing boost dependency, fix Werror added per default
Closes: https://bugs.gentoo.org/936026
Closes: https://bugs.gentoo.org/936027
Signed-off-by: Sebastian Parborg <darkdefende <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/zug/zug-0.1.1-r1.ebuild | 42 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/dev-libs/zug/zug-0.1.1-r1.ebuild b/dev-libs/zug/zug-0.1.1-r1.ebuild
new file mode 100644
index 000000000000..6cccaf41364f
--- /dev/null
+++ b/dev-libs/zug/zug-0.1.1-r1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Transducers for C++"
+HOMEPAGE="https://sinusoid.es/zug/"
+SRC_URI="https://github.com/arximboldi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Boost-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND="dev-libs/boost:="
+
+BDEPEND="
+ test? ( <dev-cpp/catch-3:0 )
+"
+
+src_configure() {
+ local mycmakeargs=(
+ -DCCACHE=no
+ -DDISABLE_WERROR=yes
+ -Dzug_BUILD_DOCS=no # Recheck if documentation is in a better state when bumping
+ -Dzug_BUILD_EXAMPLES=no
+ -Dzug_BUILD_TESTS=$(usex test)
+ )
+
+ cmake_src_configure
+}
+
+src_compile() {
+ cmake_src_compile
+ if use test; then
+ cmake_build tests
+ fi
+
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/zug/
@ 2024-08-30 6:33 Joonas Niilola
0 siblings, 0 replies; 8+ messages in thread
From: Joonas Niilola @ 2024-08-30 6:33 UTC (permalink / raw
To: gentoo-commits
commit: f0737365af0f47e5a6cbeb612eda9d322dfd3beb
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 30 06:33:29 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Aug 30 06:33:47 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0737365
dev-libs/zug: Stabilize 0.1.1-r1 amd64, #936958
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/zug/zug-0.1.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/zug/zug-0.1.1-r1.ebuild b/dev-libs/zug/zug-0.1.1-r1.ebuild
index 6cccaf41364f..e4460dfc0aba 100644
--- a/dev-libs/zug/zug-0.1.1-r1.ebuild
+++ b/dev-libs/zug/zug-0.1.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/arximboldi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="Boost-1.0"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv"
+KEYWORDS="amd64 ~arm64 ~riscv"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/zug/
@ 2024-09-20 8:20 Arthur Zamarin
0 siblings, 0 replies; 8+ messages in thread
From: Arthur Zamarin @ 2024-09-20 8:20 UTC (permalink / raw
To: gentoo-commits
commit: 0d71b59f5f21d2c65e3f24cbd5084f22b6171bc0
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 20 08:19:34 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 20 08:19:34 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d71b59f
dev-libs/zug: Keyword 0.1.1-r1 x86, #936009
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-libs/zug/zug-0.1.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/zug/zug-0.1.1-r1.ebuild b/dev-libs/zug/zug-0.1.1-r1.ebuild
index e4460dfc0aba..aeaf0a9f2fb6 100644
--- a/dev-libs/zug/zug-0.1.1-r1.ebuild
+++ b/dev-libs/zug/zug-0.1.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/arximboldi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="Boost-1.0"
SLOT="0"
-KEYWORDS="amd64 ~arm64 ~riscv"
+KEYWORDS="amd64 ~arm64 ~riscv ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-09-20 8:20 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-13 18:02 [gentoo-commits] repo/gentoo:master commit in: dev-libs/zug/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-09-20 8:20 Arthur Zamarin
2024-08-30 6:33 Joonas Niilola
2024-07-16 7:04 Sam James
2024-07-14 18:34 Jakov Smolić
2024-07-13 20:36 Sam James
2024-07-13 18:02 Sam James
2024-07-13 18:02 Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox