[arch-commits] Commit in samba/repos (12 files)

Dave Reisner dreisner at archlinux.org
Sat Apr 28 21:41:15 UTC 2012


    Date: Saturday, April 28, 2012 @ 17:41:15
  Author: dreisner
Revision: 157516

db-move: moved samba from [staging] to [testing] (x86_64)

Added:
  samba/repos/testing-x86_64/
  samba/repos/testing-x86_64/PKGBUILD
    (from rev 157502, samba/repos/staging-x86_64/PKGBUILD)
  samba/repos/testing-x86_64/nmbd.service
    (from rev 157502, samba/repos/staging-x86_64/nmbd.service)
  samba/repos/testing-x86_64/samba
    (from rev 157502, samba/repos/staging-x86_64/samba)
  samba/repos/testing-x86_64/samba.conf.d
    (from rev 157502, samba/repos/staging-x86_64/samba.conf.d)
  samba/repos/testing-x86_64/samba.logrotate
    (from rev 157502, samba/repos/staging-x86_64/samba.logrotate)
  samba/repos/testing-x86_64/samba.pam
    (from rev 157502, samba/repos/staging-x86_64/samba.pam)
  samba/repos/testing-x86_64/smbd.conf
    (from rev 157502, samba/repos/staging-x86_64/smbd.conf)
  samba/repos/testing-x86_64/smbd.service
    (from rev 157502, samba/repos/staging-x86_64/smbd.service)
  samba/repos/testing-x86_64/swat.xinetd
    (from rev 157502, samba/repos/staging-x86_64/swat.xinetd)
  samba/repos/testing-x86_64/winbindd.service
    (from rev 157502, samba/repos/staging-x86_64/winbindd.service)
Deleted:
  samba/repos/staging-x86_64/

------------------+
 PKGBUILD         |  166 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 nmbd.service     |    8 ++
 samba            |   57 ++++++++++++++++++
 samba.conf.d     |    7 ++
 samba.logrotate  |    9 ++
 samba.pam        |    3 
 smbd.conf        |    1 
 smbd.service     |    9 ++
 swat.xinetd      |   10 +++
 winbindd.service |    9 ++
 10 files changed, 279 insertions(+)

