All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] pypi: set SRC_URI with =, not with +=
@ 2021-06-22 19:27 Alexander Kanavin
  2021-06-23  7:01 ` Konrad Weihmann
  0 siblings, 1 reply; 7+ messages in thread
From: Alexander Kanavin @ 2021-06-22 19:27 UTC (permalink / raw)
  To: openembedded-core; +Cc: Alexander Kanavin

This did not cause problems in builds, but broke some devtool
workflows such as version upgrades or checking the latest version
from upstream. Tarballs should come first, not the patches.

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
 meta/classes/pypi.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/pypi.bbclass b/meta/classes/pypi.bbclass
index 87b4c85fc0..899126e9e8 100644
--- a/meta/classes/pypi.bbclass
+++ b/meta/classes/pypi.bbclass
@@ -19,7 +19,7 @@ PYPI_SRC_URI ?= "${@pypi_src_uri(d)}"
 
 HOMEPAGE ?= "https://pypi.python.org/pypi/${PYPI_PACKAGE}/"
 SECTION = "devel/python"
-SRC_URI += "${PYPI_SRC_URI}"
+SRC_URI = "${PYPI_SRC_URI}"
 S = "${WORKDIR}/${PYPI_PACKAGE}-${PV}"
 
 UPSTREAM_CHECK_URI ?= "https://pypi.org/project/${PYPI_PACKAGE}/"
-- 
2.31.1


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

end of thread, other threads:[~2021-06-24  8:28 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-22 19:27 [PATCH] pypi: set SRC_URI with =, not with += Alexander Kanavin
2021-06-23  7:01 ` Konrad Weihmann
2021-06-23  8:34   ` [OE-core] " Alexander Kanavin
2021-06-23  9:26     ` Peter Kjellerstedt
2021-06-23 10:17       ` Alexander Kanavin
2021-06-24  7:21         ` Andre McCurdy
2021-06-24  8:28           ` Alexander Kanavin

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.