* [gentoo-commits] gentoo-x86 commit in sys-apps/pkgcore: ChangeLog pkgcore-0.4.7.13.ebuild
@ 2008-10-30 17:36 Markus Ullmann (jokey)
0 siblings, 0 replies; 2+ messages in thread
From: Markus Ullmann (jokey) @ 2008-10-30 17:36 UTC (permalink / raw
To: gentoo-commits
jokey 08/10/30 17:36:12
Modified: ChangeLog
Added: pkgcore-0.4.7.13.ebuild
Log:
Version bump
(Portage version: 2.2_rc12/cvs/Linux 2.6.26-gentoo-r1 i686)
Revision Changes Path
1.71 sys-apps/pkgcore/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/pkgcore/ChangeLog?rev=1.71&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/pkgcore/ChangeLog?rev=1.71&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/pkgcore/ChangeLog?r1=1.70&r2=1.71
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog 10 Oct 2008 00:52:31 -0000 1.70
+++ ChangeLog 30 Oct 2008 17:36:12 -0000 1.71
@@ -1,6 +1,11 @@
# ChangeLog for sys-apps/pkgcore
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/ChangeLog,v 1.70 2008/10/10 00:52:31 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/ChangeLog,v 1.71 2008/10/30 17:36:12 jokey Exp $
+
+*pkgcore-0.4.7.13 (30 Oct 2008)
+
+ 30 Oct 2008; Markus Ullmann <jokey@gentoo.org> +pkgcore-0.4.7.13.ebuild:
+ Version bump
*pkgcore-0.4.7.12 (10 Oct 2008)
1.1 sys-apps/pkgcore/pkgcore-0.4.7.13.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/pkgcore/pkgcore-0.4.7.13.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/pkgcore/pkgcore-0.4.7.13.ebuild?rev=1.1&content-type=text/plain
Index: pkgcore-0.4.7.13.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-0.4.7.13.ebuild,v 1.1 2008/10/30 17:36:12 jokey Exp $
inherit distutils eutils
DESCRIPTION="pkgcore package manager"
HOMEPAGE="http://www.pkgcore.org"
SRC_URI="http://www.pkgcore.org/releases/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="doc"
RDEPEND=">=dev-lang/python-2.4
>=dev-python/snakeoil-0.2
>=app-shells/bash-3.0
|| ( >=dev-lang/python-2.5 dev-python/pycrypto )"
DEPEND="${RDEPEND}
doc? ( >=dev-python/docutils-0.4 )"
DOCS="AUTHORS NEWS"
src_compile() {
distutils_src_compile
if use doc; then
./build_docs.py || die "doc building failed"
fi
}
src_install() {
distutils_src_install
if use doc; then
dohtml -r doc dev-notes
doman man/*.1
fi
dodoc doc/*.rst man/*.rst
docinto dev-notes
dodoc dev-notes/*.rst
}
pkg_postinst() {
distutils_pkg_postinst
pplugincache
if [[ -d "${ROOT}etc/pkgcore/plugins" ]]; then
elog "You still have an /etc/pkgcore/plugins from pkgcore 0.1."
elog "It is unused by pkgcore >= 0.2, remove it now."
die "remove /etc/pkgcore/plugins from pkgcore 0.1"
fi
# This is left behind by pkgcore 0.2.
rm -f "${ROOT}"usr/$(get_libdir)/python${PYVER}/site-packages/pkgcore/plugins/plugincache
}
pkg_postrm() {
python_version
# Careful not to remove this on up/downgrades.
local sitep="${ROOT}"usr/$(get_libdir)/python${PYVER}/site-packages
if [[ -e "${sitep}/pkgcore/plugins/plugincache2" ]] &&
! [[ -e "${sitep}/pkgcore/plugin.py" ]]; then
rm "${sitep}/pkgcore/plugins/plugincache2"
fi
distutils_pkg_postrm
}
src_test() {
"${python}" setup.py test || die "testing returned non zero"
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/pkgcore: ChangeLog pkgcore-0.4.7.13.ebuild
@ 2009-01-30 4:31 Jorge Manuel B. S. Vicetto (jmbsvicetto)
0 siblings, 0 replies; 2+ messages in thread
From: Jorge Manuel B. S. Vicetto (jmbsvicetto) @ 2009-01-30 4:31 UTC (permalink / raw
To: gentoo-commits
jmbsvicetto 09/01/30 04:31:18
Modified: ChangeLog
Removed: pkgcore-0.4.7.13.ebuild
Log:
Removed 0.4.7.13 as requested by ferringb.
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Revision Changes Path
1.75 sys-apps/pkgcore/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/pkgcore/ChangeLog?rev=1.75&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/pkgcore/ChangeLog?rev=1.75&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/pkgcore/ChangeLog?r1=1.74&r2=1.75
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog 30 Jan 2009 04:22:44 -0000 1.74
+++ ChangeLog 30 Jan 2009 04:31:18 -0000 1.75
@@ -1,6 +1,10 @@
# ChangeLog for sys-apps/pkgcore
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/ChangeLog,v 1.74 2009/01/30 04:22:44 jmbsvicetto Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/ChangeLog,v 1.75 2009/01/30 04:31:18 jmbsvicetto Exp $
+
+ 30 Jan 2009; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
+ -pkgcore-0.4.7.13.ebuild:
+ Removed 0.4.7.13 as requested by ferringb.
*pkgcore-0.4.7.15 (30 Jan 2009)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-01-30 4:31 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-30 4:31 [gentoo-commits] gentoo-x86 commit in sys-apps/pkgcore: ChangeLog pkgcore-0.4.7.13.ebuild Jorge Manuel B. S. Vicetto (jmbsvicetto)
-- strict thread matches above, loose matches on Subject: below --
2008-10-30 17:36 Markus Ullmann (jokey)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox