Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/most: bump version to 5.2.0
@ 2022-08-29 15:14 Sven Oliver Moll
  2022-08-29 20:18 ` Thomas Petazzoni via buildroot
  0 siblings, 1 reply; 3+ messages in thread
From: Sven Oliver Moll @ 2022-08-29 15:14 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Sven Oliver Moll <svolli@svolli.de>
---
  package/most/most.hash | 4 ++--
  package/most/most.mk   | 2 +-
  2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/most/most.hash b/package/most/most.hash
index db0eb6db59..5c0fd5751c 100644
--- a/package/most/most.hash
+++ b/package/most/most.hash
@@ -1,6 +1,6 @@
  # From https://www.jedsoft.org/releases/most/
-sha1  db811669a6b22c15478c957b439b5e4483ce1c95  most-5.1.0.tar.gz
+sha1  322073ee6e8c45ce084f4fccd08d3f026aa1f66d  most-5.2.0.tar.gz
  # Locally computed
-sha256  db805d1ffad3e85890802061ac8c90e3c89e25afb184a794e03715a3ed190501  most-5.1.0.tar.gz
+sha256  9455aeb8f826fa8385c850dc22bf0f22cf9069b3c3423fba4bf2c6f6226d9903  most-5.2.0.tar.gz
  sha256  1b2a567f289f66a143c56353e7b3d4fa5862514a5e3c5cfdf8b02ee5e5aaa953  COPYING
  sha256  47ad1c3f9b94d6ec42d9bee6c5df980c5c2daa5b9d22113545ae6a3f21ca2f52  COPYRIGHT
diff --git a/package/most/most.mk b/package/most/most.mk
index 28d82cddf1..24627c046a 100644
--- a/package/most/most.mk
+++ b/package/most/most.mk
@@ -5,7 +5,7 @@
  ################################################################################

  MOST_SITE = http://www.jedsoft.org/releases/most
-MOST_VERSION = 5.1.0
+MOST_VERSION = 5.2.0
  MOST_LICENSE = GPL-2.0+
  MOST_LICENSE_FILES = COPYING COPYRIGHT
  MOST_DEPENDENCIES = slang
-- 
2.30.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/most: bump version to 5.2.0
  2022-08-29 15:14 [Buildroot] [PATCH 1/1] package/most: bump version to 5.2.0 Sven Oliver Moll
@ 2022-08-29 20:18 ` Thomas Petazzoni via buildroot
       [not found]   ` <alpine.DEB.2.20.2208292318200.18923@defender.svolli.xa>
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2022-08-29 20:18 UTC (permalink / raw)
  To: Sven Oliver Moll; +Cc: buildroot

On Mon, 29 Aug 2022 17:14:22 +0200 (CEST)
Sven Oliver Moll <buildroot@svol.li> wrote:

> Signed-off-by: Sven Oliver Moll <svolli@svolli.de>
> ---
>   package/most/most.hash | 4 ++--
>   package/most/most.mk   | 2 +-
>   2 files changed, 3 insertions(+), 3 deletions(-)

Thanks Sven for your patch, which I have applied to our next branch.
However, there were two issues with it:

 - First it was mangled by your e-mail client. Please use "git
   send-email" to send your patches so that they are properly sent with
   no modifications. I have hand applied the patch to address this.

 - The COPYRIGHT file has changed between 5.1.0 and 5.2.0, causing
   "make legal-info" to fail, as it verifies the hash of the license
   files. I have verified what the change was: just a copyright year
   change, so I updated the commit log with this information, and fixed
   up the .hash file.

Thanks a lot!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/most: bump version to 5.2.0
       [not found]   ` <alpine.DEB.2.20.2208292318200.18923@defender.svolli.xa>
@ 2022-08-30  7:43     ` Thomas Petazzoni via buildroot
  0 siblings, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2022-08-30  7:43 UTC (permalink / raw)
  To: Sven Oliver Moll; +Cc: buildroot@buildroot.org

Hello Sven,

(Replying with the Buildroot list in Cc, stripping parts that could be
considered not relevant for the list)

On Mon, 29 Aug 2022 23:33:13 +0200 (CEST)
Sven Oliver Moll <svolli@svolli.de> wrote:

> This also leaves me with a question: I did run my check by just running 
> "make all". Now I've learned that "make legal-info" is something that I also 
> should check. Are there any other make targets I should test also next time?

The most relevant tool is utils/test-pkg. You feed it a small snippet
config file, like:

BR2_PACKAGE_MOST=y

and it will build test this package against a useful selection of
toolchain configurations. And as part of this, it will also run "make
legal-info" and bail out if it no longer works.

Hope this helps!

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-08-30  7:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-29 15:14 [Buildroot] [PATCH 1/1] package/most: bump version to 5.2.0 Sven Oliver Moll
2022-08-29 20:18 ` Thomas Petazzoni via buildroot
     [not found]   ` <alpine.DEB.2.20.2208292318200.18923@defender.svolli.xa>
2022-08-30  7:43     ` Thomas Petazzoni via buildroot

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