09b6c7560c
* Give the distribution a META.yml file OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Digest-HMAC?expand=0&rev=5
74 lines
1.9 KiB
RPMSpec
74 lines
1.9 KiB
RPMSpec
#
|
|
# spec file for package perl-Digest-HMAC (Version 1.01)
|
|
#
|
|
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
# norootforbuild
|
|
|
|
|
|
Name: perl-Digest-HMAC
|
|
BuildRequires: perl-Digest-SHA1
|
|
Version: 1.02
|
|
Release: 629
|
|
Requires: perl-Digest-SHA1
|
|
Requires: perl = %{perl_version}
|
|
AutoReqProv: on
|
|
Group: Development/Libraries/Perl
|
|
License: Artistic
|
|
Url: http://cpan.org/modules/by-module/Digest/
|
|
Summary: Keyed Hashing for Message Authentication
|
|
Source: Digest-HMAC-%{version}.tar.bz2
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
HMAC is used for message integrity checks between two parties that
|
|
share a secret key. HMAC works in combination with another Digest
|
|
algorithm, usually MD5 or SHA-1. The HMAC mechanism is described in RFC
|
|
2104.
|
|
|
|
|
|
|
|
Authors:
|
|
--------
|
|
Graham Barr <gbarr@ti.com>
|
|
Gisle Aas <gisle@aas.no>
|
|
|
|
%prep
|
|
%setup -n Digest-HMAC-%{version} -q
|
|
|
|
%build
|
|
perl Makefile.PL
|
|
make %{?_smp_mflags}
|
|
|
|
%check
|
|
make test
|
|
|
|
%install
|
|
make DESTDIR=$RPM_BUILD_ROOT install_vendor
|
|
%perl_process_packlist
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc README Changes MANIFEST META.yml
|
|
%doc %{_mandir}/man?/*
|
|
%{perl_vendorlib}/Digest
|
|
%{perl_vendorarch}/auto/Digest
|
|
/var/adm/perl-modules/%{name}
|
|
|
|
%changelog
|