forked from pool/perl-X500-DN
Compare commits
12 Commits
fea42c406c
...
e253277ce6
Author | SHA256 | Date | |
---|---|---|---|
e253277ce6 | |||
2cc2ec0662 | |||
5a243da169 | |||
36b333f08e | |||
|
d93d870f3f | ||
|
8dc6757245 | ||
|
80ea38d75d | ||
|
366972608a | ||
|
efc093b50d | ||
|
76f8a2d713 | ||
|
98fd043d76 | ||
a861242c45 |
13
X500-DN-dont_set_skip_to_undef.patch
Normal file
13
X500-DN-dont_set_skip_to_undef.patch
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
Index: X500-DN-0.29/DN.pm
|
||||||
|
===================================================================
|
||||||
|
--- X500-DN-0.29.orig/DN.pm 2013-06-19 15:59:14.041089488 +0200
|
||||||
|
+++ X500-DN-0.29/DN.pm 2013-06-19 15:59:26.211457683 +0200
|
||||||
|
@@ -43,7 +43,7 @@ Digit: /[0-9]/
|
||||||
|
#$::RD_HINT = 1;
|
||||||
|
|
||||||
|
local $::RD_AUTOACTION = q{ $item[1] };
|
||||||
|
-local $Parse::RecDescent::skip = undef;
|
||||||
|
+local $Parse::RecDescent::skip = '';
|
||||||
|
my $parser = new Parse::RecDescent ($rfc2253_grammar) or die "Bad RFC 2253 grammar!\n";
|
||||||
|
|
||||||
|
sub new
|
@@ -1,3 +1,34 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Mar 4 15:47:49 UTC 2024 - pgajdos@suse.com
|
||||||
|
|
||||||
|
- Use %autosetup macro. Allows to eliminate the usage of deprecated
|
||||||
|
%patchN
|
||||||
|
- modified patches
|
||||||
|
% version-string-fix.diff (refreshed)
|
||||||
|
% version-string-fix2.diff (refreshed)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Dec 2 14:25:49 UTC 2019 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
|
||||||
|
- No mix between numbered and unnumbered patches: RPM 4.15 finally
|
||||||
|
no longer supports that.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 19 13:27:34 UTC 2013 - vcizek@suse.com
|
||||||
|
|
||||||
|
- don't set $Parse::RecDescent::skip to 'undef' (bnc#799660)
|
||||||
|
* X500-DN-dont_set_skip_to_undef.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 19 09:07:28 UTC 2013 - coolo@suse.com
|
||||||
|
|
||||||
|
- add a url for the source
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 27 06:19:39 UTC 2013 - coolo@suse.com
|
||||||
|
|
||||||
|
- update license to new format
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 1 13:36:07 UTC 2010 - coolo@novell.com
|
Wed Dec 1 13:36:07 UTC 2010 - coolo@novell.com
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-X500-DN (Version 0.29)
|
# spec file for package perl-X500-DN
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2019 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -12,27 +12,26 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
|
||||||
|
|
||||||
|
|
||||||
Name: perl-X500-DN
|
Name: perl-X500-DN
|
||||||
License: Artistic-1.0 ; GPL-2.0+
|
|
||||||
Group: Development/Libraries/Perl
|
|
||||||
BuildRequires: perl-Parse-RecDescent
|
BuildRequires: perl-Parse-RecDescent
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
Requires: perl-Parse-RecDescent
|
Requires: perl-Parse-RecDescent
|
||||||
AutoReqProv: on
|
|
||||||
Summary: Provides an interface for RFC 2253 style DN strings
|
Summary: Provides an interface for RFC 2253 style DN strings
|
||||||
|
License: Artistic-1.0 OR GPL-2.0-or-later
|
||||||
|
Group: Development/Libraries/Perl
|
||||||
Version: 0.29
|
Version: 0.29
|
||||||
Release: 89
|
Release: 0
|
||||||
Source: X500-DN-%{version}.tar.gz
|
URL: http://search.cpan.org/dist/X500-DN/
|
||||||
|
Source0: http://www.cpan.org/authors/id/R/RJ/RJOOP/X500-DN-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
Patch0: version-string-fix.diff
|
||||||
Patch1: version-string-fix2.diff
|
Patch1: version-string-fix2.diff
|
||||||
|
Patch2: X500-DN-dont_set_skip_to_undef.patch
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
Patch: version-string-fix.diff
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
X500::DN Provides a pure perl parser and formatter for RFC 2253 style
|
X500::DN Provides a pure perl parser and formatter for RFC 2253 style
|
||||||
@@ -45,9 +44,7 @@ Authors:
|
|||||||
Robert Joop <yaph-020416@timesink.de>
|
Robert Joop <yaph-020416@timesink.de>
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -n X500-DN-%{version}
|
%autosetup -p1 -n X500-DN-%{version}
|
||||||
%patch
|
|
||||||
%patch1
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
--- DN.pm
|
--- a/DN.pm
|
||||||
+++ DN.pm 2008/02/25 11:27:32
|
+++ b/DN.pm 2008/02/25 11:27:32
|
||||||
@@ -4,7 +4,7 @@
|
@@ -4,7 +4,7 @@
|
||||||
|
|
||||||
package X500::DN;
|
package X500::DN;
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
--- DN.pm
|
--- a/DN.pm
|
||||||
+++ DN.pm 2008/10/08 11:23:14
|
+++ b/DN.pm 2008/10/08 11:23:14
|
||||||
@@ -7,7 +7,7 @@
|
@@ -7,7 +7,7 @@
|
||||||
use 5.006_001; # the "our" keyword below needs it
|
use 5.006_001; # the "our" keyword below needs it
|
||||||
use strict;
|
use strict;
|
||||||
|
Reference in New Issue
Block a user