[Python-modules-commits] r7676 - in packages/pyopenssl/trunk/debian (4 files)

morph at users.alioth.debian.org morph at users.alioth.debian.org
Sat Feb 21 00:25:36 UTC 2009


    Date: Saturday, February 21, 2009 @ 00:25:35
  Author: morph
Revision: 7676

  - enhanced -doc descriptions and added a note for -dbg that's the debug pkg
* debian/copyright
  - fixed local license file to point to LGPL-2
  - added copyright notice for my packaging activities (2008-2009)
* debian/rules
  - merged 'rm' calls into 'dh_clean' one

Modified:
  packages/pyopenssl/trunk/debian/changelog
  packages/pyopenssl/trunk/debian/control
  packages/pyopenssl/trunk/debian/copyright
  packages/pyopenssl/trunk/debian/rules

Modified: packages/pyopenssl/trunk/debian/changelog
===================================================================
--- packages/pyopenssl/trunk/debian/changelog	2009-02-20 19:39:11 UTC (rev 7675)
+++ packages/pyopenssl/trunk/debian/changelog	2009-02-21 00:25:35 UTC (rev 7676)
@@ -1,13 +1,19 @@
-pyopenssl (0.8-1) UNRELEASED; urgency=low
+pyopenssl (0.8-1) unstable; urgency=low
 
   * New upstream release
   * debian/control
     - updated my email address
     - removed XS-DM-Upload-Allowed field
+    - enhanced -doc descriptions and added a note for -dbg that's the debug pkg
   * debian/patches/10_fix_doc_buildsystem.dpatch
     - added description
+  * debian/copyright
+    - fixed local license file to point to LGPL-2
+    - added copyright notice for my packaging activities (2008-2009)
+  * debian/rules
+    - merged 'rm' calls into 'dh_clean' one
 
- -- Sandro Tosi <morph at debian.org>  Tue, 23 Dec 2008 18:19:01 +0100
+ -- Sandro Tosi <morph at debian.org>  Sat, 21 Feb 2009 01:24:57 +0100
 
 pyopenssl (0.7-2) unstable; urgency=medium
 

Modified: packages/pyopenssl/trunk/debian/control
===================================================================
--- packages/pyopenssl/trunk/debian/control	2009-02-20 19:39:11 UTC (rev 7675)
+++ packages/pyopenssl/trunk/debian/control	2009-02-21 00:25:35 UTC (rev 7676)
@@ -43,9 +43,19 @@
 Section: doc
 Architecture: all
 Suggests: python-openssl
-Description: Documentation for pyOpenSSL
- This package provides documentation for the pyOpenSSL package,
- in HTML, postscript and text formats.
+Description: Python wrapper around the OpenSSL library (documentation package)
+ High-level wrapper around a subset of the OpenSSL library, includes
+ .
+   * SSL.Connection objects, wrapping the methods of Python's portable
+     sockets
+   * Callbacks written in Python
+   * Extensive error-handling mechanism, mirroring OpenSSL's error
+     codes
+ .
+ A lot of the object methods do nothing more than calling a
+ corresponding function in the OpenSSL library.
+ .
+ This package contains documentation for python-openssl.
 
 Package: pyopenssl-doc
 Section: doc
@@ -72,4 +82,5 @@
  .
  A lot of the object methods do nothing more than calling a
  corresponding function in the OpenSSL library.
-
+ .
+ This package contains the debug extension for python-openssl.

Modified: packages/pyopenssl/trunk/debian/copyright
===================================================================
--- packages/pyopenssl/trunk/debian/copyright	2009-02-20 19:39:11 UTC (rev 7675)
+++ packages/pyopenssl/trunk/debian/copyright	2009-02-21 00:25:35 UTC (rev 7676)
@@ -24,9 +24,12 @@
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
 
-A copy of the GNU Lesser General Public License (version 2.1)
-can be found in /usr/share/common-licenses/LGPL on Debian systems.
+A copy of the GNU Lesser General Public License (version 2)
+can be found in /usr/share/common-licenses/LGPL-2 on Debian systems.
 
+The Debian packaging is Copyright (C) 2008-2009, Sandro Tosi <morph at debian.org>
+and is licensed under the same terms as upstream code.
+
 The following files have different copyright info:
 
 File: /src/crypto/netscape_spki.{c,h}

Modified: packages/pyopenssl/trunk/debian/rules
===================================================================
--- packages/pyopenssl/trunk/debian/rules	2009-02-20 19:39:11 UTC (rev 7675)
+++ packages/pyopenssl/trunk/debian/rules	2009-02-21 00:25:35 UTC (rev 7676)
@@ -24,17 +24,17 @@
 clean: unpatch
 	dh_testdir
 	dh_testroot
-	rm -f build-stamp
 
 	-for py in $(PYVERS); do \
 	    $$py setup.py clean --all; \
 	    $$py-dbg setup.py clean --all; \
 	done
-	rm -rf build version.pyc
 
+	rm -rf build
+
 	$(MAKE) -C doc clean
 
-	dh_clean
+	dh_clean build-stamp version.pyc
 
 install: DH_OPTIONS=
 install: build




More information about the Python-modules-commits mailing list