mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-29 20:42:23 +00:00
Import Debian changes 0.27.0+dfsg.1-0.4
libgit2 (0.27.0+dfsg.1-0.4) experimental; urgency=medium * Non-maintainer upload. * Fix stack smashing error on 32-bit targets (Closes: #900126)
This commit is contained in:
parent
10ac34c1c2
commit
e837e0b7af
8
debian/changelog
vendored
8
debian/changelog
vendored
@ -1,11 +1,9 @@
|
|||||||
libgit2 (0.27.0+dfsg.1-0.4) experimental; urgency=medium
|
libgit2 (0.27.0+dfsg.1-0.4) experimental; urgency=medium
|
||||||
|
|
||||||
* Non-maintainer upload
|
* Non-maintainer upload.
|
||||||
* Switch vcs to salsa
|
* Fix stack smashing error on 32-bit targets (Closes: #900126)
|
||||||
* Bump standards version to 4.1.4
|
|
||||||
* Bump debhelper compatibility level to 11
|
|
||||||
|
|
||||||
-- Pirate Praveen <praveen@debian.org> Mon, 04 Jun 2018 18:41:38 +0530
|
-- John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> Sat, 26 May 2018 16:27:33 +0200
|
||||||
|
|
||||||
libgit2 (0.27.0+dfsg.1-0.3) experimental; urgency=medium
|
libgit2 (0.27.0+dfsg.1-0.3) experimental; urgency=medium
|
||||||
|
|
||||||
|
8
debian/control
vendored
8
debian/control
vendored
@ -2,14 +2,14 @@ Source: libgit2
|
|||||||
Section: libs
|
Section: libs
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Maintainer: Russell Sim <russell.sim@gmail.com>
|
Maintainer: Russell Sim <russell.sim@gmail.com>
|
||||||
Build-Depends: debhelper (>= 11~),
|
Build-Depends: debhelper (>= 11),
|
||||||
python-minimal (>= 2.4.0), pkg-config,
|
python-minimal (>= 2.4.0), pkg-config,
|
||||||
cmake, libz-dev, libmbedtls-dev,
|
cmake, libz-dev, libmbedtls-dev,
|
||||||
libssh2-1-dev, libhttp-parser-dev, libkrb5-dev
|
libssh2-1-dev, libhttp-parser-dev, libkrb5-dev
|
||||||
Standards-Version: 4.1.4
|
Standards-Version: 4.1.3
|
||||||
Homepage: https://libgit2.github.com/
|
Homepage: https://libgit2.github.com/
|
||||||
Vcs-Git: https://salsa.debian.org/debian/libgit2.git
|
Vcs-Git: https://anonscm.debian.org/git/collab-maint/libgit2.git/
|
||||||
Vcs-Browser: https://salsa.debian.org/debian/libgit2
|
Vcs-Browser: https://anonscm.debian.org/git/collab-maint/libgit2.git/
|
||||||
|
|
||||||
|
|
||||||
Package: libgit2-dev
|
Package: libgit2-dev
|
||||||
|
19
debian/patches/fix-stack-smashing-error.patch
vendored
Normal file
19
debian/patches/fix-stack-smashing-error.patch
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
Description: Fix stack smashing error on 32-bit targets
|
||||||
|
Fix stack smashing due to wrong size of struct stat on the
|
||||||
|
stack on 32-bit systems with 64-bit file descriptor offsets
|
||||||
|
enabled by adding -D_FILE_OFFSET_BITS=64 when compiling the
|
||||||
|
test suite.
|
||||||
|
.
|
||||||
|
Author: Andreas Baumann <mail@andreasbaumann.cc>
|
||||||
|
Last-Update: 2018-05-26
|
||||||
|
|
||||||
|
--- libgit2-0.27.0+dfsg.1.orig/tests/CMakeLists.txt
|
||||||
|
+++ libgit2-0.27.0+dfsg.1/tests/CMakeLists.txt
|
||||||
|
@@ -9,6 +9,7 @@ SET(CLAR_FIXTURES "${CMAKE_CURRENT_SOURC
|
||||||
|
SET(CLAR_PATH "${CMAKE_CURRENT_SOURCE_DIR}")
|
||||||
|
ADD_DEFINITIONS(-DCLAR_FIXTURE_PATH=\"${CLAR_FIXTURES}\")
|
||||||
|
ADD_DEFINITIONS(-DCLAR_TMPDIR=\"libgit2_tests\")
|
||||||
|
+ADD_DEFINITIONS(-D_FILE_OFFSET_BITS=64)
|
||||||
|
|
||||||
|
INCLUDE_DIRECTORIES(${CLAR_PATH} ${libgit2_BINARY_DIR}/src)
|
||||||
|
FILE(GLOB_RECURSE SRC_TEST ${CLAR_PATH}/*/*.c ${CLAR_PATH}/*/*.h)
|
1
debian/patches/series
vendored
1
debian/patches/series
vendored
@ -2,3 +2,4 @@ use-mbedtls.patch
|
|||||||
disable-online-tests.patch
|
disable-online-tests.patch
|
||||||
remove-mbedtls-from-pkgconfig.patch
|
remove-mbedtls-from-pkgconfig.patch
|
||||||
index-Fix-alignment-issues-in-write_disk_entry.patch
|
index-Fix-alignment-issues-in-write_disk_entry.patch
|
||||||
|
fix-stack-smashing-error.patch
|
||||||
|
4
debian/rules
vendored
4
debian/rules
vendored
@ -59,5 +59,5 @@ override_dh_installexamples:
|
|||||||
dh_installexamples --exclude .gitignore
|
dh_installexamples --exclude .gitignore
|
||||||
|
|
||||||
%:
|
%:
|
||||||
dh $@ --buildsystem cmake --dbgsym-migration='libgit2-dbg (<< 0.26.0+dfsg.1-1~)' --builddirectory=build-debian-release
|
dh $@ --parallel --buildsystem cmake --dbgsym-migration='libgit2-dbg (<< 0.26.0+dfsg.1-1~)' --builddirectory=build-debian-release
|
||||||
dh $@ --buildsystem cmake --builddirectory=build-debian-devel
|
dh $@ --parallel --buildsystem cmake --builddirectory=build-debian-devel
|
||||||
|
Loading…
Reference in New Issue
Block a user