Skip to content

Commit

Permalink
NvidiaDetector/nvidiadetector.py: exclude -current from the recommend…
Browse files Browse the repository at this point in the history
…ed flavours

The -current flavour is now a transitional package therefore
we should not recommend it any more.
  • Loading branch information
Alberto Milone committed Jan 29, 2013
1 parent 2c2334e commit 2139af1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
3 changes: 2 additions & 1 deletion NvidiaDetector/nvidiadetector.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ def getData(self):
for package in apt.Cache():
if (not package.name.startswith('nvidia-')
or 'updates' in package.name
or 'experimental' in package.name):
or 'experimental' in package.name
or 'current' in package.name):
continue
try:
m = package.candidate.record['Modaliases']
Expand Down
8 changes: 7 additions & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
ubuntu-drivers-common (1:0.2.74) UNRELEASED; urgency=low

[ Martin Pitt ]
* hybrid-detect.c: Fix detection of i386 architecture. Thanks Dennis
Baurichter! (LP: #1096354)

-- Martin Pitt <martin.pitt@ubuntu.com> Sat, 05 Jan 2013 16:31:35 +0100
[ Alberto Milone ]
* NvidiaDetector/nvidiadetector.py: Exclude -current from the
recommended flavours. The -current flavour is now a transitional
package therefore we should not recommend it any more.

-- Alberto Milone <alberto.milone@canonical.com> Tue, 29 Jan 2013 12:56:43 +0100

ubuntu-drivers-common (1:0.2.73) raring; urgency=low

Expand Down

0 comments on commit 2139af1

Please sign in to comment.