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 6FF271382C5 for ; Wed, 21 Mar 2018 21:42:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9C038E088C; Wed, 21 Mar 2018 21:42:53 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 78C3FE088C for ; Wed, 21 Mar 2018 21:42:53 +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 3F3AD335C0A for ; Wed, 21 Mar 2018 21:42:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BEC0E258 for ; Wed, 21 Mar 2018 21:42:50 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1521668569.eb787eafb6058042fd877f7ab9e0bae4d988bc07.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/parted/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-block/parted/parted-3.2.ebuild X-VCS-Directories: sys-block/parted/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: eb787eafb6058042fd877f7ab9e0bae4d988bc07 X-VCS-Branch: master Date: Wed, 21 Mar 2018 21:42:50 +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: 6e2ddc65-62fa-4aa2-8028-1d8d441898d4 X-Archives-Hash: f7209c507ad00cc3079570b40cdaebaa commit: eb787eafb6058042fd877f7ab9e0bae4d988bc07 Author: Jeroen Roovers gentoo org> AuthorDate: Wed Mar 21 21:42:14 2018 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Wed Mar 21 21:42:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb787eaf sys-block/parted: Old. Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-block/parted/parted-3.2.ebuild | 57 -------------------------------------- 1 file changed, 57 deletions(-) diff --git a/sys-block/parted/parted-3.2.ebuild b/sys-block/parted/parted-3.2.ebuild deleted file mode 100644 index 63f152b69d2..00000000000 --- a/sys-block/parted/parted-3.2.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit autotools eutils - -DESCRIPTION="Create, destroy, resize, check, copy partitions and file systems" -HOMEPAGE="https://www.gnu.org/software/parted" -SRC_URI="mirror://gnu/${PN}/${P}.tar.xz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86" -IUSE="+debug device-mapper nls readline selinux static-libs" -RESTRICT="test" - -# specific version for gettext needed -# to fix bug 85999 -RDEPEND=" - >=sys-fs/e2fsprogs-1.27 - >=sys-libs/ncurses-5.7-r7:0= - device-mapper? ( >=sys-fs/lvm2-2.02.45 ) - readline? ( >=sys-libs/readline-5.2:0= ) - selinux? ( sys-libs/libselinux ) -" -DEPEND=" - ${RDEPEND} - nls? ( >=sys-devel/gettext-0.12.1-r2 ) - virtual/pkgconfig -" - -src_prepare() { - epatch \ - "${FILESDIR}"/${PN}-3.2-devmapper.patch \ - "${FILESDIR}"/${PN}-3.2-po4a-mandir.patch - eautoreconf -} - -src_configure() { - econf \ - $(use_enable debug) \ - $(use_enable device-mapper) \ - $(use_enable nls) \ - $(use_enable selinux) \ - $(use_enable static-libs static) \ - $(use_with readline) \ - --disable-rpath \ - --disable-silent-rules -} - -DOCS=( AUTHORS BUGS ChangeLog NEWS README THANKS TODO doc/{API,FAT,USER.jp} ) - -src_install() { - default - prune_libtool_files -}