Compare commits

5 Commits

Author SHA256 Message Date
c26046fcfc Add Gitea build results 2025-08-12 18:17:58 +02:00
a3db43e2ff Accepting request 1190265 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1190265
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Test-Without-Module?expand=0&rev=9
2024-07-31 11:28:15 +00:00
fd73c30fad Accepting request 1187506 from devel:languages:perl:autoupdate
- updated to 0.230.0 (0.23)
   see /usr/share/doc/packages/perl-Test-Without-Module/Changes
  0.23 2024-07-14
    - Lower minimum required Perl version back to 5.006, this addresses GH #5

OBS-URL: https://build.opensuse.org/request/show/1187506
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Test-Without-Module?expand=0&rev=17
2024-07-29 13:06:50 +00:00
f44864f666 Accepting request 1186437 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1186437
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Test-Without-Module?expand=0&rev=8
2024-07-10 14:47:59 +00:00
e2a632396e Accepting request 1185880 from devel:languages:perl:autoupdate
- updated to 0.220.0 (0.22)
   see /usr/share/doc/packages/perl-Test-Without-Module/Changes
  0.22 2024-07-05
    - Fix test suite to not skip a failing test

OBS-URL: https://build.opensuse.org/request/show/1185880
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Test-Without-Module?expand=0&rev=15
2024-07-09 15:26:54 +00:00
5 changed files with 46 additions and 9 deletions

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-Test-Without-Module/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-Test-Without-Module)

BIN
Test-Without-Module-0.21.tar.gz (Stored with Git LFS)

Binary file not shown.

BIN
Test-Without-Module-0.23.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,3 +1,21 @@
-------------------------------------------------------------------
Mon Jul 15 05:30:03 UTC 2024 - Tina Müller <timueller+perl@suse.de>
- updated to 0.230.0 (0.23)
see /usr/share/doc/packages/perl-Test-Without-Module/Changes
0.23 2024-07-14
- Lower minimum required Perl version back to 5.006, this addresses GH #5
-------------------------------------------------------------------
Sat Jul 6 05:29:00 UTC 2024 - Tina Müller <timueller+perl@suse.de>
- updated to 0.220.0 (0.22)
see /usr/share/doc/packages/perl-Test-Without-Module/Changes
0.22 2024-07-05
- Fix test suite to not skip a failing test
-------------------------------------------------------------------
Sun Dec 11 03:07:14 UTC 2022 - Tina Müller <timueller+perl@suse.de>

View File

@@ -1,7 +1,7 @@
#
# spec file for package perl-Test-Without-Module
#
# Copyright (c) 2022 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,16 +18,21 @@
%define cpan_name Test-Without-Module
Name: perl-Test-Without-Module
Version: 0.21
Version: 0.230.0
Release: 0
License: Artistic-1.0 OR GPL-1.0-or-later
# 0.23 -> normalize -> 0.230.0
%define cpan_version 0.23
License: Artistic-2.0
Summary: Test fallback behaviour in absence of modules
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/C/CO/CORION/%{cpan_name}-%{version}.tar.gz
Source0: https://cpan.metacpan.org/authors/id/C/CO/CORION/%{cpan_name}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
Provides: perl(Test::Without::Module) = %{version}
%undefine __perllib_provides
%{perl_requires}
%description
@@ -36,8 +41,9 @@ though they are installed. This is mostly useful for testing modules that
have a fallback when a certain dependency module is not installed.
%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}
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
@@ -53,5 +59,6 @@ make test
%files -f %{name}.files
%doc Changes README README.mkdn
%license LICENSE
%changelog