Your message dated Wed, 03 Aug 2005 17:02:08 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#320064: fixed in pycurl 7.14.0-2
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 26 Jul 2005 19:00:57 +0000
>From [EMAIL PROTECTED] Tue Jul 26 12:00:57 2005
Return-path: <[EMAIL PROTECTED]>
Received: from mail.cs.tu-berlin.de [130.149.17.13] (root)
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1DxUfh-0005q1-00; Tue, 26 Jul 2005 12:00:57 -0700
Received: from mailhost.cs.tu-berlin.de ([EMAIL PROTECTED] [130.149.17.13])
        by mail.cs.tu-berlin.de (8.9.3p2/8.9.3) with ESMTP id VAA27928
        for <[EMAIL PROTECTED]>; Tue, 26 Jul 2005 21:00:54 +0200 (MEST)
Received: from localhost (localhost [127.0.0.1])
        by mailhost.cs.tu-berlin.de (Postfix) with ESMTP id 61B61F2B2
        for <[EMAIL PROTECTED]>; Tue, 26 Jul 2005 21:00:54 +0200 (MEST)
Received: from mailhost.cs.tu-berlin.de ([127.0.0.1])
 by localhost (bueno [127.0.0.1]) (amavisd-new, port 10224) with ESMTP
 id 21153-06 for <[EMAIL PROTECTED]>;
 Tue, 26 Jul 2005 21:00:54 +0200 (MEST) 13972
Received: from bolero.cs.tu-berlin.de (bolero.cs.tu-berlin.de [130.149.19.1])
        by mailhost.cs.tu-berlin.de (Postfix) with ESMTP
        for <[EMAIL PROTECTED]>; Tue, 26 Jul 2005 21:00:54 +0200 (MEST)
Received: (from [EMAIL PROTECTED])
        by bolero.cs.tu-berlin.de (8.12.10+Sun/8.12.8/Submit) id j6QJ0sXT021035;
        Tue, 26 Jul 2005 21:00:54 +0200 (MEST)
From: Matthias Klose <[EMAIL PROTECTED]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Message-ID: <[EMAIL PROTECTED]>
Date: Tue, 26 Jul 2005 21:00:53 +0200
To: [EMAIL PROTECTED]
Subject: pycurl update
X-Mailer: VM 7.17 under 21.4 (patch 17) "Jumbo Shrimp" XEmacs Lucid
X-Virus-Scanned: by amavisd-new at cs.tu-berlin.de
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

Package: pycurl
Severity: wishlist

the patch makes the pycurl package more independent from the default
python version and the available python versions.

dropped the 2.2 package as well. there's no need for it anymore.



diff -u pycurl-7.14.0/debian/control pycurl-7.14.0/debian/control
--- pycurl-7.14.0/debian/control
+++ pycurl-7.14.0/debian/control
@@ -3,19 +3,9 @@
 Priority: extra
 Maintainer: Domenico Andreoli <[EMAIL PROTECTED]>
 Uploaders: Matthias Klose <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>> 3.0.0), python2.2-dev, python2.3-dev, 
python2.4-dev, libcurl3-dev (>= 7.13.2)
+Build-Depends: debhelper (>> 3.0.0), python, python2.3-dev, python2.4-dev, 
libcurl3-dev (>= 7.13.2)
 Standards-Version: 3.6.1
 
-Package: python2.2-pycurl
-Architecture: any
-Suggests: libcurl3-dev
-Depends: ${shlibs:Depends}, python2.2
-Description: Python bindings to libcurl
- This module provides the Python bindings to libcurl. Please refer to
- the libcurl documentation available in libcurl3-dev Debian package.
- .
-  Homepage: http://pycurl.sourceforge.net
-
 Package: python2.3-pycurl
 Architecture: any
 Suggests: libcurl3-dev
diff -u pycurl-7.14.0/debian/rules pycurl-7.14.0/debian/rules
--- pycurl-7.14.0/debian/rules
+++ pycurl-7.14.0/debian/rules
@@ -9,24 +9,28 @@
 # This is the debhelper compatibility version to use.
 export DH_COMPAT=3
 
+PYVERS=$(subst -dev,,\
+           $(subst python,,\
+             $(filter python%-dev,\
+               $(shell sed -n '/^Build-Depends/s/,//gp' debian/control))))
+PYVER   := $(shell python -c 'import sys; print sys.version[:3]')
+
 build: build-stamp
 
 build-stamp: DH_OPTIONS=
-build-stamp:
+build-stamp: $(PYVERS:%=build-python%)
+       touch $@
+build-python%:
        dh_testdir
-       python2.2 setup.py build
-       python2.3 setup.py build
-       python2.4 setup.py build
+       python$* setup.py build
        touch build-stamp
 
 clean:
        dh_testdir
        dh_testroot
-       rm -f build-stamp
-       -python2.2 setup.py clean
-       -python2.3 setup.py clean
-       -python2.4 setup.py clean
+       rm -f build-*
        rm -rf build
+       -find -name '*.py[co]' | xargs rm -f
        dh_clean
 
 install: DH_OPTIONS=
@@ -35,9 +39,9 @@
        dh_testroot
        dh_clean -k
        dh_installdirs
