* [Buildroot] [PATCH 1/2] package/mc: bump version to 4.8.24
@ 2020-04-12 8:29 Bernd Kuhls
2020-04-12 8:29 ` [Buildroot] [PATCH 2/2] package/mc: add optional dependency to gmp Bernd Kuhls
2020-04-12 8:46 ` [Buildroot] [PATCH 1/2] package/mc: bump version to 4.8.24 Yann E. MORIN
0 siblings, 2 replies; 4+ messages in thread
From: Bernd Kuhls @ 2020-04-12 8:29 UTC (permalink / raw)
To: buildroot
Changelog: https://midnight-commander.org/wiki/NEWS-4.8.24
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/mc/mc.hash | 4 ++--
package/mc/mc.mk | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/package/mc/mc.hash b/package/mc/mc.hash
index 963b2ad2f9..50da2a070b 100644
--- a/package/mc/mc.hash
+++ b/package/mc/mc.hash
@@ -1,4 +1,4 @@
-# Hash from http://ftp.midnight-commander.org/mc-4.8.23.sha256:
-sha256 dd7f7ce74183307b0df25b5c3e60ad3293fd3d3d27d2f37dd7a10efce13dff1c mc-4.8.23.tar.xz
+# Hash from http://ftp.midnight-commander.org/mc-4.8.24.sha256
+sha256 859f1cc070450bf6eb4d319ffcb6a5ac29deb0ac0d81559fb2e71242b1176d46 mc-4.8.24.tar.xz
# sha256 locally computed:
sha256 5576bbec76296e1c8e081f7037ebd01bdada388635f58d844a2f20d37bbe4284 COPYING
diff --git a/package/mc/mc.mk b/package/mc/mc.mk
index 24f6ac36ac..ca93da1756 100644
--- a/package/mc/mc.mk
+++ b/package/mc/mc.mk
@@ -4,7 +4,7 @@
#
################################################################################
-MC_VERSION = 4.8.23
+MC_VERSION = 4.8.24
MC_SOURCE = mc-$(MC_VERSION).tar.xz
MC_SITE = http://ftp.midnight-commander.org
MC_LICENSE = GPL-3.0+
--
2.25.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 2/2] package/mc: add optional dependency to gmp
2020-04-12 8:29 [Buildroot] [PATCH 1/2] package/mc: bump version to 4.8.24 Bernd Kuhls
@ 2020-04-12 8:29 ` Bernd Kuhls
2020-04-29 21:34 ` Peter Korsgaard
2020-04-12 8:46 ` [Buildroot] [PATCH 1/2] package/mc: bump version to 4.8.24 Yann E. MORIN
1 sibling, 1 reply; 4+ messages in thread
From: Bernd Kuhls @ 2020-04-12 8:29 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/mc/mc.mk | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/package/mc/mc.mk b/package/mc/mc.mk
index ca93da1756..3deffeefee 100644
--- a/package/mc/mc.mk
+++ b/package/mc/mc.mk
@@ -11,6 +11,13 @@ MC_LICENSE = GPL-3.0+
MC_LICENSE_FILES = COPYING
MC_DEPENDENCIES = libglib2 host-pkgconf
+ifeq ($(BR2_PACKAGE_GMP),y)
+MC_CONF_OPTS += --with-gpm-mouse
+MC_DEPENDENCIES += gpm
+else
+MC_CONF_OPTS += --without-gpm-mouse
+endif
+
ifeq ($(BR2_PACKAGE_LIBSSH2),y)
MC_CONF_OPTS += --enable-vfs-sftp
MC_DEPENDENCIES += libssh2
--
2.25.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/2] package/mc: bump version to 4.8.24
2020-04-12 8:29 [Buildroot] [PATCH 1/2] package/mc: bump version to 4.8.24 Bernd Kuhls
2020-04-12 8:29 ` [Buildroot] [PATCH 2/2] package/mc: add optional dependency to gmp Bernd Kuhls
@ 2020-04-12 8:46 ` Yann E. MORIN
1 sibling, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2020-04-12 8:46 UTC (permalink / raw)
To: buildroot
Bernd, All,
On 2020-04-12 10:29 +0200, Bernd Kuhls spake thusly:
> Changelog: https://midnight-commander.org/wiki/NEWS-4.8.24
>
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Both patches applied. However, I first applied the gpm dependency
because that hidden dependency already exists wuth 4.8.23. Thanks!
Regards,
Yann E. MORIN.
> ---
> package/mc/mc.hash | 4 ++--
> package/mc/mc.mk | 2 +-
> 2 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/package/mc/mc.hash b/package/mc/mc.hash
> index 963b2ad2f9..50da2a070b 100644
> --- a/package/mc/mc.hash
> +++ b/package/mc/mc.hash
> @@ -1,4 +1,4 @@
> -# Hash from http://ftp.midnight-commander.org/mc-4.8.23.sha256:
> -sha256 dd7f7ce74183307b0df25b5c3e60ad3293fd3d3d27d2f37dd7a10efce13dff1c mc-4.8.23.tar.xz
> +# Hash from http://ftp.midnight-commander.org/mc-4.8.24.sha256
> +sha256 859f1cc070450bf6eb4d319ffcb6a5ac29deb0ac0d81559fb2e71242b1176d46 mc-4.8.24.tar.xz
> # sha256 locally computed:
> sha256 5576bbec76296e1c8e081f7037ebd01bdada388635f58d844a2f20d37bbe4284 COPYING
> diff --git a/package/mc/mc.mk b/package/mc/mc.mk
> index 24f6ac36ac..ca93da1756 100644
> --- a/package/mc/mc.mk
> +++ b/package/mc/mc.mk
> @@ -4,7 +4,7 @@
> #
> ################################################################################
>
> -MC_VERSION = 4.8.23
> +MC_VERSION = 4.8.24
> MC_SOURCE = mc-$(MC_VERSION).tar.xz
> MC_SITE = http://ftp.midnight-commander.org
> MC_LICENSE = GPL-3.0+
> --
> 2.25.0
>
> _______________________________________________
> 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] 4+ messages in thread
end of thread, other threads:[~2020-04-29 21:34 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-12 8:29 [Buildroot] [PATCH 1/2] package/mc: bump version to 4.8.24 Bernd Kuhls
2020-04-12 8:29 ` [Buildroot] [PATCH 2/2] package/mc: add optional dependency to gmp Bernd Kuhls
2020-04-29 21:34 ` Peter Korsgaard
2020-04-12 8:46 ` [Buildroot] [PATCH 1/2] package/mc: bump version to 4.8.24 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