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 335F01382C5 for ; Sat, 23 Jan 2021 21:13:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C19B6E09B1; Sat, 23 Jan 2021 21:13:33 +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 A9C0AE09AE for ; Sat, 23 Jan 2021 21:13:33 +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 B0CEA340F8A for ; Sat, 23 Jan 2021 21:13:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 242574AF for ; Sat, 23 Jan 2021 21:13:30 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1611436315.773c622b5a1ea0314beb26949619984ab9e9c561.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libnsgif/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libnsgif/libnsgif-0.2.1-r1.ebuild X-VCS-Directories: media-libs/libnsgif/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 773c622b5a1ea0314beb26949619984ab9e9c561 X-VCS-Branch: master Date: Sat, 23 Jan 2021 21:13:30 +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: e9c36d59-da43-435a-95a0-9ce073f44557 X-Archives-Hash: 53081b1f0dcff3367a2c5fd12d1415b8 commit: 773c622b5a1ea0314beb26949619984ab9e9c561 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jan 23 18:59:31 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jan 23 21:11:55 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=773c622b media-libs/libnsgif: Drop 0.2.1-r1 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/libnsgif/libnsgif-0.2.1-r1.ebuild | 40 ---------------------------- 1 file changed, 40 deletions(-) diff --git a/media-libs/libnsgif/libnsgif-0.2.1-r1.ebuild b/media-libs/libnsgif/libnsgif-0.2.1-r1.ebuild deleted file mode 100644 index f5ce7cdc1e6..00000000000 --- a/media-libs/libnsgif/libnsgif-0.2.1-r1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="decoding library for the GIF image file format, written in C" -HOMEPAGE="https://www.netsurf-browser.org/projects/libnsgif/" -SRC_URI="https://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~ppc ppc64 x86" -IUSE="" - -BDEPEND=" - >=dev-util/netsurf-buildsystem-1.7-r1 - virtual/pkgconfig -" - -src_prepare() { - default - sed -e '1i#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"' \ - -i src/lzw.c || die -} - -_emake() { - source /usr/share/netsurf-buildsystem/gentoo-helpers.sh - netsurf_define_makeconf - emake "${NETSURF_MAKECONF[@]}" COMPONENT_TYPE=lib-shared $@ -} - -src_compile() { - _emake -} - -src_install() { - _emake DESTDIR="${ED}" install -}