diff options
author | Sam James <sam@gentoo.org> | 2023-05-31 04:36:21 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-05-31 04:36:21 +0100 |
commit | 78edfb94ddbbc4a7996c9bb0b5563c95beee90bd (patch) | |
tree | 5e3bfe9193ff6a7a842e52adb87a1e9e08c82415 /net-misc/trurl | |
parent | sys-fs/btrfs-progs: Stabilize 6.2.2 x86, #907455 (diff) | |
download | gentoo-78edfb94ddbbc4a7996c9bb0b5563c95beee90bd.tar.gz gentoo-78edfb94ddbbc4a7996c9bb0b5563c95beee90bd.tar.bz2 gentoo-78edfb94ddbbc4a7996c9bb0b5563c95beee90bd.zip |
net-misc/trurl: drop 0.4
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-misc/trurl')
-rw-r--r-- | net-misc/trurl/Manifest | 1 | ||||
-rw-r--r-- | net-misc/trurl/trurl-0.4.ebuild | 44 |
2 files changed, 0 insertions, 45 deletions
diff --git a/net-misc/trurl/Manifest b/net-misc/trurl/Manifest index 25e2f1333270..5895b55fcee5 100644 --- a/net-misc/trurl/Manifest +++ b/net-misc/trurl/Manifest @@ -1,2 +1 @@ -DIST trurl-0.4.tar.gz 23602 BLAKE2B c780fc52010f868fddbe1a06feb1ed1df627eb9ff8916d0212c8196c1efeb282b06900d2259dbaa4abdbc3c68002b1f3dfeb308c4ae2202578c40c112120b77c SHA512 7d106bf7dd39fb39316a9890bc562a5824dc046acfa50b97954e87ba455b479a2b86cfbf09a130dd39000abbc2e0fdc7038109410cf44c97812489d410693a01 DIST trurl-0.5.tar.gz 28792 BLAKE2B e552d04599628ea17e19627a1aa24871bf71fb100253f6eb945a9062ad0db98ea0a87125cc2c6a5f05f8c0296953c972b8fc9a6d5c01bdbc74d9ab9e28b9094c SHA512 1bf81030e8c904e551180b5c51f37ebe382345f397165695b47554e3c712c568351a53a7527891807f89127ea270b72632b24388db4c8efee3e9994cae1def47 diff --git a/net-misc/trurl/trurl-0.4.ebuild b/net-misc/trurl/trurl-0.4.ebuild deleted file mode 100644 index 78443cfb2991..000000000000 --- a/net-misc/trurl/trurl-0.4.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -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" -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? ( - dev-lang/perl - virtual/perl-JSON-PP - ) -" - -src_compile() { - tc-export CC - - default -} - -src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install -} |