Your message dated Thu, 04 Oct 2007 09:47:03 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#432445: fixed in evince 2.20.0-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)

--- Begin Message ---
Package: evince
Version: 0.8.3-1
Severity: wishlist
Tags: patch

The attached diff file modifies the debian patch that adds support for
gzipped DVI files so that it should also add support for bzipped DVI
files. I hope that's all that should be modified.


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (850, 'testing'), (760, 'stable'), (10,
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.21-1-k7
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages evince depends on:
ii  gconf2                  2.18.0.1-3       GNOME configuration
database syste
ii  gnome-icon-theme        2.18.0-3         GNOME Desktop icon theme
ii  gs                      8.56.dfsg.1-1.1  Transitional package
ii  gs-esp [gs]             8.15.3.dfsg.1-1  The Ghostscript PostScript
interpr
ii  gs-gpl [gs]             8.56.dfsg.1-1.1  The GPL Ghostscript
PostScript int
ii  libart-2.0-2            2.3.19-3         Library of functions for 2D
graphi
ii  libatk1.0-0             1.18.0-2         The ATK accessibility toolkit
ii  libbonobo2-0            2.18.0-2         Bonobo CORBA interfaces library
ii  libbonoboui2-0          2.18.0-5         The Bonobo UI library
ii  libc6                   2.5-11           GNU C Library: Shared libraries
ii  libcairo2               1.4.10-1         The Cairo 2D vector
graphics libra
ii  libdbus-1-3             1.1.1-3          simple interprocess
messaging syst
ii  libdbus-glib-1-2        0.74-1           simple interprocess
messaging syst
ii  libdjvulibre15          3.5.19-2         Runtime support for the
DjVu image
ii  libfontconfig1          2.4.2-1.2        generic font configuration
library
ii  libfreetype6            2.2.1-6          FreeType 2 font engine,
shared lib
ii  libgconf2-4             2.18.0.1-3       GNOME configuration
database syste
ii  libglade2-0             1:2.6.1-1        library to load .glade
files at ru
ii  libglib2.0-0            2.12.12-1        The GLib library of C routines
ii  libgnome-keyring0       0.8.1-2          GNOME keyring services library
ii  libgnome2-0             2.18.0-4         The GNOME 2 library -
runtime file
ii  libgnomecanvas2-0       2.14.0-3         A powerful object-oriented
display
ii  libgnomeui-0            2.18.1-2         The GNOME 2 libraries (User
Interf
ii  libgnomevfs2-0          1:2.18.1-3+b1    GNOME Virtual File System
(runtime
ii  libgtk2.0-0             2.10.13-1        The GTK+ graphical user
interface
ii  libice6                 1:1.0.3-2        X11 Inter-Client Exchange
library
ii  libjpeg62               6b-13            The Independent JPEG
Group's JPEG
ii  libkpathsea4            2007-12          TeX Live: path search
library for
ii  libnautilus-extension1  2.18.1-3         libraries for nautilus
components
ii  liborbit2               1:2.14.7-0.1     libraries for ORBit2 - a
CORBA ORB
ii  libpango1.0-0           1.16.4-1         Layout and rendering of
internatio
ii  libpng12-0              1.2.15~beta5-2   PNG library - runtime
ii  libpoppler-glib1        0.5.4-6          PDF rendering library
(GLib-based
ii  libpopt0                1.10-3           lib for parsing cmdline
parameters
ii  libsm6                  2:1.0.3-1        X11 Session Management library
ii  libstdc++6              4.2-20070707-1   The GNU Standard C++ Library v3
ii  libtiff4                3.8.2-7          Tag Image File Format
(TIFF) libra
ii  libx11-6                2:1.0.3-7        X11 client-side library
ii  libxcursor1             1:1.1.8-2        X cursor management library
ii  libxext6                1:1.0.3-2        X11 miscellaneous extension
librar
ii  libxfixes3              1:4.0.3-2        X11 miscellaneous 'fixes'
extensio
ii  libxi6                  2:1.1.1-1        X11 Input extension library
ii  libxinerama1            1:1.0.2-1        X11 Xinerama extension library
ii  libxml2                 2.6.29.dfsg-1    GNOME XML library
ii  libxrandr2              2:1.2.1-1        X11 RandR extension library
ii  libxrender1             1:0.9.2-1        X Rendering Extension
client libra
ii  zlib1g                  1:1.2.3.3.dfsg-3 compression library - runtime

evince recommends no packages.

-- no debconf information

--- evince-0.8.3.orig/debian/patches/60_gzdvi-support.patch     2007-07-09 
23:09:08.000000000 +0200
+++ evince-0.8.3/debian/patches/60_gzdvi-support.patch  2007-07-09 
22:50:22.000000000 +0200
@@ -6,18 +6,19 @@
  fi
  if test "x$enable_dvi" = "xyes"; then
 -      EVINCE_MIME_TYPES="$EVINCE_MIME_TYPES;application/x-dvi"
-+      
EVINCE_MIME_TYPES="$EVINCE_MIME_TYPES;application/x-dvi;application/x-gzdvi"
++      
EVINCE_MIME_TYPES="$EVINCE_MIME_TYPES;application/x-dvi;application/x-gzdvi;application/x-bzdvi"
  fi
  if test "x$enable_djvu" = "xyes"; then
        EVINCE_MIME_TYPES="$EVINCE_MIME_TYPES;image/vnd.djvu"
 diff -uprN evince-0.8.1.orig/libdocument/ev-document-factory.c 
evince-0.8.1/libdocument/ev-document-factory.c
 --- evince-0.8.1.orig/libdocument/ev-document-factory.c        2007-04-09 
21:39:59.000000000 +0200
 +++ evince-0.8.1/libdocument/ev-document-factory.c     2007-06-24 
08:07:25.000000000 +0200
-@@ -99,6 +99,7 @@ const EvDocumentType document_types[] = 
+@@ -99,6 +99,8 @@ const EvDocumentType document_types[] = 
  #ifdef ENABLE_DVI
        /* dvi: */
        {"application/x-dvi",          EV_COMPRESSION_NONE, EV_BACKEND_DVI,  
dvi_document_get_type},
 +      {"application/x-gzdvi",        EV_COMPRESSION_GZIP, EV_BACKEND_DVI,  
dvi_document_get_type},
++       {"application/x-bzdvi",        EV_COMPRESSION_BZIP2, EV_BACKEND_DVI,  
dvi_document_get_type},
  #endif
  
  #ifdef ENABLE_COMICS

--- End Message ---
--- Begin Message ---
Source: evince
Source-Version: 2.20.0-1

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

evince-dbg_2.20.0-1_i386.deb
  to pool/main/e/evince/evince-dbg_2.20.0-1_i386.deb
evince-gtk-dbg_2.20.0-1_i386.deb
  to pool/main/e/evince/evince-gtk-dbg_2.20.0-1_i386.deb
evince-gtk_2.20.0-1_i386.deb
  to pool/main/e/evince/evince-gtk_2.20.0-1_i386.deb
evince_2.20.0-1.diff.gz
  to pool/main/e/evince/evince_2.20.0-1.diff.gz
evince_2.20.0-1.dsc
  to pool/main/e/evince/evince_2.20.0-1.dsc
evince_2.20.0-1_i386.deb
  to pool/main/e/evince/evince_2.20.0-1_i386.deb
evince_2.20.0.orig.tar.gz
  to pool/main/e/evince/evince_2.20.0.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.
Sebastian Dröge <[EMAIL PROTECTED]> (supplier of updated evince 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, 04 Oct 2007 10:12:45 +0200
Source: evince
Binary: evince evince-gtk-dbg evince-gtk evince-dbg
Architecture: source i386
Version: 2.20.0-1
Distribution: experimental
Urgency: low
Maintainer: Marc 'HE' Brockschmidt <[EMAIL PROTECTED]>
Changed-By: Sebastian Dröge <[EMAIL PROTECTED]>
Description: 
 evince     - Document (postscript, pdf) viewer
 evince-dbg - Document (postscript, pdf) viewer - debugging symbols
 evince-gtk - Document (postscript, pdf) viewer (gtk version)
 evince-gtk-dbg - Document (postscript, pdf) viewer (gtk version) - debugging 
symbo
Closes: 431370 432445
Changes: 
 evince (2.20.0-1) experimental; urgency=low
 .
   [Loic Minier]
   * Build-depend on gnome-pkg-tools >= 0.12 and call desktop-check-mime-types
     to check for missing MIME types; update MIME types.
   * Add application/x-pdf to evince.mime; closes: #431370.
 .
   [ Josselin Mouette ]
   * 60_gzdvi-support: add support for bzip2 compressed DVI files
     (closes: #432445). Thanks Géraud Meyer.
 .
   [ Sebastian Dröge ]
   * New upstream release:
     + debian/patches/10-comics_fix_INCLUDES.patch:
       - Dropped, merged upstream.
     + debian/control.in:
       - Build depend on poppler >= 0.6
     + debian/patches/60_gzdvi-support.patch:
       - Updated for new upstream version.
     + debian/patches/99_autoreconf.patch:
       - Regenerated.
   * debian/control.in:
     + Add build dependency on autotools-dev.
   * debian/evince.mime:
     + Add bzip2 compressed DVI mimetype.
Files: 
 0919ffdefb902473a840cca8a8aec41d 1309 gnome optional evince_2.20.0-1.dsc
 229460ba9c85cd5340512ea937a19cc2 2364951 gnome optional 
evince_2.20.0.orig.tar.gz
 e76c6630ded6049f105b022cf1e378b7 60276 gnome optional evince_2.20.0-1.diff.gz
 53f22d1381e240d6d0d94c1ac7b4e208 1500542 gnome optional 
evince_2.20.0-1_i386.deb
 fccbbf4ba29e0a22173fd811b949620f 1403286 gnome extra 
evince-dbg_2.20.0-1_i386.deb
 d1617692ad4e4e6fac9f635b9a45141a 1336874 gnome optional 
evince-gtk_2.20.0-1_i386.deb
 0ba2505ee6ddc2cc33314ef28f677140 1065508 gnome extra 
evince-gtk-dbg_2.20.0-1_i386.deb

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

iD8DBQFHBLP8BsBdh1vkHyERAmsXAJ9ErNNyhsdDOftmF52yl7zxKZn6CACfatDx
QTItZdv0r1AlJHWdtqKPbf8=
=xYM4
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to