Your message dated Sun, 15 Jan 2006 04:47:06 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#347406: fixed in gsfonts-x11 0.18
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; 10 Jan 2006 14:49:34 +0000
>From [EMAIL PROTECTED] Tue Jan 10 06:49:34 2006
Return-path: <[EMAIL PROTECTED]>
Received: from srv-smtp.math.univ-rennes1.fr ([129.20.36.164])
        by spohr.debian.org with esmtp (Exim 4.50)
        id 1EwKoX-0000lH-Mz
        for [EMAIL PROTECTED]; Tue, 10 Jan 2006 06:49:34 -0800
Received: from frobnitz.homelinux.net (dyn37004.math.univ-rennes1.fr 
[129.20.37.4])
        by srv-smtp.math.univ-rennes1.fr (Postfix) with ESMTP id 12572B88E
        for <[EMAIL PROTECTED]>; Tue, 10 Jan 2006 15:49:02 +0100 (CET)
Received: from daniel by frobnitz.homelinux.net with local (Exim 4.60)
        (envelope-from <[EMAIL PROTECTED]>)
        id 1EwKo1-0005Z7-8U
        for [EMAIL PROTECTED]; Tue, 10 Jan 2006 15:49:01 +0100
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: gsfonts-x11: FTBFS with new make
From: Daniel Schepler <[EMAIL PROTECTED]>
Date: Tue, 10 Jan 2006 15:49:00 +0100
Message-ID: <[EMAIL PROTECTED]>
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="=-=-="
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: gsfonts-x11
Version: 0.17
Severity: serious
Tags: patch

>From my pbuilder build log:

...
perl -e 'my $lines=""; my $count=0; \
                 while (<>) { \
                    next if /^\d+$/; \
                    $lines.=$_; $count++; \
                    if(/iso8859-1/) { \
                       s/iso8859-1/iso8859-2/g; \
                       $lines.=$_; $count++; \
                       s/iso8859-2/iso8859-15/g; \
                       $lines.=$_; $count++; \
                    } \
                 } \
                 print "$count\n$lines";' \
                 < fonts.scale \
                 > 
`pwd`/debian/gsfonts-x11/etc/X11/fonts/Type1/gsfonts-x11.scale
syntax error at -e line 2, near "while"
syntax error at -e line 5, near "if"
syntax error at -e line 10, near "}"
Execution of -e aborted due to compilation errors.
make: *** [install] Error 255

I've attached a patch which fixes the build for me.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

Versions of packages gsfonts-x11 depends on:
ii  gsfonts               8.14+v8.11+urw-0.2 Fonts for the Ghostscript interpre
ii  xutils                6.9.0.dfsg.1-2     X Window System utility programs

gsfonts-x11 recommends no packages.

-- no debconf information

--=-=-=
Content-Type: text/x-patch
Content-Disposition: attachment; filename=gsfonts-x11.diff

diff -urN gsfonts-x11-0.17.old/debian/rules gsfonts-x11-0.17/debian/rules
--- gsfonts-x11-0.17.old/debian/rules   2003-03-02 14:02:53.000000000 +0000
+++ gsfonts-x11-0.17/debian/rules       2006-01-10 14:44:04.000000000 +0000
@@ -33,28 +33,28 @@
                        $(debroot)/usr/X11R6/lib/X11/fonts/Type1/$$f; \
        done
 
-       perl -e 'my $$lines=""; my $$count=0; \
-                while (<>) { \
-                   next if /^\d+$$/; \
-                   $$lines.=$$_; $$count++; \
-                   if(/iso8859-1/) { \
-                      s/iso8859-1/iso8859-2/g; \
-                      $$lines.=$$_; $$count++; \
-                      s/iso8859-2/iso8859-15/g; \
-                      $$lines.=$$_; $$count++; \
-                   } \
-                } \
-                print "$$count\n$$lines";' \
+       perl -e 'my $$lines=""; my $$count=0; '\
+'               while (<>) { '\
+'                  next if /^\d+$$/; '\
+'                  $$lines.=$$_; $$count++; '\
+'                  if(/iso8859-1/) { '\
+'                     s/iso8859-1/iso8859-2/g; '\
+'                     $$lines.=$$_; $$count++; '\
+'                     s/iso8859-2/iso8859-15/g; '\
+'                     $$lines.=$$_; $$count++; '\
+'                  } '\
+'               } '\
+'               print "$$count\n$$lines";' \
                 < fonts.scale \
                 > $(debroot)/etc/X11/fonts/Type1/gsfonts-x11.scale
 
-       perl -ne 'print; \
-                 if (/iso8859-1/) { \
-                    s/iso8859-1/iso8859-2/g; \
-                    print; \
-                    s/iso8859-2/iso8859-15/g; \
-                    print; \
-                 }' \
+       perl -ne 'print; '\
+'                if (/iso8859-1/) { '\
+'                   s/iso8859-1/iso8859-2/g; '\
+'                   print; '\
+'                   s/iso8859-2/iso8859-15/g; '\
+'                   print; '\
+'                }' \
                  < fonts.alias \
                  > $(debroot)/etc/X11/fonts/Type1/gsfonts-x11.alias
 

--=-=-=--

---------------------------------------
Received: (at 347406-close) by bugs.debian.org; 15 Jan 2006 12:52:37 +0000
>From [EMAIL PROTECTED] Sun Jan 15 04:52:36 2006
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 4.50)
        id 1Ey7Hm-0007RQ-Si; Sun, 15 Jan 2006 04:47:06 -0800
From: Roland Rosenfeld <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.65 $
Subject: Bug#347406: fixed in gsfonts-x11 0.18
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sun, 15 Jan 2006 04:47:06 -0800
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: gsfonts-x11
Source-Version: 0.18

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

gsfonts-x11_0.18.dsc
  to pool/main/g/gsfonts-x11/gsfonts-x11_0.18.dsc
gsfonts-x11_0.18.tar.gz
  to pool/main/g/gsfonts-x11/gsfonts-x11_0.18.tar.gz
gsfonts-x11_0.18_all.deb
  to pool/main/g/gsfonts-x11/gsfonts-x11_0.18_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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Roland Rosenfeld <[EMAIL PROTECTED]> (supplier of updated gsfonts-x11 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: Sun, 15 Jan 2006 13:15:22 +0100
Source: gsfonts-x11
Binary: gsfonts-x11
Architecture: source all
Version: 0.18
Distribution: unstable
Urgency: low
Maintainer: Roland Rosenfeld <[EMAIL PROTECTED]>
Changed-By: Roland Rosenfeld <[EMAIL PROTECTED]>
Description: 
 gsfonts-x11 - Make Ghostscript fonts available to X11
Closes: 347406
Changes: 
 gsfonts-x11 (0.18) unstable; urgency=low
 .
   * Fix build dependency to debhelper >= 4.0.0.
   * Upgrade to Standards-Version 3.6.2 (no changes).
   * Modify the perl linebreaks in debian/rules to also run with newer
     versions of make. Thanks to Daniel Schepler
     <[EMAIL PROTECTED]> for providing a patch (Closes: #347406).
   * Update FSF address in copyright file.
Files: 
 405b57d9ca86ee88f2e915a1f1b6753c 508 x11 optional gsfonts-x11_0.18.dsc
 239ca5f741b8b988368b5655d3ffcc08 6564 x11 optional gsfonts-x11_0.18.tar.gz
 7c948a5ff1a2397d84b620b442bbea0c 9300 x11 optional gsfonts-x11_0.18_all.deb

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

iD8DBQFDykD8O7/Pd72LBQ0RAvg6AKCVAaXJ3/lDZzshAL3pEP0tQBhPjACgueXk
RZXqVED6qKEymnttvjZosS0=
=KSY6
-----END PGP SIGNATURE-----


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

Reply via email to