From patchwork Mon Mar 22 07:30:15 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 3972 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4F3mPG6KfNz40Qq for ; Mon, 22 Mar 2021 07:30:26 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4F3mP94g4Cz5Qf; Mon, 22 Mar 2021 07:30:21 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4F3mP9424hz2ycj; Mon, 22 Mar 2021 07:30:21 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4F3mP80Cvtz2xd1 for ; Mon, 22 Mar 2021 07:30:20 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4F3mP5353rz5QZ; Mon, 22 Mar 2021 07:30:17 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1616398217; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=gg6c0UzjpXW3Z0+I6U5HvyqoNrvg6j/5TB0u+6duDTU=; b=VT6kwnu2kqz2c53fVumfMahZkaxFYjgmaqDzZ9O4T+fSJsiyx1tmpf1y1SNOlDMi7D3X/R xt6l19Iw3QfqN1BA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1616398217; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=gg6c0UzjpXW3Z0+I6U5HvyqoNrvg6j/5TB0u+6duDTU=; b=gEuGtpEsK7H8WkuzzjDZoor8XQlj+m+FuT3kjRuhijOxf1mVEBt66BPUSc/aDgYJF3unOK MJ2fYxdAiJGUdGWvsWATWJU1yJTc2wwDRMjUzuaPLaTf4HlILzLuNWpdC/o+8DesL8RI60 rPnVOZAZTXXYxEmd71JVkdpRyAllIyz99GBlu3/C6K/jIrSJ9QDJU9wYuIfjU2L37eMx/l M/QXOfDJvymwI8aIzf7Ap1b6+AyJXKMFjXUL4lPWK+bra6EOgX9AC6w8Ug4B2zXieMSzF1 ixzBKZq7wBTyVwDgIO/CQvPRRLiV9fCEcOkvEwl/GrYt1K4O8RIgpPLzDbs28A== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] libstatgrab: Update to 0.92 Date: Mon, 22 Mar 2021 08:30:15 +0100 Message-Id: <20210322073015.1725-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - Update from 0.91 to 0.92 - Update of rootfile - Changelog 2019-07-16 Tim Bishop Fix build/install of manpages. This defaults to attempting to install manpages, unless --disable-man is given to stop it. It defaults to not building the manpages, unless it finds docbook2man to build them with. So for users of the release tarball this will install the manual pages from the tarball, unless requested not to. For users of the git repository it will error if they don't have docbook2man, unless they choose to disable manual pages. I think this is reasonable because docbook2man is a required tool for build from source. Files affected: configure.ac docs/libstatgrab/Makefile.am docs/saidar/Makefile.am docs/statgrab/Makefile.am 2019-07-15 Tim Bishop Allow version to be overridden. By default, it still uses the short version of the commit reference. This is most useful for normal CI builds so you can easily see which commit a tarball is made from. But when testing for a release one might want to specify the version explicitly, so this can now be overridden by manually triggering a build and setting LSG_VERSION (eg. 0.92). Files affected: .gitlab-ci.yml Signed-off-by: Adolf Belka --- config/rootfiles/packages/libstatgrab | 2 +- lfs/libstatgrab | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/rootfiles/packages/libstatgrab b/config/rootfiles/packages/libstatgrab index cebfb4afe..8f0b15296 100644 --- a/config/rootfiles/packages/libstatgrab +++ b/config/rootfiles/packages/libstatgrab @@ -7,7 +7,7 @@ usr/bin/statgrab #usr/lib/libstatgrab.la #usr/lib/libstatgrab.so usr/lib/libstatgrab.so.10 -usr/lib/libstatgrab.so.10.0.0 +usr/lib/libstatgrab.so.10.0.1 #usr/lib/pkgconfig/libstatgrab.pc #usr/share/doc/libstatgrab #usr/share/doc/libstatgrab/AUTHORS diff --git a/lfs/libstatgrab b/lfs/libstatgrab index 08ff94935..d21b66160 100644 --- a/lfs/libstatgrab +++ b/lfs/libstatgrab @@ -24,7 +24,7 @@ include Config -VER = 0.91 +VER = 0.92 THISAPP = libstatgrab-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = libstatgrab -PAK_VER = 2 +PAK_VER = 3 DEPS = @@ -44,7 +44,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = b906d312076ca9be3d5188edfe07f496 +$(DL_FILE)_MD5 = 5362b2ddbec54b3901e7d70c22cda249 install : $(TARGET)