[oe] [meta-python][PATCH v3 1/2] python-gsocketpool: add new recipe

Martin Jansa martin.jansa at gmail.com
Tue Apr 18 12:25:31 UTC 2017


Why patch=1 parameter? it will be autumatically recognized and applied as
patch thanks to .patch extension.

On Thu, Apr 13, 2017 at 8:58 PM, Andrej Rode <andrej.rode at ettus.com> wrote:

> Adds recipe for python-gsocketpool as a dependency for python-mprpc
>
> Signed-off-by: Andrej Rode <andrej.rode at ettus.com>
> ---
>  .../files/0001-fix_setup_py.patch                  | 35
> ++++++++++++++++++++++
>  .../python-gsocketpool/python-gsocketpool_0.1.5.bb | 16 ++++++++++
>  2 files changed, 51 insertions(+)
>  create mode 100644 meta-python/recipes-connectivity/python-
> gsocketpool/files/0001-fix_setup_py.patch
>  create mode 100644 meta-python/recipes-connectivity/python-gsocketpool/
> python-gsocketpool_0.1.5.bb
>
> diff --git a/meta-python/recipes-connectivity/python-
> gsocketpool/files/0001-fix_setup_py.patch b/meta-python/recipes-
> connectivity/python-gsocketpool/files/0001-fix_setup_py.patch
> new file mode 100644
> index 0000000..a9135a3
> --- /dev/null
> +++ b/meta-python/recipes-connectivity/python-gsocketpool/files/0001-fix_
> setup_py.patch
> @@ -0,0 +1,35 @@
> +From 2d47a5df58802173bf90d760b1d6f520aeea76fc Mon Sep 17 00:00:00 2001
> +From: Andrej Rode <andrej.rode at ettus.com>
> +Date: Mon, 10 Apr 2017 16:47:41 -0700
> +Subject: [PATCH] setup: remove find_packages since that would install
> tests as
> + a package as well
> +
> +Signed-off-by: Andrej Rode <andrej.rode at ettus.com>
> +---
> + setup.py | 4 ++--
> + 1 file changed, 2 insertions(+), 2 deletions(-)
> +
> +diff --git a/setup.py b/setup.py
> +index 6b37016..a1f11a7 100644
> +--- a/setup.py
> ++++ b/setup.py
> +@@ -1,6 +1,6 @@
> + # -*- coding: utf-8 -*-
> +
> +-from setuptools import setup, find_packages
> ++from setuptools import setup
> +
> + setup(
> +     name='gsocketpool',
> +@@ -9,7 +9,7 @@ setup(
> +     author='Studio Ousia',
> +     author_email='ikuya at ousia.jp',
> +     url='http://github.com/studio-ousia/gsocketpool',
> +-    packages=find_packages(),
> ++    packages=['gsocketpool'],
> +     license=open('LICENSE').read(),
> +     include_package_data=True,
> +     classifiers=(
> +--
> +2.10.2
> +
> diff --git a/meta-python/recipes-connectivity/python-gsocketpool/python-
> gsocketpool_0.1.5.bb b/meta-python/recipes-connectivity/python-
> gsocketpool/python-gsocketpool_0.1.5.bb
> new file mode 100644
> index 0000000..f86152c
> --- /dev/null
> +++ b/meta-python/recipes-connectivity/python-gsocketpool/python-
> gsocketpool_0.1.5.bb
> @@ -0,0 +1,16 @@
> +SUMMARY = "A simple connection pool for gevent"
> +DESCRIPTION = "creates a pool of connections that can be used with gevent"
> +HOMEPAGE = "https://github.com/studio-ousia/gsocketpool"
> +LICENSE = "Apache-2.0"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=4ba825394aec026b5f94edca44426859"
> +DEPENDS += "python-gevent"
> +RDEPENDS_${PN} += "python-gevent"
> +
> +SRC_URI_append = " \
> +    file://0001-fix_setup_py.patch;patch=1;pnum=1 \
> +"
> +
> +SRC_URI[md5sum] = "04f618864b18d6b06f774994f172ef49"
> +SRC_URI[sha256sum] = "b6b73deab9bcbc428d4813697eebe5
> c3b9c40a971f62e13607b881aa749af9d0"
> +
> +inherit pypi setuptools
> --
> 2.10.2
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel at lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>



More information about the Openembedded-devel mailing list