commit: 68b60f07a665122f7d4ba6707684554763f46855 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue Oct 8 07:06:09 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Oct 8 07:06:09 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68b60f07
net-misc/trurl: drop 0.14, 0.15.1 Signed-off-by: Sam James <sam <AT> gentoo.org> net-misc/trurl/Manifest | 2 - net-misc/trurl/files/trurl-0.14-fix-makefile.patch | 25 ---------- net-misc/trurl/trurl-0.14.ebuild | 53 ---------------------- net-misc/trurl/trurl-0.15.1.ebuild | 49 -------------------- 4 files changed, 129 deletions(-) diff --git a/net-misc/trurl/Manifest b/net-misc/trurl/Manifest index 909f70d23366..7b709110ceaf 100644 --- a/net-misc/trurl/Manifest +++ b/net-misc/trurl/Manifest @@ -1,3 +1 @@ -DIST trurl-0.14.tar.gz 47830 BLAKE2B 15be36ef5c5989cf15d3983827055c793f15ae59efe8e02cc2f55ad9b19c528bb568aacc0583590017a6d6a3a74db1bd6bd3e18d3fee1c7c7d86e71f503d57f7 SHA512 25c1a3035095065368c8a11547e1d918b6f688e293982895a7bc27d9e161c0193ceccfaa0c2440f5c42a8ba4d5176a3f6a4fb843f5fa573328ef9baf5a438165 -DIST trurl-0.15.1.tar.gz 51397 BLAKE2B 41104b5e3b9bfbba17aaa829e5a0766879af963c73f5548d26eac8a80c0f8eb61da77de11a4dfd6321be522121f12ab239384e8e720d72564d4c841d395de0f2 SHA512 b2aabc77861686de137f0013c8782309bf04c0fa51a657384dca0d0f89aa0ca166d7de2c5d7c5c1ff63c1c4a5564e127658e2965dc4ab164939c1c4223f76eac DIST trurl-0.16.tar.gz 54414 BLAKE2B ace93c0ec54e81131bed91a78092bb5a2768a92cf2dee763f29327221a2b5ac3f657c7500e1f1cb895a29c1dd73500c15140eaadede72a6ee57a31d7ebe5c414 SHA512 4411769ba36109dc0e0c27ff605b7b6eb9dc9da3ab53290dc0049f44d853f7363699a9e22716dbf4c2d912f5c0c1556ea0d14f55475f44b48ea2e320b00a75e7 diff --git a/net-misc/trurl/files/trurl-0.14-fix-makefile.patch b/net-misc/trurl/files/trurl-0.14-fix-makefile.patch deleted file mode 100644 index 2787f21015fd..000000000000 --- a/net-misc/trurl/files/trurl-0.14-fix-makefile.patch +++ /dev/null @@ -1,25 +0,0 @@ -See https://github.com/curl/trurl/pull/322 ---- a/Makefile -+++ b/Makefile -@@ -28,10 +28,10 @@ ifndef TRURL_IGNORE_CURL_CONFIG - LDLIBS += $$(curl-config --libs) - CFLAGS += $$(curl-config --cflags) - endif --CFLAGS += -W -Wall -Wshadow -Werror -pedantic -+CFLAGS += -W -Wall -Wshadow -pedantic - CFLAGS += -Wconversion -Wmissing-prototypes -Wwrite-strings -Wsign-compare -Wno-sign-conversion - ifndef NDEBUG --CFLAGS += -g -+CFLAGS += -Werror -g - endif - MANUAL = trurl.1 - -@@ -43,7 +43,7 @@ INSTALL ?= install - PYTHON3 ?= python3 - - $(TARGET): $(OBJS) -- $(CC) $(OBJS) -o $(TARGET) $(LDFLAGS) $(LDLIBS) -+ $(CC) $(LDFLAGS) $(OBJS) -o $(TARGET) $(LDLIBS) - - trurl.o: trurl.c version.h - diff --git a/net-misc/trurl/trurl-0.14.ebuild b/net-misc/trurl/trurl-0.14.ebuild deleted file mode 100644 index 5dfbbc31163e..000000000000 --- a/net-misc/trurl/trurl-0.14.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 2023-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..12} ) -inherit toolchain-funcs python-any-r1 - -DESCRIPTION="Command line tool for URL parsing and manipulation" -HOMEPAGE="https://curl.se/trurl/ https://daniel.haxx.se/blog/2023/04/03/introducing-trurl/" - -if [[ ${PV} == 9999 ]] ; then - EGIT_REPO_URI="https://github.com/curl/trurl" - inherit git-r3 -else - SRC_URI="https://github.com/curl/trurl/archive/refs/tags/${P}.tar.gz" - S="${WORKDIR}"/${PN}-${P} - - KEYWORDS="~amd64 ~arm ~arm64" -fi - -LICENSE="curl" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -# Older curls may work but not all features will be present -DEPEND=">=net-misc/curl-7.81.0" -RDEPEND="${DEPEND}" -BDEPEND="test? ( ${PYTHON_DEPS} )" - -PATCHES=( - "${FILESDIR}"/${PN}-0.14-fix-makefile.patch -) - -pkg_setup() { - use test && python-any-r1_pkg_setup -} - -src_compile() { - tc-export CC - export NDEBUG=1 - - default -} - -src_test() { - emake PYTHON3="${EPYTHON}" test -} - -src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install -} diff --git a/net-misc/trurl/trurl-0.15.1.ebuild b/net-misc/trurl/trurl-0.15.1.ebuild deleted file mode 100644 index b27cb174ba1e..000000000000 --- a/net-misc/trurl/trurl-0.15.1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 2023-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..12} ) -inherit toolchain-funcs python-any-r1 - -DESCRIPTION="Command line tool for URL parsing and manipulation" -HOMEPAGE="https://curl.se/trurl/ https://daniel.haxx.se/blog/2023/04/03/introducing-trurl/" - -if [[ ${PV} == 9999 ]] ; then - EGIT_REPO_URI="https://github.com/curl/trurl" - inherit git-r3 -else - SRC_URI="https://github.com/curl/trurl/archive/refs/tags/${P}.tar.gz" - S="${WORKDIR}"/${PN}-${P} - - KEYWORDS="~amd64 ~arm ~arm64" -fi - -LICENSE="curl" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -# Older curls may work but not all features will be present -DEPEND=">=net-misc/curl-7.81.0" -RDEPEND="${DEPEND}" -BDEPEND="test? ( ${PYTHON_DEPS} )" - -pkg_setup() { - use test && python-any-r1_pkg_setup -} - -src_compile() { - tc-export CC - export NDEBUG=1 - - default -} - -src_test() { - emake PYTHON3="${EPYTHON}" test -} - -src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install -}
