[arch-commits] Commit in pam/repos (7 files)

Tobias Powalowski tpowa at archlinux.org
Tue Jun 26 20:11:25 UTC 2018


    Date: Tuesday, June 26, 2018 @ 20:11:24
  Author: tpowa
Revision: 327652

db-move: moved pam from [testing] to [core] (x86_64)

Added:
  pam/repos/core-x86_64/PKGBUILD
    (from rev 327651, pam/repos/testing-x86_64/PKGBUILD)
  pam/repos/core-x86_64/other
    (from rev 327651, pam/repos/testing-x86_64/other)
  pam/repos/core-x86_64/pam_unix2-glibc216.patch
    (from rev 327651, pam/repos/testing-x86_64/pam_unix2-glibc216.patch)
Deleted:
  pam/repos/core-x86_64/PKGBUILD
  pam/repos/core-x86_64/other
  pam/repos/core-x86_64/pam_unix2-glibc216.patch
  pam/repos/testing-x86_64/

--------------------------------------+
 /PKGBUILD                            |   42 +++++++++++++++++++++++++++++++++
 /other                               |    5 +++
 /pam_unix2-glibc216.patch            |   20 +++++++++++++++
 core-x86_64/PKGBUILD                 |   36 ----------------------------
 core-x86_64/other                    |    5 ---
 core-x86_64/pam_unix2-glibc216.patch |   20 ---------------
 6 files changed, 67 insertions(+), 61 deletions(-)

