Bug#809646: New xterm deletes content of SHELL environment
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Package: xterm Version: 321-1 Severity: important Today I installed the newest version of xterm. After that, most of the stuff in my terminal was not working anymore. (For that I would like to set the bug severity to even grave as many of my stuff, even unrelated stuff is not working anymore.) I found out very fast that the new xterm clears the environment variable $SHELL. But many things on unix depends on that variable! After downgrading to 320-1 I was back online and could write this bugreport. So please take out version 321-1 as fast as possible unless it does more harm! This version is broken to a way to make it unusable! - -- System Information: Debian Release: stretch/sid APT prefers unstable APT policy: (800, 'unstable'), (500, 'testing'), (110, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.2.6 (SMP w/8 CPU cores) Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1) Shell: /bin/sh linked to /bin/dash Init: sysvinit (via /sbin/init) Versions of packages xterm depends on: ii libc6 2.21-6 ii libfontconfig1 2.11.0-6.3 ii libice6 2:1.0.9-1+b1 ii libtinfo5 6.0+20151024-2 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-2 ii libxpm4 1:3.5.11-1+b1 ii libxt6 1:1.1.5-1 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 - -- Klaus Ethgen http://www.ethgen.ch/ pub 4096R/4E20AF1C 2011-05-16 Klaus Ethgen Fingerprint: 85D4 CA42 952C 949B 1753 62B3 79D0 B06F 4E20 AF1C -BEGIN PGP SIGNATURE- Version: GnuPG v2 iQGcBAEBCgAGBQJWh6xmAAoJEKZ8CrGAGfas08AL/RJJJz6/smvgaOZl9gPN06BC tm8iahNPs4aqaf87hJaRXoi+tGO7l6BFjpRiYzsFrV2ywQnxf0bzQeBxZKFbuPlA 14a2by3ZINmNuLmDVthHhEylVsfnENzUAUh/GlZ3od2OuEaLxJZjxNmRBTHl+OaY UH2h4V2CWeScDRd4WQayIfRl6uUDysEsuzzKZN0NuqStEUG9FzEHK3TnOLAogMX4 rGTAJdGM8GhDIcUM9+i2ue8yO/E/NIZip1oCPAnuNT/HjEsUi6LgnajSGlIk13T/ cjmFD7JyaGD0FDgtlmcuTS5kLTxeUmO1CB51+/cnxvC8e5SjGOhnl1jFiMCHDm9P Ej9k8O2pU16KL1wxvLeK1hPZK+jverPyZ9XSRa9+coxtwx+Nco/QoPFuFfu6c6iK 8hE+F5rZK4mfoQ8/oBZ/j5Qx9gJyICTAzkOho/gonnSfFCS4c+w2tWYopLk+krx6 2z0LJofAPLLlqubNYwMc2V8t5alMTbvEI1eWK2KXzg== =bpOL -END PGP SIGNATURE-
Bug#809646: New xterm deletes content of SHELL environment
Control: severity -1 grave Am 02.01.2016 um 11:54 schrieb Klaus Ethgen: > Package: xterm > Version: 321-1 > Severity: important > > Today I installed the newest version of xterm. After that, most of the > stuff in my terminal was not working anymore. (For that I would like to > set the bug severity to even grave as many of my stuff, even unrelated > stuff is not working anymore.) > > I found out very fast that the new xterm clears the environment variable > $SHELL. Ouch, sorry for not noticing that in advance. I'm pretty sure it was not intended. Cheers, Sven
Processed: Re: Bug#809646: New xterm deletes content of SHELL environment
Processing control commands: > severity -1 grave Bug #809646 [xterm] New xterm deletes content of SHELL environment Severity set to 'grave' from 'important' -- 809646: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=809646 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Bug#809646: New xterm deletes content of SHELL environment
On Sat, Jan 02, 2016 at 02:23:21PM +0100, Sven Joachim wrote: > Control: severity -1 grave > > Am 02.01.2016 um 11:54 schrieb Klaus Ethgen: > > > Package: xterm > > Version: 321-1 > > Severity: important > > > > Today I installed the newest version of xterm. After that, most of the > > stuff in my terminal was not working anymore. (For that I would like to > > set the bug severity to even grave as many of my stuff, even unrelated > > stuff is not working anymore.) > > > > I found out very fast that the new xterm clears the environment variable > > $SHELL. > > Ouch, sorry for not noticing that in advance. I'm pretty sure it was > not intended. true - the suggested fix that I applied worked, but had a compiler warning. My fix for _that_ was incorrect. This works (for me): --- /usr/build/xterm/xterm-321+/main.c 2015-12-29 15:19:35.0 + +++ /usr/build/xterm/xterm-321a/main.c 2016-01-02 14:12:19.0 + @@ -1,7 +1,7 @@ -/* $XTermId: main.c,v 1.776 2015/12/29 15:19:35 tom Exp $ */ +/* $XTermId: main.c,v 1.777 2016/01/02 14:12:19 tom Exp $ */ /* - * Copyright 2002-2014,2015 by Thomas E. Dickey + * Copyright 2002-2015,2016 by Thomas E. Dickey * * All Rights Reserved * @@ -3248,8 +3248,8 @@ if (validProgram(pathname) && stat(ok_shells, &sb) == 0 && (sb.st_mode & S_IFMT) == S_IFREG - && (sb.st_size != 0) - && (sb.st_size < (off_t) (((size_t) ~0) - 2)) + && ((size_t) sb.st_size > 0) + && ((size_t) sb.st_size < (((size_t) ~0) - 2)) && (blob = calloc((size_t) sb.st_size + 2, sizeof(char))) != 0) { if ((fp = fopen(ok_shells, "r")) != 0) { rc = fread(blob, sizeof(char), (size_t) sb.st_size, fp); -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net signature.asc Description: Digital signature
ANN: xterm-322
Files: ftp://invisible-island.net/xterm/current/xterm-322.tgz ftp://invisible-island.net/xterm/current/xterm-322.tgz.asc ftp://invisible-island.net/xterm/patches/xterm-322.patch.gz ftp://invisible-island.net/xterm/patches/xterm-322.patch.gz.asc ftp://invisible-island.net/xterm/xterm-322.tgz ftp://invisible-island.net/xterm/xterm-322.tgz.asc Patch #322 - 2016/01/02 * fix regression due to incorrect fix for compiler warning when allocating storage for /etc/shells (reports by Ashish Shukla, Debian #809646). -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net signature.asc Description: Digital signature
Processed: found 803254 in 2:1.16.4-1, notfound 803254 in 2:1.16.4-1+aptbuild5
Processing commands for cont...@bugs.debian.org: > found 803254 2:1.16.4-1 Bug #803254 [xserver-xorg-core] xserver-xorg-core: Compile Xorg against libsystemd-daemon-dev, to enable socket activation support. Marked as found in versions xorg-server/2:1.16.4-1. > notfound 803254 2:1.16.4-1+aptbuild5 Bug #803254 [xserver-xorg-core] xserver-xorg-core: Compile Xorg against libsystemd-daemon-dev, to enable socket activation support. There is no source info for the package 'xserver-xorg-core' at version '2:1.16.4-1+aptbuild5' with architecture '' Unable to make a source version for version '2:1.16.4-1+aptbuild5' No longer marked as found in versions 2:1.16.4-1+aptbuild5. > thanks Stopping processing here. Please contact me if you need assistance. -- 803254: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=803254 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
xterm: Changes to 'pristine-tar'
xterm_322.orig.tar.gz.delta |binary xterm_322.orig.tar.gz.id|1 + 2 files changed, 1 insertion(+) New commits: commit 6b1250b42fbe6aa6a194dd9aab4f42a4b8614d7b Author: Sven Joachim Date: Sat Jan 2 16:06:33 2016 +0100 pristine-tar data for xterm_322.orig.tar.gz diff --git a/xterm_322.orig.tar.gz.delta b/xterm_322.orig.tar.gz.delta new file mode 100644 index 000..3f9d077 Binary files /dev/null and b/xterm_322.orig.tar.gz.delta differ diff --git a/xterm_322.orig.tar.gz.id b/xterm_322.orig.tar.gz.id new file mode 100644 index 000..e4c4eaf --- /dev/null +++ b/xterm_322.orig.tar.gz.id @@ -0,0 +1 @@ +cd360075dc0ff1ce73e074c090863358bd29e45d
xterm: Changes to 'upstream-unstable'
MANIFEST |2 +- main.c |8 package/debian/changelog |6 ++ package/debian/copyright |2 +- package/freebsd/Makefile |2 +- package/xterm.spec |4 ++-- version.h|8 xterm.log.html | 15 +-- 8 files changed, 32 insertions(+), 15 deletions(-) New commits: commit 7bfca55d7cd7433af575284dfbbed6d81409eb85 Author: Sven Joachim Date: Sat Jan 2 16:06:31 2016 +0100 Imported Upstream version 322 diff --git a/MANIFEST b/MANIFEST index 74cd987..1009b48 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,4 +1,4 @@ -MANIFEST for xterm-321, version xterm-321 +MANIFEST for xterm-322, version xterm-322 MANIFESTthis file 256colres.h resource-definitions for 256-color mode diff --git a/main.c b/main.c index 27120b3..2e68a44 100644 --- a/main.c +++ b/main.c @@ -1,7 +1,7 @@ -/* $XTermId: main.c,v 1.776 2015/12/29 15:19:35 tom Exp $ */ +/* $XTermId: main.c,v 1.777 2016/01/02 14:12:19 tom Exp $ */ /* - * Copyright 2002-2014,2015 by Thomas E. Dickey + * Copyright 2002-2015,2016 by Thomas E. Dickey * * All Rights Reserved * @@ -3248,8 +3248,8 @@ validShell(const char *pathname) if (validProgram(pathname) && stat(ok_shells, &sb) == 0 && (sb.st_mode & S_IFMT) == S_IFREG - && (sb.st_size != 0) - && (sb.st_size < (off_t) (((size_t) ~0) - 2)) + && ((size_t) sb.st_size > 0) + && ((size_t) sb.st_size < (((size_t) ~0) - 2)) && (blob = calloc((size_t) sb.st_size + 2, sizeof(char))) != 0) { if ((fp = fopen(ok_shells, "r")) != 0) { rc = fread(blob, sizeof(char), (size_t) sb.st_size, fp); diff --git a/package/debian/changelog b/package/debian/changelog index a8592c8..1d0ce23 100644 --- a/package/debian/changelog +++ b/package/debian/changelog @@ -1,3 +1,9 @@ +xterm-dev (322) unstable; urgency=low + + * maintenance updates + + -- Thomas E. Dickey Sat, 02 Jan 2016 08:42:56 -0500 + xterm-dev (321) unstable; urgency=low * maintenance updates diff --git a/package/debian/copyright b/package/debian/copyright index 0a69d30..1280a8c 100644 --- a/package/debian/copyright +++ b/package/debian/copyright @@ -35,7 +35,7 @@ authorization. Files: * */* License: MIT-X11 -Copyright 1996-2014,2015 by Thomas E. Dickey +Copyright 1996-2015,2016 by Thomas E. Dickey (date ranges vary, depending on when the respective files were first changed significantly, and run through the most recent change date). diff --git a/package/freebsd/Makefile b/package/freebsd/Makefile index 493e30d..55f002b 100644 --- a/package/freebsd/Makefile +++ b/package/freebsd/Makefile @@ -5,7 +5,7 @@ # and "make makesum". PORTNAME= xterm -PORTVERSION= 321 +PORTVERSION= 322 CATEGORIES=x11 MASTER_SITES= ftp://invisible-island.net/xterm/ \ CRITICAL diff --git a/package/xterm.spec b/package/xterm.spec index 8ded496..d2e5b70 100644 --- a/package/xterm.spec +++ b/package/xterm.spec @@ -1,11 +1,11 @@ -# $XTermId: xterm.spec,v 1.86 2015/09/27 23:17:50 tom Exp $ +# $XTermId: xterm.spec,v 1.87 2016/01/02 13:42:56 tom Exp $ Summary: X terminal emulator (development version) %global my_middle xterm %global my_suffix -dev %global fullname %{my_middle}%{my_suffix} %global my_class XTermDev Name: %{fullname} -Version: 321 +Version: 322 Release: 1 License: X11 Group: User Interface/X diff --git a/version.h b/version.h index b394bcc..3768c54 100644 --- a/version.h +++ b/version.h @@ -1,7 +1,7 @@ -/* $XTermId: version.h,v 1.420 2016/01/01 01:37:58 tom Exp $ */ +/* $XTermId: version.h,v 1.422 2016/01/02 14:15:49 tom Exp $ */ /* - * Copyright 1998-2014,2015 by Thomas E. Dickey + * Copyright 1998-2015,2016 by Thomas E. Dickey * * All Rights Reserved * @@ -38,8 +38,8 @@ * version of X to which this version of xterm has been built. The resulting * number in parentheses is my patch number (Thomas E. Dickey). */ -#define XTERM_PATCH 321 -#define XTERM_DATE2015-12-31 +#define XTERM_PATCH 322 +#define XTERM_DATE2016-01-02 #ifndef __vendorversion__ #define __vendorversion__ "XTerm" diff --git a/xterm.log.html b/xterm.log.html index bbc7b86..2349539 100644 --- a/xterm.log.html +++ b/xterm.log.html @@ -2,7 +2,7 @@ * * this file is part of xterm* * * - * Copyright 1997-2014,2015 by Thomas E. Dickey * + * Copyright 1997-2015,2016 by Thomas E. Dickey * * * * All Rights Reserved
xterm: Changes to 'debian-unstable'
MANIFEST |2 +- debian/changelog |9 + debian/copyright |2 +- main.c |8 package/debian/changelog |6 ++ package/debian/copyright |2 +- package/freebsd/Makefile |2 +- package/xterm.spec |4 ++-- version.h|8 xterm.log.html | 15 +-- 10 files changed, 42 insertions(+), 16 deletions(-) New commits: commit 0e672e9c2a3b6d2c4b871a43dd5e4a12db1c1d82 Author: Sven Joachim Date: Sat Jan 2 16:17:42 2016 +0100 Upload to unstable diff --git a/debian/changelog b/debian/changelog index d94b0c4..8b3e577 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,11 +1,11 @@ -xterm (322-1) UNRELEASED; urgency=medium +xterm (322-1) unstable; urgency=medium * New upstream release. - Fix regression due to incorrect fix for compiler warning when allocating storage for /etc/shells (Closes: #809646). * Update years in debian/copyright. - -- Sven Joachim Sat, 02 Jan 2016 16:10:35 +0100 + -- Sven Joachim Sat, 02 Jan 2016 16:17:27 +0100 xterm (321-1) unstable; urgency=medium commit 25542cacd2d6baab70d7b508d9882527c20ddb49 Author: Sven Joachim Date: Sat Jan 2 16:13:20 2016 +0100 Update years in debian/copyright diff --git a/debian/changelog b/debian/changelog index 3367a4e..d94b0c4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ xterm (322-1) UNRELEASED; urgency=medium * New upstream release. - Fix regression due to incorrect fix for compiler warning when allocating storage for /etc/shells (Closes: #809646). + * Update years in debian/copyright. -- Sven Joachim Sat, 02 Jan 2016 16:10:35 +0100 diff --git a/debian/copyright b/debian/copyright index fdaebdc..a6a2f02 100644 --- a/debian/copyright +++ b/debian/copyright @@ -4,7 +4,7 @@ This package was debianized by first time by David Martinez Moreno Upstream sources: http://invisible-island.net/xterm/xterm.html -Copyright 1997-2015 by Thomas E. Dickey +Copyright 1997-2016 by Thomas E. Dickey Copyright 1999-2000 by Steve Wall Copyright 2013,2014 by Ross Combs commit 40534aa3045cbcea355fe547cacc40590642ce44 Author: Sven Joachim Date: Sat Jan 2 16:11:58 2016 +0100 New upstream release, closing bug #809646 diff --git a/debian/changelog b/debian/changelog index d0ac8d7..3367a4e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +xterm (322-1) UNRELEASED; urgency=medium + + * New upstream release. +- Fix regression due to incorrect fix for compiler warning when + allocating storage for /etc/shells (Closes: #809646). + + -- Sven Joachim Sat, 02 Jan 2016 16:10:35 +0100 + xterm (321-1) unstable; urgency=medium * New upstream release. commit 7bfca55d7cd7433af575284dfbbed6d81409eb85 Author: Sven Joachim Date: Sat Jan 2 16:06:31 2016 +0100 Imported Upstream version 322 diff --git a/MANIFEST b/MANIFEST index 74cd987..1009b48 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,4 +1,4 @@ -MANIFEST for xterm-321, version xterm-321 +MANIFEST for xterm-322, version xterm-322 MANIFESTthis file 256colres.h resource-definitions for 256-color mode diff --git a/main.c b/main.c index 27120b3..2e68a44 100644 --- a/main.c +++ b/main.c @@ -1,7 +1,7 @@ -/* $XTermId: main.c,v 1.776 2015/12/29 15:19:35 tom Exp $ */ +/* $XTermId: main.c,v 1.777 2016/01/02 14:12:19 tom Exp $ */ /* - * Copyright 2002-2014,2015 by Thomas E. Dickey + * Copyright 2002-2015,2016 by Thomas E. Dickey * * All Rights Reserved * @@ -3248,8 +3248,8 @@ validShell(const char *pathname) if (validProgram(pathname) && stat(ok_shells, &sb) == 0 && (sb.st_mode & S_IFMT) == S_IFREG - && (sb.st_size != 0) - && (sb.st_size < (off_t) (((size_t) ~0) - 2)) + && ((size_t) sb.st_size > 0) + && ((size_t) sb.st_size < (((size_t) ~0) - 2)) && (blob = calloc((size_t) sb.st_size + 2, sizeof(char))) != 0) { if ((fp = fopen(ok_shells, "r")) != 0) { rc = fread(blob, sizeof(char), (size_t) sb.st_size, fp); diff --git a/package/debian/changelog b/package/debian/changelog index a8592c8..1d0ce23 100644 --- a/package/debian/changelog +++ b/package/debian/changelog @@ -1,3 +1,9 @@ +xterm-dev (322) unstable; urgency=low + + * maintenance updates + + -- Thomas E. Dickey Sat, 02 Jan 2016 08:42:56 -0500 + xterm-dev (321) unstable; urgency=low * maintenance updates diff --git a/package/debian/copyright b/package/debian/copyright index 0a69d30..1280a8c 100644 --- a/package/debian/copyright +++ b/package/debian/copyright @@ -35,7 +35,7 @@ authorization. Files: * */* License: MIT-X11 -Copyright 1996-2014,2015 by Thomas E. Dickey +Copyright 1996-2015,2016 by Thomas E. Dickey (date ranges vary, depending on when the re
xterm: Changes to 'refs/tags/xterm-322-1'
Tag 'xterm-322-1' created by Sven Joachim at 2016-01-02 15:19 + Tagging upload of xterm 322-1 to unstable. -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAABCgAGBQJWh+prAAoJEDsQbnGNazGs4zgQAJ3fiIk5yqJk9WPlE3Pj1/kG pgQTmc4TLjlWXaq45K56nPFxB1DyqF1MVI9nKsT6vEjsZd8+4widbPfFzBrdZcb1 eiUdq5tRXiwob3gAbt+A/UtRtiC8wyNDdQP1/INUDcEIf1neR71UxaecCgZZERk0 h7G0LAKauY3RDWNTZySYUXjz8Ah17qVouBT2+rtQrUXsFcdJ4orzbiiYxRrM+MdH okjFrEJPf5pd6mE9CrY/O/YQLcpgRj4Z1dITrDmhB+InyL1ZYHrOwySVvWBtvsL2 uhhwmuyMUvDuL6ThLuf8FVctPoirugH30aJeQW8W6mGLLKjwW0CmOHm7r+Frpoju rAA6UhF6teR1v7IPMBzkgpjpxOgZL1Qnb3NAJ1r/PvHu8zCN8n/3eDXA6GvRN6uT mKpqN9kj+ufQ8iEBq55g0Od7u9TCyGkIQ4b59sKu6TTo2/GsI2eo7dHh16OcXMtU KSHn49scN1wtEkHrO8BoZVxjkwMXI/hcMvDbSyW2rdnDBCLF1HwuEtyusECVPsvy pkmwImuh8ngvXl7qzKdcS+NKtU9thhsB5yWjk67hCblc/gdPAF/SoNIEqy6AOBKW 432lMFiGEaaQjfKd/ePlloWBcBhdwEIRrQQQy3qZuRV17zTRkJKDh605WQI8utOY WfeNDR5LAmNyKYvkYD1G =H2jf -END PGP SIGNATURE- Changes since xterm-321-1: Sven Joachim (5): Imported Upstream version 322 Merge branch 'upstream-unstable' into debian-unstable New upstream release, closing bug #809646 Update years in debian/copyright Upload to unstable --- MANIFEST |2 +- debian/changelog |9 + debian/copyright |2 +- main.c |8 package/debian/changelog |6 ++ package/debian/copyright |2 +- package/freebsd/Makefile |2 +- package/xterm.spec |4 ++-- version.h|8 xterm.log.html | 15 +-- 10 files changed, 42 insertions(+), 16 deletions(-) ---
Processing of xterm_322-1_source.changes
xterm_322-1_source.changes uploaded successfully to ftp-master.debian.org along with the files: xterm_322-1.dsc xterm_322.orig.tar.gz xterm_322-1.diff.gz Greetings, Your Debian queue daemon (running on host coccia.debian.org)
Processing of xterm_322-1_source.changes
xterm_322-1_source.changes uploaded successfully to localhost along with the files: xterm_322-1.dsc xterm_322.orig.tar.gz xterm_322-1.diff.gz Greetings, Your Debian queue daemon (running on host franck.debian.org)
Bug#809646: marked as done (New xterm deletes content of SHELL environment)
Your message dated Sat, 02 Jan 2016 16:41:16 + with message-id and subject line Bug#809646: fixed in xterm 322-1 has caused the Debian Bug report #809646, regarding New xterm deletes content of SHELL environment 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.) -- 809646: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=809646 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Package: xterm Version: 321-1 Severity: important Today I installed the newest version of xterm. After that, most of the stuff in my terminal was not working anymore. (For that I would like to set the bug severity to even grave as many of my stuff, even unrelated stuff is not working anymore.) I found out very fast that the new xterm clears the environment variable $SHELL. But many things on unix depends on that variable! After downgrading to 320-1 I was back online and could write this bugreport. So please take out version 321-1 as fast as possible unless it does more harm! This version is broken to a way to make it unusable! - -- System Information: Debian Release: stretch/sid APT prefers unstable APT policy: (800, 'unstable'), (500, 'testing'), (110, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.2.6 (SMP w/8 CPU cores) Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1) Shell: /bin/sh linked to /bin/dash Init: sysvinit (via /sbin/init) Versions of packages xterm depends on: ii libc6 2.21-6 ii libfontconfig1 2.11.0-6.3 ii libice6 2:1.0.9-1+b1 ii libtinfo5 6.0+20151024-2 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-2 ii libxpm4 1:3.5.11-1+b1 ii libxt6 1:1.1.5-1 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 - -- Klaus Ethgen http://www.ethgen.ch/ pub 4096R/4E20AF1C 2011-05-16 Klaus Ethgen Fingerprint: 85D4 CA42 952C 949B 1753 62B3 79D0 B06F 4E20 AF1C -BEGIN PGP SIGNATURE- Version: GnuPG v2 iQGcBAEBCgAGBQJWh6xmAAoJEKZ8CrGAGfas08AL/RJJJz6/smvgaOZl9gPN06BC tm8iahNPs4aqaf87hJaRXoi+tGO7l6BFjpRiYzsFrV2ywQnxf0bzQeBxZKFbuPlA 14a2by3ZINmNuLmDVthHhEylVsfnENzUAUh/GlZ3od2OuEaLxJZjxNmRBTHl+OaY UH2h4V2CWeScDRd4WQayIfRl6uUDysEsuzzKZN0NuqStEUG9FzEHK3TnOLAogMX4 rGTAJdGM8GhDIcUM9+i2ue8yO/E/NIZip1oCPAnuNT/HjEsUi6LgnajSGlIk13T/ cjmFD7JyaGD0FDgtlmcuTS5kLTxeUmO1CB51+/cnxvC8e5SjGOhnl1jFiMCHDm9P Ej9k8O2pU16KL1wxvLeK1hPZK+jverPyZ9XSRa9+coxtwx+Nco/QoPFuFfu6c6iK 8hE+F5rZK4mfoQ8/oBZ/j5Qx9gJyICTAzkOho/gonnSfFCS4c+w2tWYopLk+krx6 2z0LJofAPLLlqubNYwMc2V8t5alMTbvEI1eWK2KXzg== =bpOL -END PGP SIGNATURE- --- End Message --- --- Begin Message --- Source: xterm Source-Version: 322-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 809...@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, 02 Jan 2016 16:17:27 +0100 Source: xterm Binary: xterm Architecture: source Version: 322-1 Distribution: unstable Urgency: medium Maintainer: Debian X Strike Force Changed-By: Sven Joachim Description: xterm - X terminal emulator Closes: 809646 Changes: xterm (322-1) unstable; urgency=medium . * New upstream release. - Fix regression due to incorrect fix for compiler warning when allocating storage for /etc/shells (Closes: #809646). * Update years in debian/copyright. Checksums-Sha1: 60582db3e9291af9315ad586486ad09724b3e2d1 2049 xterm_322-1.dsc d2709c46c767a4e38ebf5f9e1dd30d640129263d 1227531 xterm_322.orig.tar.gz 8b5a6f278cdf8b6b30c917509fc2f72fb6f8587f 102034 xterm_322-1.diff.gz Checksums-Sha256: 447a2d4a07ebd05a91ed2c2bc974133be72f13eb05b38b6b66bded870d1ba7e4 2049 xterm_322-1.dsc 9adb41b53f76a3fccaa65d47a87d336094a523985d1d6a6b8cc468375ed109d6
xterm_322-1_source.changes ACCEPTED into unstable
Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Sat, 02 Jan 2016 16:17:27 +0100 Source: xterm Binary: xterm Architecture: source Version: 322-1 Distribution: unstable Urgency: medium Maintainer: Debian X Strike Force Changed-By: Sven Joachim Description: xterm - X terminal emulator Closes: 809646 Changes: xterm (322-1) unstable; urgency=medium . * New upstream release. - Fix regression due to incorrect fix for compiler warning when allocating storage for /etc/shells (Closes: #809646). * Update years in debian/copyright. Checksums-Sha1: 60582db3e9291af9315ad586486ad09724b3e2d1 2049 xterm_322-1.dsc d2709c46c767a4e38ebf5f9e1dd30d640129263d 1227531 xterm_322.orig.tar.gz 8b5a6f278cdf8b6b30c917509fc2f72fb6f8587f 102034 xterm_322-1.diff.gz Checksums-Sha256: 447a2d4a07ebd05a91ed2c2bc974133be72f13eb05b38b6b66bded870d1ba7e4 2049 xterm_322-1.dsc 9adb41b53f76a3fccaa65d47a87d336094a523985d1d6a6b8cc468375ed109d6 1227531 xterm_322.orig.tar.gz e5608a5e1f5a503e73a96cbfd35695ab8a6279c56d27b7a23ddf61897763b429 102034 xterm_322-1.diff.gz Files: ba11d14a2c837db5fc0a3b0123540f4c 2049 x11 optional xterm_322-1.dsc 9ea4c83ac7275fdecf39fde9db781fac 1227531 x11 optional xterm_322.orig.tar.gz 91d574ead7410bcd5346d10df4c6da4f 102034 x11 optional xterm_322-1.diff.gz -BEGIN PGP SIGNATURE- Version: GnuPG v1 iQIcBAEBCgAGBQJWh+pJAAoJEDsQbnGNazGsiXYP/3McawnurHJ/bMhGjGq+CJ1a nO09SQ/PaU98j9p8KY2JfNn8YDMrchSGMq9kqLeBY4zykwTLgQGf78E5TCxFRbAT A4BjBApN2vlXrzKyNdFg4XavRBNO5xUDBsndF5ap5Hwv1ozmiLZrgMUjI2/JHwHZ XHqhFfF0ExIvZ1ZiEASpkCQ0dYV5oZacrW+sKG2cklI7Wsk3+5XXn+VQKjet9AEc FHYtd/ULGB0/pr2xfaNsndaEC3QAcbVXAEOeo8wRGU6DXzt/uln/ylecJfLxD/cw lBMYSUyuGeZcq3QTKbAxzB3ct5XFyC7p5kkoT1wM2CP8HPnNQi0/1VNRqLyIGYeC olNfK4X3mW0xIO6LRE1hyNHJVGgt1TxARfMroLjUlPnalfIohB1JaxVF+dDGMfex Yq/ckm7b+wOdFNyPRl2CoseyilPAOLgiGWeJVuqqiH2HRN2b1OZQfgAhDw6PVx5x hw9Yn3D6MYNfIndAWmsLPmmD6cAQ8wqR1tk+ahp7sGAvXBEUvod7v2mkkKyPi2ni eq4kASEz0V6sly+Gjl86E579e6WcqExQGH/8mLJ5oNfcOnbDZ7wvJjYl8zjRUq9n JCdu7Pf+axwr4tYcivBn92OpuviE/iB/R0f2jlQwKS/be64cuXorpA9eWGR1caZA 6oEEozGC/myoK91Tw4Ym =xVgz -END PGP SIGNATURE- Thank you for your contribution to Debian.
Bug#700946: nouveau module blacklisting bites when upgrading from wheezy to jessie
I had the proprietary nvidia drivers installed in my Jessie machine when I decided to move to Stretch. During the upgrade process, there was a message that the open-source driver was compatible with my hardware now, and did I want to switch to the nouveau system. I always prefer open-source when it works and didn't know if the one I had would work with the new kernel, so I said sure, go ahead and upgrade. The upgrade went smoothly, but I got a message that my video drivers were now incompatible with my configuration and I should fix this by rebooting. So I rebooted (x started just fine) and opened Synaptic to see what packages were available, and Synaptic immediately crashed with a message that said my software was unconfigured and I should immediately run 'dpkg --configure -a'. So I did that and a big bunch of messages went by -- apparently every package installed in the upgrade needed configuration. In the middle of that huge bunch of messages (1500+ packages) I saw a message go by that one of the packages being configured was the nouveau nvidia driver. So, after that was done, I rebooted again just to make sure everything was okay. It wasn't. When I rebooted, the X server did not start. I got a command-line login though, so I did that (with my head tilted sideways; I have dual displays in portrait orientation side by side). I fixed it by going back to the proprietary drivers using 'apt-get install nvidia-detect' to get the script that detects what driver ought to be used, ran it, and it (correctly) told me to go get the proprietary driver. So I did 'apt-get install nvidia-driver' and it downloaded, and I rebooted again. This time X started but it had lost my video config so my head was still turned sideways until I fixed that (rotate both screens 90 degrees, put them side-by-side). I'm attaching the log that Xorg made on the failed attempt to start. It looks as though the problem was that the kernel module didn't start and therefore the nouveau driver didn't find any screens. I think this is the right bug to send this to; it sounds a whole lot like the problem I'm having, anyway. I'm running an AMD64 system with an Intel i7 processor and 64Gbytes memory. (The large memory has outed a few bugs in the past, but doesn't appear to be related to this.) In case it helps, here is the output of lspci: 00:00.0 Host bridge: Intel Corporation Xeon E5/Core i7 DMI2 (rev 07) 00:01.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 1a (rev 07) 00:02.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 2a (rev 07) 00:03.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 3a in PCI Express Mode (rev 07) 00:05.0 System peripheral: Intel Corporation Xeon E5/Core i7 Address Map, VTd_Misc, System Management (rev 07) 00:05.2 System peripheral: Intel Corporation Xeon E5/Core i7 Control Status and Global Errors (rev 07) 00:05.4 PIC: Intel Corporation Xeon E5/Core i7 I/O APIC (rev 07) 00:11.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Virtual Root Port (rev 06) 00:16.0 Communication controller: Intel Corporation C600/X79 series chipset MEI Controller #1 (rev 05) 00:19.0 Ethernet controller: Intel Corporation 82579V Gigabit Network Connection (rev 06) 00:1a.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #2 (rev 06) 00:1b.0 Audio device: Intel Corporation C600/X79 series chipset High Definition Audio Controller (rev 06) 00:1c.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 1 (rev b6) 00:1c.1 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 2 (rev b6) 00:1c.2 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 3 (rev b6) 00:1c.3 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 4 (rev b6) 00:1c.4 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 5 (rev b6) 00:1c.5 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 6 (rev b6) 00:1c.7 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 8 (rev b6) 00:1d.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #1 (rev 06) 00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev a6) 00:1f.0 ISA bridge: Intel Corporation C600/X79 series chipset LPC Controller (rev 06) 00:1f.2 SATA controller: Intel Corporation C600/X79 series chipset 6-Port SATA AHCI Controller (rev 06) 00:1f.3 SMBus: Intel Corporation C600/X79 series chipset SMBus Host Controller (rev 06) 02:00.0 VGA compatible controller: NVIDIA Corporation GF119 [GeForce GT 610] (rev a1) 02:00.1 Audio device: NVIDIA Corporation GF119 HDMI Audio Controller (rev a1) 06:00.0 USB controller: ASMedia Technology Inc. ASM1042 SuperSpeed USB Host Controller 07:00.0 USB controller: ASMedia Technology Inc. ASM1042 SuperSpeed USB Host Controller 08:00.0 USB controller: ASMedia