All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][krogoth][PATCH] python-cassandra-driver: add recipe for version 3.6.0
@ 2016-08-22 14:34 Ruben De Smet
  2016-09-28 19:26 ` Ruben De Smet
  0 siblings, 1 reply; 6+ messages in thread
From: Ruben De Smet @ 2016-08-22 14:34 UTC (permalink / raw)
  To: openembedded-devel

A Python library for Apache Cassandra

Signed-off-by: Ruben De Smet <ruben.de.smet@rubdos.be>
---
 .../python/python-cassandra-driver.inc              | 21 +++++++++++++++++++++
 .../python/python3-cassandra-driver_3.6.0.bb        | 16 ++++++++++++++++
 2 files changed, 37 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-cassandra-driver.inc
 create mode 100644 meta-python/recipes-devtools/python/python3-cassandra-driver_3.6.0.bb

diff --git a/meta-python/recipes-devtools/python/python-cassandra-driver.inc b/meta-python/recipes-devtools/python/python-cassandra-driver.inc
new file mode 100644
index 0000000..d3e4cf6
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-cassandra-driver.inc
@@ -0,0 +1,21 @@
+SUMMARY = "DataStax Python Driver for Apache Cassandra"
+DESCRIPTION = "A modern, feature-rich and highly-tunable Python client \
+library for Apache Cassandra (1.2+) and DataStax Enterprise (3.1+) using \
+exclusively Cassandra's binary protocol and Cassandra Query Language v3."
+HOMEPAGE = "https://github.com/datastax/python-driver"
+SECTION = "devel/python"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"
+SRCNAME = "cassandra-driver"
+
+SRC_URI[md5sum] = "756a3b235c5766c3072ed62e1083c9ef"
+SRC_URI[sha256sum] = "049c8a871e49052c7b72fddb6569f1bfe738bbfea0a562eeeb5404abeff015ab"
+
+DISTUTILS_BUILD_ARGS += " \
+    --no-libev \
+"
+DISTUTILS_INSTALL_ARGS += " \
+    --no-libev \
+"
+
+inherit pypi
diff --git a/meta-python/recipes-devtools/python/python3-cassandra-driver_3.6.0.bb b/meta-python/recipes-devtools/python/python3-cassandra-driver_3.6.0.bb
new file mode 100644
index 0000000..65fd2c0
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-cassandra-driver_3.6.0.bb
@@ -0,0 +1,16 @@
+inherit setuptools3
+require python-cassandra-driver.inc
+
+RDEPENDS_${PN} += "\
+    python3-cython \
+    python3-multiprocessing \
+    python3-six \
+    python3-json \
+    libevent \
+"
+RDEPENDS_${PN}_class-native = ""
+
+DEPENDS_${PN} += "\
+    python3-setuptools \
+    python3-cython \
+"
-- 
2.9.3



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

* Re: [meta-oe][krogoth][PATCH] python-cassandra-driver: add recipe for version 3.6.0
  2016-08-22 14:34 [meta-oe][krogoth][PATCH] python-cassandra-driver: add recipe for version 3.6.0 Ruben De Smet
@ 2016-09-28 19:26 ` Ruben De Smet
  2016-09-29  0:10   ` akuster808
  0 siblings, 1 reply; 6+ messages in thread
From: Ruben De Smet @ 2016-09-28 19:26 UTC (permalink / raw)
  To: openembedded-devel


[-- Attachment #1.1: Type: text/plain, Size: 2572 bytes --]

Hi,

Any chance these things could get merged? Would be for both upstream and
krogoth.

They do depend on my

 pypi: update the base pypi url to use the package info without
requiring the hash

backport.

Ruben

On 08/22/2016 04:34 PM, Ruben De Smet wrote:
> A Python library for Apache Cassandra
> 
> Signed-off-by: Ruben De Smet <ruben.de.smet@rubdos.be>
> ---
>  .../python/python-cassandra-driver.inc              | 21 +++++++++++++++++++++
>  .../python/python3-cassandra-driver_3.6.0.bb        | 16 ++++++++++++++++
>  2 files changed, 37 insertions(+)
>  create mode 100644 meta-python/recipes-devtools/python/python-cassandra-driver.inc
>  create mode 100644 meta-python/recipes-devtools/python/python3-cassandra-driver_3.6.0.bb
> 
> diff --git a/meta-python/recipes-devtools/python/python-cassandra-driver.inc b/meta-python/recipes-devtools/python/python-cassandra-driver.inc
> new file mode 100644
> index 0000000..d3e4cf6
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python-cassandra-driver.inc
> @@ -0,0 +1,21 @@
> +SUMMARY = "DataStax Python Driver for Apache Cassandra"
> +DESCRIPTION = "A modern, feature-rich and highly-tunable Python client \
> +library for Apache Cassandra (1.2+) and DataStax Enterprise (3.1+) using \
> +exclusively Cassandra's binary protocol and Cassandra Query Language v3."
> +HOMEPAGE = "https://github.com/datastax/python-driver"
> +SECTION = "devel/python"
> +LICENSE = "Apache-2.0"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"
> +SRCNAME = "cassandra-driver"
> +
> +SRC_URI[md5sum] = "756a3b235c5766c3072ed62e1083c9ef"
> +SRC_URI[sha256sum] = "049c8a871e49052c7b72fddb6569f1bfe738bbfea0a562eeeb5404abeff015ab"
> +
> +DISTUTILS_BUILD_ARGS += " \
> +    --no-libev \
> +"
> +DISTUTILS_INSTALL_ARGS += " \
> +    --no-libev \
> +"
> +
> +inherit pypi
> diff --git a/meta-python/recipes-devtools/python/python3-cassandra-driver_3.6.0.bb b/meta-python/recipes-devtools/python/python3-cassandra-driver_3.6.0.bb
> new file mode 100644
> index 0000000..65fd2c0
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-cassandra-driver_3.6.0.bb
> @@ -0,0 +1,16 @@
> +inherit setuptools3
> +require python-cassandra-driver.inc
> +
> +RDEPENDS_${PN} += "\
> +    python3-cython \
> +    python3-multiprocessing \
> +    python3-six \
> +    python3-json \
> +    libevent \
> +"
> +RDEPENDS_${PN}_class-native = ""
> +
> +DEPENDS_${PN} += "\
> +    python3-setuptools \
> +    python3-cython \
> +"
> 



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 503 bytes --]

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

* Re: [meta-oe][krogoth][PATCH] python-cassandra-driver: add recipe for version 3.6.0
  2016-09-28 19:26 ` Ruben De Smet
