All of lore.kernel.org
 help / color / mirror / Atom feed
* [thud 0/3] Backport python-module patches from master to thud
@ 2019-02-25 21:55 Sai Hari Chandana Kalluri
  2019-02-25 21:55 ` [meta-python][thud 1/3] Yocto recipes for tweepy packages Sai Hari Chandana Kalluri
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Sai Hari Chandana Kalluri @ 2019-02-25 21:55 UTC (permalink / raw)
  To: openembedded-devel

   The following recipes are included in master:
   python3-twitter
   python-requests-oauthlib
   ace-cloud-editor

This patch series provides backport patches for the above recipes in thud.

Sai Hari Chandana Kalluri (3):
  Yocto recipes for easy to use python2 and python3 libraries for
    accessing twitter APIs
  Yocto recipes for Python Requests and Oauthlib libraries to provide   
     easy-to-use Python 2 and Python 3 interfaces for building OAuth1
    and     OAuth2 clients.
  Yocto recipe for Ace-code-editor an open source embeddable code editor
    written     in JavaScript. It can be easily embedded in any webpage
    and JavaScript     application.

 .../ace-cloud-editor/ace-cloud-editor_git.bb       | 22 ++++++++++++++++++++++
 .../python/python-requests-oauthlib.inc            |  7 +++++++
 .../python/python-requests-oauthlib_0.8.0.bb       |  3 +++
 .../recipes-devtools/python/python-twitter.inc     | 17 +++++++++++++++++
 .../python/python-twitter_3.7.0.bb                 |  3 +++
 .../python/python3-requests-oauthlib_0.8.0.bb      |  3 +++
 .../python/python3-twitter_3.7.0.bb                |  3 +++
 7 files changed, 58 insertions(+)
 create mode 100644 meta-oe/recipes-support/ace-cloud-editor/ace-cloud-editor_git.bb
 create mode 100644 meta-python/recipes-devtools/python/python-requests-oauthlib.inc
 create mode 100644 meta-python/recipes-devtools/python/python-requests-oauthlib_0.8.0.bb
 create mode 100644 meta-python/recipes-devtools/python/python-twitter.inc
 create mode 100644 meta-python/recipes-devtools/python/python-twitter_3.7.0.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-requests-oauthlib_0.8.0.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-twitter_3.7.0.bb

-- 
2.7.4



^ permalink raw reply	[flat|nested] 5+ messages in thread

* [meta-python][thud 1/3] Yocto recipes for tweepy packages
  2019-02-25 21:55 [thud 0/3] Backport python-module patches from master to thud Sai Hari Chandana Kalluri
@ 2019-02-25 21:55 ` Sai Hari Chandana Kalluri
  2019-02-25 21:55 ` [meta-python][thud 2/3] python-requests-oauthlib: Recipes to Sai Hari Chandana Kalluri
  2019-02-25 21:55 ` [meta-oe][thud 3/3] Add recipe for ace cloud editor Sai Hari Chandana Kalluri
  2 siblings, 0 replies; 5+ messages in thread
From: Sai Hari Chandana Kalluri @ 2019-02-25 21:55 UTC (permalink / raw)
  To: openembedded-devel

Yocto recipes for easy to use python2 and python3 libraries for accessing
twitter APIs

Signed-off-by: Sai Hari Chandana Kalluri <chandana.kalluri@xilinx.com>
---
 meta-python/recipes-devtools/python/python-twitter.inc  | 17 +++++++++++++++++
 .../recipes-devtools/python/python-twitter_3.7.0.bb     |  3 +++
 .../recipes-devtools/python/python3-twitter_3.7.0.bb    |  3 +++
 3 files changed, 23 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-twitter.inc
 create mode 100644 meta-python/recipes-devtools/python/python-twitter_3.7.0.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-twitter_3.7.0.bb

