All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-virtualization] [PATCH] python-google-api-python-client: Remove the recipe
@ 2020-09-08 17:21 zangrc
  2020-09-08 17:21 ` [meta-virtualization] [PATCH] python3-happybase: Consolidate in a single file zangrc
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: zangrc @ 2020-09-08 17:21 UTC (permalink / raw)
  To: meta-virtualization

Since python2 is no longer maintained, the recipe of python2 is removed.
The version of python3 is located at:
meta-openembedded/meta-python/recipes-devtools/python/python3-google-api-python-client_1.11.0.bb

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 .../python-google-api-python-client_1.6.6.bb     | 16 ----------------
 1 file changed, 16 deletions(-)
 delete mode 100644 meta-openstack/recipes-devtools/python/python-google-api-python-client_1.6.6.bb

diff --git a/meta-openstack/recipes-devtools/python/python-google-api-python-client_1.6.6.bb b/meta-openstack/recipes-devtools/python/python-google-api-python-client_1.6.6.bb
deleted file mode 100644
index 8aec8ce..0000000
--- a/meta-openstack/recipes-devtools/python/python-google-api-python-client_1.6.6.bb
+++ /dev/null
@@ -1,16 +0,0 @@
-SUMMARY = "Client library for accessing the Plus, Moderator, and many other Google APIs."
-AUTHOR = "Google Inc."
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=94023d14f6b58272fd885e4e3f2f08b3"
-
-inherit setuptools3 pypi
-
-SRC_URI[md5sum] = "3059dce9c0308852e177c7d99d3f9ac2"
-SRC_URI[sha256sum] = "ec72991f95201996a4edcea44a079cae0292798086beaadb054d91921632fe1b"
-
-RDEPENDS_${PN} += " \
-        python-httplib2 \
-        python-oauth2client \
-        python-six \
-        python-uritemplate \
-        "
-- 
2.25.1




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

* [meta-virtualization] [PATCH] python3-happybase: Consolidate in a single file
  2020-09-08 17:21 [meta-virtualization] [PATCH] python-google-api-python-client: Remove the recipe zangrc
@ 2020-09-08 17:21 ` zangrc
  2020-09-08 17:21 ` [meta-virtualization] [PATCH] python3-xstatic-roboto-fontface: Remove python2 recipe zangrc
  2020-09-14  2:22 ` [meta-virtualization] [PATCH] python-google-api-python-client: Remove the recipe Bruce Ashfield
  2 siblings, 0 replies; 4+ messages in thread
From: zangrc @ 2020-09-08 17:21 UTC (permalink / raw)
  To: meta-virtualization

Consolidate inc and bb files into a single bb file.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 .../python/python-happybase.inc               | 18 -----------------
 .../python/python3-happybase_1.2.0.bb         | 20 +++++++++++++++++--
 2 files changed, 18 insertions(+), 20 deletions(-)
 delete mode 100644 meta-openstack/recipes-devtools/python/python-happybase.inc

diff --git a/meta-openstack/recipes-devtools/python/python-happybase.inc b/meta-openstack/recipes-devtools/python/python-happybase.inc
deleted file mode 100644
index 325b2d1..0000000
--- a/meta-openstack/recipes-devtools/python/python-happybase.inc
+++ /dev/null
@@ -1,18 +0,0 @@
-DESCRIPTION = "Python library to interact with Apache HBase"
-HOMEPAGE = "https://pypi.python.org/pypi/happybase/"
-SECTION = "devel/python"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=41f55ae3d7000e4323e84c468d8b42ee"
-
-SRC_URI[md5sum] = "96cb7ea8163f531907fabd0dddc8b87e"
-SRC_URI[sha256sum] = "850b4ee651128588a57e1e152dd1252e5ec39776a5d3d14ee892b8bac0fa9e1a"
-
-inherit pypi
-
-do_install_append() {
-	perm_files=$(find "${D}${PYTHON_SITEPACKAGES_DIR}/" -name "top_level.txt")
-	perm_files="$perm_files "$(find "${D}${PYTHON_SITEPACKAGES_DIR}/" -name "PKG-INFO")
-	for f in $perm_files; do
-		chmod 644 "${f}"
-	done
-}
diff --git a/meta-openstack/recipes-devtools/python/python3-happybase_1.2.0.bb b/meta-openstack/recipes-devtools/python/python3-happybase_1.2.0.bb
index 8b5571b..56b6c79 100644
--- a/meta-openstack/recipes-devtools/python/python3-happybase_1.2.0.bb
+++ b/meta-openstack/recipes-devtools/python/python3-happybase_1.2.0.bb
@@ -1,2 +1,18 @@
-inherit setuptools3
-require python-happybase.inc
+DESCRIPTION = "Python library to interact with Apache HBase"
+HOMEPAGE = "https://pypi.python.org/pypi/happybase/"
+SECTION = "devel/python"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=41f55ae3d7000e4323e84c468d8b42ee"
+
+SRC_URI[md5sum] = "96cb7ea8163f531907fabd0dddc8b87e"
+SRC_URI[sha256sum] = "850b4ee651128588a57e1e152dd1252e5ec39776a5d3d14ee892b8bac0fa9e1a"
+
+inherit setuptools3 pypi
+
+do_install_append() {
+	perm_files=$(find "${D}${PYTHON_SITEPACKAGES_DIR}/" -name "top_level.txt")
+	perm_files="$perm_files "$(find "${D}${PYTHON_SITEPACKAGES_DIR}/" -name "PKG-INFO")
+	for f in $perm_files; do
+		chmod 644 "${f}"
+	done
+}
-- 
2.25.1




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

* [meta-virtualization] [PATCH] python3-xstatic-roboto-fontface: Remove python2 recipe
  2020-09-08 17:21 [meta-virtualization] [PATCH] python-google-api-python-client: Remove the recipe zangrc
  2020-09-08 17:21 ` [meta-virtualization] [PATCH] python3-happybase: Consolidate in a single file zangrc
@ 2020-09-08 17:21 ` zangrc
  2020-09-14  2:22 ` [meta-virtualization] [PATCH] python-google-api-python-client: Remove the recipe Bruce Ashfield
  2 siblings, 0 replies; 4+ messages in thread
From: zangrc @ 2020-09-08 17:21 UTC (permalink / raw)
  To: meta-virtualization

Since python2 is no longer maintained, the recipe of python2 is removed.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 .../python/python-xstatic-roboto-fontface.inc | 19 -----------------
 .../python-xstatic-roboto-fontface_0.5.0.0.bb |  2 --
 ...python3-xstatic-roboto-fontface_0.5.0.0.bb | 21 +++++++++++++++++--
 3 files changed, 19 insertions(+), 23 deletions(-)
 delete mode 100644 meta-openstack/recipes-devtools/python/python-xstatic-roboto-fontface.inc
 delete mode 100644 meta-openstack/recipes-devtools/python/python-xstatic-roboto-fontface_0.5.0.0.bb

diff --git a/meta-openstack/recipes-devtools/python/python-xstatic-roboto-fontface.inc b/meta-openstack/recipes-devtools/python/python-xstatic-roboto-fontface.inc
deleted file mode 100644
index d11d0a1..0000000
--- a/meta-openstack/recipes-devtools/python/python-xstatic-roboto-fontface.inc
+++ /dev/null
@@ -1,19 +0,0 @@
-DESCRIPTION = "A simple package providing the Roboto fontface."
-HOMEPAGE = "https://github.com/choffmeister/roboto-fontface-bower"
-SECTION = "devel/python"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
-
-PYPI_PACKAGE = "XStatic-roboto-fontface"
-
-SRC_URI[md5sum] = "32273ba68fa063623461db0b0767524f"
-SRC_URI[sha256sum] = "6d272df58e20eec3a15bca279163f38614c7074e2fecb537a58b29d109e83f62"
-
-inherit pypi
-
-DEPENDS += " \
-        ${PYTHON_PN}-pip \
-        "
-
-RDEPENDS_${PN} += " \
-        "
diff --git a/meta-openstack/recipes-devtools/python/python-xstatic-roboto-fontface_0.5.0.0.bb b/meta-openstack/recipes-devtools/python/python-xstatic-roboto-fontface_0.5.0.0.bb
deleted file mode 100644
index e05e35e..0000000
--- a/meta-openstack/recipes-devtools/python/python-xstatic-roboto-fontface_0.5.0.0.bb
+++ /dev/null
@@ -1,2 +0,0 @@
-require python-xstatic-roboto-fontface.inc
-inherit setuptools3
diff --git a/meta-openstack/recipes-devtools/python/python3-xstatic-roboto-fontface_0.5.0.0.bb b/meta-openstack/recipes-devtools/python/python3-xstatic-roboto-fontface_0.5.0.0.bb
index e05e35e..a3d6bd0 100644
--- a/meta-openstack/recipes-devtools/python/python3-xstatic-roboto-fontface_0.5.0.0.bb
+++ b/meta-openstack/recipes-devtools/python/python3-xstatic-roboto-fontface_0.5.0.0.bb
@@ -1,2 +1,19 @@
-require python-xstatic-roboto-fontface.inc
-inherit setuptools3
+DESCRIPTION = "A simple package providing the Roboto fontface."
+HOMEPAGE = "https://github.com/choffmeister/roboto-fontface-bower"
+SECTION = "devel/python"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
+
+PYPI_PACKAGE = "XStatic-roboto-fontface"
+
+SRC_URI[md5sum] = "32273ba68fa063623461db0b0767524f"
+SRC_URI[sha256sum] = "6d272df58e20eec3a15bca279163f38614c7074e2fecb537a58b29d109e83f62"
+
+inherit setuptools3 pypi
+
+DEPENDS += " \
+        ${PYTHON_PN}-pip \
+        "
+
+RDEPENDS_${PN} += " \
+        "
-- 
2.25.1




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

* Re: [meta-virtualization] [PATCH] python-google-api-python-client: Remove the recipe
  2020-09-08 17:21 [meta-virtualization] [PATCH] python-google-api-python-client: Remove the recipe zangrc
  2020-09-08 17:21 ` [meta-virtualization] [PATCH] python3-happybase: Consolidate in a single file zangrc
  2020-09-08 17:21 ` [meta-virtualization] [PATCH] python3-xstatic-roboto-fontface: Remove python2 recipe zangrc
@ 2020-09-14  2:22 ` Bruce Ashfield
  2 siblings, 0 replies; 4+ messages in thread
