Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python3: Add python3-cryptography to RDEPENDS for python3-redis #241

Closed
wants to merge 18 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ FILES_${PN} += " \
${libdir}/gnome-settings-daemon-3.0/libgsd.so \
"

RDEPEND_${PN} += "gdbus"
RDEPENDS_${PN} += "gdbus"
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ BUGTRACKER = "https://github.com/libuv/libuv/issues"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=a68902a430e32200263d182d44924d47"

SRCREV = "533b738838ad8407032e14b6772b29ef9af63cfa"
SRCREV = "1ab9ea3790378f9f25c4e78e9e2b511c75f9c9ed"
SRC_URI = "git://github.com/libuv/libuv;branch=v1.x"

S = "${WORKDIR}/git"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ SRC_URI_append_libc-musl = " \
file://0001-Include-sys-time-h.patch \
"

SRC_URI[md5sum] = "fbe6d18205170e22bad470954d0dc874"
SRC_URI[sha256sum] = "fe86c14d860da1202c76616feac0539ea5a40a4ad182d74b7d6d2419cc2381f8"
SRC_URI[md5sum] = "375a60ab0f461367f84f07a5dbda6de2"
SRC_URI[sha256sum] = "5fc3d7b775f0879a40606d960491812a602e22f62e006ce027ed7bcf4c9f27d9"

UPSTREAM_CHECK_URI = "https://github.com/rsyslog/rsyslog/releases"
UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/gphoto/libgphoto2-${PV}.tar.bz2;name=libgphoto2
file://0001-configure.ac-remove-AM_PO_SUBDIRS.patch \
"

SRC_URI[libgphoto2.md5sum] = "063632d839b71698e99da0ccd19bc9f6"
SRC_URI[libgphoto2.sha256sum] = "fd3c578769f0fa389c1e68120f224bd98477aa3d82d16b82746c1266c0d4fb31"
SRC_URI[libgphoto2.md5sum] = "39999aa4bdd3bf849b5716153c659405"
SRC_URI[libgphoto2.sha256sum] = "7c0e98f438c2b128186afe16ce7833a12fa36f87d01467e837b9d27e7a167f3a"

inherit autotools pkgconfig gettext lib_package

Expand Down
2 changes: 1 addition & 1 deletion meta-oe/recipes-printing/qpdf/qpdf_10.0.1.bb
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ DEBIAN_NOAUTONAME_libqpdf = "1"
PACKAGES =+ "libqpdf"
FILES_libqpdf = "${libdir}/libqpdf.so.*"

RDEPEND_${PN} = "libqpdf"
RDEPENDS_${PN} = "libqpdf"
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=4f40a941379143186f9602242c3fb729 \

SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}2/${BPN}_${PV}.zip \
"
SRC_URI[md5sum] = "f0fc5394286753eff657cf62b46d024b"
SRC_URI[sha256sum] = "11b4f99d28392e3e1aeb29bfd006a4f1f40e7fdd7a3f3444ee69014d415f09f2"
SRC_URI[md5sum] = "3207ece9fc8ceb787091de93838f5952"
SRC_URI[sha256sum] = "afe2ba08d2fa56adc3c774b6741587203a72140a255346e9947b8d2ee6c7d4b6"

inherit autotools

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
From 04884263d1de8c427a7a15bd1cf6466ea65d3a0b Mon Sep 17 00:00:00 2001
From: Hongxu Jia <hongxu.jia@windriver.com>
Date: Mon, 25 May 2020 23:22:55 -0700
Subject: [PATCH] add explicit dependency on libraries

[snip]
gcc/i686-overc-linux/10.1.0/ld: cannot find -lmpathpersist
collect2: error: ld returned 1 exit status
Makefile:36: recipe for target 'multipathd' failed
make[1]: *** [multipathd] Error 1
make[1]: Leaving directory 'git/multipathd'
Makefile:29: recipe for target 'multipathd' failed
make: *** [multipathd] Error 2
ln -sf libmpathpersist.so.0 libmpathpersist.so
[snip]

Upstream-Status: Pending

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
---
Makefile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index bea0a0b2..37a77129 100644
--- a/Makefile
+++ b/Makefile
@@ -29,7 +29,8 @@ $(BUILDDIRS):
$(MAKE) -C $@

multipath multipathd mpathpersist libmpathpersist : libmultipath
-mpathpersist: libmpathpersist
+mpathpersist multipathd: libmpathpersist
+libdmmp libmultipath mpathpersist multipath multipathd: libmpathcmd

DEPS_ON_MULTIPATH := \
multipath \
--
2.21.0

Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ SRC_URI = "git://git.opensvc.com/multipath-tools/.git;protocol=http \
file://0030-Always-use-devmapper.patch \
file://0031-Always-use-devmapper-for-kpartx.patch \
file://0001-fix-bug-of-do_compile-and-do_install.patch \
file://0001-add-explicit-dependency-on-libraries.patch \
"

LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ RDEPENDS_${PN} = "ncurses-terminfo-base"
PV_MAJOR = "${@d.getVar('PV').split('.')[0]}"

SRC_URI = "https://nano-editor.org/dist/v${PV_MAJOR}/nano-${PV}.tar.xz"
SRC_URI[md5sum] = "10df0100ebf4aa7bb4806428c11751eb"
SRC_URI[sha256sum] = "d8a25eea942ecee2d57b8e037eb4b28f030f818b78773b8fcb994ed5835d2ef6"
SRC_URI[md5sum] = "52137a960ae8b3ca6d7dab6767fe6e5f"
SRC_URI[sha256sum] = "6e3438f033a0ed07d3d74c30d0803cbda3d2366ba1601b7bbf9b16ac371f51b4"

UPSTREAM_CHECK_URI = "https://ftp.gnu.org/gnu/nano"

Expand Down
20 changes: 20 additions & 0 deletions meta-python/recipes-devtools/python/python3-bitstring_3.1.7.bb
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
SUMMARY = "Simple construction, analysis and modification of binary data."
HOMEPAGE = "https://github.com/scott-griffiths/bitstring"
AUTHOR = "Scott Griffiths <dr.scottgriffiths@gmail.com>"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=d973e8e0c311da41424357236b7b8908"

SRC_URI[md5sum] = "18661a3e5c47c59bd926dd0fefae0baa"
SRC_URI[sha256sum] = "fdf3eb72b229d2864fb507f8f42b1b2c57af7ce5fec035972f9566de440a864a"

PYPI_PACKAGE = "bitstring"

inherit pypi setuptools3

RDEPENDS_${PN} = "\
${PYTHON_PN}-core \
${PYTHON_PN}-numbers \
${PYTHON_PN}-mmap \
"

BBCLASSEXTEND = "native nativesdk"
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@ Line Interface Creation Kit". It's highly configurable but comes with \
sensible defaults out of the box."
HOMEPAGE = "http://click.pocoo.org/"
LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=c13ed890b210a882c1778216694c98c7"
LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=1fa98232fd645608937a0fdc82e999b8"

SRC_URI[md5sum] = "7f53d50f7b7373ebc7963f9ff697450a"
SRC_URI[sha256sum] = "5b94b49521f6456670fdb30cd82a4eca9412788a93fa6dd6df72c94d5a8ff2d7"
SRC_URI[md5sum] = "53692f62cb99a1a10c59248f1776d9c0"
SRC_URI[sha256sum] = "d2b5255c7c6349bc1bd1e59e08cd12acbbd63ce649f2588755783aa94dfb6b1a"

PYPI_PACKAGE = "Click"
inherit pypi setuptools3

UPSTREAM_CHECK_REGEX = "click/(?P<pver>\d+(\.\d+)+)/"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7"

SRC_URI = "git://github.com/ldo/dbussy.git"

SRCREV = "d0ec0223f3797e1612d835e71694a1083881149f"
SRCREV = "37ede4242b48def73ada46c2747a4c5cae6abf45"

S = "${WORKDIR}/git"

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
DESCRIPTION = "pytest-asyncio is an Apache2 licensed library, written in Python, for testing asyncio code with pytest"

LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://README.rst;md5=3faed73a08162b5b5367cdcaee996f75"

SRC_URI[sha256sum] = "475bd2f3dc0bc11d2463656b3cbaafdbec5a47b47508ea0b329ee693040eebd2"

inherit pypi setuptools3

RDEPENDS_${PN} += " \
${PYTHON_PN}-pytest \
"

BBCLASSEXTEND = "native nativesdk"
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
DESCRIPTION = "pytest plugin for generating html reports from test results"
HOMEPAGE = "https://github.com/pytest-dev/pytest-html"
DEPENDS += "${PYTHON_PN}-setuptools-scm-native"

LICENSE = "MPL-2.0"
LIC_FILES_CHKSUM = "file://../pytest-html.LICENSE;md5=5d425c8f3157dbf212db2ec53d9e5132"

# Per README.rst the license statement is fetched from
# https://raw.githubusercontent.com/davehunt/pytest-html/master/LICENSE
SRC_URI += "https://raw.githubusercontent.com/davehunt/pytest-html/master/LICENSE;name=license;downloadfilename=pytest-html.LICENSE"
SRC_URI[license.md5sum] = "5d425c8f3157dbf212db2ec53d9e5132"
SRC_URI[license.sha256sum] = "2bfdca60adf803108d4c7f009000bea76ad00e621e163197881b0eaae91b530e"

SRC_URI[sha256sum] = "6a4ac391e105e391208e3eb9bd294a60dd336447fd8e1acddff3a6de7f4e57c5"


PYPI_PACKAGE = "pytest-html"

inherit pypi setuptools3

SRC_URI[md5sum] = "ac956864a9b3392203dacd287ae450f0"
SRC_URI[sha256sum] = "a359de04273239587bd1a15b29b2266daeaf56b7a13f8224bc4fb3ae0ba72c3f"
SRC_URI[license.md5sum] = "5d425c8f3157dbf212db2ec53d9e5132"
SRC_URI[license.sha256sum] = "2bfdca60adf803108d4c7f009000bea76ad00e621e163197881b0eaae91b530e"
RDEPENDS_${PN} += " \
${PYTHON_PN}-pytest \
"

RDEPENDS_${PN} = "${PYTHON_PN}-pytest"
BBCLASSEXTEND = "native nativesdk"
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
DESCRIPTION = "pytest-metadata is a plugin that allowed for accessing pytest metadata"
HOMEPAGE = "https://github.com/pytest-dev/pytest-metadata"
DEPENDS += "${PYTHON_PN}-setuptools-scm-native"

LICENSE = "MPL-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=5d425c8f3157dbf212db2ec53d9e5132"

SRC_URI[sha256sum] = "168d203abba8cabb65cf1b5fa675b0ba60dccbf1825d147960876a7e6f7c219c"

PYPI_PACKAGE = "pytest-metadata"

inherit pypi setuptools3

SRC_URI[md5sum] = "95674c2390b58e0138cabac5101d1908"
SRC_URI[sha256sum] = "2071a59285de40d7541fde1eb9f1ddea1c9db165882df82781367471238b66ba"

DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
RDEPENDS_${PN} = " \
${PYTHON_PN}-pytest \
"

RDEPENDS_${PN} = "${PYTHON_PN}-pytest"
BBCLASSEXTEND = "native nativesdk"
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
SUMMARY = "Simple powerful testing with python"
HOMEPAGE = "http://pytest.org"

LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=81eb9f71d006c6b268cf4388e3c98f7b"

SRC_URI[md5sum] = "d5ef453f723be46d93e0795f3be86c88"
SRC_URI[sha256sum] = "0d5fe9189a148acc3c3eb2ac8e1ac0742cb7618c084f3d228baaec0c254b318d"
SRC_URI[sha256sum] = "eb2b5e935f6a019317e455b6da83dd8650ac9ffd2ee73a7b657a30873d67a698"

SRC_URI_append = " file://0001-setup.py-remove-the-setup_requires-for-setuptools-scm.patch "

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
SUMMARY = "A libudev binding"

LICENSE = "LGPLv2.1+"
LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343"

SRC_URI[md5sum] = "cf4d9db7d772622144ca1be6b5d9353b"
SRC_URI[sha256sum] = "094b7a100150114748aaa3b70663485dd360457a709bfaaafe5a977371033f2b"
SRC_URI[sha256sum] = "69bb1beb7ac52855b6d1b9fe909eefb0017f38d917cba9939602c6880035b276"

inherit pypi setuptools3

Expand All @@ -20,3 +20,5 @@ RDEPENDS_${PN} = "\
${PYTHON_PN}-fcntl \
libudev \
"

BBCLASSEXTEND = "native nativesdk"
18 changes: 18 additions & 0 deletions meta-python/recipes-devtools/python/python3-pyyaml_5.3.1.bb
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
SUMMARY = "Python support for YAML"
DEPENDS += "libyaml ${PYTHON_PN}-cython-native"

LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=7bbd28caa69f81f5cd5f48647236663d"

PYPI_PACKAGE = "PyYAML"

inherit pypi setuptools3

SRC_URI[sha256sum] = "b8eac752c5e14d3eca0e6dd9199cd627518cb5ec06add0de9d32baeee6fe645d"

RDEPENDS_${PN} += "\
${PYTHON_PN}-datetime \
${PYTHON_PN}-netclient \
"

BBCLASSEXTEND = "native nativesdk"
19 changes: 0 additions & 19 deletions meta-python/recipes-devtools/python/python3-pyyaml_5.3.bb

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ inherit pypi setuptools3

RDEPENDS_${PN} += "\
${PYTHON_PN}-datetime \
${PYTHON_PN}-cryptography \
"