pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/got
Module Name: pkgsrc
Committed By: vins
Date: Sun Jun 9 13:25:05 UTC 2024
Modified Files:
pkgsrc/devel/got: Makefile distinfo
pkgsrc/devel/got/patches: patch-gotd_log.h
Log Message:
devel/got: update to 0.100
* got 0.100; 2024-06-03
- abort if we see a sha2 hash to quiet a potential compiler warning
- switch to using readdir because readdir_r is deprecated
- show hint about update -b if the user attempts to rebase a branch
onto itself
- in got.1 EXAMPLES, mention how files can be moved or renamed
- fix running gotd regress in release tarball sources
- in gotd.8 add an example which illustrates how to create
repositories for gotd
- don't leak the existence of gotd repositories to unrelated user
accounts
- fix empty notification messages with multiple gotd notification
targets
- display abbreviated commit/tag IDs in email notification subject
lines
- fix Date header generated by got-notify-email
- regress: make server tests more robust against race hazard
- regress: replace userinfo(8) with the more common getent(1)
- fix wrong errno check in bufio_close_sync(), i.e. got-fetch-http
- bufio: crank BIO_CHUNK up to 64k for improved http fetch performance
- gotwebd.conf: remove `listen on socket off' and `unix_socket off'
options
- gotwebd.conf: make `listen' a top-level statement
- gotwebd.conf: remove unix_socket_name option
- gotwebd.conf: allow changing the user ID which gotwebd runs as
- gotd/gotwebd: unify log.c
- gotwebd: use less temporary files in /tmp
- gotd/gotwebd: hide log_info() behind -v and log_debug behind -vv
options
- fix confusing error message from 'got commit' upon uncommitable
paths
- gotwebd: use the last matching fastcgi parameter if multiple
parameters match
- gotwebd: remove previd and prevset query string parameter, they were
unused
- plug 'got diff obj1 obj2' line metadata memory leak
- fix interop with servers that do not use Git protocol sidebands,
such as git9
- reintroduce the 'got init' command as an alternative to 'gotadmin
init'
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/got/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/got/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/got/patches/patch-gotd_log.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/got/Makefile
diff -u pkgsrc/devel/got/Makefile:1.8 pkgsrc/devel/got/Makefile:1.9
--- pkgsrc/devel/got/Makefile:1.8 Wed May 29 17:28:29 2024
+++ pkgsrc/devel/got/Makefile Sun Jun 9 13:25:05 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2024/05/29 17:28:29 vins Exp $
+# $NetBSD: Makefile,v 1.9 2024/06/09 13:25:05 vins Exp $
-DISTNAME= got-portable-0.99
+DISTNAME= got-portable-0.100
PKGNAME= ${DISTNAME:S/-portable//}
CATEGORIES= devel
MASTER_SITES= https://gameoftrees.org/releases/portable/
@@ -17,6 +17,8 @@ PREV_PKGPATH= devel/got-portable
BUILD_DEFS+= VARBASE
USE_TOOLS+= pkg-config yacc ksh:test perl:test
+# required for waddwstr(3)
+USE_NCURSES= yes
PKG_GROUPS= _gotd
PKG_USERS= _gotd:_gotd
@@ -96,7 +98,7 @@ post-install:
# needs libtls
.include "../../security/libretls/buildlink3.mk"
-# required for set_panel_userptr(3) and waddwstr(3).
+# needs gnupanelw
BUILDLINK_API_DEPENDS.ncurses+= ncurses>=6.5
.include "../../devel/ncurses/buildlink3.mk"
Index: pkgsrc/devel/got/distinfo
diff -u pkgsrc/devel/got/distinfo:1.6 pkgsrc/devel/got/distinfo:1.7
--- pkgsrc/devel/got/distinfo:1.6 Wed May 29 17:28:29 2024
+++ pkgsrc/devel/got/distinfo Sun Jun 9 13:25:05 2024
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.6 2024/05/29 17:28:29 vins Exp $
+$NetBSD: distinfo,v 1.7 2024/06/09 13:25:05 vins Exp $
-BLAKE2s (got-portable-0.99.tar.gz) = 3b54f7cb8e457aad9dabc7170a763dfb915ffe931e030de2e0fad7e7cf72339d
-SHA512 (got-portable-0.99.tar.gz) = 59504e9d0fe507f255a51aa0e565f69b190d7e94147c0848066919a932f44ff0724d841ba872c3ad34383e65adc1bffd30927a13add9314975bb613d2aa6b5f1
-Size (got-portable-0.99.tar.gz) = 1481387 bytes
+BLAKE2s (got-portable-0.100.tar.gz) = aa06b013c524affa0c6c2550b60049c0081e5e9f3fdafca29acc6e4cb2ae1e69
+SHA512 (got-portable-0.100.tar.gz) = 3b1024c04b0a501afef160cb18a4459185bbaf8af1f139b910334c94a5208e2802659c34c8b53d97799be530b83776783655296d20d1ed94e3073d6858ce374a
+Size (got-portable-0.100.tar.gz) = 1482599 bytes
SHA1 (patch-compat_sha2.h) = 3fff2c05e0347d4bbcbe5866d5cb13ed1487de69
-SHA1 (patch-gotd_log.h) = eb0890789c1fe7a490ea01d02e48fd71cddc2891
+SHA1 (patch-gotd_log.h) = f978464fe9a16d3b51051aed0611e73308251dfe
Index: pkgsrc/devel/got/patches/patch-gotd_log.h
diff -u pkgsrc/devel/got/patches/patch-gotd_log.h:1.1 pkgsrc/devel/got/patches/patch-gotd_log.h:1.2
--- pkgsrc/devel/got/patches/patch-gotd_log.h:1.1 Sun Feb 11 14:47:07 2024
+++ pkgsrc/devel/got/patches/patch-gotd_log.h Sun Jun 9 13:25:05 2024
@@ -1,9 +1,9 @@
-$NetBSD: patch-gotd_log.h,v 1.1 2024/02/11 14:47:07 vins Exp $
+$NetBSD: patch-gotd_log.h,v 1.2 2024/06/09 13:25:05 vins Exp $
Provide a declaration of va_list
---- gotd/log.h.orig 2024-01-14 16:07:41.039068602 +0000
-+++ gotd/log.h
+--- lib/log.h.orig 2024-01-14 16:07:41.039068602 +0000
++++ lib/log.h
@@ -14,6 +14,7 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
Home |
Main Index |
Thread Index |
Old Index