r48827 - in /trunk/libcrypt-rijndael-perl: Changes META.yml Makefile.PL README Rijndael.pm Rijndael.xs debian/changelog debian/control debian/patches/01_manpage_section_fix.diff debian/rules t/test_manifest

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Wed Dec 16 01:50:32 UTC 2009


Author: jawnsy-guest
Date: Wed Dec 16 01:50:27 2009
New Revision: 48827

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=48827
Log:
* New upstream release
* Standards-Version 3.8.3 (drop perl version dep)
* Use new short debhelper rules format
* Add myself to Uploaders and Copyright
* Refresh patch

Modified:
    trunk/libcrypt-rijndael-perl/Changes
    trunk/libcrypt-rijndael-perl/META.yml
    trunk/libcrypt-rijndael-perl/Makefile.PL
    trunk/libcrypt-rijndael-perl/README
    trunk/libcrypt-rijndael-perl/Rijndael.pm
    trunk/libcrypt-rijndael-perl/Rijndael.xs
    trunk/libcrypt-rijndael-perl/debian/changelog
    trunk/libcrypt-rijndael-perl/debian/control
    trunk/libcrypt-rijndael-perl/debian/patches/01_manpage_section_fix.diff
    trunk/libcrypt-rijndael-perl/debian/rules
    trunk/libcrypt-rijndael-perl/t/test_manifest

Modified: trunk/libcrypt-rijndael-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-rijndael-perl/Changes?rev=48827&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/Changes (original)
+++ trunk/libcrypt-rijndael-perl/Changes Wed Dec 16 01:50:27 2009
@@ -1,3 +1,16 @@
+
+1.08 - Wed Dec  9 18:20:22 2009
+	* Promoting development release to full release.
+	* This release mainly clarifies the licensing.
+
+1.07_02 - Tue Nov  4 02:21:27 2008
+	* RT #40511: Give a better warning when you try to use tainted
+	data as an initialization vector. If anyone wants to use 
+	tainted data, they can patch the code to accept it.
+
+1.07_01 - Tue Oct 14 08:59:58 2008
+	* Clarify that these files are under the Lesser GNU Public License
+	(also known as the Library GNU Public License).
 
 1.07 - Fri Aug 15 16:53:36 2008
 	* Fixed the odd character problems in some of the files

Modified: trunk/libcrypt-rijndael-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-rijndael-perl/META.yml?rev=48827&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/META.yml (original)
+++ trunk/libcrypt-rijndael-perl/META.yml Wed Dec 16 01:50:27 2009
@@ -1,15 +1,23 @@
 --- #YAML:1.0
-name:                Crypt-Rijndael
-version:             1.07
-abstract:            Crypt::CBC compliant Rijndael encryption module
-license:             gpl
-author:              
+name:               Crypt-Rijndael
+version:            1.08
+abstract:           Crypt::CBC compliant Rijndael encryption module
+author:
     - Rafael R. Sevilla (maintained by brian d foy <bdfoy at cpan.org>)
-generated_by:        ExtUtils::MakeMaker version 6.44
-distribution_type:   module
-requires:     
-    Test::Manifest:                1.14
-    Test::More:                    0
+license:            gpl
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
+requires:
+    Test::Manifest:  1.14
+    Test::More:      0
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.50
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
-    version: 1.3
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4

Modified: trunk/libcrypt-rijndael-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-rijndael-perl/Makefile.PL?rev=48827&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/Makefile.PL (original)
+++ trunk/libcrypt-rijndael-perl/Makefile.PL Wed Dec 16 01:50:27 2009
@@ -1,4 +1,4 @@
-# $Id: Makefile.PL 2408 2007-11-20 13:54:31Z comdog $
+# $Id$
 
 require 5.006;
 

Modified: trunk/libcrypt-rijndael-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-rijndael-perl/README?rev=48827&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/README (original)
+++ trunk/libcrypt-rijndael-perl/README Wed Dec 16 01:50:27 2009
@@ -77,7 +77,12 @@
     and has been selected as the US Government's Advanced Encryption
     Standard.
 
+SOURCE
+    This code is in Github:
+
+            git://github.com/briandfoy/crypt-rijndael.git
+
 LICENSE
-    This software is licensed under the GNU Public License. See the included
-    COPYING file for details.
+    This software is licensed under the Lesser GNU Public License. See the
+    included COPYING file for details.
 

Modified: trunk/libcrypt-rijndael-perl/Rijndael.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-rijndael-perl/Rijndael.pm?rev=48827&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/Rijndael.pm (original)
+++ trunk/libcrypt-rijndael-perl/Rijndael.pm Wed Dec 16 01:50:27 2009
@@ -34,7 +34,7 @@
 
 require DynaLoader;
 
-$VERSION = '1.07';
+$VERSION = '1.08';
 @ISA = qw/DynaLoader/;
 
 bootstrap Crypt::Rijndael $VERSION;
@@ -118,9 +118,15 @@
 The Rijndael Algorithm was developed by Vincent Rijmen and Joan Daemen,
 and has been selected as the US Government's Advanced Encryption Standard.
 
+=head1 SOURCE
+
+This code is in Github:
+
+	git://github.com/briandfoy/crypt-rijndael.git
+	
 =head1 LICENSE
 
-This software is licensed under the GNU Public License. See the included
+This software is licensed under the Lesser GNU Public License. See the included
 COPYING file for details.
 
 =cut

