Skip to content

Commit

Permalink
rstdocs: update git URLs
Browse files Browse the repository at this point in the history
Github has dropped support for the old git:// protocol, so adjust
those.  The ffmpeg repo URL was also wrong.
  • Loading branch information
qyot27 committed Jan 11, 2022
1 parent 88c6595 commit fb10121
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
Expand Up @@ -168,7 +168,7 @@ one line. Make sure to copy/paste all of the lines in the command.
Download the AviSynth+ source:
::

git clone -b git://github.com/AviSynth/AviSynthPlus.git && \
git clone https://github.com/AviSynth/AviSynthPlus && \
cd AviSynthPlus

Set up the packaging directory for later:
Expand Down Expand Up @@ -582,7 +582,7 @@ Grab the AviSynth+ source code:
::

cd $HOME && \
git clone -b git://github.com/AviSynth/AviSynthPlus.git && \
git clone https://github.com/AviSynth/AviSynthPlus && \
cd AviSynthPlus && \
mkdir -p avisynth-build/i686 avisynth-build/amd64

Expand Down Expand Up @@ -638,7 +638,7 @@ The full instructions for that are contained in the first section of
Download the source code and prepare the build directories:
::

git clone -b git://github.com/AviSynth/AviSynthPlus.git && \
git clone https://github.com/AviSynth/AviSynthPlus && \
cd AviSynthPlus && \
mkdir -p avisynth-build/i686 avisynth-build/amd64 && \
AVSDIRNAME=avisynth+-gcc_r$(git rev-list --count HEAD)-g$(git rev-parse --short HEAD)-$(date --rfc-3339=date | sed 's/-//g') && \
Expand Down
Expand Up @@ -154,7 +154,7 @@ can grab any changes that occur upstream:

::

git remote add upstream git://github.com/AviSynth/AviSynthPlus.git
git remote add upstream https://github.com/AviSynth/AviSynthPlus
git fetch upstream

This is a two-step process. Let's break it down: *git remote* is the name of the
Expand All @@ -165,7 +165,7 @@ you want to track.
+------------+------------+----------+--------------------------------------------+
| Command | Subcommand | Name | URL |
+============+============+==========+============================================+
| git remote | add | upstream | git://github.com/AviSynth/AviSynthPlus.git |
| git remote | add | upstream | https://github.com/AviSynth/AviSynthPlus |
+------------+------------+----------+--------------------------------------------+

On its own, though, this only sets up the bookmark. It doesn't
Expand Down
12 changes: 6 additions & 6 deletions distrib/docs/english/source/avisynthdoc/contributing/posix.rst
Expand Up @@ -40,7 +40,7 @@ Ubuntu 19.10 or higher

::

git clone git://github.com/AviSynth/AviSynthPlus.git && \
git clone https://github.com/AviSynth/AviSynthPlus && \
cd AviSynthPlus && \
mkdir avisynth-build && \
cd avisynth-build && \
Expand All @@ -61,7 +61,7 @@ the use of the `filesystem submodule`_.

::

git clone --recursive git://github.com/AviSynth/AviSynthPlus.git && \
git clone --recursive https://github.com/AviSynth/AviSynthPlus && \
cd AviSynthPlus && \
mkdir avisynth-build && \
cd avisynth-build && \
Expand Down Expand Up @@ -112,7 +112,7 @@ using `an external implementation`_ as a submodule.

::

git clone --recursive git://github.com/AviSynth/AviSynthPlus.git && \
git clone --recursive https://github.com/AviSynth/AviSynthPlus && \
cd AviSynthPlus && \
mkdir avisynth-build && \
cd avisynth-build
Expand Down Expand Up @@ -144,7 +144,7 @@ Tested on FreeBSD 12.1.

pkg install cmake git gmake ninja

git clone git://github.com/AviSynth/AviSynthPlus.git && \
git clone https://github.com/AviSynth/AviSynthPlus && \
cd AviSynthPlus && \
mkdir avisynth-build && \
cd avisynth-build
Expand Down Expand Up @@ -222,7 +222,7 @@ Building FFmpeg

::

git clone git://git.ffmpeg.org/ffmpeg.git
git clone https://git.videolan.org/git/ffmpeg.git
cd ffmpeg


Expand Down Expand Up @@ -319,7 +319,7 @@ built straight away.

::

git clone git://github.com/ffms/ffms2.git && \
git clone https://github.com/ffms/ffms2 && \
cd ffms2


Expand Down

0 comments on commit fb10121

Please sign in to comment.