From da6a684adac00cbdfdcdd084c9329d58ea02f3f4745bbd8295630a41cfb025c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Fri, 3 May 2024 18:03:21 +0200 Subject: [PATCH] Sync from SUSE:SLFO:Main perl-Date-Simple revision 734892ea28f641e458a580037b3684c3 --- .gitattributes | 23 +++++++++ Date-Simple-3.03.tar.gz | 3 ++ perl-Date-Simple.changes | 12 +++++ perl-Date-Simple.spec | 107 +++++++++++++++++++++++++++++++++++++++ 4 files changed, 145 insertions(+) create mode 100644 .gitattributes create mode 100644 Date-Simple-3.03.tar.gz create mode 100644 perl-Date-Simple.changes create mode 100644 perl-Date-Simple.spec 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/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..0b98298 --- /dev/null +++ b/perl-Date-Simple.changes @@ -0,0 +1,12 @@ +------------------------------------------------------------------- +Tue May 22 21:18:32 UTC 2012 - cfarrell@suse.com + +- license update: Artistic-1.0 or GPL-2.0+ + SPDX format. Note that this is _not_ the standard perl license (GPL-1.0+) + +------------------------------------------------------------------- +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..c512ca9 --- /dev/null +++ b/perl-Date-Simple.spec @@ -0,0 +1,107 @@ +# +# 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: Artistic-1.0 or GPL-2.0+ +%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} +find . -type f -print0 | xargs -0 chmod 644 + +%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