[arch-commits] Commit in sssd/repos/community-i686 (PKGBUILD PKGBUILD sssd.service)

Massimiliano Torromeo mtorromeo at archlinux.org
Sun Feb 14 22:31:33 UTC 2016


    Date: Sunday, February 14, 2016 @ 23:31:33
  Author: mtorromeo
Revision: 161562

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

Added:
  sssd/repos/community-i686/PKGBUILD
    (from rev 161561, sssd/trunk/PKGBUILD)
Deleted:
  sssd/repos/community-i686/PKGBUILD
  sssd/repos/community-i686/sssd.service

--------------+
 PKGBUILD     |  171 ++++++++++++++++++++++++++++-----------------------------
 sssd.service |   12 ----
 2 files changed, 84 insertions(+), 99 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2016-02-14 22:23:33 UTC (rev 161561)
+++ PKGBUILD	2016-02-14 22:31:33 UTC (rev 161562)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
-# Maintainer: Mantas M. <grawity at gmail.com>
-
-pkgname=sssd
-pkgver=1.13.3
-pkgrel=1
-pkgdesc="System Security Services Daemon"
-arch=('i686' 'x86_64')
-url="https://fedorahosted.org/sssd/"
-license=('GPL3')
-depends=(
-  'augeas'
-  'bind'          # for nsupdate
-  'c-ares'
-  'cyrus-sasl-gssapi'
-  'ding-libs'
-  'libnl'
-  'libunistring'
-  'nss'
-  'smbclient'     # for libndr-nbt
-  'nfsidmap'
-)
-makedepends=(
-  'docbook-xsl'
-  'doxygen'
-  'python'
-  'python2'
-  'samba'         # for libndr-nbt headers
-)
-source=("https://fedorahosted.org/released/$pkgname/$pkgname-$pkgver.tar.gz"
-        'sssd.service')
-sha1sums=('333bccc6c037f6153dcfea9f7ebfefa9fd853512'
-          '2d10db3d6f54a58bbf8d1f27328e68555256e0ce')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  for f in "${source[@]}"; do
-    if [[ $f == *.patch ]]; then
-      msg2 "Applying $f"
-      patch -p1 < "$srcdir/$f"
-    fi
-  done
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure \
-    --prefix=/usr                                 \
-    --sbindir=/usr/bin                            \
-    --sysconfdir=/etc                             \
-    --localstatedir=/var                          \
-    --libexecdir=/usr/lib/sssd                    \
-    --datadir=/usr/share                          \
-    --enable-pammoddir=/usr/lib/security          \
-    --with-initscript=systemd                     \
-    --with-os=fedora                              \
-    --with-pid-path=/run                          \
-    --with-python2-bindings                       \
-    --with-python3-bindings                       \
-    --with-syslog=journald                        \
-    --without-selinux                             \
-    --without-semanage                            \
-    --with-systemdunitdir=/usr/lib/systemd/system \
-    ;
-  sed -i '/\<HAVE_KRB5_SET_TRACE_CALLBACK\>/d' config.h
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make -j1 DESTDIR="$pkgdir/" install
-  rm -rf "$pkgdir"/etc/rc.d
-  rm -rf "$pkgdir"/lib
-  rm -rf "$pkgdir"/run
-  rm -f "$pkgdir"/usr/lib/ldb/modules/ldb/memberof.la
-  find "$pkgdir"/usr -depth -type d \
-    -exec rmdir --ignore-fail-on-non-empty {} \;
-
-  cd "$srcdir"
-  rm -rf "$pkgdir/etc/systemd" # remove the drop-in
-  install -Dm0644 sssd.service  "$pkgdir"/usr/lib/systemd/system/sssd.service
-
-  sed '1 s/python$/python2/' -i "$pkgdir"/usr/bin/sss_obfuscate
-}
-
-# vim: ts=2:sw=2:et:nowrap

Copied: sssd/repos/community-i686/PKGBUILD (from rev 161561, sssd/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2016-02-14 22:31:33 UTC (rev 161562)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
+# Maintainer: Mantas M. <grawity at gmail.com>
+
+pkgname=sssd
+pkgver=1.13.3
+pkgrel=2
+pkgdesc="System Security Services Daemon"
+arch=('i686' 'x86_64')
+url="https://fedorahosted.org/sssd/"
+license=('GPL3')
+depends=(
+  'augeas'
+  'bind'          # for nsupdate
+  'c-ares'
+  'cyrus-sasl-gssapi'
+  'ding-libs'
+  'libnl'
+  'libunistring'
+  'nss'
+  'smbclient'     # for libndr-nbt
+  'nfsidmap'
+)
+makedepends=(
+  'docbook-xsl'
+  'doxygen'
+  'python'
+  'python2'
+  'samba'         # for libndr-nbt headers
+)
+source=("https://fedorahosted.org/released/$pkgname/$pkgname-$pkgver.tar.gz")
+sha1sums=('333bccc6c037f6153dcfea9f7ebfefa9fd853512')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  for f in "${source[@]}"; do
+    if [[ $f == *.patch ]]; then
+      msg2 "Applying $f"
+      patch -p1 < "$srcdir/$f"
+    fi
+  done
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  ./configure \
+    --prefix=/usr                                 \
+    --sbindir=/usr/bin                            \
+    --sysconfdir=/etc                             \
+    --localstatedir=/var                          \
+    --libexecdir=/usr/lib/sssd                    \
+    --datadir=/usr/share                          \
+    --enable-pammoddir=/usr/lib/security          \
+    --with-initscript=systemd                     \
+    --with-os=fedora                              \
+    --with-pid-path=/run                          \
+    --with-python2-bindings                       \
+    --with-python3-bindings                       \
+    --with-syslog=journald                        \
+    --without-selinux                             \
+    --without-semanage                            \
+    --with-systemdunitdir=/usr/lib/systemd/system \
+    ;
+  sed -i '/\<HAVE_KRB5_SET_TRACE_CALLBACK\>/d' config.h
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make -j1 DESTDIR="$pkgdir/" install
+  rm -rf "$pkgdir"/etc/rc.d
+  rm -rf "$pkgdir"/lib
+  rm -rf "$pkgdir"/run
+  rm -f "$pkgdir"/usr/lib/ldb/modules/ldb/memberof.la
+  find "$pkgdir"/usr -depth -type d \
+    -exec rmdir --ignore-fail-on-non-empty {} \;
+
+  cd "$srcdir"
+  rm -rf "$pkgdir/etc/systemd" # remove the drop-in
+
+  sed '1 s/python$/python2/' -i "$pkgdir"/usr/bin/sss_obfuscate
+}
+
+# vim: ts=2:sw=2:et:nowrap

Deleted: sssd.service
===================================================================
--- sssd.service	2016-02-14 22:23:33 UTC (rev 161561)
+++ sssd.service	2016-02-14 22:31:33 UTC (rev 161562)
@@ -1,12 +0,0 @@
-[Unit]
-Description=System Security Services Daemon
-Documentation=man:sssd(8)
-Before=rpc-idmapd.service
-
-[Service]
-ExecStart=/usr/bin/sssd -D -f
-Type=forking
-PIDFile=/run/sssd.pid
-
-[Install]
-WantedBy=multi-user.target



More information about the arch-commits mailing list