Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/safecopy: ChangeLog safecopy-1.4.ebuild
Date: Thu, 16 Jul 2009 13:13:40
Message-Id: E1MRQmJ-0005jv-4S@stork.gentoo.org
1 ssuominen 09/07/16 13:13:39
2
3 Modified: ChangeLog
4 Added: safecopy-1.4.ebuild
5 Log:
6 Version bump wrt #277418, thanks to Diego E. Pettenò and Corvus Corax.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 sys-fs/safecopy/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/safecopy/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/safecopy/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/safecopy/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-fs/safecopy/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 27 May 2009 15:30:45 -0000 1.3
23 +++ ChangeLog 16 Jul 2009 13:13:39 -0000 1.4
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-fs/safecopy
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/safecopy/ChangeLog,v 1.3 2009/05/27 15:30:45 scarabeus Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/safecopy/ChangeLog,v 1.4 2009/07/16 13:13:39 ssuominen Exp $
29 +
30 +*safecopy-1.4 (16 Jul 2009)
31 +
32 + 16 Jul 2009; Samuli Suominen <ssuominen@g.o> +safecopy-1.4.ebuild:
33 + Version bump wrt #277418, thanks to Diego E. Pettenò and Corvus Corax.
34
35 27 May 2009; Tomáš Chvátal <scarabeus@g.o> safecopy-1.3.ebuild:
36 Modify the test handling. Fixes QA issues. Thx to nirbheek for pointing
37
38
39
40 1.1 sys-fs/safecopy/safecopy-1.4.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/safecopy/safecopy-1.4.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/safecopy/safecopy-1.4.ebuild?rev=1.1&content-type=text/plain
44
45 Index: safecopy-1.4.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sys-fs/safecopy/safecopy-1.4.ebuild,v 1.1 2009/07/16 13:13:39 ssuominen Exp $
50
51 EAPI=2
52 inherit base
53
54 DESCRIPTION="Data recovery tool to fault-tolerantly extract data from damaged (io-errors) devices or files."
55 HOMEPAGE="http://safecopy.sourceforge.net"
56 SRC_URI="mirror://sourceforge/safecopy/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86"
61 IUSE="test"
62
63 RDEPEND=""
64 DEPEND="test? ( sys-apps/findutils
65 sys-apps/grep
66 sys-apps/coreutils
67 sys-apps/sed )"
68
69 src_prepare() {
70 sed -e 's:bin/sh:bin/bash:' \
71 -i "${S}"/test/test.sh || die "sed failed"
72 }
73
74 src_configure() {
75 base_src_configure
76 if use test; then
77 cd "${S}"/test/libsafecopydebug
78 econf
79 fi
80 }
81
82 src_compile() {
83 base_src_compile
84 if use test; then
85 cd "${S}"/test/libsafecopydebug
86 emake || die "Testsuite compilation failed"
87 fi
88 }
89
90 src_install() {
91 base_src_install
92 dodoc README || die "copying documentation failed"
93 }
94
95 src_test() {
96 cd "${S}"/test
97 ./test.sh || die "./tesh.sh failed"
98 }