@ 2016-09-29  0:10   ` akuster808
  2016-09-29  7:03     ` Ruben De Smet
  0 siblings, 1 reply; 6+ messages in thread
From: akuster808 @ 2016-09-29  0:10 UTC (permalink / raw)
  To: Ruben De Smet, openembedded-devel


Ruben,

On 09/28/2016 12:26 PM, Ruben De Smet wrote:
> Hi,
>
> Any chance these things could get merged? Would be for both upstream and
> krogoth.

Sorry, Stable releases do not accept the addition of new packages.

regards,
Armin
>
> They do depend on my
>
>   pypi: update the base pypi url to use the package info without
> requiring the hash
>
> backport.
>
> Ruben
>
> On 08/22/2016 04:34 PM, Ruben De Smet wrote:
>> A Python library for Apache Cassandra
>>
>> Signed-off-by: Ruben De Smet <ruben.de.smet@rubdos.be>
>> ---
>>   .../python/python-cassandra-driver.inc              | 21 +++++++++++++++++++++
>>   .../python/python3-cassandra-driver_3.6.0.bb        | 16 ++++++++++++++++
>>   2 files changed, 37 insertions(+)
>>   create mode 100644 meta-python/recipes-devtools/python/python-cassandra-driver.inc
>>   create mode 100644 meta-python/recipes-devtools/python/python3-cassandra-driver_3.6.0.bb
>>
>> diff --git a/meta-python/recipes-devtools/python/python-cassandra-driver.inc b/meta-python/recipes-devtools/python/python-cassandra-driver.inc
>> new file mode 100644
>> index 0000000..d3e4cf6
>> --- /dev/null
>> +++ b/meta-python/recipes-devtools/python/python-cassandra-driver.inc
>> @@ -0,0 +1,21 @@
>> +SUMMARY = "DataStax Python Driver for Apache Cassandra"
>> +DESCRIPTION = "A modern, feature-rich and highly-tunable Python client \
>> +library for Apache Cassandra (1.2+) and DataStax Enterprise (3.1+) using \
>> +exclusively Cassandra's binary protocol and Cassandra Query Language v3."
>> +HOMEPAGE = "https://github.com/datastax/python-driver"
>> +SECTION = "devel/python"
>> +LICENSE = "Apache-2.0"
>> +LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"
>> +SRCNAME = "cassandra-driver"
>> +
>> +SRC_URI[md5sum] = "756a3b235c5766c3072ed62e1083c9ef"
>> +SRC_URI[sha256sum] = "049c8a871e49052c7b72fddb6569f1bfe738bbfea0a562eeeb5404abeff015ab"
>> +
>> +DISTUTILS_BUILD_ARGS += " \
>> +    --no-libev \
>> +"
>> +DISTUTILS_INSTALL_ARGS += " \
>> +    --no-libev \
>> +"
>> +
>> +inherit pypi
>> diff --git a/meta-python/recipes-devtools/python/python3-cassandra-driver_3.6.0.bb b/meta-python/recipes-devtools/python/python3-cassandra-driver_3.6.0.bb
>> new file mode 100644
>> index 0000000..65fd2c0
>> --- /dev/null
>> +++ b/meta-python/recipes-devtools/python/python3-cassandra-driver_3.6.0.bb
>> @@ -0,0 +1,16 @@
>> +inherit setuptools3
>> +require python-cassandra-driver.inc
>> +
>> +RDEPENDS_${PN} += "\
>> +    python3-cython \
>> +    python3-multiprocessing \
>> +    python3-six \
>> +    python3-json \
>> +    libevent \
>> +"
>> +RDEPENDS_${PN}_class-native = ""
>> +
>> +DEPENDS_${PN} += "\
>> +    python3-setuptools \
>> +    python3-cython \
>> +"
>>
>



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

