Gentoo Archives: gentoo-commits

From: "Brian Harring (ferringb)" <ferringb@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/pkgcore: ChangeLog pkgcore-9999.ebuild
Date: Thu, 01 Dec 2011 12:55:43
Message-Id: 20111201125525.08EE52004B@flycatcher.gentoo.org
1 ferringb 11/12/01 12:55:25
2
3 Modified: ChangeLog pkgcore-9999.ebuild
4 Log:
5 drop old plugincache wiping code that is now invalidly causing issues; >0.7.6.1 will be fixed for the same in the next 24 hours
6
7 (Portage version: 2.1.10.37/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.134 sys-apps/pkgcore/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/ChangeLog?rev=1.134&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/ChangeLog?rev=1.134&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/ChangeLog?r1=1.133&r2=1.134
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/ChangeLog,v
19 retrieving revision 1.133
20 retrieving revision 1.134
21 diff -u -r1.133 -r1.134
22 --- ChangeLog 1 Dec 2011 09:21:28 -0000 1.133
23 +++ ChangeLog 1 Dec 2011 12:55:24 -0000 1.134
24 @@ -1,6 +1,9 @@
25 # ChangeLog for sys-apps/pkgcore
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/ChangeLog,v 1.133 2011/12/01 09:21:28 ferringb Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/ChangeLog,v 1.134 2011/12/01 12:55:24 ferringb Exp $
29 +
30 + 01 Dec 2011; Brian Harring <ferringb@g.o> pkgcore-9999.ebuild:
31 + drop old plugincache wiping code that now is causing issues
32
33 *pkgcore-0.7.6.1 (01 Dec 2011)
34
35
36
37
38 1.4 sys-apps/pkgcore/pkgcore-9999.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/pkgcore-9999.ebuild?rev=1.4&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/pkgcore-9999.ebuild?rev=1.4&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pkgcore/pkgcore-9999.ebuild?r1=1.3&r2=1.4
43
44 Index: pkgcore-9999.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-9999.ebuild,v
47 retrieving revision 1.3
48 retrieving revision 1.4
49 diff -u -r1.3 -r1.4
50 --- pkgcore-9999.ebuild 20 Sep 2011 02:53:25 -0000 1.3
51 +++ pkgcore-9999.ebuild 1 Dec 2011 12:55:24 -0000 1.4
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-9999.ebuild,v 1.3 2011/09/20 02:53:25 ferringb Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-9999.ebuild,v 1.4 2011/12/01 12:55:24 ferringb Exp $
57
58 EAPI="3"
59 DISTUTILS_SRC_TEST="setup.py"
60 @@ -52,23 +52,4 @@
61 pkg_postinst() {
62 distutils_pkg_postinst
63 pplugincache
64 -
65 - if [[ -d "${ROOT}etc/pkgcore/plugins" ]]; then
66 - elog "You still have an /etc/pkgcore/plugins from pkgcore 0.1."
67 - elog "It is unused by pkgcore >= 0.2, remove it now."
68 - die "remove /etc/pkgcore/plugins from pkgcore 0.1"
69 - fi
70 -
71 - # This is left behind by pkgcore 0.2.
72 - rm -f "${ROOT}"$(python_get_sitedir)/pkgcore/plugins/plugincache
73 -}
74 -
75 -pkg_postrm() {
76 - # Careful not to remove this on up/downgrades.
77 - local sitep="${ROOT}"$(python_get_sitedir)/site-packages
78 - if [[ -e "${sitep}/pkgcore/plugins/plugincache2" ]] &&
79 - ! [[ -e "${sitep}/pkgcore/plugin.py" ]]; then
80 - rm "${sitep}/pkgcore/plugins/plugincache2"
81 - fi
82 - distutils_pkg_postrm
83 }