commit 3624c74b064f1432252da08f568638acc5dc8493640097026ee5de17b9bf53aa Author: Stephan Kulow Date: Thu Apr 21 04:51:31 2011 +0000 initial package OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Date-Simple?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/Date-Simple-3.03.tar.gz b/Date-Simple-3.03.tar.gz new file mode 100644 index 0000000..fe72179 --- /dev/null +++ b/Date-Simple-3.03.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29a1926314ce1681a312d6155c29590c771ddacf91b7485873ce449ef209dd04 +size 23476 diff --git a/perl-Date-Simple.changes b/perl-Date-Simple.changes new file mode 100644 index 0000000..3484140 --- /dev/null +++ b/perl-Date-Simple.changes @@ -0,0 +1,6 @@ +------------------------------------------------------------------- +Thu Apr 21 04:51:25 UTC 2011 - coolo@opensuse.org + +- initial package 3.03 + * created by cpanspec 1.78.04 + diff --git a/perl-Date-Simple.spec b/perl-Date-Simple.spec new file mode 100644 index 0000000..cc06081 --- /dev/null +++ b/perl-Date-Simple.spec @@ -0,0 +1,106 @@ +# +# spec file for package perl-Date-Simple (Version 3.03) +# +# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + +Name: perl-Date-Simple +Version: 3.03 +Release: 1 +License: This program is free software; you can redistribute it and/or modify it under the terms of either: a) the GNU General Public License; either version 2 of the License, or (at your option) any later version. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA b) the Perl Artistic License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +%define cpan_name Date-Simple +Summary: a simple date object +Url: http://search.cpan.org/dist/Date-Simple/ +Group: Development/Libraries/Perl +Source: http://www.cpan.org/authors/id/I/IZ/IZUT/%{cpan_name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: perl +BuildRequires: perl-macros +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(Scalar::Util) +BuildRequires: perl(Test::More) +Requires: perl(Scalar::Util) +Requires: perl(Test::More) +%{perl_requires} + +%description +Dates are complex enough without times and timezones. This module may be +used to create simple date objects. It handles: + +* Validation. + + Reject 1999-02-29 but accept 2000-02-29. + +* Interval arithmetic. + + How many days were between two given dates? What date comes N days after + today? + +* Day-of-week calculation. + + What day of the week is a given date? + +* Transparent date formatting. + + How should a date object be formatted. + +It does *not* deal with hours, minutes, seconds, and time zones. + +A date is uniquely identified by year, month, and day integers within valid +ranges. This module will not allow the creation of objects for invalid +dates. Attempting to create an invalid date will return undef. Month +numbering starts at 1 for January, unlike in C and Java. Years are 4-digit. + +Gregorian dates up to year 9999 are handled correctly, but we rely on +Perl's builtin 'localtime' function when the current date is requested. On +some platforms, 'localtime' may be vulnerable to rollovers such as the Unix +'time_t' wraparound of 18 January 2038. + +Overloading is used so you can compare or subtract two dates using standard +numeric operators such as '==', and the sum of a date object and an integer +is another date object. + +Date::Simple objects are immutable. After assigning '$date1' to '$date2', +no change to '$date1' can affect '$date2'. This means, for example, that +there is nothing like a 'set_year' operation, and '$date++' assigns a new +object to '$date'. + +This module contains various undocumented functions. They may not be +available on all platforms and are likely to change or disappear in future +releases. Please let the author know if you think any of them should be +public. + +%prep +%setup -q -n %{cpan_name}-%{version} + +%build +%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}" +%{__make} %{?_smp_mflags} + +%check +%{__make} test + +%install +%perl_make_install +%perl_process_packlist +%perl_gen_filelist + +%clean +%{__rm} -rf %{buildroot} + +%files -f %{name}.files +%defattr(-,root,root,755) +%doc ChangeLog COPYING README + +%changelog