[arch-commits] Commit in mongodb/repos (8 files)

Felix Yan felixonmars at archlinux.org
Tue Jan 3 10:38:44 UTC 2017


    Date: Tuesday, January 3, 2017 @ 10:38:43
  Author: felixonmars
Revision: 204770

archrelease: copy trunk to community-staging-x86_64

Added:
  mongodb/repos/community-staging-x86_64/
  mongodb/repos/community-staging-x86_64/PKGBUILD
    (from rev 204769, mongodb/trunk/PKGBUILD)
  mongodb/repos/community-staging-x86_64/boost160.patch
    (from rev 204769, mongodb/trunk/boost160.patch)
  mongodb/repos/community-staging-x86_64/mongodb-3.2.10-boost-1.62.0.patch
    (from rev 204769, mongodb/trunk/mongodb-3.2.10-boost-1.62.0.patch)
  mongodb/repos/community-staging-x86_64/mongodb-3.2.10-network_interface_asio_integration_test.patch
    (from rev 204769, mongodb/trunk/mongodb-3.2.10-network_interface_asio_integration_test.patch)
  mongodb/repos/community-staging-x86_64/mongodb.conf
    (from rev 204769, mongodb/trunk/mongodb.conf)
  mongodb/repos/community-staging-x86_64/mongodb.install
    (from rev 204769, mongodb/trunk/mongodb.install)
  mongodb/repos/community-staging-x86_64/mongodb.service
    (from rev 204769, mongodb/trunk/mongodb.service)

--------------------------------------------------------------+
 PKGBUILD                                                     |   83 ++++++++++
 boost160.patch                                               |   11 +
 mongodb-3.2.10-boost-1.62.0.patch                            |   15 +
 mongodb-3.2.10-network_interface_asio_integration_test.patch |   23 ++
 mongodb.conf                                                 |    8 
 mongodb.install                                              |   20 ++
 mongodb.service                                              |   10 +
 7 files changed, 170 insertions(+)

