Your message dated Sun, 12 May 2013 22:35:25 +0000
with message-id <[email protected]>
and subject line Bug#688754: fixed in nvidia-graphics-drivers-legacy-173xx
173.14.37-1
has caused the Debian Bug report #688754,
regarding Add alternatives for nvidia-settings and nvidia-settings-legacy-173xx
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.)
--
688754: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=688754
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: nvidia-settings
Version: 304.48-1
Severity: wishlist
Tags: patch
Hi
Please add alternatives for the current and legacy nvidia-settings
packages to make them co-installable. This is yet another necessary fix
to have both drivers available on Debian Live systems.
The attached patches contain the necessary changes to the various
involved packages (nvidia-settings, nvidia-settings-legacy-173xx,
nvidia-graphics-drivers and nvidia-graphics-drivers-legacy-173xx). I'll
clone this report to the other packages once it's bug number is
available.
I choose to implement the alternative as a slave to the already existing
alternative "nvidia" for the glx library. I think it does not make sense
to point these to different versions.
I also added the desktop files to the alternative. IMO only the desktop
file for the choosen alternative should be available. The other two
files will not show up as they don't end in .desktop. Having menu
entries for both versions is just confusing. Unfortunatley this is not
possible for the Debian Menu. So this will contain both versions if both
are installed regardless of the alternative choosen.
Gaudenz
-- System Information:
Debian Release: wheezy/sid
APT prefers testing
APT policy: (800, 'testing'), (700, 'unstable'), (50, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
Kernel: Linux 3.5-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_CH.UTF-8, LC_CTYPE=de_CH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages nvidia-settings depends on:
ii libc6 2.13-35
ii libgdk-pixbuf2.0-0 2.26.1-1
ii libglib2.0-0 2.32.3-1
ii libgtk2.0-0 2.24.10-2
ii libpango1.0-0 1.30.0-1
ii libx11-6 2:1.5.0-1
ii libxnvctrl0 304.48-1
ii libxxf86vm1 1:1.1.2-1
ii nvidia-installer-cleanup 20120630+3
ii pkg-config 0.26-1
Versions of packages nvidia-settings recommends:
pn libgl1-nvidia-glx <none>
nvidia-settings suggests no packages.
-- no debconf information
commit 7ff084e40c20ddb8ac24907ea1b8eeda79c6213d
Author: Gaudenz Steinlin <[email protected]>
Date: Tue Sep 25 09:34:34 2012 +0200
Add alternative for nividia-settings
Makes this package co-installable with nvidia-settings-legacy-173xx and
adds an alternative for nividia-settings. The alternative is a slave to
the already existing nvidia alternative in the package
nvidia-alternative.
diff --git a/debian/control b/debian/control
index 3c628ce..dc8d3bd 100644
--- a/debian/control
+++ b/debian/control
@@ -26,7 +26,6 @@ Pre-Depends: nvidia-installer-cleanup
Depends: pkg-config, ${shlibs:Depends}, ${misc:Depends}
Recommends: libgl1-nvidia-glx
Breaks: xserver-xorg-video-nvidia (<< 302)
-Conflicts: xserver-xorg-video-nvidia-legacy-173xx
Description: Tool for configuring the NVIDIA graphics driver
The nvidia-settings utility is a tool for configuring the NVIDIA
Linux graphics driver. It operates by communicating with the NVIDIA
diff --git a/debian/nvidia-settings.menu b/debian/nvidia-settings.menu
index e21d8d2..88986b3 100644
--- a/debian/nvidia-settings.menu
+++ b/debian/nvidia-settings.menu
@@ -2,4 +2,4 @@
needs="X11" \
section="Applications/System/Hardware" \
title="NVIDIA Settings" \
- command="/usr/bin/nvidia-settings"
+ command="/usr/bin/nvidia-settings-current"
diff --git a/debian/rules b/debian/rules
index 41a8688..4861659 100755
--- a/debian/rules
+++ b/debian/rules
@@ -9,6 +9,8 @@ endif
export PREFIX = /usr
+SETTINGS_PACKAGE_DIR=$(CURDIR)/debian/nvidia-settings
+ALTERNATIVE_FILES=/usr/bin/nvidia-settings /usr/bin/nv-control-dpy /usr/share/applications/nvidia-settings.desktop /usr/share/pixmaps/nvidia-settings.png
%:
dh $@
@@ -18,6 +20,15 @@ override_dh_auto_build:
CC_ONLY_CFLAGS="$(CPPFLAGS)" dh_auto_build -O--parallel
$(MAKE) -C samples
+override_dh_install:
+ dh_install
+ # rename alternatives
+ $(foreach f, $(ALTERNATIVE_FILES), mv $(SETTINGS_PACKAGE_DIR)$(f) $(SETTINGS_PACKAGE_DIR)$(f)-current ; )
+
+override_dh_installman:
+ dh_installman
+ mv $(SETTINGS_PACKAGE_DIR)/usr/share/man/man1/nvidia-settings.1 $(SETTINGS_PACKAGE_DIR)/usr/share/man/man1/nvidia-settings-current.1
+
override_dh_auto_clean:
dh_auto_clean
$(MAKE) -C samples clean
commit 7ba2216e297208061911e4f6fb27008239d8a834
Author: Gaudenz Steinlin <[email protected]>
Date: Tue Sep 25 11:16:48 2012 +0200
Add alternative for nividia-settings
Makes this package co-installable with nvidia-settings and
adds an alternative for nividia-settings. The alternative is
a slave to the already existing nvidia alternative in the package
nvidia-alternative-legacy-173xx.
diff --git a/debian/control b/debian/control
index 77482e7..4818963 100644
--- a/debian/control
+++ b/debian/control
@@ -28,9 +28,6 @@ Pre-Depends: nvidia-installer-cleanup
Depends: pkg-config, ${shlibs:Depends}, ${misc:Depends}
Recommends: libgl1-nvidia-legacy-173xx-glx
Provides: nvidia-settings
-Conflicts: nvidia-settings,
- xserver-xorg-video-nvidia,
-Replaces: nvidia-settings
Description: Tool for configuring the NVIDIA graphics driver
The nvidia-settings utility is a tool for configuring the NVIDIA
Linux graphics driver. It operates by communicating with the NVIDIA
diff --git a/debian/nvidia-settings-legacy-173xx.menu b/debian/nvidia-settings-legacy-173xx.menu
index 6953592..b579428 100644
--- a/debian/nvidia-settings-legacy-173xx.menu
+++ b/debian/nvidia-settings-legacy-173xx.menu
@@ -2,4 +2,4 @@
needs="X11" \
section="Applications/System/Hardware" \
title="NVIDIA Settings (legacy 173xx)" \
- command="/usr/bin/nvidia-settings"
+ command="/usr/bin/nvidia-settings-legacy-173xx"
diff --git a/debian/rules b/debian/rules
index d126de8..fb5bb68 100755
--- a/debian/rules
+++ b/debian/rules
@@ -8,6 +8,8 @@ export DEBUG = 1
endif
export PREFIX = /usr
+SETTINGS_PACKAGE_DIR=$(CURDIR)/debian/nvidia-settings-legacy-173xx
+ALTERNATIVE_FILES=/usr/bin/nvidia-settings /usr/bin/nv-control-dpy /usr/share/applications/nvidia-settings.desktop /usr/share/pixmaps/nvidia-settings.png
%:
@@ -26,6 +28,15 @@ override_dh_auto_clean:
override_dh_auto_install:
dh_auto_install --destdir=debian/tmp
+override_dh_install:
+ dh_install
+ # rename alternatives
+ $(foreach f, $(ALTERNATIVE_FILES), mv $(SETTINGS_PACKAGE_DIR)$(f) $(SETTINGS_PACKAGE_DIR)$(f)-legacy-173xx ; )
+
+override_dh_installman:
+ dh_installman
+ mv $(SETTINGS_PACKAGE_DIR)/usr/share/man/man1/nvidia-settings.1 $(SETTINGS_PACKAGE_DIR)/usr/share/man/man1/nvidia-settings-legacy-173xx.1
+
override_dh_installexamples:
[ ! -f samples/Makefile ] || $(MAKE) -C samples clean
dh_installexamples
commit 855f82b2702d4519109429d1b37237f383ed07dc
Author: Gaudenz Steinlin <[email protected]>
Date: Tue Sep 25 11:29:35 2012 +0200
Add alternatives for nvidia-settings
diff --git a/debian/control b/debian/control
index 482e08e..da8fd73 100644
--- a/debian/control
+++ b/debian/control
@@ -154,7 +154,7 @@ Breaks:
fglrx-glx (<< 1:11-6-~),
ia32-libs (<< 20120701) [i386],
nvidia-settings (<< 304),
- nvidia-settings-legacy-173xx,
+ nvidia-settings-legacy-173xx (<< 173.14.35-2),
Replaces:
nvidia-glx${nvidia:Legacy} (<< 195.36.31),
libgl1-nvidia${nvidia:Legacy}-dev,
diff --git a/debian/nvidia-alternative.postinst.in b/debian/nvidia-alternative.postinst.in
index 17ba10b..931d516 100644
--- a/debian/nvidia-alternative.postinst.in
+++ b/debian/nvidia-alternative.postinst.in
@@ -52,6 +52,11 @@ if [ "$1" = "triggered" ]; then
$(add_slave /usr/lib/nvidia/libglx.so libglx.so /usr/lib/#PRIVATE#/libglx.so)
$(add_slave /usr/lib/nvidia/nvidia_drv.so nvidia_drv.so /usr/lib/#PRIVATE#/nvidia_drv.so)
$(add_slave /usr/lib/nvidia/nvidia-bug-report.sh nvidia-bug-report.sh /usr/lib/#PRIVATE#/nvidia-bug-report.sh)
+ $(add_slave /usr/bin/nvidia-settings nvidia-settings /usr/bin/nvidia-settings#LEGACY_OR_CURRENT#)
+ $(add_slave /usr/bin/nv-control-dpy nv-control-dpy /usr/bin/nv-control-dpy#LEGACY_OR_CURRENT#)
+ $(add_slave /usr/share/applications/nvidia-settings.desktop nvidia-settings.desktop /usr/share/applications/nvidia-settings.desktop#LEGACY_OR_CURRENT#)
+ $(add_slave /usr/share/pixmaps/nvidia-settings.png nvidia-settings.png /usr/share/pixmaps/nvidia-settings.png#LEGACY_OR_CURRENT#)
+ $(add_slave /usr/share/man/man1/nvidia-settings.1.gz nvidia-settings.1.gz /usr/share/man/man1/nvidia-settings#LEGACY_OR_CURRENT#.1.gz)
"
if echo "$slaves" | grep -q "slave" ; then
update-alternatives --install /usr/lib/nvidia/nvidia nvidia /usr/lib/#PRIVATE# #MAJOR# $slaves
diff --git a/debian/nvidia-alternative.triggers.in b/debian/nvidia-alternative.triggers.in
index 57cd16d..eb6d528 100644
--- a/debian/nvidia-alternative.triggers.in
+++ b/debian/nvidia-alternative.triggers.in
@@ -3,3 +3,8 @@ interest register-nvidia-alternative#LEGACY#
interest /usr/lib/#PRIVATE#
interest /usr/lib/i386-linux-gnu/#PRIVATE#
interest /usr/lib/x86_64-linux-gnu/#PRIVATE#
+interest /usr/bin/nvidia-settings#LEGACY_OR_CURRENT#
+interest /usr/bin/nv-control-dpy#LEGACY_OR_CURRENT#
+interest /usr/share/applications/nvidia-settings.desktop#LEGACY_OR_CURRENT#
+interest /usr/share/pixmaps/nvidia-settings.png#LEGACY_OR_CURRENT#
+interest /usr/share/man/man1/nvidia-settings#LEGACY_OR_CURRENT#.1.gz
diff --git a/debian/rules b/debian/rules
index a2d4b1b..b9fc9fd 100755
--- a/debian/rules
+++ b/debian/rules
@@ -283,6 +283,7 @@ endif
-e 's{#VERSION#}{$(version)}g;' \
-e 's{#MAJOR#}{$(firstword $(subst ., ,$(version)))}g;' \
-e 's{#LEGACY#}{$(legacy)}g;' \
+ -e 's{#LEGACY_OR_CURRENT#}{$(if $(legacy),$(legacy),-current)}g;' \
-e 's{#WATCH_PATTERN#}{$(subst \,\\,$(watch_pattern))}g;' \
-e 's{#LIBDIR#}{$(libdir)}g;' \
-e 's{#PRIVATE#}{$(nvidia_private)}g;' \
commit 2296ea04de3b9345fcbfc7bc281e17b64daa142d
Author: Gaudenz Steinlin <[email protected]>
Date: Tue Sep 25 12:32:36 2012 +0200
Add alternatives for nvidia-settings
diff --git a/debian/nvidia-alternative.postinst.in b/debian/nvidia-alternative.postinst.in
index 17ba10b..931d516 100644
--- a/debian/nvidia-alternative.postinst.in
+++ b/debian/nvidia-alternative.postinst.in
@@ -52,6 +52,11 @@ if [ "$1" = "triggered" ]; then
$(add_slave /usr/lib/nvidia/libglx.so libglx.so /usr/lib/#PRIVATE#/libglx.so)
$(add_slave /usr/lib/nvidia/nvidia_drv.so nvidia_drv.so /usr/lib/#PRIVATE#/nvidia_drv.so)
$(add_slave /usr/lib/nvidia/nvidia-bug-report.sh nvidia-bug-report.sh /usr/lib/#PRIVATE#/nvidia-bug-report.sh)
+ $(add_slave /usr/bin/nvidia-settings nvidia-settings /usr/bin/nvidia-settings#LEGACY_OR_CURRENT#)
+ $(add_slave /usr/bin/nv-control-dpy nv-control-dpy /usr/bin/nv-control-dpy#LEGACY_OR_CURRENT#)
+ $(add_slave /usr/share/applications/nvidia-settings.desktop nvidia-settings.desktop /usr/share/applications/nvidia-settings.desktop#LEGACY_OR_CURRENT#)
+ $(add_slave /usr/share/pixmaps/nvidia-settings.png nvidia-settings.png /usr/share/pixmaps/nvidia-settings.png#LEGACY_OR_CURRENT#)
+ $(add_slave /usr/share/man/man1/nvidia-settings.1.gz nvidia-settings.1.gz /usr/share/man/man1/nvidia-settings#LEGACY_OR_CURRENT#.1.gz)
"
if echo "$slaves" | grep -q "slave" ; then
update-alternatives --install /usr/lib/nvidia/nvidia nvidia /usr/lib/#PRIVATE# #MAJOR# $slaves
diff --git a/debian/nvidia-alternative.triggers.in b/debian/nvidia-alternative.triggers.in
index 57cd16d..eb6d528 100644
--- a/debian/nvidia-alternative.triggers.in
+++ b/debian/nvidia-alternative.triggers.in
@@ -3,3 +3,8 @@ interest register-nvidia-alternative#LEGACY#
interest /usr/lib/#PRIVATE#
interest /usr/lib/i386-linux-gnu/#PRIVATE#
interest /usr/lib/x86_64-linux-gnu/#PRIVATE#
+interest /usr/bin/nvidia-settings#LEGACY_OR_CURRENT#
+interest /usr/bin/nv-control-dpy#LEGACY_OR_CURRENT#
+interest /usr/share/applications/nvidia-settings.desktop#LEGACY_OR_CURRENT#
+interest /usr/share/pixmaps/nvidia-settings.png#LEGACY_OR_CURRENT#
+interest /usr/share/man/man1/nvidia-settings#LEGACY_OR_CURRENT#.1.gz
diff --git a/debian/rules b/debian/rules
index 4c1590a..ff9052f 100755
--- a/debian/rules
+++ b/debian/rules
@@ -283,6 +283,7 @@ endif
-e 's{#VERSION#}{$(version)}g;' \
-e 's{#MAJOR#}{$(firstword $(subst ., ,$(version)))}g;' \
-e 's{#LEGACY#}{$(legacy)}g;' \
+ -e 's{#LEGACY_OR_CURRENT#}{$(if $(legacy),$(legacy),-current)}g;' \
-e 's{#WATCH_PATTERN#}{$(subst \,\\,$(watch_pattern))}g;' \
-e 's{#LIBDIR#}{$(libdir)}g;' \
-e 's{#PRIVATE#}{$(nvidia_private)}g;' \
--- End Message ---
--- Begin Message ---
Source: nvidia-graphics-drivers-legacy-173xx
Source-Version: 173.14.37-1
We believe that the bug you reported is fixed in the latest version of
nvidia-graphics-drivers-legacy-173xx, 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-graphics-drivers-legacy-173xx 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: Mon, 13 May 2013 00:13:24 +0200
Source: nvidia-graphics-drivers-legacy-173xx
Binary: nvidia-glx-legacy-173xx xserver-xorg-video-nvidia-legacy-173xx
libgl1-nvidia-legacy-173xx-glx nvidia-alternative-legacy-173xx
nvidia-kernel-legacy-173xx-dkms nvidia-kernel-legacy-173xx-source
Architecture: source amd64
Version: 173.14.37-1
Distribution: unstable
Urgency: low
Maintainer: Debian NVIDIA Maintainers <[email protected]>
Changed-By: Andreas Beckmann <[email protected]>
Description:
libgl1-nvidia-legacy-173xx-glx - NVIDIA binary OpenGL
libraries${nvidia:LegacyDesc}
nvidia-alternative-legacy-173xx - allows the selection of NVIDIA as GLX
provider
nvidia-glx-legacy-173xx - NVIDIA metapackage${nvidia:LegacyDesc}
nvidia-kernel-legacy-173xx-dkms - NVIDIA binary kernel module DKMS
source${nvidia:LegacyDesc}
nvidia-kernel-legacy-173xx-source - NVIDIA binary kernel module
source${nvidia:LegacyDesc}
xserver-xorg-video-nvidia-legacy-173xx - NVIDIA binary Xorg
driver${nvidia:LegacyDesc}
Closes: 688754 702782
Changes:
nvidia-graphics-drivers-legacy-173xx (173.14.37-1) unstable; urgency=low
.
* New upstream release 173.14.37 (2013-04-05).
- Added support for X.org xserver ABI 14 (xorg-server 1.14).
- Fixed font rendering performance and corruption problems on X servers
with
backported support for the new glyph cache functionality added to Pixman
0.27.
* New upstream release 173.14.36 (2012-09-13).
- Added support for xserver ABI 13 (xorg-server 1.13).
* Add xorg-video-abi-13 as alternative dependency.
* Add xorg-video-abi-14 as alternative dependency.
* 3.6_kernel.patch, kernel-3.7.patch: Removed, fixed upstream.
* Synchronize packaging with nvidia-graphics-drivers 304.84-1:
- README.alternatives: Document to run
'dpkg-reconfigure glx-alternative-nvidia'
after running 'update-alternatives --config nvidia'. (Closes: #702782)
- README.Debian: Add information about reporting upstream bugs to NVIDIA.
- patch-3.0-rt-nvidia.patch: Remove, disabled since 173.14.35-3.
- Put my patches into the public domain, they get applied to the kernel
module source that is under a non-free license from NVIDIA.
- Update my email address and remove DMUA.
* Synchronize packaging with nvidia-graphics-drivers 304.88-3:
- nvidia-kernel-legacy-173xx-source: rules: Use placeholder substitution
for the source package name to ensure Built-Using is set correctly.
- nvidia-alternative-legacy-173xx: Add slave alternatives for
nvidia-settings-legacy-173xx. (Closes: #688754)
- Use canonical Vcs-* URLs.
- Bump Standards-Version to 3.9.4. No changes needed.
- Drop transitional packages.
- Drop Conflicts/Breaks/Replaces against packages predating wheezy.
- Drop cleanup code targeting squeeze and wheezy from maintainer scripts.
* Update lintian overrides.
Checksums-Sha1:
5fdb88ea853c6693df31930322fc0b98397740d7 2826
nvidia-graphics-drivers-legacy-173xx_173.14.37-1.dsc
d380e4fe0b258099f330bfaa5483caea8783897c 34066274
nvidia-graphics-drivers-legacy-173xx_173.14.37.orig.tar.gz
52dff8f616a3fae51efe47c1f1c7e62be97fa39a 63405
nvidia-graphics-drivers-legacy-173xx_173.14.37-1.debian.tar.gz
663a136cf08975ab6e7ac9eb9999c8e9d0c4b1e2 227212
nvidia-glx-legacy-173xx_173.14.37-1_amd64.deb
2586d4e2380d1ddb85fbfa8aafed3fd20dfa9a7d 1770162
xserver-xorg-video-nvidia-legacy-173xx_173.14.37-1_amd64.deb
adfd2836b2e9906e2212c178c25b0336230529d2 3528036
libgl1-nvidia-legacy-173xx-glx_173.14.37-1_amd64.deb
4bef9105a61f05fceaa9e7f83eb219da2a05b3ec 39872
nvidia-alternative-legacy-173xx_173.14.37-1_amd64.deb
f456027294e95e469c7675c57a72c03409dc0418 3459270
nvidia-kernel-legacy-173xx-dkms_173.14.37-1_amd64.deb
b0270aa1bd86d945baee9ee02a683f32951479d3 5019634
nvidia-kernel-legacy-173xx-source_173.14.37-1_amd64.deb
Checksums-Sha256:
bff4eec1d92368e010bc89d69be19ebf4c43d4d463af289920898c27bd478bfd 2826
nvidia-graphics-drivers-legacy-173xx_173.14.37-1.dsc
79c14fbd58100bb3d54fd7e5b05ada28eaf2aa433e8dbb702709e786572afb69 34066274
nvidia-graphics-drivers-legacy-173xx_173.14.37.orig.tar.gz
89c890584f19e847bd4814ebde31c4ac0e5d60586ad081c6987e61a16510a153 63405
nvidia-graphics-drivers-legacy-173xx_173.14.37-1.debian.tar.gz
36852daf54ec608fff7261a9cbd7d948670ebf049e115ef05d43bcc06069f0f2 227212
nvidia-glx-legacy-173xx_173.14.37-1_amd64.deb
c745ea258767473d4b2e5405752d75a0b6370b594242b3c35dfd9c85b6576d07 1770162
xserver-xorg-video-nvidia-legacy-173xx_173.14.37-1_amd64.deb
9c5e5adc7792ce88450de50b94d6a8ff20648c767be0641352ab9543f92d7e1d 3528036
libgl1-nvidia-legacy-173xx-glx_173.14.37-1_amd64.deb
07b7ccb6134a7101b7084364cac1aab8a6da09a0b693e82884235e0ed7af20c5 39872
nvidia-alternative-legacy-173xx_173.14.37-1_amd64.deb
6fdf1e296a78b944cc85d8f13c10d757adb89317064d8f68c2c11cf20b02252b 3459270
nvidia-kernel-legacy-173xx-dkms_173.14.37-1_amd64.deb
b39f098aca54e6f54cb1b4af7fd7deeee425a1afa57a1ccbd4114eb657935e24 5019634
nvidia-kernel-legacy-173xx-source_173.14.37-1_amd64.deb
Files:
29e596f878ab6896aaabae4f9a1c6a65 2826 non-free/libs optional
nvidia-graphics-drivers-legacy-173xx_173.14.37-1.dsc
089380195b9f19f90ee7b28d2051788d 34066274 non-free/libs optional
nvidia-graphics-drivers-legacy-173xx_173.14.37.orig.tar.gz
31d35516534d023dfba36ad7d67d532e 63405 non-free/libs optional
nvidia-graphics-drivers-legacy-173xx_173.14.37-1.debian.tar.gz
68376c1c0fa7afc885e5f1b68dafdf2f 227212 non-free/x11 optional
nvidia-glx-legacy-173xx_173.14.37-1_amd64.deb
59eb783338d8e56e4f963f002c75163a 1770162 non-free/x11 optional
xserver-xorg-video-nvidia-legacy-173xx_173.14.37-1_amd64.deb
0359b058ab0761c40f3ba18dc82fe009 3528036 non-free/libs optional
libgl1-nvidia-legacy-173xx-glx_173.14.37-1_amd64.deb
2b7a7b979f1b6d66406fafdc58260361 39872 non-free/libs optional
nvidia-alternative-legacy-173xx_173.14.37-1_amd64.deb
ad32368b10f263d305dfceb43d574d3a 3459270 non-free/kernel optional
nvidia-kernel-legacy-173xx-dkms_173.14.37-1_amd64.deb
5718c513643d035abdf3933e02b0a4be 5019634 non-free/kernel optional
nvidia-kernel-legacy-173xx-source_173.14.37-1_amd64.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iQIcBAEBCAAGBQJRkBaoAAoJEF+zP5NZ6e0IHU8QALKOlxSNX2eJxkhbF9xrLbOX
gGE0EwvaT18JWLT3hKjWn1EAIPi+gcJ1zUehq4ZIbY+07lZporrIzxu5n30iQ8ma
Yt/X2qzrqAn167cIvhANMS4N1UnAyYdu/OgSowuSeFpLIo+lCXi+IXOjoLjH+WqT
/sDrxb9HI+TZ4pweomivSP59pie4+qNgvx4cBF6j+QKAuolmvs67CgzAVGu1eJV2
ilQZukkV+JBrDFKcEN33KDU7Q0EKRbebeYHsH+bvnn90ei4XL9ZHj4gDMSOMWjPD
OOJouwktvOOCprUPVoltOeh2uYR+XOB1Z/kURN/TNiCh5KMXLOC51NDf/rC3aToF
Va6CliZ/VO7PtmWz3GE3ygxJZP2JfTqBVTaR9Y2IRJ2YIEHLBeEB02e1egGo+cDd
842iC/5Bsf5LMb0bU7g7zpfjY/Ax9HHP8+A8B6BOKYzp5BDEZwoC86TpXAbiDm+I
1jVuDKtdqM0BWIzIA5kSUwl30aJsUXDF4eLc+YVGXGwikFcUYaFXcwKksiKBhvFF
Cg2wCgAFvB78f/o+nS2svUplB1gF1FUXrCorz4S28RZUouwbo/ev2tFSFDXVfQjo
JBFz3kaCJj0SzDBoqLOF2vRMnZxsssFrvx4h4A7dI0ZFty0jSGE/Fh/8++XEzNrc
7Rcm6BrhGrYCND19tvOh
=bVoa
-----END PGP SIGNATURE-----
--- End Message ---