2014-02-04 15:38:10 +00:00
# $Id$
2014-10-11 15:29:22 +00:00
# Maintainer: Felix Yan <felixonmars@archlinux.org>
2014-02-04 15:38:10 +00:00
# Contributor: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: Mathias Stearn <mathias@10gen.com>
# Contributor: Alec Thomas
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2014-05-06 22:30:05 +00:00
# - build -j2 (RAM constraints)
2014-02-22 00:20:34 +00:00
# - use system v8 (older 3.16 package)
2015-04-02 23:14:17 +00:00
# - disable WiredTiger storage engine (FTBFS)
2015-10-10 03:11:51 +00:00
# - use system tcmalloc (from added gperftools dependency)
2014-02-04 15:38:10 +00:00
pkgname = mongodb
2015-10-14 12:11:48 +00:00
pkgver = 3.0.7
pkgrel = 1
2014-02-04 15:38:10 +00:00
pkgdesc = 'A high-performance, open source, schema-free document-oriented database'
arch = ( 'i686' 'x86_64' )
url = 'http://www.mongodb.org'
license = ( 'AGPL3' )
2015-10-10 03:11:51 +00:00
depends = ( 'boost-libs' 'pcre' 'snappy' 'openssl' 'v8-3.16' 'libsasl' 'gperftools' )
2015-08-07 12:08:16 +00:00
makedepends = ( 'scons' 'readline' 'ncurses' 'libpcap' 'boost' )
2014-02-04 15:38:10 +00:00
checkdepends = ( 'python2-pymongo' )
2015-04-02 12:22:31 +00:00
optdepends = ( 'libpcap: needed for mongosniff'
'mongodb-tools: mongoimport, mongodump, mongotop, etc' )
2014-02-04 15:38:10 +00:00
backup = ( 'etc/mongodb.conf' )
install = mongodb.install
source = ( " http://downloads.mongodb.org/src/mongodb-src-r ${ pkgver } .tar.gz "
2015-08-26 12:22:46 +00:00
'mongodb.conf' 'mongodb.service' )
2015-10-14 12:11:48 +00:00
sha512sums = ( '183691c5dc137ea4b86d53d24d2935fd66ed8de60fbf5eca0a0a39c159be1f29043cd655cde1a213a98a76b2b3e6369dbccf790b02a1cc4b622c067ad3c0c91b'
2015-01-22 04:13:52 +00:00
'05dead727d3ea5fe8af1a3c3888693f6b3e2b8cb7f197a5d793352e10d2c524e96c9a5c55ad2e88c1114643a9612ec0b26a2574b48a5260a9b51ec8941461f1c'
2015-08-26 12:22:46 +00:00
'177251404b2e818ae2b546fe8b13cb76e348c99e85c7bef22a04b0f07b600fd515a309ede50214f4198594388a6d2b31f46e945b9dae84aabb4dfa13b1123bb9' )
2014-02-04 15:38:10 +00:00
2014-05-06 22:30:05 +00:00
MAKEFLAGS = "-j2"
2014-02-04 15:38:10 +00:00
2015-04-02 12:22:31 +00:00
_scons_args = (
--use-system-pcre
--use-system-snappy
--use-sasl-client
--use-system-boost
--variant-dir= build
--ssl
2015-08-07 12:08:16 +00:00
--c++11= on
2015-04-02 12:22:31 +00:00
--disable-warnings-as-errors
--use-system-v8
2015-04-02 23:14:17 +00:00
--wiredtiger= off
2015-10-10 03:11:51 +00:00
--use-system-tcmalloc
2015-04-02 12:22:31 +00:00
)
# --use-system-yaml (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)
2014-02-04 15:38:10 +00:00
build( ) {
# fucking mongo aint no fun to package
export SCONSFLAGS = " $MAKEFLAGS "
cd mongodb-src-r${ pkgver }
2015-04-02 12:22:31 +00:00
scons all " ${ _scons_args [@] } "
2014-02-04 15:38:10 +00:00
}
check( ) {
2015-10-14 12:11:48 +00:00
# All tests disabled for 3.0.7
2014-02-04 15:38:10 +00:00
export SCONSFLAGS = " $MAKEFLAGS "
cd mongodb-src-r${ pkgver }
2015-10-14 12:11:48 +00:00
# TODO: jstests
# python2 buildscripts/resmoke.py --dbpathPrefix="$srcdir"
scons dbtest " ${ _scons_args [@] } "
# python2 buildscripts/resmoke.py --set suite dbtest
scons unittests " ${ _scons_args [@] } "
# python2 buildscripts/resmoke.py --set suite unittests
2014-02-04 15:38:10 +00:00
}
package( ) {
export SCONSFLAGS = " $MAKEFLAGS "
cd mongodb-src-r${ pkgver }
2015-04-02 12:22:31 +00:00
scons install --prefix= " $pkgdir /usr " " ${ _scons_args [@] } "
2014-02-04 15:38:10 +00:00
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 "
}