mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-28 12:51:44 +01:00
CVE-2016-10128: smart_pkt: verify packet length exceeds PKT_LEN_SIZE CVE-2016-10129: smart_pkt: treat empty packet lines as error CVE-2016-10130: http: check certificate validity before clobbering the error variable
57 lines
1.8 KiB
Plaintext
57 lines
1.8 KiB
Plaintext
# Contributor: Sergei Lukin <sergej.lukin@gmail.com>
|
|
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
# Contributor: Pierre-Gilas MILLON <pgmillon@gmail.com>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libgit2
|
|
pkgver=0.25.1
|
|
pkgrel=0
|
|
pkgdesc="A linkable library for Git"
|
|
url="https://libgit2.github.com/"
|
|
arch="all"
|
|
license="GPLv2"
|
|
depends=""
|
|
depends_dev="curl-dev libssh2-dev"
|
|
makedepends="$depends_dev python2 cmake zlib-dev libressl-dev"
|
|
subpackages="$pkgname-dev"
|
|
provides="$pkgname-libs" # for backward compatibility with v3.4
|
|
replaces="$pkgname-libs" # for backward compatibility with v3.4
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/v$pkgver.tar.gz
|
|
libressl.patch
|
|
"
|
|
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
|
|
# secfixes:
|
|
# 0.25.1-r0:
|
|
# - CVE-2016-10128
|
|
# - CVE-2016-10129
|
|
# - CVE-2016-10130
|
|
# 0.24.3-r0:
|
|
# - CVE-2016-8568
|
|
# - CVE-2016-8569
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
|
-DBUILD_SHARED_LIBS=True \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_CXX_FLAGS="$CXXFLAGS" \
|
|
-DCMAKE_C_FLAGS="$CFLAGS" \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" \
|
|
-C "$builddir" install || return 1
|
|
}
|
|
|
|
md5sums="3b285ce94200f00c34962711f001b192 libgit2-0.25.1.tar.gz
|
|
cbe35a6ce1ae8e87426af0c172fdaafd libressl.patch"
|
|
sha256sums="7ae8e699ff7ff9a1fa702249140ee31ea6fd556bf7968e84e38165870667bcb1 libgit2-0.25.1.tar.gz
|
|
4f9f801c6b50a731d96a2f0f75497b2ae5762ee0be0ef626964c63a50d1c40dc libressl.patch"
|
|
sha512sums="bbd0d27c95406b548185ce02e2a9288a9dcb8c3b28476ba20f4f4917f6bd67f1ddee80de3054d30b79cdb9d973c3061a15ea7847c79bfa4e0c62e41d5195cb99 libgit2-0.25.1.tar.gz
|
|
3674957d09207b11d268ba9fcb442a081b8efe318d0e8501b7afa0ae2397efc9aff8572b1ffd9f2286c46a06a647fbe943c2cc7e8f97d1a0288e74010846d439 libressl.patch"
|