mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 1/2] opkg: Fix broken URL.
@ 2026-04-10 17:49 Christian Melki
  2026-04-10 17:49 ` [ptxdist] [PATCH 2/2] host-opkg-utils: " Christian Melki
  2026-04-15 13:52 ` [ptxdist] [APPLIED] opkg: " Michael Olbrich
  0 siblings, 2 replies; 4+ messages in thread
From: Christian Melki @ 2026-04-10 17:49 UTC (permalink / raw)
  To: ptxdist

Seems they have removed the snapshotting.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/opkg.make | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rules/opkg.make b/rules/opkg.make
index 93eb693fc..4945d3f3a 100644
--- a/rules/opkg.make
+++ b/rules/opkg.make
@@ -19,7 +19,7 @@ OPKG_VERSION	:= 0.9.0
 OPKG_MD5	:= 3a100d77beaedd4820599d91bc53e302
 OPKG		:= opkg-$(OPKG_VERSION)
 OPKG_SUFFIX	:= tar.gz
-OPKG_URL	:= https://git.yoctoproject.org/opkg/snapshot/$(OPKG).$(OPKG_SUFFIX)
+OPKG_URL	:= git+https://git.yoctoproject.org/opkg;tag=v$(OPKG_VERSION)
 OPKG_SOURCE	:= $(SRCDIR)/$(OPKG).$(OPKG_SUFFIX)
 OPKG_DIR	:= $(BUILDDIR)/$(OPKG)
 OPKG_LICENSE	:= GPL-2.0-or-later
-- 
2.43.0




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

* [ptxdist] [PATCH 2/2] host-opkg-utils: Fix broken URL.
  2026-04-10 17:49 [ptxdist] [PATCH 1/2] opkg: Fix broken URL Christian Melki
@ 2026-04-10 17:49 ` Christian Melki
  2026-04-15 13:52   ` [ptxdist] [APPLIED] " Michael Olbrich
  2026-04-15 13:52 ` [ptxdist] [APPLIED] opkg: " Michael Olbrich
  1 sibling, 1 reply; 4+ messages in thread
From: Christian Melki @ 2026-04-10 17:49 UTC (permalink / raw)
  To: ptxdist

Seems they have removed the snapshotting.

Signed-off-by: Christian Melki <christian.melki@t2data.com>
---
 rules/host-opkg-utils.make | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/rules/host-opkg-utils.make b/rules/host-opkg-utils.make
index 7deeab7fb..f17aeeadb 100644
--- a/rules/host-opkg-utils.make
+++ b/rules/host-opkg-utils.make
@@ -1,3 +1,4 @@
+
 # -*-makefile-*-
 #
 # Copyright (C) 2011 by George McCollister <george.mccollister@gmail.com>
@@ -18,7 +19,7 @@ HOST_OPKG_UTILS_VERSION	:= 0.7.0
 HOST_OPKG_UTILS_MD5	:= 53c42e603468102f28d010e922310941
 HOST_OPKG_UTILS		:= opkg-utils-$(HOST_OPKG_UTILS_VERSION)
 HOST_OPKG_UTILS_SUFFIX	:= tar.gz
-HOST_OPKG_UTILS_URL	:= https://git.yoctoproject.org/opkg-utils/snapshot/$(HOST_OPKG_UTILS).$(HOST_OPKG_UTILS_SUFFIX)
+HOST_OPKG_UTILS_URL	:= git+https://git.yoctoproject.org/opkg-utils;tag=$(HOST_OPKG_UTILS_VERSION)
 HOST_OPKG_UTILS_SOURCE	:= $(SRCDIR)/$(HOST_OPKG_UTILS).$(HOST_OPKG_UTILS_SUFFIX)
 HOST_OPKG_UTILS_DIR	:= $(HOST_BUILDDIR)/$(HOST_OPKG_UTILS)
 HOST_OPKG_UTILS_LICENSE	:= GPL-2.0-only
-- 
2.43.0




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

* Re: [ptxdist] [APPLIED] opkg: Fix broken URL.
  2026-04-10 17:49 [ptxdist] [PATCH 1/2] opkg: Fix broken URL Christian Melki
  2026-04-10 17:49 ` [ptxdist] [PATCH 2/2] host-opkg-utils: " Christian Melki
