8
0

Compare commits

5 Commits

Author SHA256 Message Date
7dd4990126 Add Gitea build results 2025-08-12 18:17:03 +02:00
d76c9f8511 Accepting request 1197310 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1197310
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Set-Tiny?expand=0&rev=3
2024-08-29 13:43:56 +00:00
c597a538c0 Accepting request 1195934 from devel:languages:perl:autoupdate
- updated to 0.60.0 (0.06)
   see /usr/share/doc/packages/perl-Set-Tiny/Changes
  0.06    2024-08-20
    - Revised Dist::Zilla packaging
    - Reduced minumum perl version
    - Fixed contains method to always return a single boolean value.

OBS-URL: https://build.opensuse.org/request/show/1195934
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Set-Tiny?expand=0&rev=5
2024-08-29 07:05:18 +00:00
ced904cdb5 Accepting request 1183470 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1183470
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Set-Tiny?expand=0&rev=2
2024-06-27 14:02:56 +00:00
Frank Schreiner
44fb9122b0 Accepting request 1182912 from devel:languages:perl:autoupdate
- updated to 0.50.0 (0.05)
   see /usr/share/doc/packages/perl-Set-Tiny/Changes
  0.05    2024-06-17
          Migration from Makefile.PL to Dist::Zilla.
          Enabled warnings pragma.
          Replaced test files with Dist::Zilla extensions.
          Minor refactorings to more "modern" Perl.
          Forcing minimum Perl version.

OBS-URL: https://build.opensuse.org/request/show/1182912
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Set-Tiny?expand=0&rev=3
2024-06-26 16:18:40 +00:00
5 changed files with 58 additions and 20 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-Set-Tiny/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-Set-Tiny)

View File

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

3
Set-Tiny-0.06.tar.gz Normal file
View File

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

View File

@@ -1,3 +1,27 @@
-------------------------------------------------------------------
Wed Aug 21 05:30:59 UTC 2024 - Tina Müller <timueller+perl@suse.de>
- updated to 0.60.0 (0.06)
see /usr/share/doc/packages/perl-Set-Tiny/Changes
0.06 2024-08-20
- Revised Dist::Zilla packaging
- Reduced minumum perl version
- Fixed contains method to always return a single boolean value.
-------------------------------------------------------------------
Sun Jun 23 16:47:50 UTC 2024 - Tina Müller <tina.mueller@suse.com>
- updated to 0.50.0 (0.05)
see /usr/share/doc/packages/perl-Set-Tiny/Changes
0.05 2024-06-17
Migration from Makefile.PL to Dist::Zilla.
Enabled warnings pragma.
Replaced test files with Dist::Zilla extensions.
Minor refactorings to more "modern" Perl.
Forcing minimum Perl version.
-------------------------------------------------------------------
Sun May 10 10:38:26 UTC 2020 - Frank Schreiner <FSchreiner@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package perl-Set-Tiny
#
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
# 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
@@ -12,25 +12,27 @@
# 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-Set-Tiny
Version: 0.04
Release: 0
%define cpan_name Set-Tiny
Name: perl-Set-Tiny
Version: 0.60.0
Release: 0
# 0.06 -> normalize -> 0.60.0
%define cpan_version 0.06
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Simple sets of strings
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Set-Tiny/
Source0: http://www.cpan.org/authors/id/T/TR/TRENDELS/%{cpan_name}-%{version}.tar.gz
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/H/HA/HAARG/%{cpan_name}-%{cpan_version}.tar.gz
Source100: README.md
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
Provides: perl(Set::Tiny) = %{verison}
BuildRequires: perl(Test::More) >= 0.88
Provides: perl(Set::Tiny) = %{version}
%undefine __perllib_provides
%{perl_requires}
%description
@@ -42,14 +44,14 @@ For a more complete implementation of mathematical set theory, see
Set::Scalar. For sets of arbitrary objects, see Set::Object.
%prep
%setup -q -n %{cpan_name}-%{version}
%autosetup -n %{cpan_name}-%{cpan_version}
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}
perl Makefile.PL INSTALLDIRS=vendor
%make_build
%check
%{__make} test
make test
%install
%perl_make_install
@@ -57,7 +59,7 @@ Set::Scalar. For sets of arbitrary objects, see Set::Object.
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes examples README
%license LICENSE
%changelog