* [meta-oe][PATCH 0/2] Remove recipes that are now in OE-Core
@ 2013-07-30 12:48 Paul Eggleton
2013-07-30 12:48 ` [meta-oe][PATCH 1/2] xinput-calibrator: remove Paul Eggleton
2013-07-30 12:48 ` [meta-oe][PATCH 2/2] pointercal-xinput: remove Paul Eggleton
0 siblings, 2 replies; 3+ messages in thread
From: Paul Eggleton @ 2013-07-30 12:48 UTC (permalink / raw)
To: openembedded-devel
The following changes since commit 47fc1cce49936e0a1c9f083172a7fd45c7434aac:
connman: Rename bbappend to match new version from oe-core (2013-07-30 11:35:03 +0200)
are available in the git repository at:
git://git.openembedded.org/meta-openembedded-contrib paule/xinput-calibrator
http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=paule/xinput-calibrator
Paul Eggleton (2):
xinput-calibrator: remove
pointercal-xinput: remove
.../pointercal-xinput/pointercal.xinput | 1 -
.../xinput-calibrator/pointercal-xinput_0.0.bb | 19 ----------
.../xinput-calibrator/xinput-calibrator.service | 11 ------
.../xinput-calibrator/xinput-calibrator_git.bb | 42 ----------------------
4 files changed, 73 deletions(-)
delete mode 100644 meta-oe/recipes-graphics/xinput-calibrator/pointercal-xinput/pointercal.xinput
delete mode 100644 meta-oe/recipes-graphics/xinput-calibrator/pointercal-xinput_0.0.bb
delete mode 100644 meta-oe/recipes-graphics/xinput-calibrator/xinput-calibrator/xinput-calibrator.service
delete mode 100644 meta-oe/recipes-graphics/xinput-calibrator/xinput-calibrator_git.bb
--
1.8.1.2
^ permalink raw reply [flat|nested] 3+ messages in thread
* [meta-oe][PATCH 1/2] xinput-calibrator: remove
2013-07-30 12:48 [meta-oe][PATCH 0/2] Remove recipes that are now in OE-Core Paul Eggleton
@ 2013-07-30 12:48 ` Paul Eggleton
2013-07-30 12:48 ` [meta-oe][PATCH 2/2] pointercal-xinput: remove Paul Eggleton
1 sibling, 0 replies; 3+ messages in thread
From: Paul Eggleton @ 2013-07-30 12:48 UTC (permalink / raw)
To: openembedded-devel
This is now part of OE-Core.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
.../xinput-calibrator/xinput-calibrator.service | 11 ------
.../xinput-calibrator/xinput-calibrator_git.bb | 42 ----------------------
2 files changed, 53 deletions(-)
delete mode 100644 meta-oe/recipes-graphics/xinput-calibrator/xinput-calibrator/xinput-calibrator.service
delete mode 100644 meta-oe/recipes-graphics/xinput-calibrator/xinput-calibrator_git.bb
diff --git a/meta-oe/recipes-graphics/xinput-calibrator/xinput-calibrator/xinput-calibrator.service b/meta-oe/recipes-graphics/xinput-calibrator/xinput-calibrator/xinput-calibrator.service
deleted file mode 100644
index 2301876..0000000
--- a/meta-oe/recipes-graphics/xinput-calibrator/xinput-calibrator/xinput-calibrator.service
+++ /dev/null
@@ -1,11 +0,0 @@
-[Unit]
-Description=Loads xinput calibration data
-ConditionPathExists=/etc/pointercal.xinput
-Requires=display-manager.service
-After=display-manager.service
-
-[Service]
-ExecStart=/usr/bin/xinput_calibrator_once.sh
-
-[Install]
-WantedBy=multi-user.target
diff --git a/meta-oe/recipes-graphics/xinput-calibrator/xinput-calibrator_git.bb b/meta-oe/recipes-graphics/xinput-calibrator/xinput-calibrator_git.bb
deleted file mode 100644
index 640aef1..0000000
--- a/meta-oe/recipes-graphics/xinput-calibrator/xinput-calibrator_git.bb
+++ /dev/null
@@ -1,42 +0,0 @@
-DESCRIPTION = "A generic touchscreen calibration program for X.Org"
-HOMEPAGE = "http://www.freedesktop.org/wiki/Software/xinput_calibrator"
-LICENSE = "MIT-X"
-LIC_FILES_CHKSUM = "file://src/calibrator.cpp;endline=22;md5=1bcba08f67cdb56f34021557898e4b5a"
-DEPENDS = "virtual/libx11 libxi"
-
-PV = "0.7.5+git${SRCPV}"
-PR = "r6"
-
-inherit autotools systemd
-
-SRCREV = "c01c5af807cb4b0157b882ab07a893df9a810111"
-SRC_URI = "git://github.com/tias/xinput_calibrator.git;protocol=git \
- file://xinput-calibrator.service"
-
-S = "${WORKDIR}/git"
-
-# force native X11 ui as we don't have gtk+ in DEPENDS
-EXTRA_OECONF += "--with-gui=x11"
-
-do_install_append() {
- install -d ${D}${bindir}
- install -m 0755 scripts/xinput_calibrator_pointercal.sh ${D}${bindir}/xinput_calibrator_once.sh
-
- install -d ${D}${sysconfdir}/xdg/autostart
- sed -i -e 's,^Exec=.*,Exec=${bindir}/xinput_calibrator_once.sh,' scripts/xinput_calibrator.desktop
- install -m 0644 scripts/xinput_calibrator.desktop ${D}${sysconfdir}/xdg/autostart
-
- if ${@base_contains('DISTRO_FEATURES','systemd','true','false',d)}; then
- install -d ${D}${systemd_unitdir}/system
- install -m 0644 ${WORKDIR}/xinput-calibrator.service ${D}${systemd_unitdir}/system
- fi
-}
-
-FILES_${PN} += "${sysconfdir}/xdg/autostart"
-RDEPENDS_${PN} = "xinput xterm"
-RRECOMMENDS_${PN} = "pointercal-xinput"
-
-RPROVIDES_${PN} += "${PN}-systemd"
-RREPLACES_${PN} += "${PN}-systemd"
-RCONFLICTS_${PN} += "${PN}-systemd"
-SYSTEMD_SERVICE_${PN} = "${PN}.service"
--
1.8.1.2
^ permalink raw reply related [flat|nested] 3+ messages in thread* [meta-oe][PATCH 2/2] pointercal-xinput: remove
2013-07-30 12:48 [meta-oe][PATCH 0/2] Remove recipes that are now in OE-Core Paul Eggleton
2013-07-30 12:48 ` [meta-oe][PATCH 1/2] xinput-calibrator: remove Paul Eggleton
@ 2013-07-30 12:48 ` Paul Eggleton
1 sibling, 0 replies; 3+ messages in thread
From: Paul Eggleton @ 2013-07-30 12:48 UTC (permalink / raw)
To: openembedded-devel
This is now part of OE-Core.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
.../pointercal-xinput/pointercal.xinput | 1 -
.../xinput-calibrator/pointercal-xinput_0.0.bb | 19 -------------------
2 files changed, 20 deletions(-)
delete mode 100644 meta-oe/recipes-graphics/xinput-calibrator/pointercal-xinput/pointercal.xinput
delete mode 100644 meta-oe/recipes-graphics/xinput-calibrator/pointercal-xinput_0.0.bb
diff --git a/meta-oe/recipes-graphics/xinput-calibrator/pointercal-xinput/pointercal.xinput b/meta-oe/recipes-graphics/xinput-calibrator/pointercal-xinput/pointercal.xinput
deleted file mode 100644
index 9633fc5..0000000
--- a/meta-oe/recipes-graphics/xinput-calibrator/pointercal-xinput/pointercal.xinput
+++ /dev/null
@@ -1 +0,0 @@
-# replace with valid machine specific pointercal.xinput
diff --git a/meta-oe/recipes-graphics/xinput-calibrator/pointercal-xinput_0.0.bb b/meta-oe/recipes-graphics/xinput-calibrator/pointercal-xinput_0.0.bb
deleted file mode 100644
index bfb952f..0000000
--- a/meta-oe/recipes-graphics/xinput-calibrator/pointercal-xinput_0.0.bb
+++ /dev/null
@@ -1,19 +0,0 @@
-DESCRIPTION = "Touchscreen calibration data from xinput-calibrator"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
-
-PR = "r4"
-
-SRC_URI = "file://pointercal.xinput"
-S = "${WORKDIR}"
-
-do_install() {
- # Only install file if it has a contents
- if [ -s ${S}/pointercal.xinput ]; then
- install -d ${D}${sysconfdir}/
- install -m 0644 ${S}/pointercal.xinput ${D}${sysconfdir}/
- fi
-}
-
-PACKAGE_ARCH = "${MACHINE_ARCH}"
-CONFFILES_${PN} = "${sysconfdir}/pointercal.xinput"
--
1.8.1.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-07-30 12:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-30 12:48 [meta-oe][PATCH 0/2] Remove recipes that are now in OE-Core Paul Eggleton
2013-07-30 12:48 ` [meta-oe][PATCH 1/2] xinput-calibrator: remove Paul Eggleton
2013-07-30 12:48 ` [meta-oe][PATCH 2/2] pointercal-xinput: remove Paul Eggleton
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.