Copied: mongodb/repos/community-staging-x86_64/PKGBUILD (from rev 204769, mongodb/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2017-01-03 10:38:43 UTC (rev 204770)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Sven-Hendrik Haase <sh at lutzhaase.com>
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Mathias Stearn <mathias at 10gen.com>
+# Contributor: Alec Thomas
+
+pkgname=mongodb
+pkgver=3.4.1
+pkgrel=1
+pkgdesc='A high-performance, open source, schema-free document-oriented database'
+arch=('x86_64')
+url='http://www.mongodb.org'
+license=('AGPL3')
+depends=('pcre' 'snappy' 'openssl' 'libsasl' 'boost-libs' 'yaml-cpp' 'lsb-release' 'wiredtiger')
+makedepends=('scons' 'readline' 'ncurses' 'libpcap' 'boost')
+checkdepends=('python2-pymongo' 'python2-yaml')
+optdepends=('libpcap: needed for mongosniff'
+            'mongodb-tools: mongoimport, mongodump, mongotop, etc')
+backup=('etc/mongodb.conf')
+install=mongodb.install
+source=("http://downloads.mongodb.org/src/mongodb-src-r${pkgver}.tar.gz"
+        'mongodb.conf' 'mongodb.service' 'mongodb-3.2.10-boost-1.62.0.patch')
+sha512sums=('48400f00ed84922b1e734ad915c376a567af2cd32e9cdcc40819fdfbc0a5c2444e4f325b1a541fc21cf87f4d95f9bdcc64bd59eab9d25e75b28732978feda031'
+            '05dead727d3ea5fe8af1a3c3888693f6b3e2b8cb7f197a5d793352e10d2c524e96c9a5c55ad2e88c1114643a9612ec0b26a2574b48a5260a9b51ec8941461f1c'
+            '177251404b2e818ae2b546fe8b13cb76e348c99e85c7bef22a04b0f07b600fd515a309ede50214f4198594388a6d2b31f46e945b9dae84aabb4dfa13b1123bb9'
+            'd6f014d2778decde268b9e856d812bc61f7c45986aad751e44fdece39aa8a96505b77e0b917ea38880501497e01d4b051a6f3205c82af653425b5247cd813417')
+
+_scons_args=(
+  --use-system-boost
+  --use-system-pcre
+  --use-system-snappy
+  --use-system-yaml
+  --use-system-zlib
+  --use-system-wiredtiger
+  --use-sasl-client
+  --ssl
+  --disable-warnings-as-errors
+  # --use-system-asio     # https://jira.mongodb.org/browse/SERVER-21839
+  # --use-system-v8       # Doesn't compile
+  # --use-system-tcmalloc # Disabled as upstream suggests in https://jira.mongodb.org/browse/SERVER-17447?focusedCommentId=841890&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-841890
+)
+
+prepare() {
+  cd mongodb-src-r${pkgver}
+  patch -Np1 -i ../mongodb-3.2.10-boost-1.62.0.patch
+
+  sed -e 's|-std=c++11|-std=gnu++11|g' -i SConstruct  # tests use hex floats, not supported in plain C++
+}
+
+build() {
+  cd mongodb-src-r${pkgver}
+  export SCONSFLAGS="$MAKEFLAGS"
+
+  scons core tools "${_scons_args[@]}"
+}
+
+check() {
+  cd mongodb-src-r${pkgver}
+  export SCONSFLAGS="$MAKEFLAGS"
+
+  # Setting LANG to workaround the following test error:
+  # std::exception: locale::facet::_S_create_c_locale name not valid
+  scons unittests "${_scons_args[@]}"
+  LANG=en_US.UTF-8 python2 buildscripts/resmoke.py --suites=unittests
+
+  scons dbtest "${_scons_args[@]}"
+  python2 buildscripts/resmoke.py --suites=dbtest
+
+  scons integration_tests "${_scons_args[@]}"
+  python2 buildscripts/resmoke.py --suites=integration_tests_replset,integration_tests_standalone --dbpathPrefix="$srcdir"
+}
+
+package() {
+  cd mongodb-src-r${pkgver}
+
+  scons install --prefix="$pkgdir/usr" --nostrip "${_scons_args[@]}"
+
+  install -Dm644 "$srcdir/mongodb.conf" "$pkgdir/etc/mongodb.conf"
+  install -Dm644 "$srcdir/mongodb.service" "$pkgdir/usr/lib/systemd/system/mongodb.service"
+  install -dm700 "$pkgdir/var/lib/mongodb"
+  install -dm755 "$pkgdir/var/log/mongodb"
+}

Copied: mongodb/repos/community-staging-x86_64/boost160.patch (from rev 204769, mongodb/trunk/boost160.patch)
===================================================================
--- community-staging-x86_64/boost160.patch	                        (rev 0)
+++ community-staging-x86_64/boost160.patch	2017-01-03 10:38:43 UTC (rev 204770)
@@ -0,0 +1,11 @@
+diff -uprb mongodb-src-r3.2.0.orig/SConstruct mongodb-src-r3.2.0/SConstruct
+--- mongodb-src-r3.2.0.orig/SConstruct	2015-12-02 21:01:34.000000000 +0200
++++ mongodb-src-r3.2.0/SConstruct	2015-12-22 11:18:23.613216445 +0200
+@@ -2245,6 +2245,7 @@ def doConfigure(myenv):
+             # permit more than four parameters.
+             "BOOST_THREAD_DONT_PROVIDE_VARIADIC_THREAD",
+             "BOOST_SYSTEM_NO_DEPRECATED",
++            "BOOST_OPTIONAL_USE_SINGLETON_DEFINITION_OF_NONE",
+         ]
+     )
+ 

Copied: mongodb/repos/community-staging-x86_64/mongodb-3.2.10-boost-1.62.0.patch (from rev 204769, mongodb/trunk/mongodb-3.2.10-boost-1.62.0.patch)
===================================================================
--- community-staging-x86_64/mongodb-3.2.10-boost-1.62.0.patch	                        (rev 0)
+++ community-staging-x86_64/mongodb-3.2.10-boost-1.62.0.patch	2017-01-03 10:38:43 UTC (rev 204770)
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_mongo_db_fts_unicode_string.cpp,v 1.1 2016/10/10 13:15:40 ryoon Exp $
+
+* Fix build with boost 1.62.0
+
+--- a/src/mongo/db/fts/unicode/string.cpp.orig	2016-09-26 12:10:04.000000000 +0000
++++ b/src/mongo/db/fts/unicode/string.cpp
+@@ -274,7 +274,7 @@ bool String::substrMatch(const std::stri
+ 
+     // Case sensitive and diacritic sensitive.
+     return boost::algorithm::boyer_moore_search(
+-               haystack.begin(), haystack.end(), needle.begin(), needle.end()) != haystack.end();
++               haystack.begin(), haystack.end(), needle.begin(), needle.end()) != std::make_pair(haystack.end(), haystack.end());
+ }
+ 
+ }  // namespace unicode

