Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/detox: detox-1.2.0-r3.ebuild ChangeLog
Date: Tue, 23 Jun 2015 07:11:14
Message-Id: 20150623071107.498BFA52@oystercatcher.gentoo.org
1 jlec 15/06/23 07:11:07
2
3 Modified: ChangeLog
4 Added: detox-1.2.0-r3.ebuild
5 Log:
6 Make build format-security save, bug #521084; bump to EAPI=5; drop base.eclass usage
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
9
10 Revision Changes Path
11 1.35 app-misc/detox/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/detox/ChangeLog?rev=1.35&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/detox/ChangeLog?rev=1.35&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/detox/ChangeLog?r1=1.34&r2=1.35
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-misc/detox/ChangeLog,v
20 retrieving revision 1.34
21 retrieving revision 1.35
22 diff -u -r1.34 -r1.35
23 --- ChangeLog 9 Jun 2015 11:38:49 -0000 1.34
24 +++ ChangeLog 23 Jun 2015 07:11:07 -0000 1.35
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-misc/detox
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-misc/detox/ChangeLog,v 1.34 2015/06/09 11:38:49 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-misc/detox/ChangeLog,v 1.35 2015/06/23 07:11:07 jlec Exp $
30 +
31 +*detox-1.2.0-r3 (23 Jun 2015)
32 +
33 + 23 Jun 2015; Justin Lecher <jlec@g.o> +detox-1.2.0-r3.ebuild,
34 + +files/detox-1.2.0-format-security.patch:
35 + Make build format-security save, bug #521084; bump to EAPI=5; drop base.eclass
36 + usage
37
38 09 Jun 2015; Justin Lecher <jlec@g.o> metadata.xml:
39 Updating remote-id in metadata.xml
40
41
42
43 1.1 app-misc/detox/detox-1.2.0-r3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/detox/detox-1.2.0-r3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/detox/detox-1.2.0-r3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: detox-1.2.0-r3.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-misc/detox/detox-1.2.0-r3.ebuild,v 1.1 2015/06/23 07:11:07 jlec Exp $
53
54 EAPI=5
55
56 inherit eutils
57
58 MY_P="${PN}-${PV/_/-}"
59
60 DESCRIPTION="Safely remove spaces and strange characters from filenames"
61 HOMEPAGE="http://detox.sourceforge.net/"
62 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
63
64 LICENSE="BSD"
65 SLOT="0"
66 KEYWORDS="~amd64 ~hppa ~mips ~ppc ~x86 ~amd64-linux ~x86-linux"
67 IUSE=""
68
69 S="${WORKDIR}"/${MY_P}
70
71 RDEPEND="dev-libs/popt"
72 DEPEND="${RDEPEND}
73 sys-devel/flex
74 sys-devel/bison"
75
76 PATCHES=(
77 "${FILESDIR}"/${P}-parallel.patch
78 "${FILESDIR}"/${P}-LDFLAGS.patch
79 "${FILESDIR}"/${P}-change-default-sequence-to-use-utf8-table.patch
80 "${FILESDIR}"/${P}-install-missing-file.patch
81 "${FILESDIR}"/${P}-format-security.patch
82 )
83
84 src_prepare() {
85 sed \
86 -e 's:Fl c Ar:Fl f Ar:g' \
87 -i ${PN}.1 || die
88 epatch "${PATCHES[@]}"
89 sed \
90 -e '/detoxrc.sample/d' \
91 -i Makefile.in || die
92 }
93
94 src_configure() {
95 econf --with-popt="${EPREFIX}/usr"
96 }