[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2020-09-13 Thread Tobias Powalowski via arch-commits
Date: Sunday, September 13, 2020 @ 07:17:58
  Author: tpowa
Revision: 395971

upgpkg: cifs-utils 6.11-1: bump to latest version

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-12 22:17:36 UTC (rev 395970)
+++ PKGBUILD2020-09-13 07:17:58 UTC (rev 395971)
@@ -1,6 +1,6 @@
 # Maintainer: Tobias Powalowski 
 pkgname=cifs-utils
-pkgver=6.10
+pkgver=6.11
 pkgrel=1
 pkgdesc="CIFS filesystem user-space tools"
 arch=(x86_64)
@@ -10,8 +10,8 @@
 makedepends=('python-docutils')
 
source=("https://download.samba.org/pub/linux-cifs/$pkgname/$pkgname-$pkgver.tar.bz2"{,.asc})
 validpgpkeys=('C699981A31F338706C817650DF5BA9D30642D5A0') #cifs-utils 
Distribution Verification Key 
-md5sums=('1cb2d653ccc77f8644213340a4f6b7dc'
- 'SKIP')
+sha256sums=('b859239a3f204f8220d3e54ed43bf8109e1ef202042dd87ba87492f8878728d9'
+'SKIP')
 
 prepare() {
   # Fix install to honor DESTDIR


[arch-commits] Commit in cifs-utils/trunk (PKGBUILD fix-5.9-credentials.patch)

2020-01-04 Thread Antonio Rojas via arch-commits
Date: Saturday, January 4, 2020 @ 18:05:34
  Author: arojas
Revision: 372570

Cleanup

Modified:
  cifs-utils/trunk/PKGBUILD
Deleted:
  cifs-utils/trunk/fix-5.9-credentials.patch

---+
 PKGBUILD  |2 +-
 fix-5.9-credentials.patch |   16 
 2 files changed, 1 insertion(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-04 17:47:36 UTC (rev 372569)
+++ PKGBUILD2020-01-04 18:05:34 UTC (rev 372570)
@@ -29,7 +29,7 @@
 
 package() {
   cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" ROOTSBINDIR=/usr/bin install -j1
+  make DESTDIR="$pkgdir" ROOTSBINDIR=/usr/bin install
   mkdir -p "$pkgdir"/etc/request-key.d
   install -m 644 contrib/request-key.d/cifs.idmap.conf 
"$pkgdir"/etc/request-key.d
   install -m 644 contrib/request-key.d/cifs.spnego.conf 
"$pkgdir"/etc/request-key.d

Deleted: fix-5.9-credentials.patch
===
--- fix-5.9-credentials.patch   2020-01-04 17:47:36 UTC (rev 372569)
+++ fix-5.9-credentials.patch   2020-01-04 18:05:34 UTC (rev 372570)
@@ -1,16 +0,0 @@
-X-Git-Url: 
https://git.samba.org/?p=cifs-utils.git;a=blobdiff_plain;f=mount.cifs.c;h=40b77e92e3f734c606f522ccf279a0508ad64eab;hp=c7c3055cb890764937193b1d50d1f0fb7ae18826;hb=1a01f7c4b90695211d12291d7a24bec05b1f2922;hpb=739289ad3ce915e1ee2705ecd7ac4e907cd91405
-
-diff --git a/mount.cifs.c b/mount.cifs.c
-index c7c3055..40b77e9 100644
 a/mount.cifs.c
-+++ b/mount.cifs.c
-@@ -581,7 +581,8 @@ static int open_cred_file(char *file_name,
-   switch (parse_cred_line(line_buf + i, _val)) {
-   case CRED_USER:
-   strlcpy(parsed_info->username, temp_val,
--  sizeof(parsed_info->domain));
-+  sizeof(parsed_info->username));
-+  parsed_info->got_user = 1;
-   break;
-   case CRED_PASS:
-   i = set_password(parsed_info, temp_val);


[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2020-01-04 Thread Antonio Rojas via arch-commits
Date: Saturday, January 4, 2020 @ 09:48:52
  Author: arojas
Revision: 372537

Update to 6.10

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |   13 +
 1 file changed, 9 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-04 08:44:45 UTC (rev 372536)
+++ PKGBUILD2020-01-04 09:48:52 UTC (rev 372537)
@@ -1,6 +1,6 @@
 # Maintainer: Tobias Powalowski 
 pkgname=cifs-utils
-pkgver=6.9
+pkgver=6.10
 pkgrel=1
 pkgdesc="CIFS filesystem user-space tools"
 arch=(x86_64)
@@ -10,7 +10,14 @@
 makedepends=('python-docutils')
 
source=("https://download.samba.org/pub/linux-cifs/$pkgname/$pkgname-$pkgver.tar.bz2"{,.asc})
 validpgpkeys=('C699981A31F338706C817650DF5BA9D30642D5A0') #cifs-utils 
Distribution Verification Key 
+md5sums=('1cb2d653ccc77f8644213340a4f6b7dc'
+ 'SKIP')
 
+prepare() {
+  # Fix install to honor DESTDIR
+  sed -e 's|\$(man8dir)|$(DESTDIR)$(man8dir)|g' -e 's|cd \$(ROOTSBINDIR)|cd 
$(DESTDIR)$(ROOTSBINDIR)|g' -i $pkgname-$pkgver/Makefile.am
+}
+
 build() {
   cd "$srcdir/$pkgname-$pkgver"
   # systemd support is broken in mount.cifs
@@ -22,7 +29,7 @@
 
 package() {
   cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" ROOTSBINDIR=/usr/bin install
+  make DESTDIR="$pkgdir" ROOTSBINDIR=/usr/bin install -j1
   mkdir -p "$pkgdir"/etc/request-key.d
   install -m 644 contrib/request-key.d/cifs.idmap.conf 
"$pkgdir"/etc/request-key.d
   install -m 644 contrib/request-key.d/cifs.spnego.conf 
"$pkgdir"/etc/request-key.d
@@ -32,5 +39,3 @@
   mkdir -p "$pkgdir"/etc/cifs-utils
   ln -s /usr/lib/cifs-utils/idmapwb.so "${pkgdir}"/etc/cifs-utils/idmap-plugin
 }
-md5sums=('6ae854852e39ab1d5e2e3b512fdffb08'
- 'SKIP')


[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2019-11-07 Thread Antonio Rojas via arch-commits
Date: Thursday, November 7, 2019 @ 21:15:31
  Author: arojas
Revision: 367151

Update to 6.9

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-07 21:11:47 UTC (rev 367150)
+++ PKGBUILD2019-11-07 21:15:31 UTC (rev 367151)
@@ -1,7 +1,7 @@
 # Maintainer: Tobias Powalowski 
 pkgname=cifs-utils
-pkgver=6.8
-pkgrel=2
+pkgver=6.9
+pkgrel=1
 pkgdesc="CIFS filesystem user-space tools"
 arch=(x86_64)
 url="https://wiki.samba.org/index.php/LinuxCIFS_utils;
@@ -32,5 +32,5 @@
   mkdir -p "$pkgdir"/etc/cifs-utils
   ln -s /usr/lib/cifs-utils/idmapwb.so "${pkgdir}"/etc/cifs-utils/idmap-plugin
 }
-md5sums=('a385d60293e6f9e4cb0d4ac2093990d8'
+md5sums=('6ae854852e39ab1d5e2e3b512fdffb08'
  'SKIP')


[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2019-10-07 Thread Antonio Rojas via arch-commits
Date: Monday, October 7, 2019 @ 20:04:15
  Author: arojas
Revision: 364062

Fix quoting

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-07 20:03:11 UTC (rev 364061)
+++ PKGBUILD2019-10-07 20:04:15 UTC (rev 364062)
@@ -23,14 +23,14 @@
 package() {
   cd "$srcdir/$pkgname-$pkgver"
   make DESTDIR="$pkgdir" ROOTSBINDIR=/usr/bin install
-  mkdir -p $pkgdir/etc/request-key.d
-  install -m 644 contrib/request-key.d/cifs.idmap.conf 
$pkgdir/etc/request-key.d
-  install -m 644 contrib/request-key.d/cifs.spnego.conf 
$pkgdir/etc/request-key.d
+  mkdir -p "$pkgdir"/etc/request-key.d
+  install -m 644 contrib/request-key.d/cifs.idmap.conf 
"$pkgdir"/etc/request-key.d
+  install -m 644 contrib/request-key.d/cifs.spnego.conf 
"$pkgdir"/etc/request-key.d
   # set mount.cifs uid, to enable none root mounting form fstab
-  chmod +s $pkgdir/usr/bin/mount.cifs
+  chmod +s "$pkgdir"/usr/bin/mount.cifs
   # fix idmap-plugin #42052
-  mkdir -p $pkgdir/etc/cifs-utils
-  ln -s /usr/lib/cifs-utils/idmapwb.so ${pkgdir}/etc/cifs-utils/idmap-plugin
+  mkdir -p "$pkgdir"/etc/cifs-utils
+  ln -s /usr/lib/cifs-utils/idmapwb.so "${pkgdir}"/etc/cifs-utils/idmap-plugin
 }
 md5sums=('a385d60293e6f9e4cb0d4ac2093990d8'
  'SKIP')


[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2019-05-02 Thread Antonio Rojas via arch-commits
Date: Thursday, May 2, 2019 @ 20:56:00
  Author: arojas
Revision: 352411

https

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-05-02 20:55:18 UTC (rev 352410)
+++ PKGBUILD2019-05-02 20:56:00 UTC (rev 352411)
@@ -4,7 +4,7 @@
 pkgrel=2
 pkgdesc="CIFS filesystem user-space tools"
 arch=(x86_64)
-url="http://wiki.samba.org/index.php/LinuxCIFS_utils;
+url="https://wiki.samba.org/index.php/LinuxCIFS_utils;
 license=('GPL')
 depends=('libcap-ng' 'keyutils' 'krb5' 'talloc' 'libwbclient' 'pam')
 makedepends=('python-docutils')


[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2018-06-26 Thread Tobias Powalowski via arch-commits
Date: Wednesday, June 27, 2018 @ 04:44:57
  Author: tpowa
Revision: 327669

upgpkg: cifs-utils 6.8-2

add manpages again #59147

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-27 04:39:56 UTC (rev 327668)
+++ PKGBUILD2018-06-27 04:44:57 UTC (rev 327669)
@@ -2,12 +2,13 @@
 # Maintainer: Tobias Powalowski 
 pkgname=cifs-utils
 pkgver=6.8
-pkgrel=1
+pkgrel=2
 pkgdesc="CIFS filesystem user-space tools"
 arch=(x86_64)
 url="http://wiki.samba.org/index.php/LinuxCIFS_utils;
 license=('GPL')
 depends=('libcap-ng' 'keyutils' 'krb5' 'talloc' 'libwbclient' 'pam')
+makedepends=('python-docutils')
 
source=("https://download.samba.org/pub/linux-cifs/$pkgname/$pkgname-$pkgver.tar.bz2"{,.asc})
 validpgpkeys=('C699981A31F338706C817650DF5BA9D30642D5A0') #cifs-utils 
Distribution Verification Key 
 


[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2018-06-22 Thread Tobias Powalowski via arch-commits
Date: Friday, June 22, 2018 @ 09:26:21
  Author: tpowa
Revision: 327451

upgpkg: cifs-utils 6.8-1

bump to latest version

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-22 09:22:34 UTC (rev 327450)
+++ PKGBUILD2018-06-22 09:26:21 UTC (rev 327451)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Tobias Powalowski 
 pkgname=cifs-utils
-pkgver=6.7
-pkgrel=2
+pkgver=6.8
+pkgrel=1
 pkgdesc="CIFS filesystem user-space tools"
 arch=(x86_64)
 url="http://wiki.samba.org/index.php/LinuxCIFS_utils;
@@ -9,7 +9,7 @@
 license=('GPL')
 depends=('libcap-ng' 'keyutils' 'krb5' 'talloc' 'libwbclient' 'pam')
 
source=("https://download.samba.org/pub/linux-cifs/$pkgname/$pkgname-$pkgver.tar.bz2"{,.asc})
-validpgpkeys=('98EDEB95638461E78CE83B795AFDBFB270F3B981') #cifs-utils 
Distribution Verification Key 
+validpgpkeys=('C699981A31F338706C817650DF5BA9D30642D5A0') #cifs-utils 
Distribution Verification Key 
 
 build() {
   cd "$srcdir/$pkgname-$pkgver"
@@ -32,5 +32,5 @@
   mkdir -p $pkgdir/etc/cifs-utils
   ln -s /usr/lib/cifs-utils/idmapwb.so ${pkgdir}/etc/cifs-utils/idmap-plugin
 }
-md5sums=('af3ae1d27aca624c4daac5bf3eb0d4c1'
+md5sums=('a385d60293e6f9e4cb0d4ac2093990d8'
  'SKIP')


[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2017-03-17 Thread Tobias Powalowski
Date: Friday, March 17, 2017 @ 11:52:34
  Author: tpowa
Revision: 290987

upgpkg: cifs-utils 6.7-2

fix #42052 idmap-plugin, fix #53224 add missing utils

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-17 11:25:36 UTC (rev 290986)
+++ PKGBUILD2017-03-17 11:52:34 UTC (rev 290987)
@@ -2,7 +2,7 @@
 # Maintainer: Tobias Powalowski 
 pkgname=cifs-utils
 pkgver=6.7
-pkgrel=1
+pkgrel=2
 pkgdesc="CIFS filesystem user-space tools"
 arch=(i686 x86_64)
 url="http://wiki.samba.org/index.php/LinuxCIFS_utils;
@@ -28,6 +28,9 @@
   install -m 644 contrib/request-key.d/cifs.spnego.conf 
$pkgdir/etc/request-key.d
   # set mount.cifs uid, to enable none root mounting form fstab
   chmod +s $pkgdir/usr/bin/mount.cifs
+  # fix idmap-plugin #42052
+  mkdir -p $pkgdir/etc/cifs-utils
+  ln -s /usr/lib/cifs-utils/idmapwb.so ${pkgdir}/etc/cifs-utils/idmap-plugin
 }
 md5sums=('af3ae1d27aca624c4daac5bf3eb0d4c1'
  'SKIP')


[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2017-03-09 Thread Tobias Powalowski
Date: Thursday, March 9, 2017 @ 08:15:04
  Author: tpowa
Revision: 290183

upgpkg: cifs-utils 6.7-1

bump to latest version

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-09 08:09:50 UTC (rev 290182)
+++ PKGBUILD2017-03-09 08:15:04 UTC (rev 290183)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Tobias Powalowski 
 pkgname=cifs-utils
-pkgver=6.5
+pkgver=6.7
 pkgrel=1
 pkgdesc="CIFS filesystem user-space tools"
 arch=(i686 x86_64)
@@ -15,6 +15,7 @@
   cd "$srcdir/$pkgname-$pkgver"
   # systemd support is broken in mount.cifs
   # https://bugs.archlinux.org/task/30958
+  autoreconf -i
   ./configure --prefix=/usr --sbindir=/usr/bin --disable-systemd
   make
 }
@@ -28,5 +29,5 @@
   # set mount.cifs uid, to enable none root mounting form fstab
   chmod +s $pkgdir/usr/bin/mount.cifs
 }
-md5sums=('74b2c398ce83a8b792faabc414cec314'
+md5sums=('af3ae1d27aca624c4daac5bf3eb0d4c1'
  'SKIP')


[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2016-04-19 Thread Tobias Powalowski
Date: Tuesday, April 19, 2016 @ 09:54:56
  Author: tpowa
Revision: 265201

upgpkg: cifs-utils 6.5-1

bump to latest version

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-04-19 07:46:39 UTC (rev 265200)
+++ PKGBUILD2016-04-19 07:54:56 UTC (rev 265201)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Tobias Powalowski 
 pkgname=cifs-utils
-pkgver=6.4
+pkgver=6.5
 pkgrel=1
 pkgdesc="CIFS filesystem user-space tools"
 arch=(i686 x86_64)
@@ -8,7 +8,7 @@
 url="http://wiki.samba.org/index.php/LinuxCIFS_utils;
 license=('GPL')
 depends=('libcap-ng' 'keyutils' 'krb5' 'talloc' 'libwbclient' 'pam')
-source=("ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/$pkgname-$pkgver.tar.bz2"{,.asc})
+source=("https://download.samba.org/pub/linux-cifs/$pkgname/$pkgname-$pkgver.tar.bz2"{,.asc})
 validpgpkeys=('98EDEB95638461E78CE83B795AFDBFB270F3B981') #cifs-utils 
Distribution Verification Key 
 
 build() {
@@ -28,5 +28,5 @@
   # set mount.cifs uid, to enable none root mounting form fstab
   chmod +s $pkgdir/usr/bin/mount.cifs
 }
-md5sums=('b7d75b67fd3987952896d27256c7293d'
+md5sums=('74b2c398ce83a8b792faabc414cec314'
  'SKIP')


[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2014-06-04 Thread Tobias Powalowski
Date: Wednesday, June 4, 2014 @ 14:02:45
  Author: tpowa
Revision: 214183

upgpkg: cifs-utils 6.3-1

bump to latest version, fix #40308

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-06-04 09:12:20 UTC (rev 214182)
+++ PKGBUILD2014-06-04 12:02:45 UTC (rev 214183)
@@ -1,13 +1,13 @@
 # $Id$
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=cifs-utils
-pkgver=6.2
+pkgver=6.3
 pkgrel=1
 pkgdesc=CIFS filesystem user-space tools
 arch=(i686 x86_64)
 url=http://wiki.samba.org/index.php/LinuxCIFS_utils;
 license=('GPL')
-depends=('libcap-ng' 'keyutils' 'krb5' 'talloc' 'libwbclient')
+depends=('libcap-ng' 'keyutils' 'krb5' 'talloc' 'libwbclient' 'pam')
 source=(ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/$pkgname-$pkgver.tar.bz2)
 
 build() {
@@ -21,7 +21,10 @@
 package() {
   cd $srcdir/$pkgname-$pkgver
   make DESTDIR=$pkgdir ROOTSBINDIR=/usr/bin install
+  mkdir -p $pkgdir/etc/request-key.d
+  install -m 644 contrib/request-key.d/cifs.idmap.conf 
$pkgdir/etc/request-key.d
+  install -m 644 contrib/request-key.d/cifs.spnego.conf 
$pkgdir/etc/request-key.d
   # set mount.cifs uid, to enable none root mounting form fstab
   chmod +s $pkgdir/usr/bin/mount.cifs
 }
-md5sums=('6a83fe19e02266cb468ea3bf1cc0d007')
+md5sums=('93697dbc043cb4d5c66e15e281f872e5')



[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2013-11-27 Thread Tobias Powalowski
Date: Wednesday, November 27, 2013 @ 11:08:36
  Author: tpowa
Revision: 200380

upgpkg: cifs-utils 6.2-1

bump to latest version

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-27 09:20:14 UTC (rev 200379)
+++ PKGBUILD2013-11-27 10:08:36 UTC (rev 200380)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=cifs-utils
-pkgver=6.1
+pkgver=6.2
 pkgrel=1
 pkgdesc=CIFS filesystem user-space tools
 arch=(i686 x86_64)
@@ -24,4 +24,4 @@
   # set mount.cifs uid, to enable none root mounting form fstab
   chmod +s $pkgdir/usr/bin/mount.cifs
 }
-md5sums=('f83ef48ab1154aa74dd4cf1c1202bf04')
+md5sums=('6a83fe19e02266cb468ea3bf1cc0d007')



[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2013-07-04 Thread Tobias Powalowski
Date: Thursday, July 4, 2013 @ 10:28:05
  Author: tpowa
Revision: 189656

upgpkg: cifs-utils 6.1-1

bump to latest version

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-07-04 07:18:16 UTC (rev 189655)
+++ PKGBUILD2013-07-04 08:28:05 UTC (rev 189656)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=cifs-utils
-pkgver=6.0
-pkgrel=2
+pkgver=6.1
+pkgrel=1
 pkgdesc=CIFS filesystem user-space tools
 arch=(i686 x86_64)
 url=http://wiki.samba.org/index.php/LinuxCIFS_utils;
@@ -24,4 +24,4 @@
   # set mount.cifs uid, to enable none root mounting form fstab
   chmod +s $pkgdir/usr/bin/mount.cifs
 }
-md5sums=('371e007a201be90c16497cd9bd5e2553')
+md5sums=('f83ef48ab1154aa74dd4cf1c1202bf04')



[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2013-05-19 Thread Tobias Powalowski
Date: Sunday, May 19, 2013 @ 11:32:55
  Author: tpowa
Revision: 185802

upgpkg: cifs-utils 6.0-2

move /usr/sbin to /usr/bin

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-05-19 09:27:42 UTC (rev 185801)
+++ PKGBUILD2013-05-19 09:32:55 UTC (rev 185802)
@@ -2,7 +2,7 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=cifs-utils
 pkgver=6.0
-pkgrel=1
+pkgrel=2
 pkgdesc=CIFS filesystem user-space tools
 arch=(i686 x86_64)
 url=http://wiki.samba.org/index.php/LinuxCIFS_utils;
@@ -14,7 +14,7 @@
   cd $srcdir/$pkgname-$pkgver
   # systemd support is broken in mount.cifs
   # https://bugs.archlinux.org/task/30958
-  ./configure --prefix=/usr --disable-systemd
+  ./configure --prefix=/usr --sbindir=/usr/bin --disable-systemd
   make
 }
 



[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2013-03-27 Thread Tobias Powalowski
Date: Wednesday, March 27, 2013 @ 17:31:40
  Author: tpowa
Revision: 180875

upgpkg: cifs-utils 6.0-1

bump to latest version

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |   11 +++
 1 file changed, 3 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-27 16:10:31 UTC (rev 180874)
+++ PKGBUILD2013-03-27 16:31:40 UTC (rev 180875)
@@ -1,20 +1,17 @@
 # $Id$
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=cifs-utils
-pkgver=5.9
+pkgver=6.0
 pkgrel=1
 pkgdesc=CIFS filesystem user-space tools
 arch=(i686 x86_64)
 url=http://wiki.samba.org/index.php/LinuxCIFS_utils;
 license=('GPL')
 depends=('libcap-ng' 'keyutils' 'krb5' 'talloc' 'libwbclient')
-source=(ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/$pkgname-$pkgver.tar.bz2
-fix-5.9-credentials.patch)
+source=(ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/$pkgname-$pkgver.tar.bz2)
 
 build() {
   cd $srcdir/$pkgname-$pkgver
-  # fix credentials
-  patch -Np1 -i ../fix-5.9-credentials.patch
   # systemd support is broken in mount.cifs
   # https://bugs.archlinux.org/task/30958
   ./configure --prefix=/usr --disable-systemd
@@ -27,6 +24,4 @@
   # set mount.cifs uid, to enable none root mounting form fstab
   chmod +s $pkgdir/usr/bin/mount.cifs
 }
-md5sums=('6aa9c4347780872fefe5823ac06a8ff3')
-md5sums=('7164ad6f7963a31fcbffbe4f14a7cfc6'
- '2550d43af5bb734307cae22a09cd7710')
+md5sums=('371e007a201be90c16497cd9bd5e2553')



[arch-commits] Commit in cifs-utils/trunk (PKGBUILD fix-5.9-credentials.patch)

2013-01-27 Thread Tobias Powalowski
Date: Sunday, January 27, 2013 @ 13:25:40
  Author: tpowa
Revision: 176096

upgpkg: cifs-utils 5.9-1

bump to latest version, added cifs.idmap

Added:
  cifs-utils/trunk/fix-5.9-credentials.patch
Modified:
  cifs-utils/trunk/PKGBUILD

---+
 PKGBUILD  |9 +++--
 fix-5.9-credentials.patch |   16 
 2 files changed, 23 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-01-27 12:24:26 UTC (rev 176095)
+++ PKGBUILD2013-01-27 12:25:40 UTC (rev 176096)
@@ -1,17 +1,20 @@
 # $Id$
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=cifs-utils
-pkgver=5.8
+pkgver=5.9
 pkgrel=1
 pkgdesc=CIFS filesystem user-space tools
 arch=(i686 x86_64)
 url=http://wiki.samba.org/index.php/LinuxCIFS_utils;
 license=('GPL')
 depends=('libcap-ng' 'keyutils' 'krb5' 'talloc' 'libwbclient')
-source=(ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/$pkgname-$pkgver.tar.bz2)
+source=(ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/$pkgname-$pkgver.tar.bz2
+fix-5.9-credentials.patch)
 
 build() {
   cd $srcdir/$pkgname-$pkgver
+  # fix credentials
+  patch -Np1 -i ../fix-5.9-credentials.patch
   # systemd support is broken in mount.cifs
   # https://bugs.archlinux.org/task/30958
   ./configure --prefix=/usr --disable-systemd
@@ -25,3 +28,5 @@
   chmod +s $pkgdir/usr/bin/mount.cifs
 }
 md5sums=('6aa9c4347780872fefe5823ac06a8ff3')
+md5sums=('7164ad6f7963a31fcbffbe4f14a7cfc6'
+ '2550d43af5bb734307cae22a09cd7710')

Added: fix-5.9-credentials.patch
===
--- fix-5.9-credentials.patch   (rev 0)
+++ fix-5.9-credentials.patch   2013-01-27 12:25:40 UTC (rev 176096)
@@ -0,0 +1,16 @@
+X-Git-Url: 
https://git.samba.org/?p=cifs-utils.git;a=blobdiff_plain;f=mount.cifs.c;h=40b77e92e3f734c606f522ccf279a0508ad64eab;hp=c7c3055cb890764937193b1d50d1f0fb7ae18826;hb=1a01f7c4b90695211d12291d7a24bec05b1f2922;hpb=739289ad3ce915e1ee2705ecd7ac4e907cd91405
+
+diff --git a/mount.cifs.c b/mount.cifs.c
+index c7c3055..40b77e9 100644
+--- a/mount.cifs.c
 b/mount.cifs.c
+@@ -581,7 +581,8 @@ static int open_cred_file(char *file_name,
+   switch (parse_cred_line(line_buf + i, temp_val)) {
+   case CRED_USER:
+   strlcpy(parsed_info-username, temp_val,
+-  sizeof(parsed_info-domain));
++  sizeof(parsed_info-username));
++  parsed_info-got_user = 1;
+   break;
+   case CRED_PASS:
+   i = set_password(parsed_info, temp_val);



[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2012-12-19 Thread Tobias Powalowski
Date: Wednesday, December 19, 2012 @ 09:21:34
  Author: tpowa
Revision: 173348

upgpkg: cifs-utils 5.8-1

bump to latest version

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-12-19 14:13:59 UTC (rev 173347)
+++ PKGBUILD2012-12-19 14:21:34 UTC (rev 173348)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=cifs-utils
-pkgver=5.7
+pkgver=5.8
 pkgrel=1
 pkgdesc=CIFS filesystem user-space tools
 arch=(i686 x86_64)
@@ -24,4 +24,4 @@
   # set mount.cifs uid, to enable none root mounting form fstab
   chmod +s $pkgdir/usr/bin/mount.cifs
 }
-md5sums=('4215f12be8663f65d2c21dbbbafbc7f8')
+md5sums=('6aa9c4347780872fefe5823ac06a8ff3')



[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2012-10-24 Thread Tobias Powalowski
Date: Wednesday, October 24, 2012 @ 03:17:39
  Author: tpowa
Revision: 169598

upgpkg: cifs-utils 5.7-1

bump to latest version

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-10-24 07:10:42 UTC (rev 169597)
+++ PKGBUILD2012-10-24 07:17:39 UTC (rev 169598)
@@ -1,8 +1,8 @@
 # $Id$
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=cifs-utils
-pkgver=5.6
-pkgrel=2
+pkgver=5.7
+pkgrel=1
 pkgdesc=CIFS filesystem user-space tools
 arch=(i686 x86_64)
 url=http://wiki.samba.org/index.php/LinuxCIFS_utils;
@@ -24,4 +24,4 @@
   # set mount.cifs uid, to enable none root mounting form fstab
   chmod +s $pkgdir/usr/bin/mount.cifs
 }
-md5sums=('89c94ff512e375b92899b79622604c39')
+md5sums=('4215f12be8663f65d2c21dbbbafbc7f8')



[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2012-08-06 Thread Tobias Powalowski
Date: Monday, August 6, 2012 @ 12:15:53
  Author: tpowa
Revision: 164811

upgpkg: cifs-utils 5.6-2

disable systemd support https://bugs.archlinux.org/task/30958

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-08-06 13:29:17 UTC (rev 164810)
+++ PKGBUILD2012-08-06 16:15:53 UTC (rev 164811)
@@ -2,7 +2,7 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=cifs-utils
 pkgver=5.6
-pkgrel=1
+pkgrel=2
 pkgdesc=CIFS filesystem user-space tools
 arch=(i686 x86_64)
 url=http://wiki.samba.org/index.php/LinuxCIFS_utils;
@@ -12,7 +12,9 @@
 
 build() {
   cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr
+  # systemd support is broken in mount.cifs
+  # https://bugs.archlinux.org/task/30958
+  ./configure --prefix=/usr --disable-systemd
   make
 }
 



[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2012-07-30 Thread Tobias Powalowski
Date: Monday, July 30, 2012 @ 08:56:49
  Author: tpowa
Revision: 164326

upgpkg: cifs-utils 5.6-1

bump to latest version

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-07-30 10:49:25 UTC (rev 164325)
+++ PKGBUILD2012-07-30 12:56:49 UTC (rev 164326)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=cifs-utils
-pkgver=5.5
+pkgver=5.6
 pkgrel=1
 pkgdesc=CIFS filesystem user-space tools
 arch=(i686 x86_64)
@@ -22,4 +22,4 @@
   # set mount.cifs uid, to enable none root mounting form fstab
   chmod +s $pkgdir/usr/bin/mount.cifs
 }
-md5sums=('4de6c660ccdb9506d0e2cff4f37b8707')
+md5sums=('89c94ff512e375b92899b79622604c39')



[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2012-03-02 Thread Tobias Powalowski
Date: Friday, March 2, 2012 @ 03:41:52
  Author: tpowa
Revision: 151752

upgpkg: cifs-utils 5.3-2

remove wrong uid and gid in samba start script #28240, splitted libwbclient for 
cifs-utils

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-03-02 07:58:39 UTC (rev 151751)
+++ PKGBUILD2012-03-02 08:41:52 UTC (rev 151752)
@@ -2,14 +2,13 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=cifs-utils
 pkgver=5.3
-pkgrel=1
+pkgrel=2
 pkgdesc=CIFS filesystem user-space tools
 arch=(i686 x86_64)
 url=http://wiki.samba.org/index.php/LinuxCIFS_utils;
 license=('GPL')
-depends=('libcap-ng' 'keyutils' 'krb5' 'talloc')
+depends=('libcap-ng' 'keyutils' 'krb5' 'talloc' 'libwbclient')
 source=(ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/$pkgname-$pkgver.tar.bz2)
-# deinstall smbclient first!
 
 build() {
   cd $srcdir/$pkgname-$pkgver



[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2012-01-29 Thread Tobias Powalowski
Date: Monday, January 30, 2012 @ 02:42:09
  Author: tpowa
Revision: 148029

upgpkg: cifs-utils 5.3-1

bump to latest version

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-01-30 03:41:59 UTC (rev 148028)
+++ PKGBUILD2012-01-30 07:42:09 UTC (rev 148029)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=cifs-utils
-pkgver=5.2
+pkgver=5.3
 pkgrel=1
 pkgdesc=CIFS filesystem user-space tools
 arch=(i686 x86_64)
@@ -20,8 +20,7 @@
 package() {
   cd $srcdir/$pkgname-$pkgver
   make DESTDIR=$pkgdir install
-  rm -r $pkgdir/usr/bin
   # set mount.cifs uid, to enable none root mounting form fstab
   chmod +s $pkgdir/sbin/mount.cifs
 }
-md5sums=('2ca839553cccd0c3042f7dd8737cc9de')
+md5sums=('e1a428558a96d2d28ccdaacdc47ea0b7')



[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2012-01-18 Thread Tobias Powalowski
Date: Thursday, January 19, 2012 @ 02:41:21
  Author: tpowa
Revision: 146918

upgpkg: cifs-utils 5.2-1

bump to latest version

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-01-19 05:44:29 UTC (rev 146917)
+++ PKGBUILD2012-01-19 07:41:21 UTC (rev 146918)
@@ -1,15 +1,15 @@
 # $Id$
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=cifs-utils
-pkgver=4.9
-pkgrel=3
+pkgver=5.2
+pkgrel=1
 pkgdesc=CIFS filesystem user-space tools
 arch=(i686 x86_64)
 url=http://wiki.samba.org/index.php/LinuxCIFS_utils;
 license=('GPL')
-depends=('libcap' 'keyutils' 'krb5' 'talloc')
+depends=('libcap-ng' 'keyutils' 'krb5' 'talloc')
 source=(ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/$pkgname-$pkgver.tar.bz2)
-md5sums=('908d904e6b9e58f09f530de151a88ef8')
+# deinstall smbclient first!
 
 build() {
   cd $srcdir/$pkgname-$pkgver
@@ -24,3 +24,4 @@
   # set mount.cifs uid, to enable none root mounting form fstab
   chmod +s $pkgdir/sbin/mount.cifs
 }
+md5sums=('2ca839553cccd0c3042f7dd8737cc9de')



[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2011-05-04 Thread Ionut Biru
Date: Wednesday, May 4, 2011 @ 13:23:19
  Author: ibiru
Revision: 122574

krb5 rebuild

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-05-04 16:54:11 UTC (rev 122573)
+++ PKGBUILD2011-05-04 17:23:19 UTC (rev 122574)
@@ -2,13 +2,14 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=cifs-utils
 pkgver=4.9
-pkgrel=2
+pkgrel=3
 pkgdesc=CIFS filesystem user-space tools
 arch=(i686 x86_64)
 url=http://wiki.samba.org/index.php/LinuxCIFS_utils;
 license=('GPL')
-depends=('libcap' 'keyutils' 'heimdal')
+depends=('libcap' 'keyutils' 'krb5' 'talloc')
 source=(ftp://ftp.samba.org/pub/linux-cifs/cifs-utils/$pkgname-$pkgver.tar.bz2)
+md5sums=('908d904e6b9e58f09f530de151a88ef8')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
@@ -23,4 +24,3 @@
   # set mount.cifs uid, to enable none root mounting form fstab
   chmod +s $pkgdir/sbin/mount.cifs
 }
-md5sums=('908d904e6b9e58f09f530de151a88ef8')



[arch-commits] Commit in cifs-utils/trunk (PKGBUILD)

2011-03-30 Thread Tobias Powalowski
Date: Wednesday, March 30, 2011 @ 09:34:45
  Author: tpowa
Revision: 117241

upgpkg: cifs-utils 4.9-2
fix suid bit on mount.cifs

Modified:
  cifs-utils/trunk/PKGBUILD

--+
 PKGBUILD |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-03-30 11:21:28 UTC (rev 117240)
+++ PKGBUILD2011-03-30 13:34:45 UTC (rev 117241)
@@ -2,7 +2,7 @@
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=cifs-utils
 pkgver=4.9
-pkgrel=1
+pkgrel=2
 pkgdesc=CIFS filesystem user-space tools
 arch=(i686 x86_64)
 url=http://wiki.samba.org/index.php/LinuxCIFS_utils;
@@ -20,5 +20,7 @@
   cd $srcdir/$pkgname-$pkgver
   make DESTDIR=$pkgdir install
   rm -r $pkgdir/usr/bin
+  # set mount.cifs uid, to enable none root mounting form fstab
+  chmod +s $pkgdir/sbin/mount.cifs
 }
 md5sums=('908d904e6b9e58f09f530de151a88ef8')