xterm: Changes to 'debian-unstable'

2015-08-29 Thread Sven Joachim
 MANIFEST |2 +-
 THANKS   |7 +--
 button.c |   33 +++--
 debian/changelog |8 
 main.c   |4 ++--
 package/debian/changelog |6 ++
 package/freebsd/Makefile |2 +-
 package/xterm.spec   |4 ++--
 version.h|6 +++---
 xstrings.c   |   29 -
 xstrings.h   |5 +++--
 xterm.log.html   |   27 ---
 xterm.man|   19 ++-
 13 files changed, 120 insertions(+), 32 deletions(-)

New commits:
commit 1b404b75709e5af6131930ea6f29d5d3e49d6ee0
Author: Sven Joachim 
Date:   Sat Aug 29 08:59:23 2015 +0200

Close bug #797008

diff --git a/debian/changelog b/debian/changelog
index b7fe8c0..e32c0d1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,8 @@
 xterm (320-1) UNRELEASED; urgency=medium
 
   * New upstream release.
+- Amend fix for bug #794201 (report forwarded from Christian Jachmann
+  by Emanuel Haupt, Closes: #797008).
 
  -- Sven Joachim   Sat, 29 Aug 2015 08:57:26 +0200
 

commit c56e0ae532bbfa9feab062fb9f85b3d7a50c59c4
Author: Sven Joachim 
Date:   Sat Aug 29 08:57:32 2015 +0200

New upstream release

diff --git a/debian/changelog b/debian/changelog
index ea86db3..b7fe8c0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+xterm (320-1) UNRELEASED; urgency=medium
+
+  * New upstream release.
+
+ -- Sven Joachim   Sat, 29 Aug 2015 08:57:26 +0200
+
 xterm (319-1) unstable; urgency=low
 
   * New upstream release.

commit e53d527194aa459a043487f7f83265b2f9eaaf94
Author: Sven Joachim 
Date:   Sat Aug 29 08:54:39 2015 +0200

Imported Upstream version 320

diff --git a/MANIFEST b/MANIFEST
index 424d573..ff79fa6 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,4 +1,4 @@
-MANIFEST for xterm-319, version xterm-319
+MANIFEST for xterm-320, version xterm-320
 

 MANIFESTthis file
 256colres.h resource-definitions for 256-color mode
diff --git a/THANKS b/THANKS
index e953827..f2af2bf 100644
--- a/THANKS
+++ b/THANKS
@@ -1,4 +1,4 @@
--- $XTermId: THANKS,v 1.14 2014/07/12 14:41:17 tom Exp $
+-- $XTermId: THANKS,v 1.15 2015/08/28 08:17:31 tom Exp $
 -- vile:txtmode fk=8bit
 There's no AUTHORS file in this distribution; it would be redundant since
 I (Thomas E. Dickey) have done more than 80% of the work on xterm since 1996.
@@ -61,7 +61,6 @@ Denis Zaitsev
 Dennis Preiser
 Dennis Schneider
 Dimitrios Christidis
-Dr Werner Fink
 Ed Schouten
 Eddy De Greef
 Edward S Arthur
@@ -74,6 +73,7 @@ Frank Giessler
 Frank Guangxin Liu
 Frank Liu
 Gael Roualland
+George Nachman
 George Peter Staplin
 Gertjan Halkes
 Greg Badros
@@ -120,6 +120,8 @@ Marius Tolzmann
 Mark Waggoner
 Markus Kuhn
 Martin Pirker
+Martin Tournoij
+Matthew Green
 Matthias Baake
 Matthias Scheler
 Matthieu Herrb
@@ -188,6 +190,7 @@ Tor Lillqvist
 Torrey Lyons
 Victor Stinner
 Vincent Lefevre
+Werner Fink
 Werner Lemberg
 Will Day
 Zdenek Sekera
