Merge lp:~thomas-voss/platform-api/fix-1202309 into lp:platform-api

Proposed by Thomas Voß
Status: Merged
Approved by: Łukasz Zemczak
Approved revision: 94
Merged at revision: 94
Proposed branch: lp:~thomas-voss/platform-api/fix-1202309
Merge into: lp:platform-api
Diff against target: 147 lines (+15/-16)
13 files modified
data/ubuntu-platform-api.pc.in (+1/-1)
debian/libplatform-api-headers.install (+4/-4)
debian/libplatform-api-headers.links (+0/-1)
debian/libplatform-hardware-api-headers.install (+1/-1)
include/ubuntu/CMakeLists.txt (+1/-1)
include/ubuntu/application/CMakeLists.txt (+1/-1)
include/ubuntu/application/sensors/CMakeLists.txt (+1/-1)
include/ubuntu/application/sensors/event/CMakeLists.txt (+1/-1)
include/ubuntu/application/ui/CMakeLists.txt (+1/-1)
include/ubuntu/application/ui/input/CMakeLists.txt (+1/-1)
include/ubuntu/hardware/CMakeLists.txt (+1/-1)
include/ubuntu/ui/CMakeLists.txt (+1/-1)
src/mirserver/CMakeLists.txt (+1/-1)
To merge this branch: bzr merge lp:~thomas-voss/platform-api/fix-1202309
Reviewer Review Type Date Requested Status
Łukasz Zemczak Approve
Dimitri John Ledkov Approve
PS Jenkins bot continuous-integration Approve
Review via email: mp+175482@code.launchpad.net

Commit message

Remove versioned include directories.

Description of the change

Remove versioned include directories.

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
Dimitri John Ledkov (xnox) wrote :

yes, this is correct for now.

review: Approve
Revision history for this message
Łukasz Zemczak (sil2100) wrote :

