pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/libgit2 Update libgit2 to 0.24.1.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/e7585a74648c
branches:  trunk
changeset: 351836:e7585a74648c
user:      jperkin <jperkin%pkgsrc.org@localhost>
date:      Tue Aug 30 10:24:40 2016 +0000

description:
Update libgit2 to 0.24.1.

pkgsrc changes:

- re-enable libssh2 support
- ensure pkgsrc curl and http-parser are picked up and enabled

Upstream changes:

2f2575c Updating http parser to accept a `+` in the schema
ff8e3f0 Handle git+ssh:// and ssh+git:// protocols support
fa8b1a8 Adding spec coverage for ssh+git and git+ssh protocols
429155d Updating change to http_parser to reflect PR for nodejs/http-parser
e44f658 Removing #define for SSH_PREFIX_COUNT and using ARRAY_SIZE instead
b8dc15f Adding test cases that actually test the functionality of the new transport
4a93a7f Tabs
8ec3d88 Avoid subtraction overflow in git_indexer_commit
e3862c9 Buffer sideband packet data
cdded63 Remove duplicated calls to git_mwindow_close
eb09ead odb: improved not found error messages
9ee498e Only buffer if necessary.
4ebf745 mwindow: free unused windows if we fail to mmap
ffb1f41 describe: handle error code returned by git_pqueue_insert
e39ad74 config_file: handle missing quotation marks in section header
0370dae Check for __CLANG_INTTYPES_H
faf823d tests: transport: fix memory leaks with registering transports
fa4b93a backport git_oid__cpy_prefix
d0780b8 object: avoid call of memset with ouf of bounds pointer
e114bba index: assert required OID are non-NULL
1a16e8b pack-objects: fix memory leak on overflow
d96c063 submodule: avoid passing NULL pointers to strncmp
851c51a diff_tform: fix potential NULL pointer access
0b357e2 coverity: report errors when uploading tarball
8d3ee96 refdb_fs: fail if refcache returns NULL pointer
dd78d7d blame_git: handle error returned by `git_commit_parent`
f17ed63 blame: handle error when resoling HEAD in normalize_options
18c4ae7 filebuf: handle write error in `lock_file`
89e7604 config_cache: check return value of `git_config__lookup_entry`
c1ec732 Setup better defaults for OpenSSL ciphers
4e91020 Start error string with lower case character
cdde081 Use general cl_git_fail because the error is generic
f587f38 CMake: do not overwrite but only append to CMAKE_C_FLAGS_DEBUG
9a668ab Option "LIBGIT2_PREFIX" to set the CMAKE's TARGET_PROPERTIES PREFIX
d8fcafb Split the page size from the mmap alignment
e97d2d7 commit: fix extraction of single-line signatures
a1cf264 win32: free thread-local data on thread exit
c86a65b config: don't special-case multivars that don't exist yet
3ec0f2e xdiff/xprepare: use the XDF_DIFF_ALG() macro to access flag bits
56da07c xdiff/xprepare: fix a memory leak
fe1f477 Add a no-op size_t typedef for the doc parser
ab062a3 tests: fix core/stream test when built with openssl off
3e2e824 refs: provide a more general error message for dwim
ba52879 reset: use real ids for the tests
b6130fe refs::create: strict object creation on by default
e8d5df9 config: show we write a spurious duplicated section header
a13c1ec config: don't write section header if we're in it
21d8832 config::write::repeated: init our buffer
1778908 ignore: don't use realpath to canonicalize path
26f2cef tree: re-use the id and filename in the odb object
13ebf7b tree: store the entries in a growable array
af753ab tree: drop the now-unnecessary entries vector
1d59c85 status: update test to include valid OID
5cc7a5c tests: skip the unreadable file tests as root
2c1bc36 Plug a few leaks
6a35e74 leaks: fix some leaks in the tests
ccfacb8 leaks: call `xdl_free_classifier`
8edadbf index::racy: force racy entry

diffstat:

 devel/libgit2/Makefile |  10 +++++-----
 devel/libgit2/PLIST    |   4 ++--
 devel/libgit2/distinfo |  10 +++++-----
 3 files changed, 12 insertions(+), 12 deletions(-)

