[arch-commits] Commit in db/repos (3 files)

Antonio Rojas arojas at archlinux.org
Tue Jun 5 07:08:38 UTC 2018


    Date: Tuesday, June 5, 2018 @ 07:08:37
  Author: arojas
Revision: 325890

archrelease: copy trunk to testing-x86_64

Added:
  db/repos/testing-x86_64/
  db/repos/testing-x86_64/PKGBUILD
    (from rev 325889, db/trunk/PKGBUILD)
  db/repos/testing-x86_64/atomic.patch
    (from rev 325889, db/trunk/atomic.patch)

--------------+
 PKGBUILD     |   37 +++++++++++++++++++++++++++++++++++++
 atomic.patch |   20 ++++++++++++++++++++
 2 files changed, 57 insertions(+)

Copied: db/repos/testing-x86_64/PKGBUILD (from rev 325889, db/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2018-06-05 07:08:37 UTC (rev 325890)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault <stephane at archlinux.org>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: Andreas Radke <andyrtr at archlinux.org>
+
+pkgname=db
+pkgver=5.3.28
+pkgrel=4
+pkgdesc="The Berkeley DB embedded database system"
+arch=('x86_64')
+url="http://www.oracle.com/technology/software/products/berkeley-db/index.html"
+license=('custom')
+depends=('gcc-libs' 'sh')
+source=(http://download.oracle.com/berkeley-db/db-${pkgver}.tar.gz atomic.patch)
+sha1sums=('fa3f8a41ad5101f43d08bc0efb6241c9b6fc1ae9'
+          '70a51fe2a39a21652ef01767a9c8a30515b95a33')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p0 -i ../atomic.patch # Fix build 
+}
+
+build() {
+  cd "${srcdir}"/$pkgname-${pkgver}/build_unix
+  ../dist/configure --prefix=/usr --enable-compat185 \
+    --enable-shared --enable-static --enable-cxx --enable-dbm \
+    --enable-stl
+  make LIBSO_LIBS=-lpthread
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-${pkgver}/build_unix
+  make DESTDIR="${pkgdir}" install
+  rm -r "${pkgdir}"/usr/docs
+  install -Dm644 "${srcdir}"/${pkgname}-${pkgver}/LICENSE \
+    "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: db/repos/testing-x86_64/atomic.patch (from rev 325889, db/trunk/atomic.patch)
===================================================================
--- testing-x86_64/atomic.patch	                        (rev 0)
+++ testing-x86_64/atomic.patch	2018-06-05 07:08:37 UTC (rev 325890)
@@ -0,0 +1,20 @@
+--- src/dbinc/atomic.h	2013-03-12 14:07:22.000000000 -0400
++++ src/dbinc/atomic.h.change	2013-03-12 14:06:35.000000000 -0400
+@@ -144,7 +144,7 @@
+ #define	atomic_inc(env, p)	__atomic_inc(p)
+ #define	atomic_dec(env, p)	__atomic_dec(p)
+ #define	atomic_compare_exchange(env, p, o, n)	\
+-	__atomic_compare_exchange((p), (o), (n))
++	__atomic_compare_exchange_db((p), (o), (n))
+ static inline int __atomic_inc(db_atomic_t *p)
+ {
+ 	int	temp;
+@@ -176,7 +176,7 @@
+  * http://gcc.gnu.org/onlinedocs/gcc-4.1.0/gcc/Atomic-Builtins.html
+  * which configure could be changed to use.
+  */
+-static inline int __atomic_compare_exchange(
++static inline int __atomic_compare_exchange_db(
+ 	db_atomic_t *p, atomic_value_t oldval, atomic_value_t newval)
+ {
+ 	atomic_value_t was;



More information about the arch-commits mailing list