[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#153283: marked as done (mklibs: python portability fix?)



Your message dated Mon, 22 Jul 2002 19:17:29 -0400
with message-id <E17WmQj-000677-00@auric.debian.org>
and subject line Bug#153283: fixed in mklibs 0.1.3
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; 17 Jul 2002 14:54:49 +0000
>From dwhedon@kimdon.org Wed Jul 17 09:54:48 2002
Return-path: <dwhedon@kimdon.org>
Received: from 12-233-47-38.client.attbi.com (oink) [12.233.47.38] 
	by master.debian.org with esmtp (Exim 3.12 1 (Debian))
	id 17UqCW-0001Y8-00; Wed, 17 Jul 2002 09:54:48 -0500
Received: by oink (Postfix, from userid 1000)
	id E63F8735D9; Wed, 17 Jul 2002 07:56:47 -0700 (PDT)
Subject: mklibs: python portability fix?
From: "David Kimdon" <dwhedon@debian.org>
To: "Debian Bug Tracking System" <submit@bugs.debian.org>
X-Mailer: reportbug 1.99.47
Date: Wed, 17 Jul 2002 07:56:47 -0700
Message-Id: <[🔎] 20020717145647.E63F8735D9@oink>
Delivered-To: submit@bugs.debian.org

Package: mklibs
Version: 0.1.2
Severity: minor
Tags: patch


I have a report of the += syntax not working on Redhat 7.2, erroring
like this:

File "scripts/mklibs", line 225
debuglevel += 1
                ^
SyntaxError: invalid syntax

The included patch fixes the problem, I don't know what python version
was failing, whatever came with redhat 7.2 (not my machine and that
particular version doesn't support -V).

-David


Index: mklibs.py
===================================================================
RCS file: /cvs/debian-boot/mklibs/mklibs.py,v
retrieving revision 1.1.1.1
diff -u -b -B -w -p -u -r1.1.1.1 mklibs.py
--- mklibs.py	2002/06/11 19:58:46	1.1.1.1
+++ mklibs.py	2002/07/17 14:49:50
@@ -225,7 +225,7 @@ script_pattern = re.compile("^#!\s*/")
 for opt, arg in optlist:
     if opt in ("-v", "--verbose"):
         if debuglevel < DEBUG_SPAM:
-            debuglevel += 1
+            debuglevel = debuglevel + 1
     elif opt == "-L":
         lib_path = string.split(arg, ":")
     elif opt in ("-d", "--dest-dir"):
 
-- System Information:
Debian Release: 3.0
Architecture: i386
Kernel: Linux oink 2.4.18 #31 Fri May 31 09:20:28 PDT 2002 i686
Locale: LANG=C, LC_CTYPE=C

Versions of packages mklibs depends on:
ii  python                        2.1.3-3    An interactive object-oriented scr

-- no debconf information


---------------------------------------
Received: (at 153283-close) by bugs.debian.org; 22 Jul 2002 23:20:18 +0000
>From katie@auric.debian.org Mon Jul 22 18:20:18 2002
Return-path: <katie@auric.debian.org>
Received: from auric.debian.org [206.246.226.45] (mail)
	by master.debian.org with esmtp (Exim 3.12 1 (Debian))
	id 17WmTS-0004DN-00; Mon, 22 Jul 2002 18:20:18 -0500
Received: from katie by auric.debian.org with local (Exim 3.12 1 (Debian))
	id 17WmQj-000677-00; Mon, 22 Jul 2002 19:17:29 -0400
From: Tollef Fog Heen <tfheen@debian.org>
To: 153283-close@bugs.debian.org
X-Katie: $Revision: 1.25 $
Subject: Bug#153283: fixed in mklibs 0.1.3
Message-Id: <E17WmQj-000677-00@auric.debian.org>
Sender: Archive Administrator <katie@auric.debian.org>
Date: Mon, 22 Jul 2002 19:17:29 -0400
Delivered-To: 153283-close@bugs.debian.org

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

mklibs_0.1.3.dsc
  to pool/main/m/mklibs/mklibs_0.1.3.dsc
mklibs_0.1.3.tar.gz
  to pool/main/m/mklibs/mklibs_0.1.3.tar.gz
mklibs_0.1.3_all.deb
  to pool/main/m/mklibs/mklibs_0.1.3_all.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 153283@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Tollef Fog Heen <tfheen@debian.org> (supplier of updated mklibs 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 ftpmaster@debian.org)


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

Format: 1.7
Date: Tue, 23 Jul 2002 01:00:59 +0200
Source: mklibs
Binary: mklibs
Architecture: source all
Version: 0.1.3
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team <debian-boot@lists.debian.org>
Changed-By: Tollef Fog Heen <tfheen@debian.org>
Description: 
 mklibs     - Shared library reduction script
Closes: 153283
Changes: 
 mklibs (0.1.3) unstable; urgency=low
 .
   * use debuglevel = debuglevel + 1 instead of += construct, since it
     seems like some older pythons doesn't like that syntax.
     (closes: #153283)
Files: 
 d1e790a2757093df00e5f9516d9ef590 594 devel optional mklibs_0.1.3.dsc
 eba45b904b6e59e4a72d1d66d437efe5 7262 devel optional mklibs_0.1.3.tar.gz
 ae3badcf61bb51bc272492d3af9ec26d 7770 devel optional mklibs_0.1.3_all.deb

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

iD8DBQE9PI7aQSseMYF6mWoRAtaDAKC+Ur6rTg5IECqGHlLAGUyBPbHs3gCcCzTS
41N5OzQVZXFrViIAM44aaR0=
=ICiS
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to debian-boot-request@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org



Reply to: