Sync from SUSE:SLFO:Main perl-Business-ISMN revision 2f1df2cfd97a726a3da5ade1f32f63db

This commit is contained in:
Adrian Schröter 2024-05-03 17:52:59 +02:00
commit 6dfac5ef6a
5 changed files with 167 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
Business-ISMN-1.203.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,52 @@
-------------------------------------------------------------------
Fri Mar 17 03:06:46 UTC 2023 - Tina Müller <timueller+perl@suse.de>
- updated to 1.203
see /usr/share/doc/packages/perl-Business-ISMN/Changes
1.203 2023-03-16T11:10:05Z
* Fix ean_to_ismn, which was not adding the M to the start.
-------------------------------------------------------------------
Wed Feb 17 03:06:54 UTC 2021 - Tina Müller <timueller+perl@suse.de>
- updated to 1.202
see /usr/share/doc/packages/perl-Business-ISMN/Changes
1.202 2021-02-16T12:43:17Z
* Freshen distro, add Github Actions
-------------------------------------------------------------------
Thu Nov 8 06:04:08 UTC 2018 - Stephan Kulow <coolo@suse.com>
- updated to 1.201
see /usr/share/doc/packages/perl-Business-ISMN/Changes
1.201 2018-10-18T15:27:35Z
* Change publisher() to country() (because that's what it is).
The old method names are still there but carp.
-------------------------------------------------------------------
Sun Jul 15 05:06:50 UTC 2018 - coolo@suse.com
- updated to 1.132
see /usr/share/doc/packages/perl-Business-ISMN/Changes
-------------------------------------------------------------------
Tue Dec 6 06:07:51 UTC 2016 - coolo@suse.com
- updated to 1.131
see /usr/share/doc/packages/perl-Business-ISMN/Changes
-------------------------------------------------------------------
Tue Apr 14 12:36:46 UTC 2015 - coolo@suse.com
- updated to 1.13
see /usr/share/doc/packages/perl-Business-ISMN/Changes
-------------------------------------------------------------------
Fri Jun 28 13:49:54 UTC 2013 - coolo@suse.com
- initial package 1.11
* created by cpanspec 1.78.06

61
perl-Business-ISMN.spec Normal file
View File

@ -0,0 +1,61 @@
#
# spec file for package perl-Business-ISMN
#
# Copyright (c) 2023 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 Business-ISMN
Name: perl-Business-ISMN
Version: 1.203
Release: 0
License: Artistic-2.0
Summary: Work with International Standard Music Numbers
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/B/BD/BDFOY/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.64
BuildRequires: perl(Test::More) >= 1
BuildRequires: perl(Tie::Cycle) >= 1.21
Requires: perl(Tie::Cycle) >= 1.21
%{perl_requires}
%description
work with International Standard Music Numbers
%prep
%autosetup -n %{cpan_name}-%{version}
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
%build
perl Makefile.PL INSTALLDIRS=vendor
%make_build
%check
make test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%doc Changes examples ismns.txt
%license LICENSE
%changelog