* Re: [meta-oe][krogoth][PATCH] python-cassandra-driver: add recipe for version 3.6.0
  2016-09-29  0:10   ` akuster808
@ 2016-09-29  7:03     ` Ruben De Smet
  2016-09-29  7:09       ` Tim Orling
  0 siblings, 1 reply; 6+ messages in thread
From: Ruben De Smet @ 2016-09-29  7:03 UTC (permalink / raw)
  To: akuster808, openembedded-devel


[-- Attachment #1.1: Type: text/plain, Size: 3025 bytes --]

On 09/29/2016 02:10 AM, akuster808 wrote:
> 
> Ruben,
> 
> On 09/28/2016 12:26 PM, Ruben De Smet wrote:
>> Hi,
>>
>> Any chance these things could get merged? Would be for both upstream and
>> krogoth.
> 
> Sorry, Stable releases do not accept the addition of new packages.

Oh. Would it be possible to have them in the next unstable then?

Ruben

> 
> regards,
> Armin
>>
>> They do depend on my
>>
>>   pypi: update the base pypi url to use the package info without
>> requiring the hash
>>
>> backport.
>>
>> Ruben
>>
>> On 08/22/2016 04:34 PM, Ruben De Smet wrote:
>>> A Python library for Apache Cassandra
>>>
>>> Signed-off-by: Ruben De Smet <ruben.de.smet@rubdos.be>
>>> ---
>>>   .../python/python-cassandra-driver.inc              | 21 +++++++++++++++++++++
>>>   .../python/python3-cassandra-driver_3.6.0.bb        | 16 ++++++++++++++++
>>>   2 files changed, 37 insertions(+)
>>>   create mode 100644 meta-python/recipes-devtools/python/python-cassandra-driver.inc
>>>   create mode 100644 meta-python/recipes-devtools/python/python3-cassandra-driver_3.6.0.bb
>>>
>>> diff --git a/meta-python/recipes-devtools/python/python-cassandra-driver.inc b/meta-python/recipes-devtools/python/python-cassandra-driver.inc
>>> new file mode 100644
>>> index 0000000..d3e4cf6
>>> --- /dev/null
>>> +++ b/meta-python/recipes-devtools/python/python-cassandra-driver.inc
>>> @@ -0,0 +1,21 @@
>>> +SUMMARY = "DataStax Python Driver for Apache Cassandra"
>>> +DESCRIPTION = "A modern, feature-rich and highly-tunable Python client \
>>> +library for Apache Cassandra (1.2+) and DataStax Enterprise (3.1+) using \
>>> +exclusively Cassandra's binary protocol and Cassandra Query Language v3."
>>> +HOMEPAGE = "https://github.com/datastax/python-driver"
>>> +SECTION = "devel/python"
>>> +LICENSE = "Apache-2.0"
>>> +LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"
>>> +SRCNAME = "cassandra-driver"
>>> +
>>> +SRC_URI[md5sum] = "756a3b235c5766c3072ed62e1083c9ef"
>>> +SRC_URI[sha256sum] = "049c8a871e49052c7b72fddb6569f1bfe738bbfea0a562eeeb5404abeff015ab"
>>> +
>>> +DISTUTILS_BUILD_ARGS += " \
>>> +    --no-libev \
>>> +"
>>> +DISTUTILS_INSTALL_ARGS += " \
>>> +    --no-libev \
>>> +"
>>> +
>>> +inherit pypi
>>> diff --git a/meta-python/recipes-devtools/python/python3-cassandra-driver_3.6.0.bb b/meta-python/recipes-devtools/python/python3-cassandra-driver_3.6.0.bb
>>> new file mode 100644
>>> index 0000000..65fd2c0
>>> --- /dev/null
>>> +++ b/meta-python/recipes-devtools/python/python3-cassandra-driver_3.6.0.bb
>>> @@ -0,0 +1,16 @@
>>> +inherit setuptools3
>>> +require python-cassandra-driver.inc
>>> +
>>> +RDEPENDS_${PN} += "\
>>> +    python3-cython \
>>> +    python3-multiprocessing \
>>> +    python3-six \
>>> +    python3-json \
>>> +    libevent \
>>> +"
>>> +RDEPENDS_${PN}_class-native = ""
>>> +
>>> +DEPENDS_${PN} += "\
>>> +    python3-setuptools \
>>> +    python3-cython \
>>> +"
>>>
>>



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 503 bytes --]

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

* Re: [meta-oe][krogoth][PATCH] python-cassandra-driver: add recipe for version 3.6.0
  2016-09-29  7:03     ` Ruben De Smet
