Accepting request 66687 from devel:languages:perl

Accepted submit request 66687 from user babelworx

OBS-URL: https://build.opensuse.org/request/show/66687
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Algorithm-CheckDigits?expand=0&rev=1
This commit is contained in:
Sascha Peilicke 2011-04-12 11:13:51 +00:00 committed by Git OBS Bridge
commit dad61d4cc7
4 changed files with 126 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

View File

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

View File

@ -0,0 +1,38 @@
-------------------------------------------------------------------
Sun Apr 3 15:33:33 UTC 2011 - coolo@novell.com
- updated to 1.1.1
- Reworked Algorithm::CheckDigits::M10_008 (sedol) to cop with
alphanumerical SEDOL codes that are in use since March 2004.
- There was also a flaw in the computation of the checksum that
provided 10 instead of 0.
- This closes bug number #66340 on CPAN.
- reworked Algorithm::CheckDigits::M10_001, added CUSIP
- moved scripts/checkdigits.pl to bin/checkdigits.pl
- added cgi-bin/checkdigits.cgi
- reworked Algorithm::CheckDigits::MXX_001
- added scripts/checkdigits.pl as sample script
-------------------------------------------------------------------
Wed Dec 1 13:30:34 UTC 2010 - coolo@novell.com
- switch to perl_requires macro
-------------------------------------------------------------------
Sat Feb 20 12:39:59 UTC 2010 - lars@linux-schulserver.de
- update to 0.53:
+ cleaned up documentation
+ added $VERSION into all modules to close #36482 at
rt.cpan.org
+ added link to english description for ustid_pl
+ corrected documentation for ustid_pl/vatnr_pl
+ reworked algorithm and documentation for esr5_ch according to
http://www.sic.ch/de/dl_tkicch_dta.pdf
- BuildRequires perl-macros to use perl_gen_filelist-macro
-------------------------------------------------------------------
Mon Aug 11 17:50:55 CEST 2008 - lrupp@suse.de
- initial version 0.50

View File

@ -0,0 +1,62 @@
#
# spec file for package perl-Algorithm-CheckDigits (Version 1.1.1)
#
# Copyright (c) 2010 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-Algorithm-CheckDigits
Version: 1.1.1
Release: 1
License: GPL+ or Artistic
%define cpan_name Algorithm-CheckDigits
Summary: Perl extension to generate and test check digits
Url: http://search.cpan.org/dist/Algorithm-CheckDigits/
Group: Development/Libraries/Perl
#Source: http://www.cpan.org/authors/id/M/MA/MAMAWE/Algorithm-CheckDigits-v%{version}.tar.gz
Source: %{cpan_name}-v%{version}.tar.gz
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl(Module::Build)
BuildRequires: perl-macros
BuildRequires: perl(Probe::Perl)
BuildRequires: perl(version)
Requires: perl(version)
%{perl_requires}
%description
sorry, no description found
%prep
%setup -q -n %{cpan_name}-v%{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
%clean
%{__rm} -rf %{buildroot}
%files -f %{name}.files
%defattr(644,root,root,755)
%doc cgi-bin Changes README
%changelog