Update install docs with the v0.26 version of libgit2

This commit is contained in:
Carlos Martín Nieto
2017-07-03 15:48:20 +02:00
parent 2ce8b952c4
commit 96d37e16a9

View File

@@ -14,7 +14,7 @@ Requirements
============ ============
- Python 2.7, 3.3+ or PyPy 2.6+ (including the development headers) - Python 2.7, 3.3+ or PyPy 2.6+ (including the development headers)
- Libgit2 v0.25.x - Libgit2 v0.26.x
- cffi 1.0+ - cffi 1.0+
- six - six
- tox (optional) - tox (optional)
@@ -43,11 +43,11 @@ while the last number |lq| *.micro* |rq| auto-increments independently.
As illustration see this table of compatible releases: As illustration see this table of compatible releases:
+-----------+----------------+------------------------+ +-----------+--------+-------=========+------------------------+
|**libgit2**| 0.25.0, 0.25.1 | 0.24.0, 0.24.1, 0.24.2 | |**libgit2**| 0.26.0 | 0.25.0, 0.25.1 | 0.24.0, 0.24.1, 0.24.2 |
+-----------+----------------+------------------------+ +-----------+--------+----------------+------------------------+
|**pygit2** | 0.25.0, 0.25.1 | 0.24.0, 0.24.1, 0.24.2 | |**pygit2** | 0.26.0 | 0.25.0, 0.25.1 | 0.24.0, 0.24.1, 0.24.2 |
+-----------+----------------+------------------------+ +-----------+--------+----------------+------------------------+
.. warning:: .. warning::
@@ -64,9 +64,9 @@ directory, do:
.. code-block:: sh .. code-block:: sh
$ wget https://github.com/libgit2/libgit2/archive/v0.25.1.tar.gz $ wget https://github.com/libgit2/libgit2/archive/v0.26.0.tar.gz
$ tar xzf v0.25.1.tar.gz $ tar xzf v0.26.0.tar.gz
$ cd libgit2-0.25.1/ $ cd libgit2-0.26.0/
$ cmake . $ cmake .
$ make $ make
$ sudo make install $ sudo make install
@@ -148,9 +148,9 @@ Install libgit2 (see we define the installation prefix):
.. code-block:: sh .. code-block:: sh
$ wget https://github.com/libgit2/libgit2/archive/v0.25.1.tar.gz $ wget https://github.com/libgit2/libgit2/archive/v0.26.0.tar.gz
$ tar xzf v0.25.1.tar.gz $ tar xzf v0.26.0.tar.gz
$ cd libgit2-0.25.1/ $ cd libgit2-0.26.0/
$ cmake . -DCMAKE_INSTALL_PREFIX=$LIBGIT2 $ cmake . -DCMAKE_INSTALL_PREFIX=$LIBGIT2
$ make $ make
$ make install $ make install
@@ -186,7 +186,7 @@ everytime. Verify yourself if curious:
.. code-block:: sh .. code-block:: sh
$ readelf --dynamic lib/python2.7/site-packages/pygit2-0.25.1-py2.7-linux-x86_64.egg/_pygit2.so | grep PATH $ readelf --dynamic lib/python2.7/site-packages/pygit2-0.26.0-py2.7-linux-x86_64.egg/_pygit2.so | grep PATH
0x000000000000001d (RUNPATH) Library runpath: [/tmp/venv/lib] 0x000000000000001d (RUNPATH) Library runpath: [/tmp/venv/lib]
@@ -203,9 +203,9 @@ from a bash shell:
.. code-block:: sh .. code-block:: sh
$ export LIBGIT2=C:/Dev/libgit2 $ export LIBGIT2=C:/Dev/libgit2
$ wget https://github.com/libgit2/libgit2/archive/v0.25.1.tar.gz $ wget https://github.com/libgit2/libgit2/archive/v0.26.0.tar.gz
$ tar xzf v0.25.1.tar.gz $ tar xzf v0.26.0.tar.gz
$ cd libgit2-0.25.1/ $ cd libgit2-0.26.0/
$ cmake . -DSTDCALL=OFF -DCMAKE_INSTALL_PREFIX=$LIBGIT2 -G "Visual Studio 9 2008" $ cmake . -DSTDCALL=OFF -DCMAKE_INSTALL_PREFIX=$LIBGIT2 -G "Visual Studio 9 2008"
$ cmake --build . --config release --target install $ cmake --build . --config release --target install
$ ctest -v $ ctest -v