[arch-commits] Commit in sssd/repos/community-x86_64 (PKGBUILD PKGBUILD)
Massimiliano Torromeo
mtorromeo at archlinux.org
Wed Aug 15 09:57:26 UTC 2018
Date: Wednesday, August 15, 2018 @ 09:57:25
Author: mtorromeo
Revision: 371709
archrelease: copy trunk to community-x86_64
Added:
sssd/repos/community-x86_64/PKGBUILD
(from rev 371708, sssd/trunk/PKGBUILD)
Deleted:
sssd/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 172 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 85 insertions(+), 87 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2018-08-15 09:57:09 UTC (rev 371708)
+++ PKGBUILD 2018-08-15 09:57:25 UTC (rev 371709)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
-# Maintainer: Mantas M. <grawity at gmail.com>
-
-pkgname=sssd
-pkgver=1.16.2
-pkgrel=2
-pkgdesc="System Security Services Daemon"
-arch=('x86_64')
-url="https://pagure.io/SSSD/sssd"
-license=('GPL3')
-depends=(
- 'bind' # for nsupdate
- 'c-ares'
- 'cyrus-sasl-gssapi'
- 'ding-libs'
- 'libnl'
- 'libunistring'
- 'nss'
- 'smbclient' # for libndr-nbt
- 'nfsidmap'
- 'http-parser'
- 'jansson'
- 'curl'
-)
-makedepends=(
- 'docbook-xsl'
- 'doxygen'
- 'python'
- 'python2'
- 'samba' # for libndr-nbt headers
- 'systemd'
-)
-source=("https://releases.pagure.org/SSSD/$pkgname/$pkgname-$pkgver.tar.gz")
-sha512sums=('de029e60c509d1ca9d716074c6c30bc469793440ad11452be6756df110911772d3d9d6bf555acb65f510957d6b8a265f0accc0940622101fa9cf809ac9c6d999')
-
-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
Copied: sssd/repos/community-x86_64/PKGBUILD (from rev 371708, sssd/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2018-08-15 09:57:25 UTC (rev 371709)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
+# Maintainer: Mantas M. <grawity at gmail.com>
+
+pkgname=sssd
+pkgver=2.0.0
+pkgrel=1
+pkgdesc="System Security Services Daemon"
+arch=('x86_64')
+url="https://pagure.io/SSSD/sssd"
+license=('GPL3')
+depends=(
+ 'bind' # for nsupdate
+ 'c-ares'
+ 'cyrus-sasl-gssapi'
+ 'ding-libs'
+ 'libnl'
+ 'libunistring'
+ 'nss'
+ 'smbclient' # for libndr-nbt
+ 'nfsidmap'
+ 'jansson'
+)
+makedepends=(
+ 'docbook-xsl'
+ 'doxygen'
+ 'python'
+ 'python2'
+ 'samba' # for libndr-nbt headers
+ 'systemd'
+)
+source=("https://releases.pagure.org/SSSD/$pkgname/$pkgname-$pkgver.tar.gz")
+sha512sums=('affeb0799d8a4fcbcb4b2ed7925b397ae6ba0e2982c5603e98636b765d3820a3b29ac58b0771e5cc00c752512f091ae4fd271d441544147a0570d3c14b535701')
+
+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
More information about the arch-commits
mailing list