Re: [oe] [meta-python][PATCH 00/12] Create Python3 recipies for several existing Python2 recipes

2017-12-05 Thread Bill Randle
On Tue, Dec 5, 2017 at 6:48 PM, akuster808  wrote:
> Bill,
>
>
> On 11/29/2017 09:46 PM, Bill Randle wrote:
>> This set of patches creates the Python3 variant of several existing Python2 
>> packages.
>> It first moves the core of the existing recipe(s) into a .inc file, then 
>> creates
>> python-*-.bb and python3-*.bb files that reference the new .inc file.
>>
>> Bill Randle (12):
>>   python-dominate: move core of recipe to a .inc file
>>   python3-dominate: new recipe
>>   python-flask-bootstrap: move core of recipe to a .inc file
>>   python3-flask-bootstrap: new recipe
>>   python-flask-sqlalchemy: move core of recipe to a .inc file
>>   python3-flask-sqlalchemy: new recipe
>>   python-flask-wtf: move core of recipe to a .inc file
>>   python3-flask-wtf: new recipe
>>   python-visitor: move core of recipe to a .inc file
>>   python3-visitor: new recipe
>>   python-wtforms: move core of recipe to a .inc file
>>   python3-wtforms: new recipe
>
> I am seeing these additional issues:
>
> NOTE: Resolving any missing task queue dependencies
> ERROR: Nothing RPROVIDES 'python3-wtforms' (but
> /home/akuster/OE/master/meta-openembedded/meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb
> RDEPENDS on or otherwise requires it)
> NOTE: Runtime target 'python3-wtforms' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['python3-wtforms']
> NOTE: Runtime target 'python3-flask-wtf' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['python3-flask-wtf',
> 'python3-wtforms']
> ERROR: Nothing RPROVIDES 'python3-flask-wtf-dev' (but
> /home/akuster/OE/master/meta-openembedded/meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb
> RDEPENDS on or otherwise requires it)
> No eligible RPROVIDERs exist for 'python3-flask-wtf-dev'
> NOTE: Runtime target 'python3-flask-wtf-dev' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['python3-flask-wtf-dev']
> ERROR: Nothing RPROVIDES 'python3-visitor' (but
> /home/akuster/OE/master/meta-openembedded/meta-python/recipes-devtools/python/python3-flask-bootstrap_3.3.7.1.bb
> RDEPENDS on or otherwise requires it)
> NOTE: Runtime target 'python3-visitor' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['python3-visitor']
> NOTE: Runtime target 'python3-flask-bootstrap-dev' is unbuildable,
> removing...
> Missing or unbuildable dependency chain was:
> ['python3-flask-bootstrap-dev', 'python3-visitor']
> NOTE: Runtime target 'python3-flask-bootstrap' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['python3-flask-bootstrap',
> 'python3-visitor']
>
>
> please check. still running local world build so not sure what else will
> pop up.
>
> - armin
>>
>>  .../recipes-devtools/python/python-dominate.inc| 11 +++
>>  .../recipes-devtools/python/python-dominate_2.3.1.bb   | 13 +
>>  .../recipes-devtools/python/python-flask-bootstrap.inc | 14 ++
>>  .../python/python-flask-bootstrap_3.3.7.1.bb   | 16 +---
>>  .../python/python-flask-sqlalchemy.inc | 10 ++
>>  .../python/python-flask-sqlalchemy_2.3.2.bb| 12 +---
>>  .../recipes-devtools/python/python-flask-wtf.inc   | 15 +++
>>  .../recipes-devtools/python/python-flask-wtf_0.12.bb   | 17 
>> +
>>  meta-python/recipes-devtools/python/python-visitor.inc |  6 ++
>>  .../recipes-devtools/python/python-visitor_0.1.3.bb|  8 +---
>>  meta-python/recipes-devtools/python/python-wtforms.inc | 16 
>>  .../recipes-devtools/python/python-wtforms_2.1.bb  | 18 
>> +-
>>  .../recipes-devtools/python/python3-dominate_2.3.1.bb  |  2 ++
>>  .../python/python3-flask-bootstrap_3.3.7.1.bb  |  2 ++
>>  .../python/python3-flask-sqlalchemy_2.3.2.bb   |  2 ++
>>  .../recipes-devtools/python/python3-flask-wtf_0.12.bb  |  2 ++
>>  .../recipes-devtools/python/python3-visitor_0.1.3.bb   |  2 ++
>>  .../recipes-devtools/python/python3-wtforms_2.1.bb |  2 ++
>>  18 files changed, 90 insertions(+), 78 deletions(-)
>>  create mode 100644 meta-python/recipes-devtools/python/python-dominate.inc
>>  create mode 100644 
>> meta-python/recipes-devtools/python/python-flask-bootstrap.inc
>>  create mode 100644 
>> meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc
>>  create mode 100644 meta-python/recipes-devtools/python/python-flask-wtf.inc
>>  create mode 100644 meta-python/recipes-devtools/python/python-visitor.inc
>>  create mode 100644 meta-python/recipes-devtools/python/python-wtforms.inc
>>  create mode 100644 
>> meta-python/recipes-devtools/python/python3-dominate_2.3.1.bb
>>  create mode 100644 
>> meta-python/recipes-devtools/python/python3-flask-bootstrap_3.3.7.1.bb
>>  create mode 100644 
>> meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.3.2.bb
>>  create mode 100644 
>> 

