summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2011-08-30 07:48:40 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2011-08-30 07:48:40 +0000
commit14d6b65026f9bab17d3a300eb90ac776f1c28759 (patch)
tree7cae9bbe7600119defad811c997bc3faee4041f5 /dev-vcs/stgit
parentMarked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo in bug... (diff)
downloadgentoo-2-14d6b65026f9bab17d3a300eb90ac776f1c28759.tar.gz
gentoo-2-14d6b65026f9bab17d3a300eb90ac776f1c28759.tar.bz2
gentoo-2-14d6b65026f9bab17d3a300eb90ac776f1c28759.zip
Remove old version.
(Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
Diffstat (limited to 'dev-vcs/stgit')
-rw-r--r--dev-vcs/stgit/ChangeLog5
-rw-r--r--dev-vcs/stgit/stgit-0.15.ebuild78
2 files changed, 4 insertions, 79 deletions
diff --git a/dev-vcs/stgit/ChangeLog b/dev-vcs/stgit/ChangeLog
index ea1a7bb9217c..7eed0a98f7d6 100644
--- a/dev-vcs/stgit/ChangeLog
+++ b/dev-vcs/stgit/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-vcs/stgit
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/stgit/ChangeLog,v 1.5 2011/03/27 23:23:25 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/stgit/ChangeLog,v 1.6 2011/08/30 07:48:40 flameeyes Exp $
+
+ 30 Aug 2011; Diego E. Pettenò <flameeyes@gentoo.org> -stgit-0.15.ebuild:
+ Remove old version.
27 Mar 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
stgit-0.14.3.ebuild, stgit-0.15.ebuild, stgit-0.15-r1.ebuild:
diff --git a/dev-vcs/stgit/stgit-0.15.ebuild b/dev-vcs/stgit/stgit-0.15.ebuild
deleted file mode 100644
index d6df99b38843..000000000000
--- a/dev-vcs/stgit/stgit-0.15.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/stgit/stgit-0.15.ebuild,v 1.3 2011/03/27 23:23:25 arfrever Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2"
-
-inherit distutils bash-completion
-
-DESCRIPTION="Manage a stack of patches using GIT as a backend"
-HOMEPAGE="http://www.procode.org/stgit/"
-SRC_URI="http://download.gna.org/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86"
-IUSE="doc"
-
-RDEPEND=">=dev-vcs/git-1.6.3.3"
-
-# NOTE: It seems to be quite important which asciidoc version to use.
-# So keep an eye on it for the future. Reference should be the online
-# man pages. (As of this writing, they use 8.2.7).
-DEPEND="$RDEPEND
- doc? (
- =app-text/asciidoc-8.2*
- app-text/xmlto
- dev-lang/perl
- )"
-
-pkg_setup () {
- if ! use doc; then
- echo
- ewarn "Manpages will not be built and installed."
- ewarn "Enable the 'doc' useflag, if you want them."
- echo
- fi
-
- python_set_active_version 2
- python_pkg_setup
-}
-
-src_prepare() {
- # setup.cfg defaults to ~ ... delete it instead of sed'ing
- rm setup.cfg
- distutils_src_prepare
-}
-
-src_compile() {
- # git throws errors if it cannot write its config file
- # thus feed it a dummy one
- touch gitconfig
- export GIT_CONFIG="${S}/gitconfig"
-
- # preparation stuff done in the makefile
- emake build || die "emake build failed"
-
- if use doc; then
- emake doc || die "emake doc failed"
- fi
-
- # do not call normal 'emake' s.t. Gentoo's Python handling
- # can do its work
- distutils_src_compile
-}
-
-src_install() {
- distutils_src_install
-
- if use doc; then
- # do not use 'emake install-*' as the pathes are wrong
- # and fixing them is more work than just using the following
- doman Documentation/*.1 || die "doman failed"
- dohtml Documentation/*.html || die "dohtml failed"
- fi
-
- dobashcompletion stgit-completion.bash ${PN}
-}