Merge lp:~mterry/mediaplayer-app/modern-packaging into lp:mediaplayer-app

Proposed by Michael Terry
Status: Merged
Approved by: Michael Terry
Approved revision: 72
Merged at revision: 70
Proposed branch: lp:~mterry/mediaplayer-app/modern-packaging
Merge into: lp:mediaplayer-app
Diff against target: 133 lines (+50/-37)
3 files modified
debian/changelog (+8/-0)
debian/control (+37/-32)
debian/copyright (+5/-5)
To merge this branch: bzr merge lp:~mterry/mediaplayer-app/modern-packaging
Reviewer Review Type Date Requested Status
PS Jenkins bot continuous-integration Approve
Mathieu Trudel-Lapierre Approve
Review via email: mp+155823@code.launchpad.net

Commit message

Clean up packaging a bit

Description of the change

Clean up packaging a bit

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Mathieu Trudel-Lapierre (cyphermox) wrote :

Looks fine to me, let's just make sure jenkins agree.

review: Approve
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
72. By Michael Terry

nevermind, the phablet-team PPA doesn't have non-armhf qtubuntu-media, so leave it like it is right now so we can pass -ci; once we move to new PPA, we can re-enable on other arches

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-04-02 14:37:19 +0000
3+++ debian/changelog 2013-04-10 17:43:20 +0000
4@@ -1,3 +1,11 @@
5+mediaplayer-app (0.20.4) UNRELEASED; urgency=low
6+
7+ * Rename package to mediaplayer-app
8+ * Clean up packaging
9+ * Automatic snapshot from revision 68 (bootstrap)
10+
11+ -- Michael Terry <mterry@ubuntu.com> Tue, 09 Apr 2013 12:38:26 -0400
12+
13 media-player (0.20.3) quantal; urgency=low
14
15 * Add NoDisplay=true into media-player.desktop.
16
17=== modified file 'debian/control'
18--- debian/control 2013-03-29 16:19:21 +0000
19+++ debian/control 2013-04-10 17:43:20 +0000
20@@ -1,48 +1,53 @@
21-Source: media-player
22+Source: mediaplayer-app
23 Section: video
24 Priority: extra
25 Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
26-Build-Depends:
27- debhelper (>= 9.0.0),
28- cmake,
29- qtbase5-dev,
30- qtdeclarative5-dev,
31- qtmultimedia5-dev,
32- libgl-dev[i386],
33- libgl-dev[amd64],
34- libgles2-mesa-dev[armel],
35- libgles2-mesa-dev[armhf],
36- libgstreamer0.10-dev,
37- python,
38-Standards-Version: 3.9.3
39+Build-Depends: cmake,
40+ debhelper (>= 9),
41+ libgl1-mesa-dev[i386 amd64] | libgl-dev[i386 amd64],
42+ libgles2-mesa-dev[armhf],
43+ libgstreamer0.10-dev,
44+ python,
45+ qtbase5-dev,
46+ qtdeclarative5-dev,
47+ qtmultimedia5-dev,
48+Standards-Version: 3.9.4
49+# If you don't have commit rights to lp:mediaplayer-app but need to upload
50+# packaging changes, just go ahead. The developers will notice and sync
51+# up the code again.
52+Vcs-Bzr: lp:mediaplayer-app
53 Vcs-Browser: https://code.launchpad.net/mediaplayer-app
54-Vcs-Bzr: lp:mediaplayer-app
55
56-Package: media-player
57-Architecture: any
58-Depends: ${shlibs:Depends}, ${misc:Depends}
59- mediaplayerplugin-aal[armel],
60- mediaplayerplugin-aal[armhf],
61+Package: mediaplayer-app
62+Architecture: i386 amd64 armhf
63+Depends: ${misc:Depends},
64+ ${shlibs:Depends},
65+ gstreamer0.10-ffmpeg,
66+ gstreamer0.10-plugins-base,
67+ gstreamer0.10-plugins-good,
68+ libhud-qt-qml,
69 qtdeclarative5-qtmultimedia-plugin | libqt5declarative5-qtmultimedia-plugin,
70+ qtdeclarative5-ubuntu-ui-toolkit-plugin | qt-components-ubuntu,
71 qtdeclarative5-window-plugin,
72 qtdeclarative5-xmllistmodel-plugin,
73- qtdeclarative5-ubuntu-ui-toolkit-plugin | qt-components-ubuntu,
74- libhud-qt-qml,
75- gstreamer0.10-ffmpeg,
76- gstreamer0.10-plugins-base,
77- gstreamer0.10-plugins-good,
78+ qtubuntu-media[armhf] | mediaplayerplugin-aal[armhf],
79+Conflicts: media-player
80+Replaces: media-player
81+Provides: media-player
82 Description: Ubuntu Media player
83 A QML Media player service used by Ubuntu shell to play video sources.
84
85-Package: media-player-autopilot
86+Package: mediaplayer-app-autopilot
87 Architecture: all
88-Depends: ${shlibs:Depends},
89- ${misc:Depends},
90- python-support (>= 0.90),
91- media-player (= ${source:Version}),
92+Depends: ${misc:Depends},
93+ ${shlibs:Depends},
94 libautopilot-qt,
95 libqt5test5,
96 libqt5widgets5,
97-Description: Test package for the media-player app
98- Autopilot tests for the media-player package
99+ mediaplayer-app (>= ${source:Version}),
100+Conflicts: media-player-autopilot
101+Replaces: media-player-autopilot
102+Provides: media-player-autopilot
103+Description: Test package for mediaplayer-app
104+ Autopilot tests for the mediaplayer-app package
105
106
107=== modified file 'debian/copyright'
108--- debian/copyright 2013-02-20 21:29:24 +0000
109+++ debian/copyright 2013-04-10 17:43:20 +0000
110@@ -1,15 +1,15 @@
111 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
112-Upstream-Name: ubuntu-media-player
113-Source: <https://code.launchpad.net/ubuntu-media-player>
114+Upstream-Name: Media Player App
115+Source: https://code.launchpad.net/ubuntu-media-player
116
117 Files: *
118 Copyright: 2013 Canonical Ltd.
119-License: GPL-3.0
120+License: GPL-3
121
122-License: GPL-3.0
123+License: GPL-3
124 This program is free software: you can redistribute it and/or modify
125 it under the terms of the GNU General Public License as published by
126- the Free Software Foundation, either version 3 of the License.
127+ the Free Software Foundation, version 3 of the License.
128 .
129 This package is distributed in the hope that it will be useful,
130 but WITHOUT ANY WARRANTY; without even the implied warranty of
131
132=== renamed file 'debian/media-player-autopilot.install' => 'debian/mediaplayer-app-autopilot.install'
133=== renamed file 'debian/media-player.install' => 'debian/mediaplayer-app.install'

Subscribers

People subscribed via source and target branches