Merge lp:~mardy/uoa-integration-tests/python3 into lp:uoa-integration-tests

Proposed by Alberto Mardegan
Status: Merged
Merged at revision: 13
Proposed branch: lp:~mardy/uoa-integration-tests/python3
Merge into: lp:uoa-integration-tests
Diff against target: 61 lines (+12/-6)
4 files modified
debian/changelog (+6/-0)
debian/control (+3/-2)
debian/rules (+1/-1)
setup.py (+2/-3)
To merge this branch: bzr merge lp:~mardy/uoa-integration-tests/python3
Reviewer Review Type Date Requested Status
PS Jenkins bot (community) continuous-integration Approve
Online Accounts Pending
Review via email: mp+218283@code.launchpad.net

Commit message

Use python3

Description of the change

Use python3

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
14. By Alberto Mardegan

Remove unused distutils.extra dependency

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
15. By Alberto Mardegan

Use pyBuild

Following https://wiki.debian.org/Python/Pybuild

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/changelog'
2--- debian/changelog 2013-10-03 16:36:26 +0000
3+++ debian/changelog 2014-05-06 12:37:25 +0000
4@@ -1,3 +1,9 @@
5+uoa-integration-tests (0.2-0ubuntu1) UNRELEASED; urgency=medium
6+
7+ * Use python3.
8+
9+ -- Alberto Mardegan <alberto.mardegan@canonical.com> Mon, 05 May 2014 16:34:50 +0300
10+
11 uoa-integration-tests (0.1+13.10.20131003.1-0ubuntu1) saucy; urgency=low
12
13 [ Alberto Mardegan ]
14
15=== modified file 'debian/control'
16--- debian/control 2013-05-03 19:44:04 +0000
17+++ debian/control 2014-05-06 12:37:25 +0000
18@@ -3,8 +3,9 @@
19 Priority: optional
20 Maintainer: Ken VanDine <ken.vandine@canonical.com>
21 Build-Depends: debhelper (>= 9.0.0),
22- python,
23- python-distutils-extra,
24+ dh-python,
25+ python3-all,
26+ python3-setuptools,
27 Standards-Version: 3.9.4
28 Homepage: https://launchpad.net/uoa-integration-tests
29 # If you aren't a member of ~online-accounts but need to upload packaging changes,
30
31=== modified file 'debian/rules'
32--- debian/rules 2013-05-07 14:02:05 +0000
33+++ debian/rules 2014-05-06 12:37:25 +0000
34@@ -9,4 +9,4 @@
35 dh_install --fail-missing
36
37 %:
38- dh $@ --with python2
39+ dh $@ --with python3 --buildsystem=pybuild
40
41=== modified file 'setup.py'
42--- setup.py 2013-10-25 09:09:31 +0000
43+++ setup.py 2014-05-06 12:37:25 +0000
44@@ -1,10 +1,9 @@
45 #!/usr/bin/env python
46 #
47 from distutils.core import setup
48-from DistUtilsExtra.command import build_extra
49
50 setup(name="uoa-integration-tests",
51- version="0.1",
52+ version="0.2",
53 author="Alberto Mardegan",
54 author_email="alberto.mardegan@canonical.com",
55 url="http://launchpad.net/uoa-integration-tests",
56@@ -28,4 +27,4 @@
57 ('share/accounts/applications', ['data/uoa-integration-tests.application']),
58 ('/etc/ssl/certs', ['data/uoa-test-server.pem']),
59 ('/etc/signon-ui/webkit-options.d', ['data/localhost.conf']),
60- ], cmdclass={"build": build_extra.build_extra,})
61+ ])

Subscribers

People subscribed via source and target branches