diffs (61 lines):

diff -r 3a8df2162ada -r e7585a74648c devel/libgit2/Makefile
--- a/devel/libgit2/Makefile    Tue Aug 30 08:00:14 2016 +0000
+++ b/devel/libgit2/Makefile    Tue Aug 30 10:24:40 2016 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.11 2016/07/09 13:03:39 wiz Exp $
+# $NetBSD: Makefile,v 1.12 2016/08/30 10:24:40 jperkin Exp $
 
-DISTNAME=      libgit2-0.24.0
+DISTNAME=      libgit2-0.24.1
 CATEGORIES=    devel
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=libgit2/}
 GITHUB_TAG=    v${PKGVERSION_NOREV}
@@ -14,13 +14,13 @@
 USE_TOOLS+=    pkg-config
 USE_CMAKE=     yes
 
-CMAKE_ARGS+=   -DUSE_SSH=OFF
-
 PKGCONFIG_OVERRIDE+=   libgit2.pc.in
 PYTHON_VERSIONS_INCOMPATIBLE=  34 35 # not yet ported as of 0.21.1
 
+.include "../../devel/zlib/buildlink3.mk"
 .include "../../security/libssh2/buildlink3.mk"
 .include "../../security/openssl/buildlink3.mk"
-.include "../../devel/zlib/buildlink3.mk"
 .include "../../lang/python/pyversion.mk"
+.include "../../www/curl/buildlink3.mk"
+.include "../../www/http-parser/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 3a8df2162ada -r e7585a74648c devel/libgit2/PLIST
--- a/devel/libgit2/PLIST       Tue Aug 30 08:00:14 2016 +0000
+++ b/devel/libgit2/PLIST       Tue Aug 30 10:24:40 2016 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2016/03/08 15:33:14 taca Exp $
+@comment $NetBSD: PLIST,v 1.5 2016/08/30 10:24:40 jperkin Exp $
 include/git2.h
 include/git2/annotated_commit.h
 include/git2/attr.h
@@ -75,6 +75,6 @@
 include/git2/types.h
 include/git2/version.h
 lib/libgit2.so
-lib/libgit2.so.${PKGVERSION}
+lib/libgit2.so.0.24.0
 lib/libgit2.so.24
 lib/pkgconfig/libgit2.pc
diff -r 3a8df2162ada -r e7585a74648c devel/libgit2/distinfo
--- a/devel/libgit2/distinfo    Tue Aug 30 08:00:14 2016 +0000
+++ b/devel/libgit2/distinfo    Tue Aug 30 10:24:40 2016 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.6 2016/03/08 15:33:14 taca Exp $
+$NetBSD: distinfo,v 1.7 2016/08/30 10:24:40 jperkin Exp $
 
-SHA1 (libgit2-0.24.0.tar.gz) = 1ca559573b5900a544a355a6ac0336517eb843f5
-RMD160 (libgit2-0.24.0.tar.gz) = 3e6f987abc1859b4da2129b2d83dcd8f616c06ed
-SHA512 (libgit2-0.24.0.tar.gz) = f41e8f9d4b03b392fb7f3a8a7e2ee806760d4c43fdc4270ef59d42c9d57f1f93681216ff4cfdfc6512b212bf7a37a4fe0fe9c44a04742fb3e2aef54c016136ba
-Size (libgit2-0.24.0.tar.gz) = 4169652 bytes
+SHA1 (libgit2-0.24.1.tar.gz) = 198ac53d713c521d940951ab5d6b90b75b941918
+RMD160 (libgit2-0.24.1.tar.gz) = c9c75373fedb66c1732d472dda05dfc4fe40d5fa
+SHA512 (libgit2-0.24.1.tar.gz) = 7ad06cef694a293eb90569b042270425f1d012c1c9de8db595dd841942072110bc5342f0d9782479abbba355f5db170b9dad778e79dd23857003e9668cdc1e13
+Size (libgit2-0.24.1.tar.gz) = 4173317 bytes



Home | Main Index | Thread Index | Old Index