8
0
OBS User unknown
2007-12-14 16:20:36 +00:00
committed by Git OBS Bridge
parent 74f00e6fe0
commit 30a3df9529
4 changed files with 49 additions and 21 deletions

View File

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

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1793071b05c89891eaab5170e6612eb5ddff9d82eb20b0a42bda67cbfc01e292
size 31158

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Fri Dec 14 17:11:45 CET 2007 - anicka@suse.cz
- update to 1.29
* Debugging change in 1.25 regressed an undocumented 5.6-related
bug first fixed in 1.20.
* Expands the can hook to also hook isa
* Added t/05_base.t to try and chase down base.pm bug
* Documenting ->autouse(@classes)
* Tidying up the POD a little to refer to features
in an order much more relevant to the reader.
* Catch and rethrow all error when autoloading during a ->can.
* Debugging can now only be done at compile time, and thus is
optimised out. The :debug flag is removed and instead you need
-------------------------------------------------------------------
Wed Jan 25 21:39:31 CET 2006 - mls@suse.de

View File

@@ -1,27 +1,27 @@
#
# spec file for package perl-Class-Autouse (Version 1.18)
# spec file for package perl-Class-Autouse (Version 1.29)
#
# Copyright (c) 2005 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2007 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://www.suse.de/feedback/
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: perl-Class-Autouse
BuildRequires: perl-Carp-Assert
Version: 1.18
Release: 3
Requires: perl = %{perl_version}
Autoreqprov: on
Group: Development/Libraries/Perl
License: GPL, Artistic License
Url: http://cpan.org/modules/by-module/Class/
Summary: Run-time class loading on first method call
Source: Class-Autouse-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Name: perl-Class-Autouse
BuildRequires: perl-Carp-Assert
Version: 1.29
Release: 1
Requires: perl = %{perl_version}
AutoReqProv: on
Group: Development/Libraries/Perl
License: Artistic License; GPL v2 or later
Url: http://cpan.org/modules/by-module/Class/
Summary: Run-time class loading on first method call
Source: Class-Autouse-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Class::Autouse allows you to specify a class the will only load when a
@@ -36,15 +36,16 @@ Authors:
Adam Kennedy
%prep
%setup -n Class-Autouse-%{version}
%setup -q -n Class-Autouse-%{version}
%build
perl Makefile.PL
make
%check
make test
%install
rm -rf $RPM_BUILD_ROOT
make DESTDIR=$RPM_BUILD_ROOT install_vendor
%perl_process_packlist
@@ -59,7 +60,19 @@ rm -rf $RPM_BUILD_ROOT
%{perl_vendorarch}/auto/Class
/var/adm/perl-modules/%{name}
%changelog -n perl-Class-Autouse
%changelog
* Fri Dec 14 2007 - anicka@suse.cz
- update to 1.29
* Debugging change in 1.25 regressed an undocumented 5.6-related
bug first fixed in 1.20.
* Expands the can hook to also hook isa
* Added t/05_base.t to try and chase down base.pm bug
* Documenting ->autouse(@classes)
* Tidying up the POD a little to refer to features
in an order much more relevant to the reader.
* Catch and rethrow all error when autoloading during a ->can.
* Debugging can now only be done at compile time, and thus is
optimised out. The :debug flag is removed and instead you need
* Wed Jan 25 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
* Wed Sep 28 2005 - dmueller@suse.de