Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: vcs-snapshot.eclass ChangeLog
Date: Thu, 07 Jun 2012 21:52:03
Message-Id: 20120607215148.82FE42004B@flycatcher.gentoo.org
1 mgorny 12/06/07 21:51:48
2
3 Modified: vcs-snapshot.eclass ChangeLog
4 Log:
5 Extract to ${WORKDIR}/${P} rather than ${S}.
6
7 Revision Changes Path
8 1.3 eclass/vcs-snapshot.eclass
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vcs-snapshot.eclass?rev=1.3&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vcs-snapshot.eclass?rev=1.3&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vcs-snapshot.eclass?r1=1.2&r2=1.3
13
14 Index: vcs-snapshot.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/vcs-snapshot.eclass,v
17 retrieving revision 1.2
18 retrieving revision 1.3
19 diff -u -r1.2 -r1.3
20 --- vcs-snapshot.eclass 19 Mar 2012 08:52:49 -0000 1.2
21 +++ vcs-snapshot.eclass 7 Jun 2012 21:51:48 -0000 1.3
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2012 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/vcs-snapshot.eclass,v 1.2 2012/03/19 08:52:49 mgorny Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/vcs-snapshot.eclass,v 1.3 2012/06/07 21:51:48 mgorny Exp $
27
28 # @ECLASS: vcs-snapshot.eclass
29 # @MAINTAINER:
30 @@ -9,7 +9,8 @@
31 # @DESCRIPTION:
32 # This eclass provides a convenience src_unpack() which does support
33 # working with snapshots generated by various VCS-es. It unpacks those
34 -# to ${S} rather than the original directory containing commit id.
35 +# to ${WORKDIR}/${P} rather than the original directory containing
36 +# the commit id.
37 #
38 # Note that this eclass handles only unpacking. You need to specify
39 # SRC_URI yourself, and call any autoreconfiguration as necessary.
40 @@ -41,5 +42,5 @@
41
42 # github, bitbucket: username-projectname-hash
43 # gitweb: projectname-tagname-hash
44 - mv *-*-[0-9a-f]*[0-9a-f]/ "${S}" || die
45 + mv *-*-[0-9a-f]*[0-9a-f]/ "${WORKDIR}"/${P} || die
46 }
47
48
49
50 1.297 eclass/ChangeLog
51
52 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.297&view=markup
53 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.297&content-type=text/plain
54 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.296&r2=1.297
55
56 Index: ChangeLog
57 ===================================================================
58 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
59 retrieving revision 1.296
60 retrieving revision 1.297
61 diff -u -r1.296 -r1.297
62 --- ChangeLog 7 Jun 2012 15:36:49 -0000 1.296
63 +++ ChangeLog 7 Jun 2012 21:51:48 -0000 1.297
64 @@ -1,6 +1,9 @@
65 # ChangeLog for eclass directory
66 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
67 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.296 2012/06/07 15:36:49 pesa Exp $
68 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.297 2012/06/07 21:51:48 mgorny Exp $
69 +
70 + 07 Jun 2012; Michał Górny <mgorny@g.o> vcs-snapshot.eclass:
71 + Extract to ${WORKDIR}/${P} rather than ${S}.
72
73 07 Jun 2012; Davide Pesavento <pesa@g.o> qt4-build.eclass:
74 Specify SLOT in blocker atoms, to avoid blocking Qt5 packages.