From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 695C7138334 for ; Wed, 1 Jan 2020 08:21:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9B189E09CF; Wed, 1 Jan 2020 08:21:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5C220E09CF for ; Wed, 1 Jan 2020 08:21:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DF79234DD9D for ; Wed, 1 Jan 2020 08:21:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4AD327F for ; Wed, 1 Jan 2020 08:21:12 +0000 (UTC) From: "Hanno Böck" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hanno Böck" Message-ID: <1577866863.8dbc44268f44f1c06b772a964c04f381b2227eb7.hanno@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/zopfli/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/zopfli/Manifest app-arch/zopfli/zopfli-1.0.3.ebuild X-VCS-Directories: app-arch/zopfli/ X-VCS-Committer: hanno X-VCS-Committer-Name: Hanno Böck X-VCS-Revision: 8dbc44268f44f1c06b772a964c04f381b2227eb7 X-VCS-Branch: master Date: Wed, 1 Jan 2020 08:21:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1f5fda5d-8850-4fc5-a5dd-93bfecefddfc X-Archives-Hash: 33d032504f6423fecdfa437546242d3f commit: 8dbc44268f44f1c06b772a964c04f381b2227eb7 Author: Hanno Böck gentoo org> AuthorDate: Wed Jan 1 08:21:03 2020 +0000 Commit: Hanno Böck gentoo org> CommitDate: Wed Jan 1 08:21:03 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dbc4426 app-arch/zopfli: Version bump Use cmake build instead of plain Makefile, avoids needing to patch the buggy makefile from upstream. Raise EAPI to 7. Signed-off-by: Hanno Böck gentoo.org> Package-Manager: Portage-2.3.84, Repoman-2.3.20 app-arch/zopfli/Manifest | 1 + app-arch/zopfli/zopfli-1.0.3.ebuild | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/app-arch/zopfli/Manifest b/app-arch/zopfli/Manifest index e618e56d29d..4fa484c5845 100644 --- a/app-arch/zopfli/Manifest +++ b/app-arch/zopfli/Manifest @@ -1 +1,2 @@ DIST zopfli-1.0.2.tar.gz 136035 BLAKE2B 23b9af324f50f2fa7276cdb8ac042e251f4e295617638c6e3999b8ecaef5d61d1fe21dd7b8d84e19f7f682f3a592674fcd6c19f359efb86ac4ea57acaac3761e SHA512 290a9506a0c1f3d0510230ca21017e1d2bed830f3f96f9d38c9f27210d89123c3baebd05a1da988eccd5395a7b007f6690f08eb9087550a06eaa69d7531f074e +DIST zopfli-1.0.3.tar.gz 195227 BLAKE2B fed322e6d0baf8e9008e91fef4c459e8f67f0e7d62942469893d89b8ca39ace6d1ac68cbbc322e938e66a613ea9a36e3ae9f59550b5f4964107bec490a07038a SHA512 362cbeee0b3f04a4c5da512f82671491f874d4ec7b693dca9724ae42123d7ac184cc4d5de1872b4f1fc938c97f79dfdb482f62d1fca4a17cff6d267f6021e8d2 diff --git a/app-arch/zopfli/zopfli-1.0.3.ebuild b/app-arch/zopfli/zopfli-1.0.3.ebuild new file mode 100644 index 00000000000..12b52c0d638 --- /dev/null +++ b/app-arch/zopfli/zopfli-1.0.3.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Very good, but slow, deflate or zlib compression" +HOMEPAGE="https://github.com/google/zopfli/" +SRC_URI="https://github.com/google/zopfli/archive/${P}.tar.gz" + +S="${WORKDIR}/${PN}-${P}" + +LICENSE="Apache-2.0" +SLOT="0/1" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" + +DOCS=( CONTRIBUTORS README README.zopflipng )