From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/zpaq-extras/
Date: Tue, 24 May 2016 08:57:52 +0000 (UTC) [thread overview]
Message-ID: <1464080263.7d686fff1228ade554c2cb51b4a8f3c3b616312a.mgorny@gentoo> (raw)
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
-}
next reply other threads:[~2016-05-24 8:57 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-24 8:57 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2019-12-26 11:05 [gentoo-commits] repo/gentoo:master commit in: app-arch/zpaq-extras/ Michał Górny
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1464080263.7d686fff1228ade554c2cb51b4a8f3c3b616312a.mgorny@gentoo \
--to=mgorny@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox