Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
| Navigation: |
|
Lists:
gentoo-commits:
< Prev
By Thread
Next >
< Prev
By Date
Next >
|
| Headers: |
|
To:
|
gentoo-commits@g.o
|
|
From:
|
"Wolfram Schlich (wschlich)" <wschlich@g.o>
|
|
Subject:
|
gentoo-x86 commit in net-misc/gwhois: ChangeLog gwhois-20090717.ebuild gwhois-20081227.ebuild
|
|
Date:
|
Fri, 17 Jul 2009 13:58:16 +0000
|
|
wschlich 09/07/17 13:58:16
Modified: ChangeLog
Added: gwhois-20090717.ebuild
Removed: gwhois-20081227.ebuild
Log:
version bump fixing bug #276750, removed old version
(Portage version: 2.2_rc33/cvs/Linux i686)
Revision Changes Path
1.44 net-misc/gwhois/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gwhois/ChangeLog?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gwhois/ChangeLog?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gwhois/ChangeLog?r1=1.43&r2=1.44
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/gwhois/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog 19 Jun 2009 22:18:11 -0000 1.43
+++ ChangeLog 17 Jul 2009 13:58:16 -0000 1.44
@@ -1,6 +1,12 @@
# ChangeLog for net-misc/gwhois
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/gwhois/ChangeLog,v 1.43 2009/06/19 22:18:11 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/gwhois/ChangeLog,v 1.44 2009/07/17 13:58:16 wschlich Exp $
+
+*gwhois-20090717 (17 Jul 2009)
+
+ 17 Jul 2009; Wolfram Schlich <wschlich@g.o>
+ -gwhois-20081227.ebuild, +gwhois-20090717.ebuild:
+ version bump fixing bug #276750, removed old version
19 Jun 2009; Brent Baude <ranger@g.o> gwhois-20081227.ebuild:
keyworded ~arch for ppc64, bug 272588
1.1 net-misc/gwhois/gwhois-20090717.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gwhois/gwhois-20090717.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gwhois/gwhois-20090717.ebuild?rev=1.1&content-type=text/plain
Index: gwhois-20090717.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/gwhois/gwhois-20090717.ebuild,v 1.1 2009/07/17 13:58:16 wschlich Exp $
inherit eutils
MY_P=${P/_p/.}
S="${WORKDIR}/${MY_P}"
DESCRIPTION="generic whois"
HOMEPAGE="http://gwhois.de/"
SRC_URI="http://gwhois.de/gwhois/${MY_P/-/_}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
RDEPEND="www-client/lynx
net-misc/curl
dev-lang/perl
dev-perl/libwww-perl"
src_install() {
dodir /etc/gwhois
insinto /etc/gwhois
doins pattern
dobin gwhois
doman gwhois.1
dodoc TODO "${FILESDIR}/gwhois.xinetd" README.RIPE
einfo ""
einfo "See included gwhois.xinetd for an example on how to"
einfo "use gwhois as a whois proxy using xinetd."
einfo "Just copy gwhois.xinetd to /etc/xinetd.d/gwhois"
einfo "and reload xinetd."
einfo ""
}
pkg_postinst() {
if [ -f /etc/gwhois/pattern.ripe ]; then
ewarn ""
ewarn "Will move old /etc/gwhois/pattern.ripe to removethis-pattern.ripe"
ewarn "as it causes malfunction with this version."
ewarn "If you did not modify the file, just remove it."
ewarn ""
mv /etc/gwhois/pattern.ripe /etc/gwhois/removethis-pattern.ripe
fi
}
|
|