public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] chkconfig: Update to version 1.30
Date: Thu, 28 Nov 2024 12:49:01 +0100	[thread overview]
Message-ID: <20241128114907.3386894-1-adolf.belka@ipfire.org> (raw)

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

- Update from version 1.5 (2015) to 1.30 (Aug 2024)
- Fedora now have a github site for chkconfig which has had releases since 2023
- Update of rootfile not required
- Changelog
    1.30
	ostree: move admindir to /etc/alternatives.admindir by @vrothberg in #135
    1.29
	Translations update from Fedora Weblate by @weblate in #133
	Avoid possible leaks in readConfig() by @dtardon in #128
	fix issues found by static analyzers by @lnykryn in #125
	Mkosi by @lnykryn in #127
    1.28
	test: return failures from the test suite by @lnykryn in #130
	Prepare for bin-sbin merge by @jamacku in #131
    1.27
	Translations update from Fedora Weblate by @weblate in #124
	Alternatives: Fix issues found by static analyzers by @lnykryn in #126
    1.26
	build(deps): bump actions/checkout from 3 to 4 by @dependabot in #113
	Translations update from Fedora Weblate by @weblate in #114
	build(deps): bump redhat-plumbers-in-action/differential-shellcheck from 4 to 5 by @dependabot in #115
	Fix systemdActive() by @marcosfrm in #117
	build(deps): bump github/codeql-action from 2 to 3 by @dependabot in #119
	build(deps): bump actions/upload-artifact from 3 to 4 by @dependabot in #120
	Translations update from Fedora Weblate by @weblate in #121
	Add support for running using tmt by @jamacku in #123
    1.25
	Translations update from Fedora Weblate by @weblate in #110
	Translations update from Fedora Weblate by @weblate in #111
	alternatives: fix possible buffer overrun by @lnykryn in #112
    1.24
	Revert recent rpmautospec and Packit changes by @jamacku in #107
	Fix way how we generate next version by @jamacku in #108
    1.23
	Remove changelog and update translations by @jamacku in #100
	Translations update from Fedora Weblate by @weblate in #101
	Fix --keep-foreign when the target is missing completely by @lnykryn in #104
	Translations update from Fedora Weblate by @weblate in #103
	Translations update from Fedora Weblate by @weblate in #105
    1.22
	Fedora release process (Packit, rpmautospec) by @jamacku in #91
	releng: Packit remove extra job trigger by @jamacku in #92
	Bump redhat-plumbers-in-action/differential-shellcheck from 3 to 4 by @dependabot in #94
	test: fix ShellCheck error[SC2070] by @jamacku in #95
	Add Locale linter (Weblate) by @jamacku in #98
	Translations update from Fedora Weblate by @weblate in #96
	migrate to SPDX license by @lzaoral in #99

Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 lfs/chkconfig | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/lfs/chkconfig b/lfs/chkconfig
index f602924cf..86a13ef27 100644
--- a/lfs/chkconfig
+++ b/lfs/chkconfig
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2018  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2024  IPFire Team  <info(a)ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,10 +24,10 @@
 
 include Config
 
-VER        = 1.5
+VER        = 1.30
 
 THISAPP    = chkconfig-$(VER)
-DL_FILE    = $(THISAPP).tar.bz2
+DL_FILE    = $(THISAPP).tar.gz
 DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 5a2f9e3bb03a502dc7efa25ab2f2b78835db801af2fd352ba8c993b5d6e9695ea4956124f04214b3cbe406910a61316be5f51862e930de98dcd5ffc0f9d1877f
+$(DL_FILE)_BLAKE2 = ac9164196570fd35ac6ed3167e918ee40f4c4dde8c2ca17d710501d28758be0b43892e6f0e1d0de39cbfa8b81bddb4a48d8cb14f4398ed623092f6c16698ad27
 
 install : $(TARGET)
 
@@ -69,7 +69,7 @@ $(subst %,%_BLAKE2,$(objects)) :
 
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
-	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
+	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
 	cd $(DIR_APP) && make alternatives
 	cd $(DIR_APP) && install -v -m 755 alternatives /usr/sbin
 	ln -svf alternatives /usr/sbin/update-alternatives
-- 
2.47.0


             reply	other threads:[~2024-11-28 11:49 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-28 11:49 Adolf Belka [this message]
2024-11-28 11:49 ` [PATCH] sqlite: Update to version 3470100 Adolf Belka
2024-11-28 11:49 ` [PATCH] usbutils: Update to version 018 Adolf Belka
2024-11-28 11:49 ` [PATCH] utfcpp: Update to version 4.0.6 Adolf Belka
2024-11-28 11:49 ` [PATCH] vim: Update to version 9.1.0886 Adolf Belka
2024-11-28 11:49 ` [PATCH] xfsprogs: Update to version 6.11.0 Adolf Belka
2024-11-28 11:49 ` [PATCH] xz: Update to version 5.6.3 Adolf Belka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20241128114907.3386894-1-adolf.belka@ipfire.org \
    --to=adolf.belka@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox