public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-vcs/stgit: metadata.xml ChangeLog stgit-0.16-r1.ebuild stgit-0.14.3.ebuild
@ 2012-08-06 19:58 Jeremy Olexa (darkside)
  0 siblings, 0 replies; only message in thread
From: Jeremy Olexa (darkside) @ 2012-08-06 19:58 UTC (permalink / raw
  To: gentoo-commits

darkside    12/08/06 19:58:58

  Modified:             metadata.xml ChangeLog
  Added:                stgit-0.16-r1.ebuild
  Removed:              stgit-0.14.3.ebuild
  Log:
  Add revision bump for two small patches, bug 425048. Remove old version, remove myself from metadata
  
  (Portage version: 2.1.10.65/cvs/Linux i686)

Revision  Changes    Path
1.5                  dev-vcs/stgit/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/stgit/metadata.xml?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/stgit/metadata.xml?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/stgit/metadata.xml?r1=1.4&r2=1.5

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/stgit/metadata.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- metadata.xml	24 Sep 2011 09:00:06 -0000	1.4
+++ metadata.xml	6 Aug 2012 19:58:58 -0000	1.5
@@ -7,10 +7,6 @@
   <description>Proxy maintainer, assign bugs</description>
 </maintainer>
 <maintainer>
-  <email>darkside@gentoo.org</email>
-  <description>Proxy committer, CC bugs</description>
-</maintainer>
-<maintainer>
   <email>flameeyes@gentoo.org</email>
   <description>Proxy/Backup, CC bugs</description>
 </maintainer>



1.14                 dev-vcs/stgit/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/stgit/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/stgit/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/stgit/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/stgit/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	23 Jan 2012 19:18:35 -0000	1.13
+++ ChangeLog	6 Aug 2012 19:58:58 -0000	1.14
@@ -1,6 +1,14 @@
 # ChangeLog for dev-vcs/stgit
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/stgit/ChangeLog,v 1.13 2012/01/23 19:18:35 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/stgit/ChangeLog,v 1.14 2012/08/06 19:58:58 darkside Exp $
+
+*stgit-0.16-r1 (06 Aug 2012)
+
+  06 Aug 2012; Jeremy Olexa <darkside@gentoo.org> -stgit-0.14.3.ebuild,
+  +stgit-0.16-r1.ebuild, +files/stgit-0.16-asciidoc-compat.patch,
+  +files/stgit-0.16-man-linkfix.patch, metadata.xml:
+  Add revision bump for two small patches, bug 425048. Remove old version,
+  remove myself from metadata
 
   23 Jan 2012; Jeremy Olexa <darkside@gentoo.org> stgit-0.16.ebuild:
   Using the old missing-patches tarball creates failing tests, bug 399631



1.1                  dev-vcs/stgit/stgit-0.16-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/stgit/stgit-0.16-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/stgit/stgit-0.16-r1.ebuild?rev=1.1&content-type=text/plain

Index: stgit-0.16-r1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/stgit/stgit-0.16-r1.ebuild,v 1.1 2012/08/06 19:58:58 darkside Exp $

EAPI="3"
PYTHON_DEPEND="2"

inherit eutils distutils bash-completion-r1

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
	mirror://gentoo/${P}-missing-patches.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~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.
DEPEND="$RDEPEND
	doc? (
		app-text/asciidoc
		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 () {
	epatch "${FILESDIR}/${P}-asciidoc-compat.patch"
	epatch "${FILESDIR}/${P}-man-linkfix.patch"

	# this will be a noop, as we are working with a tarball,
	# but throws git errors --> just get rid of it
	sed -i -e 's/version\.write_builtin_version()//' setup.py

	distutils_src_prepare
}

src_compile() {
	# do not call normal 'emake' s.t. Gentoo's Python handling
	# can do its work
	# NB: run before doc-building to avoid double-build
	distutils_src_compile

	if use doc; then
		emake DESTDIR="${D}" \
			htmldir="${ROOT}usr/share/doc/${PF}/html/" \
			mandir="${ROOT}usr/share/man/" \
			doc || die "emake doc failed"
	fi
}

src_install() {
	if use doc; then
		emake DESTDIR="${D}" \
			htmldir="${ROOT}usr/share/doc/${PF}/html/" \
			mandir="${ROOT}usr/share/man/" \
			install-doc install-html || die "emake install-doc install-html failed"
	fi

	# NB: run after installing docs to avoid double-build
	distutils_src_install

	newbashcomp stgit-completion.bash ${PN} || die
}





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2012-08-06 19:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-06 19:58 [gentoo-commits] gentoo-x86 commit in dev-vcs/stgit: metadata.xml ChangeLog stgit-0.16-r1.ebuild stgit-0.14.3.ebuild Jeremy Olexa (darkside)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox