Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/bcwipe: ChangeLog bcwipe-1.9.1.ebuild bcwipe-1.7_p2.ebuild
Date: Thu, 30 Apr 2009 20:59:00
Message-Id: E1LzdLO-0005V0-Lf@stork.gentoo.org
1 arfrever 09/04/30 20:58:58
2
3 Modified: ChangeLog
4 Added: bcwipe-1.9.1.ebuild
5 Removed: bcwipe-1.7_p2.ebuild
6 Log:
7 Version bump (bug #267817).
8 (Portage version: 13564-svn/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.35 app-crypt/bcwipe/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/bcwipe/ChangeLog?rev=1.35&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/bcwipe/ChangeLog?rev=1.35&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/bcwipe/ChangeLog?r1=1.34&r2=1.35
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/ChangeLog,v
20 retrieving revision 1.34
21 retrieving revision 1.35
22 diff -u -r1.34 -r1.35
23 --- ChangeLog 26 Apr 2009 19:16:16 -0000 1.34
24 +++ ChangeLog 30 Apr 2009 20:58:58 -0000 1.35
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-crypt/bcwipe
27 -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/ChangeLog,v 1.34 2009/04/26 19:16:16 ranger Exp $
29 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/ChangeLog,v 1.35 2009/04/30 20:58:58 arfrever Exp $
31 +
32 +*bcwipe-1.9.1 (30 Apr 2009)
33 +
34 + 30 Apr 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
35 + -bcwipe-1.7_p2.ebuild, +bcwipe-1.9.1.ebuild,
36 + +files/bcwipe-1.9.1-fix_warnings.patch:
37 + Version bump (bug #267817).
38
39 26 Apr 2009; Brent Baude <ranger@g.o> bcwipe-1.7_p7.ebuild:
40 stable ppc, bug 266807
41
42
43
44 1.1 app-crypt/bcwipe/bcwipe-1.9.1.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/bcwipe/bcwipe-1.9.1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/bcwipe/bcwipe-1.9.1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: bcwipe-1.9.1.ebuild
50 ===================================================================
51 # Copyright 1999-2009 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-crypt/bcwipe/bcwipe-1.9.1.ebuild,v 1.1 2009/04/30 20:58:58 arfrever Exp $
54
55 EAPI="2"
56
57 inherit eutils versionator
58
59 MY_PV="$(replace_version_separator 2 -)"
60
61 DESCRIPTION="BCWipe secure file removal utility"
62 HOMEPAGE="http://www.jetico.com/"
63 SRC_URI="http://www.jetico.com/linux/BCWipe-${MY_PV}.tar.gz
64 doc? ( http://www.jetico.com/linux/BCWipe.doc.tgz )"
65
66 LICENSE="bestcrypt"
67 SLOT="0"
68 IUSE="doc"
69 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
70
71 DEPEND=""
72 RDEPEND=""
73
74 S="${WORKDIR}/${PN}-${MY_PV}"
75
76 src_prepare() {
77 epatch "${FILESDIR}/${P}-fix_warnings.patch"
78 }
79
80 src_test() {
81 echo "abc123" >> testfile
82 ./bcwipe -f testfile || die "bcwipe test failed"
83 [ -f testfile ] && die "test file still exists. bcwipe should have deleted it"
84 }
85
86 src_install() {
87 emake DESTDIR="${D}" install || die "emake install failed"
88
89 if use doc ; then
90 dohtml -r ../bcwipe-help || die "dohtml failed"
91 fi
92 }
93
94 pkg_postinst() {
95 ewarn "The BestCrypt drivers are not free - Please purchace a license from "
96 ewarn "http://www.jetico.com/"
97 ewarn "full details /usr/share/doc/${PF}/html/bcwipe-help/wu_licen.htm"
98 }