Your message dated Sat, 03 Dec 2016 22:51:21 +0000
with message-id <[email protected]>
and subject line Bug#833617: fixed in nvidia-settings 367.57-1
has caused the Debian Bug report #833617,
regarding [nvidia-settings] update to 367.35
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.)
--
833617: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=833617
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: nvidia-settings
Severity: normal
Tags: patch
--- Please enter the report below this line. ---
Please consider updating to new upstream version 367.35. PoC patch attached.
diff -urN nvidia-settings-346.59/debian/patches/04_link_as-needed.diff nvidia-settings-367.35/debian/patches/04_link_as-needed.diff
--- nvidia-settings-346.59/debian/patches/04_link_as-needed.diff 2015-03-18 20:47:55.000000000 +0100
+++ nvidia-settings-367.35/debian/patches/04_link_as-needed.diff 2016-08-07 00:12:40.000000000 +0200
@@ -1,9 +1,11 @@
Author: Andreas Beckmann <[email protected]>
Description: link with -Wl,--as-needed to reduce library footprint
---- a/utils.mk
-+++ b/utils.mk
-@@ -36,6 +36,9 @@
+Index: nvidia-settings-367.35/utils.mk
+===================================================================
+--- nvidia-settings-367.35.orig/utils.mk
++++ nvidia-settings-367.35/utils.mk
+@@ -42,6 +42,9 @@ CC_ONLY_CFLAGS ?=
LDFLAGS ?=
BIN_LDFLAGS ?=
@@ -13,9 +15,11 @@
HOST_CC ?= $(CC)
HOST_LD ?= $(LD)
HOST_CFLAGS ?= $(CFLAGS)
---- a/samples/Makefile
-+++ b/samples/Makefile
-@@ -59,6 +59,8 @@
+Index: nvidia-settings-367.35/samples/Makefile
+===================================================================
+--- nvidia-settings-367.35.orig/samples/Makefile
++++ nvidia-settings-367.35/samples/Makefile
+@@ -59,6 +59,8 @@ LDFLAGS += $(X_LDFLAGS)
LDFLAGS += -L $(XNVCTRL_DIR)
LIBS += -lXNVCtrl -lXext -lX11
diff -urN nvidia-settings-346.59/debian/patches/05_nostrip.diff nvidia-settings-367.35/debian/patches/05_nostrip.diff
--- nvidia-settings-346.59/debian/patches/05_nostrip.diff 2015-03-18 20:47:55.000000000 +0100
+++ nvidia-settings-367.35/debian/patches/05_nostrip.diff 2016-08-07 00:12:40.000000000 +0200
@@ -1,13 +1,16 @@
Description: Install unstripped binaries, dh_strip takes care of this.
Author: Andreas Beckmann <[email protected]>
---- a/utils.mk
-+++ b/utils.mk
-@@ -53,6 +53,7 @@
- STRIP_CMD ?= true
+Index: nvidia-settings-367.35/utils.mk
+===================================================================
+--- nvidia-settings-367.35.orig/utils.mk
++++ nvidia-settings-367.35/utils.mk
+@@ -61,7 +61,7 @@ ifeq ($(DEBUG),1)
CFLAGS += -O0 -g
else
-+ STRIP_CMD ?= true # let dh_strip do the stripping
STRIP_CMD ?= strip
+- DO_STRIP ?= 1
++ DO_STRIP ?= 0 # let dh_strip do the stripping
endif
+ INSTALL ?= install
diff -urN nvidia-settings-346.59/debian/patches/10_libxnvctrl_so_0.diff nvidia-settings-367.35/debian/patches/10_libxnvctrl_so_0.diff
--- nvidia-settings-346.59/debian/patches/10_libxnvctrl_so_0.diff 2015-03-18 21:05:06.000000000 +0100
+++ nvidia-settings-367.35/debian/patches/10_libxnvctrl_so_0.diff 2016-08-07 00:12:40.000000000 +0200
@@ -2,8 +2,10 @@
Description: build a shared library for libXNVCtrl
Bug-Debian: http://bugs.debian.org/666909
---- a/src/Makefile
-+++ b/src/Makefile
+Index: nvidia-settings-367.35/src/Makefile
+===================================================================
+--- nvidia-settings-367.35.orig/src/Makefile
++++ nvidia-settings-367.35/src/Makefile
@@ -106,6 +106,9 @@ endif
XNVCTRL_DIR ?= libXNVCtrl
XNVCTRL_MAKEFILE ?= Makefile
@@ -14,39 +16,42 @@
XCONFIG_PARSER_DIR ?= XF86Config-parser
COMMON_UTILS_DIR ?= common-utils
COMMON_UNIX_DIR ?= common-unix
-@@ -280,14 +283,17 @@ NVIDIA_SETTINGS_install: $(NVIDIA_SETTIN
+@@ -280,15 +283,18 @@ NVIDIA_SETTINGS_install: $(NVIDIA_SETTIN
$(MKDIR) $(BINDIR)
$(INSTALL) $(INSTALL_BIN_ARGS) $< $(BINDIR)/$(notdir $<)
--$(NVIDIA_SETTINGS): $(OBJS) $(XNVCTRL_ARCHIVE)
+$(XNVCTRL_ARCHIVE) $(XNVCTRL_SHARED):
+ $(MAKE) -C $(XNVCTRL_DIR)
+
-+$(NVIDIA_SETTINGS): $(OBJS) $(XNVCTRL_LIB)
+ $(eval $(call DEBUG_INFO_RULES, $(NVIDIA_SETTINGS)))
+-$(NVIDIA_SETTINGS).unstripped: $(OBJS) $(XNVCTRL_ARCHIVE)
++$(NVIDIA_SETTINGS).unstripped: $(OBJS) $(XNVCTRL_LIB)
$(call quiet_cmd,LINK) $(CFLAGS) $(LDFLAGS) $(BIN_LDFLAGS) \
- -rdynamic -o $@ $(OBJS) $(XNVCTRL_ARCHIVE) $(LIBS)
+ -rdynamic -o $@ $(OBJS) $(XNVCTRL_LIB) $(LIBS)
- $(call quiet_cmd,STRIP_CMD) $@
- $(GTK2LIB): $(GTK2_OBJS) $(XCP_OBJS) $(VERSION_MK)
+ $(eval $(call DEBUG_INFO_RULES, $(GTK2LIB)))
+ $(GTK2LIB).unstripped: $(GTK2_OBJS) $(XCP_OBJS) $(VERSION_MK)
$(call quiet_cmd,LINK) -shared $(CFLAGS) $(LDFLAGS) $(BIN_LDFLAGS) \
- $(XNVCTRL_ARCHIVE) $(LIBS) $(GTK2_LIBS) \
+ $(XNVCTRL_LIB) $(LIBS) $(GTK2_LIBS) \
- -Wl,--unresolved-symbols=ignore-all -o $(GTK2LIB) \
+ -Wl,--unresolved-symbols=ignore-all -o $@ \
-Wl,-soname -Wl,$(GTK2LIB_SONAME) \
$(GTK2_OBJS) $(XCP_OBJS)
-@@ -296,7 +302,7 @@ $(GTK2LIB): $(GTK2_OBJS) $(XCP_OBJS) $(V
- ifdef BUILD_GTK3LIB
- $(GTK3LIB): $(GTK3_OBJS) $(XCP_OBJS) $(VERSION_MK)
+@@ -297,7 +303,7 @@ ifdef BUILD_GTK3LIB
+ $(eval $(call DEBUG_INFO_RULES, $(GTK3LIB)))
+ $(GTK3LIB).unstripped: $(GTK3_OBJS) $(XCP_OBJS) $(VERSION_MK)
$(call quiet_cmd,LINK) -shared $(CFLAGS) $(LDFLAGS) $(BIN_LDFLAGS) \
- $(XNVCTRL_ARCHIVE) $(LIBS) $(GTK3_LIBS) \
+ $(XNVCTRL_LIB) $(LIBS) $(GTK3_LIBS) \
- -Wl,--unresolved-symbols=ignore-all -o $(GTK3LIB) \
+ -Wl,--unresolved-symbols=ignore-all -o $@ \
-Wl,-soname -Wl,$(GTK3LIB_SONAME) \
$(GTK3_OBJS) $(XCP_OBJS)
---- a/src/libXNVCtrl/Makefile
-+++ b/src/libXNVCtrl/Makefile
-@@ -55,10 +55,17 @@ OBJS = $(call BUILD_OBJECT_LIST,$(SRC))
+Index: nvidia-settings-367.35/src/libXNVCtrl/Makefile
+===================================================================
+--- nvidia-settings-367.35.orig/src/libXNVCtrl/Makefile
++++ nvidia-settings-367.35/src/libXNVCtrl/Makefile
+@@ -58,10 +58,17 @@ OBJS = $(call BUILD_OBJECT_LIST,$(SRC))
.PHONY: clean
all: $(LIBXNVCTRL)
@@ -64,7 +69,7 @@
# define the rule to build each object file
$(foreach src,$(SRC),$(eval $(call DEFINE_OBJECT_RULE,TARGET,$(src))))
-@@ -68,3 +75,4 @@ $(eval $(call DEFINE_STAMP_C_RULE, $(OBJ
+@@ -71,3 +78,4 @@ $(eval $(call DEFINE_STAMP_C_RULE, $(OBJ
clean:
rm -rf $(LIBXNVCTRL) *~ $(STAMP_C) \
$(OUTPUTDIR)/*.o $(OUTPUTDIR)/*.d
diff -urN nvidia-settings-346.59/debian/patches/16_gzip-n.diff nvidia-settings-367.35/debian/patches/16_gzip-n.diff
--- nvidia-settings-346.59/debian/patches/16_gzip-n.diff 2015-03-18 20:47:55.000000000 +0100
+++ nvidia-settings-367.35/debian/patches/16_gzip-n.diff 2016-08-07 00:12:40.000000000 +0200
@@ -1,8 +1,10 @@
Author: Andreas Beckmann <[email protected]>
Description: use gzip -n to avoid package-contains-timestamped-gzip
---- a/doc/Makefile
-+++ b/doc/Makefile
+Index: nvidia-settings-367.35/doc/Makefile
+===================================================================
+--- nvidia-settings-367.35.orig/doc/Makefile
++++ nvidia-settings-367.35/doc/Makefile
@@ -114,4 +114,4 @@ $(MANPAGE_not_gzipped): nvidia-settings.
$< > $@
--- End Message ---
--- Begin Message ---
Source: nvidia-settings
Source-Version: 367.57-1
We believe that the bug you reported is fixed in the latest version of
nvidia-settings, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Andreas Beckmann <[email protected]> (supplier of updated nvidia-settings 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: SHA256
Format: 1.8
Date: Sat, 03 Dec 2016 23:13:22 +0100
Source: nvidia-settings
Binary: nvidia-settings libxnvctrl0 libxnvctrl-dev
Architecture: source
Version: 367.57-1
Distribution: unstable
Urgency: medium
Maintainer: Debian NVIDIA Maintainers <[email protected]>
Changed-By: Andreas Beckmann <[email protected]>
Description:
libxnvctrl-dev - NV-CONTROL X extension (development files)
libxnvctrl0 - NV-CONTROL X extension (runtime library)
nvidia-settings - tool for configuring the NVIDIA graphics
driver${nvidia:LegacyDes
Closes: 833617
Changes:
nvidia-settings (367.57-1) unstable; urgency=medium
.
* New upstream release 367.57. (Closes: #833617)
* New upstream release 367.35.
- Fixed a bug that caused a crash when exiting nvidia-settings on displays
with 8 or 15 bit color depths.
* New upstream release 367.18.
- Fixed a bug that could cause nvidia-settings to crash on some systems
when responding to events such as hotplugging DisplayPort devices.
- Enhanced the Display Device information page in nvidia-settings with
additional information for DisplayPort devices to reflect attributes
which are specific to DisplayPort connections.
- Fixed a bug which could cause deleted application profiles to appear
when editing rules in the nvidia-settings control panel.
* Build system allows creation of unstripped binaries.
* New upstream release 361 series:
- Removed the Base Mosaic configuration option from nvidia-settings on
systems where the feature is not actually supported.
Checksums-Sha1:
dc9c17bd9195b169df1894084750e6cb6216b829 2513 nvidia-settings_367.57-1.dsc
ec6d120a61b98c5b190dc30b340c50d421555899 1571905
nvidia-settings_367.57.orig.tar.bz2
afaa8a7e2a4fdebdd0beb72b21232cbcd960da09 20008
nvidia-settings_367.57-1.debian.tar.xz
Checksums-Sha256:
6e38dfeffb14607a1e2c95ef64a6bb78032d2b4f4949e8e96278a54e137b5f10 2513
nvidia-settings_367.57-1.dsc
aacb66b130e4adc034e10afb518c919a96029b31b14da8975b08d250d8750140 1571905
nvidia-settings_367.57.orig.tar.bz2
edda9c9c7e7a21728ba5b440b2069b2814cf0eea9a133bce1fbff50ec238278e 20008
nvidia-settings_367.57-1.debian.tar.xz
Files:
5f6be88db9e1fe4afc96ff139b8c2bdf 2513 x11 optional nvidia-settings_367.57-1.dsc
0d570c2070564ca5bf11f6f66938a8db 1571905 x11 optional
nvidia-settings_367.57.orig.tar.bz2
1d097a40cd9336a596eaf5bf2e91673a 20008 x11 optional
nvidia-settings_367.57-1.debian.tar.xz
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iQIcBAEBCAAGBQJYQ0etAAoJEF+zP5NZ6e0IcvAP/AnGgnJeCnqtBPwlcgbCGj4c
DABjNGuCW0zfpNMigzszxn9dU5ks1ViHXAcN+85iLwgnBpzGjcoFZzaqq6u+9CiE
150X9Nl+ZdSss6f3Mtlc9qI9xQuEH85dC2ynHxhD87X7GU2F8qYwyBHILBSHN21t
e6/pEINfknJLJBzQweaWoTIAN2ZAMW9FJfSv8cwVS2GPjN8plzeE3FG5mmYhnooU
isdHO8IOb7G5gEtT6PS9ls49AzLyrAuvMiWLqEFPqEurZLAGTsZ+XD+e0EkxS2h6
abBEzoDMrbcbq5XqQfiTM4jF/vT4rRpFTIAPOxE1eMqydbik0SdGgQ71jng1uAAo
aMa3UbaRIsgcxtW9iMQRB5nt2AswzfDLNmK89+f6a8MllUBOaD/pHkGZnmu5fPLA
7nAiO6jMn/S2EvyhcgrORaBzw8mt6Wg0TMvAxyhHQoIX7nfc6oIhlOjN4S1iB82i
Pth4thTcRqCmTXO9hZn/vzwC9MxuP842WeJOQ6szUen39uW1Owj0jnxvJ0c4zxUy
iAJrECAFdXFSBwnHdkz0iVM+h+7LWCMPiltVwufX6bZbkCIfPIUCU5UVvuk7zQ34
vjr1MNhDil2BnouVILVgnAJH84xPfKlmk/ghqZ4fAq39+PeywHV+UV1Xlj1Kpqp3
Wi+rhUVcVt/t0RK14rUA
=q0kW
-----END PGP SIGNATURE-----
--- End Message ---