non port: devel/libgit2/Makefile |
SVNWeb
|
Number of commits found: 73 |
Wed, 13 Sep 2023
|
[ 05:48 Matthias Fechner (mfechner) ] 44751f5
devel/libgit2: fix build problem with openssl3 and libressl
Make cmake aware of the selected ssl lib
PR: 273609
|
Fri, 8 Sep 2023
|
[ 10:34 Matthias Fechner (mfechner) ] f11ed41
devel/libgit2: update to 1.6.4
Required for gitlab-ce 16.3.
Bump of pending ports will be done in another commit.
Changelog:
https://github.com/libgit2/libgit2/tags
|
Sun, 14 May 2023
|
[ 19:23 Dimitry Andric (dim) ] a62f1b5
devel/libgit2: fix build with clang 16
Clang 16 has a new error about incompatible function types, which shows
up when building devel/libgit2:
/wrkdirs/usr/ports/devel/libgit2/work/libgit2-1.5.2/src/util/util.c:731:28:
error: incompatible function pointer types passing 'int (void *, const void *,
const void *)' to parameter of type 'int (*)(const void *, const void *, void
*)' [-Wincompatible-function-pointer-types]
qsort_s(els, nel, elsize, git__qsort_r_glue_cmp, &glue);
^~~~~~~~~~~~~~~~~~~~~
/usr/include/stdlib.h:397:11: note: passing argument to parameter here
int (*)(const void *, const void *, void *), void *);
^
Clang is indeed right, as the version of qsort_s(3) in FreeBSD 13 and
later has the 'void *payload' parameter last:
(Only the first 15 lines of the commit message are shown above )
|
Tue, 28 Feb 2023
|
[ 07:44 Matthias Fechner (mfechner) ] 1195af7
devel/libgit2: update to 1.5.2
Changelog:
This is a bugfix release to improve the SSH key handling functionality that was
introduced in v1.5.1.
libgit2 can now read the known_hosts file on Windows.
libgit2 will now examine all keys for a particular host in the known_hosts
file for matches, to support remote hosts with multiple key types.
All users of the v1.5 release line are recommended to upgrade.
https://github.com/libgit2/libgit2/blob/v1.5.2/docs/changelog.md
|
Mon, 23 Jan 2023
|
[ 07:18 Matthias Fechner (mfechner) ] 86cac20
devel/libgit2: update to 1.5.1
Changelog:
https://github.com/libgit2/libgit2/releases/tag/v1.5.1
|
Fri, 13 Jan 2023
|
[ 08:13 Matthias Fechner (mfechner) Author: Daniel Engberg ] bc220a9
devel/libgit2: only build test suite when we request it and adjust tests
There's still one failure that seems to be occurring if you're running as
root [1] and I'm unable to work out where and/or if upstream ever fixed this
test.
References:
https://github.com/archlinux/svntogit-packages/blob/packages/libgit2/trunk/PKGBUILD
1: https://github.com/libgit2/libgit2/issues/6307
PR: 268572
|
Tue, 22 Nov 2022
|
[ 14:31 Adam Weinberger (adamw) ] 677e3e5
devel/libgit2: Add python as a build dep to fix NINJA_DEFAULT=samurai
Normally, python is brought in from ninja. When NINJA_DEFAULT=samurai,
that dependency is missing.
-- Could NOT find PythonInterp (missing: PYTHON_EXECUTABLE)
CMake Error at tests/libgit2/CMakeLists.txt:7 (message):
Could not find a python interpreter, which is needed to build the tests.
Make sure python is available, or pass -DBUILD_TESTS=OFF to skip building
the tests
Note that python is only used to build tests, so no PORTREVISION bump is
needed here.
|
[ 09:38 Matthias Fechner (mfechner) ] e245ebd
devel/libgit2: update to 1.5.0
Changelog:
https://github.com/libgit2/libgit2/releases/tag/v1.5.0
|
Wed, 7 Sep 2022
|
[ 21:10 Stefan Eßer (se) ] b7f0544 (Only the first 10 of 27931 ports in this commit are shown above. )
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above )
|
Wed, 13 Jul 2022
|
[ 06:36 Matthias Fechner (mfechner) ] de1569c
devel/libgit2: security update to 1.3.2
Changelog:
https://github.com/libgit2/libgit2/releases/tag/v1.3.2
This is a security release with multiple changes.
This provides compatibility with git's changes to address CVE 2022-29187. As
a follow up to CVE 2022-24765, now not only is the working directory of a
non-bare repository examined for its ownership, but the .git directory and the
.git file (if present) are also examined for their ownership.
A fix for compatibility with git's (new) behavior for CVE 2022-24765 allows
users on POSIX systems to access a git repository that is owned by them when
they are running in sudo.
A fix for further compatibility with git's (existing) behavior for CVE
2022-24765 allows users on Windows to access a git repository that is owned by
the Administrator when running with escalated privileges (using runas
Administrator).
The bundled zlib is updated to v1.2.12, as prior versions had memory
corruption bugs. It is not known that there is a security vulnerability in
libgit2 based on these bugs, but we are updating to be cautious.
MFH: 2022Q3
|
Mon, 20 Jun 2022
|
[ 07:52 Matthias Fechner (mfechner) ] 851b2ce
devel/libgit2: update to 1.3.1
Validate repository directory ownership (v1.3) by @ethomson in #6268
Changelog:
https://github.com/libgit2/libgit2/releases/tag/v1.3.1
|
Sat, 4 Dec 2021
|
[ 12:07 Matthias Fechner (mfechner) Author: Daniel Engberg ] 5c8d1c2
devel/libgit2: Update to 1.3.0
Use DISTVERSION and USE_GIT to follow Porter's Handbook more closely
Use PCRE2 by default instead of PCRE(1)
Use http-parser library from ports rather than bundled version as per
recommendation in Porter's Handbook
Import patch to remove incompatible tests
Reference:
https://github.com/archlinux/svntogit-packages/blob/packages/libgit2/trunk/libgit2-1.2.0-remove_http-parse_incompatible_tests.patch
(see commit history)
PR: 258484
|
Fri, 10 Sep 2021
|
[ 21:18 Bernhard Froehlich (decke) ] cf0bd6f
devel/libgit2: Add CPE information
Approved by: portmgr (blanket)
|
Tue, 31 Aug 2021
|
[ 06:40 Matthias Fechner (mfechner) Author: Yuri Victorovich ] 44c43aa
devel/libgit2: Update to 1.1.1
Changelog:
https://github.com/libgit2/libgit2/releases/tag/v1.1.1
|
Wed, 7 Apr 2021
|
[ 08:09 Mathieu Arnold (mat) ] cf118cc (Only the first 10 of 8873 ports in this commit are shown above. )
One more small cleanup, forgotten yesterday.
Reported by: lwhsu
|
Tue, 6 Apr 2021
|
[ 14:31 Mathieu Arnold (mat) ] 305f148 (Only the first 10 of 29333 ports in this commit are shown above. )
Remove # $FreeBSD$ from Makefiles.
|
[ 13:23 Matthias Fechner (mfechner) ] d2b6fce
Fixed build problem if base SSL is used.
PR: 252098
|
[ 09:43 Matthias Fechner (mfechner) ] 1b802f4 (Only the first 10 of 24 ports in this commit are shown above. )
Removed svn keywords again.
They went in by accident while merging older commits.
Reported by: jbeich
|
[ 07:51 Matthias Fechner (mfechner) ] e7d94d4 (Only the first 10 of 36 ports in this commit are shown above. )
Update libgit2 to 1.1.0.
This update is also required for www/gitlab-ce 13.10 upgrade.
Changelog:
https://github.com/libgit2/libgit2/releases/tag/v1.1.0
PR: 252098
|
Sat, 20 Jun 2020
|
[ 11:49 tobik ]
devel/libgit2: Update to 1.0.1
Changes: https://github.com/libgit2/libgit2/releases/tag/v1.0.1
Changes: https://github.com/libgit2/pygit2/blob/v1.2.1/CHANGELOG.rst#121-2020-05-01
Approved by: mfechner (maintainer)
Differential Revision: https://reviews.freebsd.org/D25341
|
Sun, 19 Apr 2020
|
[ 03:55 tobik ] (Only the first 10 of 59 ports in this commit are shown above. )
devel/libgit2: Update to 1.0.0
Changes: https://github.com/libgit2/libgit2/releases/tag/v1.0.0
ABI: https://abi-laboratory.pro/tracker/timeline/libgit2
Approved by: mfechner (maintainer)
Differential Revision: https://reviews.freebsd.org/D24471
|
Thu, 19 Mar 2020
|
[ 05:47 tobik ] (Only the first 10 of 53 ports in this commit are shown above. )
devel/libgit2: Update to 0.99.0
- Switch to the release tarballs libgit2 now publishes
- Drop CURL option since it is no longer used
- Use system libpcre instead of the bundled one
- Hook up tests
- Bump consumers for ABI changes
Changes: https://github.com/libgit2/libgit2/releases/tag/v0.99.0
ABI: https://abi-laboratory.pro/tracker/timeline/libgit2/
|
Wed, 11 Dec 2019
|
[ 08:14 mfechner ]
devel/libgit2 security upgrade to 0.28.4.
Changelog:
https://github.com/libgit2/libgit2/releases/tag/v0.28.4
MFH: 2019Q4
|
Tue, 20 Aug 2019
|
[ 18:04 mfechner ]
devel/libgit2: security upgrade to 0.28.3.
PR: 239932
Submitted by: tobik
Approved by: mfechner
MFH: 2019Q3
Security: d51b52cf-c199-11e9-b13f-001b217b3468
|
Sun, 31 Mar 2019
|
[ 07:59 mfechner ]
Make portlint happy.
Updated version bump node (reported by tijl).
|
Thu, 28 Mar 2019
|
[ 17:04 mfechner ]
Added a small note to bump revision using small script I just added.
|
Sat, 23 Mar 2019
|
[ 17:41 mfechner ]
Upgrade to version 0.28.1.
Changelog:
https://github.com/libgit2/libgit2/releases
|
Thu, 31 Jan 2019
|
[ 14:13 mfechner ]
Upgrade devel/libgit2 to 0.27.8 and required ports.
Reported by: PORTSCOUT, swills
|
Tue, 30 Oct 2018
|
[ 16:12 mfechner ]
Upgrade to 0.27.7.
Approved by: mentors (implicit)
|
Mon, 15 Oct 2018
|
[ 16:14 mfechner ]
Security update of devel/libgit2 and depending ports to fix seceurity
vulnerabilities.
For more details see here:
https://github.com/libgit2/libgit2/releases/tag/v0.27.5
Approved by: mentors (implicit)
MFC after: 1d
MFH: 2018Q4
Security: 8c08ab4c-d06c-11e8-b35c-001b217b3468
|
Thu, 6 Sep 2018
|
[ 19:04 mfechner ]
Update devel/libgit2 and devel/rubygem-rugged to 0.27.4 which is required for
gitlab-ce 11.2.x.
Approved by: mentors (implicit)
|
Wed, 11 Jul 2018
|
[ 16:30 mfechner ]
Update to 0.27.3 which fixes some security vulnerabilities.
Reviewed by: swills (mentor)
Approved by: swills (mentor)
MFH: 2018Q3
Security: 3c9b7698-84da-11e8-8c75-d8cb8abf62dd
Differential Revision: https://reviews.freebsd.org/D16225
|
Wed, 20 Jun 2018
|
[ 06:53 mfechner ]
Update libgit2 to 0.27.2 and removed obsolete patches from it as it is fixed
upstream now.
Update devel/rubygem-rugged to 0.27.2 and took maintainer-ship for it as it is a
core module required for gitlab.
Added comment suggest by mat that some ports should be updated together.
Reviewed by: mat, swills (mentor)
Approved by: swills (mentor)
Differential Revision: https://reviews.freebsd.org/D15901
|
Tue, 5 Jun 2018
|
[ 05:21 mfechner ]
Took maintainer (approved by wg).
Security update to 0.27.1.
Reviewed by: wg (maintainer), tz (mentor)
Approved by: wg (maintainer), tz (mentor)
MFH: 2018Q2
Differential Revision: https://reviews.freebsd.org/D15654
|
Tue, 15 May 2018
|
[ 12:21 rakuco ]
devel/libgit2-glib: Unbreak with libgit2 0.27.
The fix is two-fold:
* Adjust the path for the sed call in devel/libgit2 so that we leave out
openssl from libgit2.pc's Requires.private line, otherwise libgit2-glib will
look for openssl.pc, which does not exist when OpenSSL from base is used.
* Reset libgit2-glib back to 0.26, and import a patch both Arch Linux and
openSUSE have been carrying to fix the build with libgit2 0.27. PORTEPOCH was
not set because there is no libgit2-glib 0.27 and no package could have
possibly been built after r469930.
Approved by: mfechner, gnome (kwm)
Differential Revision: https://reviews.freebsd.org/D15437
|
Mon, 14 May 2018
|
[ 17:34 mfechner ]
Update devel/libgit2 to 0.27.0 required for gitlab 10.7.x
Updated patches to match new file locations.
Reviewed by: swills (mentor), wg (maintainer)
Approved by: swills (mentor), wg (maintainer)
Differential Revision: https://reviews.freebsd.org/D15320
|
Tue, 28 Nov 2017
|
[ 15:58 tz ]
devel/libgit2: Update from 0.25.1 to 0.26.0
Changelog: https://github.com/libgit2/libgit2/blob/v0.26.0/CHANGELOG.md
Submitted by: Matthias Fechner <idefix@fechner.net>
Approved by: wg
|
Thu, 18 May 2017
|
[ 22:34 wg ]
devel/libgit2: fix build with libressl
PR: 219362
Submitted by: tobik
|
Wed, 17 May 2017
|
[ 12:59 wg ]
devel/libgit2: update to 0.25.1
|
Wed, 15 Mar 2017
|
[ 14:45 mat ] (Only the first 10 of 257 ports in this commit are shown above. )
Remove all USE_OPENSSL occurrences.
Sponsored by: Absolight
|
Thu, 3 Nov 2016
|
[ 16:00 linimon ]
Now builds on sparc64.
Approved by: portmgr (tier-2 blanket)
|
Fri, 21 Oct 2016
|
[ 15:21 mat ] (Only the first 10 of 354 ports in this commit are shown above. )
Use USES=pathfix where applicable.
PR: 213195
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D8093
|
Thu, 16 Jun 2016
|
[ 13:23 mat ] (Only the first 10 of 35 ports in this commit are shown above. )
Fix usage of WITH_OPENSSL_BASE, WITH_OPENSSL_PORT and OPENSSL_PORT.
WITH_OPENSSL_* can't be set after bsd.port.pre.mk.
Fold all other usage into using SSL_DEFAULT == foo
PR: 210149
Submitted by: mat
Exp-run by: antoine
Sponsored by: The FreeBSD Foundation, Absolight
Differential Revision: https://reviews.freebsd.org/D6577
|
Fri, 1 Apr 2016
|
[ 14:00 mat ] (Only the first 10 of 5103 ports in this commit are shown above. )
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight
|
Mon, 14 Mar 2016
|
[ 05:24 miwi ]
- Update to 0.24.0
PR: 207792
Submitted by: Torsten Zuehlsdorff
Approved by: maintainer implicit
|
Sat, 28 Nov 2015
|
[ 16:04 sunpoet ]
- Update to 0.23.4
- Use BROKEN_sparc64
- Fix space with tab
Changes: https://github.com/libgit2/libgit2/releases
PR: 204862
Submitted by: sunpoet (myself)
Approved by: wg (maintainer)
|
Sun, 6 Sep 2015
|
[ 20:48 kwm ] (Only the first 10 of 12 ports in this commit are shown above. )
Update libgit2 to 0.23.1.
Add curl option for HTTP support.
Submitted by: Andrey Cherkashin <andoriyu@gmail.com>
Approved by: wg@
Differential Revision: https://reviews.freebsd.org/D3494
|
Wed, 1 Jul 2015
|
[ 15:09 kwm ]
Update libgit2 to 0.22.3.
Approved by: maintainer (implicit)
|
Mon, 11 May 2015
|
[ 20:56 kwm ] (Only the first 10 of 14 ports in this commit are shown above. )
Update libgit2 to 0.22.1. [1]
Update libgit2-glib to 0.22.8.
Update gitg to 3.16.1.
Update py-pygit2 to 0.22.0. [1][3]
Update rubygem-rugged to 0.22.1b1. [2]
This is done in one commit due to API/ABI breakage in libgit2.
PR: 196176 (based on)
Differential Revision: https://reviews.freebsd.org/D2468
Submitted by: lightside@gmx.com
Approved by: maintainer (wg@ blanked) [1], ruby (swills@)[2]
Reviewed by: koobs@ [3]
|
Wed, 6 May 2015
|
[ 15:16 mat ] (Only the first 10 of 348 ports in this commit are shown above. )
Update ports in the [bcd]* categories to not use GH_COMMIT.
With minor cleanups to make things simpler.
With hat: portmgr
Sponsored by: Absolight
|
Thu, 15 Jan 2015
|
[ 11:01 wg ]
devel/libgit2: add THREADS option and make it default
PR: 196662
Submitted by: rm
|
Mon, 29 Sep 2014
|
[ 14:09 wg ]
devel/libgit2: update to 0.21.1
- USES python:build
|
Fri, 27 Jun 2014
|
[ 16:34 wg ]
devel/libgit2: update to 0.21.0
|
Mon, 20 Jan 2014
|
[ 13:11 wg ]
devel/libgit2: fix pkgconfig file and missing dependency
PR: ports/185892
Submitted by: amdmi3
|
Mon, 25 Nov 2013
|
[ 16:31 wg ]
devel/libgit2: update to 0.20.0
|
Tue, 24 Sep 2013
|
[ 11:54 wg ]
devel/libgit2: allows stating
- Allows staging out of the box
|
Fri, 20 Sep 2013
|
[ 17:13 bapt ] (Only the first 10 of 2998 ports in this commit are shown above. )
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 3)
|
Wed, 14 Aug 2013
|
[ 22:35 ak ] (Only the first 10 of 1725 ports in this commit are shown above. )
- Remove MAKE_JOBS_SAFE variable
Approved by: portmgr (bdrewery)
|
Mon, 15 Jul 2013
|
[ 16:34 wg ]
devel/libgit2: update to 0.19.0
- Update to 0.19.0
Changes:
https://github.com/libgit2/libgit2/releases/tag/v0.19.0
|
Sat, 22 Jun 2013
|
[ 22:22 wg ]
devel/libgit2: update to 0.18.0
- Update to 0.18.0
- Take maintainership
|
Tue, 30 Apr 2013
|
[ 17:32 bapt ]
Back to the pool
|
Sat, 23 Mar 2013
|
[ 19:12 bapt ]
Fix USE_GITHUB in combinaison with MASTER_SITE= GHC which breaks WRKSRC
PR: ports/177316
Submitted by: William Grzybowski <william88@gmail.com>
Reported by: miwi
|
Fri, 22 Mar 2013
|
[ 20:06 makc ] (Only the first 10 of 464 ports in this commit are shown above. )
- convert USE_CMAKE to USES
- while here clean up some ports from CMAKE_VERBOSE, which is intended
for users
Approved by: portmgr (miwi)
|
Mon, 31 Dec 2012
|
[ 11:53 bapt ]
Switch to USE_GITHUB
Trim headers
|
Sat, 28 Jul 2012
|
[ 12:02 bapt ]
- update to 0.17.0
PR: ports/168705
Submitted by: sunpoet
|
Tue, 13 Mar 2012
|
[ 08:25 bapt ]
Add the forgotten bump portrevision
Submitted by: osa (private mail)
Feature safe: yes
|
Fri, 9 Mar 2012
|
[ 11:42 bapt ]
- update to 0.16.0
Feature safe: yes
|
Mon, 14 Nov 2011
|
[ 03:26 rakuco ] (Only the first 10 of 56 ports in this commit are shown above. )
Remove CMAKE_USE_PTHREAD from the ports using it.
This setting has not had any effect since r1.13 to bsd.cmake.mk, as it
was only useful when we supported FreeBSD < 7.
Approved by: avilla (mentor), portmgr (miwi)
Feature safe: yes
|
Tue, 25 Oct 2011
|
[ 06:41 bapt ]
- update to 0.15.0
|
Sat, 16 Jul 2011
|
[ 05:21 linimon ]
Mark as broken on sparc64: thread-local storage not supported.
|
Thu, 14 Jul 2011
|
[ 10:36 bapt ]
- update to 0.14.0
|
Mon, 11 Jul 2011
|
[ 11:24 bapt ]
- update to 0.13.0
- switch to cmake
|
Fri, 27 May 2011
|
[ 09:45 bapt ]
libgit2 is...
licensed under a very permissive license so you can use it anywhere
faster than any other Git library
written in standards compilant C99
completely multi-platform: Windows, Linux, Mac OS X, xBSD
compiled natively under all platforms (yes, even MSVC on Windows)
re-entrant, with sane error handling
designed with a solid and consistent API
available as bindings for all major scripting languages
WWW: http://libgit2.github.com/
|
Number of commits found: 73 |