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

Felix Yan fyan at nymeria.archlinux.org
Mon Mar 25 16:25:50 UTC 2013


    Date: Monday, March 25, 2013 @ 17:25:50
  Author: fyan
Revision: 86985

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  mongodb/repos/community-staging-i686/
  mongodb/repos/community-staging-i686/PKGBUILD
    (from rev 86984, mongodb/trunk/PKGBUILD)
  mongodb/repos/community-staging-i686/SConscript.client.patch
    (from rev 86984, mongodb/trunk/SConscript.client.patch)
  mongodb/repos/community-staging-i686/mongodb.conf
    (from rev 86984, mongodb/trunk/mongodb.conf)
  mongodb/repos/community-staging-i686/mongodb.install
    (from rev 86984, mongodb/trunk/mongodb.install)
  mongodb/repos/community-staging-i686/mongodb.service
    (from rev 86984, mongodb/trunk/mongodb.service)
  mongodb/repos/community-staging-i686/removeWerror.patch
    (from rev 86984, mongodb/trunk/removeWerror.patch)
  mongodb/repos/community-staging-x86_64/
  mongodb/repos/community-staging-x86_64/PKGBUILD
    (from rev 86984, mongodb/trunk/PKGBUILD)
  mongodb/repos/community-staging-x86_64/SConscript.client.patch
    (from rev 86984, mongodb/trunk/SConscript.client.patch)
  mongodb/repos/community-staging-x86_64/mongodb.conf
    (from rev 86984, mongodb/trunk/mongodb.conf)
  mongodb/repos/community-staging-x86_64/mongodb.install
    (from rev 86984, mongodb/trunk/mongodb.install)
  mongodb/repos/community-staging-x86_64/mongodb.service
    (from rev 86984, mongodb/trunk/mongodb.service)
  mongodb/repos/community-staging-x86_64/removeWerror.patch
    (from rev 86984, mongodb/trunk/removeWerror.patch)

--------------------------------------------------+
 community-staging-i686/PKGBUILD                  |   71 +++++++++++++++++++++
 community-staging-i686/SConscript.client.patch   |   13 +++
 community-staging-i686/mongodb.conf              |    8 ++
 community-staging-i686/mongodb.install           |   32 +++++++++
 community-staging-i686/mongodb.service           |   10 ++
 community-staging-i686/removeWerror.patch        |   11 +++
 community-staging-x86_64/PKGBUILD                |   71 +++++++++++++++++++++
 community-staging-x86_64/SConscript.client.patch |   13 +++
 community-staging-x86_64/mongodb.conf            |    8 ++
 community-staging-x86_64/mongodb.install         |   32 +++++++++
 community-staging-x86_64/mongodb.service         |   10 ++
 community-staging-x86_64/removeWerror.patch      |   11 +++
 12 files changed, 290 insertions(+)

