forked from pool/perl-SQL-Statement
Accepting request 843343 from devel:languages:perl:autoupdate
- updated to 1.414
see /usr/share/doc/packages/perl-SQL-Statement/Changes
1.414 2020-10-21
* re-release 1.413_001 without further changes
1.413_001 2020-09-28
* Spell check
* Be specific in which files to skip from the distribution
* Author fixes
* Makefile.PL: port WriteMakefile1 from Hash::Merge
* .travis.yml: update for Xenial VMs
* cleanup MANIFEST.SKIP
* bump copyright year
* SQL::Parser correctly parse VALUES and SET clauses containing function invocations with several arguments
patch provided by Edgar J. Holleis
OBS-URL: https://build.opensuse.org/request/show/843343
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-SQL-Statement?expand=0&rev=33
This commit is contained in:
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:65c870883379c11b53f19ead10aaac241ccc86a90bbab77f6376fe750720e5c8
|
|
||||||
size 154608
|
|
||||||
3
SQL-Statement-1.414.tar.gz
Normal file
3
SQL-Statement-1.414.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:dde8bdcfa6a136eedda06519ba0f3efaec085c39db0df9c472dc0ec6cd781a49
|
||||||
|
size 159512
|
||||||
@@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 22 03:22:24 UTC 2020 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
- updated to 1.414
|
||||||
|
see /usr/share/doc/packages/perl-SQL-Statement/Changes
|
||||||
|
|
||||||
|
1.414 2020-10-21
|
||||||
|
* re-release 1.413_001 without further changes
|
||||||
|
|
||||||
|
1.413_001 2020-09-28
|
||||||
|
* Spell check
|
||||||
|
* Be specific in which files to skip from the distribution
|
||||||
|
* Author fixes
|
||||||
|
* Makefile.PL: port WriteMakefile1 from Hash::Merge
|
||||||
|
* .travis.yml: update for Xenial VMs
|
||||||
|
* cleanup MANIFEST.SKIP
|
||||||
|
* bump copyright year
|
||||||
|
* SQL::Parser correctly parse VALUES and SET clauses containing function invocations with several arguments
|
||||||
|
patch provided by Edgar J. Holleis
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Apr 7 06:45:08 UTC 2017 - coolo@suse.com
|
Fri Apr 7 06:45:08 UTC 2017 - coolo@suse.com
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-SQL-Statement
|
# spec file for package perl-SQL-Statement
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2020 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -12,18 +12,18 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: perl-SQL-Statement
|
Name: perl-SQL-Statement
|
||||||
Version: 1.412
|
Version: 1.414
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name SQL-Statement
|
%define cpan_name SQL-Statement
|
||||||
Summary: SQL parsing and processing engine
|
Summary: SQL parsing and processing engine
|
||||||
License: Artistic-1.0 or GPL-1.0+
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/SQL-Statement/
|
URL: https://metacpan.org/release/%{cpan_name}
|
||||||
Source0: https://cpan.metacpan.org/authors/id/R/RE/REHSACK/%{cpan_name}-%{version}.tar.gz
|
Source0: https://cpan.metacpan.org/authors/id/R/RE/REHSACK/%{cpan_name}-%{version}.tar.gz
|
||||||
Source1: cpanspec.yml
|
Source1: cpanspec.yml
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
@@ -67,14 +67,14 @@ CSV, XML, and other formats 2) to build your own DBD for a new data source
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
|
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
perl Makefile.PL INSTALLDIRS=vendor
|
||||||
%{__make} %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{__make} test
|
make test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%perl_make_install
|
%perl_make_install
|
||||||
|
|||||||
Reference in New Issue
Block a user