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

Contents of /rpms/perl-Net-DNS/devel/perl-Net-DNS.spec

Parent Directory Parent Directory | Revision Log Revision Log


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

admin@fedoraproject.org
ViewVC Help
Powered by ViewVC 1.1.2