Accepting request 1097565 from devel:languages:perl:autoupdate

- 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

OBS-URL: https://build.opensuse.org/request/show/1097565
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Module-Build-Tiny?expand=0&rev=19
This commit is contained in:
Pedro Monreal Gonzalez 2023-07-11 07:39:44 +00:00 committed by Git OBS Bridge
parent 59ca412d70
commit cdafb320d0
4 changed files with 44 additions and 21 deletions

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

Binary file not shown.

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:be193027e2debb4c9926434aaf1aa46c9fc7bf4db83dcc347eb6e359ee878289
size 22153

View File

@ -1,3 +1,29 @@
-------------------------------------------------------------------
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 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 # spec file for package perl-Module-Build-Tiny
# #
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2023 SUSE LLC
# #
# 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
@ -12,21 +12,19 @@
# license that conforms to the Open Source Definition (Version 1.9) # license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative. # 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 %define cpan_name Module-Build-Tiny
Summary: A tiny replacement for Module::Build Name: perl-Module-Build-Tiny
License: Artistic-1.0 or GPL-1.0+ Version: 0.046
Group: Development/Libraries/Perl Release: 0
Url: http://search.cpan.org/dist/Module-Build-Tiny/ License: Artistic-1.0 OR GPL-1.0-or-later
Source: http://www.cpan.org/authors/id/L/LE/LEONT/%{cpan_name}-%{version}.tar.gz 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}-%{version}.tar.gz
BuildArch: noarch BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl BuildRequires: perl
BuildRequires: perl-macros BuildRequires: perl-macros
BuildRequires: perl(CPAN::Meta) BuildRequires: perl(CPAN::Meta)
@ -37,7 +35,6 @@ BuildRequires: perl(ExtUtils::InstallPaths) >= 0.002
BuildRequires: perl(ExtUtils::ParseXS) BuildRequires: perl(ExtUtils::ParseXS)
BuildRequires: perl(Getopt::Long) >= 2.36 BuildRequires: perl(Getopt::Long) >= 2.36
BuildRequires: perl(JSON::PP) >= 2 BuildRequires: perl(JSON::PP) >= 2
BuildRequires: perl(Module::Build)
BuildRequires: perl(TAP::Harness::Env) BuildRequires: perl(TAP::Harness::Env)
BuildRequires: perl(Test::More) >= 0.88 BuildRequires: perl(Test::More) >= 0.88
Requires: perl(CPAN::Meta) Requires: perl(CPAN::Meta)
@ -58,14 +55,14 @@ Traditionally, Build.PL uses Module::Build as the underlying build system.
This module provides a simple, lightweight, drop-in replacement. This module provides a simple, lightweight, drop-in replacement.
Whereas Module::Build has over 6,700 lines of code; this module has less 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 %prep
%setup -q -n %{cpan_name}-%{version} %autosetup -n %{cpan_name}-%{version}
%build %build
%{__perl} Build.PL --installdirs=vendor perl Build.PL --installdirs=vendor
./Build build flags=%{?_smp_mflags} ./Build build --flags=%{?_smp_mflags}
%check %check
./Build test ./Build test
@ -75,7 +72,7 @@ than 120, yet supports the features needed by most distributions.
%perl_gen_filelist %perl_gen_filelist
%files -f %{name}.files %files -f %{name}.files
%defattr(-,root,root,755) %doc Changes README Todo
%doc Changes LICENSE README Todo %license LICENSE
%changelog %changelog