Sync from SUSE:SLFO:Main perl-Tie-IxHash revision 2e535b7fc83f56f3a6952f6aaae36778

This commit is contained in:
Adrian Schröter 2024-05-03 19:03:00 +02:00
commit cd86f7e558
4 changed files with 192 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
Tie-IxHash-1.23.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

105
perl-Tie-IxHash.changes Normal file
View File

@ -0,0 +1,105 @@
-------------------------------------------------------------------
Tue Jun 4 15:22:47 UTC 2013 - coolo@suse.com
- updated to 1.23
New method Clear()
Deleting current element when doing cycle using each will work (test by OLEG, RT#82248)
-------------------------------------------------------------------
Wed Feb 27 06:22:50 UTC 2013 - coolo@suse.com
- update license to new format
-------------------------------------------------------------------
Fri Nov 18 11:09:07 UTC 2011 - coolo@suse.com
- use original .tar.gz
-------------------------------------------------------------------
Tue Nov 30 19:20:55 UTC 2010 - coolo@novell.com
- switch to perl_requires macro
-------------------------------------------------------------------
Mon Nov 29 18:31:22 UTC 2010 - coolo@novell.com
- remove /var/adm/perl-modules
-------------------------------------------------------------------
Tue Oct 19 15:36:37 UTC 2010 - coolo@novell.com
- add perl as explicit buildrequire
-------------------------------------------------------------------
Thu Mar 4 14:47:21 CET 2010 - anicka@suse.cz
- update to 1.22
* Build.PL added
* Better META.yml
* Distribution upgrade
-------------------------------------------------------------------
Sun Jan 10 15:43:32 CET 2010 - jengelh@medozas.de
- enable parallel build
-------------------------------------------------------------------
Wed Jan 25 21:39:59 CET 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
-------------------------------------------------------------------
Wed Sep 28 22:16:30 CEST 2005 - dmueller@suse.de
- add norootforbuild
-------------------------------------------------------------------
Fri Aug 22 15:54:00 CEST 2003 - mjancar@suse.cz
- require the perl version we build with
-------------------------------------------------------------------
Fri Jul 18 13:19:38 CEST 2003 - poeml@suse.de
- use install_vendor and new %perl_process_packlist macro
-------------------------------------------------------------------
Tue Jun 17 01:30:15 CEST 2003 - ro@suse.de
- added directory to filelist
-------------------------------------------------------------------
Mon May 19 12:22:58 CEST 2003 - ro@suse.de
- remove perllocal.pod
-------------------------------------------------------------------
Tue May 13 01:41:07 CEST 2003 - ro@suse.de
- use defattr
-------------------------------------------------------------------
Thu Aug 8 18:51:27 CEST 2002 - mls@suse.de
- use sitearch macro
-------------------------------------------------------------------
Tue Jul 2 17:40:06 MEST 2002 - mls@suse.de
- remove race in .packlist generation
-------------------------------------------------------------------
Tue Nov 7 12:50:24 CET 2000 - ro@suse.de
- renamed package perl_tie to perl-Tie-IxHash
-------------------------------------------------------------------
Mon Sep 25 14:22:02 CEST 2000 - ro@suse.de
- fixed filelist
-------------------------------------------------------------------
Mon Sep 25 14:05:25 CEST 2000 - ro@suse.de
- created package

61
perl-Tie-IxHash.spec Normal file
View File

@ -0,0 +1,61 @@
#
# spec file for package perl-Tie-IxHash
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/
#
Name: perl-Tie-IxHash
Version: 1.23
Release: 0
%define cpan_name Tie-IxHash
Summary: ordered associative arrays for Perl
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Tie-IxHash/
Source: http://www.cpan.org/authors/id/C/CH/CHORNY/%{cpan_name}-%{version}.tar.gz
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Module::Build)
#BuildRequires: perl(Tie::IxHash)
%{perl_requires}
%description
This Perl module implements Perl hashes that preserve the order in which
the hash elements were added. The order is not affected when values
corresponding to existing keys in the IxHash are changed. The elements can
also be set to any arbitrary supplied order. The familiar perl array
operations can also be performed on the IxHash.
%prep
%setup -q -n %{cpan_name}-%{version}
%build
%{__perl} Build.PL installdirs=vendor
./Build build flags=%{?_smp_mflags}
%check
./Build test
%install
./Build install destdir=%{buildroot} create_packlist=0
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes README
%changelog