Patch package to fix incompatibility with perl-Getopt-Long

f38
Emmanuel Seyman 9 years ago
parent 6507676b4e
commit a8682f7580

@ -0,0 +1,19 @@
diff -up ./bin/sql-split.orig ./bin/sql-split
--- ./bin/sql-split.orig 2015-11-08 20:54:19.957492030 +0100
+++ ./bin/sql-split 2015-11-08 20:54:39.348380406 +0100
@@ -19,7 +19,7 @@ our $VERSION = $SQL::SplitStatement::VER
use Getopt::Long;
Getopt::Long::Configure qw(
- auto_help auto_version bundling require_order gnu_compat
+ auto_help auto_version bundling require_order gnu_compat no_ignore_case
);
use Pod::Usage;
@@ -343,4 +343,4 @@ data and hardware damaging, but it may a
people, including, but not limited to, diarrhoea, gonorrhea and dysmenorrhea.
Don't say you haven't been warned.
-=cut
\ Pas de fin de ligne à la fin du fichier
+=cut

@ -1,11 +1,14 @@
Name: perl-SQL-SplitStatement
Version: 1.00020
Release: 3%{?dist}
Release: 4%{?dist}
Summary: Split any SQL code into atomic statements
License: GPL+ or Artistic
URL: http://search.cpan.org/dist/SQL-SplitStatement/
Source0: http://www.cpan.org/authors/id/E/EM/EMAZEP/SQL-SplitStatement-%{version}.tar.gz
# Fixes incompatibility with Getopt::Long v2.48
# https://rt.cpan.org/Ticket/Display.html?id=108595
Patch0: perl-SQL-SplitStatement-1.00020-getopt-long-compat.patch
BuildArch: noarch
BuildRequires: make
@ -37,6 +40,7 @@ of the module documentation), into the atomic statements it is composed of.
%prep
%setup -q -n SQL-SplitStatement-%{version}
%patch0 -p0
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
@ -60,6 +64,9 @@ make test
%{_mandir}/man3/SQL*
%changelog
* Sun Nov 08 2015 Emmanuel Seyman <emmanuel@seyman.fr> - 1.00020-4
- Patch package to fix incompatibility with perl-Getopt-Long (#1278707)
* Thu Oct 29 2015 Emmanuel Seyman <emmanuel@seyman.fr> - 1.00020-3
- Take into account review comments (#1276161)

Loading…
Cancel
Save