Copied: samba/repos/testing-x86_64/PKGBUILD (from rev 157502, samba/repos/staging-x86_64/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2012-04-28 21:41:15 UTC (rev 157516)
@@ -0,0 +1,166 @@
+# $Id$
+# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+pkgbase=samba
+pkgname=('libwbclient' 'smbclient' 'samba')
+pkgver=3.6.4
+# We use the 'A' to fake out pacman's version comparators.  Samba chooses
+# to append 'a','b',etc to their subsequent releases, which pamcan
+# misconstrues as alpha, beta, etc.  Bad samba!
+_realver=3.6.4
+pkgrel=3
+arch=(i686 x86_64)
+url="http://www.samba.org"
+license=('GPL3')
+makedepends=('db' 'popt' 'libcups' 'acl' 'libldap' 'libcap' 'krb5' 'pam' 'gamin' 'gnutls>=2.4.1' 'talloc' 'tdb')
+source=(http://us1.samba.org/samba/ftp/stable/${pkgbase}-${_realver}.tar.gz
+        samba samba.logrotate
+        swat.xinetd
+        samba.pam
+        samba.conf.d
+        smbd.service
+        nmbd.service
+        winbindd.service
+        smbd.conf)
+### UNINSTALL dmapi package before building!!!
+
+build() {
+  cd ${srcdir}/${pkgbase}-${_realver}/source3
+  ./configure --prefix=/usr \
+              --libdir=/usr/lib/ \
+              --localstatedir=/var \
+              --with-configdir=/etc/samba \
+              --with-lockdir=/var/cache/samba \
+              --with-piddir=/var/run/samba \
+              --with-fhs \
+              --with-pam \
+              --with-pam_smbpass \
+              --with-pammodulesdir=/usr/lib/security \
+              --with-dnsupdate \
+              --with-automount \
+              --with-quotas \
+              --with-ads \
+              --with-acl-support \
+              --with-libsmbclient \
+              --with-syslog \
+              --enable-external-libtalloc \
+              --disable-dnssd \
+              --disable-avahi \
+              --with-shared-modules=idmap_ad,idmap_adex,idmap_rid,idmap_hash,idmap_tdb2 \
+              --enable-external-libtdb
+  make
+}
+
+package_libwbclient () {
+pkgdesc="Samba winbind client library"
+depends=('glibc')
+  cd ${srcdir}/${pkgbase}-${_realver}/source3
+  mkdir -p ${pkgdir}/usr/lib  
+  for i in libwbclient*; do
+      cp  -a bin/${i}*.so* ${pkgdir}/usr/lib/
+  done
+}
+
+package_smbclient () {
+pkgdesc="Tools to access a server's filespace and printers via SMB"
+depends=('readline' 'popt' 'libldap' 'cifs-utils' 'libcap' 'krb5' 'db' 'e2fsprogs' 'tdb' 'talloc' 'libwbclient')
+  cd ${srcdir}/${pkgbase}-${_realver}/source3
+  mkdir -p ${pkgdir}/usr/bin ${pkgdir}/usr/lib
+  install -m755 bin/{smbclient,rpcclient,smbspool,smbtree,smbcacls,smbcquotas,smbget,net,nmblookup} ${pkgdir}/usr/bin/
+  for i in libnetapi* libsmbclient*;do
+      cp  -a bin/${i}*.so* ${pkgdir}/usr/lib/
+  done
+  install -m755 script/smbtar ${pkgdir}/usr/bin/
+  mkdir -p ${pkgdir}/usr/lib/cups/backend
+  ln -sf /usr/bin/smbspool ${pkgdir}/usr/lib/cups/backend/smb
+  mkdir -p ${pkgdir}/usr/include
+  install -m644 include/libsmbclient.h ${pkgdir}/usr/include/
+  install -m644 lib/netapi/netapi.h ${pkgdir}/usr/include/
+  mkdir -p ${pkgdir}/usr/share/man/man{1,7}
+  for man in rpcclient smbcacls smbclient smbcquotas smbget \
+      smbtree smbtar nmblookup; do
+      install -m644 ../docs/manpages/${man}.1 ${pkgdir}/usr/share/man/man1/
+  done
+  install -m644 ../docs/manpages/libsmbclient.7 ${pkgdir}/usr/share/man/man7/
+}
+
+package_samba () {
+pkgdesc="Tools to access a server's filespace and printers via SMB"
+backup=(etc/logrotate.d/samba
+        etc/pam.d/samba
+        etc/samba/smb.conf
+        etc/xinetd.d/swat
+        etc/conf.d/samba)
+depends=('db' 'popt' 'libcups' 'acl' 'libldap' "smbclient>=$pkgver" 'libcap' 'krb5' 'pam' 'gamin' 'gnutls' 'e2fsprogs' 'tdb' 'talloc')
+  cd ${srcdir}/samba-${_realver}/source3
+  mkdir -p ${pkgdir}/etc/samba/private
+  chmod 700 ${pkgdir}/etc/samba/private
+  make DESTDIR=${pkgdir} install
+  chmod 644 ${pkgdir}/usr/include/*.h
+  rm -rf ${pkgdir}/usr/var
+  rm -rf ${pkgdir}/var/run/samba
+  (cd script; cp installbin.sh i; cat i | sed 's/\/sbin\///' > installbin.sh)
+  install -D -m755 ../../samba ${pkgdir}/etc/rc.d/samba
+  install -D -m644 ../../samba.conf.d ${pkgdir}/etc/conf.d/samba
+  mkdir -p ${pkgdir}/etc/samba
+  cat ../examples/smb.conf.default | \
+    sed 's|log file = .*$|log file = /var/log/samba/log.%m|g' >${pkgdir}/etc/samba/smb.conf.default
+  install -D -m644 ../../samba.logrotate ${pkgdir}/etc/logrotate.d/samba
+  install -D -m644 ../../swat.xinetd ${pkgdir}/etc/xinetd.d/swat
+  install -D -m644 ../../samba.pam ${pkgdir}/etc/pam.d/samba
+  # spool directory
+  install -d -m1777 ${pkgdir}/var/spool/samba
+  sed -i 's|/usr/spool/samba|/var/spool/samba|g' ${pkgdir}/etc/samba/smb.conf.default
+  # fix logrotate
+  sed -i -e 's|log.%m|%m.log|g' ${pkgdir}/etc/samba/smb.conf.default
+  # nsswitch libraries
+  install -D -m755 ${srcdir}/samba-${_realver}/nsswitch/libnss_wins.so ${pkgdir}/lib/libnss_wins.so
+  ln -s libnss_wins.so ${pkgdir}/lib/libnss_wins.so.2
+  install -D -m755 ${srcdir}/samba-${_realver}/nsswitch/libnss_winbind.so ${pkgdir}/lib/libnss_winbind.so
+  ln -s libnss_winbind.so ${pkgdir}/lib/libnss_winbind.so.2
+  # winbind krb5 locator
+  mkdir -p ${pkgdir}/usr/lib/krb5/plugins/libkrb5
+  install -d -m 0755 ${pkgdir}/usr/lib/krb5/plugins/libkrb5
+  install -m 755 bin/winbind_krb5_locator.so ${pkgdir}/usr/lib/krb5/plugins/libkrb5/winbind_krb5_locator.so
+  # remove conflict files of smbclient
+  for man in libsmbclient smbspool \
+      mount.cifs net cifs.upcall; do
+      rm -f ${pkgdir}/usr/share/man/man8/${man}.8
+  done
+  for i in libnetapi* libwbclient* libsmbclient* winbind_krb5*;do
+      rm -f ${pkgdir}/usr/lib/$i
+  done
+  for bin in net \
+      nmblookup rpcclient smbcacls smbclient \
+      smbcquotas smbget smbspool smbtar smbtree; do
+      rm -f ${pkgdir}/usr/bin/$bin
+  done
+  rm -f ${pkgdir}/usr/sbin/cifs.upcall
+  rm -f ${pkgdir}/usr/include/netapi.h
+  for man in rpcclient smbcacls smbclient smbcquotas \
+      smbtree smbtar nmblookup smbget; do
+      rm -f ${pkgdir}/usr/share/man/man1/${man}.1
+  done
+  for man in tdbbackup tdbdump tdbtool; do
+      rm -f ${pkgdir}/usr/share/man/man8/${man}.8
+  done
+  rm -f ${pkgdir}/usr/share/man/man7/libsmbclient.7
+  rm -f ${pkgdir}/usr/include/libsmbclient.h
+  # copy ldap example
+  install -D -m644 ${srcdir}/samba-${_realver}/examples/LDAP/samba.schema ${pkgdir}/usr/share/doc/samba/examples/LDAP/samba.schema
+  # install systemd files
+  for i in smbd nmbd winbindd; do
+  install -D -m644 ${srcdir}/$i.service ${pkgdir}/usr/lib/systemd/system/$i.service
+  done
+  install -D -m644 ${srcdir}/smbd.conf ${pkgdir}/usr/lib/tmpfiles.d/samba.conf 
+}
+md5sums=('d8e070e2a3b12f202f347e4427469bc2'
+         'dfc6f9018c556b9783c7140de183727f'
+         '5697da77590ec092cc8a883bae06093c'
+         'a4bbfa39fee95bba2e7ad6b535fae7e6'
+         '96f82c38f3f540b53f3e5144900acf17'
+         'f2f2e348acd1ccb566e95fa8a561b828'
+         '389cc4fa3b459360feaa1b3d93274693'
+         'ea6a1251be979cb30c6098a28b270d2d'
+         '455f106ce7a4f983975b3a686eaa85e5'
+         '6956c4f9989bec8f313de7d9343b6ba1')

Copied: samba/repos/testing-x86_64/nmbd.service (from rev 157502, samba/repos/staging-x86_64/nmbd.service)
===================================================================
--- testing-x86_64/nmbd.service	                        (rev 0)
+++ testing-x86_64/nmbd.service	2012-04-28 21:41:15 UTC (rev 157516)
@@ -0,0 +1,8 @@
+[Unit]
+Description=Samba NetBIOS name server
+
+[Service]
+ExecStart=/usr/sbin/nmbd -F
+
+[Install]
+WantedBy=multi-user.target

Copied: samba/repos/testing-x86_64/samba (from rev 157502, samba/repos/staging-x86_64/samba)
===================================================================
--- testing-x86_64/samba	                        (rev 0)
+++ testing-x86_64/samba	2012-04-28 21:41:15 UTC (rev 157516)
@@ -0,0 +1,57 @@
+#!/bin/bash
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+[ -f /etc/conf.d/samba ] && . /etc/conf.d/samba
+
+[ -z "$SAMBA_DAEMONS" ] && SAMBA_DAEMONS=(smbd nmbd)
+
+case "$1" in
+	start)
+		rc=0
+		stat_busy "Starting Samba Server"
+		if [ ! -x /var/run/samba ] ; then
+			install -m755 -d /var/run/samba
+		fi
+                if [ ! -x /var/log/samba ] ; then
+                        install -m755 -d /var/log/samba
+                fi
+		for d in ${SAMBA_DAEMONS[@]}; do
+			PID=`pidof -o %PPID /usr/sbin/$d`
+			[ -z "$PID" ] && /usr/sbin/$d -D
+			rc=$(($rc+$?))
+		done
+		if [ $rc -gt 0 ]; then
+			stat_fail
+		else
+			add_daemon samba
+			stat_done
+		fi
+	;;
+	stop)
+		rc=0
+		stat_busy "Stopping Samba Server"
+		for d in ${SAMBA_DAEMONS[@]}; do
+			PID=`pidof -o %PPID /usr/sbin/$d`
+			[ -z "$PID" ] || kill $PID &> /dev/null
+			rc=$(($rc+$?))
+		done
+		if [ $rc -gt 0 ]; then
+			stat_fail
+		else
+			rm /var/run/samba/smbd.pid &>/dev/null
+			rm /var/run/samba/nmbd.pid &>/dev/null
+			rm /var/run/samba/winbindd.pid &>/dev/null
+			rm_daemon samba
+			stat_done
+		fi
+	;;
+	restart)
+		$0 stop
+		sleep 1
+		$0 start
+	;;
+	*)
+		echo "usage: $0 {start|stop|restart}"
+esac
+exit 0

Copied: samba/repos/testing-x86_64/samba.conf.d (from rev 157502, samba/repos/staging-x86_64/samba.conf.d)
===================================================================
--- testing-x86_64/samba.conf.d	                        (rev 0)
+++ testing-x86_64/samba.conf.d	2012-04-28 21:41:15 UTC (rev 157516)
@@ -0,0 +1,7 @@
+#
+# Configuration for the samba init script
+#
+
+# space separated list of daemons to launch
+SAMBA_DAEMONS=(smbd nmbd)
+#SAMBA_DAEMONS=(smbd nmbd winbindd)

Copied: samba/repos/testing-x86_64/samba.logrotate (from rev 157502, samba/repos/staging-x86_64/samba.logrotate)
===================================================================
--- testing-x86_64/samba.logrotate	                        (rev 0)
+++ testing-x86_64/samba.logrotate	2012-04-28 21:41:15 UTC (rev 157516)
@@ -0,0 +1,9 @@
+/var/log/samba/log.smbd /var/log/samba/log.nmbd /var/log/samba/*.log {
+   notifempty
+   missingok
+   sharedscripts
+   copytruncate
+   postrotate
+      /bin/kill -HUP `cat /var/run/samba/*.pid 2>/dev/null` 2>/dev/null || true
+   endscript
+}

Copied: samba/repos/testing-x86_64/samba.pam (from rev 157502, samba/repos/staging-x86_64/samba.pam)
===================================================================
--- testing-x86_64/samba.pam	                        (rev 0)
+++ testing-x86_64/samba.pam	2012-04-28 21:41:15 UTC (rev 157516)
@@ -0,0 +1,3 @@
+auth		required	pam_unix.so
+account		required	pam_unix.so
+session		required	pam_unix.so

Copied: samba/repos/testing-x86_64/smbd.conf (from rev 157502, samba/repos/staging-x86_64/smbd.conf)
===================================================================
--- testing-x86_64/smbd.conf	                        (rev 0)
+++ testing-x86_64/smbd.conf	2012-04-28 21:41:15 UTC (rev 157516)
@@ -0,0 +1 @@
+D /var/run/samba 0755 root root -

Copied: samba/repos/testing-x86_64/smbd.service (from rev 157502, samba/repos/staging-x86_64/smbd.service)
===================================================================
--- testing-x86_64/smbd.service	                        (rev 0)
+++ testing-x86_64/smbd.service	2012-04-28 21:41:15 UTC (rev 157516)
@@ -0,0 +1,9 @@
+[Unit]
+Description=Samba SMB/CIFS server
+
+[Service]
+ExecStart=/usr/sbin/smbd -F
+ExecReload=/bin/kill -HUP $MAINPID
+
+[Install]
+WantedBy=multi-user.target

Copied: samba/repos/testing-x86_64/swat.xinetd (from rev 157502, samba/repos/staging-x86_64/swat.xinetd)
===================================================================
--- testing-x86_64/swat.xinetd	                        (rev 0)
+++ testing-x86_64/swat.xinetd	2012-04-28 21:41:15 UTC (rev 157516)
@@ -0,0 +1,10 @@
+service swat
+{
+        socket_type             = stream
+        wait                    = no
+        user                    = root
+        server                  = /usr/sbin/swat
+        log_on_success  += HOST DURATION
+        log_on_failure  += HOST
+        disable                 = yes
+}

Copied: samba/repos/testing-x86_64/winbindd.service (from rev 157502, samba/repos/staging-x86_64/winbindd.service)
===================================================================
--- testing-x86_64/winbindd.service	                        (rev 0)
+++ testing-x86_64/winbindd.service	2012-04-28 21:41:15 UTC (rev 157516)
@@ -0,0 +1,9 @@
+[Unit]
+Description=Samba Winbind daemon
+
+[Service]
+ExecStart=/usr/sbin/winbindd -F
+ExecReload=/bin/kill -HUP $MAINPID
+
+[Install]
+WantedBy=multi-user.target




More information about the arch-commits mailing list