# Detect the distribution in use %global __despace head -n 1 | tr -d '[:space:]' | sed -e 's/[(].*[)]//g' %global __lower4 cut -c 1-4 | tr '[:upper:]' '[:lower:]' %global __distfile %([ -f /etc/SuSE-release ] && echo /etc/SuSE-release || echo /etc/redhat-release) %global __distinit %(sed -e 's/ release .*//' -e 's/\\([A-Za-z]\\)[^ ]*/\\1/g' %{__distfile} | %{__despace} | %{__lower4}) %global __distvers %(sed -e 's/.* release \\([^. ]*\\).*/\\1/' %{__distfile} | %{__despace}) # Identify Alma, CentOS, CentOS Stream and Rocky Linux as rhel %if "%{__distinit}" == "a" || "%{__distinit}" == "c" || "%{__distinit}" == "cl" || "%{__distinit}" == "cs" || "%{__distinit}" == "rl" %global __distinit rhel %endif # Dist tag for Fedora is still "fc" %if "%{__distinit}" == "f" %global __distinit fc %endif #TODO: BR: perl(Test::CheckManifest) ≥ 1.24 when available # noarch, but to avoid debug* files interfering with manifest test: %global debug_package %{nil} # Similarly, for package note feature %undefine _package_note_file Name: perl-Software-License-CCpack Version: 1.11 Release: 39.%{__distinit}%{__distvers} Summary: Software::License pack for Creative Commons' licenses License: LGPL-3.0-only URL: https://metacpan.org/release/Software-License-CCpack Source0: https://cpan.metacpan.org/authors/id/B/BB/BBYRD/Software-License-CCpack-%{version}.tar.gz BuildArch: noarch # Module Build BuildRequires: coreutils BuildRequires: findutils BuildRequires: make BuildRequires: perl-generators BuildRequires: perl-interpreter BuildRequires: perl(ExtUtils::MakeMaker) # Module Runtime BuildRequires: perl(base) BuildRequires: perl(Software::License) BuildRequires: perl(strict) BuildRequires: perl(warnings) # Test Suite BuildRequires: perl(blib) BuildRequires: perl(CPAN::Meta) >= 2.120900 BuildRequires: perl(File::Spec) BuildRequires: perl(File::Spec::Functions) BuildRequires: perl(IO::Handle) BuildRequires: perl(IPC::Open3) BuildRequires: perl(List::Util) BuildRequires: perl(Test::CheckDeps) >= 0.010 BuildRequires: perl(Test::More) >= 0.96 # Extra Tests %if 0%{!?perl_bootstrap:1} BuildRequires: perl(Pod::Coverage::TrustPod) BuildRequires: perl(Test::CPAN::Meta::JSON) BuildRequires: perl(Test::DistManifest) BuildRequires: perl(Test::EOL) BuildRequires: perl(Test::MinimumVersion) BuildRequires: perl(Test::Mojibake) BuildRequires: perl(Test::NoTabs) BuildRequires: perl(Test::Pod) >= 1.41 BuildRequires: perl(Test::Pod::Coverage) >= 1.08 BuildRequires: perl(Test::Portability::Files) BuildRequires: perl(Test::Synopsis) BuildRequires: perl(Test::Vars) %endif # Dependencies %if 0%{?fedora} < 38 && 0%{?rhel} < 10 Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) %endif %description This "license pack" contains all of the licenses from Creative Commons, except for CC0, which is already included in Software::License. Note that I don't recommend using these licenses for your own CPAN modules (most of the licenses aren't even compatible with CPAN). However, S:L modules are useful for more than mere CPAN::Meta::license declaration, so these modules exist for those other purposes. %prep %setup -q -n Software-License-CCpack-%{version} %build perl Makefile.PL INSTALLDIRS=vendor make %{?_smp_mflags} %install make pure_install DESTDIR=%{buildroot} find %{buildroot} -type f -name .packlist -delete %{_fixperms} -c %{buildroot} %check make test %if 0%{!?perl_bootstrap:1} make test TEST_FILES="$(echo $(find xt/ -name '*.t'))" RELEASE_TESTING=1 %endif %files %license LICENSE %doc README %{perl_vendorlib}/Software/ %{_mandir}/man3/Software::License::CCpack.3* %{_mandir}/man3/Software::License::CC_BY_1_0.3* %{_mandir}/man3/Software::License::CC_BY_2_0.3* %{_mandir}/man3/Software::License::CC_BY_3_0.3* %{_mandir}/man3/Software::License::CC_BY_4_0.3* %{_mandir}/man3/Software::License::CC_BY_NC_1_0.3* %{_mandir}/man3/Software::License::CC_BY_NC_2_0.3* %{_mandir}/man3/Software::License::CC_BY_NC_3_0.3* %{_mandir}/man3/Software::License::CC_BY_NC_4_0.3* %{_mandir}/man3/Software::License::CC_BY_NC_ND_2_0.3* %{_mandir}/man3/Software::License::CC_BY_NC_ND_3_0.3* %{_mandir}/man3/Software::License::CC_BY_NC_ND_4_0.3* %{_mandir}/man3/Software::License::CC_BY_NC_SA_1_0.3* %{_mandir}/man3/Software::License::CC_BY_NC_SA_2_0.3* %{_mandir}/man3/Software::License::CC_BY_NC_SA_3_0.3* %{_mandir}/man3/Software::License::CC_BY_NC_SA_4_0.3* %{_mandir}/man3/Software::License::CC_BY_ND_1_0.3* %{_mandir}/man3/Software::License::CC_BY_ND_2_0.3* %{_mandir}/man3/Software::License::CC_BY_ND_3_0.3* %{_mandir}/man3/Software::License::CC_BY_ND_4_0.3* %{_mandir}/man3/Software::License::CC_BY_ND_NC_1_0.3* %{_mandir}/man3/Software::License::CC_BY_SA_1_0.3* %{_mandir}/man3/Software::License::CC_BY_SA_2_0.3* %{_mandir}/man3/Software::License::CC_BY_SA_3_0.3* %{_mandir}/man3/Software::License::CC_BY_SA_4_0.3* %{_mandir}/man3/Software::License::CC_PDM_1_0.3* %changelog * Tue Sep 17 2024 Paul Howarth - 1.11-39 - Test::Vars is fixed * Fri Jan 26 2024 Paul Howarth - 1.11-38 - Drop test dependency Test::Vars from Fedora 39 onwards since Test::Vars is FTBFS with Perl 5.38 * Tue May 16 2023 Paul Howarth - 1.11-34 - Use SPDX-format license tag * Fri Mar 11 2022 Paul Howarth - 1.11-30 - Work around FTBFS triggered by package note feature - Use %%license unconditionally * Tue Mar 10 2020 Paul Howarth - 1.11-21 - BR: perl(blib) for t/00-compile.t * Wed Jun 5 2019 Paul Howarth - 1.11-17 - Perl 5.30 rebuild * Fri Apr 13 2018 Paul Howarth - 1.11-11 - BR: perl-generators unconditionally - BR: perl-interpreter rather than perl - Drop support for EOL distributions prior to F-13 - Drop BuildRoot: and Group: tags - Drop explicit buildroot cleaning in %%install section - Drop explicit %%clean section - Drop workarounds for building with Test::More < 0.96 * Mon Sep 26 2016 Paul Howarth - 1.11-6 - BR: perl-generators where available - Re-enable use of Test::Vars universally - Simplify find command using -delete * Fri Jun 26 2015 Paul Howarth - 1.11-4 - Disable use of Test::Vars with Perl 5.22 (https://github.com/gfx/p5-Test-Vars/issues/11) * Tue Mar 17 2015 Paul Howarth - 1.11-2 - Don't run the extra tests when bootstrapping * Mon Oct 20 2014 Paul Howarth - 1.11-1 - Update to 1.11 - Include all versions of licenses, including the new 4.0 ones - Downgrade the Perl version to 5.6 - Fix links in POD - Minor clean-up of license files - Update patches as needed * Tue Oct 7 2014 Paul Howarth - 1.01-3 - Skip the CHANGES file until such time as it has some content (#1148040) * Mon Sep 29 2014 Paul Howarth - 1.01-1 - Initial RPM version