From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9B8401384B4 for ; Sat, 14 Nov 2015 23:47:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1046021C043; Sat, 14 Nov 2015 23:47:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 61DA421C01E for ; Sat, 14 Nov 2015 23:47:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 86A3A33FEB1 for ; Sat, 14 Nov 2015 23:47:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4510EB5D for ; Sat, 14 Nov 2015 23:47:00 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1447544477.ef89e37863d16c5f4e7bfe0868e37b4db6c16507.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/lha/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/lha/lha-114i-r8.ebuild X-VCS-Directories: app-arch/lha/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: ef89e37863d16c5f4e7bfe0868e37b4db6c16507 X-VCS-Branch: master Date: Sat, 14 Nov 2015 23:47:00 +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: 895685f2-3e0a-4dd2-aade-121457224fa6 X-Archives-Hash: 0755eeb675251e8bacbc9bc3a178cf5a commit: ef89e37863d16c5f4e7bfe0868e37b4db6c16507 Author: Patrice Clement gentoo org> AuthorDate: Sat Nov 14 23:41:17 2015 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat Nov 14 23:41:17 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef89e378 app-arch/lha: Mend header. Stick patch in PATCHES array. Mask KEYWORDS. Package-Manager: portage-2.2.20.1 Signed-off-by: Patrice Clement gentoo.org> app-arch/lha/lha-114i-r8.ebuild | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/app-arch/lha/lha-114i-r8.ebuild b/app-arch/lha/lha-114i-r8.ebuild index 02964b3..46a631b 100644 --- a/app-arch/lha/lha-114i-r8.ebuild +++ b/app-arch/lha/lha-114i-r8.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 #Id$ @@ -10,17 +10,20 @@ MY_P=${PN}-1.14i-ac20050924p1 DESCRIPTION="Utility for creating and opening lzh archives" HOMEPAGE="http://lha.sourceforge.jp" SRC_URI="mirror://sourceforge.jp/${PN}/22231/${MY_P}.tar.gz" - LICENSE="lha" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~m68k-mint" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~m68k-mint" IUSE="" -S=${WORKDIR}/${MY_P} +S="${WORKDIR}/${MY_P}" + +PATCHES=( + "${FILESDIR}"/${P}-file-list-from-stdin.patch + "${FILESDIR}"/${P}-fix-getopt_long-declaration.patch +) src_prepare() { - epatch "${FILESDIR}"/${P}-file-list-from-stdin.patch - epatch "${FILESDIR}"/${P}-fix-getopt_long-declaration.patch + epatch "${PATCHES[@]}" sed -e '/^AM_C_PROTOTYPES/d' \ -e 's/^AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' \