diff --git a/meta-python/recipes-devtools/python/python-twitter.inc b/meta-python/recipes-devtools/python/python-twitter.inc
new file mode 100644
index 0000000..f5657ee
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-twitter.inc
@@ -0,0 +1,17 @@
+SUMMARY = "Twitter for Python"
+DESCRIPTION = "Python module to support twitter API"
+
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=0307fffd8c4d9946c029daa1426d26e7"
+
+SRC_URI[md5sum] = "c6dc2f315ded761aafc96bea3351c7f6"
+SRC_URI[sha256sum] = "fe85a79f58a01dd335968523b91c5fce760e7fe78bf25a6e71c72204fe499d0b"
+
+PYPI_PACKAGE = "tweepy"
+
+RDEPENDS_${PN} += "\
+        ${PYTHON_PN}-pip \
+        ${PYTHON_PN}-pysocks \
+        ${PYTHON_PN}-requests \
+        ${PYTHON_PN}-six \
+        "
diff --git a/meta-python/recipes-devtools/python/python-twitter_3.7.0.bb b/meta-python/recipes-devtools/python/python-twitter_3.7.0.bb
new file mode 100644
index 0000000..6a28b08
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-twitter_3.7.0.bb
@@ -0,0 +1,3 @@
+require python-twitter.inc
+inherit pypi setuptools
+
diff --git a/meta-python/recipes-devtools/python/python3-twitter_3.7.0.bb b/meta-python/recipes-devtools/python/python3-twitter_3.7.0.bb
new file mode 100644
index 0000000..c2e4d2e
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-twitter_3.7.0.bb
@@ -0,0 +1,3 @@
+require python-twitter.inc
+inherit pypi setuptools3
+
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [meta-python][thud 2/3] python-requests-oauthlib: Recipes to
  2019-02-25 21:55 [thud 0/3] Backport python-module patches from master to thud Sai Hari Chandana Kalluri
  2019-02-25 21:55 ` [meta-python][thud 1/3] Yocto recipes for tweepy packages Sai Hari Chandana Kalluri
@ 2019-02-25 21:55 ` Sai Hari Chandana Kalluri
  2019-02-25 21:55 ` [meta-oe][thud 3/3] Add recipe for ace cloud editor Sai Hari Chandana Kalluri
  2 siblings, 0 replies; 5+ messages in thread
From: Sai Hari Chandana Kalluri @ 2019-02-25 21:55 UTC (permalink / raw)
  To: openembedded-devel

Yocto recipes for Python Requests and Oauthlib libraries to provide easy-to-use
Python 2 and Python 3 interfaces for building OAuth1 and OAuth2 clients.

Signed-off-by: Sai Hari Chandana Kalluri <chandana.kalluri@xilinx.com>
---
 meta-python/recipes-devtools/python/python-requests-oauthlib.inc   | 7 +++++++
 .../recipes-devtools/python/python-requests-oauthlib_0.8.0.bb      | 3 +++
 .../recipes-devtools/python/python3-requests-oauthlib_0.8.0.bb     | 3 +++
 3 files changed, 13 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-requests-oauthlib.inc
 create mode 100644 meta-python/recipes-devtools/python/python-requests-oauthlib_0.8.0.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-requests-oauthlib_0.8.0.bb

diff --git a/meta-python/recipes-devtools/python/python-requests-oauthlib.inc b/meta-python/recipes-devtools/python/python-requests-oauthlib.inc
new file mode 100644
index 0000000..4bc6a36
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-requests-oauthlib.inc
@@ -0,0 +1,7 @@
+LICENSE = "ISC"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=22d117a849df10d047ed9b792838e863"
+
+SRC_URI[md5sum] = "4358a879a4377393bcfd37d0f9ae6d4d"
+SRC_URI[sha256sum] = "883ac416757eada6d3d07054ec7092ac21c7f35cb1d2cf82faf205637081f468"
+
+RDEPENDS_${PN} += "${PYTHON_PN}-requests"
diff --git a/meta-python/recipes-devtools/python/python-requests-oauthlib_0.8.0.bb b/meta-python/recipes-devtools/python/python-requests-oauthlib_0.8.0.bb
new file mode 100644
index 0000000..4318915
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-requests-oauthlib_0.8.0.bb
@@ -0,0 +1,3 @@
+require python-requests-oauthlib.inc
+inherit pypi setuptools
+
diff --git a/meta-python/recipes-devtools/python/python3-requests-oauthlib_0.8.0.bb b/meta-python/recipes-devtools/python/python3-requests-oauthlib_0.8.0.bb
new file mode 100644
index 0000000..1294661
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-requests-oauthlib_0.8.0.bb
@@ -0,0 +1,3 @@
+require python-requests-oauthlib.inc
+inherit pypi setuptools3
+
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [meta-oe][thud 3/3] Add recipe for ace cloud editor
  2019-02-25 21:55 [thud 0/3] Backport python-module patches from master to thud Sai Hari Chandana Kalluri
  2019-02-25 21:55 ` [meta-python][thud 1/3] Yocto recipes for tweepy packages Sai Hari Chandana Kalluri
  2019-02-25 21:55 ` [meta-python][thud 2/3] python-requests-oauthlib: Recipes to Sai Hari Chandana Kalluri
@ 2019-02-25 21:55 ` Sai Hari Chandana Kalluri
  2019-02-26  4:57   ` akuster808
  2 siblings, 1 reply; 5+ messages in thread
From: Sai Hari Chandana Kalluri @ 2019-02-25 21:55 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Bhargava Sreekantappa Gayathri

Yocto recipe for Ace-code-editor an open source embeddable code editor written
in JavaScript. It can be easily embedded in any webpage and JavaScript
application.

Signed-off-by: Sai Hari Chandana Kalluri <chandana.kalluri@xilinx.com>
Signed-off-by: Bhargava Sreekantappa Gayathri <bhargava.sreekantappa-gayathri@xilinx.com>
Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com>
---
 .../ace-cloud-editor/ace-cloud-editor_git.bb       | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 meta-oe/recipes-support/ace-cloud-editor/ace-cloud-editor_git.bb

diff --git a/meta-oe/recipes-support/ace-cloud-editor/ace-cloud-editor_git.bb b/meta-oe/recipes-support/ace-cloud-editor/ace-cloud-editor_git.bb
new file mode 100644
index 0000000..4ea6c8a
--- /dev/null
+++ b/meta-oe/recipes-support/ace-cloud-editor/ace-cloud-editor_git.bb
@@ -0,0 +1,22 @@
+DESCRIPTION = "Ace is a code editor written in JavaScript."
+SUMMARY = "Ace is a code editor written in JavaScript. This repository has only generated files"
+
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=794d11c5219c59c9efa2487c2b4066b2"
+
+SRC_URI = "git://github.com/ajaxorg/ace-builds.git;protocol=https"
+
+PV = "02.07.17+git${SRCPV}"
+SRCREV = "812e2c56aed246931a667f16c28b096e34597016"
+
+FILES_${PN} = "${datadir}/ace-builds"
+
+S = "${WORKDIR}/git"
+
+DEPENDS += "rsync-native"
+
+do_install () {
+    install -d ${D}/${datadir}/ace-builds/src-noconflict
+    rsync -r --exclude=".*" ${S}/src-noconflict/* ${D}/${datadir}/ace-builds/src-noconflict
+}
+
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [meta-oe][thud 3/3] Add recipe for ace cloud editor
  2019-02-25 21:55 ` [meta-oe][thud 3/3] Add recipe for ace cloud editor Sai Hari Chandana Kalluri
