[arch-commits] Commit in tdb/repos/testing-x86_64 (4 files)

2020-03-15 Thread Felix Yan via arch-commits
Date: Sunday, March 15, 2020 @ 22:24:36
  Author: felixonmars
Revision: 377661

archrelease: copy trunk to testing-x86_64

Added:
  tdb/repos/testing-x86_64/PKGBUILD
(from rev 377660, tdb/trunk/PKGBUILD)
  tdb/repos/testing-x86_64/wafsamba-use-native-waf-timer.patch
(from rev 377660, tdb/trunk/wafsamba-use-native-waf-timer.patch)
Deleted:
  tdb/repos/testing-x86_64/PKGBUILD
  tdb/repos/testing-x86_64/wafsamba-use-native-waf-timer.patch

-+
 PKGBUILD|   70 +-
 wafsamba-use-native-waf-timer.patch |  228 +-
 2 files changed, 149 insertions(+), 149 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-15 22:24:20 UTC (rev 377660)
+++ PKGBUILD2020-03-15 22:24:36 UTC (rev 377661)
@@ -1,35 +0,0 @@
-# Maintainer: Tobias Powalowski 
-# Contributor: eric 
-# Contributor: Tom Newsom 
-
-pkgname=tdb
-pkgver=1.4.2
-pkgrel=1
-pkgdesc="A Trivial Database similar to GDBM but allows simultaneous commits"
-arch=(x86_64)
-license=('GPL3')
-url="https://tdb.samba.org/;
-makedepends=('python' 'libxslt' 'docbook-xsl')
-optdepends=('python: for python bindings')
-source=(https://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.gz
-https://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.asc
-
samba-update-waf-for-py38.patch::https://gitlab.com/samba-team/samba/commit/aabdcc9151.patch
-wafsamba-use-native-waf-timer.patch)
-validpgpkeys=('9147A339719518EE9011BCB54793916113084025') #Samba Library 
Distribution Key 
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   ./configure --prefix=/usr \
-   --localstatedir=/var \
-   --sysconfdir=/etc/samba
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=$pkgdir/ install
-}
-md5sums=('b2c05ad68334368d3258a63db709f254'
- 'SKIP'
- '74e627915f28a848e046d37055d86f3b'
- '66185b90c2dcb6bc346ef8ba5200717f')

Copied: tdb/repos/testing-x86_64/PKGBUILD (from rev 377660, tdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-15 22:24:36 UTC (rev 377661)
@@ -0,0 +1,35 @@
+# Maintainer: Tobias Powalowski 
+# Contributor: eric 
+# Contributor: Tom Newsom 
+
+pkgname=tdb
+pkgver=1.4.3
+pkgrel=1
+pkgdesc="A Trivial Database similar to GDBM but allows simultaneous commits"
+arch=(x86_64)
+license=('GPL3')
+url="https://tdb.samba.org/;
+makedepends=('python' 'libxslt' 'docbook-xsl')
+optdepends=('python: for python bindings')
+source=(https://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.gz
+https://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.asc
+
samba-update-waf-for-py38.patch::https://gitlab.com/samba-team/samba/commit/aabdcc9151.patch
+wafsamba-use-native-waf-timer.patch)
+validpgpkeys=('9147A339719518EE9011BCB54793916113084025') #Samba Library 
Distribution Key 
+sha512sums=('99488839e7da396f04df60412d21a7d3e09efeab52772d6cb5e9470a3dfd585d73ef2422c51cd0d8ccc123a65d455de400d5d6b24a21a2a50d3da60d9a70e67a'
+'SKIP'
+
'fc15527eb901620dfa90c7bd91ebffc57c143f67db18377ac5129f8edc3db61b0e4149d3d793559bc5f9ebbe4f040231d12db45bd5cfb3a46df2e73f02f370b2'
+
'22ebd9a15833ed2a4eaa8f9a71dc71c55465f2c7a1d5c0afcd211a202b7c11dd7d43fc4848863cbcc69206f0815afc411367c007032dd1aaa3edba81238729b0')
+
+build() {
+   cd ${pkgname}-${pkgver}
+   ./configure --prefix=/usr \
+   --localstatedir=/var \
+   --sysconfdir=/etc/samba
+   make
+}
+
+package() {
+   cd ${pkgname}-${pkgver}
+   make DESTDIR="$pkgdir/" install
+}

Deleted: wafsamba-use-native-waf-timer.patch
===
--- wafsamba-use-native-waf-timer.patch 2020-03-15 22:24:20 UTC (rev 377660)
+++ wafsamba-use-native-waf-timer.patch 2020-03-15 22:24:36 UTC (rev 377661)
@@ -1,114 +0,0 @@
-From dc27ff44de578b0b429a24b0e42e243d8bf481a8 Mon Sep 17 00:00:00 2001
-From: Lukas Slebodnik 
-Date: Wed, 12 Jun 2019 12:27:04 +0200
-Subject: [PATCH] wafsamba: Use native waf timer
-
-  __main__:1: DeprecationWarning: time.clock has been deprecated in Python 3.3
-  and will be removed from Python 3.8: use time.perf_counter
-  or time.process_time instead
-
-BUG: https://bugzilla.samba.org/show_bug.cgi?id=13998
-
-Signed-off-by: Lukas Slebodnik 
-Reviewed-by: Andreas Schneider 
-Reviewed-by: Alexander Bokovoy 

- buildtools/wafsamba/samba_deps.py | 25 -
- 1 file changed, 12 insertions(+), 13 deletions(-)
-
-diff --git a/buildtools/wafsamba/samba_deps.py 
b/buildtools/wafsamba/samba_deps.py
-index f8c38809bd2..03c37079a8c 100644
 a/buildtools/wafsamba/samba_deps.py
-+++ b/buildtools/wafsamba/samba_deps.py
-@@ -1,6 +1,6 @@
- # Samba automatic dependency handling and project rules
- 
--import os, sys, re, time

[arch-commits] Commit in tdb/repos/testing-x86_64 (4 files)

2019-11-20 Thread Tobias Powalowski via arch-commits
Date: Wednesday, November 20, 2019 @ 12:56:56
  Author: tpowa
Revision: 369474

archrelease: copy trunk to testing-x86_64

Added:
  tdb/repos/testing-x86_64/PKGBUILD
(from rev 369473, tdb/trunk/PKGBUILD)
  tdb/repos/testing-x86_64/wafsamba-use-native-waf-timer.patch
(from rev 369473, tdb/trunk/wafsamba-use-native-waf-timer.patch)
Deleted:
  tdb/repos/testing-x86_64/PKGBUILD
  tdb/repos/testing-x86_64/wafsamba-use-native-waf-timer.patch

-+
 PKGBUILD|   70 +-
 wafsamba-use-native-waf-timer.patch |  228 +-
 2 files changed, 149 insertions(+), 149 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-11-20 12:44:12 UTC (rev 369473)
+++ PKGBUILD2019-11-20 12:56:56 UTC (rev 369474)
@@ -1,35 +0,0 @@
-# Maintainer: Tobias Powalowski 
-# Contributor: eric 
-# Contributor: Tom Newsom 
-
-pkgname=tdb
-pkgver=1.4.2
-pkgrel=1
-pkgdesc="A Trivial Database similar to GDBM but allows simultaneous commits"
-arch=(x86_64)
-license=('GPL3')
-url="https://tdb.samba.org/;
-makedepends=('python' 'libxslt' 'docbook-xsl')
-optdepends=('python: for python bindings')
-source=(https://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.gz
-https://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.asc
-
samba-update-waf-for-py38.patch::https://gitlab.com/samba-team/samba/commit/aabdcc9151.patch
-wafsamba-use-native-waf-timer.patch)
-validpgpkeys=('9147A339719518EE9011BCB54793916113084025') #Samba Library 
Distribution Key 
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   ./configure --prefix=/usr \
-   --localstatedir=/var \
-   --sysconfdir=/etc/samba
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=$pkgdir/ install
-}
-md5sums=('b2c05ad68334368d3258a63db709f254'
- 'SKIP'
- '74e627915f28a848e046d37055d86f3b'
- '66185b90c2dcb6bc346ef8ba5200717f')

