OBS User unknown 2007-01-15 23:29:54 +00:00 committed by Git OBS Bridge
commit aa99ad8f43
6 changed files with 148 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

3
Carp-Clan-5.8.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6ee6076ca8b82c908f7e8986db1d7350c3f8dbcfa16ba753f62f6397c428a847
size 17240

36
perl-Carp-Clan.changes Normal file
View File

@ -0,0 +1,36 @@
-------------------------------------------------------------------
Wed Dec 13 12:04:39 CET 2006 - anicka@suse.cz
- update to 5.8
* Stop testing that ->VERSION is a specific thing.
-------------------------------------------------------------------
Thu Oct 5 13:09:21 CEST 2006 - anicka@suse.cz
- update to 5.7
* Stop PAUSE from attempting to index DB package.
* test fixes
* bugfixes
* Use named lexicals in diag().
* Use exists &foo/defined &foo instead of symbol table hackery.
* Changed f() so it accepts 1st parameter of
carp/cluck/confess/croak instead of 1/2/3/4.
* Renamed files.
-------------------------------------------------------------------
Mon Sep 25 14:59:38 CEST 2006 - anicka@suse.cz
- update to 5.4
* Made Carp::Clan safe for overloaded objects.
* Added diag() to 01_..._carp.t
-------------------------------------------------------------------
Wed Jan 25 21:39:30 CET 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
-------------------------------------------------------------------
Mon Aug 1 14:40:41 CEST 2005 - mjancar@suse.cz
- initial version 5.3

85
perl-Carp-Clan.spec Normal file
View File

@ -0,0 +1,85 @@
#
# spec file for package perl-Carp-Clan (Version 5.8)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: perl-Carp-Clan
Version: 5.8
Release: 1
Requires: perl = %{perl_version}
Autoreqprov: on
Group: Development/Libraries/Perl
License: Artistic License, GNU General Public License (GPL)
URL: http://cpan.org/modules/by-module/Carp/
Summary: Report Errors from the Perspective of the Caller of a "Clan" of Modules
Source: Carp-Clan-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
This module reports errors from the perspective of the caller of a
"clan" of modules, similar to "Carp.pm" itself. But instead of giving
it a number of levels to skip on the calling stack, you give it a
pattern to characterize the package names of the "clan" of modules that
should never be blamed for any error. It makes these modules stick
together like a "clan" and any error that occurs will be blamed on the
"outsider" script or modules not belonging to this "clan".
Authors:
--------
Steffen Beyer <sb@engelschall.com>
%prep
%setup -q -n Carp-Clan-%{version}
%build
perl Makefile.PL
make
make test
%install
%perl_make_install
%perl_process_packlist
for i in `ls *.txt`; do mv $i `basename $i .txt`; done
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc Artistic Changes GNU_GPL README
%doc %{_mandir}/man?/*
%{perl_vendorlib}/Carp
%{perl_vendorarch}/auto/Carp
/var/adm/perl-modules/%{name}
%changelog -n perl-Carp-Clan
* Wed Dec 13 2006 - anicka@suse.cz
- update to 5.8
* Stop testing that ->VERSION is a specific thing.
* Thu Oct 05 2006 - anicka@suse.cz
- update to 5.7
* Stop PAUSE from attempting to index DB package.
* test fixes
* bugfixes
* Use named lexicals in diag().
* Use exists &foo/defined &foo instead of symbol table hackery.
* Changed f() so it accepts 1st parameter of
carp/cluck/confess/croak instead of 1/2/3/4.
* Renamed files.
* Mon Sep 25 2006 - anicka@suse.cz
- update to 5.4
* Made Carp::Clan safe for overloaded objects.
* Added diag() to 01_..._carp.t
* Wed Jan 25 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
* Mon Aug 01 2005 - mjancar@suse.cz
- initial version 5.3

0
ready Normal file
View File