diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2018-10-09 21:24:20 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2018-10-09 21:24:20 -0400 |
commit | 4ef69eaea3821097929e03f0559ad74c90a04ae1 (patch) | |
tree | 94a8eb8ea413b71a2d198fb978b5287f1ec0ea05 | |
parent | 61da553103205ed0ea432def3cdafbe9d09f0ab7 (diff) | |
download | abslibre-4ef69eaea3821097929e03f0559ad74c90a04ae1.tar.gz abslibre-4ef69eaea3821097929e03f0559ad74c90a04ae1.tar.bz2 abslibre-4ef69eaea3821097929e03f0559ad74c90a04ae1.zip |
libre/pam: Add dependency on 'audit'
-rw-r--r-- | libre/pam/PKGBUILD | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/libre/pam/PKGBUILD b/libre/pam/PKGBUILD index 7e1540038..e676c7b51 100644 --- a/libre/pam/PKGBUILD +++ b/libre/pam/PKGBUILD @@ -1,15 +1,26 @@ -# $Id$ -# Maintainer: Tobias Powalowski <tpowa@archlinux.org> -# Contributor: judd <jvinet@zeroflux.org> +# Maintainer: Luke Shumaker <lukeshu@parabola.nu> +# Maintainer (Arch): Tobias Powalowski <tpowa@archlinux.org> +# Contributor (Arch): judd <jvinet@zeroflux.org> + +# Rationale for inclusion in [libre]: +# +# Add `depends+=('audit')` as a temporary work-around for a bug in +# Arch Linux 32's `pam`. +# +# https://labs.parabola.nu/issues/2031 +# https://bugs.archlinux32.org/index.php?do=details&task_id=54 +# +# See also: https://bugs.archlinux.org/task/60365 pkgname=pam pkgver=1.3.1 -pkgrel="1.3" +pkgrel="1.3.par1" pkgdesc="PAM (Pluggable Authentication Modules) library" arch=(i486 i686 pentium3 'x86_64') license=('GPL2') url="http://linux-pam.org" depends=('glibc' 'cracklib' 'libtirpc' 'pambase') +depends+=('audit') makedepends=('flex' 'w3m' 'docbook-xml>=4.4' 'docbook-xsl') backup=(etc/security/{access.conf,group.conf,limits.conf,namespace.conf,namespace.init,pam_env.conf,time.conf} etc/default/passwd etc/environment) source=(https://github.com/linux-pam/linux-pam/releases/download/v$pkgver/Linux-PAM-$pkgver.tar.xz |