Accepting request 824661 from devel:languages:perl:autoupdate

- updated to 0.819
   see /usr/share/doc/packages/perl-Rose-DB-Object/Changes
  0.819 (06.16.2020) - John Siracusa <siracusa@gmail.com>
      * Attempt to fix a failing test by adding a workaround for an undef
        return value from crypt().
  0.818 (06.08.2020) - John Siracusa <siracusa@gmail.com>
      * Fixed tests that were failing due to "future" dates that are
        now in the past (RT 132782)
  0.817 (04.05.2020) - John Siracusa <siracusa@gmail.com>
      * Added missing module load in Rose::DB::Object::Metadata::Util
        (RT 132300)
  0.816 (04.03.2020) - John Siracusa <siracusa@gmail.com>
      * Updated to support DBD::Pg 3.8.0 and later.

OBS-URL: https://build.opensuse.org/request/show/824661
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Rose-DB-Object?expand=0&rev=4
This commit is contained in:
2020-08-08 11:45:18 +00:00
committed by Git OBS Bridge
parent 9e3456f838
commit bdac2dbecc
4 changed files with 42 additions and 25 deletions

View File

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

View File

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

View File

@@ -1,3 +1,21 @@
-------------------------------------------------------------------
Wed Jun 17 03:15:26 UTC 2020 - Tina Müller <timueller+perl@suse.de>
- updated to 0.819
see /usr/share/doc/packages/perl-Rose-DB-Object/Changes
0.819 (06.16.2020) - John Siracusa <siracusa@gmail.com>
* Attempt to fix a failing test by adding a workaround for an undef
return value from crypt().
0.818 (06.08.2020) - John Siracusa <siracusa@gmail.com>
* Fixed tests that were failing due to "future" dates that are
now in the past (RT 132782)
0.817 (04.05.2020) - John Siracusa <siracusa@gmail.com>
* Added missing module load in Rose::DB::Object::Metadata::Util
(RT 132300)
0.816 (04.03.2020) - John Siracusa <siracusa@gmail.com>
* Updated to support DBD::Pg 3.8.0 and later.
-------------------------------------------------------------------
Thu Apr 16 19:42:24 UTC 2015 - coolo@suse.com

View File

@@ -1,7 +1,7 @@
#
# spec file for package perl-Rose-DB-Object
#
# Copyright (c) 2015 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
@@ -12,19 +12,19 @@
# license that conforms to the Open Source Definition (Version 1.9)
# 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-Rose-DB-Object
Version: 0.815
Version: 0.819
Release: 0
%define cpan_name Rose-DB-Object
Summary: Extensible, high performance object-relational mapper (ORM)
License: Artistic-1.0 or GPL-1.0+
License: Artistic-1.0 OR GPL-1.0-or-later
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Rose-DB-Object/
Source0: http://www.cpan.org/authors/id/J/JS/JSIRACUSA/%{cpan_name}-%{version}.tar.gz
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/J/JS/JSIRACUSA/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -35,7 +35,7 @@ BuildRequires: perl(Clone) >= 0.29
BuildRequires: perl(DBI) >= 1.40
BuildRequires: perl(DateTime)
BuildRequires: perl(List::MoreUtils)
BuildRequires: perl(Rose::DB) >= 0.763
BuildRequires: perl(Rose::DB) >= 0.782
BuildRequires: perl(Rose::DateTime::Util) >= 0.532
BuildRequires: perl(Rose::Object) >= 0.854
BuildRequires: perl(Time::Clock) >= 1.00
@@ -44,36 +44,35 @@ Requires: perl(Clone) >= 0.29
Requires: perl(DBI) >= 1.40
Requires: perl(DateTime)
Requires: perl(List::MoreUtils)
Requires: perl(Rose::DB) >= 0.763
Requires: perl(Rose::DB) >= 0.782
Requires: perl(Rose::DateTime::Util) >= 0.532
Requires: perl(Rose::Object) >= 0.854
Requires: perl(Time::Clock) >= 1.00
%{perl_requires}
%description
the Rose::DB::Object manpage is a base class for objects that encapsulate a
single row in a database table. the Rose::DB::Object manpage-derived
objects are sometimes simply called "the Rose::DB::Object manpage objects"
in this documentation for the sake of brevity, but be assured that
derivation is the only reasonable way to use this class.
Rose::DB::Object is a base class for objects that encapsulate a single row
in a database table. Rose::DB::Object-derived objects are sometimes simply
called "Rose::DB::Object objects" in this documentation for the sake of
brevity, but be assured that derivation is the only reasonable way to use
this class.
the Rose::DB::Object manpage inherits from, and follows the conventions of,
the Rose::Object manpage. See the the Rose::Object manpage documentation
for more information.
Rose::DB::Object inherits from, and follows the conventions of,
Rose::Object. See the Rose::Object documentation for more information.
For an informal overview of this module distribution, consult the the
Rose::DB::Object::Tutorial manpage.
For an informal overview of this module distribution, consult the
Rose::DB::Object::Tutorial.
%prep
%setup -q -n %{cpan_name}-%{version}
find . -type f -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} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}
perl Makefile.PL INSTALLDIRS=vendor
make %{?_smp_mflags}
%check
%{__make} test
make test
%install
%perl_make_install