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-r2.ebuild ChangeLog
Date: Fri, 06 Mar 2015 12:29:03
Message-Id: 20150306122858.A950F1329F@oystercatcher.gentoo.org
1 maksbotan 15/03/06 12:28:58
2
3 Modified: ChangeLog
4 Added: stow-2.2.0-r2.ebuild
5 Log:
6 Add upstream patch to fix bug #539702. Thanks to Erik Falor.
7
8 (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key F8DBDADE)
9
10 Revision Changes Path
11 1.23 app-admin/stow/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/stow/ChangeLog?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/stow/ChangeLog?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/stow/ChangeLog?r1=1.22&r2=1.23
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-admin/stow/ChangeLog,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- ChangeLog 26 Mar 2014 16:03:19 -0000 1.22
24 +++ ChangeLog 6 Mar 2015 12:28:58 -0000 1.23
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-admin/stow
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-admin/stow/ChangeLog,v 1.22 2014/03/26 16:03:19 maksbotan Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-admin/stow/ChangeLog,v 1.23 2015/03/06 12:28:58 maksbotan Exp $
31 +
32 +*stow-2.2.0-r2 (06 Mar 2015)
33 +
34 + 06 Mar 2015; Maxim Koltsov <maksbotan@g.o>
35 + +files/stow-2.2.0-avoid-precedence-warning.patch, +stow-2.2.0-r2.ebuild:
36 + Add upstream patch to fix bug #539702. Thanks to Erik Falor.
37
38 *stow-2.2.0-r1 (26 Mar 2014)
39
40
41
42
43 1.1 app-admin/stow/stow-2.2.0-r2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/stow/stow-2.2.0-r2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/stow/stow-2.2.0-r2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: stow-2.2.0-r2.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-admin/stow/stow-2.2.0-r2.ebuild,v 1.1 2015/03/06 12:28:58 maksbotan Exp $
53
54 EAPI="5"
55
56 inherit eutils
57
58 DESCRIPTION="Manage installation of software in /var/lib/"
59 HOMEPAGE="http://www.gnu.org/software/stow/"
60 SRC_URI="mirror://gnu/stow/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos"
65 IUSE="test"
66
67 DEPEND="dev-lang/perl
68 test? (
69 virtual/perl-Test-Harness
70 dev-perl/Test-Output
71 )"
72 RDEPEND="dev-lang/perl"
73
74 src_prepare() {
75 epatch "${FILESDIR}/${P}-avoid-precedence-warning.patch"
76 }
77
78 src_install() {
79 emake DESTDIR="${D}" install || die "emake install failed."
80
81 # create new STOWDIR
82 dodir /var/lib/stow
83
84 # install env.d file to add STOWDIR to PATH and LDPATH
85 doenvd "${FILESDIR}"/99stow || die "doenvd failed"
86 }
87
88 pkg_postinst() {
89 elog "We now recommend that you use /var/lib/stow as your STOWDIR"
90 elog "instead of /usr/local in order to avoid conflicts with the"
91 elog "symlink from /usr/lib64 -> /usr/lib. See Bug 246264 for"
92 elog "more details on this change."
93 elog "For your convenience, PATH has been updated to include"
94 elog "/var/lib/stow/bin."
95 }