Merge lp:~thomir-deactivatedaccount/ubuntu-autopilot-tests/packaging-fixes into lp:ubuntu-autopilot-tests

Proposed by Thomi Richards
Status: Merged
Approved by: Nicholas Skaggs
Approved revision: 26
Merge reported by: Nicholas Skaggs
Merged at revision: not available
Proposed branch: lp:~thomir-deactivatedaccount/ubuntu-autopilot-tests/packaging-fixes
Merge into: lp:ubuntu-autopilot-tests
Diff against target: 67 lines (+20/-4)
4 files modified
debian/control (+3/-2)
debian/rules (+1/-1)
debian/source/format (+1/-1)
setup.py (+15/-0)
To merge this branch: bzr merge lp:~thomir-deactivatedaccount/ubuntu-autopilot-tests/packaging-fixes
Reviewer Review Type Date Requested Status
Nicholas Skaggs (community) Approve
Review via email: mp+143597@code.launchpad.net

Commit message

Fix packaging details.

Description of the change

Various fixes to make the packaging work.

To post a comment you must log in.
Revision history for this message
Nicholas Skaggs (nskaggs) wrote :

ty thomi <3

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/control'
2--- debian/control 2013-01-16 21:03:41 +0000
3+++ debian/control 2013-01-16 21:56:35 +0000
4@@ -3,13 +3,14 @@
5 Priority: optional
6 Maintainer: Ubuntu Quality Team <ubuntu-quality@lists.ubuntu.com>
7 Build-Depends: debhelper (>= 8.0.0),
8- python-autopilot,
9+ python,
10+ python-setuptools,
11
12 Standards-Version: 3.9.3
13 Homepage: https://launchpad.net/ubuntu-autopilot-tests/
14 Package: ubuntu-autopilot-tests
15 Architecture: any
16-Depends: ${shlibs:Depends}, ${misc:Depends}
17+Depends: ${shlibs:Depends}, ${misc:Depends}, python-autopilot
18 Description: Ubuntu Autopilot Testcases
19 This package provides a set of autopilot tests for the
20 default application stack inside ubuntu
21
22=== modified file 'debian/rules'
23--- debian/rules 2013-01-16 21:03:41 +0000
24+++ debian/rules 2013-01-16 21:56:35 +0000
25@@ -10,4 +10,4 @@
26 #export DH_VERBOSE=1
27
28 %:
29- dh $@
30+ dh $@ --with-python2
31
32=== modified file 'debian/source/format'
33--- debian/source/format 2013-01-16 21:03:41 +0000
34+++ debian/source/format 2013-01-16 21:56:35 +0000
35@@ -1,1 +1,1 @@
36-3.0 (quilt)
37+1.0
38
39=== added file 'setup.py'
40--- setup.py 1970-01-01 00:00:00 +0000
41+++ setup.py 2013-01-16 21:56:35 +0000
42@@ -0,0 +1,15 @@
43+#!/usr/bin/python
44+
45+from distutils.core import setup
46+from setuptools import find_packages
47+
48+setup(
49+ name='ubuntu-autopilot-tests',
50+ version='1.0',
51+ description='Ubuntu Autopilot Tests.',
52+ author='Ubuntu Quality Team',
53+ author_email='ubuntu-quality@lists.ubuntu.com',
54+ url='https://launchpad.net/ubuntu-autopilot-tests',
55+ license='GPLv3',
56+ packages=find_packages(),
57+)
58
59=== added directory 'ubuntu_autopilot_tests'
60=== added file 'ubuntu_autopilot_tests/__init__.py'
61=== renamed directory 'evince' => 'ubuntu_autopilot_tests/evince'
62=== renamed directory 'firefox' => 'ubuntu_autopilot_tests/firefox'
63=== renamed directory 'gedit' => 'ubuntu_autopilot_tests/gedit'
64=== renamed directory 'helloworld' => 'ubuntu_autopilot_tests/helloworld'
65=== renamed directory 'nautilus' => 'ubuntu_autopilot_tests/nautilus'
66=== renamed directory 'screenshot' => 'ubuntu_autopilot_tests/screenshot'
67=== renamed directory 'terminal' => 'ubuntu_autopilot_tests/terminal'

Subscribers

People subscribed via source and target branches