* [Buildroot] [PATCH 1/2] package/opkg: bump to version 0.4.5
@ 2021-06-24 12:47 Ryan Barnett
2021-06-24 12:47 ` [Buildroot] [PATCH 2/2] package/opkg-utils: " Ryan Barnett
2021-06-29 20:31 ` [Buildroot] [PATCH 1/2] package/opkg: " Yann E. MORIN
0 siblings, 2 replies; 3+ messages in thread
From: Ryan Barnett @ 2021-06-24 12:47 UTC (permalink / raw)
To: buildroot
Along with version bump, update hash file to two space format and
switch to HTTPS URL.
Signed-off-by: Ryan Barnett <ryanbarnett3@gmail.com>
---
package/opkg/opkg.hash | 4 ++--
package/opkg/opkg.mk | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/package/opkg/opkg.hash b/package/opkg/opkg.hash
index b1ead67a11..b0c0ba6574 100644
--- a/package/opkg/opkg.hash
+++ b/package/opkg/opkg.hash
@@ -1,4 +1,4 @@
# From http://downloads.yoctoproject.org/releases/opkg/SHA256SUMS
-sha256 86887852c43457edfff9d8b6d9520f3f1cdd55f25eb600a6eb31e1c4e151e106 opkg-0.4.2.tar.gz
+sha256 a1214a75fa34fb9228db8da47308e0e711b1c93fd8938cf164c10fd28eb50f1e opkg-0.4.5.tar.gz
# Locally calculated
-sha256 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670 COPYING
+sha256 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670 COPYING
diff --git a/package/opkg/opkg.mk b/package/opkg/opkg.mk
index e25e51b9e6..501edcf8af 100644
--- a/package/opkg/opkg.mk
+++ b/package/opkg/opkg.mk
@@ -4,8 +4,8 @@
#
################################################################################
-OPKG_VERSION = 0.4.2
-OPKG_SITE = http://downloads.yoctoproject.org/releases/opkg
+OPKG_VERSION = 0.4.5
+OPKG_SITE = https://downloads.yoctoproject.org/releases/opkg
OPKG_DEPENDENCIES = host-pkgconf libarchive
OPKG_LICENSE = GPL-2.0+
OPKG_LICENSE_FILES = COPYING
--
2.25.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 2/2] package/opkg-utils: bump to version 0.4.5
2021-06-24 12:47 [Buildroot] [PATCH 1/2] package/opkg: bump to version 0.4.5 Ryan Barnett
@ 2021-06-24 12:47 ` Ryan Barnett
2021-06-29 20:31 ` [Buildroot] [PATCH 1/2] package/opkg: " Yann E. MORIN
1 sibling, 0 replies; 3+ messages in thread
From: Ryan Barnett @ 2021-06-24 12:47 UTC (permalink / raw)
To: buildroot
Switch URL to HTTPS address for git repository.
Signed-off-by: Ryan Barnett <ryanbarnett3@gmail.com>
---
...-seperate-manpages-and-utils-install.patch | 50 -------------------
package/opkg-utils/opkg-utils.hash | 2 +-
package/opkg-utils/opkg-utils.mk | 4 +-
3 files changed, 3 insertions(+), 53 deletions(-)
delete mode 100644 package/opkg-utils/0001-Makefile-seperate-manpages-and-utils-install.patch
diff --git a/package/opkg-utils/0001-Makefile-seperate-manpages-and-utils-install.patch b/package/opkg-utils/0001-Makefile-seperate-manpages-and-utils-install.patch
deleted file mode 100644
index 140187ca3a..0000000000
--- a/package/opkg-utils/0001-Makefile-seperate-manpages-and-utils-install.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-From 74ccbee0f798822041dba5c6564df62a0c60d86b Mon Sep 17 00:00:00 2001
-From: Ryan Barnett <ryanbarnett3@gmail.com>
-Date: Mon, 22 Feb 2021 07:09:34 -0600
-Subject: Makefile: separate manpages and utils install
-
-The installation of opkg-build man page introduces a host dependency
-on perl for the pod2man package to generate the man page.
-
-To allow the opkg-utils scripts to be installed separately from the
-manpages, break apart the install step into two install steps:
-install-utils and install-docs
-
-Backported from: 74ccbee0f798822041dba5c6564df62a0c60d86b
-
-CC: Christian Hermann <mail@hermannch.dev>
-Signed-off-by: Ryan Barnett <ryanbarnett3@gmail.com>
-Signed-off-by: Alex Stewart <alex.stewart@ni.com>
-Signed-off-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
----
- Makefile | 8 ++++++--
- 1 file changed, 6 insertions(+), 2 deletions(-)
-
-diff --git a/Makefile b/Makefile
-index 4049654..fe96d5a 100644
---- a/Makefile
-+++ b/Makefile
-@@ -27,9 +27,11 @@ mandir ?= $(PREFIX)/man
-
- all: $(UTILS) $(MANPAGES)
-
--install: all
-+install-utils: $(UTILS)
- install -d $(DESTDIR)$(bindir)
- install -m 755 $(UTILS) $(DESTDIR)$(bindir)
-+
-+install-docs: $(MANPAGES)
- install -d $(DESTDIR)$(mandir)
- for m in $(MANPAGES); \
- do \
-@@ -37,4 +39,6 @@ install: all
- install -m 644 "$$m" $(DESTDIR)$(mandir)/man$${m##*.}; \
- done
-
--.PHONY: install all
-+install: install-utils install-docs
-+
-+.PHONY: install install-utils install-docs all
---
-cgit v1.2.2-1-g5e49
-
diff --git a/package/opkg-utils/opkg-utils.hash b/package/opkg-utils/opkg-utils.hash
index 779852d9c0..29671f9609 100644
--- a/package/opkg-utils/opkg-utils.hash
+++ b/package/opkg-utils/opkg-utils.hash
@@ -1,3 +1,3 @@
# Locally calculated
-sha256 552c074630b6d6b39a32a35243fb34d7c5888b8a4f18118abb4daf92d0e847f2 opkg-utils-0.4.3-br1.tar.gz
+sha256 e0fcaab51bff2149bd6560fb4238319d502dd99b581f66763d702e75c224736d opkg-utils-0.4.5-br1.tar.gz
sha256 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670 COPYING
diff --git a/package/opkg-utils/opkg-utils.mk b/package/opkg-utils/opkg-utils.mk
index cdffd6f1c4..369a4586e8 100644
--- a/package/opkg-utils/opkg-utils.mk
+++ b/package/opkg-utils/opkg-utils.mk
@@ -4,8 +4,8 @@
#
################################################################################
-OPKG_UTILS_VERSION = 0.4.3
-OPKG_UTILS_SITE = http://git.yoctoproject.org/git/opkg-utils
+OPKG_UTILS_VERSION = 0.4.5
+OPKG_UTILS_SITE = https://git.yoctoproject.org/git/opkg-utils
OPKG_UTILS_SITE_METHOD = git
OPKG_UTILS_LICENSE = GPL-2.0+
OPKG_UTILS_LICENSE_FILES = COPYING
--
2.25.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/2] package/opkg: bump to version 0.4.5
2021-06-24 12:47 [Buildroot] [PATCH 1/2] package/opkg: bump to version 0.4.5 Ryan Barnett
2021-06-24 12:47 ` [Buildroot] [PATCH 2/2] package/opkg-utils: " Ryan Barnett
@ 2021-06-29 20:31 ` Yann E. MORIN
1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2021-06-29 20:31 UTC (permalink / raw)
To: buildroot
Ryan, All,
On 2021-06-24 07:47 -0500, Ryan Barnett spake thusly:
> Along with version bump, update hash file to two space format and
> switch to HTTPS URL.
>
> Signed-off-by: Ryan Barnett <ryanbarnett3@gmail.com>
Both applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> package/opkg/opkg.hash | 4 ++--
> package/opkg/opkg.mk | 4 ++--
> 2 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/package/opkg/opkg.hash b/package/opkg/opkg.hash
> index b1ead67a11..b0c0ba6574 100644
> --- a/package/opkg/opkg.hash
> +++ b/package/opkg/opkg.hash
> @@ -1,4 +1,4 @@
> # From http://downloads.yoctoproject.org/releases/opkg/SHA256SUMS
> -sha256 86887852c43457edfff9d8b6d9520f3f1cdd55f25eb600a6eb31e1c4e151e106 opkg-0.4.2.tar.gz
> +sha256 a1214a75fa34fb9228db8da47308e0e711b1c93fd8938cf164c10fd28eb50f1e opkg-0.4.5.tar.gz
> # Locally calculated
> -sha256 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670 COPYING
> +sha256 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670 COPYING
> diff --git a/package/opkg/opkg.mk b/package/opkg/opkg.mk
> index e25e51b9e6..501edcf8af 100644
> --- a/package/opkg/opkg.mk
> +++ b/package/opkg/opkg.mk
> @@ -4,8 +4,8 @@
> #
> ################################################################################
>
> -OPKG_VERSION = 0.4.2
> -OPKG_SITE = http://downloads.yoctoproject.org/releases/opkg
> +OPKG_VERSION = 0.4.5
> +OPKG_SITE = https://downloads.yoctoproject.org/releases/opkg
> OPKG_DEPENDENCIES = host-pkgconf libarchive
> OPKG_LICENSE = GPL-2.0+
> OPKG_LICENSE_FILES = COPYING
> --
> 2.25.1
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-06-29 20:31 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-24 12:47 [Buildroot] [PATCH 1/2] package/opkg: bump to version 0.4.5 Ryan Barnett
2021-06-24 12:47 ` [Buildroot] [PATCH 2/2] package/opkg-utils: " Ryan Barnett
2021-06-29 20:31 ` [Buildroot] [PATCH 1/2] package/opkg: " Yann E. MORIN
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox