summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-08-20 15:17:05 +0200
committerPacho Ramos <pacho@gentoo.org>2016-08-20 15:17:05 +0200
commit1aca5415a36246bf6a33b4f5bda03fe8b7352b51 (patch)
treed42c41078bcbb98d4d68cc4c847d8952bb3205de /app-portage
parentpackage.mask: cleanup obsolete entries (diff)
downloadgentoo-1aca5415a36246bf6a33b4f5bda03fe8b7352b51.tar.gz
gentoo-1aca5415a36246bf6a33b4f5bda03fe8b7352b51.tar.bz2
gentoo-1aca5415a36246bf6a33b4f5bda03fe8b7352b51.zip
Remove masked for removal packages
Diffstat (limited to 'app-portage')
-rw-r--r--app-portage/epm/Manifest1
-rw-r--r--app-portage/epm/epm-1.40.ebuild33
-rw-r--r--app-portage/epm/epm-9999.ebuild34
-rw-r--r--app-portage/epm/files/epm-1.40-prefix.patch32
-rw-r--r--app-portage/epm/metadata.xml20
5 files changed, 0 insertions, 120 deletions
diff --git a/app-portage/epm/Manifest b/app-portage/epm/Manifest
deleted file mode 100644
index dc48794eaec4..000000000000
--- a/app-portage/epm/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST epm-1.40.tar.gz 10980 SHA256 da435cc7a86807f9a1575afdb0ed6bdef26a9b7d0f1d8b91550b1aacf75eeefc SHA512 745c7f902fb35672058b05763a308322fb891b5dcc4f37a0444fdc22f1802ec5e8479445537c299e23dcf3882259751a163e356a633e270a2386a1456b541103 WHIRLPOOL f61f47480108d477afee7fdab549894898ea70ba61a004fef99885390c5eeab601bb271db73b301fd94093266be05496c9308031fd98f27bd0c58e53fb91b036
diff --git a/app-portage/epm/epm-1.40.ebuild b/app-portage/epm/epm-1.40.ebuild
deleted file mode 100644
index 036d897226f0..000000000000
--- a/app-portage/epm/epm-1.40.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-inherit eutils prefix
-
-DESCRIPTION="rpm workalike for Gentoo Linux"
-HOMEPAGE="https://github.com/fuzzyray/epm"
-SRC_URI="https://www.gentoo.org/~fuzzyray/distfiles/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE=""
-
-DEPEND=">=dev-lang/perl-5"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-prefix.patch
- eprefixify epm
-}
-
-src_compile() {
- pod2man epm > epm.1 || die "pod2man failed"
-}
-
-src_install() {
- dobin epm || die
- doman epm.1
-}
diff --git a/app-portage/epm/epm-9999.ebuild b/app-portage/epm/epm-9999.ebuild
deleted file mode 100644
index e07c494c43dc..000000000000
--- a/app-portage/epm/epm-9999.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-inherit eutils git-2
-
-DESCRIPTION="rpm workalike for Gentoo Linux"
-HOMEPAGE="https://github.com/fuzzyray/epm"
-SRC_URI=""
-EGIT_REPO_URI="git://github.com/fuzzyray/epm.git"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE=""
-
-DEPEND=">=dev-lang/perl-5"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- sed -i "s/\"EPM version .*\";/\"EPM version 9999-${EGIT_VERSION}\";/" epm \
- || die "Failed to set version"
-}
-
-src_compile() {
- pod2man epm > epm.1 || die "pod2man failed"
-}
-
-src_install() {
- dobin epm || die
- doman epm.1
-}
diff --git a/app-portage/epm/files/epm-1.40-prefix.patch b/app-portage/epm/files/epm-1.40-prefix.patch
deleted file mode 100644
index 957a5cb43838..000000000000
--- a/app-portage/epm/files/epm-1.40-prefix.patch
+++ /dev/null
@@ -1,32 +0,0 @@
---- epm.orig 2012-12-27 21:21:51.288350173 -0700
-+++ epm 2012-12-27 21:26:51.429905384 -0700
-@@ -7,13 +7,13 @@
- # Global vars
- (my $version = '$Revision: 1.2 $') =~ s/.*?(\d.*\d).*/EPM version $1/;
- my $verbose = 0;
--my $dbpath = '/var/db/pkg';
-+my $dbpath = '@GENTOO_PORTAGE_EPREFIX@/var/db/pkg';
- my $pkgregex =
- '^.+?\/'. # group (ignored)
- '(.+?)'. # name
- '-(\d+(?:\.\d+)*\w*)'. # version, eg 1.23.4a
- '((?:(?:_alpha|_beta|_pre|_rc)\d*)?)'. # special suffix
-- '((?:-r\d+)?)$'; # revision, eg r12
-+ '((?:-r\d+)?(?:\.\d+)?)$'; # revision, eg r12 or r01.1
- my $root = '/';
- my %opt = (
- 'dbpath' => \$dbpath,
-@@ -267,11 +267,11 @@
- if ($opt{'c'}) {
- # Read in CONFIG_PROTECT from /etc/make.{global,conf}
- my (@CONFIG_PROTECT) = split ' ',
-- `. /etc/make.globals; . /etc/make.conf; echo \$CONFIG_PROTECT`;
-+ `. @GENTOO_PORTAGE_EPREFIX@/etc/make.globals; . @GENTOO_PORTAGE_EPREFIX@/etc/make.conf; echo \$CONFIG_PROTECT`;
- die "CONFIG_PROTECT is empty" unless @CONFIG_PROTECT;
- my ($confprotre) = join '|', @CONFIG_PROTECT;
- @files = grep {
-- (split ' ', $_, 2)[1] =~ /^($confprotre)/o } @files;
-+ (split ' ', $_, 2)[1] =~ m!^@GENTOO_PORTAGE_EPREFIX@($confprotre)!o } @files;
- }
-
- # Trim @files if doc files requested
diff --git a/app-portage/epm/metadata.xml b/app-portage/epm/metadata.xml
deleted file mode 100644
index 37131e327a53..000000000000
--- a/app-portage/epm/metadata.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>gentoo@weilbacher.org</email>
- <name>Peter Weilbacher</name>
- <description>Current maintainer, assign bugs</description>
- </maintainer>
- <maintainer type="person">
- <email>fuzzyray@gentoo.org</email>
- <description>Proxy committer, CC bugs</description>
- </maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
- <upstream>
- <remote-id type="github">fuzzyray/epm</remote-id>
- </upstream>
-</pkgmetadata>