public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-arch/tarlz/
@ 2021-06-22  7:54 Florian Schmaus
  0 siblings, 0 replies; 15+ messages in thread
From: Florian Schmaus @ 2021-06-22  7:54 UTC (permalink / raw
  To: gentoo-commits

commit:     5008daf870d660593243b55cf8961f5bf5e38c64
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 22 07:54:07 2021 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Tue Jun 22 07:54:36 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5008daf8

app-arch/tarlz: initial import

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 app-arch/tarlz/Manifest          |  1 +
 app-arch/tarlz/metadata.xml      |  8 ++++++++
 app-arch/tarlz/tarlz-0.21.ebuild | 29 +++++++++++++++++++++++++++++
 3 files changed, 38 insertions(+)

diff --git a/app-arch/tarlz/Manifest b/app-arch/tarlz/Manifest
new file mode 100644
index 00000000000..b24b7840ddf
--- /dev/null
+++ b/app-arch/tarlz/Manifest
@@ -0,0 +1 @@
+DIST tarlz-0.21.tar.lz 104780 BLAKE2B c3aacda3e8ab25757758d811d9cdc153777835950436dbb4827cf75d801f6c3035475330512a2657a8c9733f6afdf452d9689d7d72d11ba8ef968fceab671ed4 SHA512 1ad671da7ee115762163af57aad69ec754753e68a99ef8c4f38e880ecbb75a5b021f38794390eabcdbef4963cbc0c0e2abe36011da4135baf2c21dc22f020f4a

diff --git a/app-arch/tarlz/metadata.xml b/app-arch/tarlz/metadata.xml
new file mode 100644
index 00000000000..ed50c9a25b6
--- /dev/null
+++ b/app-arch/tarlz/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>flow@gentoo.org</email>
+		<name>Florian Schmaus</name>
+	</maintainer>
+</pkgmetadata>

diff --git a/app-arch/tarlz/tarlz-0.21.ebuild b/app-arch/tarlz/tarlz-0.21.ebuild
new file mode 100644
index 00000000000..f1c0ce855a5
--- /dev/null
+++ b/app-arch/tarlz/tarlz-0.21.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs unpacker
+
+DESCRIPTION="A parallel archiver combining tar and lzip"
+HOMEPAGE="https://www.nongnu.org/lzip/tarlz.html"
+SRC_URI="https://download.savannah.gnu.org/releases/lzip/${PN}/${P}.tar.lz"
+LICENSE="GPL-2+"
+
+SLOT="0"
+
+KEYWORDS="~amd64"
+
+RDEPEND=">=app-arch/lzlib-1.12:0="
+DEPEND="
+	${RDEPEND}
+	$(unpacker_src_uri_depends)
+"
+
+src_configure() {
+	econf \
+		CXX="$(tc-getCXX)" \
+		CXXFLAGS="${CXXFLAGS}" \
+		CPPFLAGS="${CPPFLAGS}" \
+		LDFLAGS="${LDFLAGS}"
+}


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-arch/tarlz/
@ 2021-06-22 18:28 Florian Schmaus
  0 siblings, 0 replies; 15+ messages in thread
From: Florian Schmaus @ 2021-06-22 18:28 UTC (permalink / raw
  To: gentoo-commits

commit:     201248a1e0d67bf1ee718563fe0b1fa3fd77c358
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 22 18:27:40 2021 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Tue Jun 22 18:28:24 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=201248a1

app-arch/tarlz: put unpacker_src_uri_depends in BDEPEND

Thanks to Sam James for pointing this out.

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
Reported-by: Sam James <sam <AT> gentoo.org>

 app-arch/tarlz/tarlz-0.21.ebuild | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/app-arch/tarlz/tarlz-0.21.ebuild b/app-arch/tarlz/tarlz-0.21.ebuild
index f1c0ce855a5..c92ac2f48a5 100644
--- a/app-arch/tarlz/tarlz-0.21.ebuild
+++ b/app-arch/tarlz/tarlz-0.21.ebuild
@@ -15,10 +15,8 @@ SLOT="0"
 KEYWORDS="~amd64"
 
 RDEPEND=">=app-arch/lzlib-1.12:0="
-DEPEND="
-	${RDEPEND}
-	$(unpacker_src_uri_depends)
-"
+DEPEND="${RDEPEND}"
+BDEPEND="$(unpacker_src_uri_depends)"
 
 src_configure() {
 	econf \


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-arch/tarlz/
@ 2022-01-16 17:54 Florian Schmaus
  0 siblings, 0 replies; 15+ messages in thread
From: Florian Schmaus @ 2022-01-16 17:54 UTC (permalink / raw
  To: gentoo-commits

commit:     26c0dfaed4ad36930848bca83c2f6c1e621cad6a
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 16 17:54:28 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Jan 16 17:54:40 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26c0dfae

app-arch/tarlz: add 0.22

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 app-arch/tarlz/Manifest          |  1 +
 app-arch/tarlz/tarlz-0.22.ebuild | 27 +++++++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/app-arch/tarlz/Manifest b/app-arch/tarlz/Manifest
index b24b7840ddfd..c9319dbacc9e 100644
--- a/app-arch/tarlz/Manifest
+++ b/app-arch/tarlz/Manifest
@@ -1 +1,2 @@
 DIST tarlz-0.21.tar.lz 104780 BLAKE2B c3aacda3e8ab25757758d811d9cdc153777835950436dbb4827cf75d801f6c3035475330512a2657a8c9733f6afdf452d9689d7d72d11ba8ef968fceab671ed4 SHA512 1ad671da7ee115762163af57aad69ec754753e68a99ef8c4f38e880ecbb75a5b021f38794390eabcdbef4963cbc0c0e2abe36011da4135baf2c21dc22f020f4a
+DIST tarlz-0.22.tar.lz 105724 BLAKE2B 7921f7085d63f553f745cf8b7fee43ece32346a0804e41227806efae0ab338c48ee1830a8b087f03000a27fcf44338b3dba6d52d37f4de790d8b7bc5f0234ade SHA512 4e241ea0571e421c93fbeeb54a20e73fd4a7e9c85dc3b24295caec1a52e156cdcf5e85f4ee41f5dfae712b851d17fe0e96955380bb86306d8002f4187d0c60ec

diff --git a/app-arch/tarlz/tarlz-0.22.ebuild b/app-arch/tarlz/tarlz-0.22.ebuild
new file mode 100644
index 000000000000..88450fc9523f
--- /dev/null
+++ b/app-arch/tarlz/tarlz-0.22.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs unpacker
+
+DESCRIPTION="A parallel archiver combining tar and lzip"
+HOMEPAGE="https://www.nongnu.org/lzip/tarlz.html"
+SRC_URI="https://download.savannah.gnu.org/releases/lzip/${PN}/${P}.tar.lz"
+LICENSE="GPL-2+"
+
+SLOT="0"
+
+KEYWORDS="~amd64"
+
+RDEPEND=">=app-arch/lzlib-1.12"
+DEPEND="${RDEPEND}"
+BDEPEND="$(unpacker_src_uri_depends)"
+
+src_configure() {
+	econf \
+		CXX="$(tc-getCXX)" \
+		CXXFLAGS="${CXXFLAGS}" \
+		CPPFLAGS="${CPPFLAGS}" \
+		LDFLAGS="${LDFLAGS}"
+}


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-arch/tarlz/
@ 2022-05-02  6:52 Agostino Sarubbo
  0 siblings, 0 replies; 15+ messages in thread
From: Agostino Sarubbo @ 2022-05-02  6:52 UTC (permalink / raw
  To: gentoo-commits

commit:     d01be2c945a9974c638f690abf0e7186eb0084a5
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon May  2 06:52:51 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon May  2 06:52:51 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d01be2c9

app-arch/tarlz: amd64 stable wrt bug #825462

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 app-arch/tarlz/tarlz-0.21.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-arch/tarlz/tarlz-0.21.ebuild b/app-arch/tarlz/tarlz-0.21.ebuild
index c92ac2f48a59..ffd6e03cafcf 100644
--- a/app-arch/tarlz/tarlz-0.21.ebuild
+++ b/app-arch/tarlz/tarlz-0.21.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ LICENSE="GPL-2+"
 
 SLOT="0"
 
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 RDEPEND=">=app-arch/lzlib-1.12:0="
 DEPEND="${RDEPEND}"


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-arch/tarlz/
@ 2022-05-12 14:11 Florian Schmaus
  0 siblings, 0 replies; 15+ messages in thread
From: Florian Schmaus @ 2022-05-12 14:11 UTC (permalink / raw
  To: gentoo-commits

commit:     e6c00765d39e9308abeac5b37805d0dda31349a4
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Thu May 12 14:11:00 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu May 12 14:11:21 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6c00765

app-arch/tarlz: drop 0.21

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 app-arch/tarlz/Manifest          |  1 -
 app-arch/tarlz/tarlz-0.21.ebuild | 27 ---------------------------
 2 files changed, 28 deletions(-)

diff --git a/app-arch/tarlz/Manifest b/app-arch/tarlz/Manifest
index c9319dbacc9e..71ce0aa07306 100644
--- a/app-arch/tarlz/Manifest
+++ b/app-arch/tarlz/Manifest
@@ -1,2 +1 @@
-DIST tarlz-0.21.tar.lz 104780 BLAKE2B c3aacda3e8ab25757758d811d9cdc153777835950436dbb4827cf75d801f6c3035475330512a2657a8c9733f6afdf452d9689d7d72d11ba8ef968fceab671ed4 SHA512 1ad671da7ee115762163af57aad69ec754753e68a99ef8c4f38e880ecbb75a5b021f38794390eabcdbef4963cbc0c0e2abe36011da4135baf2c21dc22f020f4a
 DIST tarlz-0.22.tar.lz 105724 BLAKE2B 7921f7085d63f553f745cf8b7fee43ece32346a0804e41227806efae0ab338c48ee1830a8b087f03000a27fcf44338b3dba6d52d37f4de790d8b7bc5f0234ade SHA512 4e241ea0571e421c93fbeeb54a20e73fd4a7e9c85dc3b24295caec1a52e156cdcf5e85f4ee41f5dfae712b851d17fe0e96955380bb86306d8002f4187d0c60ec

diff --git a/app-arch/tarlz/tarlz-0.21.ebuild b/app-arch/tarlz/tarlz-0.21.ebuild
deleted file mode 100644
index ffd6e03cafcf..000000000000
--- a/app-arch/tarlz/tarlz-0.21.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs unpacker
-
-DESCRIPTION="A parallel archiver combining tar and lzip"
-HOMEPAGE="https://www.nongnu.org/lzip/tarlz.html"
-SRC_URI="https://download.savannah.gnu.org/releases/lzip/${PN}/${P}.tar.lz"
-LICENSE="GPL-2+"
-
-SLOT="0"
-
-KEYWORDS="amd64"
-
-RDEPEND=">=app-arch/lzlib-1.12:0="
-DEPEND="${RDEPEND}"
-BDEPEND="$(unpacker_src_uri_depends)"
-
-src_configure() {
-	econf \
-		CXX="$(tc-getCXX)" \
-		CXXFLAGS="${CXXFLAGS}" \
-		CPPFLAGS="${CPPFLAGS}" \
-		LDFLAGS="${LDFLAGS}"
-}


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-arch/tarlz/
@ 2022-05-12 14:11 Florian Schmaus
  0 siblings, 0 replies; 15+ messages in thread
From: Florian Schmaus @ 2022-05-12 14:11 UTC (permalink / raw
  To: gentoo-commits

commit:     79fccf2067f7495cf8736d515e8abc1090c35be3
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Thu May 12 14:10:27 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu May 12 14:11:21 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79fccf20

app-arch/tarlz: stabilize 0.22 for amd64

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 app-arch/tarlz/tarlz-0.22.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/tarlz/tarlz-0.22.ebuild b/app-arch/tarlz/tarlz-0.22.ebuild
index 88450fc9523f..8c9cc43c7abc 100644
--- a/app-arch/tarlz/tarlz-0.22.ebuild
+++ b/app-arch/tarlz/tarlz-0.22.ebuild
@@ -12,7 +12,7 @@ LICENSE="GPL-2+"
 
 SLOT="0"
 
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 RDEPEND=">=app-arch/lzlib-1.12"
 DEPEND="${RDEPEND}"


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-arch/tarlz/
@ 2022-09-25 16:14 Michał Górny
  0 siblings, 0 replies; 15+ messages in thread
From: Michał Górny @ 2022-09-25 16:14 UTC (permalink / raw
  To: gentoo-commits

commit:     50caa38cc1ac34d39d89a4a8ffd24257bd70a222
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 25 16:13:11 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Sep 25 16:13:11 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50caa38c

app-arch/tarlz: Bump to 0.23

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-arch/tarlz/Manifest          |  1 +
 app-arch/tarlz/tarlz-0.23.ebuild | 32 ++++++++++++++++++++++++++++++++
 2 files changed, 33 insertions(+)

diff --git a/app-arch/tarlz/Manifest b/app-arch/tarlz/Manifest
index 71ce0aa07306..0b145d0ecc81 100644
--- a/app-arch/tarlz/Manifest
+++ b/app-arch/tarlz/Manifest
@@ -1 +1,2 @@
 DIST tarlz-0.22.tar.lz 105724 BLAKE2B 7921f7085d63f553f745cf8b7fee43ece32346a0804e41227806efae0ab338c48ee1830a8b087f03000a27fcf44338b3dba6d52d37f4de790d8b7bc5f0234ade SHA512 4e241ea0571e421c93fbeeb54a20e73fd4a7e9c85dc3b24295caec1a52e156cdcf5e85f4ee41f5dfae712b851d17fe0e96955380bb86306d8002f4187d0c60ec
+DIST tarlz-0.23.tar.lz 112276 BLAKE2B 87153b1e843ed74b5efd339d29e79ddef2bbd11ff951898383ae4c6c099f4e97ef58b8bd2f14ff5bff2cfd6baccb433ab55b9b9b78d0893caef5bd1f4d07a36e SHA512 623407142d03e0ddae3dbb057b8ef5f1aea850418dbb47c6278affa42c88bc1786cd3249d1e8c018643f41516787225cb2ed3aca2fc02ba8e65dfe4744f965d8

diff --git a/app-arch/tarlz/tarlz-0.23.ebuild b/app-arch/tarlz/tarlz-0.23.ebuild
new file mode 100644
index 000000000000..ac8108f138ea
--- /dev/null
+++ b/app-arch/tarlz/tarlz-0.23.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs unpacker
+
+DESCRIPTION="A parallel archiver combining tar and lzip"
+HOMEPAGE="https://www.nongnu.org/lzip/tarlz.html"
+SRC_URI="https://download.savannah.gnu.org/releases/lzip/${PN}/${P}.tar.lz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	>=app-arch/lzlib-1.12
+"
+DEPEND="
+	${RDEPEND}
+"
+BDEPEND="
+	$(unpacker_src_uri_depends)
+"
+
+src_configure() {
+	econf \
+		CXX="$(tc-getCXX)" \
+		CXXFLAGS="${CXXFLAGS}" \
+		CPPFLAGS="${CPPFLAGS}" \
+		LDFLAGS="${LDFLAGS}"
+}


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-arch/tarlz/
@ 2022-09-25 16:14 Michał Górny
  0 siblings, 0 replies; 15+ messages in thread
From: Michał Górny @ 2022-09-25 16:14 UTC (permalink / raw
  To: gentoo-commits

commit:     6911a88e85c18de81350d024ecac314b0885b669
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 25 16:13:45 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Sep 25 16:13:45 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6911a88e

app-arch/tarlz: Add myself as co-maint.

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-arch/tarlz/metadata.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/app-arch/tarlz/metadata.xml b/app-arch/tarlz/metadata.xml
index 7c4e374d13a7..08a467d3d198 100644
--- a/app-arch/tarlz/metadata.xml
+++ b/app-arch/tarlz/metadata.xml
@@ -5,4 +5,8 @@
 		<email>flow@gentoo.org</email>
 		<name>Florian Schmaus</name>
 	</maintainer>
+	<maintainer type="person">
+		<email>mgorny@gentoo.org</email>
+		<name>Michał Górny</name>
+	</maintainer>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-arch/tarlz/
@ 2022-10-27 20:15 Florian Schmaus
  0 siblings, 0 replies; 15+ messages in thread
From: Florian Schmaus @ 2022-10-27 20:15 UTC (permalink / raw
  To: gentoo-commits

commit:     150934bcd46685ea889168beddf3b27603b94f19
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 27 20:14:17 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu Oct 27 20:14:17 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=150934bc

app-arch/tarlz: drop 0.22

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 app-arch/tarlz/Manifest          |  1 -
 app-arch/tarlz/tarlz-0.22.ebuild | 27 ---------------------------
 2 files changed, 28 deletions(-)

diff --git a/app-arch/tarlz/Manifest b/app-arch/tarlz/Manifest
index 0b145d0ecc81..6b51ec354718 100644
--- a/app-arch/tarlz/Manifest
+++ b/app-arch/tarlz/Manifest
@@ -1,2 +1 @@
-DIST tarlz-0.22.tar.lz 105724 BLAKE2B 7921f7085d63f553f745cf8b7fee43ece32346a0804e41227806efae0ab338c48ee1830a8b087f03000a27fcf44338b3dba6d52d37f4de790d8b7bc5f0234ade SHA512 4e241ea0571e421c93fbeeb54a20e73fd4a7e9c85dc3b24295caec1a52e156cdcf5e85f4ee41f5dfae712b851d17fe0e96955380bb86306d8002f4187d0c60ec
 DIST tarlz-0.23.tar.lz 112276 BLAKE2B 87153b1e843ed74b5efd339d29e79ddef2bbd11ff951898383ae4c6c099f4e97ef58b8bd2f14ff5bff2cfd6baccb433ab55b9b9b78d0893caef5bd1f4d07a36e SHA512 623407142d03e0ddae3dbb057b8ef5f1aea850418dbb47c6278affa42c88bc1786cd3249d1e8c018643f41516787225cb2ed3aca2fc02ba8e65dfe4744f965d8

diff --git a/app-arch/tarlz/tarlz-0.22.ebuild b/app-arch/tarlz/tarlz-0.22.ebuild
deleted file mode 100644
index 8c9cc43c7abc..000000000000
--- a/app-arch/tarlz/tarlz-0.22.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs unpacker
-
-DESCRIPTION="A parallel archiver combining tar and lzip"
-HOMEPAGE="https://www.nongnu.org/lzip/tarlz.html"
-SRC_URI="https://download.savannah.gnu.org/releases/lzip/${PN}/${P}.tar.lz"
-LICENSE="GPL-2+"
-
-SLOT="0"
-
-KEYWORDS="amd64"
-
-RDEPEND=">=app-arch/lzlib-1.12"
-DEPEND="${RDEPEND}"
-BDEPEND="$(unpacker_src_uri_depends)"
-
-src_configure() {
-	econf \
-		CXX="$(tc-getCXX)" \
-		CXXFLAGS="${CXXFLAGS}" \
-		CPPFLAGS="${CPPFLAGS}" \
-		LDFLAGS="${LDFLAGS}"
-}


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-arch/tarlz/
@ 2022-10-27 20:15 Florian Schmaus
  0 siblings, 0 replies; 15+ messages in thread
From: Florian Schmaus @ 2022-10-27 20:15 UTC (permalink / raw
  To: gentoo-commits

commit:     eac3f90d0faeec8162dfa250911e0a8bc56f774c
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 27 20:14:01 2022 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu Oct 27 20:14:01 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eac3f90d

app-arch/tarlz: stabilize 0.23 for amd64

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 app-arch/tarlz/tarlz-0.23.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/tarlz/tarlz-0.23.ebuild b/app-arch/tarlz/tarlz-0.23.ebuild
index ac8108f138ea..173f51872685 100644
--- a/app-arch/tarlz/tarlz-0.23.ebuild
+++ b/app-arch/tarlz/tarlz-0.23.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://download.savannah.gnu.org/releases/lzip/${PN}/${P}.tar.lz"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 RDEPEND="
 	>=app-arch/lzlib-1.12


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-arch/tarlz/
@ 2023-09-21 14:44 Florian Schmaus
  0 siblings, 0 replies; 15+ messages in thread
From: Florian Schmaus @ 2023-09-21 14:44 UTC (permalink / raw
  To: gentoo-commits

commit:     6e77636d265aceea8647b924459d0960b23de075
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 21 14:42:43 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu Sep 21 14:42:43 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e77636d

app-arch/tarlz: add 0.24

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 app-arch/tarlz/Manifest          |  1 +
 app-arch/tarlz/tarlz-0.24.ebuild | 32 ++++++++++++++++++++++++++++++++
 2 files changed, 33 insertions(+)

diff --git a/app-arch/tarlz/Manifest b/app-arch/tarlz/Manifest
index 6b51ec354718..e6fffab4952b 100644
--- a/app-arch/tarlz/Manifest
+++ b/app-arch/tarlz/Manifest
@@ -1 +1,2 @@
 DIST tarlz-0.23.tar.lz 112276 BLAKE2B 87153b1e843ed74b5efd339d29e79ddef2bbd11ff951898383ae4c6c099f4e97ef58b8bd2f14ff5bff2cfd6baccb433ab55b9b9b78d0893caef5bd1f4d07a36e SHA512 623407142d03e0ddae3dbb057b8ef5f1aea850418dbb47c6278affa42c88bc1786cd3249d1e8c018643f41516787225cb2ed3aca2fc02ba8e65dfe4744f965d8
+DIST tarlz-0.24.tar.lz 113503 BLAKE2B 5d9f3a65c29ba5131faacaf0b519494e4ba659182a7dd30c49aa3d0b0a507ce699ba0539684f36a65dd30bc2bf58b59ebedf7906cc210944c98bf3f6cb765608 SHA512 8aa617ce016675b24c3286ca44afef2801f37b8f617f89665aedd20266fdde1bc8a0ad6293a70b788fb36ad1f5c761d3141c26ab7b4615c8625d72f11c680d5c

diff --git a/app-arch/tarlz/tarlz-0.24.ebuild b/app-arch/tarlz/tarlz-0.24.ebuild
new file mode 100644
index 000000000000..d6624379663f
--- /dev/null
+++ b/app-arch/tarlz/tarlz-0.24.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs unpacker
+
+DESCRIPTION="A parallel archiver combining tar and lzip"
+HOMEPAGE="https://www.nongnu.org/lzip/tarlz.html"
+SRC_URI="https://download.savannah.gnu.org/releases/lzip/${PN}/${P}.tar.lz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	>=app-arch/lzlib-1.12
+"
+DEPEND="
+	${RDEPEND}
+"
+BDEPEND="
+	$(unpacker_src_uri_depends)
+"
+
+src_configure() {
+	econf \
+		CXX="$(tc-getCXX)" \
+		CXXFLAGS="${CXXFLAGS}" \
+		CPPFLAGS="${CPPFLAGS}" \
+		LDFLAGS="${LDFLAGS}"
+}


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-arch/tarlz/
@ 2023-10-22 10:28 Florian Schmaus
  0 siblings, 0 replies; 15+ messages in thread
From: Florian Schmaus @ 2023-10-22 10:28 UTC (permalink / raw
  To: gentoo-commits

commit:     734a0c4c7207cdb4bd88e611b3aeacd7e5a3077a
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 22 10:25:13 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Oct 22 10:25:13 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=734a0c4c

app-arch/tarlz: stabilize 0.24 for amd64

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 app-arch/tarlz/tarlz-0.24.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/tarlz/tarlz-0.24.ebuild b/app-arch/tarlz/tarlz-0.24.ebuild
index d6624379663f..affb92712f82 100644
--- a/app-arch/tarlz/tarlz-0.24.ebuild
+++ b/app-arch/tarlz/tarlz-0.24.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://download.savannah.gnu.org/releases/lzip/${PN}/${P}.tar.lz"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 RDEPEND="
 	>=app-arch/lzlib-1.12


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-arch/tarlz/
@ 2024-01-05 17:22 Florian Schmaus
  0 siblings, 0 replies; 15+ messages in thread
From: Florian Schmaus @ 2024-01-05 17:22 UTC (permalink / raw
  To: gentoo-commits

commit:     92ad6d2b1964f3a338445bfe2d6c962f714cd7d2
Author:     Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  5 17:21:24 2024 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Fri Jan  5 17:22:26 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92ad6d2b

app-arch/tarlz: add 0.25

Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>

 app-arch/tarlz/Manifest          |  1 +
 app-arch/tarlz/tarlz-0.25.ebuild | 32 ++++++++++++++++++++++++++++++++
 2 files changed, 33 insertions(+)

diff --git a/app-arch/tarlz/Manifest b/app-arch/tarlz/Manifest
index e6fffab4952b..095b0c5b607d 100644
--- a/app-arch/tarlz/Manifest
+++ b/app-arch/tarlz/Manifest
@@ -1,2 +1,3 @@
 DIST tarlz-0.23.tar.lz 112276 BLAKE2B 87153b1e843ed74b5efd339d29e79ddef2bbd11ff951898383ae4c6c099f4e97ef58b8bd2f14ff5bff2cfd6baccb433ab55b9b9b78d0893caef5bd1f4d07a36e SHA512 623407142d03e0ddae3dbb057b8ef5f1aea850418dbb47c6278affa42c88bc1786cd3249d1e8c018643f41516787225cb2ed3aca2fc02ba8e65dfe4744f965d8
 DIST tarlz-0.24.tar.lz 113503 BLAKE2B 5d9f3a65c29ba5131faacaf0b519494e4ba659182a7dd30c49aa3d0b0a507ce699ba0539684f36a65dd30bc2bf58b59ebedf7906cc210944c98bf3f6cb765608 SHA512 8aa617ce016675b24c3286ca44afef2801f37b8f617f89665aedd20266fdde1bc8a0ad6293a70b788fb36ad1f5c761d3141c26ab7b4615c8625d72f11c680d5c
+DIST tarlz-0.25.tar.lz 113783 BLAKE2B 56aad4c839ec4fe10bcd7101cea3300aae8e73630ac95de529401d308b23f8fb292d02a7817484259985fc079380e50219ea8d5002427f2bffad63137a1f03b1 SHA512 a55e89c3e701375d47f6fefd3cba5621f53371f3b3e59c174759e5d122f852b6eec02f5e71ce375b84d6af253841ad4b0d4c8a8af8fc12b81f877f0ab8c3b3c8

diff --git a/app-arch/tarlz/tarlz-0.25.ebuild b/app-arch/tarlz/tarlz-0.25.ebuild
new file mode 100644
index 000000000000..95861ad09d6c
--- /dev/null
+++ b/app-arch/tarlz/tarlz-0.25.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs unpacker
+
+DESCRIPTION="A parallel archiver combining tar and lzip"
+HOMEPAGE="https://www.nongnu.org/lzip/tarlz.html"
+SRC_URI="https://download.savannah.gnu.org/releases/lzip/${PN}/${P}.tar.lz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	>=app-arch/lzlib-1.12
+"
+DEPEND="
+	${RDEPEND}
+"
+BDEPEND="
+	$(unpacker_src_uri_depends)
+"
+
+src_configure() {
+	econf \
+		CXX="$(tc-getCXX)" \
+		CXXFLAGS="${CXXFLAGS}" \
+		CPPFLAGS="${CPPFLAGS}" \
+		LDFLAGS="${LDFLAGS}"
+}


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-arch/tarlz/
@ 2024-01-25  0:42 Sam James
  0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2024-01-25  0:42 UTC (permalink / raw
  To: gentoo-commits

commit:     60113bbeaae14c786270441bae916ceac27401b8
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 25 00:42:12 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 25 00:42:12 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60113bbe

app-arch/tarlz: Stabilize 0.25 amd64, #922833

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-arch/tarlz/tarlz-0.25.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/tarlz/tarlz-0.25.ebuild b/app-arch/tarlz/tarlz-0.25.ebuild
index 95861ad09d6c..6e55bf850642 100644
--- a/app-arch/tarlz/tarlz-0.25.ebuild
+++ b/app-arch/tarlz/tarlz-0.25.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://download.savannah.gnu.org/releases/lzip/${PN}/${P}.tar.lz"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 RDEPEND="
 	>=app-arch/lzlib-1.12


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-arch/tarlz/
@ 2024-01-25  4:43 Michał Górny
  0 siblings, 0 replies; 15+ messages in thread
From: Michał Górny @ 2024-01-25  4:43 UTC (permalink / raw
  To: gentoo-commits

commit:     0da38393c8dd45f1767f85de286f8fe7a3038f16
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 25 04:14:24 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jan 25 04:43:03 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0da38393

app-arch/tarlz: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-arch/tarlz/Manifest          |  2 --
 app-arch/tarlz/tarlz-0.23.ebuild | 32 --------------------------------
 app-arch/tarlz/tarlz-0.24.ebuild | 32 --------------------------------
 3 files changed, 66 deletions(-)

diff --git a/app-arch/tarlz/Manifest b/app-arch/tarlz/Manifest
index 095b0c5b607d..772095f9e4fc 100644
--- a/app-arch/tarlz/Manifest
+++ b/app-arch/tarlz/Manifest
@@ -1,3 +1 @@
-DIST tarlz-0.23.tar.lz 112276 BLAKE2B 87153b1e843ed74b5efd339d29e79ddef2bbd11ff951898383ae4c6c099f4e97ef58b8bd2f14ff5bff2cfd6baccb433ab55b9b9b78d0893caef5bd1f4d07a36e SHA512 623407142d03e0ddae3dbb057b8ef5f1aea850418dbb47c6278affa42c88bc1786cd3249d1e8c018643f41516787225cb2ed3aca2fc02ba8e65dfe4744f965d8
-DIST tarlz-0.24.tar.lz 113503 BLAKE2B 5d9f3a65c29ba5131faacaf0b519494e4ba659182a7dd30c49aa3d0b0a507ce699ba0539684f36a65dd30bc2bf58b59ebedf7906cc210944c98bf3f6cb765608 SHA512 8aa617ce016675b24c3286ca44afef2801f37b8f617f89665aedd20266fdde1bc8a0ad6293a70b788fb36ad1f5c761d3141c26ab7b4615c8625d72f11c680d5c
 DIST tarlz-0.25.tar.lz 113783 BLAKE2B 56aad4c839ec4fe10bcd7101cea3300aae8e73630ac95de529401d308b23f8fb292d02a7817484259985fc079380e50219ea8d5002427f2bffad63137a1f03b1 SHA512 a55e89c3e701375d47f6fefd3cba5621f53371f3b3e59c174759e5d122f852b6eec02f5e71ce375b84d6af253841ad4b0d4c8a8af8fc12b81f877f0ab8c3b3c8

diff --git a/app-arch/tarlz/tarlz-0.23.ebuild b/app-arch/tarlz/tarlz-0.23.ebuild
deleted file mode 100644
index 173f51872685..000000000000
--- a/app-arch/tarlz/tarlz-0.23.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs unpacker
-
-DESCRIPTION="A parallel archiver combining tar and lzip"
-HOMEPAGE="https://www.nongnu.org/lzip/tarlz.html"
-SRC_URI="https://download.savannah.gnu.org/releases/lzip/${PN}/${P}.tar.lz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64"
-
-RDEPEND="
-	>=app-arch/lzlib-1.12
-"
-DEPEND="
-	${RDEPEND}
-"
-BDEPEND="
-	$(unpacker_src_uri_depends)
-"
-
-src_configure() {
-	econf \
-		CXX="$(tc-getCXX)" \
-		CXXFLAGS="${CXXFLAGS}" \
-		CPPFLAGS="${CPPFLAGS}" \
-		LDFLAGS="${LDFLAGS}"
-}

diff --git a/app-arch/tarlz/tarlz-0.24.ebuild b/app-arch/tarlz/tarlz-0.24.ebuild
deleted file mode 100644
index affb92712f82..000000000000
--- a/app-arch/tarlz/tarlz-0.24.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs unpacker
-
-DESCRIPTION="A parallel archiver combining tar and lzip"
-HOMEPAGE="https://www.nongnu.org/lzip/tarlz.html"
-SRC_URI="https://download.savannah.gnu.org/releases/lzip/${PN}/${P}.tar.lz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64"
-
-RDEPEND="
-	>=app-arch/lzlib-1.12
-"
-DEPEND="
-	${RDEPEND}
-"
-BDEPEND="
-	$(unpacker_src_uri_depends)
-"
-
-src_configure() {
-	econf \
-		CXX="$(tc-getCXX)" \
-		CXXFLAGS="${CXXFLAGS}" \
-		CPPFLAGS="${CPPFLAGS}" \
-		LDFLAGS="${LDFLAGS}"
-}


^ permalink raw reply related	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2024-01-25  4:43 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-25  0:42 [gentoo-commits] repo/gentoo:master commit in: app-arch/tarlz/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-01-25  4:43 Michał Górny
2024-01-05 17:22 Florian Schmaus
2023-10-22 10:28 Florian Schmaus
2023-09-21 14:44 Florian Schmaus
2022-10-27 20:15 Florian Schmaus
2022-10-27 20:15 Florian Schmaus
2022-09-25 16:14 Michał Górny
2022-09-25 16:14 Michał Górny
2022-05-12 14:11 Florian Schmaus
2022-05-12 14:11 Florian Schmaus
2022-05-02  6:52 Agostino Sarubbo
2022-01-16 17:54 Florian Schmaus
2021-06-22 18:28 Florian Schmaus
2021-06-22  7:54 Florian Schmaus

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox