summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Ullmann <jokey@gentoo.org>2008-03-31 15:56:07 +0000
committerMarkus Ullmann <jokey@gentoo.org>2008-03-31 15:56:07 +0000
commitfbefeda45e18fe15cdfeba8ab23345f4f6083711 (patch)
tree944af8a6f106a78a8ccd3a0ef37342ff08700d73 /sys-apps/pkgcore
parentsparc stable wrt #215198, thanks to Aaron Mavrinac for testing (diff)
downloadgentoo-2-fbefeda45e18fe15cdfeba8ab23345f4f6083711.tar.gz
gentoo-2-fbefeda45e18fe15cdfeba8ab23345f4f6083711.tar.bz2
gentoo-2-fbefeda45e18fe15cdfeba8ab23345f4f6083711.zip
Version bump and drop old
(Portage version: 2.1.4.4)
Diffstat (limited to 'sys-apps/pkgcore')
-rw-r--r--sys-apps/pkgcore/ChangeLog9
-rw-r--r--sys-apps/pkgcore/files/pkgcore-0.3.2-eapi.patch26
-rw-r--r--sys-apps/pkgcore/pkgcore-0.3.2-r1.ebuild83
-rw-r--r--sys-apps/pkgcore/pkgcore-0.3.4.ebuild73
-rw-r--r--sys-apps/pkgcore/pkgcore-0.4.3.ebuild (renamed from sys-apps/pkgcore/pkgcore-0.4.1.ebuild)2
5 files changed, 9 insertions, 184 deletions
diff --git a/sys-apps/pkgcore/ChangeLog b/sys-apps/pkgcore/ChangeLog
index 7b72ea7b64b6..f05700fbe34d 100644
--- a/sys-apps/pkgcore/ChangeLog
+++ b/sys-apps/pkgcore/ChangeLog
@@ -1,6 +1,13 @@
# 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.50 2008/03/30 16:39:01 jokey Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/ChangeLog,v 1.51 2008/03/31 15:56:07 jokey Exp $
+
+*pkgcore-0.4.3 (31 Mar 2008)
+
+ 31 Mar 2008; Markus Ullmann <jokey@gentoo.org>
+ -files/pkgcore-0.3.2-eapi.patch, -pkgcore-0.3.2-r1.ebuild,
+ -pkgcore-0.3.4.ebuild, -pkgcore-0.4.1.ebuild, +pkgcore-0.4.3.ebuild:
+ Version bump and drop old
*pkgcore-0.4.2 (30 Mar 2008)
diff --git a/sys-apps/pkgcore/files/pkgcore-0.3.2-eapi.patch b/sys-apps/pkgcore/files/pkgcore-0.3.2-eapi.patch
deleted file mode 100644
index 0706ffa279e7..000000000000
--- a/sys-apps/pkgcore/files/pkgcore-0.3.2-eapi.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- pkgcore-0.3.2/pkgcore/bin/ebuild-env/ebuild-functions.sh 2007-08-16 16:30:43 +0000
-+++ pkgcore-0.3.2/pkgcore/bin/ebuild-env/ebuild-functions.sh 2007-11-02 11:44:59 +0000
-@@ -234,7 +234,9 @@
-
- src_compile()
- {
-- if [ -x ./configure ]; then
-+ if [ "${EAPI:-0}" == 0 ] ; then
-+ [ -x ./configure ] && econf
-+ elif [ -x ${ECONF_SOURCE}/configure ]; then
- econf || die "econf failed"
- fi
- if [ -f Makefile ] || [ -f GNUmakefile ] || [ -f makefile ]; then
-
---- pkgcore-0.3.2/pkgcore/ebuild/ebd.py 2007-11-02 01:56:46 +0000
-+++ pkgcore-0.3.2/pkgcore/ebuild/ebd.py 2007-11-08 23:35:41 +0000
-@@ -599,7 +599,7 @@
- does nothing if the pkg is EAPI=0 (that spec lacks a seperated
- configure phase).
- """
-- if self.eapi > 0:
-+ if self.eapi > 1:
- return self._generic_phase("configure", True, True, False)
- return True
-
-
diff --git a/sys-apps/pkgcore/pkgcore-0.3.2-r1.ebuild b/sys-apps/pkgcore/pkgcore-0.3.2-r1.ebuild
deleted file mode 100644
index 4c1198120592..000000000000
--- a/sys-apps/pkgcore/pkgcore-0.3.2-r1.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-0.3.2-r1.ebuild,v 1.1 2007/12/06 20:57:22 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.1
- >=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_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-eapi.patch
-}
-
-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, so you can remove it now."
- fi
-
- # This is left behind by pkgcore 0.2.
- rm -f "${ROOT}"usr/$(get_libdir)/python${PYVER}/site-packages/pkgcore/plugins/plugincache
-
- elog "If the new layman sync support causes problems you can disable it"
- elog "with FEATURES=-layman-sync. If you cannot sync a layman overlay"
- elog "using pkgcore, file a bug in pkgcore.org trac instead of complaining"
- elog "to the layman or overlay maintainer."
-}
-
-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"
-}
diff --git a/sys-apps/pkgcore/pkgcore-0.3.4.ebuild b/sys-apps/pkgcore/pkgcore-0.3.4.ebuild
deleted file mode 100644
index e3bc7ea9d504..000000000000
--- a/sys-apps/pkgcore/pkgcore-0.3.4.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-0.3.4.ebuild,v 1.1 2007/12/26 17:35:54 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.1
- >=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"
-}
diff --git a/sys-apps/pkgcore/pkgcore-0.4.1.ebuild b/sys-apps/pkgcore/pkgcore-0.4.3.ebuild
index c7cfc163b0d2..a6071a9587b8 100644
--- a/sys-apps/pkgcore/pkgcore-0.4.1.ebuild
+++ b/sys-apps/pkgcore/pkgcore-0.4.3.ebuild
@@ -1,6 +1,6 @@
# 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.1.ebuild,v 1.1 2008/03/20 11:13:48 jokey Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-0.4.3.ebuild,v 1.1 2008/03/31 15:56:07 jokey Exp $
inherit distutils eutils