Compare commits
3 Commits
Author | SHA256 | Date | |
---|---|---|---|
48d4aee63d | |||
d2ff5c8463 | |||
1ac158e694 |
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:782994f13f49555840538494f8406b0bf2558f533ccda86c8d2b95e2301087f4
|
|
||||||
size 38205
|
|
3
DBIx-Connector-0.60.tar.gz
Normal file
3
DBIx-Connector-0.60.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ea783137c54b60ceac04ce5aa962427b21209e5593165ec7d1dde7cbe5d237b4
|
||||||
|
size 38508
|
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)
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
@@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 21 05:32:30 UTC 2024 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
- updated to 0.600.0 (0.60)
|
||||||
|
see /usr/share/doc/packages/perl-DBIx-Connector/Changes
|
||||||
|
|
||||||
|
0.60 Mon 21 Oct 2024
|
||||||
|
- MariaDB support (Issue #50)
|
||||||
|
- Fix for leaking $@ from driver constructor (Issue #51)
|
||||||
|
- Fix for swallowing driver compile errors
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 3 03:06:57 UTC 2023 - Tina Müller <timueller+perl@suse.de>
|
Mon Jul 3 03:06:57 UTC 2023 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-DBIx-Connector
|
# spec file for package perl-DBIx-Connector
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2024 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
|
||||||
@@ -18,18 +18,34 @@
|
|||||||
|
|
||||||
%define cpan_name DBIx-Connector
|
%define cpan_name DBIx-Connector
|
||||||
Name: perl-DBIx-Connector
|
Name: perl-DBIx-Connector
|
||||||
Version: 0.59
|
Version: 0.600.0
|
||||||
Release: 0
|
Release: 0
|
||||||
|
# 0.60 -> normalize -> 0.600.0
|
||||||
|
%define cpan_version 0.60
|
||||||
License: Artistic-1.0 OR GPL-1.0-or-later
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||||
Summary: Fast, safe DBI connection and transaction management
|
Summary: Fast, safe DBI connection and transaction management
|
||||||
URL: https://metacpan.org/release/%{cpan_name}
|
URL: https://metacpan.org/release/%{cpan_name}
|
||||||
Source0: https://cpan.metacpan.org/authors/id/A/AR/ARISTOTLE/%{cpan_name}-%{version}.tar.gz
|
Source0: https://cpan.metacpan.org/authors/id/A/AR/ARISTOTLE/%{cpan_name}-%{cpan_version}.tar.gz
|
||||||
Source1: cpanspec.yml
|
Source1: cpanspec.yml
|
||||||
|
Source100: README.md
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(DBI) >= 1.605
|
BuildRequires: perl(DBI) >= 1.605
|
||||||
Requires: perl(DBI) >= 1.605
|
Requires: perl(DBI) >= 1.605
|
||||||
|
Provides: perl(DBIx::Connector) = %{version}
|
||||||
|
Provides: perl(DBIx::Connector::Driver) = %{version}
|
||||||
|
Provides: perl(DBIx::Connector::Driver::Firebird) = %{version}
|
||||||
|
Provides: perl(DBIx::Connector::Driver::MSSQL) = %{version}
|
||||||
|
Provides: perl(DBIx::Connector::Driver::MariaDB) = %{version}
|
||||||
|
Provides: perl(DBIx::Connector::Driver::Oracle) = %{version}
|
||||||
|
Provides: perl(DBIx::Connector::Driver::Pg) = %{version}
|
||||||
|
Provides: perl(DBIx::Connector::Driver::SQLite) = %{version}
|
||||||
|
Provides: perl(DBIx::Connector::Driver::mysql) = %{version}
|
||||||
|
Provides: perl(DBIx::Connector::RollbackError) = 0.58
|
||||||
|
Provides: perl(DBIx::Connector::SvpRollbackError) = 0.58
|
||||||
|
Provides: perl(DBIx::Connector::TxnRollbackError) = 0.58
|
||||||
|
%undefine __perllib_provides
|
||||||
Recommends: perl(DBI) >= 1.614
|
Recommends: perl(DBI) >= 1.614
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
|
|
||||||
@@ -47,7 +63,7 @@ You might be familiar with Apache::DBI and with the DBI's
|
|||||||
does a much better job. How is it different? I'm glad you asked!
|
does a much better job. How is it different? I'm glad you asked!
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n %{cpan_name}-%{version}
|
%autosetup -n %{cpan_name}-%{cpan_version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
perl Makefile.PL INSTALLDIRS=vendor
|
perl Makefile.PL INSTALLDIRS=vendor
|
||||||
|
Reference in New Issue
Block a user