Accepting request 295842 from devel:languages:perl:autoupdate
automatic update OBS-URL: https://build.opensuse.org/request/show/295842 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Class-Singleton?expand=0&rev=9
This commit is contained in:
parent
976f4d9972
commit
d5f1c68dd0
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:cfafc6e7c842e04fc11cc3e700551461a6aaa0b139470273aea2f29026e79150
|
|
||||||
size 7793
|
|
3
Class-Singleton-1.5.tar.gz
Normal file
3
Class-Singleton-1.5.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:38220d04f02e3a803193c2575a1644cce0b95ad4b95c19eb932b94e2647ef678
|
||||||
|
size 7785
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Apr 13 19:13:23 UTC 2015 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 1.5
|
||||||
|
see /usr/share/doc/packages/perl-Class-Singleton/Changes
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 19:19:58 UTC 2010 - coolo@novell.com
|
Tue Nov 30 19:19:58 UTC 2010 - coolo@novell.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Class-Singleton (Version 1.4)
|
# spec file for package perl-Class-Singleton
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -15,44 +15,41 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
|
||||||
|
|
||||||
|
|
||||||
Name: perl-Class-Singleton
|
Name: perl-Class-Singleton
|
||||||
%define cpan_name %( echo %{name} | %{__sed} -e 's,perl-,,' )
|
Version: 1.5
|
||||||
|
Release: 0
|
||||||
|
%define cpan_name Class-Singleton
|
||||||
Summary: Implementation of a "Singleton" class
|
Summary: Implementation of a "Singleton" class
|
||||||
Version: 1.4
|
License: GPL-1.0+ or Artistic-1.0
|
||||||
Release: 4
|
|
||||||
License: Artistic-1.0
|
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/Class-Singleton/
|
Url: http://search.cpan.org/dist/Class-Singleton/
|
||||||
Source: http://search.cpan.org/CPAN/authors/id/A/AB/ABW/Class-Singleton-1.4.tar.gz
|
Source: http://www.cpan.org/authors/id/S/SH/SHAY/%{cpan_name}-%{version}.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%{perl_requires}
|
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This is the "Class::Singleton" module. A Singleton describes an object
|
This is the 'Class::Singleton' module. A Singleton describes an object
|
||||||
class that can have only one instance in any system. An example of a
|
class that can have only one instance in any system. An example of a
|
||||||
Singleton might be a print spooler or system registry. This module
|
Singleton might be a print spooler or system registry. This module
|
||||||
implements a Singleton class from which other classes can be derived. By
|
implements a Singleton class from which other classes can be derived. By
|
||||||
itself, the "Class::Singleton" module does very little other than manage
|
itself, the 'Class::Singleton' module does very little other than manage
|
||||||
the instantiation of a single object. In deriving a class from
|
the instantiation of a single object. In deriving a class from
|
||||||
"Class::Singleton", your module will inherit the Singleton instantiation
|
'Class::Singleton', your module will inherit the Singleton instantiation
|
||||||
method and can implement whatever specific functionality is required.
|
method and can implement whatever specific functionality is required.
|
||||||
|
|
||||||
For a description and discussion of the Singleton class, see "Design
|
For a description and discussion of the Singleton class, see "Design
|
||||||
Patterns", Gamma et al, Addison-Wesley, 1995, ISBN 0-201-63361-2.
|
Patterns", Gamma et al, Addison-Wesley, 1995, ISBN 0-201-63361-2.
|
||||||
|
|
||||||
Author: Andy Wardley <abw@wardley.org>
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
|
find . -type f -print0 | xargs -0 chmod 644
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Makefile.PL OPTIMIZE="$RPM_OPT_FLAGS -Wall"
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||||
%{__make} %{?_smp_mflags}
|
%{__make} %{?_smp_mflags}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
@ -60,18 +57,11 @@ Author: Andy Wardley <abw@wardley.org>
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
%perl_make_install
|
%perl_make_install
|
||||||
# do not perl_process_packlist (noarch)
|
%perl_process_packlist
|
||||||
# remove .packlist file
|
|
||||||
%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
|
|
||||||
# remove perllocal.pod file
|
|
||||||
%{__rm} -rf $RPM_BUILD_ROOT%perl_archlib
|
|
||||||
%perl_gen_filelist
|
%perl_gen_filelist
|
||||||
|
|
||||||
%clean
|
|
||||||
%{__rm} -rf $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root,755)
|
||||||
%doc Changes README
|
%doc Changes README
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user