commit: 5fa220b6905554bd38aa4c33b9b117cdac4fef4a
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sat Jan 3 11:41:16 2026 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sat Jan 3 11:50:22 2026 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5fa220b6
dev-libs/tfdn: add 1.11.0, drop old
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-libs/tfdn/Manifest | 2 +-
.../{tfdn-1.10.1.ebuild => tfdn-1.11.0.ebuild} | 2 +-
dev-libs/tfdn/tfdn-1.9.1.ebuild | 48 ----------------------
3 files changed, 2 insertions(+), 50 deletions(-)
diff --git a/dev-libs/tfdn/Manifest b/dev-libs/tfdn/Manifest
index 8fe5b1a52d..14ab0a34e4 100644
--- a/dev-libs/tfdn/Manifest
+++ b/dev-libs/tfdn/Manifest
@@ -1,2 +1,2 @@
DIST tfdn-1.10.1.tar.gz 223167 BLAKE2B
71f464ecc4f7e7b645d46704b69cbd96f3d959816b27fa237ec9f97fa8a976a2c55a7c7178d09511bc4cbb059cd87e168634f6a53923cb6fdf10c5270d9d5b30
SHA512
566839fe7fb3d9a01cb2ba3f4d92c53ca5dc2795d4391e419ca8c4d1e1ec92a67f6aad86d9b01684f64d22db81b1a79f04f64f1a36fcfefcec51d92c06f02ad5
-DIST tfdn-1.9.1.tar.gz 221737 BLAKE2B
62594fb53b9b5a26ed488f3f1a7d92f61e89aeca9f7f1f2a62ded414f1895bcf58dcd5271e6610e083b7b03ae970a896d2199c0f4f79415a2ee54a85c1552c2b
SHA512
26db999d742122015a359211ce9cb566794f82849f783a8898fc3ef307db2f5ff4bcb02b4d82bfe0ab263e42283303bbc58debd7c8dbbf6c43f8cf98e7e110fc
+DIST tfdn-1.11.0.tar.gz 226808 BLAKE2B
c2c662f5fcf33cb129ea1a8dcdc588d4668273311ab8e5adbcd51955471b8b788dab739f7b4d9de7d0810fd1326bb1100db8cb5ab8f16f0ec0a0f8e22de6df91
SHA512
fb86e59626bf125b8a4b01dc3e58ec69f313baa307a3637393928b281dcac3b874e19052d5a8acb577ec6a6e32f9c8e9e19759cf1dff95bc82b95f5ef30f61e7
diff --git a/dev-libs/tfdn/tfdn-1.10.1.ebuild b/dev-libs/tfdn/tfdn-1.11.0.ebuild
similarity index 98%
rename from dev-libs/tfdn/tfdn-1.10.1.ebuild
rename to dev-libs/tfdn/tfdn-1.11.0.ebuild
index 9078c58bb3..2562ca43b1 100644
--- a/dev-libs/tfdn/tfdn-1.10.1.ebuild
+++ b/dev-libs/tfdn/tfdn-1.11.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.7"
+SLOT="0/1.11"
KEYWORDS="~amd64 ~x86"
IUSE="cpu_flags_x86_sse4_1 curl debug ssl"
diff --git a/dev-libs/tfdn/tfdn-1.9.1.ebuild b/dev-libs/tfdn/tfdn-1.9.1.ebuild
deleted file mode 100644
index 9078c58bb3..0000000000
--- a/dev-libs/tfdn/tfdn-1.9.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 2021-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DOCS_BUILDER="doxygen"
-DOCS_DEPEND="app-text/doxygen[dot]"
-DOCS_CONFIG_NAME="the_Foundation.doxygen"
-inherit cmake docs flag-o-matic
-
-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.7"
-KEYWORDS="~amd64 ~x86"
-IUSE="cpu_flags_x86_sse4_1 curl debug ssl"
-
-DEPEND="
- dev-libs/libpcre2:=
- dev-libs/libunistring:=
- virtual/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)
- )
-
- append-cppflags $(usex debug "-UNDEBUG" "-DNDEBUG")
- cmake_src_configure
-}
-
-src_compile() {
- cmake_src_compile
- docs_compile
-}