Your message dated Sun, 24 Apr 2011 10:19:11 +0000
with message-id <[email protected]>
and subject line Bug#536761: fixed in paps 0.6.8-3
has caused the Debian Bug report #536761,
regarding paps: please add a --gutter-width option
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
536761: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=536761
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Subject: paps: please add a --gutter-width option
Package: paps
Version: 0.6.8-2
Severity: wishlist
Tags: patch

Please add a --gutter-width with which to set the gutter when printing
multiple columns. This is needed because with 8-points Courier it is
hard to get 80 characters in a two-column layout.

Attached is a pretty minimal patch that implements this.

-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-2-686 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages paps depends on:
ii  libc6                     2.7-18         GNU C Library: Shared libraries
ii  libfreetype6              2.3.7-2+lenny1 FreeType 2 font engine, shared lib
ii  libglib2.0-0              2.16.6-2       The GLib library of C routines
ii  libpango1.0-0             1.20.5-5       Layout and rendering of internatio

-- 
-- arthur de jong - [email protected] - west consulting b.v. --
--- src/paps.c.orig	2009-07-13 11:47:40.000000000 +0200
+++ src/paps.c	2009-07-13 11:49:40.000000000 +0200
@@ -282,6 +282,7 @@
   gboolean do_wordwrap = TRUE; // What should be default?
   int num_columns = 1;
   int top_margin = 36, bottom_margin = 36, right_margin = 36, left_margin = 36;
+  int gutter_width = 40;
   gchar *font = MAKE_FONT_NAME (DEFAULT_FONT_FAMILY, DEFAULT_FONT_SIZE), *encoding = NULL;
   page_layout_t page_layout;
   GOptionContext *ctxt = g_option_context_new("[text file]");
@@ -299,6 +300,7 @@
     {"top-margin", 0, 0, G_OPTION_ARG_INT, &top_margin, "Set top margin. (Default: 36)", "NUM"},
     {"right-margin", 0, 0, G_OPTION_ARG_INT, &right_margin, "Set right margin. (Default: 36)", "NUM"},
     {"left-margin", 0, 0, G_OPTION_ARG_INT, &left_margin, "Set left margin. (Default: 36)", "NUM"},
+    {"gutter-width", 0, 0, G_OPTION_ARG_INT, &gutter_width, "Set gutter width. (Default: 40)", "NUM"},
     {"header", 0, 0, G_OPTION_ARG_NONE, &do_draw_header, "Draw page header for each page.", NULL},
     {"encoding", 0, 0, G_OPTION_ARG_STRING, &encoding, "Assume the documentation encoding.", "ENCODING"},
     {"lpi", 0, 0, G_OPTION_ARG_CALLBACK, _paps_arg_lpi_cb, "Set the amount of lines per inch.", "REAL"},
@@ -317,7 +319,6 @@
   PangoFontset *fontset;
   PangoFontMetrics *metrics;
   int num_pages = 1;
-  int gutter_width = 40;
   int total_gutter_width;
   int page_width = paper_sizes[0].width;
   int page_height = paper_sizes[0].height;
--- src/paps.1.orig	2009-07-13 11:56:01.000000000 +0200
+++ src/paps.1	2009-07-13 11:56:09.000000000 +0200
@@ -60,6 +60,9 @@
 .B \-\-right-margin=rm
 Set right margin. Default is 36 postscript points.
 .TP
+.B \-\-gutter-width=gw
+Set gutter width. Default is 40 postscript points.
+.TP
 .B \-\-help
 Show summary of options.
 .TP

--- End Message ---
--- Begin Message ---
Source: paps
Source-Version: 0.6.8-3

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

libpaps-dev_0.6.8-3_amd64.deb
  to main/p/paps/libpaps-dev_0.6.8-3_amd64.deb
paps_0.6.8-3.debian.tar.gz
  to main/p/paps/paps_0.6.8-3.debian.tar.gz
paps_0.6.8-3.dsc
  to main/p/paps/paps_0.6.8-3.dsc
paps_0.6.8-3_amd64.deb
  to main/p/paps/paps_0.6.8-3_amd64.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.
Lior Kaplan <[email protected]> (supplier of updated paps 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.8
Date: Sun, 24 Apr 2011 01:02:21 +0300
Source: paps
Binary: libpaps-dev paps
Architecture: source amd64
Version: 0.6.8-3
Distribution: unstable
Urgency: low
Maintainer: Lior Kaplan <[email protected]>
Changed-By: Lior Kaplan <[email protected]>
Description: 
 libpaps-dev - Static development files for libpaps
 paps       - UTF-8 to PostScript converter using Pango
Closes: 514332 536761
Changes: 
 paps (0.6.8-3) unstable; urgency=low
 .
   * Switch to dpkg-source 3.0 (quilt) format
   * debian/control: fix build-depends-on-1-revision lintain warning
   * Fix scale miscalculation for cpi options with patch by Alexander Prinsier
     (Closes: #514332)
   * Implement --gutter-width option with patch by Arthur de Jong
     (Closes: 536761)
Checksums-Sha1: 
 df0119423d27e0de0d19052cd518fefbc6c8f13b 1067 paps_0.6.8-3.dsc
 9b7456b0c0c07c3d92f49249e2d879e7c1042c81 25585 paps_0.6.8-3.debian.tar.gz
 7f427b65cc57e64896aaedc9d3de3f97468eed95 124324 libpaps-dev_0.6.8-3_amd64.deb
 03215bad5e86d326484f0459630633471f1ff330 20736 paps_0.6.8-3_amd64.deb
Checksums-Sha256: 
 d5d4751a42aa571ec7cf4d52b536d1a94593da937e0090ecf3ae1b86eb7c93f2 1067 
paps_0.6.8-3.dsc
 47e89d93e0659b956c17bc69acf50947de8e75692f3e45520803fd54bd14c013 25585 
paps_0.6.8-3.debian.tar.gz
 379c874aa92fda49a76672be0b8490222b7b1c16c33be621cbf1ae0fb309d35f 124324 
libpaps-dev_0.6.8-3_amd64.deb
 caed78c4e7e9d7477d71a09943d21e77093b6644d0a204037b1345dd42a7a4b7 20736 
paps_0.6.8-3_amd64.deb
Files: 
 27c09c6e66e8bddb2dae55ddaa1bc1e8 1067 libs optional paps_0.6.8-3.dsc
 005ca85f2fa0440f8b8603e9884ded54 25585 libs optional paps_0.6.8-3.debian.tar.gz
 5d6d41e29fdb962a37eb0711c70a0e31 124324 libdevel optional 
libpaps-dev_0.6.8-3_amd64.deb
 0e2d27553d3b7684f79e6477d5348b2d 20736 text optional paps_0.6.8-3_amd64.deb

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

iEYEARECAAYFAk2z9PsACgkQFViURZnoHaAAZwCgnMIu6Rm7iamquRPW4WxuOrBM
gbAAn1+J+ycgCJJRdZGqZgeZDhqSKa3l
=0gZv
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to