Sync from SUSE:SLFO:Main perl-Module-Build-Tiny revision 0763ec80af315775a27da15a74f6c8f3

This commit is contained in:
Adrian Schröter 2025-02-26 13:59:34 +01:00
parent aaf84f11d4
commit 14306fea71
4 changed files with 87 additions and 20 deletions

BIN
Module-Build-Tiny-0.039.tar.gz (Stored with Git LFS)

Binary file not shown.

BIN
Module-Build-Tiny-0.051.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,3 +1,67 @@
-------------------------------------------------------------------
Sat Sep 7 05:31:02 UTC 2024 - Tina Müller <timueller+perl@suse.de>
- updated to 0.51.0 (0.051)
see /usr/share/doc/packages/perl-Module-Build-Tiny/Changes
0.051 2024-09-06 11:05:08+02:00 Europe/Brussels
- Make CPAN::Requirements::Dynamic an optional dependency
0.050 2024-09-04 10:21:13+02:00 Europe/Brussels
- Revert "Make CPAN::Requirements::Dynamic an optional dependency"
0.049 2024-09-03 19:25:05+02:00 Europe/Brussels
- Make CPAN::Requirements::Dynamic an optional dependency
-------------------------------------------------------------------
Sun Jun 23 16:31:32 UTC 2024 - Tina Müller <tina.mueller@suse.com>
- updated to 0.48.0 (0.048)
see /usr/share/doc/packages/perl-Module-Build-Tiny/Changes
0.048 2024-04-28 14:58:04+02:00 Europe/Brussels
- Implement dynamic prerequisites
-------------------------------------------------------------------
Fri Mar 8 22:43:09 UTC 2024 - Tina Müller <tina.mueller@suse.com>
- Fix disabling of __perllib_provides
-------------------------------------------------------------------
Fri Sep 29 03:06:17 UTC 2023 - Tina Müller <timueller+perl@suse.de>
- updated to 0.047
see /usr/share/doc/packages/perl-Module-Build-Tiny/Changes
0.047 2023-09-28 17:53:41+02:00 Europe/Brussels
- Avoid using empty regex for backwards compatability
-------------------------------------------------------------------
Tue Jun 13 03:06:40 UTC 2023 - Tina Müller <timueller+perl@suse.de>
- updated to 0.046
see /usr/share/doc/packages/perl-Module-Build-Tiny/Changes
0.046 2023-06-01 19:31:21+02:00 Europe/Amsterdam
- Add src/ to include paths
0.045 2023-04-30 11:52:20+02:00 Europe/Brussels
- Fix compilation issue on Windows
0.044 2023-04-28 09:19:30+02:00 Europe/Brussels
- Add module sharedirs
- Only add src/*.c files to primary XS file
0.043 2023-04-19 02:05:14+02:00 Europe/Amsterdam
- Fix manification test for perls without man paths
0.042 2023-04-18 23:32:40+02:00 Europe/Amsterdam
- Restore manpage generation
- Add include/ to include paths
- Compile all .c files in src/
0.041 2023-04-17 16:03:06+02:00 Europe/Amsterdam
- Released without changes from 0.040
0.040 2023-02-05 23:06:28+01:00 Europe/Amsterdam (TRIAL RELEASE)
- Manify .pod after .pm
- Filter out script documentation from scripts
- Don't manify podless modules/scripts
-------------------------------------------------------------------
Mon Oct 27 09:28:46 UTC 2014 - ncutler@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package perl-Module-Build-Tiny
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -12,21 +12,21 @@
# 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-Module-Build-Tiny
Version: 0.039
Release: 0
%define cpan_name Module-Build-Tiny
Summary: A tiny replacement for Module::Build
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Module-Build-Tiny/
Source: http://www.cpan.org/authors/id/L/LE/LEONT/%{cpan_name}-%{version}.tar.gz
Name: perl-Module-Build-Tiny
Version: 0.51.0
Release: 0
# 0.051 -> normalize -> 0.51.0
%define cpan_version 0.051
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Tiny replacement for Module::Build
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/L/LE/LEONT/%{cpan_name}-%{cpan_version}.tar.gz
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(CPAN::Meta)
@ -49,6 +49,9 @@ Requires: perl(ExtUtils::ParseXS)
Requires: perl(Getopt::Long) >= 2.36
Requires: perl(JSON::PP) >= 2
Requires: perl(TAP::Harness::Env)
Provides: perl(Module::Build::Tiny) = %{version}
%undefine __perllib_provides
Recommends: perl(CPAN::Requirements::Dynamic)
%{perl_requires}
%description
@ -58,14 +61,14 @@ Traditionally, Build.PL uses Module::Build as the underlying build system.
This module provides a simple, lightweight, drop-in replacement.
Whereas Module::Build has over 6,700 lines of code; this module has less
than 120, yet supports the features needed by most distributions.
than 200, yet supports the features needed by most distributions.
%prep
%setup -q -n %{cpan_name}-%{version}
%autosetup -n %{cpan_name}-%{cpan_version}
%build
%{__perl} Build.PL --installdirs=vendor
./Build build flags=%{?_smp_mflags}
perl Build.PL --installdirs=vendor
./Build build --flags=%{?_smp_mflags}
%check
./Build test
@ -75,7 +78,7 @@ than 120, yet supports the features needed by most distributions.
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes LICENSE README Todo
%doc Changes README Todo
%license LICENSE
%changelog