From patchwork Wed Jun 5 17:16:58 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Fischer X-Patchwork-Id: 2281 Return-Path: Received: from mail01.ipfire.org (mail01.i.ipfire.org [172.28.1.200]) (using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail01.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by web07.i.ipfire.org (Postfix) with ESMTPS id 77EE1888937 for ; Wed, 5 Jun 2019 08:17:06 +0100 (BST) Received: from mail01.i.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id 45Jg8d52RVz5McLt; Wed, 5 Jun 2019 08:17:05 +0100 (BST) Received: from Devel.localdomain (p57B19E92.dip0.t-ipconnect.de [87.177.158.146]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mail01.ipfire.org (Postfix) with ESMTPSA id 45Jg8Z35v1z5McLh for ; Wed, 5 Jun 2019 08:17:02 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=201904rsa; t=1559719022; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=bodzyCagFdice7tX4l8T3ZzYDo/KWUNp7pJHJEv7MWY=; b=KczpuLkKCuPy97U1/TnZQl6WFUezTkrAAQqbGf/Q9aV44f/aNNRih4L2ChzIePNQxNki5Y fOx/czGkmLwuyfnbWse5sTTITIi8RuWNeleHV8xcQsnv0aSsCBXTuTqNmCKXijilepxn9M gr52oKbtPybG1qjndxCT9K23TXV5By3/Lx5nfReTkodBxtOy55nkcv6ENo7ZVsfT4UHz0f 8PFyWly6caNe+RJQ6pUX+VnjPXrBeI5rLyWroBYGslrUeIXY3tiln2M8fZA23I4eLD4745 ZhFqH36pgMwWA1AA+96AXS7Nyw79Wc0zF1/f9BC5ard9XCpYRJS/ywrA3F+ifg== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=201904ed25519; t=1559719022; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=bodzyCagFdice7tX4l8T3ZzYDo/KWUNp7pJHJEv7MWY=; b=joSyy9EEU6Bv6Ha3VUGAyQzkIOemN6gUQAqgx8D12KdFHLsIiGMsfNxndu/7pvfxQgS0hk ODwWIPsXrwRv5LDg== From: Matthias Fischer To: development@lists.ipfire.org Subject: [PATCH] linux-pam: Update to 1.3.1 Date: Wed, 5 Jun 2019 09:16:58 +0200 Message-Id: <20190605071658.1734-1-matthias.fischer@ipfire.org> X-Mailer: git-send-email 2.18.0 Authentication-Results: mail01.ipfire.org; auth=pass smtp.auth=mfischer smtp.mailfrom=matthias.fischer@ipfire.org X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.15 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" For details see: https://github.com/linux-pam/linux-pam/releases Signed-off-by: Matthias Fischer --- lfs/pam | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/lfs/pam b/lfs/pam index 2d7b319e3..d5ce5ef69 100644 --- a/lfs/pam +++ b/lfs/pam @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2018 IPFire Team # +# Copyright (C) 2007-2019 IPFire Team # # # # 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.3.0 +VER = 1.3.1 THISAPP = Linux-PAM-$(VER) -DL_FILE = $(THISAPP).tar.gz +DL_FILE = $(THISAPP).tar.xz 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)_MD5 = 642c994edb9cf39b74cb1bca0649613b +$(DL_FILE)_MD5 = 558ff53b0fc0563ca97f79e911822165 install : $(TARGET) @@ -72,10 +72,12 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) $(UPDATE_AUTOMAKE) cd $(DIR_APP) && ./configure --libdir=/usr/lib \ - --sbindir=/lib/security \ - --enable-securedir=/lib/security \ - --enable-docdir=/usr/share/doc/Linux-PAM-$(VER) \ - --enable-read-both-confs --disable-nls + --sbindir=/lib/security \ + --enable-securedir=/lib/security \ + --enable-docdir=/usr/share/doc/Linux-PAM-$(VER) \ + --enable-read-both-confs \ + --disable-nls + cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install