[libcrypt-openssl-ec-perl] 02/02: Update debian/* files

Xavier Guimard xguimard-guest at moszumanska.debian.org
Sat Nov 18 20:25:13 UTC 2017


This is an automated email from the git hooks/post-receive script.

xguimard-guest pushed a commit to branch master
in repository libcrypt-openssl-ec-perl.

commit b8ce8fa4406bc13a26d3fa2c99b9dcf849b80cfc
Author: Xavier Guimard <x.guimard at free.fr>
Date:   Sat Nov 18 21:24:27 2017 +0100

    Update debian/* files
---
 debian/changelog                     |   2 +-
 debian/clean                         |   1 +
 debian/control                       |  14 +--
 debian/copyright                     |  18 ++-
 debian/patches/series                |   1 +
 debian/patches/spelling-errors.patch | 213 +++++++++++++++++++++++++++++++++++
 6 files changed, 229 insertions(+), 20 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 6d419ee..30175fd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,5 @@
 libcrypt-openssl-ec-perl (1.31-1) UNRELEASED; urgency=low
 
-  * Initial Release. (Closes: #999999)
+  * Initial Release. (Closes: #882087)
 
  -- Xavier Guimard <x.guimard at free.fr>  Sat, 18 Nov 2017 20:57:36 +0100
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..7ba0a5a
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1 @@
+const-*.inc
diff --git a/debian/control b/debian/control
index dfdc162..9158f2c 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,8 @@ Priority: optional
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Xavier Guimard <x.guimard at free.fr>
 Build-Depends: debhelper (>= 9),
- libcrypt-openssl-bignum-perl (>= 0.04),
+ libcrypt-openssl-bignum-perl,
+ libssl-dev,
  perl
 Standards-Version: 4.1.1
 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libcrypt-openssl-ec-perl.git
@@ -15,15 +16,10 @@ Testsuite: autopkgtest-pkg-perl
 Package: libcrypt-openssl-ec-perl
 Architecture: any
 Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends},
- libcrypt-openssl-bignum-perl (>= 0.04)
+ libcrypt-openssl-bignum-perl
 Description: Perl extension for OpenSSL EC (Elliptic Curves) library
  Crypt::OpenSSL::EC provides a standard (non-OO) interface to the OpenSSL EC
- (Elliptic Curve) library. Some OO Calls are supported.
+ (Elliptic Curve) library. It provides the Crypt::OpenSSL::EC class which
+ defines some high level functions and constants. Some OO Calls are supported.
  .
  Most of the functions described in openssl/ec.h are supported.
- .
- It provides the Crypt::OpenSSL::EC class which defines some high level
- functions and constants. At also provides 4 other classes for managing EC
- objects:
- .
- This description was automagically extracted from the module by dh-make-perl.
diff --git a/debian/copyright b/debian/copyright
index b5fe1f4..7ec1d52 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -2,18 +2,16 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Source: https://metacpan.org/release/Crypt-OpenSSL-EC
 Upstream-Contact: Mike McCauley <mikem at airspayce.com>
 Upstream-Name: Crypt-OpenSSL-EC
-DISCLAIMER: This copyright info was automatically extracted
- from the perl module. It may not be accurate, so you better
- check the module sources in order to ensure the module for its
- inclusion in Debian or for general legal information. Please,
- if licensing information is incorrectly generated, file a bug
- on dh-make-perl.
- NOTE: Don't forget to remove this disclaimer once you are happy
- with this file.
 
 Files: *
-Copyright: Mike McCauley <mikem at airspayce.com>
-License: 
+Copyright: 2012 Mike McCauley <mikem at airspayce.com>
+License: Artistic or GPL-1+
+
+Files: ppport.h
+Copyright: 2004-2009, Marcus Holland-Moritz <mhx-cpan at gmx.net>
+ 2001, Paul Marquess <pmqs at cpan.org> (Version 2.x)
+ 1999, Kenneth Albanowski <kjahds at kjahds.com> (Version 1.x)
+License: Artistic or GPL-1+
 
 Files: debian/*
 Copyright: 2017, Xavier Guimard <x.guimard at free.fr>
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..38edaa7
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+spelling-errors.patch
diff --git a/debian/patches/spelling-errors.patch b/debian/patches/spelling-errors.patch
new file mode 100644
index 0000000..e184fbc
--- /dev/null
+++ b/debian/patches/spelling-errors.patch
@@ -0,0 +1,213 @@
+Description: Spelling errors
+Author: Xavier Guimard <x.guimard at free.fr>
+Forwarded: https://rt.cpan.org/Ticket/Display.html?id=123670
+Last-Update: 2017-11-18
+
+--- a/lib/Crypt/OpenSSL/EC.pm
++++ b/lib/Crypt/OpenSSL/EC.pm
+@@ -541,7 +541,7 @@
+   a      BIGNUM with parameter a of the equation
+   b      BIGNUM with parameter b of the equation
+   ctx    BN_CTX object (optional)
+- return 1 on success and 0 if an error occured
++ return 1 on success and 0 if an error occurred
+ 
+ =item Crypt::OpenSSL::EC::EC_GROUP::method_of($group);
+ 
+@@ -570,7 +570,7 @@
+   a      BIGNUM for parameter a of the equation
+   b      BIGNUM for parameter b of the equation
+   ctx    BN_CTX object (optional)
+- return 1 on success and 0 if an error occured
++ return 1 on success and 0 if an error occurred
+ 
+ =item Crypt::OpenSSL::EC::EC_GROUP::set_curve_GF2m($group, $p, $a, $b, $ctx);
+ 
+@@ -583,7 +583,7 @@
+   a      BIGNUM with parameter a of the equation
+   b      BIGNUM with parameter b of the equation
+   ctx    BN_CTX object (optional)
+-  return 1 on success and 0 if an error occured
++  return 1 on success and 0 if an error occurred
+ 
+ =item Crypt::OpenSSL::EC::EC_GROUP::get_curve_GF2m($group, $p, $a, $b, $ctx);
+ 
+@@ -595,7 +595,7 @@
+   a      BIGNUM for parameter a of the equation
+   b      BIGNUM for parameter b of the equation
+   ctx    BN_CTX object (optional)
+-  return 1 on success and 0 if an error occured
++  return 1 on success and 0 if an error occurred
+ 
+ 
+ =item Crypt::OpenSSL::EC::print_errs();
+@@ -626,7 +626,7 @@
+ Copies EC_POINT object
+   dst  destination EC_POINT object
+   src  source EC_POINT object
+-  return 1 on success and 0 if an error occured
++  return 1 on success and 0 if an error occurred
+ 
+ =item Crypt::OpenSSL::EC::EC_POINT::dup($src, $group);
+ 
+@@ -641,7 +641,7 @@
+ Sets a point to infinity (neutral element)
+   group  underlying EC_GROUP object
+   point  EC_POINT to set to infinity
+-  return 1 on success and 0 if an error occured
++  return 1 on success and 0 if an error occurred
+ 
+ =item Crypt::OpenSSL::EC::EC_POINT::get_Jprojective_coordinates_GFp($group, $p, $x, $y, $z, $ctx);
+ 
+@@ -652,7 +652,7 @@
+   y      BIGNUM for the y-coordinate
+   z      BIGNUM for the z-coordinate
+   ctx    BN_CTX object (optional)
+-  return 1 on success and 0 if an error occured
++  return 1 on success and 0 if an error occurred
+ 
+ =item Crypt::OpenSSL::EC::EC_POINT::set_affine_coordinates_GFp($group, $p, $x, $y, $ctx);
+ 
+@@ -662,7 +662,7 @@
+   x      BIGNUM with the x-coordinate
+   y      BIGNUM with the y-coordinate
+   ctx    BN_CTX object (optional)
+-  return 1 on success and 0 if an error occured
++  return 1 on success and 0 if an error occurred
+ 
+ =item Crypt::OpenSSL::EC::EC_POINT::get_affine_coordinates_GFp($group, $p, $x, $y, $ctx);
+ 
+@@ -672,7 +672,7 @@
+   x      BIGNUM for the x-coordinate
+   y      BIGNUM for the y-coordinate
+   ctx    BN_CTX object (optional)
+-  return 1 on success and 0 if an error occured
++  return 1 on success and 0 if an error occurred
+ 
+ =item Crypt::OpenSSL::EC::EC_POINT::set_compressed_coordinates_GFp($group, $p, $x, $y_bit, $ctx);
+ 
+@@ -682,7 +682,7 @@
+   x      BIGNUM with x-coordinate
+   y_bit  integer with the y-Bit (either 0 or 1)
+   ctx    BN_CTX object (optional)
+-  return 1 on success and 0 if an error occured
++  return 1 on success and 0 if an error occurred
+ 
+ =item Crypt::OpenSSL::EC::EC_POINT::set_affine_coordinates_GF2m($group, $p, $x, $y, $ctx);
+ 
+@@ -694,7 +694,7 @@
+   x      BIGNUM with the x-coordinate
+   y      BIGNUM with the y-coordinate
+   ctx    BN_CTX object (optional)
+-  return 1 on success and 0 if an error occured
++  return 1 on success and 0 if an error occurred
+ 
+ =item Crypt::OpenSSL::EC::EC_POINT::get_affine_coordinates_GF2m($group, $p, $x, $y, $ctx);
+ 
+@@ -706,7 +706,7 @@
+   x      BIGNUM for the x-coordinate
+   y      BIGNUM for the y-coordinate
+   ctx    BN_CTX object (optional)
+-  return 1 on success and 0 if an error occured
++  return 1 on success and 0 if an error occurred
+ 
+ =item Crypt::OpenSSL::EC::EC_POINT::set_compressed_coordinates_GF2m($group, $p, $x, $y_bit, $ctx);
+ 
+@@ -718,7 +718,7 @@
+   x      BIGNUM with x-coordinate
+   y_bit  integer with the y-Bit (either 0 or 1)
+   ctx    BN_CTX object (optional)
+-  \return 1 on success and 0 if an error occured
++  \return 1 on success and 0 if an error occurred
+ 
+ 
+ =item Crypt::OpenSSL::EC::EC_POINT::is_at_infinity($group, $p);
+@@ -744,7 +744,7 @@
+   p      EC_POINT object
+   buf    buffer with the encoded ec point
+   ctx    BN_CTX object (optional)
+-  return 1 on success and 0 if an error occured
++  return 1 on success and 0 if an error occurred
+ 
+ =item Crypt::OpenSSL::EC::EC_POINT::point2bn($group, $p, $form, $bn, $ctx);
+ 
+@@ -763,7 +763,7 @@
+   a      EC_POINT object with the first summand
+   b      EC_POINT object with the second summand
+   ctx    BN_CTX object (optional)
+-  return 1 on success and 0 if an error occured
++  return 1 on success and 0 if an error occurred
+ 
+ =item Crypt::OpenSSL::EC::EC_POINT::dbl($group, $r, $a, $ctx);
+ 
+@@ -772,7 +772,7 @@
+   r      EC_POINT object for the result (r = 2 * a)
+   a      EC_POINT object 
+   ctx    BN_CTX object (optional)
+-  return 1 on success and 0 if an error occured
++  return 1 on success and 0 if an error occurred
+ 
+ =item Crypt::OpenSSL::EC::EC_POINT::invert($group, $a, $ctx);
+ 
+@@ -780,7 +780,7 @@
+   group  underlying EC_GROUP object
+   a      EC_POINT object to be inverted (it's used for the result as well)
+   ctx    BN_CTX object (optional)
+-  return 1 on success and 0 if an error occured
++  return 1 on success and 0 if an error occurred
+ 
+ =item Crypt::OpenSSL::EC::EC_POINT::is_on_curve($group, $point, $ctx));
+ 
+@@ -817,7 +817,7 @@
+   order      the order of the group generated by the generator.
+   cofactor   the index of the sub-group generated by the generator
+            in the group of all points on the elliptic curve.
+-  return 1 on success and 0 if an error occured
++  return 1 on success and 0 if an error occurred
+ 
+ =item Crypt::OpenSSL::EC::EC_GROUP::get0_generator($group);
+ 
+@@ -899,7 +899,7 @@
+   group  EC_GROUP object
+   order  BIGNUM to which the order is copied
+   ctx    BN_CTX object (optional)
+-  return 1 on success and 0 if an error occured
++  return 1 on success and 0 if an error occurred
+ 
+ =item Crypt::OpenSSL::EC::EC_GROUP::get_cofactor($group, $cofactopr, $ctx)
+ 
+@@ -908,7 +908,7 @@
+   group     EC_GROUP object
+   cofactor  BIGNUM to which the cofactor is copied
+   ctx       BN_CTX object (optional)
+-  return 1 on success and 0 if an error occured
++  return 1 on success and 0 if an error occurred
+ 
+ =item Crypt::OpenSSL::EC::EC_GROUP::set_curve_name($group, $nid);
+ 
+@@ -936,7 +936,7 @@
+ 
+ =item    Crypt::OpenSSL::EC::EC_GROUP::get_point_conversion_form($group);
+ 
+-Retuns the point conversion for for the group
++Returns the point conversion for for the group
+ 
+ =item    Crypt::OpenSSL::EC::EC_GROUP::get0_seed($group);
+ 
+@@ -959,14 +959,14 @@
+   q      EC_POINT object with the first factor of the second summand
+   m      BIGNUM with the second factor of the second summand
+   ctx    BN_CTX object (optional)
+-  return 1 on success and 0 if an error occured
++  return 1 on success and 0 if an error occurred
+ 
+ =item    Crypt::OpenSSL::EC::EC_GROUP::precompute_mult($group, $ctx);
+ 
+ Stores multiples of generator for faster point multiplication
+   group  EC_GROUP object
+   ctx    BN_CTX object (optional)
+-  return 1 on success and 0 if an error occured
++  return 1 on success and 0 if an error occurred
+ 
+ =item    Crypt::OpenSSL::EC::EC_GROUP::have_precompute_mult($group);
+ 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libcrypt-openssl-ec-perl.git



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