forked from pool/perl-DBIx-Class
Compare commits
18 Commits
b6fffda2c4
...
main
Author | SHA256 | Date | |
---|---|---|---|
6a26478ea7 | |||
32e445b2c2 | |||
3eb8aa9fce | |||
2ace72d14c | |||
|
856914ae2a | ||
c1da147c8e | |||
d78f49aece | |||
11ee27a989 | |||
|
285eed43d5 | ||
7c2f784525 | |||
|
f451aedd21 | ||
cd228a1201 | |||
51fd9167c3 | |||
|
e5238407b1 | ||
6a27e5a09b | |||
71c92268d7 | |||
|
b8944bd330 | ||
|
132c77c664 |
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:4049afd175e315ebcab945b19030aec40bcec46cc5611b0286a5a267ca7181ef
|
|
||||||
size 860243
|
|
3
DBIx-Class-0.082844.tar.gz
Normal file
3
DBIx-Class-0.082844.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e0784e3861a197ad5aa17396f18901f0aaa8bab04a4330cb50038337ec30ca7f
|
||||||
|
size 879614
|
12
README.md
Normal file
12
README.md
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
|
||||||
|
## Build Results
|
||||||
|
|
||||||
|
Current state of perl in openSUSE:Factory is
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
The current state of perl in the devel project build (devel:languages:perl)
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
20
cpanspec.yml
20
cpanspec.yml
@@ -1,21 +1,7 @@
|
|||||||
---
|
---
|
||||||
#description_paragraphs: 3
|
|
||||||
#no_testing: broken upstream
|
|
||||||
#sources:
|
|
||||||
# - source1
|
|
||||||
# - source2
|
|
||||||
#patches:
|
|
||||||
# foo.patch: -p1
|
|
||||||
# bar.patch:
|
|
||||||
preamble: |-
|
preamble: |-
|
||||||
# workaround a spurious test failure in "skipped" t/cdbi/mk_group_accessors.t
|
# workaround a spurious test failure in "skipped" t/cdbi/mk_group_accessors.t
|
||||||
BuildRequires: perl(Class::DBI)
|
BuildRequires: perl(Class::DBI)
|
||||||
#post_prep: |-
|
post_prep:
|
||||||
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s, *,,g'`
|
sed -i -e 's/use inc::Module::Install/use lib q[.];\nuse inc::Module::Install/' Makefile.PL
|
||||||
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL
|
|
||||||
#post_install: |-
|
|
||||||
# sed on %{name}.files
|
|
||||||
#license: SUSE-NonFree
|
|
||||||
#skip_noarch: 1
|
|
||||||
#custom_build: -
|
|
||||||
#./Build build flags=%{?_smp_mflags} --myflag
|
|
||||||
|
@@ -1,3 +1,91 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 22 21:20:22 UTC 2025 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
- updated to 0.082844
|
||||||
|
see /usr/share/doc/packages/perl-DBIx-Class/Changes
|
||||||
|
|
||||||
|
0.082844 2025-01-16 13:00 (UTC) 😒
|
||||||
|
* Misc
|
||||||
|
- Put the tiresome discussion of factors and buses under a cloche
|
||||||
|
https://is.gd/2025_metacpan_busfactor
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 18 03:06:27 UTC 2022 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
- updated to 0.082843
|
||||||
|
see /usr/share/doc/packages/perl-DBIx-Class/Changes
|
||||||
|
|
||||||
|
0.082843 2022-05-17 10:50 (UTC)
|
||||||
|
* Fixes
|
||||||
|
- Adjust tests to account for DBD::SQLite's column_info() no longer
|
||||||
|
being case-preserving in recent versions
|
||||||
|
- Fix t/storage/replicated.t relying on no-longer-available module
|
||||||
|
- Adjust t/53lean_startup.t to work around spurious changes in
|
||||||
|
Perl5 core (GH#143)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 17 03:10:01 UTC 2020 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
- updated to 0.082842
|
||||||
|
see /usr/share/doc/packages/perl-DBIx-Class/Changes
|
||||||
|
|
||||||
|
0.082842 2020-06-16 20:10 (UTC)
|
||||||
|
* New Features
|
||||||
|
- An on_connect rebase_sqlmaker call allowing experimentation with
|
||||||
|
non-core SQL generators on a per-$schema-instance basis
|
||||||
|
https://is.gd/DBIC_rebase_sqlmaker
|
||||||
|
- Automatically detect and use multi-column IN on recent versions of
|
||||||
|
libsqlite: ... WHERE ( foo, bar ) IN ( SELECT foo, bar FROM ... )
|
||||||
|
|
||||||
|
* Fixes
|
||||||
|
- Fix silent failure to retrieve a primary key (RT#80283) or worse:
|
||||||
|
returning an incorrect value (RT#115381) in case a rdbms-side autoinc
|
||||||
|
column is declared as PK with the is_auto_increment attribute unset
|
||||||
|
- Fix overly-aggressive condition unrolling, corrupting custom ops with
|
||||||
|
array arguments (RT#132390)
|
||||||
|
- Fix docs on how to properly use Moo(se) in ResultSet's, and fix a
|
||||||
|
corner case of ->count not functioning properly when the old recipe
|
||||||
|
was being used (GH#105)
|
||||||
|
- Fix incorrect ::Storage->_ping() behavior under Sybase (RT#114214)
|
||||||
|
- Work around breakage in Hash::Merge by soft-requiring Clone as part
|
||||||
|
of the replicated subsystem (RT#124321)
|
||||||
|
|
||||||
|
* Misc
|
||||||
|
- DBIC_TRACE_PROFILE=... now uses a ::Storage::Statistics subclass
|
||||||
|
DBIx::Class::Storage::Debug::PrettyTrace which properly ships as a
|
||||||
|
part of this distrinbution
|
||||||
|
- Switch out SQL::Abstract dependency with a slower moving dist
|
||||||
|
- Remove Data::Page dependency by inlining its entirety into the core
|
||||||
|
DBIx::Class::ResultSet::Pager (RT#130686)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 7 15:19:50 UTC 2018 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 0.082841
|
||||||
|
see /usr/share/doc/packages/perl-DBIx-Class/Changes
|
||||||
|
|
||||||
|
|
||||||
|
0.082841 2018-01-29 08:10 (UTC)
|
||||||
|
* Test-suite fixup changes only - no reason to upgrade, wait for 0.082850
|
||||||
|
|
||||||
|
* Misc
|
||||||
|
- Unblock DBD::SQLite (RT#118395)
|
||||||
|
- Fix missing ORDER BY leading to failures of t/prefetch/grouped.t
|
||||||
|
under upcoming libsqlite (RT#117271)
|
||||||
|
- Temporarily disable a non-critical portion of test failing on
|
||||||
|
upcoming libsqlite, proper fix coming in 0.082850 (RT#119845)
|
||||||
|
- Add test workaround for ( largely irrelevant ) RT#120129
|
||||||
|
- Add temporary test-workaround for a devrel of DBD::SQLite
|
||||||
|
RT#124227 / https://twitter.com/dbix_class/status/957271153751527424
|
||||||
|
- Add workaround for one of the most damaging "improvements" made
|
||||||
|
during the modern-perl-era (RT#120827)
|
||||||
|
- Fix malformed README file encoding (RT#122028)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 4 06:35:01 UTC 2017 - coolo@suse.com
|
||||||
|
|
||||||
|
- patch the Makefile to build with perl 5.26
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jun 23 06:07:55 UTC 2016 - coolo@suse.com
|
Thu Jun 23 06:07:55 UTC 2016 - coolo@suse.com
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-DBIx-Class
|
# spec file for package perl-DBIx-Class
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2025 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,22 +12,21 @@
|
|||||||
# 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-DBIx-Class
|
|
||||||
Version: 0.082840
|
|
||||||
Release: 0
|
|
||||||
%define cpan_name DBIx-Class
|
%define cpan_name DBIx-Class
|
||||||
|
Name: perl-DBIx-Class
|
||||||
|
Version: 0.082844
|
||||||
|
Release: 0
|
||||||
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||||
Summary: Extensible and flexible object <-> relational mapper
|
Summary: Extensible and flexible object <-> relational mapper
|
||||||
License: Artistic-1.0 or GPL-1.0+
|
URL: https://metacpan.org/release/%{cpan_name}
|
||||||
Group: Development/Libraries/Perl
|
Source0: https://cpan.metacpan.org/authors/id/R/RI/RIBASUSHI/%{cpan_name}-%{version}.tar.gz
|
||||||
Url: http://search.cpan.org/dist/DBIx-Class/
|
|
||||||
Source0: http://www.cpan.org/authors/id/R/RI/RIBASUSHI/%{cpan_name}-%{version}.tar.gz
|
|
||||||
Source1: cpanspec.yml
|
Source1: cpanspec.yml
|
||||||
|
Source100: README.md
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(Class::Accessor::Grouped) >= 0.10012
|
BuildRequires: perl(Class::Accessor::Grouped) >= 0.10012
|
||||||
@@ -38,8 +37,8 @@ BuildRequires: perl(Context::Preserve) >= 0.01
|
|||||||
BuildRequires: perl(DBD::SQLite) >= 1.29
|
BuildRequires: perl(DBD::SQLite) >= 1.29
|
||||||
BuildRequires: perl(DBI) >= 1.57
|
BuildRequires: perl(DBI) >= 1.57
|
||||||
BuildRequires: perl(Data::Dumper::Concise) >= 2.020
|
BuildRequires: perl(Data::Dumper::Concise) >= 2.020
|
||||||
BuildRequires: perl(Data::Page) >= 2.00
|
|
||||||
BuildRequires: perl(Devel::GlobalDestruction) >= 0.09
|
BuildRequires: perl(Devel::GlobalDestruction) >= 0.09
|
||||||
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.59
|
||||||
BuildRequires: perl(File::Temp) >= 0.22
|
BuildRequires: perl(File::Temp) >= 0.22
|
||||||
BuildRequires: perl(Hash::Merge) >= 0.12
|
BuildRequires: perl(Hash::Merge) >= 0.12
|
||||||
BuildRequires: perl(MRO::Compat) >= 0.12
|
BuildRequires: perl(MRO::Compat) >= 0.12
|
||||||
@@ -47,11 +46,11 @@ BuildRequires: perl(Module::Find) >= 0.07
|
|||||||
BuildRequires: perl(Moo) >= 2.000
|
BuildRequires: perl(Moo) >= 2.000
|
||||||
BuildRequires: perl(Package::Stash) >= 0.28
|
BuildRequires: perl(Package::Stash) >= 0.28
|
||||||
BuildRequires: perl(Path::Class) >= 0.18
|
BuildRequires: perl(Path::Class) >= 0.18
|
||||||
BuildRequires: perl(SQL::Abstract) >= 1.81
|
BuildRequires: perl(SQL::Abstract::Classic) >= 1.91
|
||||||
BuildRequires: perl(Scope::Guard) >= 0.03
|
BuildRequires: perl(Scope::Guard) >= 0.03
|
||||||
BuildRequires: perl(Sub::Name) >= 0.04
|
BuildRequires: perl(Sub::Name) >= 0.04
|
||||||
BuildRequires: perl(Test::Deep) >= 0.101
|
BuildRequires: perl(Test::Deep) >= 0.101
|
||||||
BuildRequires: perl(Test::Exception) >= 0.310000
|
BuildRequires: perl(Test::Exception) >= 0.31
|
||||||
BuildRequires: perl(Test::More) >= 0.94
|
BuildRequires: perl(Test::More) >= 0.94
|
||||||
BuildRequires: perl(Test::Warn) >= 0.21
|
BuildRequires: perl(Test::Warn) >= 0.21
|
||||||
BuildRequires: perl(Text::Balanced) >= 2.00
|
BuildRequires: perl(Text::Balanced) >= 2.00
|
||||||
@@ -64,14 +63,13 @@ Requires: perl(Config::Any) >= 0.20
|
|||||||
Requires: perl(Context::Preserve) >= 0.01
|
Requires: perl(Context::Preserve) >= 0.01
|
||||||
Requires: perl(DBI) >= 1.57
|
Requires: perl(DBI) >= 1.57
|
||||||
Requires: perl(Data::Dumper::Concise) >= 2.020
|
Requires: perl(Data::Dumper::Concise) >= 2.020
|
||||||
Requires: perl(Data::Page) >= 2.00
|
|
||||||
Requires: perl(Devel::GlobalDestruction) >= 0.09
|
Requires: perl(Devel::GlobalDestruction) >= 0.09
|
||||||
Requires: perl(Hash::Merge) >= 0.12
|
Requires: perl(Hash::Merge) >= 0.12
|
||||||
Requires: perl(MRO::Compat) >= 0.12
|
Requires: perl(MRO::Compat) >= 0.12
|
||||||
Requires: perl(Module::Find) >= 0.07
|
Requires: perl(Module::Find) >= 0.07
|
||||||
Requires: perl(Moo) >= 2.000
|
Requires: perl(Moo) >= 2.000
|
||||||
Requires: perl(Path::Class) >= 0.18
|
Requires: perl(Path::Class) >= 0.18
|
||||||
Requires: perl(SQL::Abstract) >= 1.81
|
Requires: perl(SQL::Abstract::Classic) >= 1.91
|
||||||
Requires: perl(Scope::Guard) >= 0.03
|
Requires: perl(Scope::Guard) >= 0.03
|
||||||
Requires: perl(Sub::Name) >= 0.04
|
Requires: perl(Sub::Name) >= 0.04
|
||||||
Requires: perl(Text::Balanced) >= 2.00
|
Requires: perl(Text::Balanced) >= 2.00
|
||||||
@@ -117,15 +115,19 @@ generally made to CPAN before the branch for the next release is merged
|
|||||||
back to trunk for a major release.
|
back to trunk for a major release.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%autosetup -n %{cpan_name}-%{version} -p1
|
||||||
find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
|
|
||||||
|
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -path "*/scripts/*" ! -name "configure" -print0 | xargs -0 chmod 644
|
||||||
|
# MANUAL BEGIN
|
||||||
|
sed -i -e 's/use inc::Module::Install/use lib q[.];\nuse inc::Module::Install/' Makefile.PL
|
||||||
|
# MANUAL END
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
PERL_USE_UNSAFE_INC=1 perl Makefile.PL INSTALLDIRS=vendor
|
||||||
%{__make} %{?_smp_mflags}
|
%make_build
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{__make} test
|
make test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%perl_make_install
|
%perl_make_install
|
||||||
@@ -133,7 +135,7 @@ find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
|
|||||||
%perl_gen_filelist
|
%perl_gen_filelist
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
%doc AUTHORS Changes examples README
|
||||||
%doc AUTHORS Changes examples LICENSE README
|
%license LICENSE
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Reference in New Issue
Block a user