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 0BB671382C5 for ; Wed, 3 Jan 2018 19:36:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3441FE0817; Wed, 3 Jan 2018 19:36:25 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 0ED3FE0817 for ; Wed, 3 Jan 2018 19:36:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 E4FFA335C2C for ; Wed, 3 Jan 2018 19:36:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A5BBF18A for ; Wed, 3 Jan 2018 19:36:22 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1515008166.f836c9c5676d9d55c4082ac0343122755ccdf9d9.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/optipng/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/optipng/optipng-0.7.6-r1.ebuild X-VCS-Directories: media-gfx/optipng/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: f836c9c5676d9d55c4082ac0343122755ccdf9d9 X-VCS-Branch: master Date: Wed, 3 Jan 2018 19:36:22 +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-Archives-Salt: 930674ea-7826-473a-a93c-8550399574e6 X-Archives-Hash: d51a9bb6e459a95683ba5b44a4be2ea4 commit: f836c9c5676d9d55c4082ac0343122755ccdf9d9 Author: Sebastian Pipping gentoo org> AuthorDate: Wed Jan 3 19:36:06 2018 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Wed Jan 3 19:36:06 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f836c9c5 media-gfx/optipng: Remove 0.7.6-r1 (bug 639690) Package-Manager: Portage-2.3.16, Repoman-2.3.6 media-gfx/optipng/optipng-0.7.6-r1.ebuild | 56 ------------------------------- 1 file changed, 56 deletions(-) diff --git a/media-gfx/optipng/optipng-0.7.6-r1.ebuild b/media-gfx/optipng/optipng-0.7.6-r1.ebuild deleted file mode 100644 index 9039ea4f153..00000000000 --- a/media-gfx/optipng/optipng-0.7.6-r1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils toolchain-funcs - -DESCRIPTION="Compress PNG files without affecting image quality" -HOMEPAGE="http://optipng.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" -IUSE="" - -RDEPEND="sys-libs/zlib - media-libs/libpng:0" -DEPEND="${RDEPEND} - sys-apps/findutils" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-0.7.5-estonian.patch - epatch "${FILESDIR}"/${PN}-0.7.6-cve-2017-1000229.patch # bug 637936 - - rm -R src/{libpng,zlib} || die - find . -type d -name build -exec rm -R {} + || die - - # next release is almost a complete rewrite, so plug this compilation - # problem in anticipation of the much (c)leaner(?) rewrite - sed -i \ - -e 's/^#ifdef AT_FDCWD/#if defined(AT_FDCWD) \&\& !(defined (__SVR4) \&\& defined (__sun))/' \ - src/optipng/osys.c || die - - tc-export CC AR RANLIB - export LD=$(tc-getCC) -} - -src_configure() { - ./configure \ - -with-system-libpng \ - -with-system-zlib \ - || die "configure failed" -} - -src_compile() { - emake -C src/optipng -} - -src_install() { - dodoc README.txt doc/*.txt - dohtml doc/*.html - doman src/${PN}/man/${PN}.1 - - dobin src/${PN}/${PN} -}