From: Bruce Ashfield @ 2020-09-14  2:22 UTC (permalink / raw)
  To: zangrc; +Cc: meta-virtualization

merged.

Bruce


In message: [meta-virtualization] [PATCH] python-google-api-python-client: Remove the recipe
on 09/09/2020 zangrc wrote:

> Since python2 is no longer maintained, the recipe of python2 is removed.
> The version of python3 is located at:
> meta-openembedded/meta-python/recipes-devtools/python/python3-google-api-python-client_1.11.0.bb
> 
> Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
> ---
>  .../python-google-api-python-client_1.6.6.bb     | 16 ----------------
>  1 file changed, 16 deletions(-)
>  delete mode 100644 meta-openstack/recipes-devtools/python/python-google-api-python-client_1.6.6.bb
> 
> diff --git a/meta-openstack/recipes-devtools/python/python-google-api-python-client_1.6.6.bb b/meta-openstack/recipes-devtools/python/python-google-api-python-client_1.6.6.bb
> deleted file mode 100644
> index 8aec8ce..0000000
> --- a/meta-openstack/recipes-devtools/python/python-google-api-python-client_1.6.6.bb
> +++ /dev/null
> @@ -1,16 +0,0 @@
> -SUMMARY = "Client library for accessing the Plus, Moderator, and many other Google APIs."
> -AUTHOR = "Google Inc."
> -LICENSE = "Apache-2.0"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=94023d14f6b58272fd885e4e3f2f08b3"
> -
> -inherit setuptools3 pypi
> -
> -SRC_URI[md5sum] = "3059dce9c0308852e177c7d99d3f9ac2"
> -SRC_URI[sha256sum] = "ec72991f95201996a4edcea44a079cae0292798086beaadb054d91921632fe1b"
> -
> -RDEPENDS_${PN} += " \
> -        python-httplib2 \
> -        python-oauth2client \
> -        python-six \
> -        python-uritemplate \
> -        "
> -- 
> 2.25.1
> 
> 
> 

> 



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

end of thread, other threads:[~2020-09-14  2:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-08 17:21 [meta-virtualization] [PATCH] python-google-api-python-client: Remove the recipe zangrc
2020-09-08 17:21 ` [meta-virtualization] [PATCH] python3-happybase: Consolidate in a single file zangrc
2020-09-08 17:21 ` [meta-virtualization] [PATCH] python3-xstatic-roboto-fontface: Remove python2 recipe zangrc
2020-09-14  2:22 ` [meta-virtualization] [PATCH] python-google-api-python-client: Remove the recipe Bruce Ashfield

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.