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,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d96c00dcf45e2becc8e8181df074853d42616f2a660703455d0e0a2741478092
size 42928

3
Mojo-SQLite-3.004.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d9ca9c1f3e8183611638e318b88ad3c0f8ab7e65f6ac72e48bffe51aea03b983
size 40230

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Tue Jul 28 09:47:04 UTC 2020 - Tina Müller <timueller+perl@suse.de>
- 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.
-------------------------------------------------------------------
Fri Oct 4 09:25:08 UTC 2019 - <timueller+perl@suse.de>

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