* [git.ipfire.org] IPFire 3.x development tree branch, master, updated. 424b6970b4e4951e2202a7b5e9609c091e65cacb
@ 2023-03-08 9:35 Michael Tremer
0 siblings, 0 replies; only message in thread
From: Michael Tremer @ 2023-03-08 9:35 UTC (permalink / raw)
To: ipfire-scm
[-- Attachment #1: Type: text/plain, Size: 6811 bytes --]
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "IPFire 3.x development tree".
The branch, master has been updated
via 424b6970b4e4951e2202a7b5e9609c091e65cacb (commit)
via 2d0eca171684f48c4cd5d984d3623ee53253a37b (commit)
via a36793208328a3a4a422231b8208d4aae83faa79 (commit)
via adc51ec27988f84434ce59751b9eb47d38a2871b (commit)
via 5bad7b3ff617a6c123254fd96d241fb2b7a96291 (commit)
via 80591bb82470a9b8e8672d4055296884a9a30be6 (commit)
from 74379b548cd489e494dab1c3b8d06f4945d415c9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 424b6970b4e4951e2202a7b5e9609c091e65cacb
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date: Wed Mar 8 08:44:34 2023 +0000
strace: Fix build on aarch64
strace defaults to enable m32 or mx32, which is not available
on at least aarch64. So change to "check" to determine whicht mode
is available.
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
commit 2d0eca171684f48c4cd5d984d3623ee53253a37b
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date: Wed Mar 8 07:59:20 2023 +0000
libdaemon: Fix build on aarch64
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
commit a36793208328a3a4a422231b8208d4aae83faa79
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date: Wed Mar 8 07:55:22 2023 +0000
libatasmart: Fix build for aarch64
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
commit adc51ec27988f84434ce59751b9eb47d38a2871b
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date: Tue Mar 7 20:03:42 2023 +0000
pth: Fix build on aarch64
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
commit 5bad7b3ff617a6c123254fd96d241fb2b7a96291
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date: Tue Mar 7 19:53:14 2023 +0000
gnome-doc-utils: Fix build on aarch64
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
commit 80591bb82470a9b8e8672d4055296884a9a30be6
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date: Tue Mar 7 18:18:12 2023 +0000
flashrom: Update to 1.3.0
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
-----------------------------------------------------------------------
Summary of changes:
flashrom/flashrom.nm | 9 +++++----
gnome-doc-utils/gnome-doc-utils.nm | 7 ++++++-
libatasmart/libatasmart.nm | 7 ++++++-
libdaemon/libdaemon.nm | 10 ++++++++++
pth/pth.nm | 16 +++-------------
strace/strace.nm | 7 ++++++-
6 files changed, 36 insertions(+), 20 deletions(-)
Difference in files:
diff --git a/flashrom/flashrom.nm b/flashrom/flashrom.nm
index 331f8ee9b..27befa05b 100644
--- a/flashrom/flashrom.nm
+++ b/flashrom/flashrom.nm
@@ -4,9 +4,9 @@
###############################################################################
name = flashrom
-version = 1.2
+version = 1.3.0
release = 1
-thisapp = %{name}-v%{version}
+thisapp = %{name}-%{version}
groups = Development/Tools
url = https://www.flashrom.org
@@ -21,11 +21,12 @@ description
other programmer devices.
end
-source_dl = https://download.flashrom.org/releases/
-sources = %{thisapp}.tar.bz2
+source_dl = https://github.com/flashrom/flashrom/archive/refs/tags/v%{version}.tar.gz#/
+sources = %{thisapp}.tar.gz
build
requires
+ libudev-devel
libusb-devel
pciutils-devel
end
diff --git a/gnome-doc-utils/gnome-doc-utils.nm b/gnome-doc-utils/gnome-doc-utils.nm
index e6c64ba95..4212d9e89 100644
--- a/gnome-doc-utils/gnome-doc-utils.nm
+++ b/gnome-doc-utils/gnome-doc-utils.nm
@@ -7,7 +7,7 @@ name = gnome-doc-utils
ver_major = 0.20
ver_minor = 10
version = %{ver_major}.%{ver_minor}
-release = 2
+release = 2.1
groups = Development/Tools
url = http://www.gnome.org/
@@ -29,9 +29,14 @@ build
python3
python3-libxml2
intltool >= 0.35.0
+ libtool
libxml2-devel >= 2.6.12
libxslt-devel >= 1.1.8
end
+
+ prepare_cmds
+ %{MACRO_FIX_AUTOTOOLS}
+ end
end
packages
diff --git a/libatasmart/libatasmart.nm b/libatasmart/libatasmart.nm
index a86c2eef3..1198d3df2 100644
--- a/libatasmart/libatasmart.nm
+++ b/libatasmart/libatasmart.nm
@@ -5,7 +5,7 @@
name = libatasmart
version = 0.19
-release = 2
+release = 2.1
groups = System/Statistics
url = http://git.0pointer.net/libatasmart.git/
@@ -23,6 +23,11 @@ sources = %{thisapp}.tar.xz
build
requires
libudev-devel
+ libtool
+ end
+
+ prepare_cmds
+ %{MACRO_FIX_AUTOTOOLS}
end
end
diff --git a/libdaemon/libdaemon.nm b/libdaemon/libdaemon.nm
index f62fea112..0ffad3aa7 100644
--- a/libdaemon/libdaemon.nm
+++ b/libdaemon/libdaemon.nm
@@ -18,6 +18,16 @@ end
source_dl = https://0pointer.de/lennart/projects/libdaemon/
+build
+ requires
+ libtool
+ end
+
+ prepare_cmds
+ %{MACRO_FIX_AUTOTOOLS}
+ end
+end
+
packages
package %{name}
diff --git a/pth/pth.nm b/pth/pth.nm
index 6a7c0d610..013137870 100644
--- a/pth/pth.nm
+++ b/pth/pth.nm
@@ -5,7 +5,7 @@
name = pth
version = 2.0.7
-release = 3
+release = 3.1
groups = System/Libraries
url = http://www.gnu.org/software/pth
@@ -30,18 +30,8 @@ build
--disable-static \
--mandir=/usr/share/man
- if "%{DISTRO_ARCH}" == "armv5tel"
- configure_options += \
- --with-mctx-mth=sjlj \
- --with-mctx-dsp=ssjlj \
- --with-mctx-stk=sas
- end
-
- if "%{DISTRO_ARCH}" == "armv7hl"
- configure_options += \
- --with-mctx-mth=sjlj \
- --with-mctx-dsp=ssjlj \
- --with-mctx-stk=sas
+ prepare_cmds
+ %{MACRO_FIX_AUTOTOOLS}
end
test
diff --git a/strace/strace.nm b/strace/strace.nm
index 52d5fcd24..37ca86837 100644
--- a/strace/strace.nm
+++ b/strace/strace.nm
@@ -5,7 +5,7 @@
name = strace
version = 6.1
-release = 1
+release = 1.1
groups = Development/Debuggers
url = https://strace.io/
@@ -23,6 +23,11 @@ end
source_dl = https://strace.io/files/%{version}/
sources = %{thisapp}.tar.xz
+build
+ configure_options += \
+ --enable-mpers=check
+end
+
packages
package %{name}
hooks/post-receive
--
IPFire 3.x development tree
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2023-03-08 9:35 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-08 9:35 [git.ipfire.org] IPFire 3.x development tree branch, master, updated. 424b6970b4e4951e2202a7b5e9609c091e65cacb Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox