Your message dated Fri, 19 Aug 2005 04:47:05 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#323893: fixed in syck 0.55-1
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; 19 Aug 2005 06:29:47 +0000
>From [EMAIL PROTECTED] Thu Aug 18 23:29:46 2005
Return-path: <[EMAIL PROTECTED]>
Received: from smtp1.su.se [130.237.162.112] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1E60Nu-000471-00; Thu, 18 Aug 2005 23:29:46 -0700
Received: from localhost (localhost [127.0.0.1])
        by smtp1.su.se (Postfix) with ESMTP id 59A9B742DB;
        Fri, 19 Aug 2005 08:29:44 +0200 (CEST)
Received: from smtp1.su.se ([127.0.0.1])
 by localhost (smtp1.su.se [127.0.0.1]) (amavisd-new, port 10024) with LMTP
 id 16262-03-4; Fri, 19 Aug 2005 08:29:43 +0200 (CEST)
Received: from ferlin.it.su.se (ferlin.it.su.se [130.237.95.154])
        by smtp1.su.se (Postfix) with ESMTP id AD2E5742DA;
        Fri, 19 Aug 2005 08:29:43 +0200 (CEST)
Received: from pgeba by ferlin.it.su.se with local (Exim 4.50)
        id 1E60Nr-0008Ts-74; Fri, 19 Aug 2005 08:29:43 +0200
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Peter Gebauer <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: python2.3-syck: Segfault when parsing
X-Mailer: reportbug 3.12
Date: Fri, 19 Aug 2005 08:29:43 +0200
Message-Id: <[EMAIL PROTECTED]>
X-Virus-Scanned: by amavisd-new at smtp.su.se
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: python2.3-syck
Version: 0.42-9
Severity: grave
Justification: renders package unusable

Segfault when trying to parse YAML data. I have included the YAML data
as well as a the end of a strace log just in case.

--- BEGIN YAML DATA: ---

---
##############################################
# General blog configuration file using YAML #
##############################################

# Define the modes' processor chains
modes:
    index:
        - blog.models.configuration.Configuration
        - blog.models.entries.Entries
        - blog.models.comments.Comments
        - blog.models.about.URLAbout
        - blog.views.xml.XMLOutput
        - blog.views.xml.XSLTransformer

# Processor settings
processors:
    blog:
        enabled: true
        path: /tmp/testblog
        configurationPath: %(blog.path)s/etc/blog.conf
        languages:
            - sv_SE
            - en_US
        date_format: %Y-%m-%d %H:%M
        title: My little blog
        description: This is a small blog
    entries:
        enabled: true
        path: %(blog.path)s/data
        backend: blog.persistency.file.FileEntries
        max: 400
        limit: 20
    comments:
        enabled: true
        path: %(blog.path)s/data/_%(entry.id)s/_comments
        backend: blog.persistency.file.FileComments
        max: 400
        limit: 100
    about:
        enabled: false
        url: %(blog.path)s/about.%(blog.language)s.html
    xsl:
        path: %(blog.path)s/share
        enableHTMLComments: true

# Tell the system what configuration keys a specific blog may override
mutable:
    - languages
    - date_format
    - title
    - description
    - processors.comments.enabled
    - processors.about.enabled

--- END YAML DATA --



--- BEGIN END OF STRACE ---

fstat64(4, {st_mode=S_IFREG|0644, st_size=63916, ...}) = 0
old_mmap(NULL, 62888, PROT_READ|PROT_EXEC, MAP_PRIVATE, 4, 0) = 
0x40452000
old_mmap(0x40461000, 4096, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED, 4, 0xf000) = 0x40461000
close(4)                                = 0
close(3)                                = 0
open("etc/blog.conf", O_RDONLY|O_LARGEFILE) = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=1468, ...}) = 0
fstat64(3, {st_mode=S_IFREG|0644, st_size=1468, ...}) = 0
_llseek(3, 0, [0], SEEK_CUR)            = 0
fstat64(3, {st_mode=S_IFREG|0644, st_size=1468, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, 
-1, 0) = 0x40018000
_llseek(3, 0, [0], SEEK_CUR)            = 0
read(3, "---\n##############################################\n# 
General blog configuration file using YAML 
#\n##############################################\n\n# Define the 
modes\' processor chains\nmodes:\n    index:\n        - 
blog.models.configuration.Configuration\n        - 
blog.models.entries.Entries\n        - 
blog.models.comments.Comments\n        - blog.models.about.URLAbout\n 
       - blog.views.xml.XMLOutput\n        - 
blog.views.xml.XSLTransformer\n\n# Processor settings\nprocessors:\n  
  blog:\n        enabled: true\n     "..., 4096) = 1468
read(3, "", 4096)                       = 0
close(3)                                = 0
munmap(0x40018000, 4096)                = 0
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
+++ killed by SIGSEGV +++

--- END END :) OF STRACE ---



-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.27
Locale: LANG=en_US, LC_CTYPE=sv_SE (charmap=ISO-8859-1)

Versions of packages python2.3-syck depends on:
ii  libc6                       2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  python2.3                   2.3.5-4      An interactive high-level object-o

-- no debconf information

---------------------------------------
Received: (at 323893-close) by bugs.debian.org; 19 Aug 2005 11:50:19 +0000
>From [EMAIL PROTECTED] Fri Aug 19 04:50:19 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1E65Kz-000686-00; Fri, 19 Aug 2005 04:47:05 -0700
From: Robert Jordens <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#323893: fixed in syck 0.55-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Fri, 19 Aug 2005 04:47:05 -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: syck
Source-Version: 0.55-1

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

libsyck0-dev_0.55-1_powerpc.deb
  to pool/main/s/syck/libsyck0-dev_0.55-1_powerpc.deb
php4-syck_0.55-1_powerpc.deb
  to pool/main/s/syck/php4-syck_0.55-1_powerpc.deb
python-syck_0.55-1_powerpc.deb
  to pool/main/s/syck/python-syck_0.55-1_powerpc.deb
python2.3-syck_0.55-1_powerpc.deb
  to pool/main/s/syck/python2.3-syck_0.55-1_powerpc.deb
syck_0.55-1.diff.gz
  to pool/main/s/syck/syck_0.55-1.diff.gz
syck_0.55-1.dsc
  to pool/main/s/syck/syck_0.55-1.dsc
syck_0.55.orig.tar.gz
  to pool/main/s/syck/syck_0.55.orig.tar.gz



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.
Robert Jordens <[EMAIL PROTECTED]> (supplier of updated syck 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: Fri, 19 Aug 2005 12:31:57 +0200
Source: syck
Binary: php4-syck python-syck python2.3-syck libsyck0-dev
Architecture: source powerpc
Version: 0.55-1
Distribution: unstable
Urgency: low
Maintainer: Robert Jordens <[EMAIL PROTECTED]>
Changed-By: Robert Jordens <[EMAIL PROTECTED]>
Description: 
 libsyck0-dev - YAML parser kit -- development files
 php4-syck  - YAML parser kit -- PHP4 bindings
 python-syck - YAML parser kit -- python bindings (default package)
 python2.3-syck - YAML parser kit -- Python 2.3 bindings
Closes: 323893
Changes: 
 syck (0.55-1) unstable; urgency=low
 .
   * new upstream version
     + debian/{watch,copyright}: updated homepage
     + closes: Bug#323893: python2.3-syck: Segfault when parsing
Files: 
 c7d49c4a3c0a5cb79f03201020d3e279 684 devel optional syck_0.55-1.dsc
 a57b7c46d81170b9318e2f384f77910c 354205 devel optional syck_0.55.orig.tar.gz
 33bb9a6d97f2a6e832bde894193050b4 79132 devel optional syck_0.55-1.diff.gz
 3ea9d1e45ebe4c01e9863eca6a84856b 71364 libdevel optional 
libsyck0-dev_0.55-1_powerpc.deb
 4f6f71c4d25abd164e9e545d5db31c57 47650 python optional 
python2.3-syck_0.55-1_powerpc.deb
 2aa10541339bce780357dbad38bcc02e 7736 python optional 
python-syck_0.55-1_powerpc.deb
 4a6b13d39d5eb517bcdbd21e07c7f9ec 36080 web optional 
php4-syck_0.55-1_powerpc.deb

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

iD8DBQFDBcRNHSjkv+Av7xERAv9SAJ9iKFuweetiECs3yMOmD44W9BFemACfVp6X
2o2gQKR5XW5qhyJDlU0eptY=
=60vZ
-----END PGP SIGNATURE-----


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

Reply via email to