Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
meta-nemo
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
NemoMobile
meta-nemo
Commits
ae2012e3
Commit
ae2012e3
authored
Jul 13, 2015
by
Florent Revest
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes -dbg packages
parent
0efc95dd
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
53 additions
and
17 deletions
+53
-17
cor_git.bb
recipes-qt/qt5/cor_git.bb
+1
-3
dsme_git.bb
recipes-qt/qt5/dsme_git.bb
+2
-1
libdsme_git.bb
recipes-qt/qt5/libdsme_git.bb
+3
-2
libiphb_git.bb
recipes-qt/qt5/libiphb_git.bb
+1
-4
libngf-qt_git.bb
recipes-qt/qt5/libngf-qt_git.bb
+4
-2
libresourceqt_git.bb
recipes-qt/qt5/libresourceqt_git.bb
+2
-0
mce_git.bb
recipes-qt/qt5/mce_git.bb
+1
-0
mlite_git.bb
recipes-qt/qt5/mlite_git.bb
+3
-1
qtaround_git.bb
recipes-qt/qt5/qtaround_git.bb
+1
-4
0001-Disable-resourcepolicy-plugin.patch
...qt5/qtmultimedia/0001-Disable-resourcepolicy-plugin.patch
+24
-0
qtmultimedia_git.bbappend
recipes-qt/qt5/qtmultimedia_git.bbappend
+2
-0
statefs-qt_git.bb
recipes-qt/qt5/statefs-qt_git.bb
+7
-0
usb-moded_git.bb
recipes-qt/qt5/usb-moded_git.bb
+2
-0
No files found.
recipes-qt/qt5/cor_git.bb
View file @
ae2012e3
...
...
@@ -14,6 +14,4 @@ inherit cmake
DEPENDS+=" tut udev "
EXTRA_OECMAKE=" -DVERSION=0.1.17"
do_install_append() {
rm -rf ${D}/opt
}
FILES_${PN}-dbg += "/opt /usr/lib/cmake/cor"
recipes-qt/qt5/dsme_git.bb
View file @
ae2012e3
...
...
@@ -34,5 +34,6 @@ do_install_append() {
ln -s ../dsme.service ${D}/lib/systemd/system/multi-user.target.wants/dsme.service
install -d ${D}/var/lib/dsme
[ ! -f ${D}/var/lib/dsme/alarm_queue_status ] && echo 0 > ${D}/var/lib/dsme/alarm_queue_status
rm -rf ${D}/opt
}
FILES_${PN}-dbg += "/opt"
recipes-qt/qt5/libdsme_git.bb
View file @
ae2012e3
...
...
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/nemomobile/libdsme.git"
LICENSE = "LGPL-2.1+"
LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1"
DEPENDS += " glib-2.0 "
DEPENDS += " glib-2.0
libcheck
"
SRC_URI = "git://github.com/nemomobile/libdsme.git;protocol=https \
file://001-Allows-custom-cflags.patch \
...
...
@@ -15,5 +15,6 @@ S = "${WORKDIR}/git"
do_install() {
oe_runmake install DESTDIR=${D}
rm -rf ${D}/opt
}
FILES_${PN}-dbg += "/opt"
recipes-qt/qt5/libiphb_git.bb
View file @
ae2012e3
...
...
@@ -15,7 +15,4 @@ inherit autotools pkgconfig
B = "${WORKDIR}/git"
do_install_append() {
rm -rf ${D}/opt
}
FILES_${PN}-dbg += "/opt"
recipes-qt/qt5/libngf-qt_git.bb
View file @
ae2012e3
...
...
@@ -15,6 +15,8 @@ inherit qmake5
do_install_append() {
mv ${D}/lib/* ${D}/usr/lib/
mv ${D}/include/* ${D}/usr/include/
rmdir ${D}/include/
rm -rf ${D}/opt/
rmdir ${D}/include/ ${D}/lib/
}
FILES_${PN} += "/usr/lib/qt5/qml/org/nemomobile/ngf"
FILES_${PN}-dbg += "/opt /usr/lib/qt5/qml/org/nemomobile/ngf/.debug/"
recipes-qt/qt5/libresourceqt_git.bb
View file @
ae2012e3
...
...
@@ -14,3 +14,5 @@ DEPENDS += " qtbase libresource dbus virtual/libgles2"
inherit qmake5
B = "${WORKDIR}/git"
FILES_${PN}-dbg += "/usr/lib/libresourceqt-qt5-tests /usr/share"
recipes-qt/qt5/mce_git.bb
View file @
ae2012e3
...
...
@@ -16,4 +16,5 @@ do_install() {
oe_runmake install DESTDIR=${D}
}
FILES_${PN} += " /run/mce /lib/systemd/system "
FILES_${PN}-dbg += "/usr/lib/mce/modules/.debug"
recipes-qt/qt5/mlite_git.bb
View file @
ae2012e3
...
...
@@ -15,6 +15,8 @@ B = "${WORKDIR}/git"
# Out of dir build breaks mlite5.pc installation
do_install_append() {
rm -rf ${D}/opt
cd src/
cp *.h MDConfGroup MNotificationGroup MRemoteAction MExport MDesktopEntry MNotification MGConfItem ${D}/usr/include/mlite5/
}
FILES_${PN}-dbg += "/opt"
recipes-qt/qt5/qtaround_git.bb
View file @
ae2012e3
...
...
@@ -14,7 +14,4 @@ inherit cmake_qt5
EXTRA_OECMAKE=" -DVERSION=0.2.6 -DOE_QMAKE_PATH_EXTERNAL_HOST_BINS=${STAGING_DIR_NATIVE}/usr/bin/qt5/"
do_install_append() {
rm -rf ${D}/opt
}
FILES_${PN}-dbg += "/opt"
recipes-qt/qt5/qtmultimedia/0001-Disable-resourcepolicy-plugin.patch
0 → 100644
View file @
ae2012e3
From a2e0de9de81bd52d1382b1dc4d309168b633dbd8 Mon Sep 17 00:00:00 2001
From: Florent Revest <revestflo@gmail.com>
Date: Mon, 13 Jul 2015 15:36:26 +0200
Subject: [PATCH 1/1] Disable resourcepolicy plugin
---
src/plugins/plugins.pro | 4 ----
1 file changed, 4 deletions(-)
diff --git a/src/plugins/plugins.pro b/src/plugins/plugins.pro
index dc19791..6dc28d4 100644
--- a/src/plugins/plugins.pro
+++ b/src/plugins/plugins.pro
@@ -59,7 +59,3 @@
mac:!simulator {
config_avfoundation: SUBDIRS += avfoundation
}
-config_resourcepolicy {
- SUBDIRS += resourcepolicy
-}
-
--
2.1.4
recipes-qt/qt5/qtmultimedia_git.bbappend
0 → 100644
View file @
ae2012e3
FILESEXTRAPATHS_prepend := "${THISDIR}/qtmultimedia:"
SRC_URI += "file://0001-Disable-resourcepolicy-plugin.patch"
recipes-qt/qt5/statefs-qt_git.bb
View file @
ae2012e3
...
...
@@ -16,3 +16,10 @@ inherit cmake_qt5
B = "${WORKDIR}/git"
EXTRA_OECMAKE=" -DVERSION=0.2.51 -DOE_QMAKE_PATH_EXTERNAL_HOST_BINS=${STAGING_DIR_NATIVE}/usr/bin/qt5/"
do_install_append() {
rm ${D}/usr/lib/qt5/qml/Mer/State/libstatefs-declarative.so
}
FILES_${PN} += "/usr/lib/qt5/qml/Mer/State/"
FILES_${PN}-dbg += "/usr/lib/qt5/qml/Mer/State/.debug/"
recipes-qt/qt5/usb-moded_git.bb
View file @
ae2012e3
...
...
@@ -52,3 +52,5 @@ do_install_append() {
install -m 644 -D systemd/usb-rescue-mode-off.service ${D}/lib/systemd/system/graphical.target.wants/usb-rescue-mode-off.service
install -m 644 -D systemd/usb-moded.conf ${D}/etc/tmpfiles.d/usb-moded.conf
}
FILES_${PN} += " /lib/systemd/system "
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment