Gentoo Archives: gentoo-commits

From: "Maxim Koltsov (maksbotan)" <maksbotan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/stow: stow-2.2.0.ebuild ChangeLog stow-1.3.3-r1.ebuild
Date: Wed, 02 May 2012 13:35:50
Message-Id: 20120502133540.0E5EF2004B@flycatcher.gentoo.org
1 maksbotan 12/05/02 13:35:40
2
3 Modified: ChangeLog
4 Added: stow-2.2.0.ebuild
5 Removed: stow-1.3.3-r1.ebuild
6 Log:
7 Bump to 2.2.0, addind DEPEND for tests
8
9 (Portage version: 2.1.10.57/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.19 app-admin/stow/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/stow/ChangeLog?rev=1.19&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/stow/ChangeLog?rev=1.19&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/stow/ChangeLog?r1=1.18&r2=1.19
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-admin/stow/ChangeLog,v
21 retrieving revision 1.18
22 retrieving revision 1.19
23 diff -u -r1.18 -r1.19
24 --- ChangeLog 19 Dec 2011 13:43:12 -0000 1.18
25 +++ ChangeLog 2 May 2012 13:35:39 -0000 1.19
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-admin/stow
28 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-admin/stow/ChangeLog,v 1.18 2011/12/19 13:43:12 maksbotan Exp $
30 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/app-admin/stow/ChangeLog,v 1.19 2012/05/02 13:35:39 maksbotan Exp $
32 +
33 +*stow-2.2.0 (02 May 2012)
34 +
35 + 02 May 2012; Maxim Koltsov <maksbotan@g.o> +stow-2.2.0.ebuild,
36 + -stow-1.3.3-r1.ebuild:
37 + Bump to 2.2.0, addind DEPEND for tests
38
39 *stow-2.1.2 (19 Dec 2011)
40
41
42
43
44 1.1 app-admin/stow/stow-2.2.0.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/stow/stow-2.2.0.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/stow/stow-2.2.0.ebuild?rev=1.1&content-type=text/plain
48
49 Index: stow-2.2.0.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-admin/stow/stow-2.2.0.ebuild,v 1.1 2012/05/02 13:35:39 maksbotan Exp $
54
55 EAPI="2"
56
57 DESCRIPTION="Manage installation of software in /var/lib/"
58 HOMEPAGE="http://www.gnu.org/software/stow/"
59 SRC_URI="mirror://gnu/stow/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos"
64 IUSE=""
65
66 DEPEND="dev-lang/perl
67 test? (
68 virtual/perl-Test-Harness
69 dev-perl/Test-Output
70 )"
71 RDEPEND="${DEPEND}"
72
73 src_install() {
74 emake DESTDIR="${D}" install || die "emake install failed."
75
76 # create new STOWDIR
77 dodir /var/lib/stow
78
79 # install env.d file to add STOWDIR to PATH and LDPATH
80 doenvd "${FILESDIR}"/99stow || die "doenvd failed"
81 }
82
83 pkg_postinst() {
84 elog "We now recommend that you use /var/lib/stow as your STOWDIR"
85 elog "instead of /usr/local in order to avoid conflicts with the"
86 elog "symlink from /usr/lib64 -> /usr/lib. See Bug 246264 for"
87 elog "more details on this change."
88 elog "For your convenience, PATH has been updated to include"
89 elog "/var/lib/stow/bin."
90 }