summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-extended
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2017-04-27 11:04:51 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2017-08-31 10:18:33 +0200
commitec9e5ed06256ad92c818474cdb490dc0d3a0d0a3 (patch)
treee16d2a838f4561d5538928a58f805e5f1373225a /meta-python/recipes-extended
parent6775acb048dabd624c5c8197b683aba45ed91569 (diff)
downloadmeta-openembedded-ec9e5ed06256ad92c818474cdb490dc0d3a0d0a3.tar.gz
recipes: remove blacklisted recipes
* as PNBLACKLIST message says, these recipes are blacklisted for long time and nobody showed any interest to fix them * remove all unused .patch and .inc files as well Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-python/recipes-extended')
-rw-r--r--meta-python/recipes-extended/python-meh/files/tweak-native-language-support.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/meta-python/recipes-extended/python-meh/files/tweak-native-language-support.patch b/meta-python/recipes-extended/python-meh/files/tweak-native-language-support.patch
deleted file mode 100644
index 41cfaddc9..000000000
--- a/meta-python/recipes-extended/python-meh/files/tweak-native-language-support.patch
+++ /dev/null
@@ -1,44 +0,0 @@
1From 6e7689bced8ef56cfb5969560d23706f8e039807 Mon Sep 17 00:00:00 2001
2From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Mon, 11 Apr 2016 23:01:19 -0400
4Subject: [PATCH] tweak native language support
5
6- Only support en_GB only.
7
8Upstream-Status: Inappropriate [oe specific]
9
10Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
11---
12 Makefile | 9 ++++++++-
13 1 file changed, 8 insertions(+), 1 deletion(-)
14
15diff --git a/Makefile b/Makefile
16index d0a9784..db152c4 100644
17--- a/Makefile
18+++ b/Makefile
19@@ -24,7 +24,7 @@ test:
20 PYTHONPATH=. python $(TESTSUITE) -v
21
22 install:
23- python setup.py install --root=$(DESTDIR)
24+ python setup.py install --root=$(DESTDIR) --install-lib=${PYTHON_SITEPACKAGES_DIR} --prefix=${prefix}
25 $(MAKE) -C po install
26
27 ChangeLog:
28@@ -61,6 +61,13 @@ rpmlog:
29 @git log --pretty="format:- %s (%ae)" $(TAG).. |sed -e 's/@.*)/)/'
30 @echo
31
32+po-empty:
33+ for lingua in "en_GB" ; do \
34+ [ -f po/$$lingua.po ] || \
35+ msginit -i po/$(PKGNAME).pot -o po/$$lingua.po -l $$lingua --no-translator || \
36+ exit 1 ; \
37+ done
38+
39 potfile:
40 $(MAKE) -C po potfile
41
42--
431.9.1
44