* [gentoo-commits] repo/gentoo:master commit in: net-misc/trurl/
@ 2023-04-03 22:06 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2023-04-03 22:06 UTC (permalink / raw
To: gentoo-commits
commit: bd10c614994c083dd8087e4b77008c3e60353ff8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 3 22:04:54 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 3 22:05:35 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd10c614
net-misc/trurl: new package, add 0.2, add 9999
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/trurl/Manifest | 1 +
net-misc/trurl/metadata.xml | 11 +++++++++++
net-misc/trurl/trurl-0.2.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
net-misc/trurl/trurl-9999.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
4 files changed, 88 insertions(+)
diff --git a/net-misc/trurl/Manifest b/net-misc/trurl/Manifest
new file mode 100644
index 000000000000..47c21657781a
--- /dev/null
+++ b/net-misc/trurl/Manifest
@@ -0,0 +1 @@
+DIST trurl-0.2.tar.gz 9095 BLAKE2B 1fab191158ca914c6a8e561095edc5329f7b565849dc1add85d17c05062f46fa82160bc6595c16e28a216821ffab7944edbce3be4a38895191f3c901ccef611f SHA512 e6ad68183acefb09985b453d0bdc7d0afe9e4c916c4e32fe67cee9afd23aa437e0b538cdc9456bc2ed93dc8996c9c64efeeff74a1415f044d0c1e52d0f5f00c7
diff --git a/net-misc/trurl/metadata.xml b/net-misc/trurl/metadata.xml
new file mode 100644
index 000000000000..9c4ccfbaf759
--- /dev/null
+++ b/net-misc/trurl/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>sam@gentoo.org</email>
+ <name>Sam James</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">curl/trurl</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/net-misc/trurl/trurl-0.2.ebuild b/net-misc/trurl/trurl-0.2.ebuild
new file mode 100644
index 000000000000..d746c034e362
--- /dev/null
+++ b/net-misc/trurl/trurl-0.2.ebuild
@@ -0,0 +1,38 @@
+# 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://daniel.haxx.se/blog/2023/04/03/introducing-trurl/ https://github.com/curl/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 )"
+
+DEPEND=">=net-misc/curl-7.62.0"
+RDEPEND="${DEPEND}"
+BDEPEND="test? ( dev-lang/perl )"
+
+src_compile() {
+ tc-export CC
+
+ default
+}
+
+src_install() {
+ emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install
+}
diff --git a/net-misc/trurl/trurl-9999.ebuild b/net-misc/trurl/trurl-9999.ebuild
new file mode 100644
index 000000000000..d746c034e362
--- /dev/null
+++ b/net-misc/trurl/trurl-9999.ebuild
@@ -0,0 +1,38 @@
+# 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://daniel.haxx.se/blog/2023/04/03/introducing-trurl/ https://github.com/curl/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 )"
+
+DEPEND=">=net-misc/curl-7.62.0"
+RDEPEND="${DEPEND}"
+BDEPEND="test? ( dev-lang/perl )"
+
+src_compile() {
+ tc-export CC
+
+ default
+}
+
+src_install() {
+ emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/trurl/
@ 2023-04-06 8:15 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2023-04-06 8:15 UTC (permalink / raw
To: gentoo-commits
commit: 2d0f7d84ec46a188a72c0dd630e045db4f067043
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 6 08:13:52 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 6 08:14:41 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d0f7d84
net-misc/trurl: add 0.3
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/trurl/Manifest | 1 +
net-misc/trurl/{trurl-9999.ebuild => trurl-0.3.ebuild} | 9 +++++++--
net-misc/trurl/trurl-9999.ebuild | 9 +++++++--
3 files changed, 15 insertions(+), 4 deletions(-)
diff --git a/net-misc/trurl/Manifest b/net-misc/trurl/Manifest
index 47c21657781a..01260fdd3e92 100644
--- a/net-misc/trurl/Manifest
+++ b/net-misc/trurl/Manifest
@@ -1 +1,2 @@
DIST trurl-0.2.tar.gz 9095 BLAKE2B 1fab191158ca914c6a8e561095edc5329f7b565849dc1add85d17c05062f46fa82160bc6595c16e28a216821ffab7944edbce3be4a38895191f3c901ccef611f SHA512 e6ad68183acefb09985b453d0bdc7d0afe9e4c916c4e32fe67cee9afd23aa437e0b538cdc9456bc2ed93dc8996c9c64efeeff74a1415f044d0c1e52d0f5f00c7
+DIST trurl-0.3.tar.gz 11622 BLAKE2B 013554669c2c9ed8fc8090977d3a729bacb0200078283785b5ff9526317b0923de99ce33747358dd643e977fd67e024182ca03ae8153c05a9c14ce050f6c20df SHA512 c7361bc49439219177e6150804ee665103d37b80145d308fd02a4260134bb098d937279cb8c23a6192f307f9464ab0f34a34997251fdff13db623a9765b90e0c
diff --git a/net-misc/trurl/trurl-9999.ebuild b/net-misc/trurl/trurl-0.3.ebuild
similarity index 80%
copy from net-misc/trurl/trurl-9999.ebuild
copy to net-misc/trurl/trurl-0.3.ebuild
index d746c034e362..5c9ebf0edda3 100644
--- a/net-misc/trurl/trurl-9999.ebuild
+++ b/net-misc/trurl/trurl-0.3.ebuild
@@ -6,7 +6,7 @@ EAPI=8
inherit toolchain-funcs
DESCRIPTION="Command line tool for URL parsing and manipulation"
-HOMEPAGE="https://daniel.haxx.se/blog/2023/04/03/introducing-trurl/ https://github.com/curl/trurl"
+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"
@@ -25,7 +25,12 @@ RESTRICT="!test? ( test )"
DEPEND=">=net-misc/curl-7.62.0"
RDEPEND="${DEPEND}"
-BDEPEND="test? ( dev-lang/perl )"
+BDEPEND="
+ test? (
+ dev-lang/perl
+ virtual/perl-JSON-PP
+ )
+"
src_compile() {
tc-export CC
diff --git a/net-misc/trurl/trurl-9999.ebuild b/net-misc/trurl/trurl-9999.ebuild
index d746c034e362..5c9ebf0edda3 100644
--- a/net-misc/trurl/trurl-9999.ebuild
+++ b/net-misc/trurl/trurl-9999.ebuild
@@ -6,7 +6,7 @@ EAPI=8
inherit toolchain-funcs
DESCRIPTION="Command line tool for URL parsing and manipulation"
-HOMEPAGE="https://daniel.haxx.se/blog/2023/04/03/introducing-trurl/ https://github.com/curl/trurl"
+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"
@@ -25,7 +25,12 @@ RESTRICT="!test? ( test )"
DEPEND=">=net-misc/curl-7.62.0"
RDEPEND="${DEPEND}"
-BDEPEND="test? ( dev-lang/perl )"
+BDEPEND="
+ test? (
+ dev-lang/perl
+ virtual/perl-JSON-PP
+ )
+"
src_compile() {
tc-export CC
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/trurl/
@ 2023-04-10 9:50 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2023-04-10 9:50 UTC (permalink / raw
To: gentoo-commits
commit: ee67b712a8dbf167544a63486d289ef4c3590ea8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 10 09:27:39 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 10 09:27:39 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee67b712
net-misc/trurl: add 0.4
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/trurl/Manifest | 1 +
net-misc/trurl/{trurl-9999.ebuild => trurl-0.4.ebuild} | 3 ++-
net-misc/trurl/trurl-9999.ebuild | 3 ++-
3 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/net-misc/trurl/Manifest b/net-misc/trurl/Manifest
index 01260fdd3e92..d4fa4de2b366 100644
--- a/net-misc/trurl/Manifest
+++ b/net-misc/trurl/Manifest
@@ -1,2 +1,3 @@
DIST trurl-0.2.tar.gz 9095 BLAKE2B 1fab191158ca914c6a8e561095edc5329f7b565849dc1add85d17c05062f46fa82160bc6595c16e28a216821ffab7944edbce3be4a38895191f3c901ccef611f SHA512 e6ad68183acefb09985b453d0bdc7d0afe9e4c916c4e32fe67cee9afd23aa437e0b538cdc9456bc2ed93dc8996c9c64efeeff74a1415f044d0c1e52d0f5f00c7
DIST trurl-0.3.tar.gz 11622 BLAKE2B 013554669c2c9ed8fc8090977d3a729bacb0200078283785b5ff9526317b0923de99ce33747358dd643e977fd67e024182ca03ae8153c05a9c14ce050f6c20df SHA512 c7361bc49439219177e6150804ee665103d37b80145d308fd02a4260134bb098d937279cb8c23a6192f307f9464ab0f34a34997251fdff13db623a9765b90e0c
+DIST trurl-0.4.tar.gz 23602 BLAKE2B c780fc52010f868fddbe1a06feb1ed1df627eb9ff8916d0212c8196c1efeb282b06900d2259dbaa4abdbc3c68002b1f3dfeb308c4ae2202578c40c112120b77c SHA512 7d106bf7dd39fb39316a9890bc562a5824dc046acfa50b97954e87ba455b479a2b86cfbf09a130dd39000abbc2e0fdc7038109410cf44c97812489d410693a01
diff --git a/net-misc/trurl/trurl-9999.ebuild b/net-misc/trurl/trurl-0.4.ebuild
similarity index 89%
copy from net-misc/trurl/trurl-9999.ebuild
copy to net-misc/trurl/trurl-0.4.ebuild
index 5c9ebf0edda3..78443cfb2991 100644
--- a/net-misc/trurl/trurl-9999.ebuild
+++ b/net-misc/trurl/trurl-0.4.ebuild
@@ -23,7 +23,8 @@ SLOT="0"
IUSE="test"
RESTRICT="!test? ( test )"
-DEPEND=">=net-misc/curl-7.62.0"
+# Older curls may work but not all features will be present
+DEPEND=">=net-misc/curl-7.81.0"
RDEPEND="${DEPEND}"
BDEPEND="
test? (
diff --git a/net-misc/trurl/trurl-9999.ebuild b/net-misc/trurl/trurl-9999.ebuild
index 5c9ebf0edda3..78443cfb2991 100644
--- a/net-misc/trurl/trurl-9999.ebuild
+++ b/net-misc/trurl/trurl-9999.ebuild
@@ -23,7 +23,8 @@ SLOT="0"
IUSE="test"
RESTRICT="!test? ( test )"
-DEPEND=">=net-misc/curl-7.62.0"
+# Older curls may work but not all features will be present
+DEPEND=">=net-misc/curl-7.81.0"
RDEPEND="${DEPEND}"
BDEPEND="
test? (
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/trurl/
@ 2023-04-18 4:29 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2023-04-18 4:29 UTC (permalink / raw
To: gentoo-commits
commit: 783afeb19ed1950cc213f3657e49ed64afcff412
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 18 03:30:14 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 18 03:30:14 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=783afeb1
net-misc/trurl: drop 0.2, 0.3
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/trurl/Manifest | 2 --
net-misc/trurl/trurl-0.2.ebuild | 38 ------------------------------------
net-misc/trurl/trurl-0.3.ebuild | 43 -----------------------------------------
3 files changed, 83 deletions(-)
diff --git a/net-misc/trurl/Manifest b/net-misc/trurl/Manifest
index d4fa4de2b366..ef7b691cf43f 100644
--- a/net-misc/trurl/Manifest
+++ b/net-misc/trurl/Manifest
@@ -1,3 +1 @@
-DIST trurl-0.2.tar.gz 9095 BLAKE2B 1fab191158ca914c6a8e561095edc5329f7b565849dc1add85d17c05062f46fa82160bc6595c16e28a216821ffab7944edbce3be4a38895191f3c901ccef611f SHA512 e6ad68183acefb09985b453d0bdc7d0afe9e4c916c4e32fe67cee9afd23aa437e0b538cdc9456bc2ed93dc8996c9c64efeeff74a1415f044d0c1e52d0f5f00c7
-DIST trurl-0.3.tar.gz 11622 BLAKE2B 013554669c2c9ed8fc8090977d3a729bacb0200078283785b5ff9526317b0923de99ce33747358dd643e977fd67e024182ca03ae8153c05a9c14ce050f6c20df SHA512 c7361bc49439219177e6150804ee665103d37b80145d308fd02a4260134bb098d937279cb8c23a6192f307f9464ab0f34a34997251fdff13db623a9765b90e0c
DIST trurl-0.4.tar.gz 23602 BLAKE2B c780fc52010f868fddbe1a06feb1ed1df627eb9ff8916d0212c8196c1efeb282b06900d2259dbaa4abdbc3c68002b1f3dfeb308c4ae2202578c40c112120b77c SHA512 7d106bf7dd39fb39316a9890bc562a5824dc046acfa50b97954e87ba455b479a2b86cfbf09a130dd39000abbc2e0fdc7038109410cf44c97812489d410693a01
diff --git a/net-misc/trurl/trurl-0.2.ebuild b/net-misc/trurl/trurl-0.2.ebuild
deleted file mode 100644
index d746c034e362..000000000000
--- a/net-misc/trurl/trurl-0.2.ebuild
+++ /dev/null
@@ -1,38 +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://daniel.haxx.se/blog/2023/04/03/introducing-trurl/ https://github.com/curl/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 )"
-
-DEPEND=">=net-misc/curl-7.62.0"
-RDEPEND="${DEPEND}"
-BDEPEND="test? ( dev-lang/perl )"
-
-src_compile() {
- tc-export CC
-
- default
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install
-}
diff --git a/net-misc/trurl/trurl-0.3.ebuild b/net-misc/trurl/trurl-0.3.ebuild
deleted file mode 100644
index 5c9ebf0edda3..000000000000
--- a/net-misc/trurl/trurl-0.3.ebuild
+++ /dev/null
@@ -1,43 +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 )"
-
-DEPEND=">=net-misc/curl-7.62.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
-}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/trurl/
@ 2023-04-25 13:44 Arthur Zamarin
0 siblings, 0 replies; 11+ messages in thread
From: Arthur Zamarin @ 2023-04-25 13:44 UTC (permalink / raw
To: gentoo-commits
commit: 43de4dc92b8a923c4adb0110479a1479c1d6d816
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 25 13:43:54 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 25 13:43:54 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43de4dc9
net-misc/trurl: Keyword 0.5 arm, #905065
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-misc/trurl/trurl-0.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-misc/trurl/trurl-0.5.ebuild b/net-misc/trurl/trurl-0.5.ebuild
index fe0c58e18fdd..283c217c2a55 100644
--- a/net-misc/trurl/trurl-0.5.ebuild
+++ b/net-misc/trurl/trurl-0.5.ebuild
@@ -16,7 +16,7 @@ else
SRC_URI="https://github.com/curl/trurl/archive/refs/tags/${P}.tar.gz"
S="${WORKDIR}"/${PN}-${P}
- KEYWORDS="~amd64"
+ KEYWORDS="~amd64 ~arm"
fi
LICENSE="curl"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/trurl/
@ 2023-04-25 19:01 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2023-04-25 19:01 UTC (permalink / raw
To: gentoo-commits
commit: 90ea317b655ab75add0cb1c6725f2cea04f3442e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 25 19:01:23 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 25 19:01:23 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90ea317b
net-misc/trurl: Keyword 0.5 arm64, #905065
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/trurl/trurl-0.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-misc/trurl/trurl-0.5.ebuild b/net-misc/trurl/trurl-0.5.ebuild
index 283c217c2a55..6a2113d8634b 100644
--- a/net-misc/trurl/trurl-0.5.ebuild
+++ b/net-misc/trurl/trurl-0.5.ebuild
@@ -16,7 +16,7 @@ else
SRC_URI="https://github.com/curl/trurl/archive/refs/tags/${P}.tar.gz"
S="${WORKDIR}"/${PN}-${P}
- KEYWORDS="~amd64 ~arm"
+ KEYWORDS="~amd64 ~arm ~arm64"
fi
LICENSE="curl"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/trurl/
@ 2023-05-31 3:39 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2023-05-31 3:39 UTC (permalink / raw
To: gentoo-commits
commit: 78edfb94ddbbc4a7996c9bb0b5563c95beee90bd
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 31 03:36:21 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 31 03:36:21 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78edfb94
net-misc/trurl: drop 0.4
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/trurl/Manifest | 1 -
net-misc/trurl/trurl-0.4.ebuild | 44 -----------------------------------------
2 files changed, 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
-}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/trurl/
@ 2024-08-22 1:26 Eli Schwartz
0 siblings, 0 replies; 11+ messages in thread
From: Eli Schwartz @ 2024-08-22 1:26 UTC (permalink / raw
To: gentoo-commits
commit: 648aee630590b425be98d66314a0b4f605813640
Author: Emanuele Torre <torreemanuele6 <AT> gmail <DOT> com>
AuthorDate: Fri Aug 16 12:23:08 2024 +0000
Commit: Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
CommitDate: Thu Aug 22 00:38:21 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=648aee63
net-misc/trurl: fix 9999
The patch has been upstreamed.
Ref: https://github.com/curl/trurl/commit/5cb314b40e7203e78
Signed-off-by: Emanuele Torre <torreemanuele6 <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/38172
Signed-off-by: Eli Schwartz <eschwartz <AT> gentoo.org>
net-misc/trurl/trurl-9999.ebuild | 4 ----
1 file changed, 4 deletions(-)
diff --git a/net-misc/trurl/trurl-9999.ebuild b/net-misc/trurl/trurl-9999.ebuild
index 5dfbbc31163e..b27cb174ba1e 100644
--- a/net-misc/trurl/trurl-9999.ebuild
+++ b/net-misc/trurl/trurl-9999.ebuild
@@ -29,10 +29,6 @@ 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
}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/trurl/
@ 2024-09-18 6:17 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2024-09-18 6:17 UTC (permalink / raw
To: gentoo-commits
commit: 6ac16315f36bc96c5f9d8ada61a4861afe505991
Author: Emanuele Torre <torreemanuele6 <AT> gmail <DOT> com>
AuthorDate: Wed Sep 18 05:43:07 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 18 06:17:18 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ac16315
net-misc/trurl: add 0.15.1
https://github.com/curl/trurl/releases/tag/trurl-0.15.1
Signed-off-by: Emanuele Torre <torreemanuele6 <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/38656
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/trurl/Manifest | 1 +
net-misc/trurl/trurl-0.15.1.ebuild | 49 ++++++++++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+)
diff --git a/net-misc/trurl/Manifest b/net-misc/trurl/Manifest
index 0df7a6ebf06b..06eee8f0023a 100644
--- a/net-misc/trurl/Manifest
+++ b/net-misc/trurl/Manifest
@@ -1 +1,2 @@
DIST trurl-0.14.tar.gz 47830 BLAKE2B 15be36ef5c5989cf15d3983827055c793f15ae59efe8e02cc2f55ad9b19c528bb568aacc0583590017a6d6a3a74db1bd6bd3e18d3fee1c7c7d86e71f503d57f7 SHA512 25c1a3035095065368c8a11547e1d918b6f688e293982895a7bc27d9e161c0193ceccfaa0c2440f5c42a8ba4d5176a3f6a4fb843f5fa573328ef9baf5a438165
+DIST trurl-0.15.1.tar.gz 51397 BLAKE2B 41104b5e3b9bfbba17aaa829e5a0766879af963c73f5548d26eac8a80c0f8eb61da77de11a4dfd6321be522121f12ab239384e8e720d72564d4c841d395de0f2 SHA512 b2aabc77861686de137f0013c8782309bf04c0fa51a657384dca0d0f89aa0ca166d7de2c5d7c5c1ff63c1c4a5564e127658e2965dc4ab164939c1c4223f76eac
diff --git a/net-misc/trurl/trurl-0.15.1.ebuild b/net-misc/trurl/trurl-0.15.1.ebuild
new file mode 100644
index 000000000000..b27cb174ba1e
--- /dev/null
+++ b/net-misc/trurl/trurl-0.15.1.ebuild
@@ -0,0 +1,49 @@
+# 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
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/trurl/
@ 2024-09-22 11:08 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2024-09-22 11:08 UTC (permalink / raw
To: gentoo-commits
commit: 7d981fd7985e46026edc69a1c6055dc4f6c97a40
Author: Emanuele Torre <torreemanuele6 <AT> gmail <DOT> com>
AuthorDate: Fri Sep 20 08:05:32 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 22 11:08:20 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d981fd7
net-misc/trurl: add 0.16
https://github.com/curl/trurl/releases/tag/trurl-0.16
Signed-off-by: Emanuele Torre <torreemanuele6 <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/38700
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/trurl/Manifest | 1 +
net-misc/trurl/trurl-0.16.ebuild | 49 ++++++++++++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+)
diff --git a/net-misc/trurl/Manifest b/net-misc/trurl/Manifest
index 06eee8f0023a..909f70d23366 100644
--- a/net-misc/trurl/Manifest
+++ b/net-misc/trurl/Manifest
@@ -1,2 +1,3 @@
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/trurl-0.16.ebuild b/net-misc/trurl/trurl-0.16.ebuild
new file mode 100644
index 000000000000..b27cb174ba1e
--- /dev/null
+++ b/net-misc/trurl/trurl-0.16.ebuild
@@ -0,0 +1,49 @@
+# 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
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/trurl/
@ 2024-10-08 7:09 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2024-10-08 7:09 UTC (permalink / raw
To: gentoo-commits
commit: 624d4e3b29e2e17644b6663926da81362ee6e05c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 8 07:06:48 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 8 07:06:48 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=624d4e3b
net-misc/trurl: enable py3.13
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/trurl/trurl-0.16.ebuild | 2 +-
net-misc/trurl/trurl-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-misc/trurl/trurl-0.16.ebuild b/net-misc/trurl/trurl-0.16.ebuild
index b27cb174ba1e..0818842536b1 100644
--- a/net-misc/trurl/trurl-0.16.ebuild
+++ b/net-misc/trurl/trurl-0.16.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
inherit toolchain-funcs python-any-r1
DESCRIPTION="Command line tool for URL parsing and manipulation"
diff --git a/net-misc/trurl/trurl-9999.ebuild b/net-misc/trurl/trurl-9999.ebuild
index b27cb174ba1e..0818842536b1 100644
--- a/net-misc/trurl/trurl-9999.ebuild
+++ b/net-misc/trurl/trurl-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
inherit toolchain-funcs python-any-r1
DESCRIPTION="Command line tool for URL parsing and manipulation"
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-10-08 7:09 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-22 1:26 [gentoo-commits] repo/gentoo:master commit in: net-misc/trurl/ Eli Schwartz
-- strict thread matches above, loose matches on Subject: below --
2024-10-08 7:09 Sam James
2024-09-22 11:08 Sam James
2024-09-18 6:17 Sam James
2023-05-31 3:39 Sam James
2023-04-25 19:01 Sam James
2023-04-25 13:44 Arthur Zamarin
2023-04-18 4:29 Sam James
2023-04-10 9:50 Sam James
2023-04-06 8:15 Sam James
2023-04-03 22:06 Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox