dlan        14/03/25 17:35:55

  Modified:             metadata.xml ChangeLog
  Added:                stgit-0.17.1.ebuild
  Log:
  bump to 0.17.1, add myself as co-maintainer
  
  (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key 
0xAABEFD55)

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

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

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/stgit/metadata.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- metadata.xml        17 Mar 2013 15:09:35 -0000      1.6
+++ metadata.xml        25 Mar 2014 17:35:55 -0000      1.7
@@ -8,6 +8,10 @@
   <description>Proxy maintainer, assign bugs</description>
 </maintainer>
 <maintainer>
+  <email>[email protected]</email>
+  <description>Co maintainer, CC bugs</description>
+</maintainer>
+<maintainer>
   <email>[email protected]</email>
   <description>Proxy/Backup, CC bugs</description>
 </maintainer>



1.21                 dev-vcs/stgit/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/stgit/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog   25 Mar 2014 15:12:43 -0000      1.20
+++ ChangeLog   25 Mar 2014 17:35:55 -0000      1.21
@@ -1,6 +1,11 @@
 # ChangeLog for dev-vcs/stgit
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/stgit/ChangeLog,v 1.20 2014/03/25 
15:12:43 dlan Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/stgit/ChangeLog,v 1.21 2014/03/25 
17:35:55 dlan Exp $
+
+*stgit-0.17.1 (25 Mar 2014)
+
+  25 Mar 2014; Yixun Lan <[email protected]> +stgit-0.17.1.ebuild, metadata.xml:
+  bump to 0.17.1, add myself as co-maintainer
 
   25 Mar 2014; Yixun Lan <[email protected]> stgit-0.16-r2.ebuild:
   keyword ~arm, tested on odroid-u3



1.1                  dev-vcs/stgit/stgit-0.17.1.ebuild

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

Index: stgit-0.17.1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/stgit/stgit-0.17.1.ebuild,v 1.1 
2014/03/25 17:35:55 dlan Exp $

EAPI="5"

PYTHON_COMPAT=( python2_7 )

inherit bash-completion-r1 distutils-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";

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
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
        )"

PATCHES=(
        "${FILESDIR}/${PN}-0.16-man-linkfix.patch"
)

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_prepare_all() {
        # 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 || die

        distutils-r1_python_prepare_all
}

python_compile_all() {
        if use doc; then
                emake DESTDIR="${D}" \
                        htmldir="${EPREFIX}/usr/share/doc/${PF}/html/" \
                        mandir="${EPREFIX}/usr/share/man/" \
                        doc
        fi
}

python_install_all() {
        if use doc; then
                emake DESTDIR="${D}" \
                        htmldir="${EPREFIX}/usr/share/doc/${PF}/html/" \
                        mandir="${EPREFIX}/usr/share/man/" \
                        install-doc install-html
        fi

        distutils-r1_python_install_all

        newbashcomp stgit-completion.bash ${PN}
}




Reply via email to