Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
572e4d8c
Unverified
Commit
572e4d8c
authored
Feb 14, 2019
by
Edward Thomson
Committed by
GitHub
Feb 14, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4983 from libgit2/ethomson/v0_28_1
Release v0.28.1
parents
1a107fac
65fff789
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
67 additions
and
28 deletions
+67
-28
CMakeLists.txt
+4
-2
README.md
+2
-1
azure-pipelines.yml
+10
-9
azure-pipelines/nightly.yml
+14
-13
ci/build.sh
+13
-1
docs/changelog.md
+10
-0
examples/CMakeLists.txt
+3
-0
include/git2/version.h
+2
-2
src/common.h
+6
-0
tests/CMakeLists.txt
+3
-0
No files found.
CMakeLists.txt
View file @
572e4d8c
...
...
@@ -64,6 +64,7 @@ OPTION(USE_EXT_HTTP_PARSER "Use system HTTP_Parser if available" ON)
OPTION
(
DEBUG_POOL
"Enable debug pool allocator"
OFF
)
OPTION
(
ENABLE_WERROR
"Enable compilation with -Werror"
OFF
)
OPTION
(
USE_BUNDLED_ZLIB
"Use the bundled version of zlib"
OFF
)
OPTION
(
DEPRECATE_HARD
"Do not include deprecated functions in the library"
OFF
)
IF
(
UNIX AND NOT APPLE
)
OPTION
(
ENABLE_REPRODUCIBLE_BUILDS
"Enable reproducible builds"
OFF
)
...
...
@@ -105,8 +106,9 @@ SET(LIBGIT2_VERSION_STRING "${LIBGIT2_VERSION_MAJOR}.${LIBGIT2_VERSION_MINOR}.${
FILE
(
STRINGS
"
${
libgit2_SOURCE_DIR
}
/include/git2/version.h"
GIT2_HEADER_SOVERSION REGEX
"^#define LIBGIT2_SOVERSION [0-9]+$"
)
STRING
(
REGEX REPLACE
"^.*LIBGIT2_SOVERSION ([0-9]+)$"
"
\\
1"
LIBGIT2_SOVERSION
"
${
GIT2_HEADER_SOVERSION
}
"
)
# Ensure that we do not use deprecated functions internally
ADD_DEFINITIONS
(
-DGIT_DEPRECATE_HARD
)
IF
(
DEPRECATE_HARD
)
ADD_DEFINITIONS
(
-DGIT_DEPRECATE_HARD
)
ENDIF
()
# Platform specific compilation flags
IF
(
MSVC
)
...
...
README.md
View file @
572e4d8c
...
...
@@ -4,9 +4,10 @@ libgit2 - the Git linkable library
| Build Status | |
| ------------ | - |
|
**master**
branch CI builds |
[

](https://dev.azure.com/libgit2/libgit2/_build/latest?definitionId=7&branchName=master) |
|
**v0.28 branch**
CI builds |
[

](https://dev.azure.com/libgit2/libgit2/_build/latest?definitionId=7&branchName=maint/v0.28) |
|
**v0.27 branch**
CI builds |
[

](https://dev.azure.com/libgit2/libgit2/_build/latest?definitionId=7&branchName=maint/v0.27) |
|
**v0.26 branch**
CI builds |
[

](https://dev.azure.com/libgit2/libgit2/_build/latest?definitionId=7&branchName=maint/v0.26) |
|
**Nightly**
builds |
[

](https://libgit2.visualstudio.com/libgit2/_build/latest?definitionId=9&branchName=master)
[

](https://dev.azure.com/libgit2/libgit2/_build/latest?definitionId=21?branchName=master)
[

](https://scan.coverity.com/projects/639) |
|
**Nightly**
builds |
[

](https://libgit2.visualstudio.com/libgit2/_build/latest?definitionId=9&branchName=master)
[

](https://dev.azure.com/libgit2/libgit2/_build/latest?definitionId=21?branchName=master)
[

](https://scan.coverity.com/projects/639) |
`libgit2`
is a portable, pure C implementation of the Git core methods
provided as a linkable library with a solid API, allowing to build Git
...
...
azure-pipelines.yml
View file @
572e4d8c
...
...
@@ -16,7 +16,7 @@ jobs:
imageName
:
'
libgit2/trusty-amd64:latest'
environmentVariables
:
|
CC=gcc
CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL
CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL
-DDEPRECATE_HARD=ON
LEAK_CHECK=valgrind
-
job
:
linux_amd64_trusty_gcc_mbedtls
...
...
@@ -29,7 +29,7 @@ jobs:
imageName
:
'
libgit2/trusty-amd64:latest'
environmentVariables
:
|
CC=gcc
CMAKE_OPTIONS=-DUSE_HTTPS=mbedTLS -DSHA1_BACKEND=mbedTLS
CMAKE_OPTIONS=-DUSE_HTTPS=mbedTLS -DSHA1_BACKEND=mbedTLS
-DDEPRECATE_HARD=ON
LEAK_CHECK=valgrind
-
job
:
linux_amd64_trusty_clang_openssl
...
...
@@ -42,7 +42,7 @@ jobs:
imageName
:
'
libgit2/trusty-amd64:latest'
environmentVariables
:
|
CC=clang
CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL
CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL
-DDEPRECATE_HARD=ON
LEAK_CHECK=valgrind
-
job
:
linux_amd64_trusty_clang_mbedtls
...
...
@@ -55,7 +55,7 @@ jobs:
imageName
:
'
libgit2/trusty-amd64:latest'
environmentVariables
:
|
CC=clang
CMAKE_OPTIONS=-DUSE_HTTPS=mbedTLS -DSHA1_BACKEND=mbedTLS
CMAKE_OPTIONS=-DUSE_HTTPS=mbedTLS -DSHA1_BACKEND=mbedTLS
-DDEPRECATE_HARD=ON
LEAK_CHECK=valgrind
-
job
:
macos
...
...
@@ -71,7 +71,8 @@ jobs:
TMPDIR
:
$(Agent.TempDirectory)
PKG_CONFIG_PATH
:
/usr/local/opt/openssl/lib/pkgconfig
LEAK_CHECK
:
leaks
CMAKE_OPTIONS
:
-G Ninja
CMAKE_OPTIONS
:
-G Ninja -DDEPRECATE_HARD=ON
SKIP_SSH_TESTS
:
true
-
job
:
windows_vs_amd64
displayName
:
'
Windows
(amd64;
Visual
Studio)'
...
...
@@ -80,7 +81,7 @@ jobs:
-
template
:
azure-pipelines/powershell.yml
parameters
:
environmentVariables
:
CMAKE_OPTIONS
:
-DMSVC_CRTDBG=ON -G"Visual Studio 12 2013 Win64"
CMAKE_OPTIONS
:
-DMSVC_CRTDBG=ON -G"Visual Studio 12 2013 Win64"
-DDEPRECATE_HARD=ON
-
job
:
windows_vs_x86
displayName
:
'
Windows
(x86;
Visual
Studio)'
...
...
@@ -89,7 +90,7 @@ jobs:
-
template
:
azure-pipelines/powershell.yml
parameters
:
environmentVariables
:
CMAKE_OPTIONS
:
-DMSVC_CRTDBG=ON -G"Visual Studio 12 2013"
CMAKE_OPTIONS
:
-DMSVC_CRTDBG=ON -G"Visual Studio 12 2013"
-DDEPRECATE_HARD=ON
-
job
:
windows_mingw_amd64
displayName
:
'
Windows
(amd64;
MinGW)'
...
...
@@ -103,7 +104,7 @@ jobs:
-
template
:
azure-pipelines/powershell.yml
parameters
:
environmentVariables
:
CMAKE_OPTIONS
:
-G"MinGW Makefiles"
CMAKE_OPTIONS
:
-G"MinGW Makefiles"
-DDEPRECATE_HARD=ON
PATH
:
$(Agent.TempDirectory)\mingw64\bin;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\CMake\bin
-
job
:
windows_mingw_x86
...
...
@@ -119,7 +120,7 @@ jobs:
-
template
:
azure-pipelines/powershell.yml
parameters
:
environmentVariables
:
CMAKE_OPTIONS
:
-G"MinGW Makefiles"
CMAKE_OPTIONS
:
-G"MinGW Makefiles"
-DDEPRECATE_HARD=ON
PATH
:
$(Agent.TempDirectory)\mingw32\bin;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\CMake\bin
-
job
:
documentation
...
...
azure-pipelines/nightly.yml
View file @
572e4d8c
...
...
@@ -12,7 +12,7 @@ jobs:
imageName
:
'
libgit2/trusty-amd64:latest'
environmentVariables
:
|
CC=gcc
CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL
CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL
-DDEPRECATE_HARD=ON
LEAK_CHECK=valgrind
RUN_INVASIVE_TESTS=true
...
...
@@ -26,7 +26,7 @@ jobs:
imageName
:
'
libgit2/trusty-amd64:latest'
environmentVariables
:
|
CC=gcc
CMAKE_OPTIONS=-DUSE_HTTPS=mbedTLS -DSHA1_BACKEND=mbedTLS
CMAKE_OPTIONS=-DUSE_HTTPS=mbedTLS -DSHA1_BACKEND=mbedTLS
-DDEPRECATE_HARD=ON
LEAK_CHECK=valgrind
RUN_INVASIVE_TESTS=true
...
...
@@ -40,7 +40,7 @@ jobs:
imageName
:
'
libgit2/trusty-amd64:latest'
environmentVariables
:
|
CC=clang
CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL
CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL
-DDEPRECATE_HARD=ON
LEAK_CHECK=valgrind
RUN_INVASIVE_TESTS=true
...
...
@@ -54,7 +54,7 @@ jobs:
imageName
:
'
libgit2/trusty-amd64:latest'
environmentVariables
:
|
CC=clang
CMAKE_OPTIONS=-DUSE_HTTPS=mbedTLS -DSHA1_BACKEND=mbedTLS
CMAKE_OPTIONS=-DUSE_HTTPS=mbedTLS -DSHA1_BACKEND=mbedTLS
-DDEPRECATE_HARD=ON
LEAK_CHECK=valgrind
RUN_INVASIVE_TESTS=true
...
...
@@ -71,8 +71,9 @@ jobs:
TMPDIR
:
$(Agent.TempDirectory)
PKG_CONFIG_PATH
:
/usr/local/opt/openssl/lib/pkgconfig
LEAK_CHECK
:
leaks
CMAKE_OPTIONS
:
-G Ninja
CMAKE_OPTIONS
:
-G Ninja
-DDEPRECATE_HARD=ON
RUN_INVASIVE_TESTS
:
true
SKIP_SSH_TESTS
:
true
-
job
:
windows_vs_amd64
displayName
:
'
Windows
(amd64;
Visual
Studio)'
...
...
@@ -81,7 +82,7 @@ jobs:
-
template
:
powershell.yml
parameters
:
environmentVariables
:
CMAKE_OPTIONS
:
-DMSVC_CRTDBG=ON -G"Visual Studio 12 2013 Win64"
CMAKE_OPTIONS
:
-DMSVC_CRTDBG=ON -G"Visual Studio 12 2013 Win64"
-DDEPRECATE_HARD=ON
RUN_INVASIVE_TESTS
:
true
-
job
:
windows_vs_x86
...
...
@@ -91,7 +92,7 @@ jobs:
-
template
:
powershell.yml
parameters
:
environmentVariables
:
CMAKE_OPTIONS
:
-DMSVC_CRTDBG=ON -G"Visual Studio 12 2013"
CMAKE_OPTIONS
:
-DMSVC_CRTDBG=ON -G"Visual Studio 12 2013"
-DDEPRECATE_HARD=ON
RUN_INVASIVE_TESTS
:
true
-
job
:
windows_mingw_amd64
...
...
@@ -106,7 +107,7 @@ jobs:
-
template
:
powershell.yml
parameters
:
environmentVariables
:
CMAKE_OPTIONS
:
-G"MinGW Makefiles"
CMAKE_OPTIONS
:
-G"MinGW Makefiles"
-DDEPRECATE_HARD=ON
PATH
:
$(Agent.TempDirectory)\mingw64\bin;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\CMake\bin
RUN_INVASIVE_TESTS
:
true
...
...
@@ -123,7 +124,7 @@ jobs:
-
template
:
powershell.yml
parameters
:
environmentVariables
:
CMAKE_OPTIONS
:
-G"MinGW Makefiles"
CMAKE_OPTIONS
:
-G"MinGW Makefiles"
-DDEPRECATE_HARD=ON
PATH
:
$(Agent.TempDirectory)\mingw32\bin;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\CMake\bin
RUN_INVASIVE_TESTS
:
true
...
...
@@ -138,7 +139,7 @@ jobs:
imageName
:
'
libgit2/bionic-x86:latest'
environmentVariables
:
|
CC=gcc
CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL
CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL
-DDEPRECATE_HARD=ON
LEAK_CHECK=valgrind
RUN_INVASIVE_TESTS=true
...
...
@@ -153,7 +154,7 @@ jobs:
imageName
:
'
libgit2/bionic-x86:latest'
environmentVariables
:
|
CC=clang
CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL
CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL
-DDEPRECATE_HARD=ON
LEAK_CHECK=valgrind
RUN_INVASIVE_TESTS=true
...
...
@@ -168,7 +169,7 @@ jobs:
imageName
:
'
libgit2/bionic-arm32:latest'
environmentVariables
:
|
CC=gcc
CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL
CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL
-DDEPRECATE_HARD=ON
RUN_INVASIVE_TESTS=true
SKIP_PROXY_TESTS=true
...
...
@@ -183,6 +184,6 @@ jobs:
imageName
:
'
libgit2/bionic-arm64:latest'
environmentVariables
:
|
CC=gcc
CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL
CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL
-DDEPRECATE_HARD=ON
RUN_INVASIVE_TESTS=true
SKIP_PROXY_TESTS=true
ci/build.sh
View file @
572e4d8c
...
...
@@ -16,8 +16,20 @@ indent() { sed "s/^/ /"; }
echo
"Source directory:
${
SOURCE_DIR
}
"
echo
"Build directory:
${
BUILD_DIR
}
"
echo
""
echo
"Operating system version:"
if
[
"
$(
uname
-s
)
"
=
"Darwin"
]
;
then
echo
"macOS version:"
sw_vers | indent
fi
if
[
-f
"/etc/debian_version"
]
;
then
echo
"Debian version:"
lsb_release
-a
| indent
fi
echo
"Kernel version:"
uname
-a
2>&1 | indent
echo
"CMake version:"
cmake
--version
2>&1 | indent
echo
"Compiler version:"
...
...
docs/changelog.md
View file @
572e4d8c
v0.28.1
-------
This is a bugfix release with the following change:
*
The deprecated functions (
`git_buf_free`
and the
`giterr_`
family of
functions) are now exported properly. In the v0.28 release, they were
not given the correct external attributes and they did not have the
correct linkage visibility in the v0.28 library.
v0.28
-----
...
...
examples/CMakeLists.txt
View file @
572e4d8c
...
...
@@ -5,6 +5,9 @@ FILE(GLOB_RECURSE SRC_EXAMPLE_GIT2 network/*.c network/*.h common.?)
ADD_EXECUTABLE
(
cgit2
${
SRC_EXAMPLE_GIT2
}
)
SET_TARGET_PROPERTIES
(
cgit2 PROPERTIES C_STANDARD 90
)
# Ensure that we do not use deprecated functions internally
ADD_DEFINITIONS
(
-DGIT_DEPRECATE_HARD
)
IF
(
WIN32 OR ANDROID
)
TARGET_LINK_LIBRARIES
(
cgit2 git2
)
ELSE
()
...
...
include/git2/version.h
View file @
572e4d8c
...
...
@@ -7,10 +7,10 @@
#ifndef INCLUDE_git_version_h__
#define INCLUDE_git_version_h__
#define LIBGIT2_VERSION "0.28.
0
"
#define LIBGIT2_VERSION "0.28.
1
"
#define LIBGIT2_VER_MAJOR 0
#define LIBGIT2_VER_MINOR 28
#define LIBGIT2_VER_REVISION
0
#define LIBGIT2_VER_REVISION
1
#define LIBGIT2_VER_PATCH 0
#define LIBGIT2_SOVERSION 28
...
...
src/common.h
View file @
572e4d8c
...
...
@@ -79,6 +79,12 @@
#include "thread-utils.h"
#include "integer.h"
/*
* Include the declarations for deprecated functions; this ensures
* that they're decorated with the proper extern/visibility attributes.
*/
#include "git2/deprecated.h"
#include <regex.h>
#define DEFAULT_BUFSIZE 65536
...
...
tests/CMakeLists.txt
View file @
572e4d8c
...
...
@@ -11,6 +11,9 @@ ADD_DEFINITIONS(-DCLAR_FIXTURE_PATH=\"${CLAR_FIXTURES}\")
ADD_DEFINITIONS(-DCLAR_TMPDIR=
\"
libgit2_tests
\"
)
ADD_DEFINITIONS(-D_FILE_OFFSET_BITS=64)
# Ensure that we do not use deprecated functions internally
ADD_DEFINITIONS(-DGIT_DEPRECATE_HARD)
INCLUDE_DIRECTORIES(
${
CLAR_PATH
}
${
libgit2_BINARY_DIR
}
/src)
FILE(GLOB_RECURSE SRC_TEST
${
CLAR_PATH
}
/*/*.c
${
CLAR_PATH
}
/*/*.h)
SET(SRC_CLAR "
main.c
" "
clar_libgit2.c
" "
clar_libgit2_trace.c
" "
clar_libgit2_timer.c
" "
clar.c
")
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment