forked from pool/perl-Module-Build-Tiny
		
	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:
		@@ -1,7 +1,7 @@
 | 
			
		||||
#
 | 
			
		||||
# 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
 | 
			
		||||
# 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)
 | 
			
		||||
# 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.046
 | 
			
		||||
Release:        0
 | 
			
		||||
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}-%{version}.tar.gz
 | 
			
		||||
BuildArch:      noarch
 | 
			
		||||
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 | 
			
		||||
BuildRequires:  perl
 | 
			
		||||
BuildRequires:  perl-macros
 | 
			
		||||
BuildRequires:  perl(CPAN::Meta)
 | 
			
		||||
@@ -37,7 +35,6 @@ BuildRequires:  perl(ExtUtils::InstallPaths) >= 0.002
 | 
			
		||||
BuildRequires:  perl(ExtUtils::ParseXS)
 | 
			
		||||
BuildRequires:  perl(Getopt::Long) >= 2.36
 | 
			
		||||
BuildRequires:  perl(JSON::PP) >= 2
 | 
			
		||||
BuildRequires:  perl(Module::Build)
 | 
			
		||||
BuildRequires:  perl(TAP::Harness::Env)
 | 
			
		||||
BuildRequires:  perl(Test::More) >= 0.88
 | 
			
		||||
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.
 | 
			
		||||
 | 
			
		||||
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}-%{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 +72,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
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user