forked from pool/perl-Text-Template
Compare commits
20 Commits
90934b36dc
...
fd4f256071
Author | SHA256 | Date | |
---|---|---|---|
fd4f256071 | |||
1ff67c6c8a | |||
1054ff747b | |||
45c577113f | |||
9c43a4f3b5 | |||
0c74fc1736 | |||
12d9b3cbc6 | |||
|
8d69a4d146 | ||
|
7c9b81ae8a | ||
3d32685546 | |||
560dcd9c30 | |||
|
0f73f77a07 | ||
775e4128fb | |||
12f5e89c38 | |||
bcf17dda55 | |||
36a74e9a1c | |||
583b8abe09 | |||
4ef67c26b4 | |||
|
ee50d23721 | ||
|
d2b61348bc |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:09aaa095c562d22824daf849378a58632446093f397d8c7acb37c25a7f37e646
|
||||
size 49602
|
3
Text-Template-1.61.tar.gz
Normal file
3
Text-Template-1.61.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a295ea7d1ef241ae2640c1f7864b628f8e6f99ec14fb1da781b2f5f2168dcf09
|
||||
size 50421
|
@@ -1,3 +1,47 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 29 03:09:52 UTC 2022 - Tina Müller <timueller+perl@suse.de>
|
||||
|
||||
- updated to 1.61
|
||||
see /usr/share/doc/packages/perl-Text-Template/Changes
|
||||
|
||||
1.61 2022-04-28
|
||||
- Skip taint tests if perl was compiled with taint disabled. (Thanks Neil Bowers) [GitHub PR #20]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Sep 4 03:07:16 UTC 2021 - Tina Müller <timueller+perl@suse.de>
|
||||
|
||||
- updated to 1.60
|
||||
see /usr/share/doc/packages/perl-Text-Template/Changes
|
||||
|
||||
1.60 2021-09-03
|
||||
- Fix another POD syntax error.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jul 4 03:13:36 UTC 2020 - Tina Müller <timueller+perl@suse.de>
|
||||
|
||||
- updated to 1.59
|
||||
see /usr/share/doc/packages/perl-Text-Template/Changes
|
||||
|
||||
1.59 2020-07-03
|
||||
- Fix syntax error in POD example code.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Sep 28 13:49:48 UTC 2019 - <timueller+perl@suse.de>
|
||||
|
||||
- updated to 1.58
|
||||
see /usr/share/doc/packages/perl-Text-Template/Changes
|
||||
|
||||
1.58 2019-09-27
|
||||
- Remove hard coded (old) version number from README
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 10 09:28:05 UTC 2019 - <timueller+perl@suse.de>
|
||||
|
||||
- updated to 1.57
|
||||
see /usr/share/doc/packages/perl-Text-Template/Changes
|
||||
|
||||
1.57 2019-09-09
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 25 05:31:06 UTC 2019 - Stephan Kulow <coolo@suse.com>
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-Text-Template
|
||||
#
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2022 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -16,18 +16,16 @@
|
||||
#
|
||||
|
||||
|
||||
Name: perl-Text-Template
|
||||
Version: 1.56
|
||||
Release: 0
|
||||
%define cpan_name Text-Template
|
||||
Summary: Expand template text with embedded Perl
|
||||
Name: perl-Text-Template
|
||||
Version: 1.61
|
||||
Release: 0
|
||||
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||
Group: Development/Libraries/Perl
|
||||
Url: https://metacpan.org/release/%{cpan_name}
|
||||
Summary: Expand template text with embedded Perl
|
||||
URL: https://metacpan.org/release/%{cpan_name}
|
||||
Source0: https://cpan.metacpan.org/authors/id/M/MS/MSCHOUT/%{cpan_name}-%{version}.tar.gz
|
||||
Source1: cpanspec.yml
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: perl(Test::More::UTF8)
|
||||
@@ -48,12 +46,12 @@ into the template. That prevents code bloat and encourages functional
|
||||
separation.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{cpan_name}-%{version}
|
||||
find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
|
||||
%autosetup -n %{cpan_name}-%{version}
|
||||
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
|
||||
|
||||
%build
|
||||
perl Makefile.PL INSTALLDIRS=vendor
|
||||
make %{?_smp_mflags}
|
||||
%make_build
|
||||
|
||||
%check
|
||||
make test
|
||||
@@ -64,7 +62,6 @@ make test
|
||||
%perl_gen_filelist
|
||||
|
||||
%files -f %{name}.files
|
||||
%defattr(-,root,root,755)
|
||||
%doc Changes README
|
||||
%license LICENSE
|
||||
|
||||
|
Reference in New Issue
Block a user