public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-misc/bwwhois: metadata.xml ChangeLog bwwhois-5.5.1.ebuild bwwhois-5.0.ebuild
@ 2012-08-07 18:11 Michael Palimaka (kensington)
  0 siblings, 0 replies; only message in thread
From: Michael Palimaka (kensington) @ 2012-08-07 18:11 UTC (permalink / raw
  To: gentoo-commits

kensington    12/08/07 18:11:21

  Modified:             metadata.xml ChangeLog
  Added:                bwwhois-5.5.1.ebuild
  Removed:              bwwhois-5.0.ebuild
  Log:
  Version bump, remove old. Add patch to support .tel queries wrt bug #276749.
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  net-misc/bwwhois/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bwwhois/metadata.xml?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bwwhois/metadata.xml?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bwwhois/metadata.xml?r1=1.3&r2=1.4

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/bwwhois/metadata.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- metadata.xml	24 Sep 2011 10:09:57 -0000	1.3
+++ metadata.xml	7 Aug 2012 18:11:20 -0000	1.4
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<maintainer>
-<email>maintainer-needed@gentoo.org</email>
-</maintainer>
+	<maintainer>
+		<email>maintainer-needed@gentoo.org</email>
+	</maintainer>
 </pkgmetadata>



1.25                 net-misc/bwwhois/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bwwhois/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bwwhois/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bwwhois/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/bwwhois/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	29 Jul 2012 17:23:17 -0000	1.24
+++ ChangeLog	7 Aug 2012 18:11:20 -0000	1.25
@@ -1,6 +1,12 @@
 # ChangeLog for net-misc/bwwhois
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/bwwhois/ChangeLog,v 1.24 2012/07/29 17:23:17 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/bwwhois/ChangeLog,v 1.25 2012/08/07 18:11:20 kensington Exp $
+
+*bwwhois-5.5.1 (07 Aug 2012)
+
+  07 Aug 2012; Michael Palimaka <kensington@gentoo.org> +bwwhois-5.5.1.ebuild,
+  +files/bwwhois-5.5.1-tel.patch, -bwwhois-5.0.ebuild, metadata.xml:
+  Version bump, remove old. Add patch to support .tel queries wrt bug #276749.
 
   29 Jul 2012; Raúl Porcel <armin76@gentoo.org> bwwhois-5.0.ebuild,
   bwwhois-5.0-r1.ebuild:



1.1                  net-misc/bwwhois/bwwhois-5.5.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bwwhois/bwwhois-5.5.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/bwwhois/bwwhois-5.5.1.ebuild?rev=1.1&content-type=text/plain

Index: bwwhois-5.5.1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/bwwhois/bwwhois-5.5.1.ebuild,v 1.1 2012/08/07 18:11:20 kensington Exp $

EAPI=4

inherit eutils perl-app

MY_P=${P/bw/}

DESCRIPTION="Perl-based whois client designed to work with the new Shared Registration System"
SRC_URI="http://whois.bw.org/dist/${MY_P}.tgz"
HOMEPAGE="http://whois.bw.org/"

LICENSE="|| ( Artistic GPL-2 )"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""

DEPEND="dev-lang/perl"
RDEPEND="${DEPEND}
	virtual/perl-Getopt-Long"

S=${WORKDIR}/${MY_P}

src_prepare() {
	epatch "${FILESDIR}"/${P}-tel.patch
}

src_install() {
	exeinto usr/bin
	newexe whois bwwhois

	newman whois.1 bwwhois.1

	insinto /etc/whois
	doins whois.conf tld.conf sd.conf

	perlinfo
	insinto "${VENDOR_LIB}"
	doins bwInclude.pm
}





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

only message in thread, other threads:[~2012-08-07 18:11 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-07 18:11 [gentoo-commits] gentoo-x86 commit in net-misc/bwwhois: metadata.xml ChangeLog bwwhois-5.5.1.ebuild bwwhois-5.0.ebuild Michael Palimaka (kensington)

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