@ 2026-04-15 13:52 ` Michael Olbrich
  1 sibling, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2026-04-15 13:52 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as 5789b78e996ac8c63cce8e374a35b3834a874fff.

Michael

[sent from post-receive hook]

On Wed, 15 Apr 2026 15:52:11 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> Seems they have removed the snapshotting.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20260410174923.1089609-1-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/opkg.make b/rules/opkg.make
> index 93eb693fce27..4945d3f3a0fd 100644
> --- a/rules/opkg.make
> +++ b/rules/opkg.make
> @@ -19,7 +19,7 @@ OPKG_VERSION	:= 0.9.0
>  OPKG_MD5	:= 3a100d77beaedd4820599d91bc53e302
>  OPKG		:= opkg-$(OPKG_VERSION)
>  OPKG_SUFFIX	:= tar.gz
> -OPKG_URL	:= https://git.yoctoproject.org/opkg/snapshot/$(OPKG).$(OPKG_SUFFIX)
> +OPKG_URL	:= git+https://git.yoctoproject.org/opkg;tag=v$(OPKG_VERSION)
>  OPKG_SOURCE	:= $(SRCDIR)/$(OPKG).$(OPKG_SUFFIX)
>  OPKG_DIR	:= $(BUILDDIR)/$(OPKG)
>  OPKG_LICENSE	:= GPL-2.0-or-later



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

* Re: [ptxdist] [APPLIED] host-opkg-utils: Fix broken URL.
  2026-04-10 17:49 ` [ptxdist] [PATCH 2/2] host-opkg-utils: " Christian Melki
@ 2026-04-15 13:52   ` Michael Olbrich
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Olbrich @ 2026-04-15 13:52 UTC (permalink / raw)
  To: ptxdist; +Cc: Christian Melki

Thanks, applied as bd823e6ff7a4e347ae79d07171508c2b5f80315c.

Michael

[sent from post-receive hook]

On Wed, 15 Apr 2026 15:52:12 +0200, Christian Melki <christian.melki@t2data.com> wrote:
> Seems they have removed the snapshotting.
> 
> Signed-off-by: Christian Melki <christian.melki@t2data.com>
> Message-Id: <20260410174923.1089609-2-christian.melki@t2data.com>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/host-opkg-utils.make b/rules/host-opkg-utils.make
> index 7deeab7fb3e0..f17aeeadbf0d 100644
> --- a/rules/host-opkg-utils.make
> +++ b/rules/host-opkg-utils.make
> @@ -1,3 +1,4 @@
> +
>  # -*-makefile-*-
>  #
>  # Copyright (C) 2011 by George McCollister <george.mccollister@gmail.com>
> @@ -18,7 +19,7 @@ HOST_OPKG_UTILS_VERSION	:= 0.7.0
>  HOST_OPKG_UTILS_MD5	:= 53c42e603468102f28d010e922310941
>  HOST_OPKG_UTILS		:= opkg-utils-$(HOST_OPKG_UTILS_VERSION)
>  HOST_OPKG_UTILS_SUFFIX	:= tar.gz
> -HOST_OPKG_UTILS_URL	:= https://git.yoctoproject.org/opkg-utils/snapshot/$(HOST_OPKG_UTILS).$(HOST_OPKG_UTILS_SUFFIX)
> +HOST_OPKG_UTILS_URL	:= git+https://git.yoctoproject.org/opkg-utils;tag=$(HOST_OPKG_UTILS_VERSION)
>  HOST_OPKG_UTILS_SOURCE	:= $(SRCDIR)/$(HOST_OPKG_UTILS).$(HOST_OPKG_UTILS_SUFFIX)
>  HOST_OPKG_UTILS_DIR	:= $(HOST_BUILDDIR)/$(HOST_OPKG_UTILS)
>  HOST_OPKG_UTILS_LICENSE	:= GPL-2.0-only



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

end of thread, other threads:[~2026-04-15 13:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-04-10 17:49 [ptxdist] [PATCH 1/2] opkg: Fix broken URL Christian Melki
2026-04-10 17:49 ` [ptxdist] [PATCH 2/2] host-opkg-utils: " Christian Melki
2026-04-15 13:52   ` [ptxdist] [APPLIED] " Michael Olbrich
2026-04-15 13:52 ` [ptxdist] [APPLIED] opkg: " Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox