diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2011-02-25 22:17:45 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2011-02-25 22:17:45 +0000 |
commit | 8273a0a59b57407f699d8bf9bbdc304718b33d26 (patch) | |
tree | d659220d60bb0154df1fe333b6f629e993fe2e87 /dev-vcs | |
parent | depend virtual/jpeg (diff) | |
download | gentoo-2-8273a0a59b57407f699d8bf9bbdc304718b33d26.tar.gz gentoo-2-8273a0a59b57407f699d8bf9bbdc304718b33d26.tar.bz2 gentoo-2-8273a0a59b57407f699d8bf9bbdc304718b33d26.zip |
clean up
(Portage version: 2.1.9.40/cvs/Linux i686)
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/bzrtools/ChangeLog | 6 | ||||
-rw-r--r-- | dev-vcs/bzrtools/bzrtools-2.0.1.ebuild | 43 |
2 files changed, 5 insertions, 44 deletions
diff --git a/dev-vcs/bzrtools/ChangeLog b/dev-vcs/bzrtools/ChangeLog index 89a522301440..9d7b0c0dcc18 100644 --- a/dev-vcs/bzrtools/ChangeLog +++ b/dev-vcs/bzrtools/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-vcs/bzrtools # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/bzrtools/ChangeLog,v 1.13 2011/02/25 20:35:02 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/bzrtools/ChangeLog,v 1.14 2011/02/25 22:17:45 fauli Exp $ + + 25 Feb 2011; Christian Faulhammer <fauli@gentoo.org> + -bzrtools-2.0.1.ebuild: + clean up 25 Feb 2011; Kacper Kowalik <xarthisius@gentoo.org> bzrtools-2.2.0.ebuild: ppc/ppc64 stable wrt #346985 diff --git a/dev-vcs/bzrtools/bzrtools-2.0.1.ebuild b/dev-vcs/bzrtools/bzrtools-2.0.1.ebuild deleted file mode 100644 index c5c4ba455252..000000000000 --- a/dev-vcs/bzrtools/bzrtools-2.0.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/bzrtools/bzrtools-2.0.1.ebuild,v 1.4 2010/07/10 19:12:32 arfrever Exp $ - -EAPI="3" -PYTHON_DEPEND="2" - -inherit eutils distutils versionator - -DESCRIPTION="bzrtools is a useful collection of utilities for bzr." -HOMEPAGE="http://bazaar-vcs.org/BzrTools" -SRC_URI=""https://launchpad.net/${PN}/stable/${PV}/+download/${P}.tar.gz"" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ia64 ppc sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~x86-macos" -IUSE="" - -DEPEND="=dev-vcs/bzr-$(get_version_component_range 1-2)*" -RDEPEND="${DEPEND}" - -RESTRICT="test" - -DOCS="AUTHORS CREDITS NEWS NEWS.Shelf README README.Shelf TODO TODO.heads TODO.Shelf" - -S=${WORKDIR}/${PN} - -PYTHON_MODNAME=bzrlib - -src_test() { - einfo "Running testsuite..." - # put a linked copy of the bzr core into the build directory to properly - # test the "built" version of bzrtools - find "$(python_get_libdir)/site-packages/bzrlib/" \ - -mindepth 1 -maxdepth 1 \ - \( \( -type d -and -not -name "plugins" \) -or -name "*.py" \) \ - -exec ln -s '{}' "${S}/build/lib/bzrlib/" \; - touch "${S}/build/lib/bzrlib/plugins/__init__.py" - "${S}/test.py" "${S}/build/lib" || die "Testsuite failed." - # remove the "shadow" copy so it doesn't get installed - rm "${S}/build/lib/bzrlib/plugins/__init__.py" - find "${S}/build/lib/bzrlib/" -mindepth 1 -maxdepth 1 -type l -exec rm '{}' \; -} |