Hello community, here is the log from the commit of package perl-Crypt-DES for openSUSE:Factory checked in at 2013-07-30 16:37:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-Crypt-DES (Old) and /work/SRC/openSUSE:Factory/.perl-Crypt-DES.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Crypt-DES" Changes: -------- --- /work/SRC/openSUSE:Factory/perl-Crypt-DES/perl-Crypt-DES.changes 2013-06-25 06:59:36.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.perl-Crypt-DES.new/perl-Crypt-DES.changes 2013-07-30 16:37:52.000000000 +0200 @@ -1,0 +2,15 @@ +Mon Jul 29 12:11:49 UTC 2013 - [email protected] + +- license update: BSD-3-Clause + See Copyright + +------------------------------------------------------------------- +Sat Jul 27 11:58:30 UTC 2013 - [email protected] + +- updated to 2.07 + SvUPGRADE was changed to a statement. + a minor bug in META.yml was fixed. +- remove old svupgrade.patch + + +------------------------------------------------------------------- Old: ---- Crypt-DES-2.05.tar.gz svupgrade.patch New: ---- Crypt-DES-2.07.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Crypt-DES.spec ++++++ --- /var/tmp/diff_new_pack.2Y339G/_old 2013-07-30 16:37:52.000000000 +0200 +++ /var/tmp/diff_new_pack.2Y339G/_new 2013-07-30 16:37:53.000000000 +0200 @@ -17,21 +17,18 @@ Name: perl-Crypt-DES +Version: 2.07 +Release: 0 %define cpan_name Crypt-DES Summary: Perl DES encryption module -License: Artistic-1.0 +License: BSD-3-Clause Group: Development/Libraries/Perl -Version: 2.05 -Release: 0 Url: http://search.cpan.org/dist/Crypt-DES/ -#Source: http://www.cpan.org/authors/id/D/DP/DPARIS/Crypt-DES-2.05.tar.gz -Source: %{cpan_name}-%{version}.tar.gz -Patch0: svupgrade.patch +Source: http://www.cpan.org/authors/id/D/DP/DPARIS/%{cpan_name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build -%{perl_requires} BuildRequires: perl BuildRequires: perl-macros -BuildRequires: perl(Crypt::CBC) +%{perl_requires} %description The module implements the Crypt::CBC interface, which has the following @@ -42,16 +39,12 @@ =item encrypt =item decrypt -Authors: --------- - Eric Young ([email protected]) - %prep %setup -q -n %{cpan_name}-%{version} -%patch0 -p1 +find . -type f -print0 | xargs -0 chmod 644 %build -%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" +%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}" %{__make} %{?_smp_mflags} %check @@ -59,24 +52,11 @@ %install %perl_make_install -### since 11.4 perl_process_packlist -### removes .packlist, perllocal.pod files -%if 0%{?suse_version} > 1130 %perl_process_packlist -%else -# do not perl_process_packlist -# remove .packlist file -%{__rm} -f $RPM_BUILD_ROOT%perl_vendorarch/auto/Crypt/DES/.packlist -# remove perllocal.pod file -%{__rm} -f $RPM_BUILD_ROOT%perl_archlib/perllocal.pod -%endif %perl_gen_filelist -%clean -%{__rm} -rf $RPM_BUILD_ROOT - %files -f %{name}.files -%defattr(-,root,root,-) +%defattr(-,root,root,755) %doc COPYRIGHT README %changelog ++++++ Crypt-DES-2.05.tar.gz -> Crypt-DES-2.07.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Crypt-DES-2.05/DES.pm new/Crypt-DES-2.07/DES.pm --- old/Crypt-DES-2.05/DES.pm 2005-12-08 17:18:58.000000000 +0100 +++ new/Crypt-DES-2.07/DES.pm 2013-07-23 22:41:38.000000000 +0200 @@ -19,7 +19,7 @@ # Other items we are prepared to export if requested @EXPORT_OK = qw(); -$VERSION = '2.05'; +$VERSION = '2.07'; bootstrap Crypt::DES $VERSION; use strict; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Crypt-DES-2.05/DES.xs new/Crypt-DES-2.07/DES.xs --- old/Crypt-DES-2.05/DES.xs 2005-12-08 16:52:50.000000000 +0100 +++ new/Crypt-DES-2.07/DES.xs 2013-07-23 17:23:00.000000000 +0200 @@ -64,8 +64,7 @@ output = sv_newmortal(); output_len = 8; - if (!SvUPGRADE(output, SVt_PV)) - croak("cannot use output argument as lvalue"); + (SvUPGRADE(output, SVt_PV)); perl_des_crypt(input, SvGROW(output, output_len), (i32 *)ks, enc_flag); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Crypt-DES-2.05/META.yml new/Crypt-DES-2.07/META.yml --- old/Crypt-DES-2.05/META.yml 2005-12-08 17:21:12.000000000 +0100 +++ new/Crypt-DES-2.07/META.yml 2013-07-23 22:42:52.000000000 +0200 @@ -1,10 +1,20 @@ -# http://module-build.sourceforge.net/META-spec.html -#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX# -name: Crypt-DES -version: 2.05 -version_from: DES.pm -installdirs: site -requires: - -distribution_type: module -generated_by: ExtUtils::MakeMaker version 6.30 +--- #YAML:1.0 +name: Crypt-DES +version: 2.07 +abstract: ~ +author: [] +license: unknown +distribution_type: module +configure_requires: + ExtUtils::MakeMaker: 0 +build_requires: + ExtUtils::MakeMaker: 0 +requires: {} +no_index: + directory: + - t + - inc +generated_by: ExtUtils::MakeMaker version 6.55_02 +meta-spec: + url: http://module-build.sourceforge.net/META-spec-v1.4.html + version: 1.4 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Crypt-DES-2.05/README new/Crypt-DES-2.07/README --- old/Crypt-DES-2.05/README 2005-12-08 17:21:05.000000000 +0100 +++ new/Crypt-DES-2.07/README 2013-07-23 22:42:40.000000000 +0200 @@ -18,6 +18,10 @@ _des_ since the 2.04 release didn't seem to fix the problem on Solaris. +In release 2.06, SvUPGRADE was changed to a statement. + +In release 2.07, a minor bug in META.yml was fixed. + Prerequisites ------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Crypt-DES-2.05/test.pl new/Crypt-DES-2.07/test.pl --- old/Crypt-DES-2.05/test.pl 2005-12-08 17:19:23.000000000 +0100 +++ new/Crypt-DES-2.07/test.pl 2013-07-23 22:41:55.000000000 +0200 @@ -23,7 +23,7 @@ # Other items we are prepared to export if requested @EXPORT_OK = qw(); -$VERSION = '2.05'; +$VERSION = '2.07'; bootstrap Crypt::DES; use strict; -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
