From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 15 Oct 2025 17:47:49 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1v93jB-00895Z-08 for lore@lore.pengutronix.de; Wed, 15 Oct 2025 17:47:49 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1v93jA-0002hG-Ra; Wed, 15 Oct 2025 17:47:48 +0200 Received: from dude04.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::ac]) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1v93j2-0002gg-KU; Wed, 15 Oct 2025 17:47:40 +0200 From: =?UTF-8?q?Sven=20P=C3=BCschel?= To: ptxdist@pengutronix.de Date: Wed, 15 Oct 2025 17:47:28 +0200 Message-ID: <20251015154738.3999037-1-s.pueschel@pengutronix.de> X-Mailer: git-send-email 2.47.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH] pam: version bump 1.5.2 -> 1.7.1 X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: =?UTF-8?q?Sven=20P=C3=BCschel?= Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false pam switched over to meson. Therefore adjust the options accordingly. As the release download were only necessary for autoconfig, switch to the automatically generated GitHub release archives. https://github.com/linux-pam/linux-pam/releases/tag/v1.5.3 https://github.com/linux-pam/linux-pam/releases/tag/v1.6.0 https://github.com/linux-pam/linux-pam/releases/tag/v1.6.1 https://github.com/linux-pam/linux-pam/releases/tag/v1.7.0 https://github.com/linux-pam/linux-pam/releases/tag/v1.7.1 Signed-off-by: Sven Püschel --- rules/pam.in | 1 + rules/pam.make | 56 ++++++++++++++++++++++++-------------------------- 2 files changed, 28 insertions(+), 29 deletions(-) diff --git a/rules/pam.in b/rules/pam.in index 4bf4cac10..1c6b9c799 100644 --- a/rules/pam.in +++ b/rules/pam.in @@ -4,6 +4,7 @@ menuconfig PAM tristate prompt "PAM " select DB if PAM_DB + select HOST_MESON select LIBC_CRYPT select LIBTIRPC if PAM_NIS help diff --git a/rules/pam.make b/rules/pam.make index df86c8da0..9c1f94a0b 100644 --- a/rules/pam.make +++ b/rules/pam.make @@ -14,11 +14,11 @@ PACKAGES-$(PTXCONF_PAM) += pam # # Paths and names # -PAM_VERSION := 1.5.2 -PAM_MD5 := 895e8adfa14af334f679bbeb28503f66 +PAM_VERSION := 1.7.1 +PAM_MD5 := dacf0f92ca7f647f9f4e54397b417e0b PAM := Linux-PAM-$(PAM_VERSION) -PAM_SUFFIX := tar.xz -PAM_URL := https://github.com/linux-pam/linux-pam/releases/download/v$(PAM_VERSION)/$(PAM).$(PAM_SUFFIX) +PAM_SUFFIX := tar.gz +PAM_URL := https://github.com/linux-pam/linux-pam/archive/refs/tags/v$(PAM_VERSION).$(PAM_SUFFIX) PAM_SOURCE := $(SRCDIR)/$(PAM).$(PAM_SUFFIX) PAM_DIR := $(BUILDDIR)/$(PAM) PAM_LICENSE := BSD-3-Clause OR (GPL-2.0-or-later AND LGPL-2.0-or-later) @@ -30,31 +30,29 @@ PAM_LICENSE_FILES := \ # Prepare # ---------------------------------------------------------------------------- -PAM_CONF_ENV := \ - $(CROSS_ENV) \ - ac_cv_lib_nsl_yp_match=no - -# -# autoconf -# -PAM_CONF_TOOL := autoconf +PAM_CONF_TOOL := meson PAM_CONF_OPT := \ - $(CROSS_AUTOCONF_USR) \ - $(GLOBAL_LARGE_FILE_OPTION) \ - --disable-Werror \ - --disable-doc \ - --disable-lckpwdf \ - --disable-audit \ - --$(call ptx/endis, PTXCONF_PAM_DB)-db \ - --$(call ptx/endis, PTXCONF_PAM_NIS)-nis \ - --disable-usergroups \ - --disable-selinux \ - --disable-econf \ - --disable-openssl \ - --disable-regenerate-docu \ - --disable-nls \ - --disable-rpath \ - --enable-unix + $(CROSS_MESON_USR) \ + -Di18n=disabled \ + -Ddocs=disabled \ + -Daudit=disabled \ + -Deconf=disabled \ + -Dlogind=disabled \ + -Delogind=disabled \ + -Dopenssl=disabled \ + -Dselinux=disabled \ + -Dnis=$(call ptx/endis, PTXCONF_PAM_NIS)d \ + -Dexamples=false \ + -Dlckpwdf=false \ + -Dpam-debug=false \ + -Dpamlocking=false \ + -Dread-both-confs=false \ + -Dusergroups=false \ + -Dxtests=false \ + -Duidmin=1000 \ + -Dpam_userdb=$(call ptx/endis, PTXCONF_PAM_DB)d \ + -Dpam_lastlog=disabled \ + -Dpam_unix=enabled # ---------------------------------------------------------------------------- # Target-Install @@ -84,7 +82,7 @@ $(STATEDIR)/pam.targetinstall: @$(call install_alternative, pam, 0, 0, 0644, /etc/security/pam_env.conf) @$(call install_alternative, pam, 0, 0, 0644, /etc/security/time.conf) - @$(call install_alternative, pam, 0, 0, 0755, /sbin/mkhomedir_helper) + @$(call install_alternative, pam, 0, 0, 0755, /usr/sbin/mkhomedir_helper) @$(call install_finish, pam) -- 2.47.3