OBS User unknown 2009-08-10 14:56:47 +00:00 committed by Git OBS Bridge
commit b68cb8dca5
6 changed files with 132 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

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

View File

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

View File

@ -0,0 +1,34 @@
-------------------------------------------------------------------
Sat Jul 25 19:29:04 CEST 2009 - chris@computersalat.de
- spec mods
* removed ^----------
* removed ^#---------
-------------------------------------------------------------------
Sun Jun 28 18:47:35 CEST 2009 - chris@computersalat.de
- update to 20081208
- 0.00 - Fri Dec 5 12:00:41 2008
* Latest data update.
- 20081020 - Mon Oct 20 17:44:15 2008
* Updated publisher codes thanks to Yakov Shafranovich
* Version number is now the update date of the module,
in YYYYMMDD. This not the date of the ISBN Agency
updates though.
- added perl-macros
o autogen filelist with perl_gen_filelist
- spec mods
o fixed deps
-------------------------------------------------------------------
Tue Feb 12 13:01:45 CET 2008 - lars@linux-schulserver.de
- Update to 1.17:
[BUGFIX] RT #29078: Fix publihser ranges for Greece
-------------------------------------------------------------------
Mon Jul 23 14:46:46 CEST 2007 - lrupp@suse.de
- initial package 1.14

View File

@ -0,0 +1,71 @@
#
# spec file for package perl-Business-ISBN-Data (Version 20081208)
#
# Copyright (c) 2009 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/
#
# norootforbuild
Name: perl-Business-ISBN-Data
%define cpan_name %( echo %{name} | %{__sed} -e 's,perl-,,' )
Summary: Data pack for Business::ISBN
Version: 20081208
Release: 1
License: Artistic License ..
Group: Development/Libraries/Perl
Url: http://search.cpan.org/perldoc?Business::ISBN::Data
Source: %{cpan_name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Test::More)
BuildRequires: perl(Test::Pod)
BuildRequires: perl(Test::Pod::Coverage)
Requires: perl = %{perl_version}
%description
perl-Business-ISBN uses this "data pack" to do its work.
You can update perl-Business-ISBN-Data independently of the main module as
the various ISBN organizations assign new publisher codes. The ISBN agency
lists these data at http://www.isbn-international.org/identifiers.html .
The distribution should include the kludegy script I used to extract the
data and format the data structure.
Author: brian d foy <bdfoy@cpan.org>
%prep
%setup -q -n %{cpan_name}-%{version}
%build
CFLAGS="$RPM_OPT_FLAGS" perl Makefile.PL
%{__make}
%check
%{__make} test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%clean
%{__rm} -rf $RPM_BUILD_ROOT
%files -f %{name}.files
%defattr(-,root,root)
%doc Changes LICENSE README
%changelog

0
ready Normal file
View File