diff options
author | Alexander Miller <alex.miller@gmx.de> | 2024-01-17 00:45:50 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-02-24 21:07:25 +0100 |
commit | 9f874493cad5779b95554498159cfe67f6519bad (patch) | |
tree | 5ad0cb9390b55be456734a8c7962a5ea5861705b /app-arch | |
parent | dev-python/dask: Remove old (diff) | |
download | gentoo-9f874493cad5779b95554498159cfe67f6519bad.tar.gz gentoo-9f874493cad5779b95554498159cfe67f6519bad.tar.bz2 gentoo-9f874493cad5779b95554498159cfe67f6519bad.zip |
app-arch/torrentzip: add 1.2
Update LICENSE clarified upstream.
Drop src_configure() since OF() macro is finally gone.
Looks like a good stable candidate (so we can drop 0.9-r1 for #920358).
Bug: https://bugs.gentoo.org/920358
Signed-off-by: Alexander Miller <alex.miller@gmx.de>
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/torrentzip/Manifest | 1 | ||||
-rw-r--r-- | app-arch/torrentzip/torrentzip-1.2.ebuild | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/app-arch/torrentzip/Manifest b/app-arch/torrentzip/Manifest index 61986c10ea85..2684ce41b68e 100644 --- a/app-arch/torrentzip/Manifest +++ b/app-arch/torrentzip/Manifest @@ -1,2 +1,3 @@ DIST torrentzip-0.9.tar.gz 59007 BLAKE2B eb5d7d8d9026115367afd88ef0cf33d2eed600e6eaa773f039a713c76a48a39e12cb5a8ac6faf2937d3563c9270029543bdb6361d2f22a39e2341953872f589c SHA512 691cd25f501de3de16b5b15b2afadfc34b833c3e93208c2c3497674936580ad2c3532a02e02531b89974302eee7b36f7579a412718914b1b38044b78a39a4d4d DIST trrntzip-1.0.tar.gz 57643 BLAKE2B 45d4df51f26538b64c70f7310851954995f5d30dcae85b15e702c7518f6a2c4dbebf13ff2746028357dfc9f4c49fd095affb59b893746a4e6bf9b5f9dcd1814a SHA512 4624697528385cb85c9688dbfe56e039ca2d87e28dfdc9b299cb88fb2c7c34c664b58e473a7519ee4ecd89baea5f1369cd719c289e884ad19569d4c69d9a40ab +DIST trrntzip-1.2.tar.gz 62707 BLAKE2B 289ddfe89b91c63b1a6902ea7a4055fa8e235e712d6ea911da2848cc8db15cbdf712967b9fcc1414513c1a18eef160108f5f7b03aefd8f8f18c4d04907a16c17 SHA512 90c853efde1d077c741206362bc14fe779627f1b20571246e99ed29980840e78c0377110431c59c35596a0d209e612f6fe77b385707eb4bdb1ea47bb797c9272 diff --git a/app-arch/torrentzip/torrentzip-1.2.ebuild b/app-arch/torrentzip/torrentzip-1.2.ebuild new file mode 100644 index 000000000000..beb03c69a832 --- /dev/null +++ b/app-arch/torrentzip/torrentzip-1.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +MY_P="trrntzip-${PV}" +DESCRIPTION="Create identical zip archives over multiple systems" +HOMEPAGE="https://github.com/0-wiz-0/trrntzip" +SRC_URI="https://github.com/0-wiz-0/trrntzip/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="GPL-2+ ZLIB" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + sys-libs/zlib:= +" +DEPEND=" + ${RDEPEND} +" + +DOCS=(AUTHORS NEWS.md README.md) |