* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/tfdn/
@ 2021-11-08 13:02 Andrew Ammerlaan
0 siblings, 0 replies; 10+ messages in thread
From: Andrew Ammerlaan @ 2021-11-08 13:02 UTC (permalink / raw
To: gentoo-commits
commit: a9c4c0fca7795008020baf752385e94cb8792297
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sun Oct 31 08:51:36 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sat Nov 6 12:43:49 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a9c4c0fc
dev-libs/tfdn: initial import
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-libs/tfdn/Manifest | 1 +
dev-libs/tfdn/metadata.xml | 22 +++++++++++++++++++
dev-libs/tfdn/tfdn-1.0.1.ebuild | 47 +++++++++++++++++++++++++++++++++++++++++
3 files changed, 70 insertions(+)
diff --git a/dev-libs/tfdn/Manifest b/dev-libs/tfdn/Manifest
new file mode 100644
index 000000000..b8480ccb6
--- /dev/null
+++ b/dev-libs/tfdn/Manifest
@@ -0,0 +1 @@
+DIST tfdn-1.0.1.tar.gz 205687 BLAKE2B b399133d2a01fec2e7f83ebf5cfc33b3682f1e8fa17d42760c2ea86fb2fbe1e573efb08afe91b416d11e50d10141770071736d23ae332746fdec23feea7f64e9 SHA512 33d9f3f8b26e495f56586ef494c88ab35623dd3927b9c419ed9e3ed46f999aaeedf9723e267635b1dbf65f39ee20eecf54a5f498008b7d16241a58d7f832141c
diff --git a/dev-libs/tfdn/metadata.xml b/dev-libs/tfdn/metadata.xml
new file mode 100644
index 000000000..6ec671d56
--- /dev/null
+++ b/dev-libs/tfdn/metadata.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="person">
+ <email>cyber+gentoo@sysrq.in</email>
+ <name>Anna</name>
+</maintainer>
+<longdescription>
+ the_Foundation is a C11 library and a coding convention for
+ object-oriented programming that has been designed from the point of
+ view of someone who appreciates the user-friendliness of Qt and some of
+ the thinking behind C++ STL. The preprocessor is used heavily to provide
+ flexibility and convenience for the programmer.
+</longdescription>
+<upstream>
+ <maintainer>
+ <email>jaakko.keranen@iki.fi</email>
+ <name>Jaakko Keränen</name>
+ </maintainer>
+ <bugs-to>https://codeberg.org/skyjake/the_Foundation/issues/</bugs-to>
+</upstream>
+</pkgmetadata>
diff --git a/dev-libs/tfdn/tfdn-1.0.1.ebuild b/dev-libs/tfdn/tfdn-1.0.1.ebuild
new file mode 100644
index 000000000..ad1fa878f
--- /dev/null
+++ b/dev-libs/tfdn/tfdn-1.0.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DOCS_BUILDER="doxygen"
+DOCS_DEPEND="app-doc/doxygen[dot]"
+DOCS_CONFIG_NAME="the_Foundation.doxygen"
+inherit cmake docs
+
+MY_PN="the_foundation"
+DESCRIPTION="Opinionated C11 library for low-level functionality"
+HOMEPAGE="https://git.skyjake.fi/skyjake/the_Foundation"
+SRC_URI="https://git.skyjake.fi/skyjake/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${MY_PN}"
+
+LICENSE="BSD-2"
+SLOT="0/1"
+KEYWORDS="~amd64 ~x86"
+IUSE="cpu_flags_x86_sse4_1 curl debug ssl"
+
+DEPEND="
+ dev-libs/libpcre:3
+ dev-libs/libunistring:=
+ sys-libs/zlib:=
+ curl? ( net-misc/curl )
+ ssl? ( dev-libs/openssl:= )
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+ local mycmakeargs=(
+ -DTFDN_ENABLE_WARN_ERROR=OFF
+ -DTFDN_ENABLE_DEBUG_OUTPUT=$(usex debug)
+ -DTFDN_ENABLE_SSE41=$(usex cpu_flags_x86_sse4_1)
+ -DTFDN_ENABLE_TESTS=OFF # not actual tests
+ -DTFDN_ENABLE_TLSREQUEST=$(usex ssl)
+ -DTFDN_ENABLE_WEBREQUEST=$(usex curl)
+ )
+
+ cmake_src_configure
+}
+
+src_compile() {
+ cmake_src_compile
+ docs_compile
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/tfdn/
@ 2021-12-01 19:34 Andrew Ammerlaan
0 siblings, 0 replies; 10+ messages in thread
From: Andrew Ammerlaan @ 2021-12-01 19:34 UTC (permalink / raw
To: gentoo-commits
commit: f8cc813de3f0c22aa99c153a72a2c4ef0134f564
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Mon Nov 29 07:46:13 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon Nov 29 08:22:45 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f8cc813d
dev-libs/tfdn: add 1.0.2
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-libs/tfdn/Manifest | 1 +
dev-libs/tfdn/tfdn-1.0.2.ebuild | 47 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/dev-libs/tfdn/Manifest b/dev-libs/tfdn/Manifest
index b8480ccb6..06b578abf 100644
--- a/dev-libs/tfdn/Manifest
+++ b/dev-libs/tfdn/Manifest
@@ -1 +1,2 @@
DIST tfdn-1.0.1.tar.gz 205687 BLAKE2B b399133d2a01fec2e7f83ebf5cfc33b3682f1e8fa17d42760c2ea86fb2fbe1e573efb08afe91b416d11e50d10141770071736d23ae332746fdec23feea7f64e9 SHA512 33d9f3f8b26e495f56586ef494c88ab35623dd3927b9c419ed9e3ed46f999aaeedf9723e267635b1dbf65f39ee20eecf54a5f498008b7d16241a58d7f832141c
+DIST tfdn-1.0.2.tar.gz 205745 BLAKE2B 6e807c07d11b8120144a0d25f5c3ffb1f0f7b0b6397439bf16af8df3cab615782700966ff8c616c80213bd193edf4a2ba2e66b84a641560bbe1bf99da3d790e2 SHA512 fade7799ed2f890b2076567b7aaf7765520e4198fcee0fb394249a8d010ef6454c7807e406069fc916ddd63f7c54d054146b0d369c05dec9f92fcefa01a00521
diff --git a/dev-libs/tfdn/tfdn-1.0.2.ebuild b/dev-libs/tfdn/tfdn-1.0.2.ebuild
new file mode 100644
index 000000000..ad1fa878f
--- /dev/null
+++ b/dev-libs/tfdn/tfdn-1.0.2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DOCS_BUILDER="doxygen"
+DOCS_DEPEND="app-doc/doxygen[dot]"
+DOCS_CONFIG_NAME="the_Foundation.doxygen"
+inherit cmake docs
+
+MY_PN="the_foundation"
+DESCRIPTION="Opinionated C11 library for low-level functionality"
+HOMEPAGE="https://git.skyjake.fi/skyjake/the_Foundation"
+SRC_URI="https://git.skyjake.fi/skyjake/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${MY_PN}"
+
+LICENSE="BSD-2"
+SLOT="0/1"
+KEYWORDS="~amd64 ~x86"
+IUSE="cpu_flags_x86_sse4_1 curl debug ssl"
+
+DEPEND="
+ dev-libs/libpcre:3
+ dev-libs/libunistring:=
+ sys-libs/zlib:=
+ curl? ( net-misc/curl )
+ ssl? ( dev-libs/openssl:= )
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+ local mycmakeargs=(
+ -DTFDN_ENABLE_WARN_ERROR=OFF
+ -DTFDN_ENABLE_DEBUG_OUTPUT=$(usex debug)
+ -DTFDN_ENABLE_SSE41=$(usex cpu_flags_x86_sse4_1)
+ -DTFDN_ENABLE_TESTS=OFF # not actual tests
+ -DTFDN_ENABLE_TLSREQUEST=$(usex ssl)
+ -DTFDN_ENABLE_WEBREQUEST=$(usex curl)
+ )
+
+ cmake_src_configure
+}
+
+src_compile() {
+ cmake_src_compile
+ docs_compile
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/tfdn/
@ 2021-12-27 14:44 Florian Schmaus
0 siblings, 0 replies; 10+ messages in thread
From: Florian Schmaus @ 2021-12-27 14:44 UTC (permalink / raw
To: gentoo-commits
commit: 99fd6fc3ef2354cfecda4e3ff2d0e41f27030a4d
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Fri Dec 24 10:22:16 2021 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sat Dec 25 07:45:36 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=99fd6fc3
dev-libs/tfdn: add 1.0.3, drop 1.0.1
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-libs/tfdn/Manifest | 2 +-
dev-libs/tfdn/{tfdn-1.0.1.ebuild => tfdn-1.0.3.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/tfdn/Manifest b/dev-libs/tfdn/Manifest
index 06b578abf..1ce0e2f66 100644
--- a/dev-libs/tfdn/Manifest
+++ b/dev-libs/tfdn/Manifest
@@ -1,2 +1,2 @@
-DIST tfdn-1.0.1.tar.gz 205687 BLAKE2B b399133d2a01fec2e7f83ebf5cfc33b3682f1e8fa17d42760c2ea86fb2fbe1e573efb08afe91b416d11e50d10141770071736d23ae332746fdec23feea7f64e9 SHA512 33d9f3f8b26e495f56586ef494c88ab35623dd3927b9c419ed9e3ed46f999aaeedf9723e267635b1dbf65f39ee20eecf54a5f498008b7d16241a58d7f832141c
DIST tfdn-1.0.2.tar.gz 205745 BLAKE2B 6e807c07d11b8120144a0d25f5c3ffb1f0f7b0b6397439bf16af8df3cab615782700966ff8c616c80213bd193edf4a2ba2e66b84a641560bbe1bf99da3d790e2 SHA512 fade7799ed2f890b2076567b7aaf7765520e4198fcee0fb394249a8d010ef6454c7807e406069fc916ddd63f7c54d054146b0d369c05dec9f92fcefa01a00521
+DIST tfdn-1.0.3.tar.gz 205741 BLAKE2B 35065a0fc270cc7075a7223dcb69af110eb786f7358623555d3b1cf8061cd5fb4cddee8659c7ecb60389dc83fe367916372e2757cd58e82fb5926919bce8eeb9 SHA512 7d4d48a077e5ee43180d80e9e770ebb93c49750a10bd941bec1a71e17714619167c4be5d02fb7f0f3cf9f8380a3a28b9bd4e204bec59b28b21bcc1bbc905a33f
diff --git a/dev-libs/tfdn/tfdn-1.0.1.ebuild b/dev-libs/tfdn/tfdn-1.0.3.ebuild
similarity index 100%
rename from dev-libs/tfdn/tfdn-1.0.1.ebuild
rename to dev-libs/tfdn/tfdn-1.0.3.ebuild
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/tfdn/
@ 2022-03-08 13:39 Andrew Ammerlaan
0 siblings, 0 replies; 10+ messages in thread
From: Andrew Ammerlaan @ 2022-03-08 13:39 UTC (permalink / raw
To: gentoo-commits
commit: 2ac7451d04e349e9c697ec366a57b7311f132df8
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Tue Mar 8 09:52:26 2022 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Tue Mar 8 10:02:56 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2ac7451d
dev-libs/tfdn: add 1.2.0, drop 1.0.3
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-libs/tfdn/Manifest | 2 +-
dev-libs/tfdn/{tfdn-1.0.3.ebuild => tfdn-1.2.0.ebuild} | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-libs/tfdn/Manifest b/dev-libs/tfdn/Manifest
index b066975c6..79ef958e5 100644
--- a/dev-libs/tfdn/Manifest
+++ b/dev-libs/tfdn/Manifest
@@ -1,2 +1,2 @@
-DIST tfdn-1.0.3.tar.gz 205741 BLAKE2B 35065a0fc270cc7075a7223dcb69af110eb786f7358623555d3b1cf8061cd5fb4cddee8659c7ecb60389dc83fe367916372e2757cd58e82fb5926919bce8eeb9 SHA512 7d4d48a077e5ee43180d80e9e770ebb93c49750a10bd941bec1a71e17714619167c4be5d02fb7f0f3cf9f8380a3a28b9bd4e204bec59b28b21bcc1bbc905a33f
DIST tfdn-1.1.0.tar.gz 206457 BLAKE2B fe8f7a23cb116fc28f8206d3cc085b95a54def69366d0d1ace2174cf4ee5e28fdbd95ffa29b2ea9c716081f3397e7a044fd1205488ad1e5cb1cf0924df02bdfe SHA512 de738bccda56e914bb7ea112318b5272512c10d27a62abc296eba0ff0d100f42555c807d57d59a5efe4f200c90de113652d26dece2cf9665b110dda1dfd49146
+DIST tfdn-1.2.0.tar.gz 208334 BLAKE2B 84f48512a398c605201694f3a964b2c24a4a429e3f44d84ff830cc40b43f6fc3ae34e5813cd3a37b44ab8d1c8037af0c34726f144a0e1a8c214b507bbc536979 SHA512 53d0f42b1b5d75a4ff77e8ca1b14dc8426ecc92dff88d216cf4c4f8d1b7ac368a8bbbf6897ac7ece66a9b3eb77b9000cff93b86aa587950888e36dea0472962a
diff --git a/dev-libs/tfdn/tfdn-1.0.3.ebuild b/dev-libs/tfdn/tfdn-1.2.0.ebuild
similarity index 95%
rename from dev-libs/tfdn/tfdn-1.0.3.ebuild
rename to dev-libs/tfdn/tfdn-1.2.0.ebuild
index ad1fa878f..00a31854d 100644
--- a/dev-libs/tfdn/tfdn-1.0.3.ebuild
+++ b/dev-libs/tfdn/tfdn-1.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -15,7 +15,7 @@ SRC_URI="https://git.skyjake.fi/skyjake/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.t
S="${WORKDIR}/${MY_PN}"
LICENSE="BSD-2"
-SLOT="0/1"
+SLOT="0/1.2"
KEYWORDS="~amd64 ~x86"
IUSE="cpu_flags_x86_sse4_1 curl debug ssl"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/tfdn/
@ 2022-04-12 19:35 Ronny Gutbrod
0 siblings, 0 replies; 10+ messages in thread
From: Ronny Gutbrod @ 2022-04-12 19:35 UTC (permalink / raw
To: gentoo-commits
commit: c32560505d9244be889b83761d68e14f7c279c2a
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sat Apr 9 18:46:04 2022 +0000
Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Mon Apr 11 09:41:02 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c3256050
dev-libs/tfdn: add 1.3.0, drop 1.1.0
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-libs/tfdn/Manifest | 2 +-
dev-libs/tfdn/{tfdn-1.1.0.ebuild => tfdn-1.3.0.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/tfdn/Manifest b/dev-libs/tfdn/Manifest
index 79ef958e5..bc73ee9f8 100644
--- a/dev-libs/tfdn/Manifest
+++ b/dev-libs/tfdn/Manifest
@@ -1,2 +1,2 @@
-DIST tfdn-1.1.0.tar.gz 206457 BLAKE2B fe8f7a23cb116fc28f8206d3cc085b95a54def69366d0d1ace2174cf4ee5e28fdbd95ffa29b2ea9c716081f3397e7a044fd1205488ad1e5cb1cf0924df02bdfe SHA512 de738bccda56e914bb7ea112318b5272512c10d27a62abc296eba0ff0d100f42555c807d57d59a5efe4f200c90de113652d26dece2cf9665b110dda1dfd49146
DIST tfdn-1.2.0.tar.gz 208334 BLAKE2B 84f48512a398c605201694f3a964b2c24a4a429e3f44d84ff830cc40b43f6fc3ae34e5813cd3a37b44ab8d1c8037af0c34726f144a0e1a8c214b507bbc536979 SHA512 53d0f42b1b5d75a4ff77e8ca1b14dc8426ecc92dff88d216cf4c4f8d1b7ac368a8bbbf6897ac7ece66a9b3eb77b9000cff93b86aa587950888e36dea0472962a
+DIST tfdn-1.3.0.tar.gz 210376 BLAKE2B 1d2ee5f7c4b48b869dff2669f2d4b2bcc72a2e850bda083f780d378260ab6fe869bea56fc1263024ff3069daf9824148affdeab08ea4f727f548ebda2c8a65b3 SHA512 6bdeeecfe83f08abe54f8c518827f812433aee9e67d267e0f66b1a547e34acb251e65f340498d1f95e264a1d17e88cf11c1014ac0183023752c59a6d79979c8a
diff --git a/dev-libs/tfdn/tfdn-1.1.0.ebuild b/dev-libs/tfdn/tfdn-1.3.0.ebuild
similarity index 97%
rename from dev-libs/tfdn/tfdn-1.1.0.ebuild
rename to dev-libs/tfdn/tfdn-1.3.0.ebuild
index c4aa23739..8afeec395 100644
--- a/dev-libs/tfdn/tfdn-1.1.0.ebuild
+++ b/dev-libs/tfdn/tfdn-1.3.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://git.skyjake.fi/skyjake/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.t
S="${WORKDIR}/${MY_PN}"
LICENSE="BSD-2"
-SLOT="0/1"
+SLOT="0/$(ver_cut 1-2)"
KEYWORDS="~amd64 ~x86"
IUSE="cpu_flags_x86_sse4_1 curl debug ssl"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/tfdn/
@ 2022-06-03 10:44 Florian Schmaus
0 siblings, 0 replies; 10+ messages in thread
From: Florian Schmaus @ 2022-06-03 10:44 UTC (permalink / raw
To: gentoo-commits
commit: c124d8346bed7e1613c8fe1c95560dcff6100b6c
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Fri Jun 3 00:03:10 2022 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Fri Jun 3 01:18:53 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c124d834
dev-libs/tfdn: add 1.4.0, drop 1.2.0
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-libs/tfdn/Manifest | 2 +-
dev-libs/tfdn/{tfdn-1.2.0.ebuild => tfdn-1.4.0.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/tfdn/Manifest b/dev-libs/tfdn/Manifest
index bc73ee9f8..b311bffef 100644
--- a/dev-libs/tfdn/Manifest
+++ b/dev-libs/tfdn/Manifest
@@ -1,2 +1,2 @@
-DIST tfdn-1.2.0.tar.gz 208334 BLAKE2B 84f48512a398c605201694f3a964b2c24a4a429e3f44d84ff830cc40b43f6fc3ae34e5813cd3a37b44ab8d1c8037af0c34726f144a0e1a8c214b507bbc536979 SHA512 53d0f42b1b5d75a4ff77e8ca1b14dc8426ecc92dff88d216cf4c4f8d1b7ac368a8bbbf6897ac7ece66a9b3eb77b9000cff93b86aa587950888e36dea0472962a
DIST tfdn-1.3.0.tar.gz 210376 BLAKE2B 1d2ee5f7c4b48b869dff2669f2d4b2bcc72a2e850bda083f780d378260ab6fe869bea56fc1263024ff3069daf9824148affdeab08ea4f727f548ebda2c8a65b3 SHA512 6bdeeecfe83f08abe54f8c518827f812433aee9e67d267e0f66b1a547e34acb251e65f340498d1f95e264a1d17e88cf11c1014ac0183023752c59a6d79979c8a
+DIST tfdn-1.4.0.tar.gz 210489 BLAKE2B fb4f1ca35b502464d64153d022da641d039dc53632104cd5528dc9280cbd760415e917b97aef88fcf32e729d1974470f656ea16651d4ba5805c4a78d45b4f89a SHA512 1b0ff1ff5e243a0caa905f7a744a9ec92695cfe0600f171a6ab11c03799b7cce128bd4809cf70ab7c392f3f8e55c30cabc0bb288cfa26b6b59bd3d9280cd3446
diff --git a/dev-libs/tfdn/tfdn-1.2.0.ebuild b/dev-libs/tfdn/tfdn-1.4.0.ebuild
similarity index 97%
rename from dev-libs/tfdn/tfdn-1.2.0.ebuild
rename to dev-libs/tfdn/tfdn-1.4.0.ebuild
index 00a31854d..8afeec395 100644
--- a/dev-libs/tfdn/tfdn-1.2.0.ebuild
+++ b/dev-libs/tfdn/tfdn-1.4.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://git.skyjake.fi/skyjake/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.t
S="${WORKDIR}/${MY_PN}"
LICENSE="BSD-2"
-SLOT="0/1.2"
+SLOT="0/$(ver_cut 1-2)"
KEYWORDS="~amd64 ~x86"
IUSE="cpu_flags_x86_sse4_1 curl debug ssl"
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/tfdn/
@ 2022-11-26 10:54 Florian Schmaus
0 siblings, 0 replies; 10+ messages in thread
From: Florian Schmaus @ 2022-11-26 10:54 UTC (permalink / raw
To: gentoo-commits
commit: 438ea1c24b80a3323201b62141b6d4aaff7ec068
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Fri Nov 25 11:05:43 2022 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Fri Nov 25 11:36:59 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=438ea1c2
dev-libs/tfdn: add 1.5.0, drop 1.3.0
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-libs/tfdn/Manifest | 2 +-
dev-libs/tfdn/{tfdn-1.3.0.ebuild => tfdn-1.5.0.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/tfdn/Manifest b/dev-libs/tfdn/Manifest
index b311bffef..0d1875089 100644
--- a/dev-libs/tfdn/Manifest
+++ b/dev-libs/tfdn/Manifest
@@ -1,2 +1,2 @@
-DIST tfdn-1.3.0.tar.gz 210376 BLAKE2B 1d2ee5f7c4b48b869dff2669f2d4b2bcc72a2e850bda083f780d378260ab6fe869bea56fc1263024ff3069daf9824148affdeab08ea4f727f548ebda2c8a65b3 SHA512 6bdeeecfe83f08abe54f8c518827f812433aee9e67d267e0f66b1a547e34acb251e65f340498d1f95e264a1d17e88cf11c1014ac0183023752c59a6d79979c8a
DIST tfdn-1.4.0.tar.gz 210489 BLAKE2B fb4f1ca35b502464d64153d022da641d039dc53632104cd5528dc9280cbd760415e917b97aef88fcf32e729d1974470f656ea16651d4ba5805c4a78d45b4f89a SHA512 1b0ff1ff5e243a0caa905f7a744a9ec92695cfe0600f171a6ab11c03799b7cce128bd4809cf70ab7c392f3f8e55c30cabc0bb288cfa26b6b59bd3d9280cd3446
+DIST tfdn-1.5.0.tar.gz 211135 BLAKE2B c98fa677e3aa00d57895539ec6178fc2fd7f0505646170d86281c9e973b81e90ce4a39040307e8a14ad15bdf6670f85addfc159dce8907508088c6f85c529ea5 SHA512 e37dd1c0153e2a8e2c4d6128874383038257203dc9ec6ecaeed42eda24f7991bc64ab9ef9cb7f4ac6cc9b230fa8f0dfaa3c4b8275358a7cb2362c8cfd0655713
diff --git a/dev-libs/tfdn/tfdn-1.3.0.ebuild b/dev-libs/tfdn/tfdn-1.5.0.ebuild
similarity index 98%
rename from dev-libs/tfdn/tfdn-1.3.0.ebuild
rename to dev-libs/tfdn/tfdn-1.5.0.ebuild
index 8afeec395..181f45bba 100644
--- a/dev-libs/tfdn/tfdn-1.3.0.ebuild
+++ b/dev-libs/tfdn/tfdn-1.5.0.ebuild
@@ -20,7 +20,7 @@ KEYWORDS="~amd64 ~x86"
IUSE="cpu_flags_x86_sse4_1 curl debug ssl"
DEPEND="
- dev-libs/libpcre:3
+ dev-libs/libpcre2:=
dev-libs/libunistring:=
sys-libs/zlib:=
curl? ( net-misc/curl )
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/tfdn/
@ 2023-10-30 11:27 David Roman
0 siblings, 0 replies; 10+ messages in thread
From: David Roman @ 2023-10-30 11:27 UTC (permalink / raw
To: gentoo-commits
commit: c45c2ce0d4d3ef17c5e51d6ad62895fd572ecd60
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Mon Oct 30 06:00:53 2023 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Mon Oct 30 06:00:53 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c45c2ce0
dev-libs/tfdn: add 1.7.0, drop 1.5.0
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-libs/tfdn/Manifest | 2 +-
dev-libs/tfdn/{tfdn-1.5.0.ebuild => tfdn-1.7.0.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/tfdn/Manifest b/dev-libs/tfdn/Manifest
index 544b6641c8..8f6b2dc3fa 100644
--- a/dev-libs/tfdn/Manifest
+++ b/dev-libs/tfdn/Manifest
@@ -1,2 +1,2 @@
-DIST tfdn-1.5.0.tar.gz 211135 BLAKE2B c98fa677e3aa00d57895539ec6178fc2fd7f0505646170d86281c9e973b81e90ce4a39040307e8a14ad15bdf6670f85addfc159dce8907508088c6f85c529ea5 SHA512 e37dd1c0153e2a8e2c4d6128874383038257203dc9ec6ecaeed42eda24f7991bc64ab9ef9cb7f4ac6cc9b230fa8f0dfaa3c4b8275358a7cb2362c8cfd0655713
DIST tfdn-1.6.0.tar.gz 212502 BLAKE2B 95335b0d76f320a67214d95d43f89539dfee115092455cf05218983422a3e6fa4d771abedc47b97db454a94a19856b0e34e13fa5dc5040272a2f5db595998a17 SHA512 ddbfa31c1089e26fb63005e37263c62454da7ef015cb3b86cc1b76b07664df231de33d70a43ef91bc601f9ce7a6953ce570e6947f54a6e3063a9940e22e624aa
+DIST tfdn-1.7.0.tar.gz 218322 BLAKE2B 708c4191b6d4a9ba07b0cdfda4f6082214a730d0f43a3a23de88292100ae30ca7f1eb174b893779dff541774ebed33edcfbcb7bd57db0d372def62bd537a44e7 SHA512 895291d2b5bd7f74adbef1c2a3de40d3c8b2605202aa30e5beb3bbdbfe09c2b0640616c7fc13e0501a4c698a3df99c6e908d6650e4192ddc3a666754fc1a0fb5
diff --git a/dev-libs/tfdn/tfdn-1.5.0.ebuild b/dev-libs/tfdn/tfdn-1.7.0.ebuild
similarity index 96%
rename from dev-libs/tfdn/tfdn-1.5.0.ebuild
rename to dev-libs/tfdn/tfdn-1.7.0.ebuild
index 181f45bba1..6bdafc4317 100644
--- a/dev-libs/tfdn/tfdn-1.5.0.ebuild
+++ b/dev-libs/tfdn/tfdn-1.7.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021-2022 Gentoo Authors
+# Copyright 2021-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/tfdn/
@ 2024-04-14 15:23 Julien Roy
0 siblings, 0 replies; 10+ messages in thread
From: Julien Roy @ 2024-04-14 15:23 UTC (permalink / raw
To: gentoo-commits
commit: 7d6dedcc2486c1e1244875ae95d96ad9161342ee
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sun Apr 14 15:13:54 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sun Apr 14 15:14:58 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7d6dedcc
dev-libs/tfdn: add 1.8.1, drop 1.6.0
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-libs/tfdn/Manifest | 2 +-
dev-libs/tfdn/{tfdn-1.6.0.ebuild => tfdn-1.8.1.ebuild} | 7 ++++---
2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/dev-libs/tfdn/Manifest b/dev-libs/tfdn/Manifest
index 8f6b2dc3fa..2a6ef723ec 100644
--- a/dev-libs/tfdn/Manifest
+++ b/dev-libs/tfdn/Manifest
@@ -1,2 +1,2 @@
-DIST tfdn-1.6.0.tar.gz 212502 BLAKE2B 95335b0d76f320a67214d95d43f89539dfee115092455cf05218983422a3e6fa4d771abedc47b97db454a94a19856b0e34e13fa5dc5040272a2f5db595998a17 SHA512 ddbfa31c1089e26fb63005e37263c62454da7ef015cb3b86cc1b76b07664df231de33d70a43ef91bc601f9ce7a6953ce570e6947f54a6e3063a9940e22e624aa
DIST tfdn-1.7.0.tar.gz 218322 BLAKE2B 708c4191b6d4a9ba07b0cdfda4f6082214a730d0f43a3a23de88292100ae30ca7f1eb174b893779dff541774ebed33edcfbcb7bd57db0d372def62bd537a44e7 SHA512 895291d2b5bd7f74adbef1c2a3de40d3c8b2605202aa30e5beb3bbdbfe09c2b0640616c7fc13e0501a4c698a3df99c6e908d6650e4192ddc3a666754fc1a0fb5
+DIST tfdn-1.8.1.tar.gz 219300 BLAKE2B 4a52097efe0d980cced2d0ecf46a4e6e727ff04bd55849dd34b6908e096a81d9c230b8b9d87ab8eb84ba13b47c0f9c396a9eda21bc2fc56bad69fe7652eb3ee5 SHA512 1546a4228e1ce94881486f6a7c45903bfee49366c0a65a5804b185a0d8580b0cfa9c8e0fc8a5e36910e12e7c5cc03fe7d2c6b9257fa61c90c8a1f72e2b333f79
diff --git a/dev-libs/tfdn/tfdn-1.6.0.ebuild b/dev-libs/tfdn/tfdn-1.8.1.ebuild
similarity index 88%
rename from dev-libs/tfdn/tfdn-1.6.0.ebuild
rename to dev-libs/tfdn/tfdn-1.8.1.ebuild
index a52a07ebbe..1ae0d8a9a8 100644
--- a/dev-libs/tfdn/tfdn-1.6.0.ebuild
+++ b/dev-libs/tfdn/tfdn-1.8.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021-2023 Gentoo Authors
+# Copyright 2021-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -6,7 +6,7 @@ EAPI=8
DOCS_BUILDER="doxygen"
DOCS_DEPEND="app-text/doxygen[dot]"
DOCS_CONFIG_NAME="the_Foundation.doxygen"
-inherit cmake docs
+inherit cmake docs flag-o-matic
MY_PN="the_foundation"
DESCRIPTION="Opinionated C11 library for low-level functionality"
@@ -15,7 +15,7 @@ SRC_URI="https://git.skyjake.fi/skyjake/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.t
S="${WORKDIR}/${MY_PN}"
LICENSE="BSD-2"
-SLOT="0/$(ver_cut 1-2)"
+SLOT="0/1.7"
KEYWORDS="~amd64 ~x86"
IUSE="cpu_flags_x86_sse4_1 curl debug ssl"
@@ -38,6 +38,7 @@ src_configure() {
-DTFDN_ENABLE_WEBREQUEST=$(usex curl)
)
+ append-cppflags $(usex debug "-UNDEBUG" "-DNDEBUG")
cmake_src_configure
}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-libs/tfdn/
@ 2024-10-16 15:15 David Roman
0 siblings, 0 replies; 10+ messages in thread
From: David Roman @ 2024-10-16 15:15 UTC (permalink / raw
To: gentoo-commits
commit: a2ff523eb6ae113bce32f5d4a2773018f008901d
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Oct 16 11:19:49 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Wed Oct 16 11:19:49 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a2ff523e
dev-libs/tfdn: add 1.9.1, drop 1.8.1
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-libs/tfdn/Manifest | 2 +-
dev-libs/tfdn/{tfdn-1.8.1.ebuild => tfdn-1.9.1.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/tfdn/Manifest b/dev-libs/tfdn/Manifest
index 253615c58..69236132f 100644
--- a/dev-libs/tfdn/Manifest
+++ b/dev-libs/tfdn/Manifest
@@ -1,2 +1,2 @@
-DIST tfdn-1.8.1.tar.gz 219300 BLAKE2B 4a52097efe0d980cced2d0ecf46a4e6e727ff04bd55849dd34b6908e096a81d9c230b8b9d87ab8eb84ba13b47c0f9c396a9eda21bc2fc56bad69fe7652eb3ee5 SHA512 1546a4228e1ce94881486f6a7c45903bfee49366c0a65a5804b185a0d8580b0cfa9c8e0fc8a5e36910e12e7c5cc03fe7d2c6b9257fa61c90c8a1f72e2b333f79
DIST tfdn-1.9.0.tar.gz 221354 BLAKE2B 510c393b52f44426358fb53adcfadd4e1ee2f3f5db97b0ef3f654fdfdab4183c799e4878633bbcd13ec1c03aeb02f7f13ee1283c800ea7d4de574902b52d2575 SHA512 92b604dafaa6a00c7698b9a63b1f12197a36f6c2b37de2f910d0090a76ec44ae99250b2dfc13017393955b939e6948c8ef21e7777edbb0fdb8f7d278d0716200
+DIST tfdn-1.9.1.tar.gz 221737 BLAKE2B 62594fb53b9b5a26ed488f3f1a7d92f61e89aeca9f7f1f2a62ded414f1895bcf58dcd5271e6610e083b7b03ae970a896d2199c0f4f79415a2ee54a85c1552c2b SHA512 26db999d742122015a359211ce9cb566794f82849f783a8898fc3ef307db2f5ff4bcb02b4d82bfe0ab263e42283303bbc58debd7c8dbbf6c43f8cf98e7e110fc
diff --git a/dev-libs/tfdn/tfdn-1.8.1.ebuild b/dev-libs/tfdn/tfdn-1.9.1.ebuild
similarity index 100%
rename from dev-libs/tfdn/tfdn-1.8.1.ebuild
rename to dev-libs/tfdn/tfdn-1.9.1.ebuild
^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-10-16 15:15 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-08 13:39 [gentoo-commits] repo/proj/guru:master commit in: dev-libs/tfdn/ Andrew Ammerlaan
-- strict thread matches above, loose matches on Subject: below --
2024-10-16 15:15 David Roman
2024-04-14 15:23 Julien Roy
2023-10-30 11:27 David Roman
2022-11-26 10:54 Florian Schmaus
2022-06-03 10:44 Florian Schmaus
2022-04-12 19:35 Ronny Gutbrod
2021-12-27 14:44 Florian Schmaus
2021-12-01 19:34 Andrew Ammerlaan
2021-11-08 13:02 Andrew Ammerlaan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox