Gentoo Archives: gentoo-commits

From: "Christoph Junghans (ottxor)" <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-portage/epm: epm-1.33-r2.ebuild ChangeLog
Date: Thu, 27 Dec 2012 19:22:30
Message-Id: 20121227192218.B9C572171D@flycatcher.gentoo.org
1 ottxor 12/12/27 19:22:18
2
3 Modified: ChangeLog
4 Added: epm-1.33-r2.ebuild
5 Log:
6 added prefix support
7
8 (Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key C2000586)
9
10 Revision Changes Path
11 1.31 app-portage/epm/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/epm/ChangeLog?rev=1.31&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/epm/ChangeLog?rev=1.31&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/epm/ChangeLog?r1=1.30&r2=1.31
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-portage/epm/ChangeLog,v
20 retrieving revision 1.30
21 retrieving revision 1.31
22 diff -u -r1.30 -r1.31
23 --- ChangeLog 26 Dec 2012 19:20:54 -0000 1.30
24 +++ ChangeLog 27 Dec 2012 19:22:18 -0000 1.31
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-portage/epm
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-portage/epm/ChangeLog,v 1.30 2012/12/26 19:20:54 fuzzyray Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-portage/epm/ChangeLog,v 1.31 2012/12/27 19:22:18 ottxor Exp $
30 +
31 +*epm-1.33-r2 (27 Dec 2012)
32 +
33 + 27 Dec 2012; Christoph Junghans <ottxor@g.o> +epm-1.33-r2.ebuild,
34 + +files/epm-1.33-prefix.patch:
35 + added prefix support
36
37 26 Dec 2012; Paul Varner <fuzzyray@g.o> metadata.xml:
38 Move to maintainer-needed, due to not being maintained by anyone in the
39
40
41
42 1.1 app-portage/epm/epm-1.33-r2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/epm/epm-1.33-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/epm/epm-1.33-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: epm-1.33-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-portage/epm/epm-1.33-r2.ebuild,v 1.1 2012/12/27 19:22:18 ottxor Exp $
52
53 EAPI="4"
54
55 inherit eutils prefix
56
57 DESCRIPTION="rpm workalike for Gentoo Linux"
58 HOMEPAGE="http://www.gentoo.org/proj/en/portage/tools/index.xml"
59 SRC_URI="http://www.gentoo.org/~fuzzyray/distfiles/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos"
64 IUSE=""
65
66 DEPEND=">=dev-lang/perl-5"
67 RDEPEND="${DEPEND}"
68
69 src_prepare() {
70 epatch "${FILESDIR}/${PV}-epm-310475.patch"
71 epatch "${FILESDIR}"/${P}-prefix.patch
72 eprefixify epm
73 }
74
75 src_compile() {
76 pod2man epm > epm.1 || die "pod2man failed"
77 }
78
79 src_install() {
80 dobin epm || die
81 doman epm.1
82 }