Accepting request 636326 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/636326 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Sub-Uplevel?expand=0&rev=25
This commit is contained in:
commit
89289d57a6
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:0f93f6e9c80b8dcb22c60d0e9df2c2c6d7db10d4d37151f1dfea6e54a3c6fdfb
|
|
||||||
size 23314
|
|
BIN
Sub-Uplevel-0.2800.tar.gz
(Stored with Git LFS)
Normal file
BIN
Sub-Uplevel-0.2800.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,32 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Sep 14 08:42:11 UTC 2018 - pmonrealgonzalez@suse.com
|
||||||
|
|
||||||
|
- update to 0.2800
|
||||||
|
- No changes from 0.2700-TRIAL
|
||||||
|
|
||||||
|
- 0.2700 2017-03-30 10:09:46-04:00 America/New_York (TRIAL RELEASE)
|
||||||
|
[Fixed]
|
||||||
|
- Tests now work if '.' is not in @INC
|
||||||
|
|
||||||
|
- 0.2600 2016-08-05 10:46:37-04:00 America/New_York
|
||||||
|
- No changes from 0.2501-TRIAL
|
||||||
|
|
||||||
|
- 0.2501 2016-07-29 16:18:45-04:00 America/New_York (TRIAL RELEASE)
|
||||||
|
[Internal]
|
||||||
|
- Optimized calls to caller()
|
||||||
|
|
||||||
|
- 0.25 2015-01-26 20:32:52-05:00 America/New_York
|
||||||
|
[Fixed]
|
||||||
|
- fixed: 00-compile.t failures under Windows (bug #98230).
|
||||||
|
The 00-compile.t file has been moved to a release test and is
|
||||||
|
no longer shipped. [Michael Gray]
|
||||||
|
[Meta]
|
||||||
|
- moved bug tracker to Github
|
||||||
|
- updated repo files explaining how to contribute
|
||||||
|
- enabled Travis CI
|
||||||
|
|
||||||
|
- Cleaned with spec-cleaner
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Apr 15 10:41:17 UTC 2013 - idonmez@suse.com
|
Mon Apr 15 10:41:17 UTC 2013 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Sub-Uplevel
|
# spec file for package perl-Sub-Uplevel
|
||||||
#
|
#
|
||||||
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2018 SUSE LINUX 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
|
||||||
@ -16,30 +16,20 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
# decimal versioning as used by perl
|
|
||||||
%define d_ver 0.24
|
|
||||||
# decimal dotted versioning as used by rpm
|
|
||||||
%if 0%{?suse_version} > 1010
|
|
||||||
%define dd_ver %(perl -e "print version->new(%{d_ver})->normal" | sed "s/v//")
|
|
||||||
%else
|
|
||||||
%define dd_ver 0.240.0
|
|
||||||
%endif
|
|
||||||
|
|
||||||
Name: perl-Sub-Uplevel
|
|
||||||
Version: %{dd_ver}
|
|
||||||
Release: 0
|
|
||||||
%define cpan_name Sub-Uplevel
|
%define cpan_name Sub-Uplevel
|
||||||
|
Name: perl-Sub-Uplevel
|
||||||
|
Version: 0.2800
|
||||||
|
Release: 0
|
||||||
Summary: Apparently run a function in a higher stack frame
|
Summary: Apparently run a function in a higher stack frame
|
||||||
License: GPL-1.0+ or Artistic-1.0
|
License: GPL-1.0-or-later OR Artistic-1.0
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/Sub-Uplevel/
|
Url: https://metacpan.org/release/%{cpan_name}
|
||||||
Source: http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/Sub-Uplevel-%{d_ver}.tar.gz
|
Source: https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/%{cpan_name}-%{version}.tar.gz
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(Carp)
|
BuildRequires: perl(Carp)
|
||||||
BuildRequires: perl(Module::Build)
|
BuildRequires: perl(Module::Build)
|
||||||
BuildRequires: perl(Test::More) >= 0.47
|
BuildRequires: perl(Test::More) >= 0.47
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
|
|
||||||
@ -49,12 +39,12 @@ just to fool caller(). All the really naughty bits of Tcl's uplevel()
|
|||||||
are avoided.
|
are avoided.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{d_ver}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
|
||||||
%check
|
%check
|
||||||
make test
|
make %{?_smp_mflags} test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags} -Wall"
|
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags} -Wall"
|
||||||
@ -63,11 +53,8 @@ make %{?_smp_mflags}
|
|||||||
%perl_process_packlist
|
%perl_process_packlist
|
||||||
%perl_gen_filelist
|
%perl_gen_filelist
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf %{buildroot}
|
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,-)
|
%license LICENSE
|
||||||
%doc Changes examples LICENSE README xt
|
%doc Changes examples README xt
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user