I guess this makes sense right now. +1

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'data/ubuntu-platform-api.pc.in'
2--- data/ubuntu-platform-api.pc.in 2013-06-11 11:05:25 +0000
3+++ data/ubuntu-platform-api.pc.in 2013-07-18 10:12:43 +0000
4@@ -6,4 +6,4 @@
5 Name: @CMAKE_PROJECT_NAME@
6 Description: Ubuntu's platform abstraction layer.
7 Version: @UBUNTU_PLATFORM_API_VERSION_MAJOR@.@UBUNTU_PLATFORM_API_VERSION_MINOR@.@UBUNTU_PLATFORM_API_VERSION_PATCH@
8-Cflags: -I${includedir}/ubuntu-@UBUNTU_PLATFORM_API_VERSION_MAJOR@
9+Cflags: -I${includedir}/ubuntu
10
11=== modified file 'debian/libplatform-api-headers.install'
12--- debian/libplatform-api-headers.install 2013-07-08 10:39:36 +0000
13+++ debian/libplatform-api-headers.install 2013-07-18 10:12:43 +0000
14@@ -1,4 +1,4 @@
15-usr/include/ubuntu-1/status.h
16-usr/include/ubuntu-1/unit.h
17-usr/include/ubuntu-1/application
18-usr/include/ubuntu-1/ui
19+usr/include/ubuntu/status.h
20+usr/include/ubuntu/unit.h
21+usr/include/ubuntu/application
22+usr/include/ubuntu/ui
23
24=== removed file 'debian/libplatform-api-headers.links'
25--- debian/libplatform-api-headers.links 2013-07-04 05:44:27 +0000
26+++ debian/libplatform-api-headers.links 1970-01-01 00:00:00 +0000
27@@ -1,1 +0,0 @@
28-usr/include/ubuntu-1 usr/include/ubuntu
29\ No newline at end of file
30
31=== modified file 'debian/libplatform-hardware-api-headers.install'
32--- debian/libplatform-hardware-api-headers.install 2013-07-08 10:39:36 +0000
33+++ debian/libplatform-hardware-api-headers.install 2013-07-18 10:12:43 +0000
34@@ -1,1 +1,1 @@
35-usr/include/ubuntu-1/hardware
36+usr/include/ubuntu/hardware
37
38=== modified file 'include/ubuntu/CMakeLists.txt'
39--- include/ubuntu/CMakeLists.txt 2013-07-08 10:39:36 +0000
40+++ include/ubuntu/CMakeLists.txt 2013-07-18 10:12:43 +0000
41@@ -6,7 +6,7 @@
42
43 install(
44 FILES ${UBUNTU_HEADERS}
45- DESTINATION include/ubuntu-${UBUNTU_PLATFORM_API_VERSION_MAJOR}
46+ DESTINATION include/ubuntu
47 )
48
49 add_subdirectory(application)
50
51=== modified file 'include/ubuntu/application/CMakeLists.txt'
52--- include/ubuntu/application/CMakeLists.txt 2013-06-22 15:05:04 +0000
53+++ include/ubuntu/application/CMakeLists.txt 2013-07-18 10:12:43 +0000
54@@ -11,7 +11,7 @@
55
56 install(
57 FILES ${UBUNTU_APPLICATION_HEADERS}
58- DESTINATION include/ubuntu-${UBUNTU_PLATFORM_API_VERSION_MAJOR}/application
59+ DESTINATION include/ubuntu/application
60 )
61
62 add_subdirectory(sensors)
63
64=== modified file 'include/ubuntu/application/sensors/CMakeLists.txt'
65--- include/ubuntu/application/sensors/CMakeLists.txt 2013-06-11 11:05:25 +0000
66+++ include/ubuntu/application/sensors/CMakeLists.txt 2013-07-18 10:12:43 +0000
67@@ -8,7 +8,7 @@
68
69 install(
70 FILES ${UBUNTU_APPLICATION_SENSORS_HEADERS}
71- DESTINATION include/ubuntu-${UBUNTU_PLATFORM_API_VERSION_MAJOR}/application/sensors
72+ DESTINATION include/ubuntu/application/sensors
73 )
74
75 add_subdirectory(event)
76\ No newline at end of file
77
78=== modified file 'include/ubuntu/application/sensors/event/CMakeLists.txt'
79--- include/ubuntu/application/sensors/event/CMakeLists.txt 2013-06-11 11:05:25 +0000
80+++ include/ubuntu/application/sensors/event/CMakeLists.txt 2013-07-18 10:12:43 +0000
81@@ -7,5 +7,5 @@
82
83 install(
84 FILES ${UBUNTU_APPLICATION_SENSORS_EVENT_HEADERS}
85- DESTINATION include/ubuntu-${UBUNTU_PLATFORM_API_VERSION_MAJOR}/application/sensors/event
86+ DESTINATION include/ubuntu/application/sensors/event
87 )
88\ No newline at end of file
89
90=== modified file 'include/ubuntu/application/ui/CMakeLists.txt'
91--- include/ubuntu/application/ui/CMakeLists.txt 2013-06-11 11:05:25 +0000
92+++ include/ubuntu/application/ui/CMakeLists.txt 2013-07-18 10:12:43 +0000
93@@ -19,7 +19,7 @@
94
95 install(
96 FILES ${UBUNTU_APPLICATION_UI_HEADERS}
97- DESTINATION include/ubuntu-${UBUNTU_PLATFORM_API_VERSION_MAJOR}/application/ui
98+ DESTINATION include/ubuntu/application/ui
99 )
100
101 add_subdirectory(input)
102\ No newline at end of file
103
104=== modified file 'include/ubuntu/application/ui/input/CMakeLists.txt'
105--- include/ubuntu/application/ui/input/CMakeLists.txt 2013-06-11 11:05:25 +0000
106+++ include/ubuntu/application/ui/input/CMakeLists.txt 2013-07-18 10:12:43 +0000
107@@ -5,5 +5,5 @@
108
109 install(
110 FILES ${UBUNTU_APPLICATION_UI_INPUT_HEADERS}
111- DESTINATION include/ubuntu-${UBUNTU_PLATFORM_API_VERSION_MAJOR}/application/ui/input
112+ DESTINATION include/ubuntu/application/ui/input
113 )
114\ No newline at end of file
115
116=== modified file 'include/ubuntu/hardware/CMakeLists.txt'
117--- include/ubuntu/hardware/CMakeLists.txt 2013-07-08 10:39:36 +0000
118+++ include/ubuntu/hardware/CMakeLists.txt 2013-07-18 10:12:43 +0000
119@@ -5,5 +5,5 @@
120
121 install(
122 FILES ${UBUNTU_HARDWARE_HEADERS}
123- DESTINATION include/ubuntu-${UBUNTU_PLATFORM_API_VERSION_MAJOR}/hardware
124+ DESTINATION include/ubuntu/hardware
125 )
126\ No newline at end of file
127
128=== modified file 'include/ubuntu/ui/CMakeLists.txt'
129--- include/ubuntu/ui/CMakeLists.txt 2013-06-11 11:05:25 +0000
130+++ include/ubuntu/ui/CMakeLists.txt 2013-07-18 10:12:43 +0000
131@@ -1,4 +1,4 @@
132 install(
133 FILES ubuntu_ui_session_service.h
134- DESTINATION include/ubuntu-${UBUNTU_PLATFORM_API_VERSION_MAJOR}/ui
135+ DESTINATION include/ubuntu/ui
136 )
137\ No newline at end of file
138
139=== modified file 'src/mirserver/CMakeLists.txt'
140--- src/mirserver/CMakeLists.txt 2013-07-10 20:23:01 +0000
141+++ src/mirserver/CMakeLists.txt 2013-07-18 10:12:43 +0000
142@@ -35,4 +35,4 @@
143 )
144
145 install(TARGETS ubuntu_application_api_mirserver ${INSTALL_TARGETS_DEFAULT_ARGS})
146-install(FILES ubuntu_application_api_mirserver_priv.h DESTINATION include/ubuntu-${UBUNTU_PLATFORM_API_VERSION_MAJOR}/application)
147+install(FILES ubuntu_application_api_mirserver_priv.h DESTINATION include/ubuntu/application)

Subscribers

People subscribed via source and target branches