Copied: tdb/repos/testing-x86_64/PKGBUILD (from rev 369473, tdb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-11-20 12:56:56 UTC (rev 369474)
@@ -0,0 +1,35 @@
+# Maintainer: Tobias Powalowski 
+# Contributor: eric 
+# Contributor: Tom Newsom 
+
+pkgname=tdb
+pkgver=1.4.2
+pkgrel=1
+pkgdesc="A Trivial Database similar to GDBM but allows simultaneous commits"
+arch=(x86_64)
+license=('GPL3')
+url="https://tdb.samba.org/;
+makedepends=('python' 'libxslt' 'docbook-xsl')
+optdepends=('python: for python bindings')
+source=(https://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.gz
+https://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.asc
+
samba-update-waf-for-py38.patch::https://gitlab.com/samba-team/samba/commit/aabdcc9151.patch
+wafsamba-use-native-waf-timer.patch)
+validpgpkeys=('9147A339719518EE9011BCB54793916113084025') #Samba Library 
Distribution Key 
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr \
+   --localstatedir=/var \
+   --sysconfdir=/etc/samba
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=$pkgdir/ install
+}
+md5sums=('b2c05ad68334368d3258a63db709f254'
+ 'SKIP'
+ '74e627915f28a848e046d37055d86f3b'
+ '66185b90c2dcb6bc346ef8ba5200717f')

Deleted: wafsamba-use-native-waf-timer.patch
===
--- wafsamba-use-native-waf-timer.patch 2019-11-20 12:44:12 UTC (rev 369473)
+++ wafsamba-use-native-waf-timer.patch 2019-11-20 12:56:56 UTC (rev 369474)
@@ -1,114 +0,0 @@
-From dc27ff44de578b0b429a24b0e42e243d8bf481a8 Mon Sep 17 00:00:00 2001
-From: Lukas Slebodnik 
-Date: Wed, 12 Jun 2019 12:27:04 +0200
-Subject: [PATCH] wafsamba: Use native waf timer
-
-  __main__:1: DeprecationWarning: time.clock has been deprecated in Python 3.3
-  and will be removed from Python 3.8: use time.perf_counter
-  or time.process_time instead
-
-BUG: https://bugzilla.samba.org/show_bug.cgi?id=13998
-
-Signed-off-by: Lukas Slebodnik 
-Reviewed-by: Andreas Schneider 
-Reviewed-by: Alexander Bokovoy 

- buildtools/wafsamba/samba_deps.py | 25 -
- 1 file changed, 12 insertions(+), 13 deletions(-)
-
-diff --git a/buildtools/wafsamba/samba_deps.py 
b/buildtools/wafsamba/samba_deps.py
-index f8c38809bd2..03c37079a8c 100644
 a/buildtools/wafsamba/samba_deps.py
-+++ b/buildtools/wafsamba/samba_deps.py
-@@ -1,6 +1,6 @@
- # Samba automatic dependency handling and project rules
- 
--import os, sys, re, time
-+import os, sys, re
- 
- from waflib import Build, Options, Logs, Utils, Errors
- from waflib.Logs import debug
-@@ -1102,8 +1102,7 @@ def check_project_rules(bld):
- if not force_project_rules and load_samba_deps(bld, tgt_list):
- return
- 
--global tstart
--tstart