From 812552a22c785450f6daf7c9ed87b4efd3554ac6 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova <jples...@redhat.com>
Date: Tue, 13 Oct 2015 14:32:50 +0200
Subject: 1.25 bump

---
 .gitignore                                         |  1 +
 ...PI-1.13-Do-not-install-examples-into-PATH.patch | 35 ----------------------
 perl-Flickr-API.spec                               | 19 +++++++-----
 sources                                            |  2 +-
 4 files changed, 13 insertions(+), 44 deletions(-)
 delete mode 100644 Flickr-API-1.13-Do-not-install-examples-into-PATH.patch

diff --git a/.gitignore b/.gitignore
index d3fa128..2b7410b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ Flickr-API-1.02.tar.gz
 /Flickr-API-1.04.tar.gz
 /Flickr-API-1.05.tar.gz
 /Flickr-API-1.13.tar.gz
+/Flickr-API-1.25.tar.gz
diff --git a/Flickr-API-1.13-Do-not-install-examples-into-PATH.patch 
b/Flickr-API-1.13-Do-not-install-examples-into-PATH.patch
deleted file mode 100644
index 6cb9b50..0000000
--- a/Flickr-API-1.13-Do-not-install-examples-into-PATH.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 668a4b58b1cd7d8bf9b449bb66566351158f0efe Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppi...@redhat.com>
-Date: Tue, 23 Jun 2015 16:27:45 +0200
-Subject: [PATCH] Do not install examples into PATH
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-CPAN RT#105426
-
-Signed-off-by: Petr Písař <ppi...@redhat.com>
----
- Makefile.PL | 8 --------
- 1 file changed, 8 deletions(-)
-
-diff --git a/Makefile.PL b/Makefile.PL
-index cb3d8d7..95cd7bb 100644
---- a/Makefile.PL
-+++ b/Makefile.PL
-@@ -53,12 +53,4 @@ WriteMakefile(
-                                                                       
'Term::ReadKey' => 0,
-                                                                       
'Getopt::Long' => 0,
-                                                                  },
--    'EXE_FILES' =>
--                [
--                'examples/flickr_oauth_authentication.pl',
--                'examples/flickr_method_test_echo.pl',
--                'examples/flickr_method_test_login.pl',
--                'examples/flickr_dump_stored_config.pl',
--                'examples/flickr_make_stored_config.pl',
--                ]
- );
--- 
-2.1.0
-
diff --git a/perl-Flickr-API.spec b/perl-Flickr-API.spec
index e84c9ff..19771b0 100644
--- a/perl-Flickr-API.spec
+++ b/perl-Flickr-API.spec
@@ -1,15 +1,11 @@
 Name:           perl-Flickr-API
-Version:        1.13
+Version:        1.25
 Release:        1%{?dist}
 Summary:        Perl interface to the Flickr API
-# LICENSE:                              Artistic 2.0
-# examples/flickr_method_test_login.pl: GPL+ or Artistic
-License:        (Artistic 2.0) and (GPL+ or Artistic)
+License:        Artistic 2.0
 Group:          Development/Libraries
 URL:            http://search.cpan.org/dist/Flickr-API/
 Source0:        
http://www.cpan.org/authors/id/L/LB/LBMOORE/Flickr-API-%{version}.tar.gz
-# Do not install examples as tools into PATH, CPAN RT#105426
-Patch0:         Flickr-API-1.13-Do-not-install-examples-into-PATH.patch
 BuildArch:      noarch
 BuildRequires:  coreutils
 BuildRequires:  findutils
@@ -21,24 +17,27 @@ BuildRequires:  perl(Carp)
 # Compress::Zlib is optional
 BuildRequires:  perl(Digest::MD5)
 BuildRequires:  perl(Encode)
+BuildRequires:  perl(File::Temp)
 # HTTP::Message 1.56 needed because it brings decoded_content()
 BuildRequires:  perl(HTTP::Message) >= 1.56
 BuildRequires:  perl(HTTP::Request)
 BuildRequires:  perl(HTTP::Response)
 BuildRequires:  perl(LWP::UserAgent)
 BuildRequires:  perl(Net::OAuth)
+BuildRequires:  perl(parent)
 BuildRequires:  perl(Scalar::Util)
 BuildRequires:  perl(Storable)
 BuildRequires:  perl(strict)
 BuildRequires:  perl(URI) >= 1.18
 BuildRequires:  perl(warnings)
+BuildRequires:  perl(XML::LibXML::Simple)
 BuildRequires:  perl(XML::Parser::Lite::Tree) >= 0.06
 # Tests:
 BuildRequires:  perl(Data::Dumper)
 BuildRequires:  perl(File::Temp)
 BuildRequires:  perl(Term::ReadLine)
 BuildRequires:  perl(Test::More)
-BuildRequires:  perl(XML::Simple)
+BuildRequires:  perl(Test::Script)
 Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 # HTTP::Message 1.56 needed because it brings decoded_content()
 Requires:       perl(HTTP::Message) >= 1.56
@@ -53,7 +52,6 @@ A simple interface for using the Flickr API.
 
 %prep
 %setup -q -n Flickr-API-%{version}
-%patch0 -p1
 
 %build
 perl Makefile.PL INSTALLDIRS=vendor </dev/null
@@ -70,10 +68,15 @@ make test
 %files
 %license LICENSE
 %doc Changes examples README
+%{_bindir}/*
 %{perl_vendorlib}/*
+%{_mandir}/man1/*
 %{_mandir}/man3/*
 
 %changelog
+* Tue Oct 13 2015 Jitka Plesnikova <jples...@redhat.com> - 1.25-1
+- 1.25 bump
+
 * Tue Jun 23 2015 Petr Pisar <ppi...@redhat.com> - 1.13-1
 - 1.13 bump
 - License corrected to (Artistic 2.0) and (GPL+ or Artistic)
diff --git a/sources b/sources
index 7b92d10..2b785cb 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-1fd7a1156edd2848bddc0c9395c06e7f  Flickr-API-1.13.tar.gz
+9088fcba353353963816fff6b5a43978  Flickr-API-1.25.tar.gz
-- 
cgit v0.11.2


        
http://pkgs.fedoraproject.org/cgit/perl-Flickr-API.git/commit/?h=master&id=812552a22c785450f6daf7c9ed87b4efd3554ac6
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Reply via email to