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 CE625138239 for ; Sun, 9 Sep 2018 09:59:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 04C36E08E2; Sun, 9 Sep 2018 09:59:31 +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 D1B3DE08E2 for ; Sun, 9 Sep 2018 09:59:30 +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 75655340D03 for ; Sun, 9 Sep 2018 09:59:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8446538A for ; Sun, 9 Sep 2018 09:59:27 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1536487148.14ce8dbbe177a691ea5f0dbd70ebc1b83b734ec6.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/pep/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/pep/pep-2.8-r1.ebuild X-VCS-Directories: app-text/pep/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 14ce8dbbe177a691ea5f0dbd70ebc1b83b734ec6 X-VCS-Branch: master Date: Sun, 9 Sep 2018 09:59:27 +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: 08713cf1-a823-4eeb-b420-aed9eb327bad X-Archives-Hash: 3cd306cb50379a1b8fb9fb203f5fb804 commit: 14ce8dbbe177a691ea5f0dbd70ebc1b83b734ec6 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Sep 9 09:59:08 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sun Sep 9 09:59:08 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14ce8dbb app-text/pep: Drop old Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-text/pep/pep-2.8-r1.ebuild | 49 ------------------------------------------ 1 file changed, 49 deletions(-) diff --git a/app-text/pep/pep-2.8-r1.ebuild b/app-text/pep/pep-2.8-r1.ebuild deleted file mode 100644 index 59b13dc23d4..00000000000 --- a/app-text/pep/pep-2.8-r1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="2" - -inherit eutils toolchain-funcs flag-o-matic - -DESCRIPTION="General purpose filter and file cleaning program" -HOMEPAGE="http://hannemyr.com/enjoy/pep.html" -SRC_URI="http://hannemyr.com/enjoy/${PN}${PV//./}.zip" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~mips ppc x86 ~x86-linux ~ppc-macos" -IUSE="" - -DEPEND="app-arch/unzip" -RDEPEND="" - -S=${WORKDIR} - -src_prepare() { - # pep does not come with autconf so here's a patch to configure - # Makefile with the correct path - epatch \ - "${FILESDIR}"/${P}-gentoo.patch \ - "${FILESDIR}"/${P}-include.patch - # Darwin lacks stricmp and DIRCHAR - if [[ ${CHOST} == *-darwin* ]] ; then - sed -i -e '/^OBJS/s/^\(.*\)$/\1 bdmg.o/' Makefile - append-flags "-Dunix" -DSTRICMP - fi -} - -src_compile() { - # make man page too - make Doc/pep.1 || die "make man page failed" - emake CC="$(tc-getCC)" || die "emake failed" -} - -src_install() { - dobin pep || die "dobin failed" - doman Doc/pep.1 || die "doman failed" - - insinto /usr/share/pep - doins Filters/* || die "doins failed" - - dodoc aareadme.txt file_id.diz -}