Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/pwsafe/
Date: Sat, 11 Nov 2017 22:04:39
Message-Id: 1510437860.8dcfa10c16bf29843424ec050ca02285318694d1.monsieurp@gentoo
1 commit: 8dcfa10c16bf29843424ec050ca02285318694d1
2 Author: Christopher Head <chead <AT> chead <DOT> ca>
3 AuthorDate: Wed Nov 8 06:54:57 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 11 22:04:20 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dcfa10c
7
8 app-misc/pwsafe-0.2.0-r2: delete old.
9
10 This old stable version is obsoleted by the new stable version 0.2.0-r4.
11 Closes: https://github.com/gentoo/gentoo/pull/6148
12
13 app-misc/pwsafe/pwsafe-0.2.0-r2.ebuild | 41 ----------------------------------
14 1 file changed, 41 deletions(-)
15
16 diff --git a/app-misc/pwsafe/pwsafe-0.2.0-r2.ebuild b/app-misc/pwsafe/pwsafe-0.2.0-r2.ebuild
17 deleted file mode 100644
18 index 43c603b050b..00000000000
19 --- a/app-misc/pwsafe/pwsafe-0.2.0-r2.ebuild
20 +++ /dev/null
21 @@ -1,41 +0,0 @@
22 -# Copyright 1999-2012 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=4
26 -inherit base eutils
27 -
28 -DESCRIPTION="A Password Safe compatible command-line password manager"
29 -HOMEPAGE="http://nsd.dyndns.org/pwsafe/"
30 -SRC_URI="http://nsd.dyndns.org/pwsafe/releases/${P}.tar.gz"
31 -PATCHES=(
32 - "${FILESDIR}/${P}-cvs-1.57.patch"
33 - "${FILESDIR}/${P}-printf.patch"
34 - "${FILESDIR}/${P}-fake-readline.patch"
35 - "${FILESDIR}/${P}-man-page-option-syntax.patch"
36 - "${FILESDIR}/${P}-XChangeProperty.patch"
37 - )
38 -
39 -LICENSE="GPL-2"
40 -SLOT="0"
41 -KEYWORDS="amd64 x86"
42 -
43 -IUSE="X readline"
44 -
45 -DEPEND="sys-libs/ncurses
46 - dev-libs/openssl
47 - readline? ( sys-libs/readline )
48 - X? ( x11-libs/libSM
49 - x11-libs/libICE
50 - x11-libs/libXmu
51 - x11-libs/libX11 )"
52 -RDEPEND="${DEPEND}"
53 -
54 -src_configure() {
55 - econf $(use_with X x) $(use_with readline)
56 -}
57 -
58 -src_install() {
59 - doman pwsafe.1
60 - dobin pwsafe
61 - dodoc README NEWS
62 -}