* [gentoo-commits] repo/gentoo:master commit in: app-arch/zpaq-extras/
@ 2016-05-24 8:57 Michał Górny
0 siblings, 0 replies; 2+ messages in thread
From: Michał Górny @ 2016-05-24 8:57 UTC (permalink / raw
To: gentoo-commits
commit: 7d686fff1228ade554c2cb51b4a8f3c3b616312a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue May 24 08:09:33 2016 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue May 24 08:57:43 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d686fff
app-arch/zpaq-extras: Clean up old
| 1 -
| 66 -------------------------------
2 files changed, 67 deletions(-)
--git a/app-arch/zpaq-extras/Manifest b/app-arch/zpaq-extras/Manifest
index dbdc0f7..6ecf9a1 100644
--- a/app-arch/zpaq-extras/Manifest
+++ b/app-arch/zpaq-extras/Manifest
@@ -1,4 +1,3 @@
-DIST bmp_j4b.zip 2654 SHA256 131a4cce96a56a5f4c61fd9a226b22b5d19f1838076b25f91e5815d9b40f32de SHA512 deb3aaffbe8f1e1e2fa33bbc4c87446ac1f0144788098c468a9218871715ef87e7f63b406ed43db77b6d02a5a3b73e38c230707766cb4a32162c5c8978c312dc WHIRLPOOL c0d5c5bd4d77c24478744daab6c929688ff12a3f9c75c89d5208e7d6b22a42e7d9e59af079d289fe3fee3573a7614ea716abd3693f67be1bbcd38d1db2574f94
DIST bmp_j4c.zip 2511 SHA256 98fe722a89ac107f637d54bf609673402fa9ede87d19ed68ee28633e64e879a7 SHA512 36e51f9ccef19069cb5bc93f3f8139e458406c8f1bd50b8e15440bed8808c43284248e0e2d436c613bb8afd1953703d5e9b681f95857b801d891e9497992bc6d WHIRLPOOL cda7d004d40102c198557e18d8e8fd08d16fe1aa4f2d66869349c7e75bd12b0c000a1388658e593b9ad971fb37c8638e7183addc94fe4ac3b42dca8c42c3f56e
DIST bwt_j3.zip 16535 SHA256 c5e75abdd8d8a3fb6effa3c467e98aeb3175068bd454a635baae79de024b9120 SHA512 8a34909cd70cae76ee2c19b1d90895ab75422b7b2053cf6a4555250871a9ec1f585fe6d115abd6c0ea4cf092711ab71ab48906b4ec5b0230b4fe62b989177f33 WHIRLPOOL 153dd0f98201218d867360f73ef3eceda4f7a784e4e46927c34615a442bd63ecaca00ad59cf42ce2da3a80461ea5e8a6d3bff02d51b5d33d4226876fb4ffbf3e
DIST bwt_slowmode1.zip 138176 SHA256 3b7fb3c4a2491b4f8b2c243f7f67a4f2c7d2b793558207001b2565f06e145a92 SHA512 d415b049f284dc4d3d2211830db260489f26e6b1cc00fd60c16b6d138196299ce247fd0e20b58bef016451a3d5aaf9f55e53585ce97f95d1cfa5672735e4316a WHIRLPOOL fc4b56621de29fd1ec424924678e80191247b64e8f07a84ea1d9fd4dd273ca2e4a4c6eb6102a668e837aafe53035a542741b614ce76dc51ee165e229da764de5
diff --git a/app-arch/zpaq-extras/zpaq-extras-2.ebuild b/app-arch/zpaq-extras/zpaq-extras-2.ebuild
deleted file mode 100644
index a768771..0000000
--- a/app-arch/zpaq-extras/zpaq-extras-2.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=3
-inherit base toolchain-funcs
-
-DESCRIPTION="A set of additional compression profiles for app-arch/zpaq"
-HOMEPAGE="http://mattmahoney.net/dc/zpaq.html"
-SRC_URI="http://mattmahoney.net/dc/bwt_j3.zip
- http://mattmahoney.net/dc/bwt_slowmode1.zip
- http://mattmahoney.net/dc/exe_j1.zip
- http://mattmahoney.net/dc/jpg_test2.zip
- http://mattmahoney.net/dc/min.zip
- http://mattmahoney.net/dc/fast.cfg -> zpaq-fast.cfg
- http://mattmahoney.net/dc/mid.cfg -> zpaq-mid.cfg
- http://mattmahoney.net/dc/max.cfg -> zpaq-max.cfg
- http://mattmahoney.net/dc/bmp_j4b.zip
- http://mattmahoney.net/dc/lz1.zip
- http://mattmahoney.net/dc/lazy100.zip"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="app-arch/unzip"
-RDEPEND=">=app-arch/zpaq-6"
-
-S=${WORKDIR}
-
-src_unpack() {
- local x
- for x in ${A}; do
- if [[ ${x} == *.cfg ]]; then
- cp "${DISTDIR}"/${x} ${x#zpaq-} || die
- fi
- done
-
- default
-}
-
-src_configure() {
- sed \
- -e "/^pcomp zpaq/s:-m:-m${EPREFIX}/usr/share/zpaq/:" \
- -e "s:^pcomp zpaq:pcomp ${EPREFIX}/usr/bin/zpaq:" \
- -e "s:^pcomp \([^/]\):pcomp ${EPREFIX}/usr/libexec/zpaq/\1:" \
- -i *.cfg || die
-
- local sources=( *.cpp )
- # (the following assignment flattens the array)
- progs=${sources[@]%.cpp}
-}
-
-src_compile() {
- tc-export CXX
- emake ${progs} || die
-}
-
-src_install() {
- exeinto /usr/libexec/zpaq
- doexe ${progs} || die
-
- insinto /usr/share/zpaq
- doins *.cfg || die
-}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/zpaq-extras/
@ 2019-12-26 11:05 Michał Górny
0 siblings, 0 replies; 2+ messages in thread
From: Michał Górny @ 2019-12-26 11:05 UTC (permalink / raw
To: gentoo-commits
commit: 680628f7b7710cbb4772eff13db952c36400623b
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 26 10:56:22 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Dec 26 11:05:19 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=680628f7
app-arch/zpaq-extras: Bump to EAPI 7
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
| 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--git a/app-arch/zpaq-extras/zpaq-extras-3.ebuild b/app-arch/zpaq-extras/zpaq-extras-3.ebuild
index b09605d9151..cb8fc5815eb 100644
--- a/app-arch/zpaq-extras/zpaq-extras-3.ebuild
+++ b/app-arch/zpaq-extras/zpaq-extras-3.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=7
inherit toolchain-funcs
DESCRIPTION="A set of additional compression profiles for app-arch/zpaq"
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-12-26 11:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-24 8:57 [gentoo-commits] repo/gentoo:master commit in: app-arch/zpaq-extras/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2019-12-26 11:05 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox