Compare commits
No commits in common. "c8-stream-6.34" and "c9s" have entirely different histories.
c8-stream-
...
c9s
6
.gitignore
vendored
6
.gitignore
vendored
@ -1 +1,5 @@
|
||||
SOURCES/NTLM-1.09.tar.gz
|
||||
/NTLM-1.05.tar.gz
|
||||
/perl-NTLM-licensing-email.tgz
|
||||
/NTLM-1.07.tar.gz
|
||||
/NTLM-1.08.tar.gz
|
||||
/NTLM-1.09.tar.gz
|
||||
|
||||
@ -1 +0,0 @@
|
||||
91064a6ce7ccf0eb8ef498a2f3dc3d30e9406dfe SOURCES/NTLM-1.09.tar.gz
|
||||
46
NTLM-1.09-Remove-shebangs-from-the-modules.patch
Normal file
46
NTLM-1.09-Remove-shebangs-from-the-modules.patch
Normal file
@ -0,0 +1,46 @@
|
||||
From 767179c773e45c28ef6ecaff01c8b62f8e240bc5 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
|
||||
Date: Tue, 17 Mar 2020 14:44:38 +0100
|
||||
Subject: [PATCH] Remove shebangs from the modules
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Signed-off-by: Petr Písař <ppisar@redhat.com>
|
||||
---
|
||||
DES/DES.pm | 1 -
|
||||
MD4/MD4.pm | 1 -
|
||||
NTLM.pm | 2 --
|
||||
3 files changed, 4 deletions(-)
|
||||
|
||||
diff --git a/DES/DES.pm b/DES/DES.pm
|
||||
index 04ab365..6210f44 100644
|
||||
--- a/DES/DES.pm
|
||||
+++ b/DES/DES.pm
|
||||
@@ -1,4 +1,3 @@
|
||||
-#!/usr/local/bin/perl
|
||||
#
|
||||
# This is an implementation of part of the DES specification. According
|
||||
# to the code this is ported from, this code does NOT enable 2-way
|
||||
diff --git a/MD4/MD4.pm b/MD4/MD4.pm
|
||||
index ba8f735..7d2b49d 100644
|
||||
--- a/MD4/MD4.pm
|
||||
+++ b/MD4/MD4.pm
|
||||
@@ -1,4 +1,3 @@
|
||||
-#!/usr/local/bin/perl
|
||||
#
|
||||
# This is a partial implentation of the MD4 checksum code.
|
||||
#
|
||||
diff --git a/NTLM.pm b/NTLM.pm
|
||||
index 60af70e..d7ae5ff 100644
|
||||
--- a/NTLM.pm
|
||||
+++ b/NTLM.pm
|
||||
@@ -1,5 +1,3 @@
|
||||
-#!/usr/local/bin/perl
|
||||
-
|
||||
package Authen::NTLM;
|
||||
use strict;
|
||||
use Authen::NTLM::DES;
|
||||
--
|
||||
2.21.1
|
||||
|
||||
@ -1,16 +1,35 @@
|
||||
# Perform optional tests
|
||||
%bcond_without perl_NTLM_enables_optional_test
|
||||
|
||||
Name: perl-NTLM
|
||||
Version: 1.09
|
||||
Release: 17%{?dist}
|
||||
Release: 30%{?dist}
|
||||
Summary: NTLM Perl module
|
||||
License: GPL+ or Artistic
|
||||
Group: Development/Libraries
|
||||
URL: http://search.cpan.org/dist/NTLM/
|
||||
Source0: http://search.cpan.org/CPAN/authors/id/N/NB/NBEBOUT/NTLM-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
URL: https://metacpan.org/release/NTLM
|
||||
Source0: https://cpan.metacpan.org/authors/id/N/NB/NBEBOUT/NTLM-%{version}.tar.gz
|
||||
# Remove useless shebangs from the module files, CPAN RT#132167,
|
||||
# submitted to the upstream
|
||||
Patch0: NTLM-1.09-Remove-shebangs-from-the-modules.patch
|
||||
BuildArch: noarch
|
||||
BuildRequires: make
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: perl(ExtUtils::MakeMaker) perl(Digest::HMAC_MD5)
|
||||
BuildRequires: perl(Test::More) perl(Test::Pod)
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
||||
# Run-time
|
||||
BuildRequires: perl(constant)
|
||||
BuildRequires: perl(Digest::HMAC_MD5)
|
||||
BuildRequires: perl(Exporter)
|
||||
BuildRequires: perl(MIME::Base64)
|
||||
BuildRequires: perl(strict)
|
||||
BuildRequires: perl(vars)
|
||||
# Tests
|
||||
BuildRequires: perl(Test::More)
|
||||
BuildRequires: perl(warnings)
|
||||
%if %{with perl_NTLM_enables_optional_test}
|
||||
# Optional tests
|
||||
BuildRequires: perl(Test::Pod)
|
||||
%endif
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
||||
|
||||
%description
|
||||
@ -21,34 +40,66 @@ on its own for NTLM authentication with other protocols (eg. HTTP).
|
||||
|
||||
%prep
|
||||
%setup -q -n NTLM-%{version}
|
||||
%patch0 -p1
|
||||
|
||||
%build
|
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||
make %{?_smp_mflags}
|
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
|
||||
%{make_build}
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
|
||||
|
||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
||||
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
|
||||
|
||||
%{make_install}
|
||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
||||
|
||||
%check
|
||||
make test
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc Changes README
|
||||
%{perl_vendorlib}/*
|
||||
%{_mandir}/man3/*
|
||||
|
||||
%changelog
|
||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.09-30
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.09-29
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.09-28
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.09-27
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.09-26
|
||||
- Perl 5.32 rebuild
|
||||
|
||||
* Tue Mar 17 2020 Petr Pisar <ppisar@redhat.com> - 1.09-25
|
||||
- Remove useless shebangs from the module files (CPAN RT#132167)
|
||||
|
||||
* Thu Feb 13 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.09-24
|
||||
- Specify all dependencies
|
||||
- Modernize spec file
|
||||
|
||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.09-23
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.09-22
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri May 31 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.09-21
|
||||
- Perl 5.30 rebuild
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.09-20
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.09-19
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Jun 28 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.09-18
|
||||
- Perl 5.28 rebuild
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.09-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
Loading…
Reference in New Issue
Block a user