[arch-commits] Commit in sudo/repos (10 files)

Evangelos Foutras foutrelis at archlinux.org
Sun Mar 22 00:50:41 UTC 2015


    Date: Sunday, March 22, 2015 @ 01:50:41
  Author: foutrelis
Revision: 234453

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  sudo/repos/testing-i686/
  sudo/repos/testing-i686/PKGBUILD
    (from rev 234452, sudo/trunk/PKGBUILD)
  sudo/repos/testing-i686/sudo.install
    (from rev 234452, sudo/trunk/sudo.install)
  sudo/repos/testing-i686/sudo.pam
    (from rev 234452, sudo/trunk/sudo.pam)
  sudo/repos/testing-i686/sudo.tmpfiles.conf
    (from rev 234452, sudo/trunk/sudo.tmpfiles.conf)
  sudo/repos/testing-x86_64/
  sudo/repos/testing-x86_64/PKGBUILD
    (from rev 234452, sudo/trunk/PKGBUILD)
  sudo/repos/testing-x86_64/sudo.install
    (from rev 234452, sudo/trunk/sudo.install)
  sudo/repos/testing-x86_64/sudo.pam
    (from rev 234452, sudo/trunk/sudo.pam)
  sudo/repos/testing-x86_64/sudo.tmpfiles.conf
    (from rev 234452, sudo/trunk/sudo.tmpfiles.conf)

-----------------------------------+
 testing-i686/PKGBUILD             |   68 ++++++++++++++++++++++++++++++++++++
 testing-i686/sudo.install         |   19 ++++++++++
 testing-i686/sudo.pam             |    4 ++
 testing-i686/sudo.tmpfiles.conf   |    2 +
 testing-x86_64/PKGBUILD           |   68 ++++++++++++++++++++++++++++++++++++
 testing-x86_64/sudo.install       |   19 ++++++++++
 testing-x86_64/sudo.pam           |    4 ++
 testing-x86_64/sudo.tmpfiles.conf |    2 +
 8 files changed, 186 insertions(+)

