Sync from SUSE:SLFO:Main perl-Package-Stash-XS revision 10ce58c43902fa29be5c1f3ae1d317dc

This commit is contained in:
Adrian Schröter 2024-05-03 18:35:51 +02:00
commit d272bdef0f
5 changed files with 181 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

BIN
Package-Stash-XS-0.30.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

28
cpanspec.yml Normal file
View File

@ -0,0 +1,28 @@
---
#description_paragraphs: 3
#description: |-
# override description from CPAN
#summary: override summary from CPAN
#no_testing: broken upstream
#sources:
# - source1
# - source2
#patches:
# foo.patch: -p1
# bar.patch:
#preamble: |-
# BuildRequires: gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s, *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL
#post_build: |-
# rm unused.files
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module

View File

@ -0,0 +1,68 @@
-------------------------------------------------------------------
Mon Jun 13 03:11:27 UTC 2022 - Tina Müller <timueller+perl@suse.de>
- updated to 0.30
see /usr/share/doc/packages/perl-Package-Stash-XS/Changes
0.30 2022-06-12 20:00:39Z
- misc tooling updates
- fixed redundant argument in sprintf in tests (RT#143205)
-------------------------------------------------------------------
Mon Dec 31 06:26:11 UTC 2018 - Stephan Kulow <coolo@suse.com>
- updated to 0.29
see /usr/share/doc/packages/perl-Package-Stash-XS/Changes
0.29 2018-12-31 03:26:01Z
- quiet compiler warning (Jacques Germishuys, PR #2)
- canonical repository moved to
https://github.com/moose/Package-Stash=XS
-------------------------------------------------------------------
Sat Jul 27 11:58:38 UTC 2013 - coolo@suse.com
- updated to 0.28
- fix test issue (Graham Knop)
- handle magic more correctly in add_symbol and get_or_add_symbol
-------------------------------------------------------------------
Sun Jun 9 14:29:12 UTC 2013 - coolo@suse.com
- updated to 0.26
- internal refactorings to support Package::Anon stashes - this should
work now
- remove outdated perl-Package-Stash-XS-old_Test-More.patch
-------------------------------------------------------------------
Wed Feb 29 15:53:58 CET 2012 - ro@suse.de
- make it build again with old Test::More
-------------------------------------------------------------------
Wed Oct 26 17:55:03 UTC 2011 - tabraham@novell.com
- updated to 0.25
- fix compilation on perl 5.8 (RT#70762)
- updated to 0.24 2011-09-05
- invalid package names (for instance, Foo::Bar) are not allowed
- invalid stash entry names (anything containing ::) are not allowed
- updated to 0.23 2011-08-08
- fix the test for scalar values, again (t0m, rafl)
- disallow assigning globrefs to scalar glob slots (this doesn't
actually make any sense)
-------------------------------------------------------------------
Sat Jun 4 18:47:57 UTC 2011 - lars@linux-schulserver.de
- fix build on distributions with old Test::More module
( perl-Package-Stash-XS-old_Test-More.patch )
-------------------------------------------------------------------
Thu Mar 31 08:12:19 UTC 2011 - coolo@novell.com
- initial package 0.22
* created by cpanspec 1.78.03

View File

@ -0,0 +1,59 @@
#
# spec file for package perl-Package-Stash-XS
#
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%define cpan_name Package-Stash-XS
Name: perl-Package-Stash-XS
Version: 0.30
Release: 0
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Faster and more correct implementation of the Package::Stash API
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Test::Fatal)
BuildRequires: perl(Test::More) >= 0.88
BuildRequires: perl(Test::Needs)
%{perl_requires}
%description
This is a backend for Package::Stash, which provides the functionality in a
way that's less buggy and much faster. It will be used by default if it's
installed, and should be preferred in all environments with a compiler.
%prep
%autosetup -n %{cpan_name}-%{version}
%build
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
%make_build
%check
make test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%doc Changes CONTRIBUTING README
%license LICENSE
%changelog