diff -Nru testdrive-3.18/ChangeLog testdrive-3.19/ChangeLog --- testdrive-3.18/ChangeLog 2013-04-16 02:41:36.000000000 +0000 +++ testdrive-3.19/ChangeLog 2013-04-16 17:00:47.000000000 +0000 @@ -1,11 +1,30 @@ -testdrive (3.18) released; urgency=low +testdrive (3.19) released; urgency=low + + [ Sergio Meneses ] + * testdrive/testdrive.py: Fix duplicated cdimage ISO entries. Only use + current, not pending. (LP: #1162057) + + [ Adam Conrad ] + * Switch virtualbox-ose dependency to virtualbox, as the empty + package has been dropped in the packaging of the 4.2 series. + + [ Dmitrijs Ledkovs ] + * Drop python-indicate dependency, as it was disabled in 3.11-0ubuntu1. + + [ Paolo Rotolo ] + * debian/control: + - Recommends 'usb-creator-gtk' for testdrive-gtk (LP: #962250) + + -- Andres Rodriguez Tue, 16 Apr 2013 09:40:46 -0700 + +testdrive (3.18-0ubuntu1) raring; urgency=low [ Howard Chan ] * testdrive/testdrive.py: - this addes a Kubuntu Active Desktop image to TestDrive and fixes LP: #1154563 - -- Dustin Kirkland Mon, 15 Apr 2013 21:30:30 -0500 + -- Dustin Kirkland Mon, 15 Apr 2013 21:42:17 -0500 testdrive (3.17-0ubuntu1) raring; urgency=low diff -Nru testdrive-3.18/debian/changelog testdrive-3.19/debian/changelog --- testdrive-3.18/debian/changelog 2013-04-16 02:41:42.000000000 +0000 +++ testdrive-3.19/debian/changelog 2013-04-16 17:00:56.000000000 +0000 @@ -1,11 +1,30 @@ -testdrive (3.18-0ubuntu1~precise) precise; urgency=low +testdrive (3.19-0ubuntu1~precise) precise; urgency=low + + [ Sergio Meneses ] + * testdrive/testdrive.py: Fix duplicated cdimage ISO entries. Only use + current, not pending. (LP: #1162057) + + [ Adam Conrad ] + * Switch virtualbox-ose dependency to virtualbox, as the empty + package has been dropped in the packaging of the 4.2 series. + + [ Dmitrijs Ledkovs ] + * Drop python-indicate dependency, as it was disabled in 3.11-0ubuntu1. + + [ Paolo Rotolo ] + * debian/control: + - Recommends 'usb-creator-gtk' for testdrive-gtk (LP: #962250) + + -- Andres Rodriguez Tue, 16 Apr 2013 09:40:46 -0700 + +testdrive (3.18-0ubuntu1) raring; urgency=low [ Howard Chan ] * testdrive/testdrive.py: - this addes a Kubuntu Active Desktop image to TestDrive and fixes LP: #1154563 - -- Dustin Kirkland Mon, 15 Apr 2013 21:30:30 -0500 + -- Dustin Kirkland Mon, 15 Apr 2013 21:42:17 -0500 testdrive (3.17-0ubuntu1) raring; urgency=low diff -Nru testdrive-3.18/debian/control testdrive-3.19/debian/control --- testdrive-3.18/debian/control 2013-04-16 02:28:46.000000000 +0000 +++ testdrive-3.19/debian/control 2013-04-16 16:49:31.000000000 +0000 @@ -24,7 +24,7 @@ Package: testdrive-common Architecture: all Depends: ${python:Depends}, ${misc:Depends}, - qemu-kvm | kvm ( >= 1:84+dfsg-0ubuntu12.4 ) | virtualbox-ose ( >= 3.1.6) | virtualbox-3.1 | virtualbox-3.2 | virtualbox-4.0, + qemu-kvm | kvm ( >= 1:84+dfsg-0ubuntu12.4 ) | virtualbox ( >= 4.0) | virtualbox-3.1 | virtualbox-3.2 | virtualbox-4.0, python-xdg, rsync, wget @@ -65,8 +65,8 @@ ${python:Depends}, testdrive-common (= ${source:Version}), python-gtk2, - python-notify, - python-indicate + python-notify +Recommends: usb-creator-gtk Description: run the daily Ubuntu ISO in a virtual machine (GTK Front-end) Testdrive helps you download and run the daily Ubuntu development ISO in a virtual machine on your local hardware. diff -Nru testdrive-3.18/testdrive/testdrive.py testdrive-3.19/testdrive/testdrive.py --- testdrive-3.18/testdrive/testdrive.py 2013-04-16 02:29:33.000000000 +0000 +++ testdrive-3.19/testdrive/testdrive.py 2013-04-16 16:39:43.000000000 +0000 @@ -350,7 +350,7 @@ def obtain_ubuntu_iso_list_from_repo(self): if self.p == 'cdimage': - (status, output) = commands.getstatusoutput("wget -q -O- http://cdimage.ubuntu.com/.manifest-daily | egrep '(amd64|i386)'") + (status, output) = commands.getstatusoutput("wget -q -O- http://cdimage.ubuntu.com/.manifest-daily | egrep '(amd64|i386)' | egrep '(current)'") elif self.p == 'releases': (status, output) = commands.getstatusoutput("wget -q -O- http://releases.ubuntu.com/.manifest | egrep '(amd64|i386)'") elif self.p == 'cloud-daily':