rpms/perl-Date-Manip/devel perl-Date-Manip-5.48-datez-rhbz248500.patch, NONE, 1.1 perl-Date-Manip.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

Robin Norwood (rnorwood) fedora-extras-commits at redhat.com
Fri Jan 4 19:49:38 UTC 2008


Author: rnorwood

Update of /cvs/pkgs/rpms/perl-Date-Manip/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv29019

Modified Files:
	.cvsignore sources 
Added Files:
	perl-Date-Manip-5.48-datez-rhbz248500.patch 
	perl-Date-Manip.spec 
Log Message:
Initial version: 5.48.

perl-Date-Manip-5.48-datez-rhbz248500.patch:

--- NEW FILE perl-Date-Manip-5.48-datez-rhbz248500.patch ---
diff -ru Date-Manip-5.48/Manip.pm Date-Manip-5.48-new/Manip.pm
--- Date-Manip-5.48/Manip.pm	2007-11-27 14:10:10.000000000 +0000
+++ Date-Manip-5.48-new/Manip.pm	2008-01-03 15:58:03.000000000 +0000
@@ -3561,6 +3561,7 @@
             $tz=$ENV{'SYS$TIMEZONE_DIFFERENTIAL'}/3600.; # e.g. '-4' for EDT
           }
         }
+        push(@tz,$tz)  if (defined $tz);
       } else {
         $tz=`date +%Z 2> /dev/null`;
         chomp($tz);
@@ -3569,8 +3570,13 @@
           chomp($tz);
           $tz=(split(/\s+/,$tz))[4];
         }
+        push(@tz,$tz)  if (defined $tz);
+
+        # for international timezones
+        $tz=`date +%z 2> /dev/null`;
+        chomp($tz);
+        push(@tz,$tz)  if (defined $tz);
       }
-      push(@tz,$tz)  if (defined $tz);
     } else {
       # We need to satisfy taint checking, but also look in all the
       # directories in @DatePath.
@@ -3585,6 +3591,11 @@
 	$tz=(split(/\s+/,$tz))[4];
       }
       push(@tz,$tz)  if (defined $tz);
+
+      # for international timezones
+      $tz=`date +%z 2>  /dev/null`;
+      chomp($tz);
+      push(@tz,$tz)  if (defined $tz);
     }
   }
 


--- NEW FILE perl-Date-Manip.spec ---
Name:           perl-Date-Manip
Version:        5.48
Release:        1%{?dist}
Summary:        A Perl module containing a wide variety of date manipulation routines

Group:          Development/Libraries
License:        GPL+ or Artistic
URL:            http://search.cpan.org/dist/Date-Manip/
Source0:        http://www.cpan.org/authors/id/S/SB/SBECK/Date-Manip-%{version}.tar.gz
Patch0:         perl-Date-Manip-5.48-datez-rhbz248500.patch

BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)

BuildArch:      noarch
BuildRequires:  perl(ExtUtils::MakeMaker)
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))

# This package was formerly known as perl-DateManip
Provides: perl-DateManip = %{version}-%{release}
Obsoletes: perl-DateManip < 5.48-1


%description
This is a set of routines designed to make any common date/time
manipulation easy to do.  Operations such as comparing two times,
calculating a time a given amount of time from another, or parsing
international times are all easily done.


%prep
%setup -q -n Date-Manip-%{version}
%patch0 -p1

%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
make %{?_smp_mflags}

%install
rm -rf $RPM_BUILD_ROOT
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';'
%{_fixperms} $RPM_BUILD_ROOT/*

%check
make test

%clean
rm -rf $RPM_BUILD_ROOT


%files
%defattr(-,root,root,-)
%doc README TODO HISTORY
%{perl_vendorlib}/Date/
%{_mandir}/man3/*.3*


%changelog
* Thu Jan  3 2008 Ed Avis <eda at waniasset.com> - 5.48-1
- Update to 5.48.
- rhbz#214709 Krasnoyarsk patch now upstream.
- Changed name to Date-Manip as now used on CPAN.

* Mon Aug 27 2007 Robin Norwood <rnorwood at redhat.com> - 5.44-4
- Apply patch to use date +%%z as possible source for timezone data
- Fix license tag
- Add TODO and HISTORY to %%doc list

* Tue Mar 20 2007 Robin Norwood <rnorwood at redhat.com> - 5.44-3
- Fix minor issues in spec file for package review
- Bump release
- Resolves: rhbz#226250

* Fri Nov 10 2006 Robin Norwood <rnorwood at redhat.com> - 5.44-2
- Add support for KRAT and KRAST timezones
- Include magic dist tag in release
- Resolves: rhbz#214709
- Related: rhbz#100786

* Wed Jul 12 2006 Jesse Keating <jkeating at redhat.com> - 5.44-1.3
- rebuild

* Fri Feb 03 2006 Jason Vas Dias <jvdias at redhat.com> - 5.44-1.2
- rebuild for new perl-5.8.8

* Fri Dec 16 2005 Jesse Keating <jkeating at redhat.com>
- rebuilt for new gcc

* Fri Sep  9 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 5.44-1
- Update to 5.44.

* Mon Apr 25 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 5.42a-4
- Bring up to date with current Fedora.Extras perl spec template. (#155913)

* Wed Sep 22 2004 Chip Turner <cturner at redhat.com> 5.42a-2
- rebuild

* Fri Feb 13 2004 Chip Turner <cturner at redhat.com> 5.42a-1
- update to 5.42a

* Tue Aug  6 2002 Chip Turner <cturner at redhat.com>
- automated release bump and build

* Wed Jan 09 2002 Tim Powers <timp at redhat.com>
- automated rebuild

* Fri Dec 7 2001 root <root at redhat.com>
- Spec file was autogenerated.


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/perl-Date-Manip/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore	4 Jan 2008 04:28:28 -0000	1.1
+++ .cvsignore	4 Jan 2008 19:49:05 -0000	1.2
@@ -0,0 +1 @@
+Date-Manip-5.48.tar.gz


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/perl-Date-Manip/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources	4 Jan 2008 04:28:28 -0000	1.1
+++ sources	4 Jan 2008 19:49:05 -0000	1.2
@@ -0,0 +1 @@
+961ba2cd3b00ea82f77e1fba10036c79  Date-Manip-5.48.tar.gz




More information about the fedora-extras-commits mailing list