summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2020-09-30 15:15:07 +0000
committerSam James <sam@gentoo.org>2020-09-30 15:17:16 +0000
commitebe886820c4c81769bea9cd1e45709d20ac582ac (patch)
treeddbcd2edab89e8a4777025fa106336105e0dd04c /app-admin
parentnet-mail/maildirtree: remove last-rited package (diff)
downloadgentoo-ebe886820c4c81769bea9cd1e45709d20ac582ac.tar.gz
gentoo-ebe886820c4c81769bea9cd1e45709d20ac582ac.tar.bz2
gentoo-ebe886820c4c81769bea9cd1e45709d20ac582ac.zip
app-admin/passook: remove last-rited package
Bug: https://bugs.gentoo.org/724210 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-admin')
-rw-r--r--app-admin/passook/Manifest1
-rw-r--r--app-admin/passook/files/passook.patch26
-rw-r--r--app-admin/passook/metadata.xml10
-rw-r--r--app-admin/passook/passook-20121001.ebuild30
4 files changed, 0 insertions, 67 deletions
diff --git a/app-admin/passook/Manifest b/app-admin/passook/Manifest
deleted file mode 100644
index f050c66413b6..000000000000
--- a/app-admin/passook/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST passook-20121001.tar.gz 13992 BLAKE2B c253fafa45c1f3ff30c91bc697ffece20fd6a58f36075909043041b281d558ab0a9e4352d867e00404bed81bdf44a5bf236bfeb72b9f41fd5ffe78a3b33a9900 SHA512 8c3c72f3001fc3c88060f77685b4f238d42dd65d599522604cf3f3fede2c3b94f4a12622e006d10a4f026283b885f90e4f2e2fa9282a48e181480bec4e2d13cb
diff --git a/app-admin/passook/files/passook.patch b/app-admin/passook/files/passook.patch
deleted file mode 100644
index db14e6ec817c..000000000000
--- a/app-admin/passook/files/passook.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- passook.orig
-+++ passook
-@@ -1,4 +1,4 @@
--#!/usr/bin/perl
-+#!@GENTOO_PORTAGE_EPREFIX@/usr/bin/perl
-
- srand;
- $p = 3; #default pronouce level
-@@ -38,7 +38,7 @@
- }
-
- sub fourletterword {
-- my $grepstring = 'egrep "^....$" /usr/dict/words';
-+ my $grepstring = 'egrep "^....$" @GENTOO_PORTAGE_EPREFIX@/usr/share/dict/words';
- my @fourletters = split(/\n/,`$grepstring`);
- my $word = $fourletters[rand(@fourletters)];
- $word = &tangle($word) if ($p<5);
-@@ -46,7 +46,7 @@
- }
-
- sub threeletterword {
-- my $grepstring = 'egrep "^...$" /usr/dict/words';
-+ my $grepstring = 'egrep "^...$" @GENTOO_PORTAGE_EPREFIX@/usr/share/dict/words';
- my @threeletters = split(/\n/,`$grepstring`);
- my $word = $threeletters[rand(@threeletters)];
- $word = &tangle($word) if ($p<5);
diff --git a/app-admin/passook/metadata.xml b/app-admin/passook/metadata.xml
deleted file mode 100644
index f7a29ccaa787..000000000000
--- a/app-admin/passook/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription>Passook is a perl script that generates passwords. You can
- customize the security of the password generated.</longdescription>
- <upstream>
- <remote-id type="github">mackers/passook</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/app-admin/passook/passook-20121001.ebuild b/app-admin/passook/passook-20121001.ebuild
deleted file mode 100644
index 4cbd2bae4926..000000000000
--- a/app-admin/passook/passook-20121001.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils prefix
-
-DESCRIPTION="Password generator capable of generating pronounceable and/or secure passwords"
-HOMEPAGE="https://github.com/mackers/passook"
-# snapshot of https://github.com/mackers/passook.git
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 hppa ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
-
-RDEPEND="dev-lang/perl
- sys-apps/miscfiles"
-
-S="${WORKDIR}/${PN}"
-
-src_prepare() {
- epatch "${FILESDIR}"/passook.patch
- eprefixify passook
-}
-
-src_install() {
- dobin passook
- dodoc README passook.cgi
-}