diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-02-25 00:06:58 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-02-25 00:06:58 +0000 |
commit | bb9fe1466c049c39300821387616cab924bd4313 (patch) | |
tree | b670d7879d693a36918f29fbb8d90d77f383b382 /dev-vcs/bzr-fastimport | |
parent | ppc64/x86 stable wrt #399921, majorish ebuild cleanup (diff) | |
download | gentoo-2-bb9fe1466c049c39300821387616cab924bd4313.tar.gz gentoo-2-bb9fe1466c049c39300821387616cab924bd4313.tar.bz2 gentoo-2-bb9fe1466c049c39300821387616cab924bd4313.zip |
Version bump.
(Portage version: 2.2.0_alpha88/cvs/Linux x86_64)
Diffstat (limited to 'dev-vcs/bzr-fastimport')
-rw-r--r-- | dev-vcs/bzr-fastimport/ChangeLog | 8 | ||||
-rw-r--r-- | dev-vcs/bzr-fastimport/bzr-fastimport-0.12.0.ebuild | 46 |
2 files changed, 53 insertions, 1 deletions
diff --git a/dev-vcs/bzr-fastimport/ChangeLog b/dev-vcs/bzr-fastimport/ChangeLog index 5f2a7bd0d662..6d94b28b32e7 100644 --- a/dev-vcs/bzr-fastimport/ChangeLog +++ b/dev-vcs/bzr-fastimport/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-vcs/bzr-fastimport # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/bzr-fastimport/ChangeLog,v 1.2 2012/02/13 23:32:02 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/bzr-fastimport/ChangeLog,v 1.3 2012/02/25 00:06:58 tetromino Exp $ + +*bzr-fastimport-0.12.0 (25 Feb 2012) + + 25 Feb 2012; Alexandre Rostovtsev <tetromino@gentoo.org> + +bzr-fastimport-0.12.0.ebuild: + Version bump. 13 Feb 2012; Alexandre Rostovtsev <tetromino@gentoo.org> metadata.xml: Add to bazaar herd, acked by fauli. diff --git a/dev-vcs/bzr-fastimport/bzr-fastimport-0.12.0.ebuild b/dev-vcs/bzr-fastimport/bzr-fastimport-0.12.0.ebuild new file mode 100644 index 000000000000..50d6aae80aa1 --- /dev/null +++ b/dev-vcs/bzr-fastimport/bzr-fastimport-0.12.0.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/bzr-fastimport/bzr-fastimport-0.12.0.ebuild,v 1.1 2012/02/25 00:06:58 tetromino Exp $ + +EAPI="4" + +PYTHON_DEPEND="2" + +inherit distutils + +DESCRIPTION="Plugin providing fast loading of revision control data into Bazaar" +HOMEPAGE="https://launchpad.net/bzr-fastimport http://wiki.bazaar.canonical.com/BzrFastImport" +SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-vcs/bzr-1.18 + >=dev-python/python-fastimport-0.9" +DEPEND="" + +PYTHON_MODNAME="bzrlib/plugins/fastimport" + +pkg_setup() { + DOCS="NEWS README.txt doc/notes.txt" + python_set_active_version 2 + python_pkg_setup +} + +src_prepare() { + python_convert_shebangs -r 2 . + distutils_src_prepare +} + +pkg_postinst() { + distutils_pkg_postinst + elog "These commands need additional dependencies:" + elog + elog "bzr fast-export-from-darcs: dev-vcs/darcs" + elog "bzr fast-export-from-git: dev-vcs/git" + elog "bzr fast-export-from-hg: dev-vcs/mercurial" + elog "bzr fast-export-from-mtn: dev-vcs/monotone" + elog "bzr fast-export-from-svn: dev-vcs/subversion[python]" +} |