#1 Tests
Merged 2 years ago by jplesnik. Opened 2 years ago by jplesnik.
Unknown source rawhide  into  rawhide

file added
+1
@@ -0,0 +1,1 @@

+ 1

file modified
+1
@@ -1,2 +1,3 @@

  /Digest-1.17.tar.gz

  /Digest-1.19.tar.gz

+ /Digest-1.20.tar.gz

file added
+7
@@ -0,0 +1,7 @@

+ --- !Policy

+ product_versions:

+   - fedora-*

+ decision_context: bodhi_update_push_stable

+ subject_type: koji_build

+ rules:

+   - !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional}

file modified
+40 -4
@@ -1,6 +1,6 @@

  Name:           perl-Digest

- Version:        1.19

- Release:        478%{?dist}

+ Version:        1.20

+ Release:        1%{?dist}

  Summary:        Modules that calculate message digests

  License:        GPL+ or Artistic

  URL:            https://metacpan.org/release/Digest
@@ -8,9 +8,10 @@

  BuildArch:      noarch

  BuildRequires:  coreutils

  BuildRequires:  make

- BuildRequires:  perl-interpreter

  BuildRequires:  perl-generators

+ BuildRequires:  perl-interpreter

  BuildRequires:  perl(:VERSION) >= 5.6

+ BuildRequires:  perl(Config)

  BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.76

  BuildRequires:  perl(strict)

  BuildRequires:  perl(warnings)
@@ -25,25 +26,53 @@

  Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))

  Requires:       perl(MIME::Base64)

  

+ # Filter modules bundled for tests

+ %global __provides_exclude_from %{?__provides_exclude_from:%__provides_exclude_from|}^%{_libexecdir}

+ 

  %description

  The Digest:: modules calculate digests, also called "fingerprints" or

  "hashes", of some data, called a message. The digest is (usually) some

  small/fixed size string. The actual size of the digest depends of the

  algorithm used. The message is simply a sequence of arbitrary bytes or bits.

  

+ %package tests

+ Summary:        Tests for %{name}

+ Requires:       %{name} = %{?epoch:%{epoch}:}%{version}-%{release}

+ Requires:       perl-Test-Harness

+ 

+ %description tests

+ Tests from %{name}. Execute them

+ with "%{_libexecdir}/%{name}/test".

+ 

  %prep

  %setup -q -n Digest-%{version}

  chmod -x digest-bench

  

+ # Help generators to recognize Perl scripts

+ for F in t/*.t; do

+     perl -i -MConfig -ple 'print $Config{startperl} if $. == 1 && !s{\A#!.*perl\b}{$Config{startperl}}' "$F"

+     chmod +x "$F"

+ done

+ 

  %build

  perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1

  %{make_build}

  

  %install

  %{make_install}

- %{_fixperms} $RPM_BUILD_ROOT/*

+ %{_fixperms} %{buildroot}/*

+ 

+ # Install tests

+ mkdir -p %{buildroot}%{_libexecdir}/%{name}

+ cp -a t %{buildroot}%{_libexecdir}/%{name}

+ cat > %{buildroot}%{_libexecdir}/%{name}/test << 'EOF'

+ #!/bin/sh

+ cd %{_libexecdir}/%{name} && exec prove -I . -j "$(getconf _NPROCESSORS_ONLN)"

+ EOF

+ chmod +x %{buildroot}%{_libexecdir}/%{name}/test

  

  %check

+ export HARNESS_OPTIONS=j$(perl -e 'if ($ARGV[0] =~ /.*-j([0-9][0-9]*).*/) {print $1} else {print 1}' -- '%{?_smp_mflags}')

  make test

  

  %files
@@ -51,7 +80,14 @@

  %{perl_vendorlib}/*

  %{_mandir}/man3/*

  

+ %files tests

+ %{_libexecdir}/%{name}

+ 

  %changelog

+ * Thu Sep 02 2021 Jitka Plesnikova <jplesnik@redhat.com> - 1.20-1

+ - 1.20 bump

+ - Package tests

+ 

  * Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.19-478

  - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild

  

file added
+5
@@ -0,0 +1,5 @@

+ summary: Sanity tests

+ discover:

+     how: fmf

+ execute:

+     how: tmt

file modified
+1 -1
@@ -1,1 +1,1 @@

- SHA512 (Digest-1.19.tar.gz) = 97eb738d64571abdcf3cec74479e5bdebbdb4f9658ff483de863fdf47aac1a3d32c10f9ecc52bc58f6041da26e92254cec9fd5a76a3b1c2d96b406ccf48add93

+ SHA512 (Digest-1.20.tar.gz) = bf65c9e3287be7b18a1ded9b518108a2933b5141af510268cabe0c41a7c437ab4f08504b0edf51e55f982d0956a3f41cb3b73bfd41a90799705418b1ac88db86

@@ -0,0 +1,4 @@

+ summary: Upstream tests

+ component: perl-Digest

+ require: perl-Digest-tests

+ test: /usr/libexec/perl-Digest/test