All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 0/4] add UPSTREAM_CHECK_URI for recipes
@ 2018-05-30  6:38 Yi Zhao
  2018-05-30  6:38 ` [meta-python][PATCH 1/4] python3-pykickstart: add UPSTREAM_CHECK_GITTAGREGEX Yi Zhao
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Yi Zhao @ 2018-05-30  6:38 UTC (permalink / raw)
  To: openembedded-devel

Some recipes can not get upstream version with bitbake foo -c checkpkg. Add UPSTREAM_CHECK_URI for these recipes.

Yi Zhao (4):
  python3-pykickstart: add UPSTREAM_CHECK_GITTAGREGEX
  python3-blivet: add UPSTREAM_CHECK_GITTAGREGEX
  python-protobuf: add UPSTREAM_CHECK_REGEX
  python-click: add UPSTREAM_CHECK_REGEX

 meta-python/recipes-devtools/python/python-click.inc                    | 2 ++
 meta-python/recipes-devtools/python/python-protobuf.inc                 | 2 ++
 meta-python/recipes-extended/python-blivet/python3-blivet_2.2.0.bb      | 2 ++
 .../recipes-extended/python-pykickstart/python3-pykickstart_2.35.bb     | 2 ++
 4 files changed, 8 insertions(+)

-- 
2.7.4



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

* [meta-python][PATCH 1/4] python3-pykickstart: add UPSTREAM_CHECK_GITTAGREGEX
  2018-05-30  6:38 [meta-python][PATCH 0/4] add UPSTREAM_CHECK_URI for recipes Yi Zhao
@ 2018-05-30  6:38 ` Yi Zhao
  2018-05-30  6:38 ` [meta-python][PATCH 2/4] python3-blivet: " Yi Zhao
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Yi Zhao @ 2018-05-30  6:38 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
---
 .../recipes-extended/python-pykickstart/python3-pykickstart_2.35.bb     | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-python/recipes-extended/python-pykickstart/python3-pykickstart_2.35.bb b/meta-python/recipes-extended/python-pykickstart/python3-pykickstart_2.35.bb
index 7fe603b..8c13f3e 100644
--- a/meta-python/recipes-extended/python-pykickstart/python3-pykickstart_2.35.bb
+++ b/meta-python/recipes-extended/python-pykickstart/python3-pykickstart_2.35.bb
@@ -21,4 +21,6 @@ SRC_URI = "git://github.com/rhinstaller/pykickstart.git;protocol=https;branch=py
            "
 SRCREV = "b2787a818540e678c2f9c5dca0c6bbd65b8b55e5"
 
+UPSTREAM_CHECK_GITTAGREGEX = "r(?P<pver>\d+(\.\d+)+(-\d+)*)"
+
 inherit setuptools3
-- 
2.7.4



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

* [meta-python][PATCH 2/4] python3-blivet: add UPSTREAM_CHECK_GITTAGREGEX
  2018-05-30  6:38 [meta-python][PATCH 0/4] add UPSTREAM_CHECK_URI for recipes Yi Zhao
  2018-05-30  6:38 ` [meta-python][PATCH 1/4] python3-pykickstart: add UPSTREAM_CHECK_GITTAGREGEX Yi Zhao
@ 2018-05-30  6:38 ` Yi Zhao
  2018-05-30  6:38 ` [meta-python][PATCH 3/4] python-protobuf: add UPSTREAM_CHECK_REGEX Yi Zhao
  2018-05-30  6:38 ` [meta-python][PATCH 4/4] python-click: " Yi Zhao
  3 siblings, 0 replies; 5+ messages in thread
From: Yi Zhao @ 2018-05-30  6:38 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
---
 meta-python/recipes-extended/python-blivet/python3-blivet_2.2.0.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-python/recipes-extended/python-blivet/python3-blivet_2.2.0.bb b/meta-python/recipes-extended/python-blivet/python3-blivet_2.2.0.bb
index 46dc32d..045e0f4 100644
--- a/meta-python/recipes-extended/python-blivet/python3-blivet_2.2.0.bb
+++ b/meta-python/recipes-extended/python-blivet/python3-blivet_2.2.0.bb
@@ -26,6 +26,8 @@ SRC_URI = "git://github.com/rhinstaller/blivet;branch=2.2-devel \
            file://0014-invoking-dd-with-infinite-timeout.patch \
 "
 
+UPSTREAM_CHECK_GITTAGREGEX = "blivet-(?P<pver>\d+(\.\d+)+)$"
+
 inherit distro_features_check
 REQUIRED_DISTRO_FEATURES = "systemd"
 
-- 
2.7.4



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

* [meta-python][PATCH 3/4] python-protobuf: add UPSTREAM_CHECK_REGEX
  2018-05-30  6:38 [meta-python][PATCH 0/4] add UPSTREAM_CHECK_URI for recipes Yi Zhao
  2018-05-30  6:38 ` [meta-python][PATCH 1/4] python3-pykickstart: add UPSTREAM_CHECK_GITTAGREGEX Yi Zhao
  2018-05-30  6:38 ` [meta-python][PATCH 2/4] python3-blivet: " Yi Zhao
@ 2018-05-30  6:38 ` Yi Zhao
  2018-05-30  6:38 ` [meta-python][PATCH 4/4] python-click: " Yi Zhao
  3 siblings, 0 replies; 5+ messages in thread
From: Yi Zhao @ 2018-05-30  6:38 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
---
 meta-python/recipes-devtools/python/python-protobuf.inc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python-protobuf.inc b/meta-python/recipes-devtools/python/python-protobuf.inc
index b84983d..5802fea 100644
--- a/meta-python/recipes-devtools/python/python-protobuf.inc
+++ b/meta-python/recipes-devtools/python/python-protobuf.inc
@@ -10,6 +10,8 @@ inherit pypi
 SRC_URI[md5sum] = "393a53483224cb338df5c643646c0300"
 SRC_URI[sha256sum] = "09879a295fd7234e523b62066223b128c5a8a88f682e3aff62fb115e4a0d8be0"
 
+UPSTREAM_CHECK_REGEX = "protobuf/(?P<pver>\d+(\.\d+)+)/"
+
 RDEPENDS_${PN} += " \
     ${PYTHON_PN}-datetime \
     ${PYTHON_PN}-json \
-- 
2.7.4



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

* [meta-python][PATCH 4/4] python-click: add UPSTREAM_CHECK_REGEX
  2018-05-30  6:38 [meta-python][PATCH 0/4] add UPSTREAM_CHECK_URI for recipes Yi Zhao
                   ` (2 preceding siblings ...)
  2018-05-30  6:38 ` [meta-python][PATCH 3/4] python-protobuf: add UPSTREAM_CHECK_REGEX Yi Zhao
@ 2018-05-30  6:38 ` Yi Zhao
  3 siblings, 0 replies; 5+ messages in thread
From: Yi Zhao @ 2018-05-30  6:38 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
---
 meta-python/recipes-devtools/python/python-click.inc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python-click.inc b/meta-python/recipes-devtools/python/python-click.inc
index 718bbab..c81545b 100644
--- a/meta-python/recipes-devtools/python/python-click.inc
+++ b/meta-python/recipes-devtools/python/python-click.inc
@@ -11,6 +11,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=09e8b7869f94ba9e9a7b260d53c65dab"
 SRC_URI[md5sum] = "fc4cc00c4863833230d3af92af48abd4"
 SRC_URI[sha256sum] = "f15516df478d5a56180fbf80e68f206010e6d160fc39fa508b65e035fd75130b"
 
+UPSTREAM_CHECK_REGEX = "click/(?P<pver>\d+(\.\d+)+)/"
+
 CLEANBROKEN = "1"
 
 RDEPENDS_${PN} += "\
-- 
2.7.4



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

end of thread, other threads:[~2018-05-30  6:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-30  6:38 [meta-python][PATCH 0/4] add UPSTREAM_CHECK_URI for recipes Yi Zhao
2018-05-30  6:38 ` [meta-python][PATCH 1/4] python3-pykickstart: add UPSTREAM_CHECK_GITTAGREGEX Yi Zhao
2018-05-30  6:38 ` [meta-python][PATCH 2/4] python3-blivet: " Yi Zhao
2018-05-30  6:38 ` [meta-python][PATCH 3/4] python-protobuf: add UPSTREAM_CHECK_REGEX Yi Zhao
2018-05-30  6:38 ` [meta-python][PATCH 4/4] python-click: " Yi Zhao

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.