Modified: trunk/libcrypt-rijndael-perl/Rijndael.xs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-rijndael-perl/Rijndael.xs?rev=48827&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/Rijndael.xs (original)
+++ trunk/libcrypt-rijndael-perl/Rijndael.xs Wed Dec 16 01:50:27 2009
@@ -1,3 +1,23 @@
+/* rijndael - An implementation of the Rijndael cipher.
+ * Copyright (C) 2000, 2001 Rafael R. Sevilla <sevillar at team.ph.inter.net>
+ *
+ * Currently maintained by brian d foy, <bdfoy at cpan.org>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the Free
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
 #include "EXTERN.h"
 #include "perl.h"
 #include "XSUB.h"
@@ -112,7 +132,7 @@
           STRLEN keysize;
           
           if (!SvPOK (key))
-            croak("key must be a string scalar");
+            croak("key must be an untainted string scalar");
 
           keysize = SvCUR(key);
 

Modified: trunk/libcrypt-rijndael-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-rijndael-perl/debian/changelog?rev=48827&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/debian/changelog (original)
+++ trunk/libcrypt-rijndael-perl/debian/changelog Wed Dec 16 01:50:27 2009
@@ -1,9 +1,17 @@
-libcrypt-rijndael-perl (1.07-2) UNRELEASED; urgency=low
+libcrypt-rijndael-perl (1.08-1) UNRELEASED; urgency=low
 
+  [ Jonathan Yu ]
+  * New upstream release
+  * Standards-Version 3.8.3 (drop perl version dep)
+  * Use new short debhelper rules format
+  * Add myself to Uploaders and Copyright
+  * Refresh patch
+
+  [ gregor herrmann ]
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
     (source stanza).
 
- -- gregor herrmann <gregoa at debian.org>  Sun, 16 Nov 2008 20:41:05 +0100
+ -- Jonathan Yu <jawnsy at cpan.org>  Tue, 15 Dec 2009 17:32:28 -0500
 
 libcrypt-rijndael-perl (1.07-1) unstable; urgency=low
 

Modified: trunk/libcrypt-rijndael-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-rijndael-perl/debian/control?rev=48827&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/debian/control (original)
+++ trunk/libcrypt-rijndael-perl/debian/control Wed Dec 16 01:50:27 2009
@@ -1,13 +1,14 @@
 Source: libcrypt-rijndael-perl
 Section: perl
 Priority: optional
+Build-Depends: perl, debhelper (>= 7.0.8), quilt (>= 0.46-7),
+ libtest-pod-perl, libtest-pod-coverage-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Gustavo Franco <stratus at debian.org>, Niko Tyni <ntyni at iki.fi>,
  Martín Ferrari <tincho at debian.org>, gregor herrmann <gregoa at debian.org>,
- Damyan Ivanov <dmn at debian.org>, Ansgar Burchardt <ansgar at 43-1.org>
-Build-Depends: debhelper (>= 7), perl (>= 5.8), libtest-pod-coverage-perl,
- libtest-pod-perl, quilt
-Standards-Version: 3.8.0
+ Damyan Ivanov <dmn at debian.org>, Ansgar Burchardt <ansgar at 43-1.org>,
+ Jonathan Yu <jawnsy at cpan.org>
+Standards-Version: 3.8.3
 Homepage: http://search.cpan.org/dist/Crypt-Rijndael/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libcrypt-rijndael-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libcrypt-rijndael-perl/
@@ -16,6 +17,6 @@
 Architecture: any
 Depends: ${shlibs:Depends}, ${perl:Depends}, ${misc:Depends}
 Description: Perl module implementing the Rijndael algorithm
- The Crypt::Rijndael module provides an XS-based implementation of the Advanced
- Encryption Standard (AES) algorithm Rijndael, designed by Joan Daemen and
- Vincent Rijmen.
+ Crypt::Rijndael is a Perl module that provides an XS-based implementation of
+ the Advanced Encryption Standard (AES) algorithm Rijndael, designed by Joan
+ Daemen and Vincent Rijmen.

Modified: trunk/libcrypt-rijndael-perl/debian/patches/01_manpage_section_fix.diff
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-rijndael-perl/debian/patches/01_manpage_section_fix.diff?rev=48827&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/debian/patches/01_manpage_section_fix.diff (original)
+++ trunk/libcrypt-rijndael-perl/debian/patches/01_manpage_section_fix.diff Wed Dec 16 01:50:27 2009
@@ -1,6 +1,6 @@
 --- a/Makefile.PL
 +++ b/Makefile.PL
-@@ -20,7 +20,7 @@ WriteMakefile(
+@@ -20,7 +20,7 @@
  
  
  	'MAN3PODS'     => {

Modified: trunk/libcrypt-rijndael-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-rijndael-perl/debian/rules?rev=48827&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/debian/rules (original)
+++ trunk/libcrypt-rijndael-perl/debian/rules Wed Dec 16 01:50:27 2009
@@ -1,25 +1,4 @@
 #!/usr/bin/make -f
 
-include /usr/share/quilt/quilt.make
-
-build: build-stamp
-build-stamp: $(QUILT_STAMPFN)
-	dh build
-	touch $@
-
-clean: unpatch
-	dh $@
-
-install: install-stamp
-install-stamp: build-stamp
-	dh install
-	touch $@
-
-binary-arch: install
-	dh $@
-
-binary-indep:
-
-binary: binary-arch binary-indep
-
-.PHONY: binary binary-arch binary-indep install clean build
+%:
+	dh --with quilt $@

Modified: trunk/libcrypt-rijndael-perl/t/test_manifest
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcrypt-rijndael-perl/t/test_manifest?rev=48827&op=diff
==============================================================================
--- trunk/libcrypt-rijndael-perl/t/test_manifest (original)
+++ trunk/libcrypt-rijndael-perl/t/test_manifest Wed Dec 16 01:50:27 2009
@@ -1,4 +1,4 @@
-# $Id: test_manifest 2305 2007-09-12 20:29:54Z comdog $
+# $Id$
 00_load.t
 pod.t
 pod_coverage.t




More information about the Pkg-perl-cvs-commits mailing list