[arch-commits] Commit in sssd/repos (6 files)
Jelle van der Waa
jelle at archlinux.org
Sun Sep 20 12:32:49 UTC 2015
Date: Sunday, September 20, 2015 @ 14:32:49
Author: jelle
Revision: 141264
archrelease: copy trunk to community-staging-i686, community-staging-x86_64
Added:
sssd/repos/community-staging-i686/
sssd/repos/community-staging-i686/PKGBUILD
(from rev 141263, sssd/trunk/PKGBUILD)
sssd/repos/community-staging-i686/sssd.service
(from rev 141263, sssd/trunk/sssd.service)
sssd/repos/community-staging-x86_64/
sssd/repos/community-staging-x86_64/PKGBUILD
(from rev 141263, sssd/trunk/PKGBUILD)
sssd/repos/community-staging-x86_64/sssd.service
(from rev 141263, sssd/trunk/sssd.service)
---------------------------------------+
community-staging-i686/PKGBUILD | 85 ++++++++++++++++++++++++++++++++
community-staging-i686/sssd.service | 12 ++++
community-staging-x86_64/PKGBUILD | 85 ++++++++++++++++++++++++++++++++
community-staging-x86_64/sssd.service | 12 ++++
4 files changed, 194 insertions(+)
Copied: sssd/repos/community-staging-i686/PKGBUILD (from rev 141263, sssd/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-09-20 12:32:49 UTC (rev 141264)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
+# Maintainer: Mantas M. <grawity at gmail.com>
+
+pkgname=sssd
+pkgver=1.13.0
+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"
+ 'sssd.service')
+sha1sums=('f9c57cfb91d8e0e35d565a1d5b165e8f669989d2'
+ '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"
+}
+
+# vim: ts=2:sw=2:et:nowrap
Copied: sssd/repos/community-staging-i686/sssd.service (from rev 141263, sssd/trunk/sssd.service)
===================================================================
--- community-staging-i686/sssd.service (rev 0)
+++ community-staging-i686/sssd.service 2015-09-20 12:32:49 UTC (rev 141264)
@@ -0,0 +1,12 @@
+[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
Copied: sssd/repos/community-staging-x86_64/PKGBUILD (from rev 141263, sssd/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2015-09-20 12:32:49 UTC (rev 141264)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
+# Maintainer: Mantas M. <grawity at gmail.com>
+
+pkgname=sssd
+pkgver=1.13.0
+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"
+ 'sssd.service')
+sha1sums=('f9c57cfb91d8e0e35d565a1d5b165e8f669989d2'
+ '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"
+}
+
+# vim: ts=2:sw=2:et:nowrap
Copied: sssd/repos/community-staging-x86_64/sssd.service (from rev 141263, sssd/trunk/sssd.service)
===================================================================
--- community-staging-x86_64/sssd.service (rev 0)
+++ community-staging-x86_64/sssd.service 2015-09-20 12:32:49 UTC (rev 141264)
@@ -0,0 +1,12 @@
+[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