[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
25/57: some inputs -> propagated-inputs
From: |
Hartmut Goebel |
Subject: |
25/57: some inputs -> propagated-inputs |
Date: |
Thu, 13 Oct 2016 15:20:33 +0000 (UTC) |
htgoebel pushed a commit to branch wip-python-build-system
in repository guix.
commit 333e19069da1f7b34c0fd600566da3b46285c39c
Author: Hartmut Goebel <address@hidden>
Date: Thu Oct 13 14:05:11 2016 +0200
some inputs -> propagated-inputs
---
gnu/packages/openstack.scm | 12 +++++----
gnu/packages/python.scm | 60 +++++++++++++++++++++++++-------------------
gnu/packages/qemu.scm | 5 ++--
3 files changed, 44 insertions(+), 33 deletions(-)
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index 96ad32e..f574094 100644
--- a/gnu/packages/openstack.scm
+++ b/gnu/packages/openstack.scm
@@ -177,12 +177,13 @@ tested on Python version 3.2, 2.7 and 2.6.")
(build-system python-build-system)
(arguments
`(#:tests? #f)) ;; Circular dependency with python-oslotest
- (inputs
+ (propagated-inputs
`(("python-appdirs" ,python-appdirs)
+ ("python-pyyaml" ,python-pyyaml)))
+ (native-inputs
+ `(("python-pbr" ,python-pbr)
("python-fixtures" ,python-fixtures)
("python-mimeparse" ,python-mimeparse)
- ("python-pbr" ,python-pbr)
- ("python-pyyaml" ,python-pyyaml)
("python-testrepository" ,python-testrepository)
("python-testscenarios" ,python-testscenarios)
("python-testtools" ,python-testtools)))
@@ -789,9 +790,10 @@ permanence.")
(list git openssh))))))))))
(native-inputs
`(("python-pbr" ,python-pbr)))
+ (propagated-inputs
+ `(("python-requests" ,python-requests)))
(inputs
- `(("python-requests" ,python-requests)
- ("git" ,git)
+ `(("git" ,git)
("openssh" ,openssh)))
(home-page "http://docs.openstack.org/infra/git-review/")
(synopsis "Command-line tool for Gerrit")
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 6b4f374..3524b01 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -3450,9 +3450,10 @@ operators such as union, intersection, and difference.")
(base32
"0nhan2qvrw7b7gg5zddwa22kybdv3x1g26vkd7q8lvnkgzrs4dga"))))
(build-system python-build-system)
+ (propagated-inputs
+ `(("python-six" ,python-six)))
(inputs
- `(("python-six" ,python-six)
- ("readline" ,readline)
+ `(("readline" ,readline)
("icu4c" ,icu4c)
("pcre" ,pcre)
("r" ,r)))
@@ -3895,10 +3896,10 @@ a front-end for C compilers or analysis tools.")
"0655hzxv57h1a9ja9kwp0ichbkhf3djw32k33d66xp0q37dq2y81"))))
(build-system python-build-system)
(inputs
- `(("libxcb" ,libxcb)
- ("python-six" ,python-six)))
+ `(("libxcb" ,libxcb)))
(propagated-inputs
- `(("python-cffi" ,python-cffi))) ; used at run time
+ `(("python-cffi" ,python-cffi) ; used at run time
+ ("python-six" ,python-six)))
(arguments
`(#:phases
(alist-cons-after
@@ -5168,11 +5169,12 @@ complexity of Python source code.")
(base32
"0bs9cz4fr99r2rwig1b8jwaadl1nan7kgpdzqwj0bwbckwbmh7nc"))))
(build-system python-build-system)
- (inputs
+ (propagated-inputs
`(("python-pep8" ,python-pep8)
("python-pyflakes" ,python-pyflakes)
- ("python-mccabe" ,python-mccabe)
- ("python-mock" ,python-mock)
+ ("python-mccabe" ,python-mccabe)))
+ (inputs
+ `(("python-mock" ,python-mock)
("python-nose" ,python-nose)))
(home-page "https://gitlab.com/pycqa/flake8")
(synopsis
@@ -5188,11 +5190,12 @@ complexity of Python source code.")
;; necessary once python-hacking > 0.10.2 is released.
(define-public python-flake8-2.2.4
(package (inherit python-flake8)
- (inputs
+ (propagated-inputs
`(("python-pep8" ,python-pep8-1.5.7)
("python-pyflakes" ,python-pyflakes-0.8.1)
- ("python-mccabe" ,python-mccabe-0.2.1)
- ("python-mock" ,python-mock)
+ ("python-mccabe" ,python-mccabe-0.2.1)))
+ (inputs
+ `(("python-mock" ,python-mock)
("python-nose" ,python-nose)))
(version "2.2.4")
(source
@@ -7457,11 +7460,12 @@ Pytest but stripped of Pytest specific details.")
;; FIXME: Tests require a newer version of pytest, but upgrading our
;; pytest breaks other packages.
'(#:tests? #f))
- (inputs
- `(("python-pluggy" ,python-pluggy)
+ (propagated-inputs
+ `(("python-pluggy" ,python-pluggy) ; >=0.3.0,<0.4.0
("python-py" ,python-py)
- ("python-virtualenv" ,python-virtualenv)
- ("python-pytest" ,python-pytest)))
+ ("python-virtualenv" ,python-virtualenv)))
+ (inputs
+ `(("python-pytest" ,python-pytest)))
(home-page "http://tox.testrun.org/")
(synopsis "Virtualenv-based automation of test activities")
(description "Tox is a generic virtualenv management and test command line
@@ -7508,14 +7512,16 @@ document.")
(base32
"08vpvdixx1c1lfv6vzjig68bpiir7wfyhzf49ysxgvhbprg5ra0w"))))
(build-system python-build-system)
- (inputs
+ (propagated-inputs
`(("python-dateutil" ,python-dateutil-2)
("python-docutils" ,python-docutils)
- ("python-mock" ,python-mock)
+ ("python-jmespath" ,python-jmespath)))
+ (inputs
+ `(("python-mock" ,python-mock)
("python-nose" ,python-nose)
+ ("behave" ,behave)
("python-tox" ,python-tox)
- ("python-wheel" ,python-wheel)
- ("python-jmespath" ,python-jmespath)))
+ ("python-wheel" ,python-wheel)))
(home-page "https://github.com/boto/botocore")
(synopsis "Low-level interface to AWS")
(description "Botocore is a Python library that provides a low-level
@@ -7539,16 +7545,17 @@ interface to the Amazon Web Services (AWS) API.")
(base32
"1nj7jqvlpq57hfhby1njsbf8303gapa3njc4dramr6p3ffzvfi2i"))))
(build-system python-build-system)
- (inputs
+ (propagated-inputs
`(("python-colorama" ,python-colorama)
+ ("python-botocore" ,python-botocore)
("python-docutils" ,python-docutils)
- ("python-mock" ,python-mock)
+ ("python-rsa" ,python-rsa)))
+ (inputs
+ `(("python-mock" ,python-mock)
("python-nose" ,python-nose)
- ("python-rsa" ,python-rsa)
("python-sphinx" ,python-sphinx)
("python-tox" ,python-tox)
- ("python-wheel" ,python-wheel)
- ("python-botocore" ,python-botocore)))
+ ("python-wheel" ,python-wheel)))
(home-page "http://aws.amazon.com/cli/")
(synopsis "Command line client for AWS")
(description "AWS CLI provides a unified command line interface to the
@@ -7674,9 +7681,10 @@ available in Django, but is a standalone package.")
(base32
"136kcjbs0s98qkx8a418b05dfblqp0kiiqyx8vhx4rarwc7bqi3n"))))
(build-system python-build-system)
+ (propagated-inputs
+ `(("python-markupsafe" ,python-markupsafe)))
(native-inputs
- `(("python-markupsafe" ,python-markupsafe)
- ("python-mock" ,python-mock)
+ `(("python-mock" ,python-mock)
("python-nose" ,python-nose)))
(home-page "http://www.makotemplates.org/")
(synopsis "Templating language for Python")
diff --git a/gnu/packages/qemu.scm b/gnu/packages/qemu.scm
index 9bf8c3a..1d231ef 100644
--- a/gnu/packages/qemu.scm
+++ b/gnu/packages/qemu.scm
@@ -395,8 +395,9 @@ three libraries:
(which "nosetests") "\"")))
#t)))))
(inputs
- `(("libvirt" ,libvirt)
- ("python-lxml" ,python-lxml)))
+ `(("libvirt" ,libvirt)))
+ (propagated-inputs
+ `(("python-lxml" ,python-lxml)))
(native-inputs
`(("pkg-config" ,pkg-config)
("python-nose" ,python-nose)))
- 29/57: gnu: python-ccm: Update synopsis and description., (continued)
- 29/57: gnu: python-ccm: Update synopsis and description., Hartmut Goebel, 2016/10/13
- 38/57: gnu: python-pytest-flakes: Fix build., Hartmut Goebel, 2016/10/13
- 28/57: gnu: python-ccm: Add missing input python-psutil., Hartmut Goebel, 2016/10/13
- 51/57: gnu: python-scripttest: Correct inputs., Hartmut Goebel, 2016/10/13
- 16/57: gnu: Remove work-arounds for bug 20765 (ensure uncompressed eggs)., Hartmut Goebel, 2016/10/13
- 56/57: gnu: pytest-mock: remove needless propagated input "python-py"., Hartmut Goebel, 2016/10/13
- 54/57: gnu: python-setuptools: remove pre-built binaries from source., Hartmut Goebel, 2016/10/13
- 50/57: gnu: python-pandas: Fix build., Hartmut Goebel, 2016/10/13
- 09/57: gnu: Remove python-setuptools and python2-setuptools from inputs (part 1a), Hartmut Goebel, 2016/10/13
- 14/57: gnu: Remove python-setuptools and python2-setuptools from inputs (part 4b), Hartmut Goebel, 2016/10/13
- 25/57: some inputs -> propagated-inputs,
Hartmut Goebel <=
- 47/57: gnu: vdirsyncer: Fix build by setting correct PYTHONPATH., Hartmut Goebel, 2016/10/13
- 10/57: gnu: Remove python-setuptools and python2-setuptools from inputs (part 1b), Hartmut Goebel, 2016/10/13
- 12/57: gnu: Remove python-setuptools and python2-setuptools from inputs (part 3), Hartmut Goebel, 2016/10/13
- 23/57: inputs -> propagated-inputs: special, Hartmut Goebel, 2016/10/13
- 24/57: gnu: python-sphinx-rtd-theme: Remove inputs., Hartmut Goebel, 2016/10/13
- 26/57: make native-inputs: simple ones: one nose, docuitls, phinx, tests, …, Hartmut Goebel, 2016/10/13
- 37/57: gnu: python-pillow: Fix build., Hartmut Goebel, 2016/10/13
- 40/57: gnu: python-zope-testing: Remove needless input., Hartmut Goebel, 2016/10/13
- 43/57: gnu: python-numpy-bootstrap, python-numpy: Fix build., Hartmut Goebel, 2016/10/13
- 49/57: gnu: openstack: Correct inputs., Hartmut Goebel, 2016/10/13