/[pkgs]/rpms/perl-Net-DNS/F-11/perl-Net-DNS.spec
ViewVC logotype

Contents of /rpms/perl-Net-DNS/F-11/perl-Net-DNS.spec

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.44 - (show annotations) (download)
Thu Feb 26 23:03:05 2009 UTC (8 months, 3 weeks ago) by jkeating
Branch: MAIN
CVS Tags: perl-Net-DNS-0_63-5_fc11, F-11-split, F-11-start, HEAD
Changes since 1.43: +4 -1 lines
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
1 Name: perl-Net-DNS
2 Version: 0.63
3 Release: 5%{?dist}
4 Summary: DNS resolver modules for Perl
5 License: GPL+ or Artistic
6 Group: Development/Libraries
7 URL: http://www.net-dns.org/
8 Source0: http://www.cpan.org/authors/id/O/OL/OLAF/Net-DNS-%{version}.tar.gz
9 Patch0: perl-Net-DNS-upstream.patch
10 BuildRequires: perl(Digest::HMAC), perl(ExtUtils::MakeMaker), perl(Test::More), perl(Net::IP)
11 BuildRequires: perl(Test::Pod)
12 BuildRequires: perl(Digest::BubbleBabble)
13 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
14 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
15
16
17 %description
18 Net::DNS is a collection of Perl modules that act as a Domain Name
19 System (DNS) resolver. It allows the programmer to perform DNS queries
20 that are beyond the capabilities of gethostbyname and gethostbyaddr.
21
22 The programmer should be somewhat familiar with the format of a DNS
23 packet and its various sections. See RFC 1035 or DNS and BIND (Albitz
24 & Liu) for details.
25
26
27 %package Nameserver
28 Summary: DNS server for Perl
29 Group: Development/Libraries
30 License: GPL+ or Artistic
31
32 %description Nameserver
33 Instances of the "Net::DNS::Nameserver" class represent DNS server
34 objects.
35
36
37 %prep
38 %setup -q -n Net-DNS-%{version}
39 %patch0 -p1
40
41 %build
42 %{__perl} Makefile.PL INSTALLDIRS=vendor --no-online-tests
43 make %{?_smp_mflags} OPTIMIZE="$RPM_OPT_FLAGS"
44
45 %install
46 rm -rf $RPM_BUILD_ROOT
47 make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
48 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
49 find $RPM_BUILD_ROOT -type f -name '*.bs' -a -size 0 -exec rm -f {} ';'
50 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';'
51 chmod -R u+w $RPM_BUILD_ROOT/*
52
53 for i in Changes; do
54 /usr/bin/iconv -f iso8859-1 -t utf-8 $i > $i.conv && /bin/mv -f $i.conv $i
55 done
56
57 %check
58 make test
59
60 %clean
61 rm -rf $RPM_BUILD_ROOT
62
63 %files
64 %defattr(-,root,root)
65 %doc README Changes TODO
66 %{perl_vendorarch}/Net/
67 %exclude %{perl_vendorarch}/Net/DNS/Resolver/Cygwin.pm
68 %exclude %{perl_vendorarch}/Net/DNS/Resolver/Win32.pm
69 %{perl_vendorarch}/auto/Net/
70 %{_mandir}/man3/Net::DNS*.3*
71 %exclude %{_mandir}/man3/Net::DNS::Resolver::Cygwin.3*
72 %exclude %{_mandir}/man3/Net::DNS::Resolver::Win32.3*
73
74 # perl-Net-DNS-Nameserver
75 %exclude %{perl_vendorarch}/Net/DNS/Nameserver.pm
76 %exclude %{_mandir}/man3/Net::DNS::Nameserver*
77
78 %files Nameserver
79 %defattr(-,root,root)
80 %{perl_vendorarch}/Net/DNS/Nameserver.pm
81 %{_mandir}/man3/Net::DNS::Nameserver*
82
83
84 %changelog
85 * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.63-5
86 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
87
88 * Mon May 12 2008 Marcela Maslanova <mmaslano@redhat.com> - 0.63-4
89 - 437681 remove previous patch and use upstream patch, which should solve
90 all problems with noisy logs.
91
92 * Wed Apr 9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.63-3
93 - fix patch to not require Socket6
94
95 * Wed Apr 9 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.63-2
96 - fix AF_INET6/PF_INET6 redefine noise (bz 437681)
97
98 * Wed Mar 19 2008 Marcela Maslanova <mmaslano@redhat.com> - 0.63-1
99 - upgrade on new upstream version which fix CVE-2007-6341 - no security impact.
100
101 * Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.61-7
102 - Rebuild for perl 5.10 (again)
103
104 * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.61-6
105 - Autorebuild for GCC 4.3
106
107 * Thu Jan 31 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.61-5
108 - rebuild for new perl
109
110 * Fri Dec 21 2007 Paul Howarth <paul@city-fan.org> - 0.61-4
111 - Fix file ownership for Nameserver subpackage
112 - Fix argument order for find with -depth
113
114 * Fri Dec 14 2007 Robin Norwood <rnorwood@redhat.com> - 0.61-3
115 - Split Nameserver.pm into subpackage, per recommendation from
116 upstream maintainer Dick Franks.
117 - Separates the server bits from the client bits.
118 - Removes the dependancy on perl(Net::IP) from perl-Net-DNS
119 - Add BR for perl(Test::Pod) and perl(Digest::BubbleBabble)
120
121 * Wed Oct 24 2007 Robin Norwood <rnorwood@redhat.com> - 0.61-2
122 - Update license tag
123 - Convert Changes to utf-8
124
125 * Thu Aug 09 2007 Robin Norwood <rnorwood@redhat.com> - 0.61-1
126 - Update to latest upstream version
127
128 * Sat Jun 23 2007 Robin Norwood <rnorwood@redhat.com> - 0.60-1
129 - Upgrade to latest upstream version - 0.60
130
131 * Thu Apr 05 2007 Robin Norwood <rnorwood@redhat.com> - 0.59-2
132 - Resolves: bz#226270
133 - Fixed issues brought up during package review
134 - BuildRequires should not require perl, and fixed the format.
135 - Fixed the BuildRoot
136
137 * Wed Sep 27 2006 Robin Norwood <rnorwood@redhat.com> - 0.59-1
138 - Upgrade to upstream version 0.59 per bug #208315
139
140 * Mon Jul 17 2006 Jason Vas Dias <jvdias@redhat.com> - 0.58-1.fc6
141 - Upgrade to upstream version 0.58
142
143 * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.57-1.1
144 - rebuild
145
146 * Wed Mar 08 2006 Jason Vas Dias <jvdias@redhat.com> - 0.57-1
147 - Upgrade to upstream version 0.57
148
149 * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.55-1.1.2
150 - bump again for double-long bug on ppc(64)
151
152 * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.55-1.1.1
153 - rebuilt for new gcc4.1 snapshot and glibc changes
154
155 * Fri Feb 03 2006 Jason Vas Dias <jvdias@redhat.com> - 0.55-1.1
156 - rebuild for new perl-5.8.8
157
158 * Mon Dec 19 2005 Jason Vas Dias <jvdias@redhat.com> - 0.55-1
159 - Upgrade to upstream version 0.55
160
161 * Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com>
162 - rebuilt for new gcc
163
164 * Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com>
165 - rebuilt for new gcj
166
167 * Sun Oct 30 2005 Warren Togami <wtogami@redhat.com> - 0.53-1
168 - 0.53 buildreq perl-Net-IP
169
170 * Sat Apr 9 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.49-2
171 - Explicitly disable tests requiring network access at build time.
172 - Exclude Win32 and Cygwin specific modules.
173 - More specfile cleanups.
174 - Honor $RPM_OPT_FLAGS.
175
176 * Sat Apr 02 2005 Robert Scheck <redhat@linuxnetz.de> 0.49-1
177 - upgrade to 0.49 and spec file cleanup (#153186)
178
179 * Thu Mar 17 2005 Warren Togami <wtogami@redhat.com> 0.48-3
180 - reinclude ia64, thanks jvdias
181
182 * Tue Mar 15 2005 Warren Togami <wtogami@redhat.com> 0.48-2
183 - exclude ia64 for now due to Bug #151127
184
185 * Mon Oct 11 2004 Warren Togami <wtogami@redhat.com> 0.48-1
186 - #119983 0.48 fixes bugs
187
188 * Wed Sep 22 2004 Chip Turner <cturner@redhat.com> 0.45-4
189 - rebuild
190
191 * Thu Apr 29 2004 Chip Turner <cturner@redhat.com> 0.45-3
192 - fix bug 122039 -- add filter-depends.sh to remove Win32 deps
193
194 * Fri Apr 23 2004 Chip Turner <cturner@redhat.com> 0.45-1
195 - bump, no longer noarch
196
197 * Fri Feb 13 2004 Chip Turner <cturner@redhat.com> 0.45-1
198 - update to 0.45
199
200 * Mon Oct 20 2003 Chip Turner <cturner@redhat.com> 0.31-3.2
201 - fix interactive build issue
202
203 * Mon Jan 27 2003 Chip Turner <cturner@redhat.com>
204 - version bump and rebuild
205
206 * Tue Dec 10 2002 Chip Turner <cturner@redhat.com>
207 - update to latest version from CPAN
208
209 * Tue Aug 6 2002 Chip Turner <cturner@redhat.com>
210 - automated release bump and build
211
212 * Tue Aug 6 2002 Chip Turner <cturner@localhost.localdomain>
213 - update to 0.26
214
215 * Thu Jun 27 2002 Chip Turner <cturner@redhat.com>
216 - description update
217
218 * Sat Jun 15 2002 cturner@redhat.com
219 - Specfile autogenerated
220

admin@fedoraproject.org
ViewVC Help
Powered by ViewVC 1.1.2