Re: [oe] [meta-python][PATCH 00/12] Create Python3 recipies for several existing Python2 recipes

2017-12-05 Thread akuster808
Bill,


On 11/29/2017 09:46 PM, Bill Randle wrote:
> This set of patches creates the Python3 variant of several existing Python2 
> packages.
> It first moves the core of the existing recipe(s) into a .inc file, then 
> creates
> python-*-.bb and python3-*.bb files that reference the new .inc file.
>
> Bill Randle (12):
>   python-dominate: move core of recipe to a .inc file
>   python3-dominate: new recipe
>   python-flask-bootstrap: move core of recipe to a .inc file
>   python3-flask-bootstrap: new recipe
>   python-flask-sqlalchemy: move core of recipe to a .inc file
>   python3-flask-sqlalchemy: new recipe
>   python-flask-wtf: move core of recipe to a .inc file
>   python3-flask-wtf: new recipe
>   python-visitor: move core of recipe to a .inc file
>   python3-visitor: new recipe
>   python-wtforms: move core of recipe to a .inc file
>   python3-wtforms: new recipe

I am seeing these additional issues:

NOTE: Resolving any missing task queue dependencies
ERROR: Nothing RPROVIDES 'python3-wtforms' (but
/home/akuster/OE/master/meta-openembedded/meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb
RDEPENDS on or otherwise requires it)
NOTE: Runtime target 'python3-wtforms' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['python3-wtforms']
NOTE: Runtime target 'python3-flask-wtf' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['python3-flask-wtf',
'python3-wtforms']
ERROR: Nothing RPROVIDES 'python3-flask-wtf-dev' (but
/home/akuster/OE/master/meta-openembedded/meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb
RDEPENDS on or otherwise requires it)
No eligible RPROVIDERs exist for 'python3-flask-wtf-dev'
NOTE: Runtime target 'python3-flask-wtf-dev' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['python3-flask-wtf-dev']
ERROR: Nothing RPROVIDES 'python3-visitor' (but
/home/akuster/OE/master/meta-openembedded/meta-python/recipes-devtools/python/python3-flask-bootstrap_3.3.7.1.bb
RDEPENDS on or otherwise requires it)
NOTE: Runtime target 'python3-visitor' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['python3-visitor']
NOTE: Runtime target 'python3-flask-bootstrap-dev' is unbuildable,
removing...
Missing or unbuildable dependency chain was:
['python3-flask-bootstrap-dev', 'python3-visitor']
NOTE: Runtime target 'python3-flask-bootstrap' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['python3-flask-bootstrap',
'python3-visitor']


please check. still running local world build so not sure what else will
pop up.

