8
0
Files
perl-Devel-CheckOS/perl-Devel-CheckOS.spec
Dirk Stoecker b3f5834b19 Accepting request 975104 from devel:languages:perl:autoupdate
- updated to 1.93
   see /usr/share/doc/packages/perl-Devel-CheckOS/CHANGELOG
  1.93    2022-04-25
  - No functional changes, just changes to where dependencies are declared
    https://github.com/DrHyde/perl-modules-Devel-CheckOS/issues/27
  1.92    2022-04-24
  - Fix bugs in new alias and case-insensitivity features which meant everything
    broke in taint-mode. The new features now no longer work in taint-mode but
    everything else should.
  1.91    2022-04-21
  - Fix tests for platforms where the OS is detected as something that is
    a family, but not as anything more specific, such as Fedora Linux
  1.90    2022-04-20
  - Matches are now case-insensitive
  - Add support for OS aliases
  - Deprecated the list_* functions being context sensitive, they now warn
    when called inappropriately. They will stop being context-sensitive some
    time after April 2024.

OBS-URL: https://build.opensuse.org/request/show/975104
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Devel-CheckOS?expand=0&rev=23
2022-05-11 16:28:47 +00:00

76 lines
2.6 KiB
RPMSpec

#
# spec file for package perl-Devel-CheckOS
#
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%define cpan_name Devel-CheckOS
Name: perl-Devel-CheckOS
Version: 1.93
Release: 0
#Upstream: This software is free-as-in-speech software, and may be used, distributed, and modified under the terms of either the GNU General Public Licence version 2 or the Artistic Licence. It's up to you which one you use. The full text of the licences can be found in the files GPL2.txt and ARTISTIC.txt, respectively.
License: Artistic-1.0 OR GPL-2.0-only
Summary: Check what OS we're running on
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/D/DC/DCANTRELL/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.64
BuildRequires: perl(File::Find::Rule) >= 0.28
BuildRequires: perl(File::Temp) >= 0.19
BuildRequires: perl(Test::More) >= 0.88
BuildRequires: perl(Test::Warnings)
Requires: perl(File::Find::Rule) >= 0.28
Requires: perl(File::Temp) >= 0.19
Requires: perl(Test::More) >= 0.88
Requires: perl(Test::Warnings)
%{perl_requires}
%description
A learned sage once wrote on IRC:
$^O is stupid and ugly, it wears its pants as a hat
Devel::CheckOS provides a more friendly interface to $^O, and also lets you
check for various OS "families" such as "Unix", which includes things like
Linux, Solaris, AIX etc.
It spares perl the embarrassment of wearing its pants on its head by
covering them with a splendid Fedora.
%prep
%autosetup -n %{cpan_name}-%{version}
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
%build
perl Makefile.PL INSTALLDIRS=vendor
%make_build
%check
make test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%doc CHANGELOG README TODO
%license ARTISTIC.txt GPL2.txt
%changelog