Gentoo Archives: gentoo-commits

From: "Hanno Böck" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/zopfli/
Date: Wed, 01 Jan 2020 08:21:16
Message-Id: 1577866863.8dbc44268f44f1c06b772a964c04f381b2227eb7.hanno@gentoo
1 commit: 8dbc44268f44f1c06b772a964c04f381b2227eb7
2 Author: Hanno Böck <hanno <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 1 08:21:03 2020 +0000
4 Commit: Hanno Böck <hanno <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 1 08:21:03 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dbc4426
7
8 app-arch/zopfli: Version bump
9
10 Use cmake build instead of plain Makefile, avoids needing to patch
11 the buggy makefile from upstream.
12 Raise EAPI to 7.
13
14 Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
15 Package-Manager: Portage-2.3.84, Repoman-2.3.20
16
17 app-arch/zopfli/Manifest | 1 +
18 app-arch/zopfli/zopfli-1.0.3.ebuild | 18 ++++++++++++++++++
19 2 files changed, 19 insertions(+)
20
21 diff --git a/app-arch/zopfli/Manifest b/app-arch/zopfli/Manifest
22 index e618e56d29d..4fa484c5845 100644
23 --- a/app-arch/zopfli/Manifest
24 +++ b/app-arch/zopfli/Manifest
25 @@ -1 +1,2 @@
26 DIST zopfli-1.0.2.tar.gz 136035 BLAKE2B 23b9af324f50f2fa7276cdb8ac042e251f4e295617638c6e3999b8ecaef5d61d1fe21dd7b8d84e19f7f682f3a592674fcd6c19f359efb86ac4ea57acaac3761e SHA512 290a9506a0c1f3d0510230ca21017e1d2bed830f3f96f9d38c9f27210d89123c3baebd05a1da988eccd5395a7b007f6690f08eb9087550a06eaa69d7531f074e
27 +DIST zopfli-1.0.3.tar.gz 195227 BLAKE2B fed322e6d0baf8e9008e91fef4c459e8f67f0e7d62942469893d89b8ca39ace6d1ac68cbbc322e938e66a613ea9a36e3ae9f59550b5f4964107bec490a07038a SHA512 362cbeee0b3f04a4c5da512f82671491f874d4ec7b693dca9724ae42123d7ac184cc4d5de1872b4f1fc938c97f79dfdb482f62d1fca4a17cff6d267f6021e8d2
28
29 diff --git a/app-arch/zopfli/zopfli-1.0.3.ebuild b/app-arch/zopfli/zopfli-1.0.3.ebuild
30 new file mode 100644
31 index 00000000000..12b52c0d638
32 --- /dev/null
33 +++ b/app-arch/zopfli/zopfli-1.0.3.ebuild
34 @@ -0,0 +1,18 @@
35 +# Copyright 1999-2020 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +inherit cmake
41 +
42 +DESCRIPTION="Very good, but slow, deflate or zlib compression"
43 +HOMEPAGE="https://github.com/google/zopfli/"
44 +SRC_URI="https://github.com/google/zopfli/archive/${P}.tar.gz"
45 +
46 +S="${WORKDIR}/${PN}-${P}"
47 +
48 +LICENSE="Apache-2.0"
49 +SLOT="0/1"
50 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
51 +
52 +DOCS=( CONTRIBUTORS README README.zopflipng )