Copied: sudo/repos/testing-i686/PKGBUILD (from rev 234452, sudo/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2015-03-22 00:50:41 UTC (rev 234453)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Evangelos Foutras <evangelos at foutrelis.com>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
+
+pkgname=sudo
+_sudover=1.8.13
+pkgver=${_sudover/p/.p}
+pkgrel=1
+pkgdesc="Give certain users the ability to run some commands as root"
+arch=('i686' 'x86_64')
+url="http://www.sudo.ws/sudo/"
+license=('custom')
+groups=('base-devel')
+depends=('glibc' 'pam' 'libldap')
+backup=('etc/sudoers' 'etc/pam.d/sudo')
+install=$pkgname.install
+source=(http://www.sudo.ws/sudo/dist/$pkgname-$_sudover.tar.gz{,.sig}
+        sudo.tmpfiles.conf
+        sudo.pam)
+sha256sums=('e374e5edf2c11c00d6916a9f51cb0ad15e51c7b028370fa15169b07e61e05a25'
+            'SKIP'
+            'c1de59f1895373ecb39451372abf9a852518ed6eb3401da864e76a1baf2f20ce'
+            'd1738818070684a5d2c9b26224906aad69a4fea77aabd960fc2675aee2df1fa2')
+validpgpkeys=('CCB24BE9E9481B15D34159535A89DFA27EE470C4')
+
+build() {
+  cd "$srcdir/$pkgname-$_sudover"
+
+  ./configure \
+    --prefix=/usr \
+    --sbindir=/usr/bin \
+    --libexecdir=/usr/lib \
+    --with-rundir=/run/sudo \
+    --with-vardir=/var/db/sudo \
+    --with-logfac=auth \
+    --with-pam \
+    --with-ldap \
+    --with-ldap-conf-file=/etc/openldap/ldap.conf \
+    --with-env-editor \
+    --with-passprompt="[sudo] password for %p: " \
+    --with-all-insults
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-$_sudover"
+  make check
+}
+
+package() {
+  cd "$srcdir/$pkgname-$_sudover"
+  make DESTDIR="$pkgdir" install
+
+  # Remove /run/sudo directory from the package; we create it using tmpfiles.d
+  rmdir "$pkgdir/run/sudo"
+  rmdir "$pkgdir/run"
+
+  # http://bugzilla.sudo.ws/show_bug.cgi?id=689
+  install -Dm644 "$srcdir/sudo.tmpfiles.conf" \
+    "$pkgdir/usr/lib/tmpfiles.d/sudo.conf"
+
+  install -Dm644 "$srcdir/sudo.pam" "$pkgdir/etc/pam.d/sudo"
+
+  install -Dm644 doc/LICENSE "$pkgdir/usr/share/licenses/sudo/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: sudo/repos/testing-i686/sudo.install (from rev 234452, sudo/trunk/sudo.install)
===================================================================
--- testing-i686/sudo.install	                        (rev 0)
+++ testing-i686/sudo.install	2015-03-22 00:50:41 UTC (rev 234453)
@@ -0,0 +1,19 @@
+post_install() {
+  if type -P systemd-tmpfiles >/dev/null; then
+    systemd-tmpfiles --create sudo.conf
+  fi
+}
+
+pre_upgrade() {
+  # Permissions of /var/db/sudo were changed from 0700 to 0711 in sudo 1.8.10
+  # http://www.sudo.ws/repos/sudo/rev/5c38d77a2d0c
+  if (($(vercmp $2 1.8.10-1) < 0)); then
+    chmod 0711 var/db/sudo
+  fi
+}
+
+post_upgrade() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: sudo/repos/testing-i686/sudo.pam (from rev 234452, sudo/trunk/sudo.pam)
===================================================================
--- testing-i686/sudo.pam	                        (rev 0)
+++ testing-i686/sudo.pam	2015-03-22 00:50:41 UTC (rev 234453)
@@ -0,0 +1,4 @@
+#%PAM-1.0
+auth		include		system-auth
+account		include		system-auth
+session		include		system-auth

Copied: sudo/repos/testing-i686/sudo.tmpfiles.conf (from rev 234452, sudo/trunk/sudo.tmpfiles.conf)
===================================================================
--- testing-i686/sudo.tmpfiles.conf	                        (rev 0)
+++ testing-i686/sudo.tmpfiles.conf	2015-03-22 00:50:41 UTC (rev 234453)
@@ -0,0 +1,2 @@
+d /run/sudo 0711 root root
+d /run/sudo/ts 0700 root root

Copied: sudo/repos/testing-x86_64/PKGBUILD (from rev 234452, sudo/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2015-03-22 00:50:41 UTC (rev 234453)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Evangelos Foutras <evangelos at foutrelis.com>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
+
+pkgname=sudo
+_sudover=1.8.13
+pkgver=${_sudover/p/.p}
+pkgrel=1
+pkgdesc="Give certain users the ability to run some commands as root"
+arch=('i686' 'x86_64')
+url="http://www.sudo.ws/sudo/"
+license=('custom')
+groups=('base-devel')
+depends=('glibc' 'pam' 'libldap')
+backup=('etc/sudoers' 'etc/pam.d/sudo')
+install=$pkgname.install
+source=(http://www.sudo.ws/sudo/dist/$pkgname-$_sudover.tar.gz{,.sig}
+        sudo.tmpfiles.conf
+        sudo.pam)
+sha256sums=('e374e5edf2c11c00d6916a9f51cb0ad15e51c7b028370fa15169b07e61e05a25'
+            'SKIP'
+            'c1de59f1895373ecb39451372abf9a852518ed6eb3401da864e76a1baf2f20ce'
+            'd1738818070684a5d2c9b26224906aad69a4fea77aabd960fc2675aee2df1fa2')
+validpgpkeys=('CCB24BE9E9481B15D34159535A89DFA27EE470C4')
+
+build() {
+  cd "$srcdir/$pkgname-$_sudover"
+
+  ./configure \
+    --prefix=/usr \
+    --sbindir=/usr/bin \
+    --libexecdir=/usr/lib \
+    --with-rundir=/run/sudo \
+    --with-vardir=/var/db/sudo \
+    --with-logfac=auth \
+    --with-pam \
+    --with-ldap \
+    --with-ldap-conf-file=/etc/openldap/ldap.conf \
+    --with-env-editor \
+    --with-passprompt="[sudo] password for %p: " \
+    --with-all-insults
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-$_sudover"
+  make check
+}
+
+package() {
+  cd "$srcdir/$pkgname-$_sudover"
+  make DESTDIR="$pkgdir" install
+
+  # Remove /run/sudo directory from the package; we create it using tmpfiles.d
+  rmdir "$pkgdir/run/sudo"
+  rmdir "$pkgdir/run"
+
+  # http://bugzilla.sudo.ws/show_bug.cgi?id=689
+  install -Dm644 "$srcdir/sudo.tmpfiles.conf" \
+    "$pkgdir/usr/lib/tmpfiles.d/sudo.conf"
+
+  install -Dm644 "$srcdir/sudo.pam" "$pkgdir/etc/pam.d/sudo"
+
+  install -Dm644 doc/LICENSE "$pkgdir/usr/share/licenses/sudo/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: sudo/repos/testing-x86_64/sudo.install (from rev 234452, sudo/trunk/sudo.install)
===================================================================
--- testing-x86_64/sudo.install	                        (rev 0)
+++ testing-x86_64/sudo.install	2015-03-22 00:50:41 UTC (rev 234453)
@@ -0,0 +1,19 @@
+post_install() {
+  if type -P systemd-tmpfiles >/dev/null; then
+    systemd-tmpfiles --create sudo.conf
+  fi
+}
+
+pre_upgrade() {
+  # Permissions of /var/db/sudo were changed from 0700 to 0711 in sudo 1.8.10
+  # http://www.sudo.ws/repos/sudo/rev/5c38d77a2d0c
+  if (($(vercmp $2 1.8.10-1) < 0)); then
+    chmod 0711 var/db/sudo
+  fi
+}
+
+post_upgrade() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: sudo/repos/testing-x86_64/sudo.pam (from rev 234452, sudo/trunk/sudo.pam)
===================================================================
--- testing-x86_64/sudo.pam	                        (rev 0)
+++ testing-x86_64/sudo.pam	2015-03-22 00:50:41 UTC (rev 234453)
@@ -0,0 +1,4 @@
+#%PAM-1.0
+auth		include		system-auth
+account		include		system-auth
+session		include		system-auth

Copied: sudo/repos/testing-x86_64/sudo.tmpfiles.conf (from rev 234452, sudo/trunk/sudo.tmpfiles.conf)
===================================================================
--- testing-x86_64/sudo.tmpfiles.conf	                        (rev 0)
+++ testing-x86_64/sudo.tmpfiles.conf	2015-03-22 00:50:41 UTC (rev 234453)
@@ -0,0 +1,2 @@
+d /run/sudo 0711 root root
+d /run/sudo/ts 0700 root root



More information about the arch-commits mailing list