From 86ae7cca84ab301f7156d722216dd17b2cf1bb22 Mon Sep 17 00:00:00 2001 From: Michael Kuhn Date: Sat, 13 Jan 2024 00:29:35 +0100 Subject: [PATCH] Update URLs --- README.md | 8 ++++---- docs/src/build.md | 4 ++-- docs/src/julea-betree.md | 2 +- docs/src/julea-betree/usage.md | 2 +- docs/src/julea-sys/build.md | 2 +- docs/src/rfc/1-pivotkey.md | 2 +- docs/src/structure.md | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 8bd02b84..874dbf45 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Be-Tree Storage Stack -[![CI](https://github.com/julea-io/haura/workflows/CI/badge.svg)](https://github.com/julea-io/haura/actions) -[![Pages](https://github.com/julea-io/haura/workflows/Pages/badge.svg)](https://github.com/julea-io/haura/actions) +[![CI](https://github.com/parcio/haura/workflows/CI/badge.svg)](https://github.com/parcio/haura/actions) +[![Pages](https://github.com/parcio/haura/workflows/Pages/badge.svg)](https://github.com/parcio/haura/actions) A storage library offering key-value and object interfaces by managing B^ε-trees on block storage devices. @@ -10,7 +10,7 @@ A storage library offering key-value and object interfaces by managing B^ε-tree We advise you to use always the latest version of Rust *Stable*. For compatability we provide the minimum rust version also in the Cargo.toml of each crate in this project. ``` -git clone https://github.com/julea-io/haura +git clone https://github.com/parcio/haura cd haura/betree cargo build cd tests @@ -20,7 +20,7 @@ cd tests ## Documentation You can find an in-depth documentation and developer guide under -https://julea-io.github.io/haura or you may build it yourself locally. For +https://parcio.github.io/haura or you may build it yourself locally. For building the documentation [`mdbook`](https://rust-lang.github.io/mdBook/) is required. You can find install directions in their documentation under https://rust-lang.github.io/mdBook/. diff --git a/docs/src/build.md b/docs/src/build.md index a99fde13..973c1e38 100644 --- a/docs/src/build.md +++ b/docs/src/build.md @@ -53,10 +53,10 @@ $ sudo pacman -Sy glib2 clang make libbson pkgconf To compile the bindings you'll need JULEA present and specify it's headers in your environemnt. ```sh -# git clone https://github.com/julea-io/julea.git +# git clone https://github.com/parcio/julea.git # Support for seamless integration is not quite there yet in JULEA, we require a special fork $ git clone -b modules-conditional-unload https://github.com/tilpner/julea.git -$ git clone https://github.com/julea-io/haura.git +$ git clone https://github.com/parcio/haura.git ``` To build the complete _Haura_ project from this state, execute: diff --git a/docs/src/julea-betree.md b/docs/src/julea-betree.md index e4480ee3..04167374 100644 --- a/docs/src/julea-betree.md +++ b/docs/src/julea-betree.md @@ -3,6 +3,6 @@ To expose the `betree_storage_stack` usable to JULEA, we need to encapsulate the functionality by implementing the `Backend` type. For documentation of specifics refer to the [JULEA -documentation](https://github.com/julea-io/julea/blob/master/doc/implementing-backend.md). +documentation](https://github.com/parcio/julea/blob/master/doc/implementing-backend.md). You will most likely not need to modify this code when implementing features in *Haura*. diff --git a/docs/src/julea-betree/usage.md b/docs/src/julea-betree/usage.md index 1a4325a4..0f6f0adb 100644 --- a/docs/src/julea-betree/usage.md +++ b/docs/src/julea-betree/usage.md @@ -6,7 +6,7 @@ default, so check there when you are unsure). With the built library, we can switch to JULEA to integrate our results into their configuration. If you have not setup JULEA have a look at their -[documentation](https://github.com/julea-io/julea#quick-start). Continue their +[documentation](https://github.com/parcio/julea#quick-start). Continue their documentation until you configure JULEA with `julea-config`, then this documentation will use a modified procedure. diff --git a/docs/src/julea-sys/build.md b/docs/src/julea-sys/build.md index 3a424327..66a13709 100644 --- a/docs/src/julea-sys/build.md +++ b/docs/src/julea-sys/build.md @@ -8,7 +8,7 @@ points to the `include` directory of the JULEA repository. Also ensure that you have already installed all depending all depending libraries, for reference check [Chapter Building](../build.md). ```sh -$ git clone https://github.com/julea-io/julea.git +$ git clone https://github.com/parcio/julea.git $ export JULEA_INCLUDE=$PWD/julea/include $ export BINDGEN_EXTRA_CLANG_ARGS="$(pkg-config --cflags glib-2.0) $(pkg-config --cflags libbson-1.0)" ``` diff --git a/docs/src/rfc/1-pivotkey.md b/docs/src/rfc/1-pivotkey.md index 0fd712d1..ca8e5598 100644 --- a/docs/src/rfc/1-pivotkey.md +++ b/docs/src/rfc/1-pivotkey.md @@ -142,5 +142,5 @@ possible as with reconstruction of subtrees paths may be shifted around. With Currently the only advantage this method would have to the `PivotKey` method is that the size can be expected to remain comparatively low, with 5 bytes for each element in the search path. A restriction of key size as discussed in [the -corresponding issue](https://github.com/julea-io/haura/issues/12) could solve +corresponding issue](https://github.com/parcio/haura/issues/12) could solve this problem and is already in discussion. diff --git a/docs/src/structure.md b/docs/src/structure.md index 0fa4ef74..53c3534f 100644 --- a/docs/src/structure.md +++ b/docs/src/structure.md @@ -10,5 +10,5 @@ Implementation: - [**bectl**](./bectl.md): Allows for a basic acces to the storage stack as an CLI application. Bindings: -- [**julea-betree**](./julea-betree.md): Bindings exposed to be used by [JULEA](https://github.com/julea-io/julea). Specifies a betree backend. +- [**julea-betree**](./julea-betree.md): Bindings exposed to be used by [JULEA](https://github.com/parcio/julea). Specifies a betree backend. - [**julea-sys**](./julea-sys.md): Generated bindings by bindgen for use in *julea-betree*.