-       install -m 644 build/lib.*-*-2.2/pycurl.so 
debian/python2.2-pycurl/usr/lib/python2.2/site-packages
-       install -m 644 build/lib.*-*-2.3/pycurl.so 
debian/python2.3-pycurl/usr/lib/python2.3/site-packages
-       install -m 644 build/lib.*-*-2.4/pycurl.so 
debian/python2.4-pycurl/usr/lib/python2.4/site-packages
+       for i in $(PYVERS); do \
+         install -m 644 build/lib.*-*-$$i/pycurl.so 
debian/python$$i-pycurl/usr/lib/python$$i/site-packages; \
+       done
 
 # Build architecture-independent files here.
 binary-indep: DH_OPTIONS=-i
@@ -49,9 +53,9 @@
 binary-arch: build install
        dh_testdir
        dh_testroot
-       cp -a doc/*.html 
debian/python2.2-pycurl/usr/share/doc/python2.2-pycurl/html
-       cp -a doc/*.html 
debian/python2.3-pycurl/usr/share/doc/python2.3-pycurl/html
-       cp -a doc/*.html 
debian/python2.4-pycurl/usr/share/doc/python2.4-pycurl/html
+       for i in $(PYVERS); do \
+         cp -a doc/*.html 
debian/python$$i-pycurl/usr/share/doc/python$$i-pycurl/html; \
+       done
        dh_installdocs -A TODO
        dh_installexamples -A examples/* tests/*
        dh_installchangelogs ChangeLog
reverted:
--- pycurl-7.14.0/debian/python2.2-pycurl.dirs
+++ pycurl-7.14.0.orig/debian/python2.2-pycurl.dirs
@@ -1,2 +0,0 @@
-usr/lib/python2.2/site-packages
-usr/share/doc/python2.2-pycurl/html
reverted:
--- pycurl-7.14.0/debian/python2.2-pycurl.doc-base
+++ pycurl-7.14.0.orig/debian/python2.2-pycurl.doc-base
@@ -1,9 +0,0 @@
-Document: python2.2-pycurl
-Title: PycURL
-Author: Markus F.X.J. Oberhumer, Kjetil Jacobsen
-Abstract: A Python interface to the cURL library
-Section: Apps/devel
-
-Format: HTML
-Index: /usr/share/doc/python2.2-pycurl/html/pycurl.html
-Files: /usr/share/doc/python2.2-pycurl/html/*.html

---------------------------------------
Received: (at 320064-close) by bugs.debian.org; 4 Aug 2005 00:09:21 +0000
>From [EMAIL PROTECTED] Wed Aug 03 17:09:21 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1E0TBY-0004OF-00; Wed, 03 Aug 2005 17:02:08 -0700
From: Domenico Andreoli <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#320064: fixed in pycurl 7.14.0-2
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Wed, 03 Aug 2005 17:02:08 -0700
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

Source: pycurl
Source-Version: 7.14.0-2

We believe that the bug you reported is fixed in the latest version of
pycurl, which is due to be installed in the Debian FTP archive:

pycurl_7.14.0-2.diff.gz
  to pool/main/p/pycurl/pycurl_7.14.0-2.diff.gz
pycurl_7.14.0-2.dsc
  to pool/main/p/pycurl/pycurl_7.14.0-2.dsc
python2.3-pycurl_7.14.0-2_i386.deb
  to pool/main/p/pycurl/python2.3-pycurl_7.14.0-2_i386.deb
python2.4-pycurl_7.14.0-2_i386.deb
  to pool/main/p/pycurl/python2.4-pycurl_7.14.0-2_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Domenico Andreoli <[EMAIL PROTECTED]> (supplier of updated pycurl package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Thu,  4 Aug 2005 00:33:41 +0200
Source: pycurl
Binary: python2.3-pycurl python2.4-pycurl
Architecture: source i386
Version: 7.14.0-2
Distribution: unstable
Urgency: low
Maintainer: Domenico Andreoli <[EMAIL PROTECTED]>
Changed-By: Domenico Andreoli <[EMAIL PROTECTED]>
Description: 
 python2.3-pycurl - Python bindings to libcurl
 python2.4-pycurl - Python bindings to libcurl
Closes: 320064
Changes: 
 pycurl (7.14.0-2) unstable; urgency=low
 .
   * Matthias Klose:
     - Dropped package python2.2-pycurl.
     - Improved the build process.
 .
   * Domenico Andreoli:
     - Applied Matthias' patch :) (closes: #320064).
Files: 
 060266e7cca273e119cc57d3fb2e03ea 690 python extra pycurl_7.14.0-2.dsc
 b9315e023f4856803a020161d6c102a3 3407 python extra pycurl_7.14.0-2.diff.gz
 a3a0d29a08fdf365f74658258f69370b 54890 python extra 
python2.3-pycurl_7.14.0-2_i386.deb
 7ed7e45d1261d80b408535ddc6247e65 54556 python extra 
python2.4-pycurl_7.14.0-2_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFC8VT4BneQM6IOvFARAkXAAKC62iDKgrNfnPVgvXrlL9MsrmeQ6gCg2G2n
mzOuKxm+W1AMpMCv5Cl3Alo=
=vm9c
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to