Copied: mongodb/repos/community-staging-x86_64/mongodb-3.2.10-network_interface_asio_integration_test.patch (from rev 204769, mongodb/trunk/mongodb-3.2.10-network_interface_asio_integration_test.patch)
===================================================================
--- community-staging-x86_64/mongodb-3.2.10-network_interface_asio_integration_test.patch	                        (rev 0)
+++ community-staging-x86_64/mongodb-3.2.10-network_interface_asio_integration_test.patch	2017-01-03 10:38:43 UTC (rev 204770)
@@ -0,0 +1,23 @@
+From ea20ce71ee1151abc5bbe5ea60713a86d34a751a Mon Sep 17 00:00:00 2001
+From: Waley Chen <waleycz at gmail.com>
+Date: Fri, 6 May 2016 17:53:10 -0400
+Subject: [PATCH] SERVER-23951 network_interface_asio_integration_test //
+ ExceededTimeLimit
+
+---
+ src/mongo/executor/network_interface_asio_integration_test.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/mongo/executor/network_interface_asio_integration_test.cpp b/src/mongo/executor/network_interface_asio_integration_test.cpp
+index cb85f27..617ae36 100644
+--- a/src/mongo/executor/network_interface_asio_integration_test.cpp
++++ b/src/mongo/executor/network_interface_asio_integration_test.cpp
+@@ -170,7 +170,7 @@ class StressTestOp {
+     using Fixture = NetworkInterfaceASIOIntegrationTest;
+     using Pool = ThreadPoolInterface;
+ 
+-    Deferred<Status> run(Fixture* fixture, Pool* pool, Milliseconds timeout = Milliseconds(5000)) {
++    Deferred<Status> run(Fixture* fixture, Pool* pool, Milliseconds timeout = Milliseconds(60000)) {
+         auto cb = makeCallbackHandle();
+         auto self = *this;
+         auto out =

Copied: mongodb/repos/community-staging-x86_64/mongodb.conf (from rev 204769, mongodb/trunk/mongodb.conf)
===================================================================
--- community-staging-x86_64/mongodb.conf	                        (rev 0)
+++ community-staging-x86_64/mongodb.conf	2017-01-03 10:38:43 UTC (rev 204770)
@@ -0,0 +1,8 @@
+# See http://www.mongodb.org/display/DOCS/File+Based+Configuration for format details
+# Run mongod --help to see a list of options
+
+bind_ip = 127.0.0.1
+quiet = true
+dbpath = /var/lib/mongodb
+logpath = /var/log/mongodb/mongod.log
+logappend = true

Copied: mongodb/repos/community-staging-x86_64/mongodb.install (from rev 204769, mongodb/trunk/mongodb.install)
===================================================================
--- community-staging-x86_64/mongodb.install	                        (rev 0)
+++ community-staging-x86_64/mongodb.install	2017-01-03 10:38:43 UTC (rev 204770)
@@ -0,0 +1,20 @@
+# vim: syntax=sh
+
+post_install() {
+  post_upgrade $1 ''
+
+  if [ "$(uname -m)" != "x86_64" ]
+  then
+    echo '==> Warning: the 32 bit version of MongoDB is limited to about 2GB of data.'
+    echo '==> See http://blog.mongodb.org/post/137788967/32-bit-limitations'
+  fi
+}
+
+post_upgrade() {
+  if ! getent passwd mongodb >/dev/null
+  then
+    useradd -r -g daemon -d /var/lib/mongodb -s /bin/bash mongodb
+  fi
+  chown -R mongodb:daemon /var/lib/mongodb
+  chown -R mongodb:daemon /var/log/mongodb
+}

Copied: mongodb/repos/community-staging-x86_64/mongodb.service (from rev 204769, mongodb/trunk/mongodb.service)
===================================================================
--- community-staging-x86_64/mongodb.service	                        (rev 0)
+++ community-staging-x86_64/mongodb.service	2017-01-03 10:38:43 UTC (rev 204770)
@@ -0,0 +1,10 @@
+[Unit]
+Description=High-performance, schema-free document-oriented database
+After=network.target
+
+[Service]
+User=mongodb
+ExecStart=/usr/bin/mongod --quiet --config /etc/mongodb.conf
+
+[Install]
+WantedBy=multi-user.target



More information about the arch-commits mailing list