8
0

Accepting request 823118 from devel:languages:perl:autoupdate

- updated to 3.004
   see /usr/share/doc/packages/perl-Mojo-SQLite/Changes
  3.004     2020-07-22 22:50:43 EDT
    - The Mojo::SQLite::Migrations sqlite attribute and the
      Mojo::SQLite::Transaction db attribute are now weak attributes, increasing
      the required version of Mojolicious to 8.03.
    - Defer loading of Mojo::IOLoop unless the callback compatibility API is
      used.
    - Newly created mojo_migrations tables from Mojo::SQLite::Migrations will use
      a primary key.
    - Recognize -json parameters in queries.

OBS-URL: https://build.opensuse.org/request/show/823118
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Mojo-SQLite?expand=0&rev=24
This commit is contained in:
2020-07-28 13:40:44 +00:00
committed by Git OBS Bridge
parent ee9782c894
commit 330feebcc8
4 changed files with 27 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package perl-Mojo-SQLite
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
Name: perl-Mojo-SQLite
Version: 3.003
Version: 3.004
Release: 0
%define cpan_name Mojo-SQLite
Summary: Tiny Mojolicious wrapper for SQLite
License: Artistic-2.0
Group: Development/Libraries/Perl
Url: https://metacpan.org/release/%{cpan_name}
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/D/DB/DBOOK/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
@@ -34,15 +34,15 @@ BuildRequires: perl(DBD::SQLite) >= 1.64
BuildRequires: perl(DBI) >= 1.627
BuildRequires: perl(Module::Build::Tiny) >= 0.034
BuildRequires: perl(Module::Metadata)
BuildRequires: perl(Mojolicious) >= 7.32
BuildRequires: perl(Mojolicious) >= 8.03
BuildRequires: perl(SQL::Abstract) >= 1.81
BuildRequires: perl(Test::More) >= 0.88
BuildRequires: perl(Test::More) >= 0.96
BuildRequires: perl(URI) >= 1.69
BuildRequires: perl(URI::db) >= 0.15
BuildRequires: perl(URI::file) >= 4.21
Requires: perl(DBD::SQLite) >= 1.64
Requires: perl(DBI) >= 1.627
Requires: perl(Mojolicious) >= 7.32
Requires: perl(Mojolicious) >= 8.03
Requires: perl(SQL::Abstract) >= 1.81
Requires: perl(URI) >= 1.69
Requires: perl(URI::db) >= 0.15
@@ -58,7 +58,7 @@ database schema with migrations.
%prep
%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
perl Build.PL --installdirs=vendor
@@ -73,7 +73,7 @@ perl Build.PL --installdirs=vendor
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes CONTRIBUTING.md examples README
%doc Changes CONTRIBUTING.md examples prereqs.yml README
%license LICENSE
%changelog