Skip to content

Commit

Permalink
Problem: Documentation shows invalid links.
Browse files Browse the repository at this point in the history
See also zeromq/libzmq#4427 for reference.

`git clone git://gihub.com` no more supported:
```
prompt> cd zyre
prompt> find . -type f | grep -v '/.git/' | xargs grep 'git://github.com'
./README.md:    git clone git://github.com/zeromq/libzmq.git
./README.md:    git clone git://github.com/zeromq/czmq.git
./README.md:    git clone git://github.com/zeromq/zyre.git
./README.md:    git clone git://github.com/zeromq/libzmq.git
./README.md:    git clone git://github.com/zeromq/czmq.git
./README.md:    git clone git://github.com/zeromq/zyre.git
./README.md:git clone git://github.com/zeromq/libzmq.git
./README.md:git clone git://github.com/zeromq/czmq.git
./README.md:git clone git://github.com/zeromq/zyre.git
./README.txt:    git clone git://github.com/zeromq/libzmq.git
./README.txt:    git clone git://github.com/zeromq/czmq.git
./README.txt:    git clone git://github.com/zeromq/zyre.git
./README.txt:    git clone git://github.com/zeromq/libzmq.git
./README.txt:    git clone git://github.com/zeromq/czmq.git
./README.txt:    git clone git://github.com/zeromq/zyre.git
./README.txt:git clone git://github.com/zeromq/libzmq.git
./README.txt:git clone git://github.com/zeromq/czmq.git
./README.txt:git clone git://github.com/zeromq/zyre.git
prompt>
```

Solution: Change all `git://github.com` with `https://github.com`.
  • Loading branch information
stephan57160 committed Sep 22, 2022
1 parent 4377f69 commit bbbc255
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Here's how to build Zyre from GitHub (building from packages is very similar, yo
sudo make install
cd ..
git clone git://github.com/zeromq/libzmq.git
git clone https://github.com/zeromq/libzmq.git
cd libzmq
./autogen.sh
# do not specify "--with-libsodium" if you prefer to use internal tweetnacl
Expand All @@ -128,14 +128,14 @@ Here's how to build Zyre from GitHub (building from packages is very similar, yo
sudo ldconfig
cd ..
git clone git://github.com/zeromq/czmq.git
git clone https://github.com/zeromq/czmq.git
cd czmq
./autogen.sh && ./configure && make check
sudo make install
sudo ldconfig
cd ..
git clone git://github.com/zeromq/zyre.git
git clone https://github.com/zeromq/zyre.git
cd zyre
./autogen.sh && ./configure && make check
sudo make install
Expand Down Expand Up @@ -166,9 +166,9 @@ Now let's build Zyre from GitHub:

```
git clone --depth 1 -b stable https://github.com/jedisct1/libsodium.git
git clone git://github.com/zeromq/libzmq.git
git clone git://github.com/zeromq/czmq.git
git clone git://github.com/zeromq/zyre.git
git clone https://github.com/zeromq/libzmq.git
git clone https://github.com/zeromq/czmq.git
git clone https://github.com/zeromq/zyre.git
cd zyre\builds\msvc
configure.bat
cd build
Expand Down Expand Up @@ -223,7 +223,7 @@ Once done, you can find the library files under `libsodium\bin\<Win32|x64>\<Debu
Here, the `<Platform Toolset>` is the platform toolset you are using: `v100` for `VS2010`, `v140` for `VS2015`, `v141` for `VS2017`, etc.

```
git clone git://github.com/zeromq/libzmq.git
git clone https://github.com/zeromq/libzmq.git
cd libzmq
mkdir build
cd build
Expand All @@ -238,7 +238,7 @@ cd ..\..\
Next, let's build `czmq`:

```
git clone git://github.com/zeromq/czmq.git
git clone https://github.com/zeromq/czmq.git
cd czmq
mkdir build
cd build
Expand All @@ -253,7 +253,7 @@ That is not the whole story. We didn't mention the building of `libcurl`, `lz4`,
Now, it is time to build `zyre`:

```
git clone git://github.com/zeromq/zyre.git
git clone https://github.com/zeromq/zyre.git
cd zyre
mkdir build
cd build
Expand Down
18 changes: 9 additions & 9 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Here's how to build Zyre from GitHub (building from packages is very similar, yo
sudo make install
cd ..

git clone git://github.com/zeromq/libzmq.git
git clone https://github.com/zeromq/libzmq.git
cd libzmq
./autogen.sh
# do not specify "--with-libsodium" if you prefer to use internal tweetnacl
Expand All @@ -104,14 +104,14 @@ Here's how to build Zyre from GitHub (building from packages is very similar, yo
sudo ldconfig
cd ..

git clone git://github.com/zeromq/czmq.git
git clone https://github.com/zeromq/czmq.git
cd czmq
./autogen.sh && ./configure && make check
sudo make install
sudo ldconfig
cd ..

git clone git://github.com/zeromq/zyre.git
git clone https://github.com/zeromq/zyre.git
cd zyre
./autogen.sh && ./configure && make check
sudo make install
Expand Down Expand Up @@ -142,9 +142,9 @@ Now let's build Zyre from GitHub:

```
git clone --depth 1 -b stable https://github.com/jedisct1/libsodium.git
git clone git://github.com/zeromq/libzmq.git
git clone git://github.com/zeromq/czmq.git
git clone git://github.com/zeromq/zyre.git
git clone https://github.com/zeromq/libzmq.git
git clone https://github.com/zeromq/czmq.git
git clone https://github.com/zeromq/zyre.git
cd zyre\builds\msvc
configure.bat
cd build
Expand Down Expand Up @@ -199,7 +199,7 @@ Once done, you can find the library files under `libsodium\bin\<Win32|x64>\<Debu
Here, the `<Platform Toolset>` is the platform toolset you are using: `v100` for `VS2010`, `v140` for `VS2015`, `v141` for `VS2017`, etc.

```
git clone git://github.com/zeromq/libzmq.git
git clone https://github.com/zeromq/libzmq.git
cd libzmq
mkdir build
cd build
Expand All @@ -214,7 +214,7 @@ cd ..\..\
Next, let's build `czmq`:

```
git clone git://github.com/zeromq/czmq.git
git clone https://github.com/zeromq/czmq.git
cd czmq
mkdir build
cd build
Expand All @@ -229,7 +229,7 @@ That is not the whole story. We didn't mention the building of `libcurl`, `lz4`,
Now, it is time to build `zyre`:

```
git clone git://github.com/zeromq/zyre.git
git clone https://github.com/zeromq/zyre.git
cd zyre
mkdir build
cd build
Expand Down

0 comments on commit bbbc255

Please sign in to comment.