@ 2016-09-29  7:09       ` Tim Orling
  2016-09-29  7:17         ` Ruben De Smet
  0 siblings, 1 reply; 6+ messages in thread
From: Tim Orling @ 2016-09-29  7:09 UTC (permalink / raw)
  To: openembedded-devel

Please resend without [krogoth] but with [meta-python] as indicated in the
layer readme.

In this case, "upstream" is not what you mean. You mean "master".

Cheers.

On Thursday, September 29, 2016, Ruben De Smet <ruben.de.smet@rubdos.be>
wrote:

> On 09/29/2016 02:10 AM, akuster808 wrote:
> >
> > Ruben,
> >
> > On 09/28/2016 12:26 PM, Ruben De Smet wrote:
> >> Hi,
> >>
> >> Any chance these things could get merged? Would be for both upstream and
> >> krogoth.
> >
> > Sorry, Stable releases do not accept the addition of new packages.
>
> Oh. Would it be possible to have them in the next unstable then?
>
> Ruben
>
> >
> > regards,
> > Armin
> >>
> >> They do depend on my
> >>
> >>   pypi: update the base pypi url to use the package info without
> >> requiring the hash
> >>
> >> backport.
> >>
> >> Ruben
> >>
> >> On 08/22/2016 04:34 PM, Ruben De Smet wrote:
> >>> A Python library for Apache Cassandra
> >>>
> >>> Signed-off-by: Ruben De Smet <ruben.de.smet@rubdos.be <javascript:;>>
> >>> ---
> >>>   .../python/python-cassandra-driver.inc              | 21
> +++++++++++++++++++++
> >>>   .../python/python3-cassandra-driver_3.6.0.bb        | 16
> ++++++++++++++++
> >>>   2 files changed, 37 insertions(+)
> >>>   create mode 100644 meta-python/recipes-devtools/
> python/python-cassandra-driver.inc
> >>>   create mode 100644 meta-python/recipes-devtools/python/
> python3-cassandra-driver_3.6.0.bb
> >>>
> >>> diff --git a/meta-python/recipes-devtools/python/python-cassandra-driver.inc
> b/meta-python/recipes-devtools/python/python-cassandra-driver.inc
> >>> new file mode 100644
> >>> index 0000000..d3e4cf6
> >>> --- /dev/null
> >>> +++ b/meta-python/recipes-devtools/python/python-cassandra-driver.inc
> >>> @@ -0,0 +1,21 @@
> >>> +SUMMARY = "DataStax Python Driver for Apache Cassandra"
> >>> +DESCRIPTION = "A modern, feature-rich and highly-tunable Python
> client \
> >>> +library for Apache Cassandra (1.2+) and DataStax Enterprise (3.1+)
> using \
> >>> +exclusively Cassandra's binary protocol and Cassandra Query Language
> v3."
> >>> +HOMEPAGE = "https://github.com/datastax/python-driver"
> >>> +SECTION = "devel/python"
> >>> +LICENSE = "Apache-2.0"
> >>> +LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba
> 93"
> >>> +SRCNAME = "cassandra-driver"
> >>> +
> >>> +SRC_URI[md5sum] = "756a3b235c5766c3072ed62e1083c9ef"
> >>> +SRC_URI[sha256sum] = "049c8a871e49052c7b72fddb6569f1
> bfe738bbfea0a562eeeb5404abeff015ab"
> >>> +
> >>> +DISTUTILS_BUILD_ARGS += " \
> >>> +    --no-libev \
> >>> +"
> >>> +DISTUTILS_INSTALL_ARGS += " \
> >>> +    --no-libev \
> >>> +"
> >>> +
> >>> +inherit pypi
> >>> diff --git a/meta-python/recipes-devtools/python/python3-
> cassandra-driver_3.6.0.bb b/meta-python/recipes-devtools/python/python3-
> cassandra-driver_3.6.0.bb
> >>> new file mode 100644
> >>> index 0000000..65fd2c0
> >>> --- /dev/null
> >>> +++ b/meta-python/recipes-devtools/python/python3-
> cassandra-driver_3.6.0.bb
> >>> @@ -0,0 +1,16 @@
> >>> +inherit setuptools3
> >>> +require python-cassandra-driver.inc
> >>> +
> >>> +RDEPENDS_${PN} += "\
> >>> +    python3-cython \
> >>> +    python3-multiprocessing \
> >>> +    python3-six \
> >>> +    python3-json \
> >>> +    libevent \
> >>> +"
> >>> +RDEPENDS_${PN}_class-native = ""
> >>> +
> >>> +DEPENDS_${PN} += "\
> >>> +    python3-setuptools \
> >>> +    python3-cython \
> >>> +"
> >>>
> >>
>
>
>


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