diff --git a/button.c b/button.c
index fb922d1..e407136 100644
--- a/button.c
+++ b/button.c
@@ -1,4 +1,4 @@
-/* $XTermId: button.c,v 1.492 2015/04/10 10:16:19 tom Exp $ */
+/* $XTermId: button.c,v 1.494 2015/08/27 23:47:56 tom Exp $ */
 
 /*
  * Copyright 1999-2014,2015 by Thomas E. Dickey
@@ -4927,6 +4927,20 @@ formatVideoAttrs(XtermWidget xw, char *buffer, CELL 
*cell)
 }
 }
 
+static char *
+formatStrlen(char *target, char *source, int freeit)
+{
+if (source != 0) {
+   sprintf(target, "%u", (unsigned) strlen(source));
+   if (freeit) {
+   free(source);
+   }
+} else {
+   strcpy(target, "0");
+}
+return target;
+}
+
 /* substitute data into format, reallocating the result */
 static char *
 expandFormat(XtermWidget xw,
@@ -4971,21 +4985,20 @@ expandFormat(XtermWidget xw,
finish->col + 1);
value = numbers;
break;
+   case 'R':
+   value = formatStrlen(numbers, x_strrtrim(data), 1);
+   break;
+   case 'r':
+   value = x_strrtrim(data);
+   break;
case 'S':
-   sprintf(numbers, "%u", (unsigned) strlen(data));
-   value = numbers;
+   value = formatStrlen(numbers, data, 0);
break;
case 's':
value = data;
break;
case 'T':
-   if ((value = x_strtrim(data)) != 0) {
-   sprintf(numbers, "%u", (unsigned) strlen(value));
-   free(value);
-   } else {
-   strcpy(

xterm: Changes to 'pristine-tar'

2015-08-29 Thread Sven Joachim
 xterm_320.orig.tar.gz.delta |binary
 xterm_320.orig.tar.gz.id|1 +
 2 files changed, 1 insertion(+)

New commits:
commit c354f93485b04df6c399e3eb35b96653fc601b91
Author: Sven Joachim 
Date:   Sat Aug 29 08:54:41 2015 +0200

pristine-tar data for xterm_320.orig.tar.gz

diff --git a/xterm_320.orig.tar.gz.delta b/xterm_320.orig.tar.gz.delta
new file mode 100644
index 000..5393e64
Binary files /dev/null and b/xterm_320.orig.tar.gz.delta differ
diff --git a/xterm_320.orig.tar.gz.id b/xterm_320.orig.tar.gz.id
new file mode 100644
index 000..5e99c45
--- /dev/null
+++ b/xterm_320.orig.tar.gz.id
@@ -0,0 +1 @@
+585fb60e737db07227e24e8f1ff87f6578fb029b



xterm: Changes to 'upstream-unstable'

2015-08-29 Thread Sven Joachim
 MANIFEST |2 +-
 THANKS   |7 +--
 button.c |   33 +++--
 main.c   |4 ++--
 package/debian/changelog |6 ++
 package/freebsd/Makefile |2 +-
 package/xterm.spec   |4 ++--
 version.h|6 +++---
 xstrings.c   |   29 -
 xstrings.h   |5 +++--
 xterm.log.html   |   27 ---
 xterm.man|   19 ++-
 12 files changed, 112 insertions(+), 32 deletions(-)

New commits:
commit e53d527194aa459a043487f7f83265b2f9eaaf94
Author: Sven Joachim 
Date:   Sat Aug 29 08:54:39 2015 +0200

Imported Upstream version 320

diff --git a/MANIFEST b/MANIFEST
index 424d573..ff79fa6 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,4 +1,4 @@
-MANIFEST for xterm-319, version xterm-319
+MANIFEST for xterm-320, version xterm-320
 

 MANIFESTthis file
 256colres.h resource-definitions for 256-color mode
diff --git a/THANKS b/THANKS
index e953827..f2af2bf 100644
--- a/THANKS
+++ b/THANKS
@@ -1,4 +1,4 @@
--- $XTermId: THANKS,v 1.14 2014/07/12 14:41:17 tom Exp $
+-- $XTermId: THANKS,v 1.15 2015/08/28 08:17:31 tom Exp $
 -- vile:txtmode fk=8bit
 There's no AUTHORS file in this distribution; it would be redundant since
 I (Thomas E. Dickey) have done more than 80% of the work on xterm since 1996.
@@ -61,7 +61,6 @@ Denis Zaitsev
 Dennis Preiser
 Dennis Schneider
 Dimitrios Christidis
-Dr Werner Fink
 Ed Schouten
 Eddy De Greef
 Edward S Arthur
@@ -74,6 +73,7 @@ Frank Giessler
 Frank Guangxin Liu
 Frank Liu
 Gael Roualland
+George Nachman
 George Peter Staplin
 Gertjan Halkes
 Greg Badros
@@ -120,6 +120,8 @@ Marius Tolzmann
 Mark Waggoner
 Markus Kuhn
 Martin Pirker
+Martin Tournoij
+Matthew Green
 Matthias Baake
 Matthias Scheler
 Matthieu Herrb
@@ -188,6 +190,7 @@ Tor Lillqvist
 Torrey Lyons
 Victor Stinner
 Vincent Lefevre
+Werner Fink
 Werner Lemberg
 Will Day
 Zdenek Sekera
diff --git a/button.c b/button.c
index fb922d1..e407136 100644
--- a/button.c
+++ b/button.c
@@ -1,4 +1,4 @@
-/* $XTermId: button.c,v 1.492 2015/04/10 10:16:19 tom Exp $ */
+/* $XTermId: button.c,v 1.494 2015/08/27 23:47:56 tom Exp $ */
 
 /*
  * Copyright 1999-2014,2015 by Thomas E. Dickey
@@ -4927,6 +4927,20 @@ formatVideoAttrs(XtermWidget xw, char *buffer, CELL 
*cell)
 }
 }
 
+static char *
+formatStrlen(char *target, char *source, int freeit)
+{
+if (source != 0) {
+   sprintf(target, "%u", (unsigned) strlen(source));
+   if (freeit) {
+   free(source);
+   }
+} else {
+   strcpy(target, "0");
+}
+return target;
+}
+
 /* substitute data into format, reallocating the result */
 static char *
 expandFormat(XtermWidget xw,
@@ -4971,21 +4985,20 @@ expandFormat(XtermWidget xw,
finish->col + 1);
value = numbers;
break;
+   case 'R':
+   value = formatStrlen(numbers, x_strrtrim(data), 1);
+   break;
+   case 'r':
+   value = x_strrtrim(data);
+   break;
case 'S':
-   sprintf(numbers, "%u", (unsigned) strlen(data));
-   value = numbers;
+   value = formatStrlen(numbers, data, 0);
break;
case 's':
value = data;
break;
case 'T':
-   if ((value = x_strtrim(data)) != 0) {
-   sprintf(numbers, "%u", (unsigned) strlen(value));
-   free(value);
-   } else {
-   strcpy(numbers, "0");
-   }
-   value = numbers;
+   value = formatStrlen(numbers, x_strtrim(data), 1);
break;
case 't':
value = x_strtrim(data);
diff --git a/main.c b/main.c
index d992486..8ed2e29 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $XTermId: main.c,v 1.772 2015/08/19 00:25:35 tom Exp $ */
+/* $XTermId: main.c,v 1.773 2015/08/26 23:39:36 tom Exp $ */
 
 /*
  * Copyright 2002-2014,2015 by Thomas E. Dickey
@@ -3679,7 +3679,7 @@ spawnXTerm(XtermWidget xw)
 added_utmp_entry = False;
 #if defined(USE_UTEMPTER)
 #undef UTMP
-if (xw->misc.login_shell && !resource.utmpInhibit) {
+if ((xw->misc.login_shell || !command_to_exec) && !resource.utmpInhibit) {
struct UTMP_STR dummy;
 
/* Note: utempter may trim it anyway */
diff --git a/package/debian/changelog b/package/debian/changelog
index 9fd174a..f47483c 100644
--- a/package/debian/changelog
+++ b/package/debian/

xterm: Changes to 'debian-unstable'

2015-08-29 Thread Sven Joachim
 debian/changelog |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit db2787ba160563282e13115408e3b9691b17538f
Author: Sven Joachim 
Date:   Sat Aug 29 13:47:59 2015 +0200

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index e32c0d1..4b7f409 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,10 @@
-xterm (320-1) UNRELEASED; urgency=medium
+xterm (320-1) unstable; urgency=medium
 
   * New upstream release.
 - Amend fix for bug #794201 (report forwarded from Christian Jachmann
   by Emanuel Haupt, Closes: #797008).
 
- -- Sven Joachim   Sat, 29 Aug 2015 08:57:26 +0200
+ -- Sven Joachim   Sat, 29 Aug 2015 13:47:23 +0200
 
 xterm (319-1) unstable; urgency=low
 



xterm: Changes to 'refs/tags/xterm-320-1'

2015-08-29 Thread Sven Joachim
Tag 'xterm-320-1' created by Sven Joachim  at 2015-08-29 11:49 
+

Tagging upload of xterm 320-1 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCgAGBQJV4ZxUAAoJEDsQbnGNazGsle4P/iJBAk70x4HT5Yj45KTSTry1
lA0GGXcY6ubamwNC8g/D+L2rUdI81+QNvFq13NpvSpaW10gI19gFij6bVpHCtuR+
ZfKJeH4MgCTfrCSoN2yShgDaVKfDjLM1EyCHAEwQn1x+MkhqGXjhZO7/CuuzXVhE
8WtJeh4yXSr7gtcUcBTY8ItABz60WOEHfnXJXXj3iuXgH0bhrN5ZXLC4rz7bvPOK
/Cg33RefZYgBjqDjXthBrQGVHToJ0dNqiAVhGCF855g9IwrosPaVCDM/26cJgMNS
sRlaRgtyqxzhJvVLAi29KQoPUHxFcgWL93M8lIbuhfVSYGMJofU8QVCc2P4ey9P/
OmkUfSWNIChvWfqXv/ygQRgmtSgNj3IvzNpEe289iliNElJUdpV64kSxA23OAouL
n2Pyl2OWhe8ZCiFulcgyszWvd4nkNKZ9jX5qkzsGTMJmNKntBcDSkXe4u4rkOGdv
tdvKuh/H/xiWeGOTUv1gWf2HC3VyJl+Yabgi8DGGIcDYKRKabsiHVg0TG9MezuM2
FUsc5vq4Y+rbX6tnhVP4amdZxOIu12AL24/V4Zc0wyfDPl6I9ebGNJKr+VTL4JGw
GkoGY9NXF0gBjB4Kg8k6SiPenG6PCKx3FkhNlUs5DNleIYlaVzk4i9/yPQBFUSAI
4DqLzmhepZkffHnK6KWI
=9M6M
-END PGP SIGNATURE-

Changes since xterm-319-1:
Sven Joachim (5):
  Imported Upstream version 320
  Merge branch 'upstream-unstable' into debian-unstable
  New upstream release
  Close bug #797008
  Upload to unstable

---
 MANIFEST |2 +-
 THANKS   |7 +--
 button.c |   33 +++--
 debian/changelog |8 
 main.c   |4 ++--
 package/debian/changelog |6 ++
 package/freebsd/Makefile |2 +-
 package/xterm.spec   |4 ++--
 version.h|6 +++---
 xstrings.c   |   29 -
 xstrings.h   |5 +++--
 xterm.log.html   |   27 ---
 xterm.man|   19 ++-
 13 files changed, 120 insertions(+), 32 deletions(-)
---



Processing of xterm_320-1_source.changes

2015-08-29 Thread Debian FTP Masters
xterm_320-1_source.changes uploaded successfully to localhost
along with the files:
  xterm_320-1.dsc
  xterm_320.orig.tar.gz
  xterm_320-1.diff.gz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)



Processing of xterm_320-1_source.changes

2015-08-29 Thread Debian FTP Masters
xterm_320-1_source.changes uploaded successfully to ftp-master.debian.org
along with the files:
  xterm_320-1.dsc
  xterm_320.orig.tar.gz
  xterm_320-1.diff.gz

Greetings,

Your Debian queue daemon (running on host coccia.debian.org)



Bug#797008: marked as done (xterm: not logging to utmp)

2015-08-29 Thread Debian Bug Tracking System
Your message dated Sat, 29 Aug 2015 12:39:32 +
with message-id 
and subject line Bug#797008: fixed in xterm 320-1
has caused the Debian Bug report #797008,
regarding xterm: not logging to utmp
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 ow...@bugs.debian.org
immediately.)


-- 
797008: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=797008
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xterm
Version: 319-1
Severity: normal

Apparently since the latest xterm version 319-1 which arrived on my
Sid machine 2015-08-23 14:52 -0600 xterm no longer logs entries to the
utmp file.  Using "last -10" shows the most recent entries to have
been logged prior to that update.  Even explicitly adding +ut does not
log to utmp.

  xterm +ut

Downgrading to 318-2 fixes the problem.

Thank you for maintaining xterm in Debian.

Thanks,
Bob



-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 4.0.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages xterm depends on:
ii  libc6   2.19-19
ii  libfontconfig1  2.11.0-6.3
ii  libice6 2:1.0.9-1+b1
ii  libtinfo5   6.0+20150810-1
ii  libutempter01.1.6-1
ii  libx11-62:1.6.3-1
ii  libxaw7 2:1.0.13-1
ii  libxft2 2.3.2-1
ii  libxmu6 2:1.1.2-1
ii  libxpm4 1:3.5.11-1+b1
ii  libxt6  1:1.1.4-1+b1
ii  xbitmaps1.1.1-2

Versions of packages xterm recommends:
ii  x11-utils  7.7+3

Versions of packages xterm suggests:
pn  xfonts-cyrillic  

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: xterm
Source-Version: 320-1

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

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 797...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sven Joachim  (supplier of updated xterm 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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 29 Aug 2015 13:47:23 +0200
Source: xterm
Binary: xterm
Architecture: source
Version: 320-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Sven Joachim 
Description:
 xterm  - X terminal emulator
Closes: 797008
Changes:
 xterm (320-1) unstable; urgency=medium
 .
   * New upstream release.
 - Amend fix for bug #794201 (report forwarded from Christian Jachmann
   by Emanuel Haupt, Closes: #797008).
Checksums-Sha1:
 da5de535945cb1b32afb92a9f3d69f6604743074 2049 xterm_320-1.dsc
 b1d2a1698430eb96530aa7c7bb7a6c562dcecf72 1217356 xterm_320.orig.tar.gz
 4f08288cb6c2547956dfc4a21a85121220a9da81 102040 xterm_320-1.diff.gz
Checksums-Sha256:
 06c9320488073eb0950998b3e1a083da6fd4f53d1630f5dfea6043a32f22a1a5 2049 
xterm_320-1.dsc
 a60dbb574334c081425fa30f011cd9f571e3be7a91e2a84e252461798bce24a7 1217356 
xterm_320.orig.tar.gz
 c47f8452e4a50e7decabde0d99d26122c2fb57688788bd7b5e14cfbc11f1df86 102040 
xterm_320-1.diff.gz
Files:
 879ce2253ce78dc7e121279c108ee662 2049 x11 optional xterm_320-1.dsc
 0d7f0e6390d132ae59876b3870e5783d 1217356 x11 optional xterm_320.orig.tar.gz
 c3f31e44addda7bcc935c42fb934ac82 102040 x11 optional xterm_320-1.diff.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJV4ZwzAAoJEDsQbnGNazGs+n8P/ihW32oDB/lP+Hmi08J7lwkJ
DEj1o6Ki9L+T1n8ZWzXAEVU38vbaaC1J9k9JDCsP4eJpzMl6Ad18fwFAz49noMf1
DOxHE2fXjde7Hp5GGySlwHw5K0Lvrm1DQ4kbdn8eJh4J1VzQlocKc2ZLmH8SqlbH
mAYKJ9XhynLlMO6M2v0eyXg2Rr3Lx6M6/b1zDDgy9RrhrwCaDKIz79GGbSei2vQE
uLyeOm1ltzhL0OkHrv/VEhGDrfR6+U+Ldnrx6uc5mE22LOUwUZGyRa7gIir09n2r
pP9+rUwwNU6rU9QCaHO9gcFZ6ytst95BqQdd9XNNZXFxaFrj5ziPUFbMWPOOOKtD
wYCLFCsbDX35klud4xwRWfVs0kQLBQqFOviK4uFSCFrGL7jG0PRFYk9Y7ISRdMpw
aw+dpBjq3kacXJAi/4zo4RGnbz727ukmqXTCUMVluCl7uZnvGS8/Gqymv6ekTHTg
XhYbFVv+Qb5cFNOC61eU3NVBcYeeYtBBOpLcZFuChKAVDuAfv6n+KqlKSjTl0qah
I169YQ2OBbP28cF0I4pP1KT2QFJvaBlvbQD/YwW5JhxCVExtRtSIV/ItxjP8XzW+
2GuhzlmNEXubenxQCCQcoNat2mogAt59eFlEk+9Z3MEXtsiMNqYNqi0G6ghDth1p
abYgbA5n0OV1ePBekrpR
=Oe+I
-END PGP SIGNATURE

xterm_320-1_source.changes ACCEPTED into unstable

2015-08-29 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 29 Aug 2015 13:47:23 +0200
Source: xterm
Binary: xterm
Architecture: source
Version: 320-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Sven Joachim 
Description:
 xterm  - X terminal emulator
Closes: 797008
Changes:
 xterm (320-1) unstable; urgency=medium
 .
   * New upstream release.
 - Amend fix for bug #794201 (report forwarded from Christian Jachmann
   by Emanuel Haupt, Closes: #797008).
Checksums-Sha1:
 da5de535945cb1b32afb92a9f3d69f6604743074 2049 xterm_320-1.dsc
 b1d2a1698430eb96530aa7c7bb7a6c562dcecf72 1217356 xterm_320.orig.tar.gz
 4f08288cb6c2547956dfc4a21a85121220a9da81 102040 xterm_320-1.diff.gz
Checksums-Sha256:
 06c9320488073eb0950998b3e1a083da6fd4f53d1630f5dfea6043a32f22a1a5 2049 
xterm_320-1.dsc
 a60dbb574334c081425fa30f011cd9f571e3be7a91e2a84e252461798bce24a7 1217356 
xterm_320.orig.tar.gz
 c47f8452e4a50e7decabde0d99d26122c2fb57688788bd7b5e14cfbc11f1df86 102040 
xterm_320-1.diff.gz
Files:
 879ce2253ce78dc7e121279c108ee662 2049 x11 optional xterm_320-1.dsc
 0d7f0e6390d132ae59876b3870e5783d 1217356 x11 optional xterm_320.orig.tar.gz
 c3f31e44addda7bcc935c42fb934ac82 102040 x11 optional xterm_320-1.diff.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJV4ZwzAAoJEDsQbnGNazGs+n8P/ihW32oDB/lP+Hmi08J7lwkJ
DEj1o6Ki9L+T1n8ZWzXAEVU38vbaaC1J9k9JDCsP4eJpzMl6Ad18fwFAz49noMf1
DOxHE2fXjde7Hp5GGySlwHw5K0Lvrm1DQ4kbdn8eJh4J1VzQlocKc2ZLmH8SqlbH
mAYKJ9XhynLlMO6M2v0eyXg2Rr3Lx6M6/b1zDDgy9RrhrwCaDKIz79GGbSei2vQE
uLyeOm1ltzhL0OkHrv/VEhGDrfR6+U+Ldnrx6uc5mE22LOUwUZGyRa7gIir09n2r
pP9+rUwwNU6rU9QCaHO9gcFZ6ytst95BqQdd9XNNZXFxaFrj5ziPUFbMWPOOOKtD
wYCLFCsbDX35klud4xwRWfVs0kQLBQqFOviK4uFSCFrGL7jG0PRFYk9Y7ISRdMpw
aw+dpBjq3kacXJAi/4zo4RGnbz727ukmqXTCUMVluCl7uZnvGS8/Gqymv6ekTHTg
XhYbFVv+Qb5cFNOC61eU3NVBcYeeYtBBOpLcZFuChKAVDuAfv6n+KqlKSjTl0qah
I169YQ2OBbP28cF0I4pP1KT2QFJvaBlvbQD/YwW5JhxCVExtRtSIV/ItxjP8XzW+
2GuhzlmNEXubenxQCCQcoNat2mogAt59eFlEk+9Z3MEXtsiMNqYNqi0G6ghDth1p
abYgbA5n0OV1ePBekrpR
=Oe+I
-END PGP SIGNATURE-


Thank you for your contribution to Debian.