- update to 6.30
* Removed some deprecated config variables * Reworked deltas * Modified Delta_Format * Time zone fixes * Better handling of undef in DM6 * Bug fixes OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Date-Manip?expand=0&rev=37
This commit is contained in:
parent
c81f83b0c4
commit
bd76795f76
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:594b6905e072da0e8ba376267a900502a5ca0350d7691b46ea6b64a8a5dc4736
|
|
||||||
size 1405078
|
|
3
Date-Manip-6.30.tar.gz
Normal file
3
Date-Manip-6.30.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:80653769b98772992be2906bc31160b20a9abc2a4fa511653047ef087f0a722e
|
||||||
|
size 1693795
|
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 13 02:39:05 UTC 2012 - vcizek@suse.com
|
||||||
|
|
||||||
|
- update to 6.30
|
||||||
|
* Removed some deprecated config variables
|
||||||
|
* Reworked deltas
|
||||||
|
* Modified Delta_Format
|
||||||
|
* Time zone fixes
|
||||||
|
* Better handling of undef in DM6
|
||||||
|
* Bug fixes
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Nov 18 11:09:09 UTC 2011 - coolo@suse.com
|
Fri Nov 18 11:09:09 UTC 2011 - coolo@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Date-Manip
|
# spec file for package perl-Date-Manip
|
||||||
#
|
#
|
||||||
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2012 SUSE LINUX Products 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,25 +15,24 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
|
||||||
|
|
||||||
%bcond_with pod
|
%bcond_with pod
|
||||||
|
|
||||||
Name: perl-Date-Manip
|
Name: perl-Date-Manip
|
||||||
|
Version: 6.30
|
||||||
|
Release: 0
|
||||||
%define cpan_name Date-Manip
|
%define cpan_name Date-Manip
|
||||||
Summary: Date manipulation routines
|
Summary: Date manipulation routines
|
||||||
Version: 6.25
|
|
||||||
Release: 1
|
|
||||||
License: GPL-1.0+ or Artistic-1.0
|
License: GPL-1.0+ or Artistic-1.0
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/Date-Manip/
|
Url: http://search.cpan.org/dist/Date-Manip/
|
||||||
Source: %{cpan_name}-%{version}.tar.gz
|
Source: %{cpan_name}-%{version}.tar.gz
|
||||||
BuildArch: noarch
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
%{perl_requires}
|
|
||||||
BuildRequires: perl >= 5.10
|
BuildRequires: perl >= 5.10
|
||||||
BuildRequires: perl(Module::Build)
|
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
|
BuildRequires: perl(Module::Build)
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
BuildArch: noarch
|
||||||
|
%{perl_requires}
|
||||||
%if %{with pod}
|
%if %{with pod}
|
||||||
BuildRequires: perl(Test::Pod)
|
BuildRequires: perl(Test::Pod)
|
||||||
BuildRequires: perl(Test::Pod::Coverage)
|
BuildRequires: perl(Test::Pod::Coverage)
|
||||||
@ -62,26 +61,22 @@ than those presented here, so be sure to read the section SHOULD I USE
|
|||||||
DATE::MANIP in the Date::Manip::Misc document before deciding which of the
|
DATE::MANIP in the Date::Manip::Misc document before deciding which of the
|
||||||
Date and Time modules from CPAN is for you.
|
Date and Time modules from CPAN is for you.
|
||||||
|
|
||||||
Authors:
|
|
||||||
--------
|
|
||||||
Sullivan Beck <sbeck@cpan.org>
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Build.PL installdirs=vendor
|
perl Build.PL installdirs=vendor
|
||||||
./Build
|
./Build
|
||||||
|
|
||||||
%check
|
%check
|
||||||
./Build test
|
./Build test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
|
./Build install destdir=%{buildroot} create_packlist=0
|
||||||
%perl_gen_filelist
|
%perl_gen_filelist
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
%{__rm} -rf $RPM_BUILD_ROOT
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user