From 82cb5b6e5e621aef9717a72a79041e4dd5e01dc3 Mon Sep 17 00:00:00 2001
From: Nicolas Chauvet <kwiz...@fedoraproject.org>
Date: Wed, 11 Nov 2009 10:22:10 +0000
Subject: Initial import

---
 Makefile           | 21 +++++++++++++++++++++
 import.log         |  1 +
 perl-Net-CIDR.spec | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources            |  1 +
 4 files changed, 78 insertions(+)
 create mode 100644 Makefile
 create mode 100644 import.log
 create mode 100644 perl-Net-CIDR.spec
 create mode 100644 sources

diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..70d0209
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,21 @@
+# Makefile for source rpm: perl-Net-CIDR
+# $Id$
+NAME := perl-Net-CIDR
+SPECFILE = $(firstword $(wildcard *.spec))
+
+define find-makefile-common
+for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; 
then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q 
update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
+endef
+
+MAKEFILE_COMMON := $(shell $(find-makefile-common))
+
+ifeq ($(MAKEFILE_COMMON),)
+# attept a checkout
+define checkout-makefile-common
+test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo 
"common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to 
checkout the 'common' module." ; exit -1 ; } >&2
+endef
+
+MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
+endif
+
+include $(MAKEFILE_COMMON)
diff --git a/import.log b/import.log
new file mode 100644
index 0000000..82bd999
--- /dev/null
+++ b/import.log
@@ -0,0 +1 @@
+perl-Net-CIDR-0_13-2_fc11:HEAD:perl-Net-CIDR-0.13-2.fc11.src.rpm:1257934476
diff --git a/perl-Net-CIDR.spec b/perl-Net-CIDR.spec
new file mode 100644
index 0000000..d80b294
--- /dev/null
+++ b/perl-Net-CIDR.spec
@@ -0,0 +1,55 @@
+Name:           perl-Net-CIDR
+Version:        0.13
+Release:        2%{?dist}
+Summary:        Manipulate IPv4/IPv6 netblocks in CIDR notation
+License:        GPL+ or Artistic
+Group:          Development/Libraries
+URL:            http://search.cpan.org/dist/Net-CIDR/
+Source0:        
http://www.cpan.org/authors/id/M/MR/MRSAM/Net-CIDR-%{version}.tar.gz
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch:      noarch
+BuildRequires:  perl(ExtUtils::MakeMaker)
+Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
+
+%description
+The Net::CIDR package contains functions that manipulate lists of IP
+netblocks expressed in CIDR notation. The Net::CIDR functions handle both
+IPv4 and IPv6 addresses.
+
+%prep
+%setup -q -n Net-CIDR-%{version}
+
+%build
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
+
+find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
+find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
+
+%{_fixperms} $RPM_BUILD_ROOT/*
+
+%check
+make test
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root,-)
+%doc Changes COPYING README
+%{perl_vendorlib}/Net/
+%{_mandir}/man3/*.3pm*
+
+%changelog
+* Mon Nov  9 2009 Nicolas Chauvet <kwiz...@fedoraproject.org> - 0.13-2
+- Fix License tag
+- Remove Net-CIDR.spec from %%doc
+- List files more explicitely
+
+* Fri Sep 25 2009 Nicolas Chauvet <kwiz...@fedoraproject.org> - 0.13-1
+- Specfile autogenerated by cpanspec 1.78.
diff --git a/sources b/sources
new file mode 100644
index 0000000..83813df
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+40f0f42104b314af91ab78119e0096de  Net-CIDR-0.13.tar.gz
-- 
cgit v0.12


From cc945c8f0f78e948cdabc432189caf31b97cdb1d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Kasal?= <ka...@fedoraproject.org>
Date: Mon, 7 Dec 2009 21:36:08 +0000
Subject: - rebuild against perl 5.10.1

---
 perl-Net-CIDR.spec | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Net-CIDR.spec b/perl-Net-CIDR.spec
index d80b294..1509e9d 100644
--- a/perl-Net-CIDR.spec
+++ b/perl-Net-CIDR.spec
@@ -1,6 +1,6 @@
 Name:           perl-Net-CIDR
 Version:        0.13
-Release:        2%{?dist}
+Release:        3%{?dist}
 Summary:        Manipulate IPv4/IPv6 netblocks in CIDR notation
 License:        GPL+ or Artistic
 Group:          Development/Libraries
@@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Mon Dec  7 2009 Stepan Kasal <ska...@redhat.com> - 0.13-3
+- rebuild against perl 5.10.1
+
 * Mon Nov  9 2009 Nicolas Chauvet <kwiz...@fedoraproject.org> - 0.13-2
 - Fix License tag
 - Remove Net-CIDR.spec from %%doc
-- 
cgit v0.12


From 07aa23d8ff72849613febfdd74c3e709d79c1f44 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?=
 <mmasl...@fedoraproject.org>
Date: Tue, 4 May 2010 09:08:20 +0000
Subject: - Mass rebuild with perl-5.12.0

---
 perl-Net-CIDR.spec | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Net-CIDR.spec b/perl-Net-CIDR.spec
index 1509e9d..2651d8b 100644
--- a/perl-Net-CIDR.spec
+++ b/perl-Net-CIDR.spec
@@ -1,6 +1,6 @@
 Name:           perl-Net-CIDR
 Version:        0.13
-Release:        3%{?dist}
+Release:        4%{?dist}
 Summary:        Manipulate IPv4/IPv6 netblocks in CIDR notation
 License:        GPL+ or Artistic
 Group:          Development/Libraries
@@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Tue May 04 2010 Marcela Maslanova <mmasl...@redhat.com> - 0.13-4
+- Mass rebuild with perl-5.12.0
+
 * Mon Dec  7 2009 Stepan Kasal <ska...@redhat.com> - 0.13-3
 - rebuild against perl 5.10.1
 
-- 
cgit v0.12


From a7103936c0b6c242d7fef786e81880c338d09cb1 Mon Sep 17 00:00:00 2001
From: Nicolas Chauvet <kwiz...@fedoraproject.org>
Date: Thu, 1 Jul 2010 20:36:06 +0000
Subject: Update to 0.14

---
 .cvsignore         | 1 +
 perl-Net-CIDR.spec | 5 ++++-
 sources            | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)
 create mode 100644 .cvsignore

diff --git a/.cvsignore b/.cvsignore
new file mode 100644
index 0000000..492da13
--- /dev/null
+++ b/.cvsignore
@@ -0,0 +1 @@
+Net-CIDR-0.14.tar.gz
diff --git a/perl-Net-CIDR.spec b/perl-Net-CIDR.spec
index 2651d8b..fdb64af 100644
--- a/perl-Net-CIDR.spec
+++ b/perl-Net-CIDR.spec
@@ -1,6 +1,6 @@
 Name:           perl-Net-CIDR
 Version:        0.13
-Release:        4%{?dist}
+Release:        1%{?dist}
 Summary:        Manipulate IPv4/IPv6 netblocks in CIDR notation
 License:        GPL+ or Artistic
 Group:          Development/Libraries
@@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Thu Jul 01 2010 Nicolas Chauvet <kwiz...@gmail.com> - 0.13-1
+- Update to 0.14
+
 * Tue May 04 2010 Marcela Maslanova <mmasl...@redhat.com> - 0.13-4
 - Mass rebuild with perl-5.12.0
 
diff --git a/sources b/sources
index 83813df..ba7d06b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-40f0f42104b314af91ab78119e0096de  Net-CIDR-0.13.tar.gz
+52081c62fe551a205127025c09698ec5  Net-CIDR-0.14.tar.gz
-- 
cgit v0.12


From 44709ffcf9f92823c32c8bcba25bc2e9760260d8 Mon Sep 17 00:00:00 2001
From: Nicolas Chauvet <kwiz...@fedoraproject.org>
Date: Thu, 1 Jul 2010 20:37:07 +0000
Subject: 0.14

---
 perl-Net-CIDR.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/perl-Net-CIDR.spec b/perl-Net-CIDR.spec
index fdb64af..d83b984 100644
--- a/perl-Net-CIDR.spec
+++ b/perl-Net-CIDR.spec
@@ -1,5 +1,5 @@
 Name:           perl-Net-CIDR
-Version:        0.13
+Version:        0.14
 Release:        1%{?dist}
 Summary:        Manipulate IPv4/IPv6 netblocks in CIDR notation
 License:        GPL+ or Artistic
@@ -46,7 +46,7 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*.3pm*
 
 %changelog
-* Thu Jul 01 2010 Nicolas Chauvet <kwiz...@gmail.com> - 0.13-1
+* Thu Jul 01 2010 Nicolas Chauvet <kwiz...@gmail.com> - 0.14-1
 - Update to 0.14
 
 * Tue May 04 2010 Marcela Maslanova <mmasl...@redhat.com> - 0.13-4
-- 
cgit v0.12


From a7de228e23dbeb65721d31765704352578f1ec27 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering <rel-...@lists.fedoraproject.org>
Date: Thu, 29 Jul 2010 07:27:42 +0000
Subject: dist-git conversion

---
 .cvsignore |  1 -
 .gitignore |  1 +
 Makefile   | 21 ---------------------
 import.log |  1 -
 4 files changed, 1 insertion(+), 23 deletions(-)
 delete mode 100644 .cvsignore
 create mode 100644 .gitignore
 delete mode 100644 Makefile
 delete mode 100644 import.log

diff --git a/.cvsignore b/.cvsignore
deleted file mode 100644
index 492da13..0000000
--- a/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-Net-CIDR-0.14.tar.gz
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..492da13
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+Net-CIDR-0.14.tar.gz
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 70d0209..0000000
--- a/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-# Makefile for source rpm: perl-Net-CIDR
-# $Id$
-NAME := perl-Net-CIDR
-SPECFILE = $(firstword $(wildcard *.spec))
-
-define find-makefile-common
-for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; 
then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q 
update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
-endef
-
-MAKEFILE_COMMON := $(shell $(find-makefile-common))
-
-ifeq ($(MAKEFILE_COMMON),)
-# attept a checkout
-define checkout-makefile-common
-test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo 
"common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to 
checkout the 'common' module." ; exit -1 ; } >&2
-endef
-
-MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
-endif
-
-include $(MAKEFILE_COMMON)
diff --git a/import.log b/import.log
deleted file mode 100644
index 82bd999..0000000
--- a/import.log
+++ /dev/null
@@ -1 +0,0 @@
-perl-Net-CIDR-0_13-2_fc11:HEAD:perl-Net-CIDR-0.13-2.fc11.src.rpm:1257934476
-- 
cgit v0.12


From 11720ddb33dd3e657c5de7517ba413971d06c7e3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?=
 <mmasl...@redhat.com>
Date: Tue, 21 Dec 2010 05:19:02 +0100
Subject: - 661697 rebuild for fixing problems with vendorach/lib

---
 perl-Net-CIDR.spec | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Net-CIDR.spec b/perl-Net-CIDR.spec
index d83b984..99939e9 100644
--- a/perl-Net-CIDR.spec
+++ b/perl-Net-CIDR.spec
@@ -1,6 +1,6 @@
 Name:           perl-Net-CIDR
 Version:        0.14
-Release:        1%{?dist}
+Release:        2%{?dist}
 Summary:        Manipulate IPv4/IPv6 netblocks in CIDR notation
 License:        GPL+ or Artistic
 Group:          Development/Libraries
@@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Tue Dec 21 2010 Marcela Maslanova <mmasl...@redhat.com> - 0.14-2
+- 661697 rebuild for fixing problems with vendorach/lib
+
 * Thu Jul 01 2010 Nicolas Chauvet <kwiz...@gmail.com> - 0.14-1
 - Update to 0.14
 
-- 
cgit v0.12


From e490622b546354a9fe87aa84eff2f5c833af3b4b Mon Sep 17 00:00:00 2001
From: Dennis Gilmore <den...@ausil.us>
Date: Tue, 8 Feb 2011 22:19:03 -0600
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild

---
 perl-Net-CIDR.spec | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Net-CIDR.spec b/perl-Net-CIDR.spec
index 99939e9..34f54c0 100644
--- a/perl-Net-CIDR.spec
+++ b/perl-Net-CIDR.spec
@@ -1,6 +1,6 @@
 Name:           perl-Net-CIDR
 Version:        0.14
-Release:        2%{?dist}
+Release:        3%{?dist}
 Summary:        Manipulate IPv4/IPv6 netblocks in CIDR notation
 License:        GPL+ or Artistic
 Group:          Development/Libraries
@@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Tue Feb 08 2011 Fedora Release Engineering <rel-...@lists.fedoraproject.org> 
- 0.14-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
 * Tue Dec 21 2010 Marcela Maslanova <mmasl...@redhat.com> - 0.14-2
 - 661697 rebuild for fixing problems with vendorach/lib
 
-- 
cgit v0.12


From 14abce268ce807604cad60fc70473f3c0856e0f2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?=
 <mmasl...@redhat.com>
Date: Wed, 15 Jun 2011 09:14:46 +0200
Subject: Perl mass rebuild

---
 perl-Net-CIDR.spec | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Net-CIDR.spec b/perl-Net-CIDR.spec
index 34f54c0..80395b9 100644
--- a/perl-Net-CIDR.spec
+++ b/perl-Net-CIDR.spec
@@ -1,6 +1,6 @@
 Name:           perl-Net-CIDR
 Version:        0.14
-Release:        3%{?dist}
+Release:        4%{?dist}
 Summary:        Manipulate IPv4/IPv6 netblocks in CIDR notation
 License:        GPL+ or Artistic
 Group:          Development/Libraries
@@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Wed Jun 15 2011 Marcela Mašláňová <mmasl...@redhat.com> - 0.14-4
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering <rel-...@lists.fedoraproject.org> 
- 0.14-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
-- 
cgit v0.12


From c0a6ecef82a485764ad8653311ac7471104cfb3e Mon Sep 17 00:00:00 2001
From: Dennis Gilmore <den...@ausil.us>
Date: Fri, 13 Jan 2012 10:17:59 -0600
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild

---
 perl-Net-CIDR.spec | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Net-CIDR.spec b/perl-Net-CIDR.spec
index 80395b9..37a3a83 100644
--- a/perl-Net-CIDR.spec
+++ b/perl-Net-CIDR.spec
@@ -1,6 +1,6 @@
 Name:           perl-Net-CIDR
 Version:        0.14
-Release:        4%{?dist}
+Release:        5%{?dist}
 Summary:        Manipulate IPv4/IPv6 netblocks in CIDR notation
 License:        GPL+ or Artistic
 Group:          Development/Libraries
@@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Fri Jan 13 2012 Fedora Release Engineering <rel-...@lists.fedoraproject.org> 
- 0.14-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
 * Wed Jun 15 2011 Marcela Mašláňová <mmasl...@redhat.com> - 0.14-4
 - Perl mass rebuild
 
-- 
cgit v0.12


From d1f4a553377cda02bc1cc9ed35f0f173a450c4b8 Mon Sep 17 00:00:00 2001
From: Nicolas Chauvet <kwiz...@gmail.com>
Date: Sun, 22 Apr 2012 19:43:37 +0200
Subject: Update to 0.15

---
 .gitignore         | 1 +
 perl-Net-CIDR.spec | 7 +++++--
 sources            | 2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index 492da13..666327d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 Net-CIDR-0.14.tar.gz
+/Net-CIDR-0.15.tar.gz
diff --git a/perl-Net-CIDR.spec b/perl-Net-CIDR.spec
index 37a3a83..ec71516 100644
--- a/perl-Net-CIDR.spec
+++ b/perl-Net-CIDR.spec
@@ -1,6 +1,6 @@
 Name:           perl-Net-CIDR
-Version:        0.14
-Release:        5%{?dist}
+Version:        0.15
+Release:        1%{?dist}
 Summary:        Manipulate IPv4/IPv6 netblocks in CIDR notation
 License:        GPL+ or Artistic
 Group:          Development/Libraries
@@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Sun Apr 22 2012 Nicolas Chauvet <kwiz...@gmail.com> - 0.15-1
+- Update to 0.15
+
 * Fri Jan 13 2012 Fedora Release Engineering <rel-...@lists.fedoraproject.org> 
- 0.14-5
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
 
diff --git a/sources b/sources
index ba7d06b..a4754ae 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-52081c62fe551a205127025c09698ec5  Net-CIDR-0.14.tar.gz
+6eca3c186c9ecfa27a878f76e00e8929  Net-CIDR-0.15.tar.gz
-- 
cgit v0.12


From 7a43c8aafb0355773354303340274cc4c65cba70 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppi...@redhat.com>
Date: Thu, 7 Jun 2012 23:17:28 +0200
Subject: Perl 5.16 rebuild

---
 perl-Net-CIDR.spec | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Net-CIDR.spec b/perl-Net-CIDR.spec
index ec71516..05739ea 100644
--- a/perl-Net-CIDR.spec
+++ b/perl-Net-CIDR.spec
@@ -1,6 +1,6 @@
 Name:           perl-Net-CIDR
 Version:        0.15
-Release:        1%{?dist}
+Release:        2%{?dist}
 Summary:        Manipulate IPv4/IPv6 netblocks in CIDR notation
 License:        GPL+ or Artistic
 Group:          Development/Libraries
@@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Thu Jun 07 2012 Petr Pisar <ppi...@redhat.com> - 0.15-2
+- Perl 5.16 rebuild
+
 * Sun Apr 22 2012 Nicolas Chauvet <kwiz...@gmail.com> - 0.15-1
 - Update to 0.15
 
-- 
cgit v0.12


From 070dbc7ea9f339b0cc78e1efd83920dde5002f6e Mon Sep 17 00:00:00 2001
From: Dennis Gilmore <den...@ausil.us>
Date: Fri, 20 Jul 2012 12:35:33 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild

---
 perl-Net-CIDR.spec | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Net-CIDR.spec b/perl-Net-CIDR.spec
index 05739ea..1adc4d0 100644
--- a/perl-Net-CIDR.spec
+++ b/perl-Net-CIDR.spec
@@ -1,6 +1,6 @@
 Name:           perl-Net-CIDR
 Version:        0.15
-Release:        2%{?dist}
+Release:        3%{?dist}
 Summary:        Manipulate IPv4/IPv6 netblocks in CIDR notation
 License:        GPL+ or Artistic
 Group:          Development/Libraries
@@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Fri Jul 20 2012 Fedora Release Engineering <rel-...@lists.fedoraproject.org> 
- 0.15-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
+
 * Thu Jun 07 2012 Petr Pisar <ppi...@redhat.com> - 0.15-2
 - Perl 5.16 rebuild
 
-- 
cgit v0.12


From d7a76713ea2e969a88e9b516a916022a45d1ef4f Mon Sep 17 00:00:00 2001
From: Dennis Gilmore <den...@ausil.us>
Date: Thu, 14 Feb 2013 07:59:08 -0600
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild

---
 perl-Net-CIDR.spec | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Net-CIDR.spec b/perl-Net-CIDR.spec
index 1adc4d0..86a82d1 100644
--- a/perl-Net-CIDR.spec
+++ b/perl-Net-CIDR.spec
@@ -1,6 +1,6 @@
 Name:           perl-Net-CIDR
 Version:        0.15
-Release:        3%{?dist}
+Release:        4%{?dist}
 Summary:        Manipulate IPv4/IPv6 netblocks in CIDR notation
 License:        GPL+ or Artistic
 Group:          Development/Libraries
@@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Thu Feb 14 2013 Fedora Release Engineering <rel-...@lists.fedoraproject.org> 
- 0.15-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
+
 * Fri Jul 20 2012 Fedora Release Engineering <rel-...@lists.fedoraproject.org> 
- 0.15-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
 
-- 
cgit v0.12


From 13e0f6359e513466c518a0f9bfa1727fb913dc32 Mon Sep 17 00:00:00 2001
From: Emmanuel Seyman <emman...@seyman.fr>
Date: Sun, 9 Jun 2013 09:11:09 +0200
Subject: Update to 0.17

---
 .gitignore         |  1 +
 perl-Net-CIDR.spec | 21 +++++++++++----------
 sources            |  2 +-
 3 files changed, 13 insertions(+), 11 deletions(-)

diff --git a/.gitignore b/.gitignore
index 666327d..ddea3d3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 Net-CIDR-0.14.tar.gz
 /Net-CIDR-0.15.tar.gz
+/Net-CIDR-0.17.tar.gz
diff --git a/perl-Net-CIDR.spec b/perl-Net-CIDR.spec
index 86a82d1..afca159 100644
--- a/perl-Net-CIDR.spec
+++ b/perl-Net-CIDR.spec
@@ -1,16 +1,18 @@
 Name:           perl-Net-CIDR
-Version:        0.15
-Release:        4%{?dist}
+Version:        0.17
+Release:        1%{?dist}
 Summary:        Manipulate IPv4/IPv6 netblocks in CIDR notation
 License:        GPL+ or Artistic
-Group:          Development/Libraries
+
 URL:            http://search.cpan.org/dist/Net-CIDR/
 Source0:        
http://www.cpan.org/authors/id/M/MR/MRSAM/Net-CIDR-%{version}.tar.gz
-BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
 BuildArch:      noarch
 BuildRequires:  perl(ExtUtils::MakeMaker)
 Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
+%{?perl_default_filter}
+
 %description
 The Net::CIDR package contains functions that manipulate lists of IP
 netblocks expressed in CIDR notation. The Net::CIDR functions handle both
@@ -24,8 +26,6 @@ IPv4 and IPv6 addresses.
 make %{?_smp_mflags}
 
 %install
-rm -rf $RPM_BUILD_ROOT
-
 make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
 
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
@@ -36,16 +36,17 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2>/dev/null \;
 %check
 make test
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
-%defattr(-,root,root,-)
 %doc Changes COPYING README
 %{perl_vendorlib}/Net/
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Sun Jun 09 2013 Emmanuel Seyman <emman...@seyman.fr> - 0.17-1
+- Update to 0.17
+- Add perl default filter
+- Remove no-longer-used macros
+
 * Thu Feb 14 2013 Fedora Release Engineering <rel-...@lists.fedoraproject.org> 
- 0.15-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
 
diff --git a/sources b/sources
index a4754ae..ccbb2b8 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-6eca3c186c9ecfa27a878f76e00e8929  Net-CIDR-0.15.tar.gz
+c4632887a13663c7ba769bd6ba1b3c26  Net-CIDR-0.17.tar.gz
-- 
cgit v0.12


From de020cd2851be10771ef7d302eb17ed87cb84174 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppi...@redhat.com>
Date: Wed, 17 Jul 2013 09:23:47 +0200
Subject: Perl 5.18 rebuild

---
 perl-Net-CIDR.spec | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Net-CIDR.spec b/perl-Net-CIDR.spec
index afca159..fbad874 100644
--- a/perl-Net-CIDR.spec
+++ b/perl-Net-CIDR.spec
@@ -1,6 +1,6 @@
 Name:           perl-Net-CIDR
 Version:        0.17
-Release:        1%{?dist}
+Release:        2%{?dist}
 Summary:        Manipulate IPv4/IPv6 netblocks in CIDR notation
 License:        GPL+ or Artistic
 
@@ -42,6 +42,9 @@ make test
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Wed Jul 17 2013 Petr Pisar <ppi...@redhat.com> - 0.17-2
+- Perl 5.18 rebuild
+
 * Sun Jun 09 2013 Emmanuel Seyman <emman...@seyman.fr> - 0.17-1
 - Update to 0.17
 - Add perl default filter
-- 
cgit v0.12


From 78fd6ea814f6c1744dcc22924132360c707849e2 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore <den...@ausil.us>
Date: Sat, 3 Aug 2013 18:48:03 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild

---
 perl-Net-CIDR.spec | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Net-CIDR.spec b/perl-Net-CIDR.spec
index fbad874..c5fd5cd 100644
--- a/perl-Net-CIDR.spec
+++ b/perl-Net-CIDR.spec
@@ -1,6 +1,6 @@
 Name:           perl-Net-CIDR
 Version:        0.17
-Release:        2%{?dist}
+Release:        3%{?dist}
 Summary:        Manipulate IPv4/IPv6 netblocks in CIDR notation
 License:        GPL+ or Artistic
 
@@ -42,6 +42,9 @@ make test
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Sat Aug 03 2013 Fedora Release Engineering <rel-...@lists.fedoraproject.org> 
- 0.17-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
+
 * Wed Jul 17 2013 Petr Pisar <ppi...@redhat.com> - 0.17-2
 - Perl 5.18 rebuild
 
-- 
cgit v0.12


From 29dfcdf6504e82789ec65fdc1b7a2be2cf059ebc Mon Sep 17 00:00:00 2001
From: Dennis Gilmore <den...@ausil.us>
Date: Sat, 7 Jun 2014 02:50:53 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild

---
 perl-Net-CIDR.spec | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Net-CIDR.spec b/perl-Net-CIDR.spec
index c5fd5cd..65a23cd 100644
--- a/perl-Net-CIDR.spec
+++ b/perl-Net-CIDR.spec
@@ -1,6 +1,6 @@
 Name:           perl-Net-CIDR
 Version:        0.17
-Release:        3%{?dist}
+Release:        4%{?dist}
 Summary:        Manipulate IPv4/IPv6 netblocks in CIDR notation
 License:        GPL+ or Artistic
 
@@ -42,6 +42,9 @@ make test
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Sat Jun 07 2014 Fedora Release Engineering <rel-...@lists.fedoraproject.org> 
- 0.17-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
 * Sat Aug 03 2013 Fedora Release Engineering <rel-...@lists.fedoraproject.org> 
- 0.17-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
-- 
cgit v0.12


From 2e3b35ec38b4f6a2d5a018c038a46934725eca38 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova <jples...@redhat.com>
Date: Wed, 27 Aug 2014 12:43:22 +0200
Subject: Perl 5.20 rebuild

---
 perl-Net-CIDR.spec | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Net-CIDR.spec b/perl-Net-CIDR.spec
index 65a23cd..44840ef 100644
--- a/perl-Net-CIDR.spec
+++ b/perl-Net-CIDR.spec
@@ -1,6 +1,6 @@
 Name:           perl-Net-CIDR
 Version:        0.17
-Release:        4%{?dist}
+Release:        5%{?dist}
 Summary:        Manipulate IPv4/IPv6 netblocks in CIDR notation
 License:        GPL+ or Artistic
 
@@ -42,6 +42,9 @@ make test
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Wed Aug 27 2014 Jitka Plesnikova <jples...@redhat.com> - 0.17-5
+- Perl 5.20 rebuild
+
 * Sat Jun 07 2014 Fedora Release Engineering <rel-...@lists.fedoraproject.org> 
- 0.17-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
 
-- 
cgit v0.12


From 78ccb3ea7df0d505c9d7f7ff45464a07577b5315 Mon Sep 17 00:00:00 2001
From: Paul Howarth <p...@city-fan.org>
Date: Mon, 17 Nov 2014 14:22:14 +0000
Subject: Small clean-up

- Use %license where possible
- Classify buildreqs by usage
---
 perl-Net-CIDR.spec | 46 ++++++++++++++++++++++++++++------------------
 1 file changed, 28 insertions(+), 18 deletions(-)

diff --git a/perl-Net-CIDR.spec b/perl-Net-CIDR.spec
index 44840ef..3f0f1b5 100644
--- a/perl-Net-CIDR.spec
+++ b/perl-Net-CIDR.spec
@@ -1,47 +1,57 @@
 Name:           perl-Net-CIDR
 Version:        0.17
-Release:        5%{?dist}
+Release:        6%{?dist}
 Summary:        Manipulate IPv4/IPv6 netblocks in CIDR notation
 License:        GPL+ or Artistic
-
 URL:            http://search.cpan.org/dist/Net-CIDR/
 Source0:        
http://www.cpan.org/authors/id/M/MR/MRSAM/Net-CIDR-%{version}.tar.gz
-
 BuildArch:      noarch
+# Module Build
+BuildRequires:  perl
 BuildRequires:  perl(ExtUtils::MakeMaker)
-Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
-
-%{?perl_default_filter}
+# Module Runtime
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(Exporter)
+# Test Suite
+# (no additional dependencies)
+# Runtime
+Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 
 %description
-The Net::CIDR package contains functions that manipulate lists of IP
-netblocks expressed in CIDR notation. The Net::CIDR functions handle both
-IPv4 and IPv6 addresses.
+The Net::CIDR package contains functions that manipulate lists of IP netblocks
+expressed in CIDR notation. The Net::CIDR functions handle both IPv4 and IPv6
+addresses.
 
 %prep
 %setup -q -n Net-CIDR-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
+perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 %install
-make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
-
-find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
-find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
-%{_fixperms} $RPM_BUILD_ROOT/*
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -exec rm -f {} \;
+%{_fixperms} %{buildroot}
 
 %check
 make test
 
 %files
-%doc Changes COPYING README
+%if 0%{?_licensedir:1}
+%license COPYING
+%else
+%doc COPYING
+%endif
+%doc Changes README
 %{perl_vendorlib}/Net/
-%{_mandir}/man3/*.3pm*
+%{_mandir}/man3/Net::CIDR.3*
 
 %changelog
+* Mon Nov 17 2014 Paul Howarth <p...@city-fan.org> - 0.17-6
+- Use %%license where possible
+- Classify buildreqs by usage
+
 * Wed Aug 27 2014 Jitka Plesnikova <jples...@redhat.com> - 0.17-5
 - Perl 5.20 rebuild
 
-- 
cgit v0.12


        
http://pkgs.fedoraproject.org/cgit/perl-Net-CIDR.git/commit/?h=el6&id=05f2fa0bf9c384c131811f94520e0f8c5e588d2f
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

Reply via email to