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 6d8de48dc362c66728983fbdcf837cade512eb81 (commit) via d544855a885c7f6bfb529cbec055f93eed7e6392 (commit) from c1bf5bac2e923287642e0485c34cd811115047ca (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 6d8de48dc362c66728983fbdcf837cade512eb81 Author: Michael Tremer michael.tremer@ipfire.org Date: Fri Jan 20 17:26:08 2023 +0000
u-boot: Drop package
We won't provide any pre-built u-boot images any more and instead require all ARM systems to support EFI boot.
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit d544855a885c7f6bfb529cbec055f93eed7e6392 Author: Michael Tremer michael.tremer@ipfire.org Date: Fri Jan 20 16:59:06 2023 +0000
cyrus-sasl: Require libxcrypt
Since libcrypt has been removed from glibc, we need to add this extra dependency.
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
-----------------------------------------------------------------------
Summary of changes: cyrus-sasl/cyrus-sasl.nm | 3 +- u-boot/patches/u-boot-fat.patch | 12 ----- u-boot/patches/uboot-omap-fit.patch | 9 ---- u-boot/targets | 7 --- u-boot/u-boot.nm | 94 ------------------------------------- 5 files changed, 2 insertions(+), 123 deletions(-) delete mode 100644 u-boot/patches/u-boot-fat.patch delete mode 100644 u-boot/patches/uboot-omap-fit.patch delete mode 100644 u-boot/targets delete mode 100644 u-boot/u-boot.nm
Difference in files: diff --git a/cyrus-sasl/cyrus-sasl.nm b/cyrus-sasl/cyrus-sasl.nm index 004cf213e..1ede85d0a 100644 --- a/cyrus-sasl/cyrus-sasl.nm +++ b/cyrus-sasl/cyrus-sasl.nm @@ -5,7 +5,7 @@
name = cyrus-sasl version = 2.1.28 -release = 2 +release = 3
groups = System/Libraries url = https://github.com/cyrusimap/cyrus-sasl @@ -24,6 +24,7 @@ build requires automake gdbm-devel + libxcrypt-devel openssl-devel pam-devel end diff --git a/u-boot/patches/u-boot-fat.patch b/u-boot/patches/u-boot-fat.patch deleted file mode 100644 index 1aa90bdb2..000000000 --- a/u-boot/patches/u-boot-fat.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -uNr u-boot-2012.04.01.orig/fs/fat/fat.c u-boot-2012.04.01/fs/fat/fat.c ---- u-boot-2012.04.01.orig/fs/fat/fat.c 2012-04-25 08:22:50.000000000 -0500 -+++ u-boot-2012.04.01/fs/fat/fat.c 2012-06-19 14:06:16.605337811 -0500 -@@ -90,7 +90,7 @@ - /* Check for FAT12/FAT16/FAT32 filesystem */ - if (!memcmp(buffer + DOS_FS_TYPE_OFFSET, "FAT", 3)) - return 0; -- if (!memcmp(buffer + DOS_FS32_TYPE_OFFSET, "FAT32", 5)) -+ if (!memcmp(buffer + DOS_FS32_TYPE_OFFSET, "FAT", 3)) - return 0; - - cur_dev = NULL; diff --git a/u-boot/patches/uboot-omap-fit.patch b/u-boot/patches/uboot-omap-fit.patch deleted file mode 100644 index cdcc79bee..000000000 --- a/u-boot/patches/uboot-omap-fit.patch +++ /dev/null @@ -1,9 +0,0 @@ ---- u-boot-2012.07/include/configs/omap4_common.h.orig 2013-01-24 00:20:40.334731642 -0600 -+++ u-boot-2012.07/include/configs/omap4_common.h 2013-01-24 00:21:08.708953803 -0600 -@@ -280,4 +280,6 @@ - - #define CONFIG_SYS_THUMB_BUILD - -+#define CONFIG_FIT -+ - #endif /* __CONFIG_OMAP4_COMMON_H */ diff --git a/u-boot/targets b/u-boot/targets deleted file mode 100644 index ce81d234b..000000000 --- a/u-boot/targets +++ /dev/null @@ -1,7 +0,0 @@ -# HOST_ARCH platform targets -# -------------------------------------------- -armv5tel dreamplug u-boot.bin u-boot.kwb -armv7hl omap4_panda u-boot.bin u-boot.img -armv7hl wandboard_solo u-boot.imx -armv7hl wandboard_dl u-boot.imx -armv7hl wandboard_quad u-boot.imx diff --git a/u-boot/u-boot.nm b/u-boot/u-boot.nm deleted file mode 100644 index 25be430fb..000000000 --- a/u-boot/u-boot.nm +++ /dev/null @@ -1,94 +0,0 @@ -############################################################################### -# IPFire.org - An Open Source Firewall Solution # -# Copyright (C) - IPFire Development Team info@ipfire.org # -############################################################################### - -name = u-boot -version = 2013.07 -release = 1 -sup_arches = armv5tel armv7hl - -groups = Development/Tools -url = http://www.denx.de/wiki/U-Boot -license = GPLv2+ -summary = U-Boot utilities. - -description - U-Boot is a Boot Loader, i.e. its primary purpose in the shipping - system is to load some operating system. -end - -source_dl = ftp://ftp.denx.de/pub/u-boot/ -sources = %{thisapp}.tar.bz2 - -build - requires - dtc - end - - build - while read arch platform targets; do - # Skip all other architectures. - [ "${arch}" = "%{DISTRO_ARCH}" ] || continue - - make CROSS_COMPILE="" ${platform}_config - make HOSTCC="gcc %{CFLAGS}" CROSS_COMPILE="" all ${targets} - - # install - installdir="%{BUILDROOT}/usr/lib/%{name}/${platform}" - mkdir -pv ${installdir} - - for target in ${targets}; do - install -D -m 644 ${target} ${installdir} - done - if [ -e "MLO" ]; then - install -D -m 644 MLO ${installdir} - fi - for f in spl/*.bin; do - [ -e "${f}" ] || continue - install -D -m 644 ${f} ${installdir} - done - - # Clean out the build environment. - make distclean - done < %{DIR_SOURCE}/targets - - # Build tools. - # Need to create a config because the tools won't build without. - make sheevaplug_config - - make tools HOSTCC="gcc %{CFLAGS}" HOSTSTRIP="/bin/true" CROSS_COMPILE="" - make env HOSTCC="gcc %{CFLAGS}" HOSTSTRIP="/bin/true" - end - - install - # Install tools. - mkdir -pv %{BUILDROOT}/usr/bin %{BUILDROOT}/usr/share/man/man1 - install -p -m 0755 tools/mkimage %{BUILDROOT}/usr/bin - install -p -m 0644 doc/mkimage.1 %{BUILDROOT}/usr/share/man/man1 - install -p -m 0755 tools/env/fw_printenv %{BUILDROOT}/usr/bin - ln -svf fw_printenv %{BUILDROOT}/usr/bin/fw_setenv - end -end - -packages - package %{name} - - package %{name}-tools - summary = U-Boot utilities. - description - This package contains a few U-Boot utilities - mkimage - for creating boot images and fw_printenv/fw_setenv for - manipulating the boot environment variables. - end - - files - /usr/bin - /usr/share/man/man1 - end - end - - package %{name}-debuginfo - template DEBUGINFO - end -end
hooks/post-receive -- IPFire 3.x development tree