Sync from SUSE:SLFO:Main perl-Crypt-DES revision 910ec542114ec11514a4d5a5d2078b8e

This commit is contained in:
Adrian Schröter 2024-05-03 17:59:18 +02:00
commit 025ad032f9
4 changed files with 186 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

BIN
Crypt-DES-2.07.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

98
perl-Crypt-DES.changes Normal file
View File

@ -0,0 +1,98 @@
-------------------------------------------------------------------
Mon Jul 29 12:11:49 UTC 2013 - cfarrell@suse.com
- license update: BSD-3-Clause
See Copyright
-------------------------------------------------------------------
Sat Jul 27 11:58:30 UTC 2013 - coolo@suse.com
- updated to 2.07
SvUPGRADE was changed to a statement.
a minor bug in META.yml was fixed.
- remove old svupgrade.patch
-------------------------------------------------------------------
Fri Jun 21 09:02:52 UTC 2013 - coolo@suse.com
- add svupgrade.patch from RT#82943
-------------------------------------------------------------------
Fri Nov 18 11:07:16 UTC 2011 - coolo@suse.com
- use original .tar.gz
-------------------------------------------------------------------
Wed Dec 1 13:31:16 UTC 2010 - coolo@novell.com
- switch to perl_requires macro
-------------------------------------------------------------------
Wed Nov 24 16:40:57 UTC 2010 - chris@computersalat.de
- recreated by cpanspec 1.78
o fix deps
-------------------------------------------------------------------
Tue Oct 19 08:38:26 UTC 2010 - coolo@novell.com
- add perl as explicit buildrequire
-------------------------------------------------------------------
Sun Jan 10 15:43:32 CET 2010 - jengelh@medozas.de
- enable parallel build
-------------------------------------------------------------------
Wed Jan 25 21:39:35 CET 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
-------------------------------------------------------------------
Tue Jan 3 13:33:17 CET 2006 - anicka@suse.cz
- update to 2.05
-------------------------------------------------------------------
Sun Jan 11 10:19:24 CET 2004 - adrian@suse.de
- build as user
-------------------------------------------------------------------
Fri Aug 22 14:19:19 CEST 2003 - mjancar@suse.cz
- require the perl version we build with
-------------------------------------------------------------------
Thu Aug 21 00:35:57 CEST 2003 - ro@suse.de
- remove perl-Crypt-CBC from neededforbuild (not really used)
-------------------------------------------------------------------
Mon Jul 14 13:56:15 CEST 2003 - mls@suse.de
- fix build
-------------------------------------------------------------------
Wed Jun 04 19:05:11 CEST 2003 - mjancar@suse.cz
- use $RPM_OPT_FLAGS
- add missing prototypes
-------------------------------------------------------------------
Tue May 20 12:42:07 CEST 2003 - mjancar@suse.cz
- remove unpackaged files
-------------------------------------------------------------------
Tue Jul 2 17:40:06 MEST 2002 - mls@suse.de
- remove race in .packlist generation
-------------------------------------------------------------------
Tue Mar 12 17:39:33 CET 2002 - jantos@suse.cz
- Package created

62
perl-Crypt-DES.spec Normal file
View File

@ -0,0 +1,62 @@
#
# spec file for package perl-Crypt-DES
#
# Copyright (c) 2013 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/
#
Name: perl-Crypt-DES
Version: 2.07
Release: 0
%define cpan_name Crypt-DES
Summary: Perl DES encryption module
License: BSD-3-Clause
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Crypt-DES/
Source: http://www.cpan.org/authors/id/D/DP/DPARIS/%{cpan_name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
%{perl_requires}
%description
The module implements the Crypt::CBC interface, which has the following
methods
* blocksize
=item keysize
=item encrypt
=item decrypt
%prep
%setup -q -n %{cpan_name}-%{version}
find . -type f -print0 | xargs -0 chmod 644
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
%{__make} %{?_smp_mflags}
%check
%{__make} test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc COPYRIGHT README
%changelog