Copied: mongodb/repos/community-staging-i686/PKGBUILD (from rev 86984, mongodb/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2013-03-25 16:25:50 UTC (rev 86985)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at gmail.com>
+# 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=2.4.1
+pkgrel=2
+pkgdesc='A high-performance, open source, schema-free document-oriented database'
+arch=('i686' 'x86_64')
+url='http://www.mongodb.org'
+license=('AGPL3')
+depends=('boost-libs')
+makedepends=('scons' 'boost' 'libpcap')
+checkdepends=('python2-pymongo')
+optdepends=('libpcap: needed for mongosniff')
+backup=('etc/mongodb.conf')
+install=mongodb.install
+source=("http://downloads.mongodb.org/src/mongodb-src-r${pkgver}.tar.gz"
+        'mongodb.conf' 'mongodb.service' 'SConscript.client.patch'
+        'removeWerror.patch')
+
+build() {
+  # fucking mongo aint no fun to package
+  export SCONSFLAGS="$MAKEFLAGS"
+
+  cd mongodb-src-r${pkgver}
+
+  # fix https://jira.mongodb.org/browse/SERVER-5575
+  patch -Np1 -i ${srcdir}/SConscript.client.patch
+
+  # failed to build with -Werror since 2.4.0
+  patch -Np1 -i "$srcdir/removeWerror.patch"
+
+  scons all --use-system-boost # --sharedclient currently fails
+}
+
+<<COMMENT
+check() {
+  export SCONSFLAGS="$MAKEFLAGS"
+
+  cd mongodb-src-r${pkgver}
+
+  scons smokeAll --smokedbprefix=$srcdir
+}
+COMMENT
+
+package() {
+  export SCONSFLAGS="$MAKEFLAGS"
+
+  cd mongodb-src-r${pkgver}
+
+  scons install --use-system-boost --full --prefix=$pkgdir/usr # --sharedclient currently fails
+
+  install -Dm644 "$srcdir/mongodb.conf" "$pkgdir/etc/mongodb.conf"
+  [[ -f "$pkgdir/usr/lib" ]] && rm "$pkgdir/usr/lib" # wtf mongo
+  install -Dm644 "$srcdir/mongodb.service" "$pkgdir/usr/lib/systemd/system/mongodb.service"
+  install -dm700 "$pkgdir/var/lib/mongodb"
+  install -dm755 "$pkgdir/var/log/mongodb"
+
+  # the earlier SConscript patch actually gives us some trouble on x86_64 so we need to hack it out again
+  mv ${pkgdir}/usr/lib64/libmongoclient.a ${pkgdir}/usr/lib/ || true
+  rm -r ${pkgdir}/usr/lib64 || true
+}
+md5sums=('2123758b166144947860b2af490996c1'
+         '4839fe1d638187ca3226e8267b947318'
+         '96ab4517b48974ce0e566d9746a75a4f'
+         'a9529e2a6e392ffecef7a9178394c814'
+         'c980ebfe46df6dc87f4b3380af69a6cc')

Copied: mongodb/repos/community-staging-i686/SConscript.client.patch (from rev 86984, mongodb/trunk/SConscript.client.patch)
===================================================================
--- community-staging-i686/SConscript.client.patch	                        (rev 0)
+++ community-staging-i686/SConscript.client.patch	2013-03-25 16:25:50 UTC (rev 86985)
@@ -0,0 +1,13 @@
+diff --git a/src/SConscript.client b/src/SConscript.client
+index 7a6bdc9..3fb55e5 100644
+--- a/src/SConscript.client
++++ b/src/SConscript.client
+@@ -134,7 +134,7 @@ env.Install(
+ # install
+ prefix = GetOption("prefix")
+ 
+-env.Install(prefix + "/lib", '${LIBPREFIX}mongoclient${LIBSUFFIX}')
++env.InstallAs(prefix + "/lib", '${LIBPREFIX}mongoclient${LIBSUFFIX}')
+ 
+ for x in clientHeaderDirectories:
+     env.Install(prefix + "/include/mongo/" + x,

Copied: mongodb/repos/community-staging-i686/mongodb.conf (from rev 86984, mongodb/trunk/mongodb.conf)
===================================================================
--- community-staging-i686/mongodb.conf	                        (rev 0)
+++ community-staging-i686/mongodb.conf	2013-03-25 16:25:50 UTC (rev 86985)
@@ -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-i686/mongodb.install (from rev 86984, mongodb/trunk/mongodb.install)
===================================================================
--- community-staging-i686/mongodb.install	                        (rev 0)
+++ community-staging-i686/mongodb.install	2013-03-25 16:25:50 UTC (rev 86985)
@@ -0,0 +1,32 @@
+# vim: syntax=sh
+
+post_install() {
+  useradd -r -g daemon -d /var/lib/mongodb -s /bin/bash mongodb
+  chown -R mongodb:daemon /var/lib/mongodb
+  chown -R mongodb:daemon /var/log/mongodb
+
+  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() {
+  chown -R mongodb:daemon /var/lib/mongodb
+  chown -R mongodb:daemon /var/log/mongodb
+
+  if [ "$(vercmp $2 1.8.2-3)" -lt 0 ]
+  then
+    # have to fix my fudge up in 1.8.2-2 and 1.8.2-3
+    # added july 5th, 2011
+    usermod -s /bin/bash mongodb >& /dev/null
+    echo 'The dbpath has changed from /var/state/mongodb to /var/lib/mongodb'
+    echo 'Make sure you move your data files to the new dbpath before you start/restart mongodb'
+    echo 'The logpath has changed from /var/log/mongod to /var/log/mongodb/mongod.log'
+  fi
+}
+
+pre_remove() {
+  userdel mongodb
+}

Copied: mongodb/repos/community-staging-i686/mongodb.service (from rev 86984, mongodb/trunk/mongodb.service)
===================================================================
--- community-staging-i686/mongodb.service	                        (rev 0)
+++ community-staging-i686/mongodb.service	2013-03-25 16:25:50 UTC (rev 86985)
@@ -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

Copied: mongodb/repos/community-staging-i686/removeWerror.patch (from rev 86984, mongodb/trunk/removeWerror.patch)
===================================================================
--- community-staging-i686/removeWerror.patch	                        (rev 0)
+++ community-staging-i686/removeWerror.patch	2013-03-25 16:25:50 UTC (rev 86985)
@@ -0,0 +1,11 @@
+--- a/SConstruct	2013-03-16 02:59:55.000000000 +0800
++++ b/SConstruct	2013-03-20 10:55:20.009645869 +0800
+@@ -692,7 +692,7 @@
+                          "-Winvalid-pch"] )
+     # env.Append( " -Wconversion" ) TODO: this doesn't really work yet
+     if linux:
+-        env.Append( CCFLAGS=["-Werror", "-pipe"] )
++        env.Append( CCFLAGS=["-pipe"] )
+         if not has_option('clang'):
+             env.Append( CCFLAGS=["-fno-builtin-memcmp"] ) # glibc's memcmp is faster than gcc's
+ 

Copied: mongodb/repos/community-staging-x86_64/PKGBUILD (from rev 86984, mongodb/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2013-03-25 16:25:50 UTC (rev 86985)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at gmail.com>
+# 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=2.4.1
+pkgrel=2
+pkgdesc='A high-performance, open source, schema-free document-oriented database'
+arch=('i686' 'x86_64')
+url='http://www.mongodb.org'
+license=('AGPL3')
+depends=('boost-libs')
+makedepends=('scons' 'boost' 'libpcap')
+checkdepends=('python2-pymongo')
+optdepends=('libpcap: needed for mongosniff')
+backup=('etc/mongodb.conf')
+install=mongodb.install
+source=("http://downloads.mongodb.org/src/mongodb-src-r${pkgver}.tar.gz"
+        'mongodb.conf' 'mongodb.service' 'SConscript.client.patch'
+        'removeWerror.patch')
+
+build() {
+  # fucking mongo aint no fun to package
+  export SCONSFLAGS="$MAKEFLAGS"
+
+  cd mongodb-src-r${pkgver}
+
+  # fix https://jira.mongodb.org/browse/SERVER-5575
+  patch -Np1 -i ${srcdir}/SConscript.client.patch
+
+  # failed to build with -Werror since 2.4.0
+  patch -Np1 -i "$srcdir/removeWerror.patch"
+
+  scons all --use-system-boost # --sharedclient currently fails
+}
+
+<<COMMENT
+check() {
+  export SCONSFLAGS="$MAKEFLAGS"
+
+  cd mongodb-src-r${pkgver}
+
+  scons smokeAll --smokedbprefix=$srcdir
+}
+COMMENT
+
+package() {
+  export SCONSFLAGS="$MAKEFLAGS"
+
+  cd mongodb-src-r${pkgver}
+
+  scons install --use-system-boost --full --prefix=$pkgdir/usr # --sharedclient currently fails
+
+  install -Dm644 "$srcdir/mongodb.conf" "$pkgdir/etc/mongodb.conf"
+  [[ -f "$pkgdir/usr/lib" ]] && rm "$pkgdir/usr/lib" # wtf mongo
+  install -Dm644 "$srcdir/mongodb.service" "$pkgdir/usr/lib/systemd/system/mongodb.service"
+  install -dm700 "$pkgdir/var/lib/mongodb"
+  install -dm755 "$pkgdir/var/log/mongodb"
+
+  # the earlier SConscript patch actually gives us some trouble on x86_64 so we need to hack it out again
+  mv ${pkgdir}/usr/lib64/libmongoclient.a ${pkgdir}/usr/lib/ || true
+  rm -r ${pkgdir}/usr/lib64 || true
+}
+md5sums=('2123758b166144947860b2af490996c1'
+         '4839fe1d638187ca3226e8267b947318'
+         '96ab4517b48974ce0e566d9746a75a4f'
+         'a9529e2a6e392ffecef7a9178394c814'
+         'c980ebfe46df6dc87f4b3380af69a6cc')

Copied: mongodb/repos/community-staging-x86_64/SConscript.client.patch (from rev 86984, mongodb/trunk/SConscript.client.patch)
===================================================================
--- community-staging-x86_64/SConscript.client.patch	                        (rev 0)
+++ community-staging-x86_64/SConscript.client.patch	2013-03-25 16:25:50 UTC (rev 86985)
@@ -0,0 +1,13 @@
+diff --git a/src/SConscript.client b/src/SConscript.client
+index 7a6bdc9..3fb55e5 100644
+--- a/src/SConscript.client
++++ b/src/SConscript.client
+@@ -134,7 +134,7 @@ env.Install(
+ # install
+ prefix = GetOption("prefix")
+ 
+-env.Install(prefix + "/lib", '${LIBPREFIX}mongoclient${LIBSUFFIX}')
++env.InstallAs(prefix + "/lib", '${LIBPREFIX}mongoclient${LIBSUFFIX}')
+ 
+ for x in clientHeaderDirectories:
+     env.Install(prefix + "/include/mongo/" + x,

Copied: mongodb/repos/community-staging-x86_64/mongodb.conf (from rev 86984, mongodb/trunk/mongodb.conf)
===================================================================
--- community-staging-x86_64/mongodb.conf	                        (rev 0)
+++ community-staging-x86_64/mongodb.conf	2013-03-25 16:25:50 UTC (rev 86985)
@@ -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 86984, mongodb/trunk/mongodb.install)
===================================================================
--- community-staging-x86_64/mongodb.install	                        (rev 0)
+++ community-staging-x86_64/mongodb.install	2013-03-25 16:25:50 UTC (rev 86985)
@@ -0,0 +1,32 @@
+# vim: syntax=sh
+
+post_install() {
+  useradd -r -g daemon -d /var/lib/mongodb -s /bin/bash mongodb
+  chown -R mongodb:daemon /var/lib/mongodb
+  chown -R mongodb:daemon /var/log/mongodb
+
+  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() {
+  chown -R mongodb:daemon /var/lib/mongodb
+  chown -R mongodb:daemon /var/log/mongodb
+
+  if [ "$(vercmp $2 1.8.2-3)" -lt 0 ]
+  then
+    # have to fix my fudge up in 1.8.2-2 and 1.8.2-3
+    # added july 5th, 2011
+    usermod -s /bin/bash mongodb >& /dev/null
+    echo 'The dbpath has changed from /var/state/mongodb to /var/lib/mongodb'
+    echo 'Make sure you move your data files to the new dbpath before you start/restart mongodb'
+    echo 'The logpath has changed from /var/log/mongod to /var/log/mongodb/mongod.log'
+  fi
+}
+
+pre_remove() {
+  userdel mongodb
+}

Copied: mongodb/repos/community-staging-x86_64/mongodb.service (from rev 86984, mongodb/trunk/mongodb.service)
===================================================================
--- community-staging-x86_64/mongodb.service	                        (rev 0)
+++ community-staging-x86_64/mongodb.service	2013-03-25 16:25:50 UTC (rev 86985)
@@ -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

Copied: mongodb/repos/community-staging-x86_64/removeWerror.patch (from rev 86984, mongodb/trunk/removeWerror.patch)
===================================================================
--- community-staging-x86_64/removeWerror.patch	                        (rev 0)
+++ community-staging-x86_64/removeWerror.patch	2013-03-25 16:25:50 UTC (rev 86985)
@@ -0,0 +1,11 @@
+--- a/SConstruct	2013-03-16 02:59:55.000000000 +0800
++++ b/SConstruct	2013-03-20 10:55:20.009645869 +0800
+@@ -692,7 +692,7 @@
+                          "-Winvalid-pch"] )
+     # env.Append( " -Wconversion" ) TODO: this doesn't really work yet
+     if linux:
+-        env.Append( CCFLAGS=["-Werror", "-pipe"] )
++        env.Append( CCFLAGS=["-pipe"] )
+         if not has_option('clang'):
+             env.Append( CCFLAGS=["-fno-builtin-memcmp"] ) # glibc's memcmp is faster than gcc's
+ 




More information about the arch-commits mailing list