summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLance Albertson <ramereth@gentoo.org>2010-03-08 07:05:30 +0000
committerLance Albertson <ramereth@gentoo.org>2010-03-08 07:05:30 +0000
commitbfff6a1c3141a2b7b03cb5f42458840e74a9c1bf (patch)
treeb441c455f1ed560adab247bd56e3d7b94e301a64 /dev-db/mongodb/files
parentAdd mask for =dev-db/mongodb-1.3* for development branch (diff)
downloadgentoo-2-bfff6a1c3141a2b7b03cb5f42458840e74a9c1bf.tar.gz
gentoo-2-bfff6a1c3141a2b7b03cb5f42458840e74a9c1bf.tar.bz2
gentoo-2-bfff6a1c3141a2b7b03cb5f42458840e74a9c1bf.zip
Version bump, add 1.3.x branch ebuild, remove postinst bits, use correct upstream tarball.
(Portage version: 2.1.7.17/cvs/Linux x86_64)
Diffstat (limited to 'dev-db/mongodb/files')
-rw-r--r--dev-db/mongodb/files/mongodb-1.3-modify-post-strip.patch12
-rw-r--r--dev-db/mongodb/files/mongodb-1.3-modify-testing.patch45
2 files changed, 57 insertions, 0 deletions
diff --git a/dev-db/mongodb/files/mongodb-1.3-modify-post-strip.patch b/dev-db/mongodb/files/mongodb-1.3-modify-post-strip.patch
new file mode 100644
index 000000000000..5795c7e48925
--- /dev/null
+++ b/dev-db/mongodb/files/mongodb-1.3-modify-post-strip.patch
@@ -0,0 +1,12 @@
+diff -ur mongodb-src-r1.3.3/SConstruct mongodb-src-r1.3.3.new/SConstruct
+--- mongodb-src-r1.3.3/SConstruct 2010-03-02 07:37:07.000000000 -0800
++++ mongodb-src-r1.3.3.new/SConstruct 2010-03-07 22:36:10.000000000 -0800
+@@ -1478,8 +1478,6 @@
+ fullInstallName = installDir + "/bin/" + name
+
+ allBinaries += [ name ]
+- if (solaris or linux) and (not GetOption("nostrip")):
+- e.AddPostAction( inst, e.Action( 'strip ' + fullInstallName ) )
+
+ if linux and len( COMMAND_LINE_TARGETS ) == 1 and str( COMMAND_LINE_TARGETS[0] ) == "s3dist":
+ e.AddPostAction( inst , checkGlibc )
diff --git a/dev-db/mongodb/files/mongodb-1.3-modify-testing.patch b/dev-db/mongodb/files/mongodb-1.3-modify-testing.patch
new file mode 100644
index 000000000000..b40d59d1459d
--- /dev/null
+++ b/dev-db/mongodb/files/mongodb-1.3-modify-testing.patch
@@ -0,0 +1,45 @@
+diff -ur mongodb-src-r1.3.3/SConstruct mongodb-src-r1.3.3.new/SConstruct
+--- mongodb-src-r1.3.3/SConstruct 2010-03-02 07:37:07.000000000 -0800
++++ mongodb-src-r1.3.3.new/SConstruct 2010-03-07 22:40:02.000000000 -0800
+@@ -1211,15 +1211,17 @@
+ Exit( 1 )
+
+ def ensureTestDirs():
+- ensureDir( "/tmp/unittest/" )
+- ensureDir( "/data/" )
+- ensureDir( "/data/db/" )
++ ensureDir( "testdir/" )
++ ensureDir( "testdir/tmp" )
++ ensureDir( "testdir/tmp/unittest/" )
++ ensureDir( "testdir/data/" )
++ ensureDir( "testdir/data/db/" )
+
+ def testSetup( env , target , source ):
+ ensureTestDirs()
+
+ if len( COMMAND_LINE_TARGETS ) == 1 and str( COMMAND_LINE_TARGETS[0] ) == "test":
+- ensureDir( "/tmp/unittest/" );
++ ensureDir( "testdir/tmp/unittest/" );
+
+ addSmoketest( "smoke", [ add_exe( "test" ) ] , [ test[ 0 ].abspath ] )
+ addSmoketest( "smokePerf", [ "perftest" ] , [ perftest[ 0 ].abspath ] )
+@@ -1297,7 +1299,7 @@
+ mongodForTestsPort = "32000"
+ import os
+ ensureTestDirs()
+- dirName = "/data/db/sconsTests/"
++ dirName = "testdir/data/db/sconsTests/"
+ ensureDir( dirName )
+ from subprocess import Popen
+ mongodForTests = Popen( [ mongod[0].abspath, "--port", mongodForTestsPort, "--dbpath", dirName ] )
+diff -ur mongodb-src-r1.3.3/dbtests/dbtests.cpp mongodb-src-r1.3.3.new/dbtests/dbtests.cpp
+--- mongodb-src-r1.3.3/dbtests/dbtests.cpp 2010-03-02 07:37:07.000000000 -0800
++++ mongodb-src-r1.3.3.new/dbtests/dbtests.cpp 2010-03-07 22:40:37.000000000 -0800
+@@ -22,6 +22,6 @@
+ #include "dbtests.h"
+
+ int main( int argc, char** argv ) {
+- return Suite::run(argc, argv, "/tmp/unittest");
++ return Suite::run(argc, argv, "testdir/tmp/unittest");
+ }
+