forked from pool/perl-Math-Base-Convert
Compare commits
1 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| f12ae9cc4d |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8c0971355f24c93b79e77ad54a4570090a1a598fcb9b86f5c17eba42f38b40e0
|
||||
size 41667
|
||||
BIN
Math-Base-Convert-0.13.tar.gz
(Stored with Git LFS)
Normal file
BIN
Math-Base-Convert-0.13.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
12
README.md
Normal file
12
README.md
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
## Build Results
|
||||
|
||||
Current state of perl in openSUSE:Factory is
|
||||
|
||||

|
||||
|
||||
The current state of perl in the devel project build (devel:languages:perl)
|
||||
|
||||

|
||||
|
||||
|
||||
5
_scmsync.obsinfo
Normal file
5
_scmsync.obsinfo
Normal file
@@ -0,0 +1,5 @@
|
||||
mtime: 1759842797
|
||||
commit: e99bd1e4c678f24e625664499bded54bcbe63872ed968a6d9f52c52303ccc77d
|
||||
url: https://src.opensuse.org/perl/perl-Math-Base-Convert.git
|
||||
revision: e99bd1e4c678f24e625664499bded54bcbe63872ed968a6d9f52c52303ccc77d
|
||||
projectscmsync: https://src.opensuse.org/perl/_ObsPrj
|
||||
3
build.specials.obscpio
Normal file
3
build.specials.obscpio
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ad8033844fcbe69de697c829e768f2d522f2fd9c46bdddff7e02e4c3be7f8039
|
||||
size 256
|
||||
@@ -1,3 +1,16 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 7 13:13:17 UTC 2025 - Tina Müller <timueller+perl@suse.de>
|
||||
|
||||
- updated to 0.130.0 (0.13)
|
||||
see /usr/share/doc/packages/perl-Math-Base-Convert/Changes
|
||||
|
||||
0.13 Mon Sep 15 15:44:16 PDT 2025
|
||||
bug 168226 disambiguate precendence bug introduced by perl 5.42
|
||||
|
||||
0.12 Tue Mar 14 15:51:39 PDT 2017
|
||||
correct typo stating 96 ascii characters
|
||||
should be 95 characters
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 4 13:19:46 UTC 2024 - pgajdos@suse.com
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-Math-Base-Convert
|
||||
#
|
||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -12,25 +12,32 @@
|
||||
# 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/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: perl-Math-Base-Convert
|
||||
Version: 0.11
|
||||
Release: 0
|
||||
%define cpan_name Math-Base-Convert
|
||||
Summary: Very Fast Base to Base Conversion
|
||||
License: GPL-1.0+ or Artistic-1.0
|
||||
Group: Development/Libraries/Perl
|
||||
Url: http://search.cpan.org/dist/Math-Base-Convert/
|
||||
Source0: http://www.cpan.org/authors/id/M/MI/MIKER/%{cpan_name}-%{version}.tar.gz
|
||||
Name: perl-Math-Base-Convert
|
||||
Version: 0.130.0
|
||||
Release: 0
|
||||
# 0.13 -> normalize -> 0.130.0
|
||||
%define cpan_version 0.13
|
||||
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||
Summary: Very fast base to base conversion
|
||||
URL: https://metacpan.org/release/%{cpan_name}
|
||||
Source0: https://cpan.metacpan.org/authors/id/M/MI/MIKER/%{cpan_name}-%{cpan_version}.tar.gz
|
||||
Source1: cpanspec.yml
|
||||
Source100: README.md
|
||||
Patch0: reproducible.patch
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
Provides: perl(Math::Base::Convert) = %{version}
|
||||
Provides: perl(Math::Base::Convert::Bases) = 0.30.0
|
||||
Provides: perl(Math::Base::Convert::Bitmaps) = 0.20.0
|
||||
Provides: perl(Math::Base::Convert::CalcPP) = 0.30.0
|
||||
Provides: perl(Math::Base::Convert::Shortcuts) = 0.50.0
|
||||
%undefine __perllib_provides
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
@@ -41,14 +48,14 @@ This module is pure Perl, has no external dependencies, and is backward
|
||||
compatible with old versions of Perl 5.
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n %{cpan_name}-%{version}
|
||||
%autosetup -n %{cpan_name}-%{cpan_version} -p1
|
||||
|
||||
%build
|
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||
%{__make} %{?_smp_mflags}
|
||||
perl Makefile.PL INSTALLDIRS=vendor
|
||||
%make_build
|
||||
|
||||
%check
|
||||
%{__make} test
|
||||
make test
|
||||
|
||||
%install
|
||||
%perl_make_install
|
||||
@@ -56,7 +63,6 @@ compatible with old versions of Perl 5.
|
||||
%perl_gen_filelist
|
||||
|
||||
%files -f %{name}.files
|
||||
%defattr(-,root,root,755)
|
||||
%doc bitmaps Changes README recurse2txt
|
||||
|
||||
%changelog
|
||||
|
||||
Reference in New Issue
Block a user