Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/safecopy: safecopy-1.5.ebuild ChangeLog safecopy-1.4.ebuild safecopy-1.3.ebuild
Date: Wed, 29 Jul 2009 22:44:59
Message-Id: E1MWHtI-0002cq-LM@stork.gentoo.org
1 scarabeus 09/07/29 22:44:56
2
3 Modified: ChangeLog
4 Added: safecopy-1.5.ebuild
5 Removed: safecopy-1.4.ebuild safecopy-1.3.ebuild
6 Log:
7 Version bump. Remove old.
8 (Portage version: 2.2_rc33/cvs/Linux i686)
9
10 Revision Changes Path
11 1.5 sys-fs/safecopy/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/safecopy/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/safecopy/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/safecopy/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-fs/safecopy/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 16 Jul 2009 13:13:39 -0000 1.4
24 +++ ChangeLog 29 Jul 2009 22:44:56 -0000 1.5
25 @@ -1,6 +1,13 @@
26 # ChangeLog for sys-fs/safecopy
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/safecopy/ChangeLog,v 1.4 2009/07/16 13:13:39 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/safecopy/ChangeLog,v 1.5 2009/07/29 22:44:56 scarabeus Exp $
30 +
31 +*safecopy-1.5 (29 Jul 2009)
32 +
33 + 29 Jul 2009; Tomáš Chvátal <scarabeus@g.o> -safecopy-1.3.ebuild,
34 + -files/safecopy-1.3-sandbox.patch, -safecopy-1.4.ebuild,
35 + +safecopy-1.5.ebuild:
36 + Version bump. Remove old.
37
38 *safecopy-1.4 (16 Jul 2009)
39
40
41
42
43 1.1 sys-fs/safecopy/safecopy-1.5.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/safecopy/safecopy-1.5.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/safecopy/safecopy-1.5.ebuild?rev=1.1&content-type=text/plain
47
48 Index: safecopy-1.5.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-fs/safecopy/safecopy-1.5.ebuild,v 1.1 2009/07/29 22:44:56 scarabeus Exp $
53
54 EAPI=2
55 inherit base
56
57 DESCRIPTION="Data recovery tool to fault-tolerantly extract data from damaged (io-errors) devices or files."
58 HOMEPAGE="http://safecopy.sourceforge.net"
59 SRC_URI="mirror://sourceforge/safecopy/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="test"
65
66 RDEPEND=""
67 DEPEND=""
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}"/simulator
78 econf
79 fi
80 }
81
82 src_compile() {
83 base_src_compile
84 if use test; then
85 cd "${S}"/simulator
86 emake || die "Simulator compilation failed -- needed for testing"
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 }