Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit d192252

Browse files
author
Matt Cotter
committed
Minor: move repository url
1 parent 95b72d9 commit d192252

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Mangrove [![Build Status](https://travis-ci.org/mongodb/mangrove.svg?branch=master)](https://travis-ci.org/mongodb/mangrove)
1+
# Mangrove [![Build Status](https://travis-ci.org/mongodb-labs/mangrove.svg?branch=master)](https://travis-ci.org/mongodb-labs/mangrove)
22

33
Welcome to Mangrove, the MongoDB C++ ODM!
44

hugo/content/1-basics/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Build and install the C++ driver according to its {{% a_blank "quickstart guide"
3939

4040
Clone the repository, and check out the latest stable release.
4141

42-
* `git clone -b master https://github.com/mongodb/mangrove`
42+
* `git clone -b master https://github.com/mongodb-labs/mangrove`
4343

4444
Build Mangrove with the following commands:
4545

@@ -76,4 +76,4 @@ If you're not using `pkg-config`, you'll need to add the following flags to your
7676
* `-lmangrove`
7777
* `-lboson`
7878
* `-lmongocxx`
79-
* `-lbsoncxx`
79+
* `-lbsoncxx`

hugo/layouts/partials/menu.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
</a>
5858
</li>
5959
<li class="dd-item">
60-
<a href="https://github.com/mongodb/mangrove">
60+
<a href="https://github.com/mongodb-labs/mangrove">
6161
<span>
6262
<b> 7. </b> Source Code
6363
</span>

src/boson/config/libboson.pc.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ libdir=${prefix}/lib
1818

1919
Name: libboson
2020
Description: The MongoDB C++11 ODM BSON Library
21-
URL: http://github.com/mongodb/mangrove
21+
URL: http://github.com/mongodb-labs/mangrove
2222
Version: @BOSON_VERSION@
2323
Requires.private: libbsoncxx >= @LIBBSONCXX_REQUIRED_VERSION@
2424
Cflags: -I${includedir}/boson/@BOSON_INLINE_NAMESPACE@ -I${includedir}/boson/@BOSON_INLINE_NAMESPACE@/boson/third_party

src/mangrove/config/libmangrove.pc.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ libdir=${prefix}/lib
1818

1919
Name: libmangrove
2020
Description: Mangrove: MongoDB C++14 ODM Library
21-
URL: http://github.com/mongodb/mangrove
21+
URL: http://github.com/mongodb-labs/mangrove
2222
Version: @MANGROVE_VERSION@
2323
Requires.private: libbsoncxx >= @LIBBSONCXX_REQUIRED_VERSION@
2424
Cflags: -I${includedir}/mangrove/@MANGROVE_INLINE_NAMESPACE@

travis-install-deps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if [ ! -d "$HOME/deps/lib" ]; then
1919
# Download and Install Mongo C++ Driver
2020
git clone -b 'master' --single-branch https://github.com/mongodb/mongo-cxx-driver.git;
2121
pushd mongo-cxx-driver/build;
22-
$HOME/build/mongodb/mangrove/build/${CMAKE_BINARY} -DCMAKE_CXX_FLAGS="-Wno-ignored-attributes" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME/deps/ .. && make -j$(grep -c ^processor /proc/cpuinfo) && make install;
22+
$HOME/build/mongodb-labs/mangrove/build/${CMAKE_BINARY} -DCMAKE_CXX_FLAGS="-Wno-ignored-attributes" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME/deps/ .. && make -j$(grep -c ^processor /proc/cpuinfo) && make install;
2323
popd;
2424

2525
# Leave deps directory

0 commit comments

Comments
 (0)