diff options
author | Daniel Goller <morfic@gentoo.org> | 2006-03-06 05:16:57 +0000 |
---|---|---|
committer | Daniel Goller <morfic@gentoo.org> | 2006-03-06 05:16:57 +0000 |
commit | 000c2f29a04d94d0a33c8eb7ae3299a68bf1d3ef (patch) | |
tree | 8746834a87a47310239d27316446080c9f714ff6 /dev-util/ketchup | |
parent | update maintainers. (diff) | |
download | gentoo-2-000c2f29a04d94d0a33c8eb7ae3299a68bf1d3ef.tar.gz gentoo-2-000c2f29a04d94d0a33c8eb7ae3299a68bf1d3ef.tar.bz2 gentoo-2-000c2f29a04d94d0a33c8eb7ae3299a68bf1d3ef.zip |
Adding patch to fix issue with -l as reported in bug #124874
(Portage version: 2.1_pre5-r2)
Diffstat (limited to 'dev-util/ketchup')
-rw-r--r-- | dev-util/ketchup/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/ketchup/files/ketchup-list.patch | 13 | ||||
-rw-r--r-- | dev-util/ketchup/ketchup-0.9.6-r1.ebuild | 6 | ||||
-rw-r--r-- | dev-util/ketchup/ketchup-0.9.6.ebuild | 6 | ||||
-rw-r--r-- | dev-util/ketchup/ketchup-0.9.6_p20060301.ebuild | 5 |
5 files changed, 31 insertions, 6 deletions
diff --git a/dev-util/ketchup/ChangeLog b/dev-util/ketchup/ChangeLog index 1bb17d1d0533..abf4536074cf 100644 --- a/dev-util/ketchup/ChangeLog +++ b/dev-util/ketchup/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/ketchup # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ketchup/ChangeLog,v 1.6 2006/03/02 03:18:41 morfic Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/ketchup/ChangeLog,v 1.7 2006/03/06 05:16:57 morfic Exp $ + + 06 Mar 2006; Daniel Goller <morfic@gentoo.org> +files/ketchup-list.patch, + ketchup-0.9.6.ebuild, ketchup-0.9.6-r1.ebuild, + ketchup-0.9.6_p20060301.ebuild: + Adding patch to fix issue with -l as reported in bug #124874 *ketchup-0.9.6_p20060301 (02 Mar 2006) diff --git a/dev-util/ketchup/files/ketchup-list.patch b/dev-util/ketchup/files/ketchup-list.patch new file mode 100644 index 000000000000..3be20020a216 --- /dev/null +++ b/dev-util/ketchup/files/ketchup-list.patch @@ -0,0 +1,13 @@ +--- a/ketchup Sun Mar 5 11:06:59 2006 -0600 ++++ b/ketchup Sun Mar 5 11:10:11 2006 -0600 +@@ -687,7 +687,10 @@ if options["list-trees"]: + l = version_info.keys() + l.sort() + for tree in l: +- lprint(tree, ["(unsigned)","(signed)"][version_info[tree][3]]) ++ if version_info[tree][3] == 0: ++ lprint(tree, "(unsigned)") ++ else: ++ lprint(tree, "(signed)") + lprint(" " + version_info[tree][4]) + sys.exit(0) diff --git a/dev-util/ketchup/ketchup-0.9.6-r1.ebuild b/dev-util/ketchup/ketchup-0.9.6-r1.ebuild index 4d4931fdb38c..f699b57504e4 100644 --- a/dev-util/ketchup/ketchup-0.9.6-r1.ebuild +++ b/dev-util/ketchup/ketchup-0.9.6-r1.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ketchup/ketchup-0.9.6-r1.ebuild,v 1.1 2005/12/24 17:18:00 morfic Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/ketchup/ketchup-0.9.6-r1.ebuild,v 1.2 2006/03/06 05:16:57 morfic Exp $ +inherit eutils DESCRIPTION="Ketchup is a tool for updating or switching between versions of the Linux kernel source." HOMEPAGE="http://www.selenic.com/ketchup/wiki/" @@ -15,6 +16,7 @@ IUSE="doc" src_install() { cd "${WORKDIR}" + epatch "${FILESDIR}/ketchup-list.patch" dobin ./ketchup || die "could not install script" if use doc; then diff --git a/dev-util/ketchup/ketchup-0.9.6.ebuild b/dev-util/ketchup/ketchup-0.9.6.ebuild index 6f5b78f8d4ac..b4852df9ba09 100644 --- a/dev-util/ketchup/ketchup-0.9.6.ebuild +++ b/dev-util/ketchup/ketchup-0.9.6.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ketchup/ketchup-0.9.6.ebuild,v 1.2 2005/12/09 07:29:27 halcy0n Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/ketchup/ketchup-0.9.6.ebuild,v 1.3 2006/03/06 05:16:57 morfic Exp $ +inherit eutils DESCRIPTION="Ketchup is a tool for updating or switching between versions of the Linux kernel source." HOMEPAGE="http://www.selenic.com/ketchup/wiki/" @@ -15,6 +16,7 @@ IUSE="doc" src_install() { cd "${WORKDIR}" + epatch "${FILESDIR}/ketchup-list.patch" dosbin ./ketchup || die "could not install script" if use doc; then diff --git a/dev-util/ketchup/ketchup-0.9.6_p20060301.ebuild b/dev-util/ketchup/ketchup-0.9.6_p20060301.ebuild index 2124981ec8f6..3e6536130488 100644 --- a/dev-util/ketchup/ketchup-0.9.6_p20060301.ebuild +++ b/dev-util/ketchup/ketchup-0.9.6_p20060301.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ketchup/ketchup-0.9.6_p20060301.ebuild,v 1.1 2006/03/02 03:18:41 morfic Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/ketchup/ketchup-0.9.6_p20060301.ebuild,v 1.2 2006/03/06 05:16:57 morfic Exp $ + +inherit eutils DESCRIPTION="tool for updating or switching between versions of the Linux kernel source" HOMEPAGE="http://www.selenic.com/ketchup/wiki/" @@ -20,6 +22,7 @@ S=${WORKDIR} src_install() { cd Ketchup* 2>/dev/null # nightly snapshots unpack into a directory + epatch "${FILESDIR}/ketchup-list.patch" dobin ./ketchup || die "could not install script" |