public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] dmidecode: update to 3.2
@ 2019-01-05 10:47 Peter Müller
  2019-01-07 13:03 ` Michael Tremer
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Müller @ 2019-01-05 10:47 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1001 bytes --]

Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
 dmidecode/dmidecode.nm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dmidecode/dmidecode.nm b/dmidecode/dmidecode.nm
index 828924367..05f9537bb 100644
--- a/dmidecode/dmidecode.nm
+++ b/dmidecode/dmidecode.nm
@@ -4,11 +4,11 @@
 ###############################################################################
 
 name       = dmidecode
-version    = 3.0
-release    = 1
+version    = 3.2
+release    = 2
 
 groups     = Applications/System
-url        = http://www.nongnu.org/dmidecode/
+url        = https://www.nongnu.org/dmidecode/
 license    = GPLv2+
 summary    = Tool to analyse BIOS DMI data.
 
@@ -21,7 +21,7 @@ description
 	manufacturer.
 end
 
-source_dl  = http://download.savannah.gnu.org/releases/dmidecode/
+source_dl  = https://download.savannah.gnu.org/releases/dmidecode/
 
 build
 	make_build_targets += CFLAGS="%{CFLAGS}" LDFLAGS="%{LDFLAGS}"
-- 
2.16.4

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

* Re: [PATCH] dmidecode: update to 3.2
  2019-01-05 10:47 [PATCH] dmidecode: update to 3.2 Peter Müller
@ 2019-01-07 13:03 ` Michael Tremer
  2019-01-07 17:24   ` [PATCH v2] " Peter Müller
  0 siblings, 1 reply; 4+ messages in thread
From: Michael Tremer @ 2019-01-07 13:03 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1486 bytes --]

Hello,

This patch has a couple of issues.

> On 5 Jan 2019, at 10:47, Peter Müller <peter.mueller(a)link38.eu> wrote:
> 
> Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
> ---
> dmidecode/dmidecode.nm | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/dmidecode/dmidecode.nm b/dmidecode/dmidecode.nm
> index 828924367..05f9537bb 100644
> --- a/dmidecode/dmidecode.nm
> +++ b/dmidecode/dmidecode.nm
> @@ -4,11 +4,11 @@
> ###############################################################################
> 
> name       = dmidecode
> -version    = 3.0
> -release    = 1
> +version    = 3.2
> +release    = 2

In contrast to IPFire 2, please restart the release again from 1 when version is being updated.

> groups     = Applications/System
> -url        = http://www.nongnu.org/dmidecode/
> +url        = https://www.nongnu.org/dmidecode/
> license    = GPLv2+
> summary    = Tool to analyse BIOS DMI data.
> 
> @@ -21,7 +21,7 @@ description
> 	manufacturer.
> end
> 
> -source_dl  = http://download.savannah.gnu.org/releases/dmidecode/
> +source_dl  = https://download.savannah.gnu.org/releases/dmidecode/

HTTPS is good, but the source is not available in tar.gz format. Therefore this does not build.

You will need to overwrite “sources” to download the tar.xz version of dmidecode.

> build
> 	make_build_targets += CFLAGS="%{CFLAGS}" LDFLAGS="%{LDFLAGS}"
> -- 
> 2.16.4

Best,
-Michael

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

* [PATCH v2] dmidecode: update to 3.2
  2019-01-07 13:03 ` Michael Tremer
@ 2019-01-07 17:24   ` Peter Müller
  2019-01-07 17:45     ` Michael Tremer
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Müller @ 2019-01-07 17:24 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1016 bytes --]

Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
 dmidecode/dmidecode.nm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/dmidecode/dmidecode.nm b/dmidecode/dmidecode.nm
index 828924367..27eee5d14 100644
--- a/dmidecode/dmidecode.nm
+++ b/dmidecode/dmidecode.nm
@@ -4,11 +4,11 @@
 ###############################################################################
 
 name       = dmidecode
-version    = 3.0
+version    = 3.2
 release    = 1
 
 groups     = Applications/System
-url        = http://www.nongnu.org/dmidecode/
+url        = https://www.nongnu.org/dmidecode/
 license    = GPLv2+
 summary    = Tool to analyse BIOS DMI data.
 
@@ -21,7 +21,8 @@ description
 	manufacturer.
 end
 
-source_dl  = http://download.savannah.gnu.org/releases/dmidecode/
+source_dl  = https://download.savannah.gnu.org/releases/dmidecode/
+sources    = %{thisapp}.tar.xz
 
 build
 	make_build_targets += CFLAGS="%{CFLAGS}" LDFLAGS="%{LDFLAGS}"
-- 
2.16.4

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

* Re: [PATCH v2] dmidecode: update to 3.2
  2019-01-07 17:24   ` [PATCH v2] " Peter Müller
@ 2019-01-07 17:45     ` Michael Tremer
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Tremer @ 2019-01-07 17:45 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1197 bytes --]

Thanks.

How did you build this before?

> On 7 Jan 2019, at 17:24, Peter Müller <peter.mueller(a)link38.eu> wrote:
> 
> Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
> ---
> dmidecode/dmidecode.nm | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
> 
> diff --git a/dmidecode/dmidecode.nm b/dmidecode/dmidecode.nm
> index 828924367..27eee5d14 100644
> --- a/dmidecode/dmidecode.nm
> +++ b/dmidecode/dmidecode.nm
> @@ -4,11 +4,11 @@
> ###############################################################################
> 
> name       = dmidecode
> -version    = 3.0
> +version    = 3.2
> release    = 1
> 
> groups     = Applications/System
> -url        = http://www.nongnu.org/dmidecode/
> +url        = https://www.nongnu.org/dmidecode/
> license    = GPLv2+
> summary    = Tool to analyse BIOS DMI data.
> 
> @@ -21,7 +21,8 @@ description
> 	manufacturer.
> end
> 
> -source_dl  = http://download.savannah.gnu.org/releases/dmidecode/
> +source_dl  = https://download.savannah.gnu.org/releases/dmidecode/
> +sources    = %{thisapp}.tar.xz
> 
> build
> 	make_build_targets += CFLAGS="%{CFLAGS}" LDFLAGS="%{LDFLAGS}"
> -- 
> 2.16.4


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

end of thread, other threads:[~2019-01-07 17:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-05 10:47 [PATCH] dmidecode: update to 3.2 Peter Müller
2019-01-07 13:03 ` Michael Tremer
2019-01-07 17:24   ` [PATCH v2] " Peter Müller
2019-01-07 17:45     ` Michael Tremer

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