From 8cfc6f612b8d54af94dc1d4b8af786c685aecfb1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppi...@redhat.com>
Date: Mon, 21 Nov 2016 14:12:25 +0100
Subject: 0.11 bump

---
 .gitignore                                        |  1 +
 Text-VCardFast-0.08-Do-not-install-bench.pl.patch | 32 ------------------
 Text-VCardFast-0.09-Respect-default-CCFLAGS.patch | 41 -----------------------
 perl-Text-VCardFast.spec                          | 13 +++----
 sources                                           |  2 +-
 5 files changed, 7 insertions(+), 82 deletions(-)
 delete mode 100644 Text-VCardFast-0.08-Do-not-install-bench.pl.patch
 delete mode 100644 Text-VCardFast-0.09-Respect-default-CCFLAGS.patch

diff --git a/.gitignore b/.gitignore
index b605665..72ca287 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 /Text-VCardFast-0.08.tar.gz
 /Text-VCardFast-0.09.tar.gz
+/Text-VCardFast-0.11.tar.gz
diff --git a/Text-VCardFast-0.08-Do-not-install-bench.pl.patch 
b/Text-VCardFast-0.08-Do-not-install-bench.pl.patch
deleted file mode 100644
index 3e1ef10..0000000
--- a/Text-VCardFast-0.08-Do-not-install-bench.pl.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 7202ef7e24e8fcc08966cc63e88869d2d1011bfd Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppi...@redhat.com>
-Date: Fri, 11 Nov 2016 11:52:54 +0100
-Subject: [PATCH] Do not install bench.pl
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-CPAN RT#118712
-
-Signed-off-by: Petr Písař <ppi...@redhat.com>
----
- Makefile.PL | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/Makefile.PL b/Makefile.PL
-index a02eb6f..d38bc85 100644
---- a/Makefile.PL
-+++ b/Makefile.PL
-@@ -11,6 +11,9 @@ WriteMakefile(
-     ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
-       (ABSTRACT_FROM  => 'lib/Text/VCardFast.pm', # retrieve abstract from 
module
-        AUTHOR         => 'Bron Gondwana <brong@>') : ()),
-+    # Do not install bench.pl
-+    PM                => { 'lib/Text/VCardFast.pm' =>
-+                            '$(INST_LIB)/Text/VCardFast.pm'},
-     LIBS              => [''], # e.g., '-lm'
-     DEFINE            => '', # e.g., '-DHAVE_SOMETHING'
-     INC               => '-I.', # e.g., '-I. -I/usr/include/other'
--- 
-2.7.4
-
diff --git a/Text-VCardFast-0.09-Respect-default-CCFLAGS.patch 
b/Text-VCardFast-0.09-Respect-default-CCFLAGS.patch
deleted file mode 100644
index 779394d..0000000
--- a/Text-VCardFast-0.09-Respect-default-CCFLAGS.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 4d51e834cae14457020184e165ce0541e043abc0 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppi...@redhat.com>
-Date: Tue, 15 Nov 2016 17:39:27 +0100
-Subject: [PATCH] Respect default CCFLAGS
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-EU::MM's CCFLAGS variable is initialized from Perl's default
-$Config{ccflags}. Ignoring the default value can make the resulting
-binary module incomaptible with the perl.
-
-This patch adds the local flags to the default flags instead of
-replacing them.
-
-Signed-off-by: Petr Písař <ppi...@redhat.com>
----
- Makefile.PL | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/Makefile.PL b/Makefile.PL
-index d38bc85..e5a67b7 100644
---- a/Makefile.PL
-+++ b/Makefile.PL
-@@ -1,5 +1,6 @@
- use 5.014002;
- use ExtUtils::MakeMaker;
-+use Config;
- # See lib/ExtUtils/MakeMaker.pm for details of how to influence
- # the contents of the Makefile that is written.
- WriteMakefile(
-@@ -19,5 +20,5 @@ WriteMakefile(
-     INC               => '-I.', # e.g., '-I. -I/usr/include/other'
-       # Un-comment this if you add C files to link with later:
-     OBJECT            => '$(O_FILES)', # link all the C files too
--    CCFLAGS           => '-Wall',
-+    CCFLAGS           => '-Wall ' . $Config{ccflags},
- );
--- 
-2.7.4
-
diff --git a/perl-Text-VCardFast.spec b/perl-Text-VCardFast.spec
index 618ffb3..fa0e4db 100644
--- a/perl-Text-VCardFast.spec
+++ b/perl-Text-VCardFast.spec
@@ -1,15 +1,11 @@
 Name:           perl-Text-VCardFast
-Version:        0.09
-Release:        2%{?dist}
+Version:        0.11
+Release:        1%{?dist}
 Summary:        Perl extension for very fast parsing of VCards
 License:        GPL+ or Artistic
 Group:          Development/Libraries
 URL:            http://search.cpan.org/dist/Text-VCardFast/
 Source0:        
http://www.cpan.org/authors/id/B/BR/BRONG/Text-VCardFast-%{version}.tar.gz
-# Do not install bechnmark script, CPAN RT#118712
-Patch0:         Text-VCardFast-0.08-Do-not-install-bench.pl.patch
-# Respect default compiler flags, CPAN RT#118784
-Patch1:         Text-VCardFast-0.09-Respect-default-CCFLAGS.patch
 BuildRequires:  findutils
 BuildRequires:  gcc
 BuildRequires:  make
@@ -39,8 +35,6 @@ as vcard2hash_pp and vcard2hash_c, with the XS version being 
preferred.
 
 %prep
 %setup -q -n Text-VCardFast-%{version}
-%patch0 -p1
-%patch1 -p1
 
 %build
 perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS"
@@ -62,6 +56,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Mon Nov 21 2016 Petr Pisar <ppi...@redhat.com> - 0.11-1
+- 0.11 bump
+
 * Tue Nov 15 2016 Petr Pisar <ppi...@redhat.com> - 0.09-2
 - Respect default compiler flags (CPAN RT#118784)
 
diff --git a/sources b/sources
index b39da8d..7b383fd 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-c40f1cf08c3cc7a55eeb8352c1166752  Text-VCardFast-0.09.tar.gz
+53cebd19654b73c76e117cac8f7bc61a  Text-VCardFast-0.11.tar.gz
-- 
cgit v0.12


        
http://pkgs.fedoraproject.org/cgit/perl-Text-VCardFast.git/commit/?h=f24&id=8cfc6f612b8d54af94dc1d4b8af786c685aecfb1
_______________________________________________
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org

Reply via email to