SHA256
1
0
forked from pool/whois
OBS User unknown 2009-05-04 16:37:32 +00:00 committed by Git OBS Bridge
parent a5200824e7
commit 26905a4787
7 changed files with 87 additions and 33 deletions

View File

@ -1,11 +0,0 @@
--- Makefile
+++ Makefile
@@ -78,7 +78,7 @@
install -m 0644 mkpasswd.1 $(BASEDIR)$(prefix)/share/man/man1/
install-pos:
- cd po && $(MAKE) $@
+ cd po && $(MAKE) install
distclean: clean
rm -f po/whois.pot

View File

@ -1,11 +0,0 @@
--- po/Makefile
+++ po/Makefile
@@ -3,7 +3,7 @@
PACKAGE = whois
-CATALOGS = cs.mo de.mo el.mo es.mo eu.mo fr.mo it.mo ja.mo no.mo pl.mo pt_BR.mo ru.mo
+CATALOGS = cs.mo de.mo el.mo es.mo eu.mo fr.mo it.mo ja.mo nb.mo pl.mo pt_BR.mo ru.mo
POTFILES=../whois.c ../mkpasswd.c

13
whois-4.7.33-nb.patch Normal file
View File

@ -0,0 +1,13 @@
Index: po/Makefile
===================================================================
--- po/Makefile.orig 2008-12-09 01:49:28.000000000 +0100
+++ po/Makefile 2009-05-04 11:47:31.000000000 +0200
@@ -6,7 +6,7 @@ INSTALLNLSDIR=$(BASEDIR)$(prefix)/share/
PACKAGE = whois
-CATALOGS = cs.mo de.mo el.mo es.mo eu.mo fr.mo it.mo ja.mo no.mo pl.mo pt_BR.mo ru.mo fi.mo
+CATALOGS = cs.mo de.mo el.mo es.mo eu.mo fr.mo it.mo ja.mo nb.mo pl.mo pt_BR.mo ru.mo fi.mo
POTFILES=../whois.c ../mkpasswd.c

View File

@ -1,3 +1,37 @@
-------------------------------------------------------------------
Mon May 4 11:51:30 CEST 2009 - puzel@suse.cz
- updated to version 4.7.33
* mkpasswd: use /dev/urandom to generate the salt. If it is not present,
initialize srand(3) with gettimeofday(2) instead of time(2) to have a
larger randomness space.
* mkpasswd: added preliminary support for variable length salts, patch
courtesy of Nicolas François.
* Updated the .co.za SLD server.
* Added new ASN allocations.
* Updated the .tel, .gg and .je TLD servers.
* Implemented a 10 seconds timeout on connect(2) to allow querying
servers with broken IPv6 connectivity.
* Added support for automatically determining the server for in-addr.arpa
domains.
* Added new IPv4 allocations.
* Fixed a typo in de.po.
* Updated the .gi, .lc and .mn TLD servers.
* Fixed the short option -S which I broke in 4.7.25.
* Added support for ASN32 in the ASPLAIN notation.
* Do not disable the timeout after the connection to the server, because
it can still hang forever.
* Added the .gy, .hn, .ng and .sl TLD servers.
* Updated the .tel, .cr, .dz, .ht, .im, .jo, .ly, .mt, .mu, .pr, .rs, .sn,
.com.uy, .vc and .vn TLD servers.
* Added support for -kenic NIC handles.
* Added new IPv4 allocations.
* Little portability fixes.
* Added Finnish translation contributed by Sami Kerola.
- removed whois-4.7.28-Makefile.patch (obsolete)
- fixed rpmlint warning
- properly pass RPM_OPT_FLAGS to make
-------------------------------------------------------------------
Fri Sep 12 10:48:46 CEST 2008 - anosek@suse.cz

View File

@ -1,7 +1,7 @@
#
# spec file for package whois (Version 4.7.28)
# spec file for package whois (Version 4.7.33)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -25,12 +25,11 @@ Group: Productivity/Networking/Other
Provides: ripe-whois-tools
AutoReqProv: on
Url: http://www.linux.it/~md/software/
Version: 4.7.28
Version: 4.7.33
Release: 1
Summary: whois Client Program
Source: %{name}_%{version}.tar.bz2
Patch1: %{name}-%{version}-nb.patch
Patch2: %{name}-%{version}-Makefile.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
@ -49,16 +48,15 @@ Authors:
%prep
%setup -n whois-%{version}
%patch1
%patch2
rename no nb po/no.*
%build
make all mkpasswd HAVE_LIBIDN=1 OPTS="$RPM_OPT_FLAGS"
make all mkpasswd HAVE_LIBIDN=1 CFLAGS="$RPM_OPT_FLAGS"
%install
mkdir -p $RPM_BUILD_ROOT{/usr/bin,%{_mandir}/man1}
make BASEDIR=$RPM_BUILD_ROOT mandir=%{_mandir} prefix=/usr \
install install-mkpasswd
install install-mkpasswd install-pos
%find_lang %{name}
%clean
@ -71,6 +69,37 @@ rm -rf %{buildroot}
%{_mandir}/man1/*
%changelog
* Mon May 04 2009 puzel@suse.cz
- updated to version 4.7.33
* mkpasswd: use /dev/urandom to generate the salt. If it is not present,
initialize srand(3) with gettimeofday(2) instead of time(2) to have a
larger randomness space.
* mkpasswd: added preliminary support for variable length salts, patch
courtesy of Nicolas François.
* Updated the .co.za SLD server.
* Added new ASN allocations.
* Updated the .tel, .gg and .je TLD servers.
* Implemented a 10 seconds timeout on connect(2) to allow querying
servers with broken IPv6 connectivity.
* Added support for automatically determining the server for in-addr.arpa
domains.
* Added new IPv4 allocations.
* Fixed a typo in de.po.
* Updated the .gi, .lc and .mn TLD servers.
* Fixed the short option -S which I broke in 4.7.25.
* Added support for ASN32 in the ASPLAIN notation.
* Do not disable the timeout after the connection to the server, because
it can still hang forever.
* Added the .gy, .hn, .ng and .sl TLD servers.
* Updated the .tel, .cr, .dz, .ht, .im, .jo, .ly, .mt, .mu, .pr, .rs, .sn,
.com.uy, .vc and .vn TLD servers.
* Added support for -kenic NIC handles.
* Added new IPv4 allocations.
* Little portability fixes.
* Added Finnish translation contributed by Sami Kerola.
- removed whois-4.7.28-Makefile.patch (obsolete)
- fixed rpmlint warning
- properly pass RPM_OPT_FLAGS to make
* Fri Sep 12 2008 anosek@suse.cz
- updated to version 4.7.28
* Updated the .aero TLD server.
@ -135,7 +164,7 @@ rm -rf %{buildroot}
[#165904] (tld_serv_list-4.7.13.patch)
* Wed Jan 25 2006 mls@suse.de
- converted neededforbuild to BuildRequires
* Sat Sep 10 2005 schwab@suse.de
* Fri Sep 09 2005 schwab@suse.de
- Add libidn, libidn-devel to nfb.
- Compile with -DHAVE_LIBIDN, needed for DENIC workaround.
* Fri Jul 29 2005 anicka@suse.cz

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e3557aec46ed6bce12680e459f4ed76588d9fb9ce898cddf5d23df2fd18caffa
size 61871

3
whois_4.7.33.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:91903be5e352894da18a491968c820e9b24ea2a56b6a1672a970f705327077ee
size 65167