added my Recipes
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
Add dependency of __init__.py
|
||||
|
||||
Tasks must be done after exec of __init__, which creates the
|
||||
src/_generated directory that tasks are based on.
|
||||
|
||||
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
|
||||
|
||||
Upstream-Status: Submitted
|
||||
(However it seems that this project is out of maintanence.)
|
||||
|
||||
diff -ruN telepathy-python-0.15.19-orig/src/Makefile.am telepathy-python-0.15.19/src/Makefile.am
|
||||
--- telepathy-python-0.15.19-orig/src/Makefile.am 2011-03-10 08:51:49.000000000 +0800
|
||||
+++ telepathy-python-0.15.19/src/Makefile.am 2011-03-10 08:54:45.000000000 +0800
|
||||
@@ -39,17 +39,17 @@
|
||||
XSLTPROC_OPTS = --nonet --novalid --xinclude
|
||||
tools_dir = $(top_srcdir)/tools
|
||||
|
||||
-_generated/interfaces.py: $(tools_dir)/python-interfaces-generator.xsl $(wildcard $(spec_dir)/*.xml)
|
||||
+_generated/interfaces.py: _generated/__init__.py $(tools_dir)/python-interfaces-generator.xsl $(wildcard $(spec_dir)/*.xml)
|
||||
$(AM_V_GEN)$(XSLTPROC) $(XSLTPROC_OPTS) -o $@ \
|
||||
$(tools_dir)/python-interfaces-generator.xsl \
|
||||
$(spec_dir)/all.xml
|
||||
|
||||
-_generated/constants.py: $(tools_dir)/python-constants-generator.xsl $(wildcard $(spec_dir)/*.xml)
|
||||
+_generated/constants.py: _generated/__init__.py $(tools_dir)/python-constants-generator.xsl $(wildcard $(spec_dir)/*.xml)
|
||||
$(AM_V_GEN)$(XSLTPROC) $(XSLTPROC_OPTS) -o $@ \
|
||||
$(tools_dir)/python-constants-generator.xsl \
|
||||
$(spec_dir)/all.xml
|
||||
|
||||
-_generated/errors.py: $(tools_dir)/python-errors-generator.xsl $(wildcard $(spec_dir)/*.xml)
|
||||
+_generated/errors.py: _generated/__init__.py $(tools_dir)/python-errors-generator.xsl $(wildcard $(spec_dir)/*.xml)
|
||||
$(AM_V_GEN)$(XSLTPROC) $(XSLTPROC_OPTS) -o $@ \
|
||||
$(tools_dir)/python-errors-generator.xsl \
|
||||
$(spec_dir)/all.xml
|
||||
@@ -58,7 +58,7 @@
|
||||
$(AM_V_GEN)$(mkdir_p) $(dir $@)
|
||||
@echo "# Placeholder for package" > $@
|
||||
|
||||
-_generated/%.py: $(tools_dir)/spec-to-python.xsl $(spec_dir)/%.xml
|
||||
+_generated/%.py: _generated/__init__.py $(tools_dir)/spec-to-python.xsl $(spec_dir)/%.xml
|
||||
$(AM_V_GEN)$(XSLTPROC) $(XSLTPROC_OPTS) -o $@ \
|
||||
$(tools_dir)/spec-to-python.xsl \
|
||||
$(spec_dir)/$*.xml
|
||||
@@ -0,0 +1,26 @@
|
||||
commit f6c67662145de889055a86a6b3b12c70a45fc8d5
|
||||
Author: Dongxiao Xu <dongxiao.xu@intel.com>
|
||||
Date: Wed Sep 7 16:02:20 2011 +0800
|
||||
|
||||
Avoid duplicated installation of errors.py
|
||||
|
||||
newer version of autotools don't seem to like listing files to install
|
||||
twice. Remove one errors.py from the installation list.
|
||||
|
||||
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
|
||||
|
||||
Upstream-Status: Inappropriate [upstream inactive]
|
||||
|
||||
diff --git a/src/Makefile.am b/src/Makefile.am
|
||||
index 5c27dfe..7536e43 100644
|
||||
--- a/src/Makefile.am
|
||||
+++ b/src/Makefile.am
|
||||
@@ -11,7 +11,7 @@ telepathy_PYTHON = \
|
||||
|
||||
# telepathy._generated.* auto-generated modules
|
||||
spec_dir = $(top_srcdir)/spec
|
||||
-spec_files := $(patsubst $(spec_dir)%.xml,_generated%.py,$(wildcard $(spec_dir)/*.xml))
|
||||
+spec_files := $(filter-out _generated/errors.py, $(patsubst $(spec_dir)%.xml,_generated%.py,$(wildcard $(spec_dir)/*.xml)))
|
||||
|
||||
BUILT_SOURCES = \
|
||||
_generated/interfaces.py \
|
||||
@@ -0,0 +1,26 @@
|
||||
Upstream-Status: Pending
|
||||
|
||||
automake 1.12 has deprecated use of mkdir_p, and it recommends
|
||||
use of MKDIR_P instead. Changed the code to avoid these kind
|
||||
of warning-errors.
|
||||
|
||||
| make[1]: _generated/: Command not found
|
||||
| make[1]: *** [_generated/__init__.py] Error 127
|
||||
| make[1]: Leaving directory `/srv/home/nitin/builds2/build0/tmp/work/i586-poky-linux/telepathy-python-0.15.19-r4/telepathy-python-0.15.19/src'
|
||||
| make: *** [all-recursive] Error 1
|
||||
|
||||
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
|
||||
2012/07/10
|
||||
Index: telepathy-python-0.15.19/src/Makefile.am
|
||||
===================================================================
|
||||
--- telepathy-python-0.15.19.orig/src/Makefile.am
|
||||
+++ telepathy-python-0.15.19/src/Makefile.am
|
||||
@@ -55,7 +55,7 @@ _generated/errors.py: _generated/__init_
|
||||
$(spec_dir)/all.xml
|
||||
|
||||
_generated/__init__.py:
|
||||
- $(AM_V_GEN)$(mkdir_p) $(dir $@)
|
||||
+ $(AM_V_GEN)$(MKDIR_P) $(dir $@)
|
||||
@echo "# Placeholder for package" > $@
|
||||
|
||||
_generated/%.py: _generated/__init__.py $(tools_dir)/spec-to-python.xsl $(spec_dir)/%.xml
|
||||
@@ -0,0 +1,34 @@
|
||||
SUMMARY = "Telepathy IM framework - Python package"
|
||||
HOMEPAGE = "http://telepathy.freedesktop.org/wiki/"
|
||||
LICENSE = "LGPL-2.1-or-later"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1 \
|
||||
file://src/utils.py;beginline=1;endline=17;md5=9a07d1a9791a7429a14e7b25c6c86822"
|
||||
|
||||
DEPENDS = "libxslt-native"
|
||||
|
||||
SRC_URI = "http://telepathy.freedesktop.org/releases/telepathy-python/telepathy-python-${PV}.tar.gz \
|
||||
file://parallel_make.patch \
|
||||
file://remove_duplicate_install.patch \
|
||||
file://telepathy-python_fix_for_automake_1.12.patch"
|
||||
|
||||
PR = "r6"
|
||||
|
||||
S = "${WORKDIR}/telepathy-python-${PV}"
|
||||
|
||||
inherit autotools python3native
|
||||
|
||||
SRC_URI[md5sum] = "f7ca25ab3c88874015b7e9728f7f3017"
|
||||
SRC_URI[sha256sum] = "244c0e1bf4bbd78ae298ea659fe10bf3a73738db550156767cc2477aedf72376"
|
||||
|
||||
FILES:${PN} += "\
|
||||
${libdir}/python*/site-packages/telepathy/*.py \
|
||||
${libdir}/python*/site-packages/telepathy/*/*.py \
|
||||
"
|
||||
|
||||
do_install:append () {
|
||||
rm -fr ${D}${libdir}/python*/site-packages/telepathy/__pycache__
|
||||
rm -fr ${D}${libdir}/python*/site-packages/telepathy/__pycache__
|
||||
rm -fr ${D}${libdir}/python*/site-packages/telepathy/*/__pycache__
|
||||
rm -fr ${D}${libdir}/python*/site-packages/telepathy/*/__pycache__
|
||||
}
|
||||
RDEPENDS:${PN} += "python3-dbus"
|
||||
Reference in New Issue
Block a user