Compare commits

3 Commits

Author SHA256 Message Date
752b3ee3df Add Gitea build results 2025-08-12 18:13:18 +02:00
56e2db8be3 Accepting request 1240314 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1240314
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-DBD-CSV?expand=0&rev=41
2025-01-27 19:52:58 +00:00
b2c21edea8 Accepting request 1239656 from devel:languages:perl:autoupdate
- updated to 0.620.0 (0.62)
   see /usr/share/doc/packages/perl-DBD-CSV/ChangeLog
  0.62	- 2025-01-13, H.Merijn Brand
      * doc should not be part of test
  0.61	- 2025-01-13, H.Merijn Brand
      * Replace "use vars" with "our" (James Raspass: PR #9)
      * Specify recommended versions based on known CVE's
      * Update doc for groff-1.24
      * It's 2024
      * Tested with perl-5.40.0
      * It's 2025
      * Add SECURITY.md

OBS-URL: https://build.opensuse.org/request/show/1239656
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-DBD-CSV?expand=0&rev=67
2025-01-26 01:36:49 +00:00
5 changed files with 46 additions and 10 deletions

View File

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

3
DBD-CSV-0.62.tgz Normal file
View File

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

12
README.md Normal file
View File

@@ -0,0 +1,12 @@
## Build Results
Current state of perl in openSUSE:Factory is
![Factory build results](https://br.opensuse.org/status/openSUSE:Factory/perl-DBD-CSV/standard)
The current state of perl in the devel project build (devel:languages:perl)
![Devel project build results](https://br.opensuse.org/status/devel:languages:perl/perl-DBD-CSV)

View File

@@ -1,3 +1,21 @@
-------------------------------------------------------------------
Wed Jan 22 21:09:00 UTC 2025 - Tina Müller <timueller+perl@suse.de>
- updated to 0.620.0 (0.62)
see /usr/share/doc/packages/perl-DBD-CSV/ChangeLog
0.62 - 2025-01-13, H.Merijn Brand
* doc should not be part of test
0.61 - 2025-01-13, H.Merijn Brand
* Replace "use vars" with "our" (James Raspass: PR #9)
* Specify recommended versions based on known CVE's
* Update doc for groff-1.24
* It's 2024
* Tested with perl-5.40.0
* It's 2025
* Add SECURITY.md
-------------------------------------------------------------------
Sat Jan 7 03:06:05 UTC 2023 - Tina Müller <timueller+perl@suse.de>

View File

@@ -1,7 +1,7 @@
#
# spec file for package perl-DBD-CSV
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,13 +18,16 @@
%define cpan_name DBD-CSV
Name: perl-DBD-CSV
Version: 0.60
Version: 0.620.0
Release: 0
# 0.62 -> normalize -> 0.620.0
%define cpan_version 0.62
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: DBI driver for CSV files
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/H/HM/HMBRAND/%{cpan_name}-%{version}.tgz
Source0: https://cpan.metacpan.org/authors/id/H/HM/HMBRAND/%{cpan_name}-%{cpan_version}.tgz
Source1: cpanspec.yml
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
@@ -38,10 +41,12 @@ Requires: perl(DBI) >= 1.628
Requires: perl(SQL::Statement) >= 1.405
Requires: perl(Test::More) >= 0.9
Requires: perl(Text::CSV_XS) >= 1.01
Provides: perl(DBD::CSV) = %{version}
%undefine __perllib_provides
Recommends: perl(DBD::File) >= 0.44
Recommends: perl(DBI) >= 1.643
Recommends: perl(SQL::Statement) >= 1.414
Recommends: perl(Text::CSV_XS) >= 1.49
Recommends: perl(Text::CSV_XS) >= 1.590
%{perl_requires}
%description
@@ -55,8 +60,9 @@ See DBI for details on DBI, SQL::Statement for details on SQL::Statement
and DBD::File for details on the base class DBD::File.
%prep
%autosetup -n %{cpan_name}-%{version}
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
%autosetup -n %{cpan_name}-%{cpan_version} -p1
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -path "*/scripts/*" ! -name "configure" -print0 | xargs -0 chmod 644
%build
perl Makefile.PL INSTALLDIRS=vendor
@@ -71,6 +77,6 @@ make test
%perl_gen_filelist
%files -f %{name}.files
%doc ChangeLog CONTRIBUTING.md examples README
%doc ChangeLog CONTRIBUTING.md examples README SECURITY.md
%changelog