- armin
>
>  .../recipes-devtools/python/python-dominate.inc| 11 +++
>  .../recipes-devtools/python/python-dominate_2.3.1.bb   | 13 +
>  .../recipes-devtools/python/python-flask-bootstrap.inc | 14 ++
>  .../python/python-flask-bootstrap_3.3.7.1.bb   | 16 +---
>  .../python/python-flask-sqlalchemy.inc | 10 ++
>  .../python/python-flask-sqlalchemy_2.3.2.bb| 12 +---
>  .../recipes-devtools/python/python-flask-wtf.inc   | 15 +++
>  .../recipes-devtools/python/python-flask-wtf_0.12.bb   | 17 +
>  meta-python/recipes-devtools/python/python-visitor.inc |  6 ++
>  .../recipes-devtools/python/python-visitor_0.1.3.bb|  8 +---
>  meta-python/recipes-devtools/python/python-wtforms.inc | 16 
>  .../recipes-devtools/python/python-wtforms_2.1.bb  | 18 
> +-
>  .../recipes-devtools/python/python3-dominate_2.3.1.bb  |  2 ++
>  .../python/python3-flask-bootstrap_3.3.7.1.bb  |  2 ++
>  .../python/python3-flask-sqlalchemy_2.3.2.bb   |  2 ++
>  .../recipes-devtools/python/python3-flask-wtf_0.12.bb  |  2 ++
>  .../recipes-devtools/python/python3-visitor_0.1.3.bb   |  2 ++
>  .../recipes-devtools/python/python3-wtforms_2.1.bb |  2 ++
>  18 files changed, 90 insertions(+), 78 deletions(-)
>  create mode 100644 meta-python/recipes-devtools/python/python-dominate.inc
>  create mode 100644 
> meta-python/recipes-devtools/python/python-flask-bootstrap.inc
>  create mode 100644 
> meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc
>  create mode 100644 meta-python/recipes-devtools/python/python-flask-wtf.inc
>  create mode 100644 meta-python/recipes-devtools/python/python-visitor.inc
>  create mode 100644 meta-python/recipes-devtools/python/python-wtforms.inc
>  create mode 100644 
> meta-python/recipes-devtools/python/python3-dominate_2.3.1.bb
>  create mode 100644 
> meta-python/recipes-devtools/python/python3-flask-bootstrap_3.3.7.1.bb
>  create mode 100644 
> meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.3.2.bb
>  create mode 100644 
> meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb
>  create mode 100644 
> meta-python/recipes-devtools/python/python3-visitor_0.1.3.bb
>  create mode 100644 

[oe] [meta-python][PATCH 00/12] Create Python3 recipies for several existing Python2 recipes

2017-11-29 Thread Bill Randle
This set of patches creates the Python3 variant of several existing Python2 
packages.
It first moves the core of the existing recipe(s) into a .inc file, then creates
python-*-.bb and python3-*.bb files that reference the new .inc file.

Bill Randle (12):
  python-dominate: move core of recipe to a .inc file
  python3-dominate: new recipe
  python-flask-bootstrap: move core of recipe to a .inc file
  python3-flask-bootstrap: new recipe
  python-flask-sqlalchemy: move core of recipe to a .inc file
  python3-flask-sqlalchemy: new recipe
  python-flask-wtf: move core of recipe to a .inc file
  python3-flask-wtf: new recipe
  python-visitor: move core of recipe to a .inc file
  python3-visitor: new recipe
  python-wtforms: move core of recipe to a .inc file
  python3-wtforms: new recipe

 .../recipes-devtools/python/python-dominate.inc| 11 +++
 .../recipes-devtools/python/python-dominate_2.3.1.bb   | 13 +
 .../recipes-devtools/python/python-flask-bootstrap.inc | 14 ++
 .../python/python-flask-bootstrap_3.3.7.1.bb   | 16 +---
 .../python/python-flask-sqlalchemy.inc | 10 ++
 .../python/python-flask-sqlalchemy_2.3.2.bb| 12 +---
 .../recipes-devtools/python/python-flask-wtf.inc   | 15 +++
 .../recipes-devtools/python/python-flask-wtf_0.12.bb   | 17 +
 meta-python/recipes-devtools/python/python-visitor.inc |  6 ++
 .../recipes-devtools/python/python-visitor_0.1.3.bb|  8 +---
 meta-python/recipes-devtools/python/python-wtforms.inc | 16 
 .../recipes-devtools/python/python-wtforms_2.1.bb  | 18 +-
 .../recipes-devtools/python/python3-dominate_2.3.1.bb  |  2 ++
 .../python/python3-flask-bootstrap_3.3.7.1.bb  |  2 ++
 .../python/python3-flask-sqlalchemy_2.3.2.bb   |  2 ++
 .../recipes-devtools/python/python3-flask-wtf_0.12.bb  |  2 ++
 .../recipes-devtools/python/python3-visitor_0.1.3.bb   |  2 ++
 .../recipes-devtools/python/python3-wtforms_2.1.bb |  2 ++
 18 files changed, 90 insertions(+), 78 deletions(-)
 create mode 100644 meta-python/recipes-devtools/python/python-dominate.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-bootstrap.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc
 create mode 100644 meta-python/recipes-devtools/python/python-flask-wtf.inc
 create mode 100644 meta-python/recipes-devtools/python/python-visitor.inc
 create mode 100644 meta-python/recipes-devtools/python/python-wtforms.inc
 create mode 100644 
meta-python/recipes-devtools/python/python3-dominate_2.3.1.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-bootstrap_3.3.7.1.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.3.2.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-visitor_0.1.3.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-wtforms_2.1.bb

-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel