diff options
author | Jeroen Roovers <jer@gentoo.org> | 2009-03-11 17:36:15 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2009-03-11 17:36:15 +0000 |
commit | e087bfba5367ee639f4a76b8a70882756e686a25 (patch) | |
tree | 67cad5707ceb6b62533dffd5f84c6c71d8ca5908 /www-client/surfraw | |
parent | x11-base/xorg-server: add a patch to fix xfs (bug #236847), remove unsupporte... (diff) | |
download | gentoo-2-e087bfba5367ee639f4a76b8a70882756e686a25.tar.gz gentoo-2-e087bfba5367ee639f4a76b8a70882756e686a25.tar.bz2 gentoo-2-e087bfba5367ee639f4a76b8a70882756e686a25.zip |
Version bump. Remove old.
(Portage version: 2.2_rc23/cvs/Linux i686)
Diffstat (limited to 'www-client/surfraw')
-rw-r--r-- | www-client/surfraw/ChangeLog | 11 | ||||
-rw-r--r-- | www-client/surfraw/files/surfraw-gentoo_pkg_tools.patch | 37 | ||||
-rw-r--r-- | www-client/surfraw/surfraw-2.2.4.ebuild (renamed from www-client/surfraw/surfraw-2.2.2.ebuild) | 8 |
3 files changed, 13 insertions, 43 deletions
diff --git a/www-client/surfraw/ChangeLog b/www-client/surfraw/ChangeLog index 02c0b823179d..5090c377e777 100644 --- a/www-client/surfraw/ChangeLog +++ b/www-client/surfraw/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for www-client/surfraw -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/surfraw/ChangeLog,v 1.30 2008/12/02 11:22:41 armin76 Exp $ +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/surfraw/ChangeLog,v 1.31 2009/03/11 17:36:14 jer Exp $ + +*surfraw-2.2.4 (11 Mar 2009) + + 11 Mar 2009; Jeroen Roovers <jer@gentoo.org> + -files/surfraw-gentoo_pkg_tools.patch, -surfraw-2.2.2.ebuild, + +surfraw-2.2.4.ebuild: + Version bump. Remove old. 02 Dec 2008; Raúl Porcel <armin76@gentoo.org> surfraw-2.2.3.ebuild: sparc stable wrt #249108 diff --git a/www-client/surfraw/files/surfraw-gentoo_pkg_tools.patch b/www-client/surfraw/files/surfraw-gentoo_pkg_tools.patch deleted file mode 100644 index 58e2dc49f269..000000000000 --- a/www-client/surfraw/files/surfraw-gentoo_pkg_tools.patch +++ /dev/null @@ -1,37 +0,0 @@ - Needs a little more thought, or some method which would allow for an upstream -push without affecting the non-Gentoo users. - -Index: surfraw-2.0.2/surfraw-bash-completion -=================================================================== ---- surfraw-2.0.2/surfraw-bash-completion {cset 4e580034-b124-4c8c-a69c-350d291577a1} -+++ surfraw-2.0.2/surfraw-bash-completion {local clone} -@@ -1,4 +1,20 @@ - # -*- sh -*- bash programmable completion for Surfraw, v2.2 -+_srpkgname() -+{ -+ local pd -+ local dir=$(sed -n -e '/^PORTDIR=/ { s/^[^=]\+="\?\([^"]\+\|\S\+\).*/\1/p ; q }' \ -+ /etc/make.{conf,globals})/* -+ local cur="$1" -+ -+ COMPREPLY=($(compgen -W "$( -+ for pd in $dir -+ do -+ [ ! -d ${pd} ] && continue -+ builtin cd ${pd} -+ echo * -+ done)" -- ${cur}) -+ ) -+} - _surfraw() - { COMPREPLY=() - local cur=${COMP_WORDS[COMP_CWORD]} -@@ -14,7 +30,7 @@ _surfraw() - then COMPREPLY=( $( compgen -W "$elvi" -- $cur ) ) - # "sr g<tab>" for google - elif [[ $prev == @(alioth|deb@(bug|content|package|pt)s|freshmeat|sourceforge) ]] -- then COMPREPLY=( $(apt-cache --generate pkgnames $cur) ) -+ then _srpkgname ${cur} - # "sr debbugs 4<tab>" to check 44bsd-rdist bugs... - elif test -x /usr/bin/look # in bsdmainutils, "important" - then COMPREPLY=( $(/usr/bin/look ${cur:-''}) ) diff --git a/www-client/surfraw/surfraw-2.2.2.ebuild b/www-client/surfraw/surfraw-2.2.4.ebuild index f211405bb3bf..248a6e34c780 100644 --- a/www-client/surfraw/surfraw-2.2.2.ebuild +++ b/www-client/surfraw/surfraw-2.2.4.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/surfraw/surfraw-2.2.2.ebuild,v 1.5 2008/08/22 21:32:56 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/surfraw/surfraw-2.2.4.ebuild,v 1.1 2009/03/11 17:36:14 jer Exp $ inherit bash-completion eutils @@ -10,7 +10,7 @@ SRC_URI="http://${PN}.alioth.debian.org/dist/${P}.tar.gz" SLOT="0" LICENSE="public-domain" -KEYWORDS="amd64 hppa ppc sparc x86" +KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86" IUSE="" RESTRICT="test" @@ -33,7 +33,7 @@ src_compile() { src_install() { make DESTDIR="${D}" install || die "make install failed" - dodoc debian/changelog AUTHORS ChangeLog HACKING NEWS README TODO + dodoc AUTHORS ChangeLog HACKING NEWS README TODO dobashcompletion surfraw-bash-completion } |