Index: head/devel/libgit2/files/patch-src_streams_openssl.h =================================================================== --- head/devel/libgit2/files/patch-src_streams_openssl.h (revision 472848) +++ head/devel/libgit2/files/patch-src_streams_openssl.h (nonexistent) @@ -1,11 +0,0 @@ ---- src/streams/openssl.h.orig 2018-04-23 07:00:52 UTC -+++ src/streams/openssl.h -@@ -31,7 +31,7 @@ extern int git_openssl__set_cert_locatio - - - --# if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) -+# if OPENSSL_VERSION_NUMBER < 0x10100000L || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x20700000L) - - GIT_INLINE(BIO_METHOD*) BIO_meth_new(int type, const char *name) - { Property changes on: head/devel/libgit2/files/patch-src_streams_openssl.h ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/devel/libgit2/files/patch-src_streams_openssl.c =================================================================== --- head/devel/libgit2/files/patch-src_streams_openssl.c (revision 472848) +++ head/devel/libgit2/files/patch-src_streams_openssl.c (nonexistent) @@ -1,11 +0,0 @@ ---- src/streams/openssl.c.orig 2018-04-23 07:00:42 UTC -+++ src/streams/openssl.c -@@ -104,7 +104,7 @@ int git_openssl_stream_global_init(void) - ssl_opts |= SSL_OP_NO_COMPRESSION; - #endif - --#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x20700000L) - SSL_load_error_strings(); - OpenSSL_add_ssl_algorithms(); - #else Property changes on: head/devel/libgit2/files/patch-src_streams_openssl.c ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/devel/libgit2/Makefile =================================================================== --- head/devel/libgit2/Makefile (revision 472848) +++ head/devel/libgit2/Makefile (revision 472849) @@ -1,44 +1,46 @@ # $FreeBSD$ +# Also update devel/libgit2-glib, devel/rubygem-rugged, devel/py-pygit2 + PORTNAME= libgit2 -PORTVERSION= 0.27.1 +PORTVERSION= 0.27.2 DISTVERSIONPREFIX= v CATEGORIES= devel MAINTAINER= mfechner@FreeBSD.org COMMENT= Portable, pure C implementation of the Git core LICENSE= GPLv2 USE_GITHUB= yes GH_ACCOUNT= libgit2 USES= cmake pathfix pkgconfig python:build ssl USE_LDCONFIG= yes PLIST_SUB= PORTVERSION=${PORTVERSION} SHLIB_VER=${PORTVERSION:R:E} OPTIONS_DEFINE= SSH THREADS CURL OPTIONS_DEFAULT=SSH THREADS CURL SSH_DESC= Enable SSH support through libssh2 CURL_DESC= Enable HTTP support through cURL SSH_LIB_DEPENDS= libssh2.so:security/libssh2 SSH_CMAKE_ON= -DUSE_SSH=ON SSH_CMAKE_OFF= -DUSE_SSH=OFF THREADS_CMAKE_ON= -DTHREADSAFE=ON THREADS_CMAKE_OFF= -DTHREADSAFE=OFF CURL_LIB_DEPENDS= libcurl.so:ftp/curl CURL_CMAKE_ON= -DCURL=ON CURL_CMAKE_OFF= -DCURL=OFF .include post-patch: @${REINPLACE_CMD} -e "/LIBGIT2_PC_REQUIRES.*zlib/ d" ${WRKSRC}/CMakeLists.txt .if ${SSL_DEFAULT} == base @${REINPLACE_CMD} -e "/LIBGIT2_PC_REQUIRES.*openssl/ d" \ ${WRKSRC}/src/CMakeLists.txt .endif .include Index: head/devel/libgit2/distinfo =================================================================== --- head/devel/libgit2/distinfo (revision 472848) +++ head/devel/libgit2/distinfo (revision 472849) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528010397 -SHA256 (libgit2-libgit2-v0.27.1_GH0.tar.gz) = 837b11927bc5f64e7f9ab0376f57cfe3ca5aa52ffd2007ac41184b21124fb086 -SIZE (libgit2-libgit2-v0.27.1_GH0.tar.gz) = 4765926 +TIMESTAMP = 1529407675 +SHA256 (libgit2-libgit2-v0.27.2_GH0.tar.gz) = ffacdbd5588aeb03e98e3866a7e2ceace468723a439bdc9bb01362fe140fa9e5 +SIZE (libgit2-libgit2-v0.27.2_GH0.tar.gz) = 4770842 Index: head/devel/libgit2-glib/Makefile =================================================================== --- head/devel/libgit2-glib/Makefile (revision 472848) +++ head/devel/libgit2-glib/Makefile (revision 472849) @@ -1,28 +1,30 @@ # Created by: Gustau Perez # $FreeBSD$ +# Also update devel/libgit2, devel/rubygem-rugged, devel/py-pygit2 + PORTNAME= libgit2-glib PORTVERSION= 0.26.0 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= Glib wrapper library around the libgit2 git access library LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= vapigen:lang/vala LIB_DEPENDS= libgit2.so:devel/libgit2 USES= compiler:c11 gmake libtool localbase \ pathfix pkgconfig tar:xz USE_GNOME= glib20 gnomeprefix introspection USE_LDCONFIG= yes GNU_CONFIGURE= yes INSTALLS_ICONS= yes CONFIGURE_ARGS= --disable-python INSTALL_TARGET= install-strip .include Index: head/devel/py-pygit2/Makefile =================================================================== --- head/devel/py-pygit2/Makefile (revision 472848) +++ head/devel/py-pygit2/Makefile (revision 472849) @@ -1,32 +1,34 @@ # Created by: William Grzybowski # $FreeBSD$ +# Also update devel/libgit2, devel/libgit2-glib, devel/rubygem-rugged + PORTNAME= pygit2 PORTVERSION= 0.27.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= mfechner@FreeBSD.org COMMENT= Python bindings for libgit2 LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>0:devel/py-cffi@${FLAVOR} LIB_DEPENDS= libgit2.so:devel/libgit2 RUN_DEPENDS= ${BUILD_DEPENDS} \ ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR} USES= python USE_PYTHON= autoplist distutils MAKE_ENV= LIBGIT2=${LOCALBASE} PYDISTUTILS_TEST_TARGET?= test do-test: @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} ${PYDISTUTILS_SETUP} ${PYDISTUTILS_TEST_TARGET} ${PYDISTUTILS_TESTARGS}) post-install: ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_pygit2.so ${STAGEDIR}${PYTHON_SITELIBDIR}/pygit2/_libgit2*.so .include Index: head/devel/rubygem-rugged/Makefile =================================================================== --- head/devel/rubygem-rugged/Makefile (revision 472848) +++ head/devel/rubygem-rugged/Makefile (revision 472849) @@ -1,23 +1,25 @@ # Created by: Steve Wills # $FreeBSD$ +# Also update devel/libgit2, devel/libgit2-glib, devel/py-pygit2 + PORTNAME= rugged -PORTVERSION= 0.27.1 +PORTVERSION= 0.27.2 CATEGORIES= devel rubygems MASTER_SITES= RG -MAINTAINER= ruby@FreeBSD.org +MAINTAINER= mfechner@FreeBSD.org COMMENT= Rugged is a Ruby binding to the libgit2 linkable library LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= libgit2>=${PORTVERSION:R}:devel/libgit2 LIB_DEPENDS= libgit2.so:devel/libgit2 \ libgmp.so:math/gmp CONFIGURE_ARGS= --use-system-libraries -USE_RUBY= yes USES= gem pkgconfig +USE_RUBY= yes .include Index: head/devel/rubygem-rugged/distinfo =================================================================== --- head/devel/rubygem-rugged/distinfo (revision 472848) +++ head/devel/rubygem-rugged/distinfo (revision 472849) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527701777 -SHA256 (rubygem/rugged-0.27.1.gem) = ca301d5696f75c08a60e77b9f7a75249e77fee617e4be90898f7f957b54c586f -SIZE (rubygem/rugged-0.27.1.gem) = 1155072 +TIMESTAMP = 1529408232 +SHA256 (rubygem/rugged-0.27.2.gem) = 796de849f14aa5fb30f02c686d39ff38d234a72919c854124f3ddaaca80d50f4 +SIZE (rubygem/rugged-0.27.2.gem) = 1156608