@ 2019-02-26  4:57   ` akuster808
  0 siblings, 0 replies; 5+ messages in thread
From: akuster808 @ 2019-02-26  4:57 UTC (permalink / raw)
  To: Sai Hari Chandana Kalluri, openembedded-devel
  Cc: Bhargava Sreekantappa Gayathri



On 2/25/19 1:55 PM, Sai Hari Chandana Kalluri wrote:
> Yocto recipe for Ace-code-editor an open source embeddable code editor written
> in JavaScript. It can be easily embedded in any webpage and JavaScript
> application.

Stable branches do not get new packages added to them.

- armin

>
> Signed-off-by: Sai Hari Chandana Kalluri <chandana.kalluri@xilinx.com>
> Signed-off-by: Bhargava Sreekantappa Gayathri <bhargava.sreekantappa-gayathri@xilinx.com>
> Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com>
> ---
>  .../ace-cloud-editor/ace-cloud-editor_git.bb       | 22 ++++++++++++++++++++++
>  1 file changed, 22 insertions(+)
>  create mode 100644 meta-oe/recipes-support/ace-cloud-editor/ace-cloud-editor_git.bb
>
> diff --git a/meta-oe/recipes-support/ace-cloud-editor/ace-cloud-editor_git.bb b/meta-oe/recipes-support/ace-cloud-editor/ace-cloud-editor_git.bb
> new file mode 100644
> index 0000000..4ea6c8a
> --- /dev/null
> +++ b/meta-oe/recipes-support/ace-cloud-editor/ace-cloud-editor_git.bb
> @@ -0,0 +1,22 @@
> +DESCRIPTION = "Ace is a code editor written in JavaScript."
> +SUMMARY = "Ace is a code editor written in JavaScript. This repository has only generated files"
> +
> +LICENSE = "BSD-3-Clause"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=794d11c5219c59c9efa2487c2b4066b2"
> +
> +SRC_URI = "git://github.com/ajaxorg/ace-builds.git;protocol=https"
> +
> +PV = "02.07.17+git${SRCPV}"
> +SRCREV = "812e2c56aed246931a667f16c28b096e34597016"
> +
> +FILES_${PN} = "${datadir}/ace-builds"
> +
> +S = "${WORKDIR}/git"
> +
> +DEPENDS += "rsync-native"
> +
> +do_install () {
> +    install -d ${D}/${datadir}/ace-builds/src-noconflict
> +    rsync -r --exclude=".*" ${S}/src-noconflict/* ${D}/${datadir}/ace-builds/src-noconflict
> +}
> +



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-02-26 13:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-25 21:55 [thud 0/3] Backport python-module patches from master to thud Sai Hari Chandana Kalluri
2019-02-25 21:55 ` [meta-python][thud 1/3] Yocto recipes for tweepy packages Sai Hari Chandana Kalluri
2019-02-25 21:55 ` [meta-python][thud 2/3] python-requests-oauthlib: Recipes to Sai Hari Chandana Kalluri
2019-02-25 21:55 ` [meta-oe][thud 3/3] Add recipe for ace cloud editor Sai Hari Chandana Kalluri
2019-02-26  4:57   ` akuster808

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.