8
0

Compare commits

3 Commits

Author SHA256 Message Date
bb45c045fc Add Gitea build results 2025-08-12 18:16:47 +02:00
c0f6919f3e Accepting request 1233982 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1233982
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Protocol-Redis?expand=0&rev=4
2025-01-01 22:07:39 +00:00
ff8d573e01 Accepting request 1203079 from devel:languages:perl:autoupdate
- updated to 1.0021
   see /usr/share/doc/packages/perl-Protocol-Redis/Changes
  1.0021  03.09.2024 00:00:00
           - Test unknown version excaption implementation
  1.0020  03.09.2024 00:00:00
           - Protocol::Redis implementation should fail on instantiating with unknown version (Grinnz)

OBS-URL: https://build.opensuse.org/request/show/1203079
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Protocol-Redis?expand=0&rev=9
2024-12-31 00:21:22 +00:00
5 changed files with 39 additions and 16 deletions

View File

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

View File

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

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-Protocol-Redis/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-Protocol-Redis)

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Tue Sep 3 05:32:54 UTC 2024 - Tina Müller <timueller+perl@suse.de>
- updated to 1.0021
see /usr/share/doc/packages/perl-Protocol-Redis/Changes
1.0021 03.09.2024 00:00:00
- Test unknown version excaption implementation
1.0020 03.09.2024 00:00:00
- Protocol::Redis implementation should fail on instantiating with unknown version (Grinnz)
-------------------------------------------------------------------
Thu Dec 26 03:12:25 UTC 2019 - <timueller+perl@suse.de>

View File

@@ -1,7 +1,7 @@
#
# spec file for package perl-Protocol-Redis
#
# Copyright (c) 2019 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
@@ -16,18 +16,17 @@
#
Name: perl-Protocol-Redis
Version: 1.0011
Release: 0
%define cpan_name Protocol-Redis
Summary: Redis protocol parser/encoder with asynchronous capabilities
Name: perl-Protocol-Redis
Version: 1.0021
Release: 0
License: Artistic-1.0 OR GPL-1.0-or-later
Group: Development/Libraries/Perl
Url: https://metacpan.org/release/%{cpan_name}
Summary: Redis protocol parser/encoder with asynchronous capabilities
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/U/UN/UNDEF/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
Source100: README.md
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Test::More) >= 0.94
@@ -39,12 +38,13 @@ Redis protocol parser/encoder with asynchronous capabilities and at
http://redis.io/topics/pipelining support.
%prep
%setup -q -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}-%{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
make %{?_smp_mflags}
%make_build
%check
make test
@@ -55,7 +55,6 @@ make test
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes
%doc Changes examples
%changelog