Deleted: core-x86_64/PKGBUILD
===================================================================
--- core-x86_64/PKGBUILD	2018-06-26 20:11:04 UTC (rev 327651)
+++ core-x86_64/PKGBUILD	2018-06-26 20:11:24 UTC (rev 327652)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
-# Contributor: judd <jvinet at zeroflux.org>
-
-pkgname=pam
-pkgver=1.3.0
-pkgrel=2
-pkgdesc="PAM (Pluggable Authentication Modules) library"
-arch=('x86_64')
-license=('GPL2')
-url="http://linux-pam.org"
-depends=('glibc' 'cracklib' 'libtirpc' 'pambase')
-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=(http://linux-pam.org/library/Linux-PAM-$pkgver.tar.bz2)
-md5sums=('da4b2289b7cfb19583d54e9eaaef1c3a')
-
-options=('!emptydirs')
-
-build() {
-  cd $srcdir/Linux-PAM-$pkgver
-  ./configure --libdir=/usr/lib --sbindir=/usr/bin --disable-db
-  make
-}
-
-package() {
-  cd $srcdir/Linux-PAM-$pkgver
-  make DESTDIR=$pkgdir SCONFIGDIR=/etc/security install
-
-  # set unix_chkpwd uid
-  chmod +s $pkgdir/usr/bin/unix_chkpwd
-
-  # remove doc which is not used anymore
-  # FS #40749
-  rm $pkgdir/usr/share/doc/Linux-PAM/sag-pam_userdb.html
-}

Copied: pam/repos/core-x86_64/PKGBUILD (from rev 327651, pam/repos/testing-x86_64/PKGBUILD)
===================================================================
--- core-x86_64/PKGBUILD	                        (rev 0)
+++ core-x86_64/PKGBUILD	2018-06-26 20:11:24 UTC (rev 327652)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+
+pkgname=pam
+pkgver=1.3.1
+pkgrel=1
+pkgdesc="PAM (Pluggable Authentication Modules) library"
+arch=('x86_64')
+license=('GPL2')
+url="http://linux-pam.org"
+depends=('glibc' 'cracklib' 'libtirpc' 'pambase')
+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
+        https://github.com/linux-pam/linux-pam/releases/download/v$pkgver/Linux-PAM-$pkgver.tar.xz.asc)
+validpgpkeys=(
+        '8C6BFD92EE0F42EDF91A6A736D1A7F052E5924BB' # Thorsten Kukuk
+)
+
+md5sums=('558ff53b0fc0563ca97f79e911822165'
+         'SKIP')
+
+options=('!emptydirs')
+
+build() {
+  cd $srcdir/Linux-PAM-$pkgver
+  ./configure --libdir=/usr/lib --sbindir=/usr/bin --disable-db
+  make
+}
+
+package() {
+  cd $srcdir/Linux-PAM-$pkgver
+  make DESTDIR=$pkgdir SCONFIGDIR=/etc/security install
+
+  # set unix_chkpwd uid
+  chmod +s $pkgdir/usr/bin/unix_chkpwd
+
+  # remove doc which is not used anymore
+  # FS #40749
+  rm $pkgdir/usr/share/doc/Linux-PAM/sag-pam_userdb.html
+}

Deleted: core-x86_64/other
===================================================================
--- core-x86_64/other	2018-06-26 20:11:04 UTC (rev 327651)
+++ core-x86_64/other	2018-06-26 20:11:24 UTC (rev 327652)
@@ -1,5 +0,0 @@
-#%PAM-1.0
-auth		required	pam_unix.so
-account		required	pam_unix.so
-password	required	pam_unix.so
-session		required	pam_unix.so

Copied: pam/repos/core-x86_64/other (from rev 327651, pam/repos/testing-x86_64/other)
===================================================================
--- core-x86_64/other	                        (rev 0)
+++ core-x86_64/other	2018-06-26 20:11:24 UTC (rev 327652)
@@ -0,0 +1,5 @@
+#%PAM-1.0
+auth		required	pam_unix.so
+account		required	pam_unix.so
+password	required	pam_unix.so
+session		required	pam_unix.so

Deleted: core-x86_64/pam_unix2-glibc216.patch
===================================================================
--- core-x86_64/pam_unix2-glibc216.patch	2018-06-26 20:11:04 UTC (rev 327651)
+++ core-x86_64/pam_unix2-glibc216.patch	2018-06-26 20:11:24 UTC (rev 327652)
@@ -1,20 +0,0 @@
-Index: pam_unix2-2.9.1/src/read-files.c
-===================================================================
---- pam_unix2-2.9.1.orig/src/read-files.c
-+++ pam_unix2-2.9.1/src/read-files.c
-@@ -30,8 +30,14 @@
- #include <errno.h>
- #include <fcntl.h>
- #include <nss.h>
--#include <bits/libc-lock.h>
-+#include <pthread.h>
- #define __libc_lock_t pthread_mutex_t
-+#define __libc_lock_define_initialized(CLASS,NAME) \
-+  CLASS __libc_lock_t NAME = PTHREAD_MUTEX_INITIALIZER;
-+#define __libc_lock_lock(NAME) \
-+  pthread_mutex_lock, (&(NAME))
-+#define __libc_lock_unlock(NAME) \
-+  pthread_mutex_unlock, (&(NAME))
- 
- #include "read-files.h"
- 

Copied: pam/repos/core-x86_64/pam_unix2-glibc216.patch (from rev 327651, pam/repos/testing-x86_64/pam_unix2-glibc216.patch)
===================================================================
--- core-x86_64/pam_unix2-glibc216.patch	                        (rev 0)
+++ core-x86_64/pam_unix2-glibc216.patch	2018-06-26 20:11:24 UTC (rev 327652)
@@ -0,0 +1,20 @@
+Index: pam_unix2-2.9.1/src/read-files.c
+===================================================================
+--- pam_unix2-2.9.1.orig/src/read-files.c
++++ pam_unix2-2.9.1/src/read-files.c
+@@ -30,8 +30,14 @@
+ #include <errno.h>
+ #include <fcntl.h>
+ #include <nss.h>
+-#include <bits/libc-lock.h>
++#include <pthread.h>
+ #define __libc_lock_t pthread_mutex_t
++#define __libc_lock_define_initialized(CLASS,NAME) \
++  CLASS __libc_lock_t NAME = PTHREAD_MUTEX_INITIALIZER;
++#define __libc_lock_lock(NAME) \
++  pthread_mutex_lock, (&(NAME))
++#define __libc_lock_unlock(NAME) \
++  pthread_mutex_unlock, (&(NAME))
+ 
+ #include "read-files.h"
+ 



More information about the arch-commits mailing list