* Re: [meta-oe][krogoth][PATCH] python-cassandra-driver: add recipe for version 3.6.0
  2016-09-29  7:09       ` Tim Orling
@ 2016-09-29  7:17         ` Ruben De Smet
  0 siblings, 0 replies; 6+ messages in thread
From: Ruben De Smet @ 2016-09-29  7:17 UTC (permalink / raw)
  To: openembedded-devel


[-- Attachment #1.1: Type: text/plain, Size: 319 bytes --]

On 09/29/2016 09:09 AM, Tim Orling wrote:
> Please resend without [krogoth] but with [meta-python] as indicated in the
> layer readme.
> 
> In this case, "upstream" is not what you mean. You mean "master".
> 
> Cheers.

Ok, will comply. Thank you for your help; you can expect a patch later
today.

Ruben


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 503 bytes --]

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

end of thread, other threads:[~2016-09-29  7:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-22 14:34 [meta-oe][krogoth][PATCH] python-cassandra-driver: add recipe for version 3.6.0 Ruben De Smet
2016-09-28 19:26 ` Ruben De Smet
2016-09-29  0:10   ` akuster808
2016-09-29  7:03     ` Ruben De Smet
2016-09-29  7:09       ` Tim Orling
2016-09-29  7:17         ` Ruben De Smet

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.