diff options
author | Lance Albertson <ramereth@gentoo.org> | 2011-03-02 07:40:40 +0000 |
---|---|---|
committer | Lance Albertson <ramereth@gentoo.org> | 2011-03-02 07:40:40 +0000 |
commit | 6bb5ba41819a5464cb085c087ebbe7cbede29151 (patch) | |
tree | 6f7f2ce656a8066b8f366d64c9df41f2272ab1b8 /dev-db/mongodb/files | |
parent | Version bump. (diff) | |
download | gentoo-2-6bb5ba41819a5464cb085c087ebbe7cbede29151.tar.gz gentoo-2-6bb5ba41819a5464cb085c087ebbe7cbede29151.tar.bz2 gentoo-2-6bb5ba41819a5464cb085c087ebbe7cbede29151.zip |
Massive ebuild cleanup
(Portage version: 2.1.9.25/cvs/Linux x86_64)
Diffstat (limited to 'dev-db/mongodb/files')
-rw-r--r-- | dev-db/mongodb/files/mongodb-1.5-modify-post-strip.patch | 12 | ||||
-rw-r--r-- | dev-db/mongodb/files/mongodb-1.5-modify-testing.patch | 44 |
2 files changed, 0 insertions, 56 deletions
diff --git a/dev-db/mongodb/files/mongodb-1.5-modify-post-strip.patch b/dev-db/mongodb/files/mongodb-1.5-modify-post-strip.patch deleted file mode 100644 index 5795c7e48925..000000000000 --- a/dev-db/mongodb/files/mongodb-1.5-modify-post-strip.patch +++ /dev/null @@ -1,12 +0,0 @@ -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.5-modify-testing.patch b/dev-db/mongodb/files/mongodb-1.5-modify-testing.patch deleted file mode 100644 index eac7843d5c2f..000000000000 --- a/dev-db/mongodb/files/mongodb-1.5-modify-testing.patch +++ /dev/null @@ -1,44 +0,0 @@ -diff -ur mongodb-src-r1.4.0/SConstruct mongodb-src-r1.4.0.new/SConstruct ---- mongodb-src-r1.4.0/SConstruct 2010-03-02 07:37:07.000000000 -0800 -+++ mongodb-src-r1.4.0.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.4.0/dbtests/dbtests.cpp mongodb-src-r1.4.0.new/dbtests/dbtests.cpp ---- mongodb-src-r1.4.0/dbtests/dbtests.cpp 2010-03-02 07:37:07.000000000 -0800 -+++ mongodb-src-r1.4.0.new/dbtests/dbtests.cpp 2010-03-07 22:40:37.000000000 -0800 -@@ -23,6 +23,6 @@ - - int main( int argc, char** argv ) { - static StaticObserver StaticObserver; -- return Suite::run(argc, argv, "/tmp/unittest"); -+ return Suite::run(argc, argv, "testdir/tmp/unittest"); - } |