Page MenuHomeFreeBSD

D37077.id124541.diff
No OneTemporary

D37077.id124541.diff

Index: CHANGES
===================================================================
--- CHANGES
+++ CHANGES
@@ -10,6 +10,19 @@
All ports committers are allowed to commit to this file.
+20230712:
+AUTHOR: zirias@FreeBSD.org
+
+ USE_GITLAB has been changed to allow fetching by tag name. This was done by
+ removing the GL_COMMIT variable and introducing GL_TAGNAME instead.
+
+ Similar to USE_GITHUB/GH_TAGNAME, you can still use a commit hash with
+ GL_TAGNAME (the full 40-character hash is required for that). If not
+ specified, GL_TAGNAME defaults to DISTVERSIONFULL.
+
+ Note fetching by tag name might not work on gitlab installations running
+ very old versions; in that case, you must still specify a commit hash.
+
20230430:
AUTHOR: zirias@FreeBSD.org
Index: Mk/Uses/kde.mk
===================================================================
--- Mk/Uses/kde.mk
+++ Mk/Uses/kde.mk
@@ -134,7 +134,7 @@
GL_SITE= https://invent.kde.org
GL_ACCOUNT= ${_invent_category}
GL_PROJECT= ${_invent_name}
-GL_COMMIT= ${_invent_hash}
+GL_TAGNAME= ${_invent_hash}
. endif
. endif
Index: Mk/Uses/xorg-cat.mk
===================================================================
--- Mk/Uses/xorg-cat.mk
+++ Mk/Uses/xorg-cat.mk
@@ -26,7 +26,7 @@
# * meson (experimental)
#
#
-# By defining USE_GITLAB and GL_COMMIT, it is possible to pull code straight
+# By defining USE_GITLAB and GL_TAGNAME, it is possible to pull code straight
# from the freedesktop.org gitlab, instead of official release tarballs.
#
#.MAINTAINER: x11@FreeBSD.org
Index: Mk/bsd.options.mk
===================================================================
--- Mk/bsd.options.mk
+++ Mk/bsd.options.mk
@@ -184,7 +184,7 @@
CONFLICTS CONFLICTS_BUILD CONFLICTS_INSTALL CPPFLAGS CXXFLAGS \
DESKTOP_ENTRIES DISTFILES EXTRA_PATCHES EXTRACT_ONLY \
GH_ACCOUNT GH_PROJECT GH_SUBDIR GH_TAGNAME GH_TUPLE \
- GL_ACCOUNT GL_COMMIT GL_PROJECT GL_SITE GL_SUBDIR GL_TUPLE \
+ GL_ACCOUNT GL_PROJECT GL_SITE GL_SUBDIR GL_TAGNAME GL_TUPLE \
IGNORE INFO INSTALL_TARGET LDFLAGS LIBS MAKE_ARGS MAKE_ENV \
MASTER_SITES PATCHFILES PATCH_SITES PLIST_DIRS PLIST_FILES \
PLIST_SUB PORTDOCS PORTEXAMPLES SUB_FILES SUB_LIST \
Index: Mk/bsd.port.mk
===================================================================
--- Mk/bsd.port.mk
+++ Mk/bsd.port.mk
@@ -1719,7 +1719,7 @@
. if defined(WRKSRC)
DEV_WARNING+= "You are using USE_GITLAB and WRKSRC is set which is wrong. Set GL_PROJECT, GL_ACCOUNT correctly, and/or set WRKSRC_SUBDIR and remove WRKSRC entirely."
. endif
-WRKSRC?= ${WRKDIR}/${GL_PROJECT}-${GL_COMMIT}
+WRKSRC?= ${WRKDIR}/${GL_PROJECT}-${GL_TAGNAME}
. endif
# If the distname is not extracting into a specific subdirectory, have the
@@ -2957,12 +2957,6 @@
. endif
. endif
-. if defined(USE_GITLAB) && !${USE_GITLAB:Mnodefault} && empty(GL_COMMIT_DEFAULT)
-check-makevars::
- @${ECHO_MSG} "GL_COMMIT is a required 40 character hash for use USE_GITLAB"
- @${FALSE}
-. endif
-
################################################################
#
# Do preliminary work to detect if we need to run the config
Index: Mk/bsd.sites.mk
===================================================================
--- Mk/bsd.sites.mk
+++ Mk/bsd.sites.mk
@@ -268,10 +268,10 @@
. if defined(GH_TUPLE)
. for _tuple in ${GH_TUPLE}
_t_tmp=${_tuple}
-. if ${_t_tmp:C@^([^:]*):([^:]*):([^:]*)((:[^:/]*)?)((/.*)?)@\4@:S/://:C/[a-zA-Z0-9_]//g}
+. if ${_t_tmp:C@^([^:]*):([^:]*):([^:]*)((:[^:/]*)?)((/.*)?)@\4@:S/://:C/[a-zA-Z0-9_.+-]//g}
check-makevars::
@${ECHO_MSG} "The ${_tuple} GH_TUPLE line has"
- @${ECHO_MSG} "a tag containing something else than [a-zA-Z0-9_]"
+ @${ECHO_MSG} "a tag containing something else than [a-zA-Z0-9_.+-]"
@${FALSE}
. endif
. endfor
@@ -405,6 +405,11 @@
. endif # defined(USE_GITHUB)
.endif # !defined(IGNORE_MASTER_SITE_GITHUB)
+# Keep this before USE_GITLAB
+.if !empty(MASTER_SITES:M*//*/*/*/-/archive/${DISTVERSIONFULL}/)
+DEV_WARNING+= "MASTER_SITES contains ${MASTER_SITES:M*//*/*/*/-/archive/${DISTVERSIONFULL}/}, please use USE_GITLAB instead."
+.endif
+
.if !defined(IGNORE_MASTER_SITE_GITLAB)
#
# In order to use GitLab your port must define USE_GITLAB and the following
@@ -419,34 +424,36 @@
# GL_PROJECT - name of the project on GitLab
# default: ${PORTNAME}
#
-# GL_COMMIT - the commit hash of the repository, must be the full hash and
-# is a required variable for GitLab.
+# GL_TAGNAME - name of the tag to download (2.0.1, hash, ...)
+# Using the name of a branch here is incorrect. It is
+# possible to do GL_TAGNAME= GIT_HASH to do a snapshot.
+# default: ${DISTVERSIONFULL}
#
# GL_SUBDIR - directory relative to WRKSRC where to move this distfile's
# content after extracting.
#
-# GL_TUPLE - above shortened to [site[:port][/webroot]:]account:project:commit:group[/subdir]
+# GL_TUPLE - above shortened to [site[:port][/webroot]:]account:project:tagname:group[/subdir]
#
. if defined(USE_GITLAB)
. if defined(GL_TUPLE)
. for _tuple in ${GL_TUPLE}
-. if ${_tuple:C@^(([^:]*://[^:/]*(:[0-9]{1,5})?(/[^:]*[^/])?:)?)([^:]*):([^:]*):([^:]*)(:[^:/]*)((/.*)?)@\7@:S/^://:C/[a-f0-9]{40}//g}
+. if ${_tuple:C@^(([^:]*://[^:/]*(:[0-9]{1,5})?(/[^:]*[^/])?:)?)([^:]*):([^:]*):([^:]*)(:[^:/]*)((/.*)?)@\7@:S/^://:C/[a-zA-Z0-9_.+-]//g}
check-makevars::
@${ECHO_MSG} "The ${_tuple}"
- @${ECHO_MSG} "GL_TUPLE is improperly formatted or, the commit"
- @${ECHO_MSG} "section contains something other than [a-f0-9]"
+ @${ECHO_MSG} "GL_TUPLE is improperly formatted or, the tagname"
+ @${ECHO_MSG} "section contains something other than [a-zA-Z0-9_.+-]"
@${FALSE}
. endif
. endfor
GL_SITE+= ${GL_TUPLE:C@^(([^:]*://[^:/]*(:[0-9]{1,5})?(/[^:]*[^/])?:)?)([^:]*):([^:]*):([^:]*)(:[^:/]*)((/.*)?)@\1\8@:S@::@:@}
GL_ACCOUNT+= ${GL_TUPLE:C@^(([^:]*://[^:/]*(:[0-9]{1,5})?(/[^:]*[^/])?:)?)([^:]*):([^:]*):([^:]*)(:[^:/]*)((/.*)?)@\5\8@}
GL_PROJECT+= ${GL_TUPLE:C@^(([^:]*://[^:/]*(:[0-9]{1,5})?(/[^:]*[^/])?:)?)([^:]*):([^:]*):([^:]*)(:[^:/]*)((/.*)?)@\6\8@}
-GL_COMMIT+= ${GL_TUPLE:C@^(([^:]*://[^:/]*(:[0-9]{1,5})?(/[^:]*[^/])?:)?)([^:]*):([^:]*):([^:]*)(:[^:/]*)((/.*)?)@\7\8@}
+GL_TAGNAME+= ${GL_TUPLE:C@^(([^:]*://[^:/]*(:[0-9]{1,5})?(/[^:]*[^/])?:)?)([^:]*):([^:]*):([^:]*)(:[^:/]*)((/.*)?)@\7\8@}
GL_SUBDIR+= ${GL_TUPLE:C@^(([^:]*://[^:/]*(:[0-9]{1,5})?(/[^:]*[^/])?:)?)([^:]*):([^:]*):([^:]*)(:[^:/]*)((/.*)?)@\9\8@:M/*:S/^\///}
. endif
. if empty(USE_GITLAB:Mnodefault)
-MASTER_SITES+= ${GL_SITE}/${GL_ACCOUNT}/${GL_PROJECT}/-/archive/${GL_COMMIT}.tar.gz?dummy=/
+MASTER_SITES+= ${GL_SITE}/${GL_ACCOUNT}/${GL_PROJECT}/-/archive/${GL_TAGNAME:C@^[a-f0-9]{40}$@\0.tar.gz?dummy=@}/
. endif
GL_SITE_DEFAULT= https://gitlab.com
GL_SITE?= ${GL_SITE_DEFAULT}
@@ -454,8 +461,10 @@
GL_ACCOUNT?= ${GL_ACCOUNT_DEFAULT}
GL_PROJECT_DEFAULT= ${PORTNAME}
GL_PROJECT?= ${GL_PROJECT_DEFAULT}
+GL_TAGNAME_DEFAULT= ${DISTVERSIONFULL}
+GL_TAGNAME?= ${GL_TAGNAME_DEFAULT}
_GITLAB_GROUPS= DEFAULT
-. for _gl_v in GL_SITE GL_ACCOUNT GL_PROJECT GL_COMMIT GL_SUBDIR
+. for _gl_v in GL_SITE GL_ACCOUNT GL_PROJECT GL_TAGNAME GL_SUBDIR
. for _v_ex in ${${_gl_v}}
_GL_GROUPS= ${_v_ex:S/^${_v_ex:C@:[^/:]+$@@}//:S/^://}
. if !empty(_GL_GROUPS)
@@ -479,18 +488,24 @@
GL_SITE:= ${GL_SITE_DEFAULT}
GL_ACCOUNT:= ${GL_ACCOUNT_DEFAULT}
GL_PROJECT:= ${GL_PROJECT_DEFAULT}
-GL_COMMIT:= ${GL_COMMIT_DEFAULT}
+GL_TAGNAME:= ${GL_TAGNAME_DEFAULT}
GL_SUBDIR:= ${GL_SUBDIR_DEFAULT}
_GITLAB_REV= 0
-_GITLAB_EXTRACT_SUFX= .tar.gz
+_GITLAB_EXTRACT_SUFX= .tar.gz
+_GITLAB_TAG_EXTRACT_SUFX= .tar.bz2
_GITLAB_CLONE_DIR?= ${WRKDIR}/git-clone
_PORTS_DIRECTORIES+= ${_GITLAB_CLONE_DIR}
. if !${USE_GITLAB:Mnodefault}
-DISTNAME:= ${GL_ACCOUNT}-${GL_PROJECT}-${GL_COMMIT}_GL${_GITLAB_REV}
+. if ${GL_TAGNAME:C/^[a-f0-9]{40}$//}
+DISTNAME:= ${GL_PROJECT}-${GL_TAGNAME}
+DISTFILES+= ${DISTNAME}${_GITLAB_TAG_EXTRACT_SUFX}
+. else
+DISTNAME:= ${GL_ACCOUNT}-${GL_PROJECT}-${GL_TAGNAME}_GL${_GITLAB_REV}
DISTFILES+= ${DISTNAME}${_GITLAB_EXTRACT_SUFX}
+. endif
git-clone: git-clone-DEFAULT
git-clone-DEFAULT: ${_GITLAB_CLONE_DIR}
@git clone ${GL_SITE_DEFAULT}/${GL_ACCOUNT_DEFAULT}/${GL_PROJECT_DEFAULT}.git ${_GITLAB_CLONE_DIR}/${GL_PROJECT_DEFAULT}
@@ -512,12 +527,18 @@
GL_ACCOUNT_${_group}?= ${GL_ACCOUNT_DEFAULT}
GL_PROJECT_${_group}?= ${GL_PROJECT_DEFAULT}
-_GL_TUPLE_OUT:= ${_GL_TUPLE_OUT} ${GL_SITE_${_group}}:${GL_ACCOUNT_${_group}}:${GL_PROJECT_${_group}}:${GL_COMMIT_${_group}}:${_group}/${GL_SUBDIR_${_group}}
-DISTNAME_${_group}:= ${GL_ACCOUNT_${_group}}-${GL_PROJECT_${_group}}-${GL_COMMIT_${_group}}_GL${_GITLAB_REV}
+_GL_TUPLE_OUT:= ${_GL_TUPLE_OUT} ${GL_SITE_${_group}}:${GL_ACCOUNT_${_group}}:${GL_PROJECT_${_group}}:${GL_TAGNAME_${_group}}:${_group}/${GL_SUBDIR_${_group}}
+. if ${GL_TAGNAME_${_group}:C/^[a-f0-9]{40}$//}
+DISTNAME_${_group}:= ${GL_PROJECT_${_group}}-${GL_TAGNAME_${_group}}
+DISTFILE_${_group}:= ${DISTNAME_${_group}}${_GITLAB_TAG_EXTRACT_SUFX}
+MASTER_SITES:= ${MASTER_SITES} ${GL_SITE_${_group}}/${GL_ACCOUNT_${_group}}/${GL_PROJECT_${_group}}/-/archive/${GL_TAGNAME_${_group}}/:${_group}
+. else
+DISTNAME_${_group}:= ${GL_ACCOUNT_${_group}}-${GL_PROJECT_${_group}}-${GL_TAGNAME_${_group}}_GL${_GITLAB_REV}
DISTFILE_${_group}:= ${DISTNAME_${_group}}${_GITLAB_EXTRACT_SUFX}
+MASTER_SITES:= ${MASTER_SITES} ${GL_SITE_${_group}}/${GL_ACCOUNT_${_group}}/${GL_PROJECT_${_group}}/-/archive/${GL_TAGNAME_${_group}}.tar.gz?dummy=/:${_group}
+. endif
DISTFILES:= ${DISTFILES} ${DISTFILE_${_group}}:${_group}
-MASTER_SITES:= ${MASTER_SITES} ${GL_SITE_${_group}}/${GL_ACCOUNT_${_group}}/${GL_PROJECT_${_group}}/-/archive/${GL_COMMIT_${_group}}.tar.gz?dummy=/:${_group}
-WRKSRC_${_group}:= ${WRKDIR}/${GL_PROJECT_${_group}}-${GL_COMMIT_${_group}}
+WRKSRC_${_group}:= ${WRKDIR}/${GL_PROJECT_${_group}}-${GL_TAGNAME_${_group}}
. if !empty(GL_SUBDIR_${_group})
_SITES_extract:= ${_SITES_extract} 690:post-extract-gl-${_group}
post-extract-gl-${_group}:
Index: accessibility/darkman/Makefile
===================================================================
--- accessibility/darkman/Makefile
+++ accessibility/darkman/Makefile
@@ -22,7 +22,7 @@
kr:pretty:v0.2.0:kr_pretty/vendor/github.com/kr/pretty \
sj14:astral:v0.1.2:sj14_astral/vendor/github.com/sj14/astral
GL_ACCOUNT= WhyNotHugo
-GL_COMMIT= ec68820495fcb7137310c166052dab86b0d940c4
+GL_TAGNAME= ec68820495fcb7137310c166052dab86b0d940c4
GO_TARGET= ./cmd/${PORTNAME}
PLIST_FILES= bin/${PORTNAME} \
share/dbus-1/services/nl.whynothugo.darkman.service \
Index: accessibility/feedbackd/Makefile
===================================================================
--- accessibility/feedbackd/Makefile
+++ accessibility/feedbackd/Makefile
@@ -18,7 +18,7 @@
USE_LDCONFIG= yes
GL_SITE= https://source.puri.sm
GL_ACCOUNT= Librem5
-GL_COMMIT= 2db8a72ef9432f80894eb5b36ce1e667496a931b
+GL_TAGNAME= 2db8a72ef9432f80894eb5b36ce1e667496a931b
GL_TUPLE= https://gitlab.gnome.org:guidog:gmobile:ff854988bff80f2d4c1181ccf3c94b032603b6f9:gmobile/subprojects/gmobile
SHEBANG_FILES= build-aux/post_install.py
GLIB_SCHEMAS= org.sigxcpu.feedbackd.gschema.xml
Index: archivers/libarchive-qt/Makefile
===================================================================
--- archivers/libarchive-qt/Makefile
+++ archivers/libarchive-qt/Makefile
@@ -15,6 +15,6 @@
USE_GITLAB= yes
GL_ACCOUNT= marcusbritanicus
-GL_COMMIT= 9863127fb8dda7242215c09efbc976193365fee4
+GL_TAGNAME= 9863127fb8dda7242215c09efbc976193365fee4
.include <bsd.port.mk>
Index: audio/amberol/Makefile
===================================================================
--- audio/amberol/Makefile
+++ audio/amberol/Makefile
@@ -22,7 +22,7 @@
USE_GSTREAMER= bad good libav
GL_SITE= https://gitlab.gnome.org
GL_ACCOUNT= World
-GL_COMMIT= 31137155adb25a2e3a80de83b09e723dc2d78f4a
+GL_TAGNAME= 31137155adb25a2e3a80de83b09e723dc2d78f4a
MAKE_ENV= ${CARGO_ENV}
CARGO_BUILD= no
CARGO_INSTALL= no
Index: audio/bcg729/Makefile
===================================================================
--- audio/bcg729/Makefile
+++ audio/bcg729/Makefile
@@ -17,7 +17,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.linphone.org
GL_ACCOUNT= BC/public
-GL_COMMIT= faaa895862165acde6df8add722ba4f85a25007d
+GL_TAGNAME= faaa895862165acde6df8add722ba4f85a25007d
post-configure:
${SED} 's|@prefix@|${PREFIX}|g ; s|@exec_prefix@|$${prefix}|g ; \
Index: audio/espressivo-lv2/Makefile
===================================================================
--- audio/espressivo-lv2/Makefile
+++ audio/espressivo-lv2/Makefile
@@ -18,7 +18,7 @@
USE_GITLAB= yes
GL_ACCOUNT= OpenMusicKontrollers
GL_PROJECT= ${PORTNAME}.lv2
-GL_COMMIT= 8df30bc1ecf55be98ccf9a8b1ffc63d09dfa6895
+GL_TAGNAME= 8df30bc1ecf55be98ccf9a8b1ffc63d09dfa6895
PLIST_FILES= lib/lv2/espressivo.lv2/espressivo.so \
lib/lv2/espressivo.lv2/espressivo.ttl \
Index: audio/exhale/Makefile
===================================================================
--- audio/exhale/Makefile
+++ audio/exhale/Makefile
@@ -15,7 +15,7 @@
USE_GITLAB= yes
GL_ACCOUNT= ecodis
-GL_COMMIT= cfbcd5b7cc488d84fb01fa9699586d89c8c4b320
+GL_TAGNAME= cfbcd5b7cc488d84fb01fa9699586d89c8c4b320
USE_LDCONFIG= yes
Index: audio/gnome-metronome/Makefile
===================================================================
--- audio/gnome-metronome/Makefile
+++ audio/gnome-metronome/Makefile
@@ -18,7 +18,7 @@
USE_GSTREAMER= bad good vorbis
GL_SITE= https://gitlab.gnome.org
GL_ACCOUNT= World
-GL_COMMIT= cf2dd4fdf9de9dabadb44a21338f5872abd044ea
+GL_TAGNAME= cf2dd4fdf9de9dabadb44a21338f5872abd044ea
MAKE_ENV= ${CARGO_ENV}
CARGO_BUILD= no
CARGO_INSTALL= no
Index: audio/gnome-podcasts/Makefile
===================================================================
--- audio/gnome-podcasts/Makefile
+++ audio/gnome-podcasts/Makefile
@@ -20,7 +20,7 @@
USE_GSTREAMER= bad good libav
GL_SITE= https://gitlab.gnome.org
GL_ACCOUNT= World
-GL_COMMIT= a0fc748a83f94b02c443022c30aa8dbbae3241f3
+GL_TAGNAME= a0fc748a83f94b02c443022c30aa8dbbae3241f3
MAKE_ENV= ${CARGO_ENV}
CARGO_BUILD= no
CARGO_INSTALL= no
Index: audio/libtremor/Makefile
===================================================================
--- audio/libtremor/Makefile
+++ audio/libtremor/Makefile
@@ -20,7 +20,7 @@
GL_SITE= https://gitlab.xiph.org
GL_ACCOUNT= xiph
GL_PROJECT= tremor
-GL_COMMIT= 7c30a66346199f3f09017a09567c6c8a3a0eedc8
+GL_TAGNAME= 7c30a66346199f3f09017a09567c6c8a3a0eedc8
GNU_CONFIGURE= yes
Index: audio/lollypop/Makefile
===================================================================
--- audio/lollypop/Makefile
+++ audio/lollypop/Makefile
@@ -28,7 +28,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.gnome.org
GL_ACCOUNT= World
-GL_COMMIT= 5b2d95f4f8509d80fa86ab7d65b118326dc82a95
+GL_TAGNAME= 5b2d95f4f8509d80fa86ab7d65b118326dc82a95
GL_TUPLE= gnumdk:lollypop-po:94a7300004ec15adfd596c7d2b8670bbf5c2e33a:po/subprojects/po
USE_GNOME= glib20 gtk30 pygobject3 introspection:build intltool intlhack
USE_GSTREAMER= mpg123 ogg flac opus libav faad good speex
Index: audio/mixertui/Makefile
===================================================================
--- audio/mixertui/Makefile
+++ audio/mixertui/Makefile
@@ -15,7 +15,7 @@
USE_GITLAB= yes
GL_ACCOUNT= alfix
-GL_COMMIT= 4d9092861f57bbb4a8e64d14b29ec6aaa1c9190f
+GL_TAGNAME= 4d9092861f57bbb4a8e64d14b29ec6aaa1c9190f
PLIST_FILES= sbin/${PORTNAME} \
share/man/man8/${PORTNAME}.8.gz
Index: audio/orbit-lv2/Makefile
===================================================================
--- audio/orbit-lv2/Makefile
+++ audio/orbit-lv2/Makefile
@@ -22,7 +22,7 @@
USE_GITLAB= yes
GL_ACCOUNT= OpenMusicKontrollers
GL_PROJECT= ${PORTNAME}.lv2
-GL_COMMIT= f4aa620fc8d77418856581a6a955192af15b3860
+GL_TAGNAME= f4aa620fc8d77418856581a6a955192af15b3860
.include <bsd.port.pre.mk>
Index: audio/sayonara/Makefile
===================================================================
--- audio/sayonara/Makefile
+++ audio/sayonara/Makefile
@@ -23,7 +23,7 @@
USE_GITLAB= yes
GL_ACCOUNT= luciocarreras
GL_PROJECT= ${PORTNAME}-player
-GL_COMMIT= 5bbf1399332d5d59362ad03bf625f9132be72206 # 1.7.0-stable1
+GL_TAGNAME= 5bbf1399332d5d59362ad03bf625f9132be72206 # 1.7.0-stable1
SHEBANG_FILES= src/DBus/sayonara-ctl src/DBus/sayonara-query
Index: audio/shortwave/Makefile
===================================================================
--- audio/shortwave/Makefile
+++ audio/shortwave/Makefile
@@ -20,7 +20,7 @@
GL_SITE= https://gitlab.gnome.org
GL_ACCOUNT= World
GL_PROJECT= Shortwave
-GL_COMMIT= 6fb4acd47a4eae422270f9543bce2d5f0037504c
+GL_TAGNAME= 6fb4acd47a4eae422270f9543bce2d5f0037504c
MAKE_ENV= ${CARGO_ENV}
CARGO_BUILD= no
CARGO_INSTALL= no
Index: cad/alliance/Makefile
===================================================================
--- cad/alliance/Makefile
+++ cad/alliance/Makefile
@@ -19,7 +19,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.lip6.fr
GL_ACCOUNT= vlsi-eda
-GL_COMMIT= ebece102e15c110fc79f1da50524c68fd9523f0c
+GL_TAGNAME= ebece102e15c110fc79f1da50524c68fd9523f0c
USES= autoreconf:build gmake libtool magick:build motif tar:bz2 tex xorg
USE_GCC= yes
Index: cad/kicad-devel/Makefile
===================================================================
--- cad/kicad-devel/Makefile
+++ cad/kicad-devel/Makefile
@@ -42,7 +42,7 @@
USE_GITLAB= yes
GL_ACCOUNT= kicad/code
GL_PROJECT= kicad
-GL_COMMIT= ${GIT_SRC_HASH}
+GL_TAGNAME= ${GIT_SRC_HASH}
USE_GL= gl glu glut
USE_WX= 3.2
WX_COMPS= wx python:lib
Index: cad/kicad-library-footprints-devel/Makefile
===================================================================
--- cad/kicad-library-footprints-devel/Makefile
+++ cad/kicad-library-footprints-devel/Makefile
@@ -2,9 +2,9 @@
DISTVERSION= r${GIT_FP_DATE}
PORTREVISION= 2
CATEGORIES= cad
-MASTER_SITES= https://gitlab.com/kicad/libraries/${PORTNAME}-footprints/-/archive/${GL_COMMIT}/
+MASTER_SITES= https://gitlab.com/kicad/libraries/${PORTNAME}-footprints/-/archive/${GL_TAGNAME}/
PKGNAMESUFFIX= -library-footprints-devel
-DISTNAME= ${PORTNAME}-footprints-${GL_COMMIT}
+DISTNAME= ${PORTNAME}-footprints-${GL_TAGNAME}
MAINTAINER= mr@FreeBSD.org
COMMENT= Official KiCad Footprint Libraries for the future Kicad version 5
@@ -19,8 +19,8 @@
USE_GITLAB= nodefault
GL_ACCOUNT= kicad
GL_PROJECT= kicad/libraries
-GL_COMMIT= ${GIT_FP_HASH}
-# WRKSRC= ${WRKDIR}/${PORTNAME}-${GL_COMMIT}-${GL_COMMIT}
+GL_TAGNAME= ${GIT_FP_HASH}
+# WRKSRC= ${WRKDIR}/${PORTNAME}-${GL_TAGNAME}-${GL_TAGNAME}
USES= cmake
Index: cad/kicad-library-packages3d-devel/Makefile
===================================================================
--- cad/kicad-library-packages3d-devel/Makefile
+++ cad/kicad-library-packages3d-devel/Makefile
@@ -2,9 +2,9 @@
DISTVERSION= r${GIT_P3D_DATE}
PORTREVISION= 2
CATEGORIES= cad
-MASTER_SITES= https://gitlab.com/kicad/libraries/${PORTNAME}-packages3D/-/archive/${GL_COMMIT}/
+MASTER_SITES= https://gitlab.com/kicad/libraries/${PORTNAME}-packages3D/-/archive/${GL_TAGNAME}/
PKGNAMESUFFIX= -library-packages3d-devel
-DISTNAME= ${PORTNAME}-packages3D-${GL_COMMIT}
+DISTNAME= ${PORTNAME}-packages3D-${GL_TAGNAME}
MAINTAINER= mr@FreeBSD.org
COMMENT= Official KiCad 3D model libraries for rendering and MCAD integration
@@ -19,7 +19,7 @@
USE_GITLAB= nodefault
GL_ACCOUNT= kicad
GL_PROJECT= kicad/packages3D
-GL_COMMIT= ${GIT_P3D_HASH}
+GL_TAGNAME= ${GIT_P3D_HASH}
USES= cmake
Index: cad/kicad-library-symbols-devel/Makefile
===================================================================
--- cad/kicad-library-symbols-devel/Makefile
+++ cad/kicad-library-symbols-devel/Makefile
@@ -2,9 +2,9 @@
DISTVERSION= r${GIT_SYM_DATE}
PORTREVISION= 2
CATEGORIES= cad
-MASTER_SITES= https://gitlab.com/kicad/libraries/${PORTNAME}-symbols/-/archive/${GL_COMMIT}/
+MASTER_SITES= https://gitlab.com/kicad/libraries/${PORTNAME}-symbols/-/archive/${GL_TAGNAME}/
PKGNAMESUFFIX= -library-symbols-devel
-DISTNAME= ${PORTNAME}-symbols-${GL_COMMIT}
+DISTNAME= ${PORTNAME}-symbols-${GL_TAGNAME}
MAINTAINER= mr@FreeBSD.org
COMMENT= Official KiCad schematic symbol libraries for the future Kicad 5 release
@@ -19,7 +19,7 @@
USE_GITLAB= nodefault
GL_ACCOUNT= kicad
GL_PROJECT= kicad/symbols
-GL_COMMIT= ${GIT_SYM_HASH}
+GL_TAGNAME= ${GIT_SYM_HASH}
USES= cmake
Index: cad/kicad-library-templates-devel/Makefile
===================================================================
--- cad/kicad-library-templates-devel/Makefile
+++ cad/kicad-library-templates-devel/Makefile
@@ -2,9 +2,9 @@
DISTVERSION= r${GIT_TMPL_DATE}
PORTREVISION= 2
CATEGORIES= cad
-MASTER_SITES= https://gitlab.com/kicad/libraries/${PORTNAME}-templates/-/archive/${GL_COMMIT}/
+MASTER_SITES= https://gitlab.com/kicad/libraries/${PORTNAME}-templates/-/archive/${GL_TAGNAME}/
PKGNAMESUFFIX= -library-tmpl-devel
-DISTNAME= ${PORTNAME}-templates-${GL_COMMIT}
+DISTNAME= ${PORTNAME}-templates-${GL_TAGNAME}
MAINTAINER= mr@FreeBSD.org
COMMENT= Official KiCad project templates
@@ -19,7 +19,7 @@
USE_GITLAB= nodefault
GL_ACCOUNT= kicad
GL_PROJECT= kicad/libraries
-GL_COMMIT= ${GIT_TMPL_HASH}
+GL_TAGNAME= ${GIT_TMPL_HASH}
USES= cmake
Index: comms/cutecom/Makefile
===================================================================
--- comms/cutecom/Makefile
+++ comms/cutecom/Makefile
@@ -16,7 +16,7 @@
USE_QT= buildtools:build core gui network qmake:build serialport widgets
USE_GITLAB= yes
-GL_COMMIT= cce2e5ec01df09ca4b05f055f21942e0de7eb7dd
+GL_TAGNAME= cce2e5ec01df09ca4b05f055f21942e0de7eb7dd
PLIST_FILES= bin/cutecom
Index: comms/minicom/Makefile
===================================================================
--- comms/minicom/Makefile
+++ comms/minicom/Makefile
@@ -23,7 +23,7 @@
USE_GITLAB= yes
GL_SITE= https://salsa.debian.org/
GL_ACCOUNT= minicom-team
-GL_COMMIT= 1fb24b4f8e22e5580da9e8d453d8e5c3a18aed6c
+GL_TAGNAME= 1fb24b4f8e22e5580da9e8d453d8e5c3a18aed6c
OPTIONS_DEFINE= DOCS NLS
OPTIONS_SUB= yes
Index: databases/ods2sql/Makefile
===================================================================
--- databases/ods2sql/Makefile
+++ databases/ods2sql/Makefile
@@ -14,7 +14,7 @@
USE_GITLAB= yes
GL_ACCOUNT= zetok
-GL_COMMIT= aca63183274038487cecb6be17d7f65e92178b8c
+GL_TAGNAME= aca63183274038487cecb6be17d7f65e92178b8c
CARGO_CRATES= adler32-1.2.0 \
ahash-0.4.6 \
Index: databases/pg_ed25519/Makefile
===================================================================
--- databases/pg_ed25519/Makefile
+++ databases/pg_ed25519/Makefile
@@ -14,7 +14,7 @@
USE_GITLAB= yes
GL_ACCOUNT= dwagin
-GL_COMMIT= 203944dbd3444257490eb30d2f6363e391a23a6b
+GL_TAGNAME= 203944dbd3444257490eb30d2f6363e391a23a6b
PLIST_FILES= lib/postgresql/pg_ed25519.so \
share/postgresql/extension/pg_ed25519--${PORTVERSION}.sql \
Index: databases/sfcgal/Makefile
===================================================================
--- databases/sfcgal/Makefile
+++ databases/sfcgal/Makefile
@@ -20,7 +20,7 @@
USE_GITLAB= yes
GL_ACCOUNT= Oslandia
GL_PROJECT= SFCGAL
-GL_COMMIT= 2d6a1a89552f14fe2926038b7237686bb9e5472e
+GL_TAGNAME= 2d6a1a89552f14fe2926038b7237686bb9e5472e
USE_LDCONFIG= yes
PLIST_SUB= SHL3=${PORTVERSION} SHL1=${PORTVERSION:R:R} DEBUG_SUFFIX=${WITH_DEBUG:Dd}
Index: deskutils/belcard/Makefile
===================================================================
--- deskutils/belcard/Makefile
+++ deskutils/belcard/Makefile
@@ -16,7 +16,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.linphone.org/BC
GL_ACCOUNT= public
-GL_COMMIT= f50f203d6a44b6ec3bfd897d8057a94dfefa3e57
+GL_TAGNAME= f50f203d6a44b6ec3bfd897d8057a94dfefa3e57
USE_LDCONFIG= yes
CMAKE_ARGS= -DCMAKE_PREFIX_PATH=${LOCALBASE} \
Index: deskutils/coregarage/Makefile
===================================================================
--- deskutils/coregarage/Makefile
+++ deskutils/coregarage/Makefile
@@ -18,7 +18,7 @@
USE_GITLAB= yes
GL_ACCOUNT= CuboCore
-GL_COMMIT= 50d4c4f246a50df522c08e4b9af690a00ad96c1b
+GL_TAGNAME= 50d4c4f246a50df522c08e4b9af690a00ad96c1b
PLIST_FILES= bin/coregarage \
share/applications/org.cubocore.CoreGarage.desktop \
Index: deskutils/gnome-planner/Makefile
===================================================================
--- deskutils/gnome-planner/Makefile
+++ deskutils/gnome-planner/Makefile
@@ -27,7 +27,7 @@
GL_SITE= https://gitlab.gnome.org
GL_ACCOUNT= World
GL_PROJECT= planner
-GL_COMMIT= 88e86815960a9f66e6f512d4d38d5119ffee3b90
+GL_TAGNAME= 88e86815960a9f66e6f512d4d38d5119ffee3b90
USE_LDCONFIG= yes
INSTALL_TARGET= install-strip
Index: deskutils/griffith/Makefile
===================================================================
--- deskutils/griffith/Makefile
+++ deskutils/griffith/Makefile
@@ -18,7 +18,7 @@
USE_GITLAB= yes
GL_ACCOUNT= Strit
-GL_COMMIT= a593201179695efe93829d9c9a70962ef29dd109
+GL_TAGNAME= a593201179695efe93829d9c9a70962ef29dd109
SHEBANG_FILES= griffith
USE_GNOME= pygobject3
Index: deskutils/gucharmap/Makefile
===================================================================
--- deskutils/gucharmap/Makefile
+++ deskutils/gucharmap/Makefile
@@ -29,7 +29,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.gnome.org
GL_ACCOUNT= GNOME
-GL_COMMIT= 36de4b20deb47bccd8434e36dcc48db8b9460e47
+GL_TAGNAME= 36de4b20deb47bccd8434e36dcc48db8b9460e47
GLIB_SCHEMAS= org.gnome.Charmap.gschema.xml
Index: deskutils/health/Makefile
===================================================================
--- deskutils/health/Makefile
+++ deskutils/health/Makefile
@@ -25,7 +25,7 @@
GL_SITE= https://gitlab.gnome.org
GL_ACCOUNT= World
GL_PROJECT= Health
-GL_COMMIT= d664384370bb55f0e46a78da094c567a5a7e97c6
+GL_TAGNAME= d664384370bb55f0e46a78da094c567a5a7e97c6
MAKE_ENV= ${CARGO_ENV}
CARGO_BUILD= no
CARGO_INSTALL= no
Index: deskutils/libcprime/Makefile
===================================================================
--- deskutils/libcprime/Makefile
+++ deskutils/libcprime/Makefile
@@ -16,6 +16,6 @@
USE_GITLAB= yes
GL_ACCOUNT= CuboCore
-GL_COMMIT= dc9533013e577582193506a154c967bdc63207d3
+GL_TAGNAME= dc9533013e577582193506a154c967bdc63207d3
.include <bsd.port.mk>
Index: deskutils/meteo/Makefile
===================================================================
--- deskutils/meteo/Makefile
+++ deskutils/meteo/Makefile
@@ -21,7 +21,7 @@
USE_GITLAB= yes
GL_ACCOUNT= bitseater
-GL_COMMIT= 6bd48892ec86d7208cb4ad1dd8baf74ba72df68f
+GL_TAGNAME= 6bd48892ec86d7208cb4ad1dd8baf74ba72df68f
USE_GNOME= gtk30
Index: deskutils/solanum/Makefile
===================================================================
--- deskutils/solanum/Makefile
+++ deskutils/solanum/Makefile
@@ -18,7 +18,7 @@
GL_SITE= https://gitlab.gnome.org
GL_ACCOUNT= World
GL_PROJECT= Solanum
-GL_COMMIT= 33c01f8a2da39cba0bc1744e405de2be833876cd
+GL_TAGNAME= 33c01f8a2da39cba0bc1744e405de2be833876cd
MAKE_ENV= ${CARGO_ENV}
CARGO_BUILD= no
CARGO_INSTALL= no
Index: deskutils/sysctlview/Makefile
===================================================================
--- deskutils/sysctlview/Makefile
+++ deskutils/sysctlview/Makefile
@@ -16,7 +16,7 @@
USES= compiler:c++11-lang gnome pkgconfig
USE_GITLAB= yes
GL_ACCOUNT= alfix
-GL_COMMIT= 6ef5c821f66d92c2a1ca3fc964b511425dacd18e
+GL_TAGNAME= 6ef5c821f66d92c2a1ca3fc964b511425dacd18e
USE_GNOME= atk atkmm cairo cairomm gdkpixbuf2 glib20 glibmm gtk30 gtkmm30 \
libsigc++20 pango pangomm
Index: devel/bcunit/Makefile
===================================================================
--- devel/bcunit/Makefile
+++ devel/bcunit/Makefile
@@ -13,7 +13,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.linphone.org/BC
GL_ACCOUNT= public
-GL_COMMIT= e3557aed8ba22e04047a9e4371a331b863081fc8
+GL_TAGNAME= e3557aed8ba22e04047a9e4371a331b863081fc8
USE_LDCONFIG= yes
.include <bsd.port.mk>
Index: devel/bencodetools/Makefile
===================================================================
--- devel/bencodetools/Makefile
+++ devel/bencodetools/Makefile
@@ -14,7 +14,7 @@
USES= shebangfix
USE_GITLAB= yes
GL_ACCOUNT= heikkiorsila
-GL_COMMIT= f08cb85806d5b188f3af04cd21393dd8eb51b287
+GL_TAGNAME= f08cb85806d5b188f3af04cd21393dd8eb51b287
USE_LDCONFIG= yes
SHEBANG_FILES= configure
Index: devel/blueprint-compiler/Makefile
===================================================================
--- devel/blueprint-compiler/Makefile
+++ devel/blueprint-compiler/Makefile
@@ -17,7 +17,7 @@
USE_GNOME= pygobject3
GL_SITE= https://gitlab.gnome.org
GL_ACCOUNT= jwestman
-GL_COMMIT= aa7679618e864748f4f4d8f15283906e712752fe
+GL_TAGNAME= aa7679618e864748f4f4d8f15283906e712752fe
SHEBANG_FILES= ${PORTNAME}.py
NO_ARCH= yes
Index: devel/bsddialog/Makefile
===================================================================
--- devel/bsddialog/Makefile
+++ devel/bsddialog/Makefile
@@ -10,7 +10,7 @@
USE_GITLAB= yes
GL_ACCOUNT= alfix
-GL_COMMIT= 372e26cef89af5e681acd2d6fec01ba8f77f3c64
+GL_TAGNAME= 372e26cef89af5e681acd2d6fec01ba8f77f3c64
LIBDIR= ${WRKSRC}/lib
HEADERS= ${LIBDIR}/bsddialog.h ${LIBDIR}/bsddialog_progressview.h \
Index: devel/cl-alexandria/Makefile
===================================================================
--- devel/cl-alexandria/Makefile
+++ devel/cl-alexandria/Makefile
@@ -14,7 +14,7 @@
USE_ASDF= yes
USE_GITLAB= yes
GL_SITE= https://gitlab.common-lisp.net
-GL_COMMIT= f35e232ceb2ada8d10e7fdf27ccac07f781eea0e
+GL_TAGNAME= f35e232ceb2ada8d10e7fdf27ccac07f781eea0e
OPTIONS_DEFINE= DOCS
Index: devel/cl-asdf/Makefile
===================================================================
--- devel/cl-asdf/Makefile
+++ devel/cl-asdf/Makefile
@@ -13,7 +13,7 @@
USES= gmake
USE_GITLAB= yes
GL_SITE= https://gitlab.common-lisp.net
-GL_COMMIT= a58828745a610c1af841a86587ba197707c89eb3
+GL_TAGNAME= a58828745a610c1af841a86587ba197707c89eb3
ALL_TARGET= build/asdf.lisp
SUB_FILES= pkg-message
Index: devel/deheader/Makefile
===================================================================
--- devel/deheader/Makefile
+++ devel/deheader/Makefile
@@ -17,7 +17,7 @@
USE_GITLAB= yes
GL_ACCOUNT= esr
-GL_COMMIT= b408c9013f4e1d917cc12f06edda4e1782e64888
+GL_TAGNAME= b408c9013f4e1d917cc12f06edda4e1782e64888
PLIST_FILES= bin/deheader man/man1/deheader.1.gz
Index: devel/eql5/Makefile
===================================================================
--- devel/eql5/Makefile
+++ devel/eql5/Makefile
@@ -22,7 +22,7 @@
USE_GITLAB= yes
GL_ACCOUNT= eql
GL_PROJECT= ${PORTNAME:tu}
-GL_COMMIT= 0bf4fbaf2e231a30a0173640c3bd478e6ea6ad7a
+GL_TAGNAME= 0bf4fbaf2e231a30a0173640c3bd478e6ea6ad7a
WRKSRC_SUBDIR= src
Index: devel/git-lab/Makefile
===================================================================
--- devel/git-lab/Makefile
+++ devel/git-lab/Makefile
@@ -17,6 +17,6 @@
GL_SITE= https://invent.kde.org
GL_ACCOUNT= sdk
GL_PROJECT= ${PORTNAME}
-GL_COMMIT= 68c892f1f5268652d23cea04b1af294b8fc32dbb
+GL_TAGNAME= 68c892f1f5268652d23cea04b1af294b8fc32dbb
.include <bsd.port.mk>
Index: devel/gitaly/Makefile
===================================================================
--- devel/gitaly/Makefile
+++ devel/gitaly/Makefile
@@ -33,7 +33,7 @@
USE_GITLAB= yes
GL_ACCOUNT= gitlab-org
# Find this here: https://gitlab.com/gitlab-org/gitaly/-/tags
-GL_COMMIT= 84a9837993a7eafbdfe56a88f1c5efbd73e2da16
+GL_TAGNAME= 84a9837993a7eafbdfe56a88f1c5efbd73e2da16
# for go dependencies
# Gitlab hosts there dependencies on their own platform and not on go-proxy
Index: devel/gitlab-runner/Makefile
===================================================================
--- devel/gitlab-runner/Makefile
+++ devel/gitlab-runner/Makefile
@@ -26,7 +26,7 @@
GO_BUILDFLAGS= -ldflags=" \
-X gitlab.com/gitlab-org/gitlab-runner/commands.ROOTCONFIGDIR=${ETCDIR} \
-X gitlab.com/gitlab-org/gitlab-runner/common.VERSION=${PORTVERSION} \
- -X gitlab.com/gitlab-org/gitlab-runner/common.REVISION=${GL_COMMIT:C/^(........).*/\1/} \
+ -X gitlab.com/gitlab-org/gitlab-runner/common.REVISION=${GL_TAGNAME:C/^(........).*/\1/} \
-X gitlab.com/gitlab-org/gitlab-runner/common.BUILT=${_BUILD_DATE} \
-X gitlab.com/gitlab-org/gitlab-runner/common.BRANCH=${GITBRANCH} \
-s -w"
@@ -34,7 +34,7 @@
GL_ACCOUNT= gitlab-org
# Find tags here:
# https://gitlab.com/gitlab-org/gitlab-runner/-/tags
-GL_COMMIT= 79704081c9fe038e6054066d7d7462c712d7345e
+GL_TAGNAME= 79704081c9fe038e6054066d7d7462c712d7345e
GITBRANCH= 16-0-stable
# for go dependencies
Index: devel/gitlab-shell/Makefile
===================================================================
--- devel/gitlab-shell/Makefile
+++ devel/gitlab-shell/Makefile
@@ -18,7 +18,7 @@
USE_GITLAB= yes
GL_ACCOUNT= gitlab-org
# Find the commit hash here: https://gitlab.com/gitlab-org/gitlab-shell/-/tags
-GL_COMMIT= fa92c356b543dcf1f40cc890e52d7b13c2c0f78a
+GL_TAGNAME= fa92c356b543dcf1f40cc890e52d7b13c2c0f78a
USERS= git
GROUPS= git
Index: devel/icmake/Makefile
===================================================================
--- devel/icmake/Makefile
+++ devel/icmake/Makefile
@@ -27,7 +27,7 @@
icmake_CMD= ${LOCALBASE}/bin/icmake
GL_ACCOUNT= fbb-git
-GL_COMMIT= 9b958b05ac462adf6cde394875964a8127599514
+GL_TAGNAME= 9b958b05ac462adf6cde394875964a8127599514
OPTIONS_DEFINE= DOCS EXAMPLES
Index: devel/libevdev/Makefile
===================================================================
--- devel/libevdev/Makefile
+++ devel/libevdev/Makefile
@@ -15,7 +15,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.freedesktop.org
-GL_COMMIT= 6ea230bc72353c54fac628987b87cc1d3b6fd842
+GL_TAGNAME= 6ea230bc72353c54fac628987b87cc1d3b6fd842
MESON_ARGS= -Ddocumentation=disabled -Dtests=disabled
Index: devel/libsysctlmibinfo/Makefile
===================================================================
--- devel/libsysctlmibinfo/Makefile
+++ devel/libsysctlmibinfo/Makefile
@@ -13,7 +13,7 @@
GL_ACCOUNT= alfix
GL_PROJECT= sysctlmibinfo
-GL_COMMIT= d09fc0361b258059a6781afa6fd0a58e332f3a74
+GL_TAGNAME= d09fc0361b258059a6781afa6fd0a58e332f3a74
USE_LDCONFIG= yes
Index: devel/libsysctlmibinfo2/Makefile
===================================================================
--- devel/libsysctlmibinfo2/Makefile
+++ devel/libsysctlmibinfo2/Makefile
@@ -18,7 +18,7 @@
GL_ACCOUNT= alfix
GL_PROJECT= sysctlmibinfo2
-GL_COMMIT= de427a99fc515c22a057998a29c92221e2581592\
+GL_TAGNAME= de427a99fc515c22a057998a29c92221e2581592\
PLIST_FILES= include/sysctlmibinfo2.h \
lib/libsysctlmibinfo2.a \
Index: devel/llvm-morello/Makefile
===================================================================
--- devel/llvm-morello/Makefile
+++ devel/llvm-morello/Makefile
@@ -13,7 +13,7 @@
GL_SITE= https://git.morello-project.org
GL_ACCOUNT= morello
GL_PROJECT= llvm-project
-GL_COMMIT= ${LLVM_COMMIT}
+GL_TAGNAME= ${LLVM_COMMIT}
# Regularly tested targets as part of Android development
LLVM_TARGETS= AArch64;ARM;BPF;X86
Index: devel/loccount/Makefile
===================================================================
--- devel/loccount/Makefile
+++ devel/loccount/Makefile
@@ -15,7 +15,7 @@
USES= gmake go python:build
USE_GITLAB= yes
GL_ACCOUNT= esr
-GL_COMMIT= dc8279ab2e49ba60db121a47c15dc4ef8b543352
+GL_TAGNAME= dc8279ab2e49ba60db121a47c15dc4ef8b543352
GO_PKGNAME= gitlab.com/${GL_ACCOUNT}/${PORTNAME}
@@ -28,7 +28,7 @@
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GO_ENV} ${GMAKE} loccount loccount.1
do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}-${GL_COMMIT} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
+ ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}-${GL_TAGNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
.include <bsd.port.mk>
Index: devel/lua-gettext/Makefile
===================================================================
--- devel/lua-gettext/Makefile
+++ devel/lua-gettext/Makefile
@@ -14,7 +14,7 @@
USE_GITLAB= yes
GL_ACCOUNT= ports1
GL_PROJECT= lua-gettext
-GL_COMMIT= abd88932fc6e69b8955921bd0682b11db3102eca
+GL_TAGNAME= abd88932fc6e69b8955921bd0682b11db3102eca
MAKEFILE= ${FILESDIR}/Makefile
DOCS= README README.md CHANGELOG
Index: devel/lua-pty/Makefile
===================================================================
--- devel/lua-pty/Makefile
+++ devel/lua-pty/Makefile
@@ -15,7 +15,7 @@
USE_GITLAB= yes
GL_ACCOUNT= ports1
GL_PROJECT= lua-pty
-GL_COMMIT= 1c36a8b40688c6a38c188000bba59ce20ab616ce
+GL_TAGNAME= 1c36a8b40688c6a38c188000bba59ce20ab616ce
MAKEFILE= ${FILESDIR}/Makefile
Index: devel/php-libawl/Makefile
===================================================================
--- devel/php-libawl/Makefile
+++ devel/php-libawl/Makefile
@@ -17,7 +17,7 @@
USE_GITLAB= yes
GL_ACCOUNT= davical-project
GL_PROJECT= awl
-GL_COMMIT= f1c3753a2f356d856dfc279754f7885080e9e827
+GL_TAGNAME= f1c3753a2f356d856dfc279754f7885080e9e827
NO_ARCH= yes
NO_BUILD= yes
Index: devel/py-pop-config/Makefile
===================================================================
--- devel/py-pop-config/Makefile
+++ devel/py-pop-config/Makefile
@@ -14,7 +14,7 @@
USE_GITLAB= yes
GL_ACCOUNT= saltstack/pop
-GL_COMMIT= 1eff06ef08c51355dd27165abeacaeb7d03f2f8f
+GL_TAGNAME= 1eff06ef08c51355dd27165abeacaeb7d03f2f8f
NO_ARCH= yes
Index: devel/py-pop/Makefile
===================================================================
--- devel/py-pop/Makefile
+++ devel/py-pop/Makefile
@@ -20,7 +20,7 @@
USE_GITLAB= yes
GL_ACCOUNT= saltstack/pop
-GL_COMMIT= 58d846bdd196b71348910aea77cd0139f70c4f12
+GL_TAGNAME= 58d846bdd196b71348910aea77cd0139f70c4f12
USE_PYTHON= autoplist distutils
NO_ARCH= yes
Index: devel/py-tiamat/Makefile
===================================================================
--- devel/py-tiamat/Makefile
+++ devel/py-tiamat/Makefile
@@ -21,7 +21,7 @@
USE_GITLAB= yes
GL_ACCOUNT= saltstack/pop
-GL_COMMIT= 7b2e30f7fc1bd9f2560789736c7d0e612b3ddaa0
+GL_TAGNAME= 7b2e30f7fc1bd9f2560789736c7d0e612b3ddaa0
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
Index: devel/safe-iop/Makefile
===================================================================
--- devel/safe-iop/Makefile
+++ devel/safe-iop/Makefile
@@ -25,7 +25,7 @@
USE_GITLAB= yes
GL_ACCOUNT= ports1
GL_PROJECT= safe-iop
-GL_COMMIT= 2b20d77fb9f22b1ec9e2b3d2eb53c532596d3203
+GL_TAGNAME= 2b20d77fb9f22b1ec9e2b3d2eb53c532596d3203
do-install:
${INSTALL_LIB} ${WRKSRC}/libsafe_iop.so.0 ${STAGEDIR}${PREFIX}/lib
Index: devel/tailor/Makefile
===================================================================
--- devel/tailor/Makefile
+++ devel/tailor/Makefile
@@ -21,7 +21,7 @@
USE_GITLAB= yes
GL_ACCOUNT= ports1
GL_PROJECT= tailor
-GL_COMMIT= 06d9068d84a4e78f30579fbdc46ed22ec9d953c7
+GL_TAGNAME= 06d9068d84a4e78f30579fbdc46ed22ec9d953c7
OPTIONS_DEFINE= DOCS
Index: devel/tclcheck/Makefile
===================================================================
--- devel/tclcheck/Makefile
+++ devel/tclcheck/Makefile
@@ -17,7 +17,7 @@
USE_GITLAB= yes
GL_ACCOUNT= ports1
-GL_COMMIT= 9de3e5b12c5f453137305377344cb1d1c848e75e
+GL_TAGNAME= 9de3e5b12c5f453137305377344cb1d1c848e75e
OPTIONS_DEFINE= DOCS
Index: dns/bind9-devel/Makefile
===================================================================
--- dns/bind9-devel/Makefile
+++ dns/bind9-devel/Makefile
@@ -56,7 +56,7 @@
GL_SITE= https://gitlab.isc.org
GL_ACCOUNT= isc-projects
GL_PROJECT= bind9
-GL_COMMIT= 84854b3f22b885ba4cfbf34697de4fbed1cad0a2
+GL_TAGNAME= 84854b3f22b885ba4cfbf34697de4fbed1cad0a2
CPE_VENDOR= isc
CPE_VERSION= ${ISCVERSION:C/-.*//}
@@ -201,7 +201,7 @@
# XXX: Remove first REINPLACE_CMD
post-patch:
- @${REINPLACE_CMD} -e '/^m4_define(\[bind_SRCID/s/\[m4.*\]/${GL_COMMIT}/' \
+ @${REINPLACE_CMD} -e '/^m4_define(\[bind_SRCID/s/\[m4.*\]/${GL_TAGNAME}/' \
${WRKSRC}/configure.ac
.for FILE in check/named-checkconf.rst named/named.rst nsupdate/nsupdate.rst \
rndc/rndc.rst
Index: editors/aee/Makefile
===================================================================
--- editors/aee/Makefile
+++ editors/aee/Makefile
@@ -16,7 +16,7 @@
USE_GITLAB= yes
GL_ACCOUNT= ports1
GL_PROJECT= aee
-GL_COMMIT= bf68f4accb96ac39020ac2d9092022aebfa5df27
+GL_TAGNAME= bf68f4accb96ac39020ac2d9092022aebfa5df27
OPTIONS_DEFINE= XAE
Index: editors/dte/Makefile
===================================================================
--- editors/dte/Makefile
+++ editors/dte/Makefile
@@ -14,7 +14,7 @@
USE_GITLAB= yes
GL_ACCOUNT= craigbarnes
-GL_COMMIT= cae7c45ea5a563c022001a54d1eee71c268f62b4
+GL_TAGNAME= cae7c45ea5a563c022001a54d1eee71c268f62b4
MAKEFILE= ${WRKSRC}/GNUmakefile
MAKE_ARGS= V=1 prefix=${PREFIX} mandir=${PREFIX}/man
Index: editors/jucipp/Makefile
===================================================================
--- editors/jucipp/Makefile
+++ editors/jucipp/Makefile
@@ -22,7 +22,7 @@
USES= cmake compiler:c++14-lang desktop-file-utils gnome pkgconfig
USE_GITLAB= yes
GL_ACCOUNT= cppit
-GL_COMMIT= 692f3de1f0aad00051096579975e515bccc3802a
+GL_TAGNAME= 692f3de1f0aad00051096579975e515bccc3802a
GL_TUPLE= cppit:libclangmm:9704b9b6de0982a588fa41741157d5640afedf30:libclangmm/lib/libclangmm \
eidheim:tiny-process-library:839ff806dc447ff49af80f9a9eaa7949f770f8e5:tinyprocesslibrary/lib/tiny-process-library
USE_GNOME= gdkpixbuf2 gtkmm30 gtksourceviewmm3
Index: editors/lazarus-devel/Makefile
===================================================================
--- editors/lazarus-devel/Makefile
+++ editors/lazarus-devel/Makefile
@@ -23,7 +23,7 @@
USE_GITLAB= yes
GL_ACCOUNT= freepascal.org/lazarus
GL_PROJECT= ${PORTNAME}
-GL_COMMIT= 8d4b429879fc99ee4652c966015e19e2cb1131d8
+GL_TAGNAME= 8d4b429879fc99ee4652c966015e19e2cb1131d8
USES= desktop-file-utils fpc:run gettext gmake iconv shared-mime-info xorg
USE_FPC?= chm cairo dblib fcl-base fcl-db fcl-fpcunit fcl-image fcl-json fcl-net \
Index: emulators/dps8m/Makefile
===================================================================
--- emulators/dps8m/Makefile
+++ emulators/dps8m/Makefile
@@ -19,7 +19,7 @@
USES= gmake
USE_GITLAB= yes
-GL_COMMIT= 572f79bb4f0f84a8b16c3892c894c2b9ed64b458
+GL_TAGNAME= 572f79bb4f0f84a8b16c3892c894c2b9ed64b458
CFLAGS_powerpc64= -Datomic_testandset_64=atomic_testandset_long
CFLAGS_powerpc64le= -Datomic_testandset_64=atomic_testandset_long
Index: emulators/fuse-roms/Makefile
===================================================================
--- emulators/fuse-roms/Makefile
+++ emulators/fuse-roms/Makefile
@@ -13,7 +13,7 @@
USE_GITLAB= yes
GL_ACCOUNT= menelkir
GL_PROJECT= fuseroms
-GL_COMMIT= fed6cfca1d13acad86a0802bfbd4b8af3a42d688
+GL_TAGNAME= fed6cfca1d13acad86a0802bfbd4b8af3a42d688
NO_ARCH= yes
NO_BUILD= yes
DATADIR= ${PREFIX}/share/fuse
Index: emulators/qemu-devel/Makefile
===================================================================
--- emulators/qemu-devel/Makefile
+++ emulators/qemu-devel/Makefile
@@ -31,7 +31,7 @@
USE_XORG= pixman
GL_ACCOUNT= qemu-project
-GL_COMMIT= a9fe9e191b4305b88c356a1ed9ac3baf89eb18aa
+GL_TAGNAME= a9fe9e191b4305b88c356a1ed9ac3baf89eb18aa
GL_TUPLE= qemu-project:keycodemapdb:d21009b1c9f94b740ea66be8e48a1d8ad8124023:keycodemapdb/ui/keycodemapdb \
qemu-project:dtc:b6910bec11614980a21e46fbccc35934b671bd81:dtc/dtc \
qemu-project:meson:3a9b285a55b91b53b2acda987192274352ecb5be:meson/meson \
Index: emulators/tnylpo/Makefile
===================================================================
--- emulators/tnylpo/Makefile
+++ emulators/tnylpo/Makefile
@@ -12,7 +12,7 @@
USES= gmake
USE_GITLAB= yes
GL_ACCOUNT= gbrein
-GL_COMMIT= 3216c00c7a97d373b51192a96da46510f75f1adb
+GL_TAGNAME= 3216c00c7a97d373b51192a96da46510f75f1adb
MAKEFILE= makefile
Index: ftp/coeurl/Makefile
===================================================================
--- ftp/coeurl/Makefile
+++ ftp/coeurl/Makefile
@@ -21,6 +21,6 @@
USE_GITLAB= yes
GL_SITE= https://nheko.im/
GL_ACCOUNT= nheko-reborn
-GL_COMMIT= 2a20a129240a1a017b37b6874faab499ca4e523b
+GL_TAGNAME= 2a20a129240a1a017b37b6874faab499ca4e523b
.include <bsd.port.mk>
Index: games/aisleriot/Makefile
===================================================================
--- games/aisleriot/Makefile
+++ games/aisleriot/Makefile
@@ -28,7 +28,7 @@
GL_SITE= https://gitlab.gnome.org/
GL_ACCOUNT= GNOME
-GL_COMMIT= 8a4542d2f44ee1425a56ac7595ed51449ae0290e
+GL_TAGNAME= 8a4542d2f44ee1425a56ac7595ed51449ae0290e
MESON_ARGS= -Dtheme_kde=false
SHEBANG_FILES= data/icons/meson_updateiconcache.py \
Index: games/beret/Makefile
===================================================================
--- games/beret/Makefile
+++ games/beret/Makefile
@@ -19,7 +19,7 @@
USE_GITLAB= yes
GL_ACCOUNT= alfix
GL_PROJECT= ${PORTNAME}-freebsd
-GL_COMMIT= ab3c397400be60ce69903389727acf6cdf0a3119
+GL_TAGNAME= ab3c397400be60ce69903389727acf6cdf0a3119
DATADIR= ${PREFIX}/share/${PORTNAME}
Index: games/bs/Makefile
===================================================================
--- games/bs/Makefile
+++ games/bs/Makefile
@@ -18,7 +18,7 @@
USE_GITLAB= yes
GL_ACCOUNT= esr
-GL_COMMIT= 73947294765e163a7b914fd6eb4dd364125b3382
+GL_TAGNAME= 73947294765e163a7b914fd6eb4dd364125b3382
PLIST_FILES= ${DESKTOPDIR}/${PORTNAME}.desktop \
bin/${PORTNAME} \
Index: games/domino-chain/Makefile
===================================================================
--- games/domino-chain/Makefile
+++ games/domino-chain/Makefile
@@ -20,7 +20,7 @@
pkgconfig sdl
USE_GITLAB= yes
GL_PROJECT= domino-chain.gitlab.io
-GL_COMMIT= 3969eaa66f753e873eca4ef33b263ca1307be2df
+GL_TAGNAME= 3969eaa66f753e873eca4ef33b263ca1307be2df
USE_SDL= sdl2 mixer2 ttf2 image2
LIBS+= ${LOCALBASE}/lib/libintl.so
Index: games/frotz/Makefile
===================================================================
--- games/frotz/Makefile
+++ games/frotz/Makefile
@@ -11,7 +11,7 @@
USE_GITLAB= yes
GL_ACCOUNT= DavidGriffith
-GL_COMMIT= 73eec90ebb159ed687b74cbaf81e135c3e7e390b
+GL_TAGNAME= 73eec90ebb159ed687b74cbaf81e135c3e7e390b
USES= gmake ncurses
Index: games/jinput/Makefile
===================================================================
--- games/jinput/Makefile
+++ games/jinput/Makefile
@@ -16,7 +16,7 @@
# Using a fork because of maven dependencies
USE_GITLAB= yes
GL_ACCOUNT= voidanix
-GL_COMMIT= bf22dd975bbba31f01895332255b63df376894e6
+GL_TAGNAME= bf22dd975bbba31f01895332255b63df376894e6
USE_JAVA= 8+
Index: games/jutils/Makefile
===================================================================
--- games/jutils/Makefile
+++ games/jutils/Makefile
@@ -15,7 +15,7 @@
# Using a fork because of maven dependencies
USE_GITLAB= yes
GL_ACCOUNT= voidanix
-GL_COMMIT= f950e23e42081308b4be3b0fc4b57d4dbab70dac
+GL_TAGNAME= f950e23e42081308b4be3b0fc4b57d4dbab70dac
USE_JAVA= 8+
Index: games/lugaru/Makefile
===================================================================
--- games/lugaru/Makefile
+++ games/lugaru/Makefile
@@ -24,7 +24,7 @@
USE_GITLAB= yes
GL_ACCOUNT= osslugaru
-GL_COMMIT= c7b99378439735c60f84869b05c6ebde53083667
+GL_TAGNAME= c7b99378439735c60f84869b05c6ebde53083667
CMAKE_ON= SYSTEM_INSTALL
Index: games/meritous/Makefile
===================================================================
--- games/meritous/Makefile
+++ games/meritous/Makefile
@@ -12,7 +12,7 @@
USES= gettext gmake gnome sdl
USE_GNOME= intltool
USE_GITLAB= yes
-GL_COMMIT= a754f33ae35f47b98cc1aa7fe8de43ed24662d11
+GL_TAGNAME= a754f33ae35f47b98cc1aa7fe8de43ed24662d11
USE_SDL= sdl mixer image
LDFLAGS+= ${LOCALBASE}/lib/libintl.so
Index: games/open-adventure/Makefile
===================================================================
--- games/open-adventure/Makefile
+++ games/open-adventure/Makefile
@@ -14,7 +14,7 @@
USES= gmake libedit pkgconfig python:build
USE_GITLAB= yes
GL_ACCOUNT= esr
-GL_COMMIT= b6c0f5bff08303bba30bd278e7a8e1673663b7b3
+GL_TAGNAME= b6c0f5bff08303bba30bd278e7a8e1673663b7b3
MAKE_ENV= CCFLAGS="${CFLAGS}"
ALL_TARGET= advent
Index: games/re3/Makefile
===================================================================
--- games/re3/Makefile
+++ games/re3/Makefile
@@ -26,11 +26,11 @@
USE_GITLAB= yes
GL_SITE= https://git.rip
GL_ACCOUNT= Obama
-GL_COMMIT= 9a7fa478578beaba947ea867c15a25e411d641d8
+GL_TAGNAME= 9a7fa478578beaba947ea867c15a25e411d641d8
bash_CMD= /bin/sh
USE_XORG= x11
# is required till https://git.rip got updated to a newer gitlab version
-WRKSRC= ${WRKDIR}/${GL_PROJECT}-${GL_COMMIT}-${GL_COMMIT}
+WRKSRC= ${WRKDIR}/${GL_PROJECT}-${GL_TAGNAME}-${GL_TAGNAME}
LDFLAGS_i386= -Wl,-znotext
Index: games/ski/Makefile
===================================================================
--- games/ski/Makefile
+++ games/ski/Makefile
@@ -14,7 +14,7 @@
USE_GITLAB= yes
GL_ACCOUNT= esr
-GL_COMMIT= 0b50570a28a99de2ea797f703b104ec03835d24d
+GL_TAGNAME= 0b50570a28a99de2ea797f703b104ec03835d24d
NO_BUILD= yes
Index: games/solarus-quest-editor/Makefile
===================================================================
--- games/solarus-quest-editor/Makefile
+++ games/solarus-quest-editor/Makefile
@@ -22,7 +22,7 @@
USE_GITLAB= yes
GL_ACCOUNT= solarus-games
-GL_COMMIT= c8d0835c3a62a0e60cdb32d26be8b75485a23a96
+GL_TAGNAME= c8d0835c3a62a0e60cdb32d26be8b75485a23a96
USE_SDL= sdl2 ttf2 image2
USE_QT= buildtools:build concurrent core gui linguist qmake:build widgets
Index: games/solarus/Makefile
===================================================================
--- games/solarus/Makefile
+++ games/solarus/Makefile
@@ -21,7 +21,7 @@
USE_GITLAB= yes
GL_ACCOUNT= solarus-games
-GL_COMMIT= 21a378a7858460809ffef1c96a07a493d709730c
+GL_TAGNAME= 21a378a7858460809ffef1c96a07a493d709730c
MAKE_ARGS+= DESTDIR=${STAGEDIR}
USE_QT= buildtools:build core gui linguisttools:build widgets
Index: games/toppler/Makefile
===================================================================
--- games/toppler/Makefile
+++ games/toppler/Makefile
@@ -17,7 +17,7 @@
USES= gmake magick:build sdl pkgconfig
USE_GITLAB= yes
GL_ACCOUNT= roever
-GL_COMMIT= 5e3e581bb7b58098f54df9b634c7bd4a23ba66b5
+GL_TAGNAME= 5e3e581bb7b58098f54df9b634c7bd4a23ba66b5
USE_SDL= sdl2 image2 mixer2
PORTDOCS= *
Index: games/veloren-weekly/Makefile
===================================================================
--- games/veloren-weekly/Makefile
+++ games/veloren-weekly/Makefile
@@ -24,7 +24,7 @@
USES= cargo xorg
USE_XORG= xcb
USE_GITLAB= yes
-GL_COMMIT= 8afcf07465f374d4c2d10aea16855ddb40386905
+GL_TAGNAME= 8afcf07465f374d4c2d10aea16855ddb40386905
CARGO_ENV= VELOREN_USERDATA_STRATEGY=system SHADERC_LIB_DIR="${LOCALBASE}/lib"
PLIST_FILES= bin/${PORTNAME}-server-cli \
bin/${PORTNAME}-voxygen \
@@ -52,7 +52,7 @@
@${REINPLACE_CMD} -e 's/"git"/"${TRUE}"/' \
${WRKSRC}/common/build.rs
# Extract (snapshot) version from the port instead of empty file
- @${REINPLACE_CMD} -e '/GIT_HASH/s/=.*/= "${GL_COMMIT:C/(.{8}).*/\1/}";/' \
+ @${REINPLACE_CMD} -e '/GIT_HASH/s/=.*/= "${GL_TAGNAME:C/(.{8}).*/\1/}";/' \
-e "/GIT_DATE.*static/s/=.*/= \"$$(date -ur $$(${AWK} '/TIMESTAMP/ { print $$3 }' \
${DISTINFO_FILE}) +'%Y-%m-%d-%H:%M')\";/" \
${WRKSRC}/common/src/util/mod.rs
Index: games/voadi/Makefile
===================================================================
--- games/voadi/Makefile
+++ games/voadi/Makefile
@@ -13,7 +13,7 @@
RUN_DEPENDS= solarus-run:games/solarus
USE_GITLAB= yes
-GL_COMMIT= 228b8ebf61afbd4f1c609224466d4fb10c11218a
+GL_TAGNAME= 228b8ebf61afbd4f1c609224466d4fb10c11218a
NO_ARCH= yes
NO_BUILD= yes
Index: graphics/cbonsai/Makefile
===================================================================
--- graphics/cbonsai/Makefile
+++ graphics/cbonsai/Makefile
@@ -13,7 +13,7 @@
USES= compiler:c11 ncurses
USE_GITLAB= yes
GL_ACCOUNT= jallbrit
-GL_COMMIT= 7a6f4b0b0e1ce463691885b32a81517d2839d150
+GL_TAGNAME= 7a6f4b0b0e1ce463691885b32a81517d2839d150
MAKE_ARGS= LDLIBS="${LDFLAGS} -lncurses -lpanel"
ALL_TARGET= ${PORTNAME}
Index: graphics/drm_info/Makefile
===================================================================
--- graphics/drm_info/Makefile
+++ graphics/drm_info/Makefile
@@ -17,7 +17,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= emersion
-GL_COMMIT= f819ac496d1d9aa5dc5e50bb3bd60dfbd0030ae6
+GL_TAGNAME= f819ac496d1d9aa5dc5e50bb3bd60dfbd0030ae6
PLIST_FILES= bin/${PORTNAME}
OPTIONS_DEFINE= MANPAGES PCI
Index: graphics/fig2sxd/Makefile
===================================================================
--- graphics/fig2sxd/Makefile
+++ graphics/fig2sxd/Makefile
@@ -15,7 +15,7 @@
USE_GITLAB= yes
GL_ACCOUNT= acfbuerger
-GL_COMMIT= 77a24df7a2b1bea8a8a7e73690487a9e80a15d48
+GL_TAGNAME= 77a24df7a2b1bea8a8a7e73690487a9e80a15d48
PLIST_FILES= bin/fig2sxd man/man1/fig2sxd.1.gz
Index: graphics/gcolor3/Makefile
===================================================================
--- graphics/gcolor3/Makefile
+++ graphics/gcolor3/Makefile
@@ -21,7 +21,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.gnome.org
GL_ACCOUNT= World
-GL_COMMIT= 7053f9e6a890175fc212df625e02ffbdce418146
+GL_TAGNAME= 7053f9e6a890175fc212df625e02ffbdce418146
USE_GNOME= cairo gdkpixbuf2 gtk30 intltool
MESON_ARGS= -Dwerror=false
Index: graphics/glaxnimate/Makefile
===================================================================
--- graphics/glaxnimate/Makefile
+++ graphics/glaxnimate/Makefile
@@ -36,7 +36,7 @@
USE_GITLAB= yes
GL_ACCOUNT= mattbas
-GL_COMMIT= 3090870e9172dfd587e89753c2d4d19e9c083f70
+GL_TAGNAME= 3090870e9172dfd587e89753c2d4d19e9c083f70
GL_TUPLE= mattbas:CMake-Lib:3b445d91fd4620542162f35ccc6bf14533a76321:mattbas_CMake_Lib/cmake \
mattbas:Qt-Color-Widgets:621a1a3c336aedc451c1597e66449e239d0aed5e:mattbas_Qt_Color_Widgets/external/Qt-Color-Widgets \
Index: graphics/glx-utils/Makefile
===================================================================
--- graphics/glx-utils/Makefile
+++ graphics/glx-utils/Makefile
@@ -18,7 +18,7 @@
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= mesa
GL_PROJECT= demos
-GL_COMMIT= 661681767bfb4e8f136aac1fd7934e6b0fa46d29
+GL_TAGNAME= 661681767bfb4e8f136aac1fd7934e6b0fa46d29
WRKSRC_SUBDIR= src/xdemos
CFLAGS+= -ffunction-sections -fdata-sections
LDFLAGS+= -Wl,--gc-sections
Index: graphics/gtk-update-icon-cache/Makefile
===================================================================
--- graphics/gtk-update-icon-cache/Makefile
+++ graphics/gtk-update-icon-cache/Makefile
@@ -15,7 +15,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.gnome.org
GL_ACCOUNT= Community/gentoo
-GL_COMMIT= 66d25fb3ec331817e108cd6a2c4020d55e8ba74b
+GL_TAGNAME= 66d25fb3ec331817e108cd6a2c4020d55e8ba74b
OPTIONS_DEFINE= MANPAGES
OPTIONS_DEFAULT=MANPAGES
Index: graphics/igt-gpu-tools/Makefile
===================================================================
--- graphics/igt-gpu-tools/Makefile
+++ graphics/igt-gpu-tools/Makefile
@@ -22,7 +22,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= drm
-GL_COMMIT= 9338ab3ec085292817ab1e74d1f2fb90b6a98332
+GL_TAGNAME= 9338ab3ec085292817ab1e74d1f2fb90b6a98332
USE_GNOME= cairo glib20
Index: graphics/katarakt/Makefile
===================================================================
--- graphics/katarakt/Makefile
+++ graphics/katarakt/Makefile
@@ -20,7 +20,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.cs.fau.de
GL_ACCOUNT= Qui_Sum
-GL_COMMIT= 99735bc0b15b57d689b6c982d43b85ed1b40ef45
+GL_TAGNAME= 99735bc0b15b57d689b6c982d43b85ed1b40ef45
PLIST_FILES= bin/katarakt \
man/man1/katarakt.1.gz
Index: graphics/kmscube/Makefile
===================================================================
--- graphics/kmscube/Makefile
+++ graphics/kmscube/Makefile
@@ -16,7 +16,7 @@
USE_GL= egl gbm glesv2
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= mesa
-GL_COMMIT= cf4ec7f35521eb54d72ce0c92ce65b2249171cbd
+GL_TAGNAME= cf4ec7f35521eb54d72ce0c92ce65b2249171cbd
PLIST_FILES= bin/${PORTNAME} \
bin/texturator \
${NULL}
Index: graphics/knotter/Makefile
===================================================================
--- graphics/knotter/Makefile
+++ graphics/knotter/Makefile
@@ -17,7 +17,7 @@
USE_GITLAB= yes
GL_ACCOUNT= mattbas
GL_PROJECT= Knotter
-GL_COMMIT= 9ce77e3e0507343a3b400c6806ab79b52b1ad596
+GL_TAGNAME= 9ce77e3e0507343a3b400c6806ab79b52b1ad596
GL_TUPLE= mattbas:CMake-Lib:6dd5afe4059899b47dbe0a7e2b940b1af41a59f6:mattbas_CMake_Lib/cmake \
mattbas:Qt-Color-Widgets:450e54570a6f96b2d90960c3c62f7111bbc147e9:mattbas_Qt_Color_Widgets/src/widgets/color \
Index: graphics/libglvnd/Makefile
===================================================================
--- graphics/libglvnd/Makefile
+++ graphics/libglvnd/Makefile
@@ -15,7 +15,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= glvnd
-GL_COMMIT= b05bbcdaeb9b700cf7877e6d66f8fc3ac952295b
+GL_TAGNAME= b05bbcdaeb9b700cf7877e6d66f8fc3ac952295b
OPTIONS_DEFINE= X11
OPTIONS_DEFAULT=X11
Index: graphics/libliftoff/Makefile
===================================================================
--- graphics/libliftoff/Makefile
+++ graphics/libliftoff/Makefile
@@ -17,6 +17,6 @@
USE_LDCONFIG= yes
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= emersion
-GL_COMMIT= e045589f37835d66e3ffe8130a597bb4eb9ee08f
+GL_TAGNAME= e045589f37835d66e3ffe8130a597bb4eb9ee08f
.include <bsd.port.mk>
Index: graphics/libpillowfight/Makefile
===================================================================
--- graphics/libpillowfight/Makefile
+++ graphics/libpillowfight/Makefile
@@ -17,7 +17,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.gnome.org/World
GL_ACCOUNT= OpenPaperwork
-GL_COMMIT= dae21f97de872e4ad2e94f1b0fc53302a00259fd
+GL_TAGNAME= dae21f97de872e4ad2e94f1b0fc53302a00259fd
USE_LDCONFIG= yes
PLIST_FILES= include/pillowfight/pillowfight.h \
Index: graphics/piglit/Makefile
===================================================================
--- graphics/piglit/Makefile
+++ graphics/piglit/Makefile
@@ -30,7 +30,7 @@
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= mesa
GL_PROJECT= piglit
-GL_COMMIT= 136a7f5fa0703603be1ffb338abe4865e76a8058
+GL_TAGNAME= 136a7f5fa0703603be1ffb338abe4865e76a8058
PATCH_SITES= https://gitlab.freedesktop.org/mesa/piglit/-/commit/
PATCH_DIST_STRIP= -p1
Index: graphics/upscaler/Makefile
===================================================================
--- graphics/upscaler/Makefile
+++ graphics/upscaler/Makefile
@@ -19,7 +19,7 @@
GL_SITE= https://gitlab.gnome.org
GL_ACCOUNT= World
GL_PROJECT= Upscaler
-GL_COMMIT= 5aaab9ccaf56b3c7a0eb7d1dbba372d8ff970d69
+GL_TAGNAME= 5aaab9ccaf56b3c7a0eb7d1dbba372d8ff970d69
GLIB_SCHEMAS= io.gitlab.theevilskeleton.Upscaler.gschema.xml
post-patch:
Index: graphics/waffle/Makefile
===================================================================
--- graphics/waffle/Makefile
+++ graphics/waffle/Makefile
@@ -22,7 +22,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= mesa
-GL_COMMIT= 2485a41c321a29463b5c0af7813c2d1046e2f925
+GL_TAGNAME= 2485a41c321a29463b5c0af7813c2d1046e2f925
USE_GL= egl gl
USE_LDCONFIG= yes
Index: graphics/wayland-utils/Makefile
===================================================================
--- graphics/wayland-utils/Makefile
+++ graphics/wayland-utils/Makefile
@@ -16,7 +16,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= wayland
-GL_COMMIT= 43cc17bc5333c41b4d6b7b1708191426126cb21a
+GL_TAGNAME= 43cc17bc5333c41b4d6b7b1708191426126cb21a
PLIST_FILES= bin/wayland-info \
man/man1/wayland-info.1.gz
Index: graphics/wrapland/Makefile
===================================================================
--- graphics/wrapland/Makefile
+++ graphics/wrapland/Makefile
@@ -22,7 +22,7 @@
USE_LDCONFIG= yes
USE_QT= qmake:build buildtools:build concurrent core gui
GL_ACCOUNT= kwinft
-GL_COMMIT= de7685a95cabeac60b65b17cf5389aed254321c0
+GL_TAGNAME= de7685a95cabeac60b65b17cf5389aed254321c0
PLIST_SUB= VERSION=${PORTVERSION}
OPTIONS_DEFINE= DOXYGEN
Index: graphics/xsane/Makefile
===================================================================
--- graphics/xsane/Makefile
+++ graphics/xsane/Makefile
@@ -21,7 +21,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.com/sane-project
GL_ACCOUNT= frontend
-GL_COMMIT= d01b4089ce6778e76fa86a0410d4e80cf6eb819e
+GL_TAGNAME= d01b4089ce6778e76fa86a0410d4e80cf6eb819e
USE_GNOME= gtk20 gdkpixbuf2
GNU_CONFIGURE= yes
Index: lang/clisp/Makefile
===================================================================
--- lang/clisp/Makefile
+++ lang/clisp/Makefile
@@ -22,7 +22,7 @@
GL_ACCOUNT= gnu-clisp
GL_PROJECT= clisp
-GL_COMMIT= df3b9f6fdcff22832898e89a989eb499c0f842ed
+GL_TAGNAME= df3b9f6fdcff22832898e89a989eb499c0f842ed
USE_LDCONFIG= yes
HAS_CONFIGURE= yes
CONFIGURE_ENV= FORCE_UNSAFE_CONFIGURE=1
Index: lang/owl-lisp/Makefile
===================================================================
--- lang/owl-lisp/Makefile
+++ lang/owl-lisp/Makefile
@@ -12,7 +12,7 @@
USE_GITLAB= yes
GL_PROJECT= owl
-GL_COMMIT= 079f58f45039805517b9b880feec050e151c52b3
+GL_TAGNAME= 079f58f45039805517b9b880feec050e151c52b3
MAKE_ARGS+= CC="${CC}" \
CFLAGS="${CFLAGS}" \
Index: mail/isbg/Makefile
===================================================================
--- mail/isbg/Makefile
+++ mail/isbg/Makefile
@@ -15,7 +15,7 @@
USE_GITLAB= yes
GL_ACCOUNT= isbg
-GL_COMMIT= e626d8d0628f691c041032c53f20d764b11d0079
+GL_TAGNAME= e626d8d0628f691c041032c53f20d764b11d0079
NO_ARCH= yes
NO_BUILD= yes
Index: math/alberta/Makefile
===================================================================
--- math/alberta/Makefile
+++ math/alberta/Makefile
@@ -24,7 +24,7 @@
GL_SITE= https://gitlab.mathematik.uni-stuttgart.de/ians-nmh
GL_ACCOUNT= alberta
GL_PROJECT= alberta3
-GL_COMMIT= 920315ae1bbfd1b1fb6672d916619ac37a411e95
+GL_TAGNAME= 920315ae1bbfd1b1fb6672d916619ac37a411e95
GNU_CONFIGURE= yes
Index: math/cado-nfs/Makefile
===================================================================
--- math/cado-nfs/Makefile
+++ math/cado-nfs/Makefile
@@ -25,7 +25,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.inria.fr
-GL_COMMIT= 3ab6a4781fa5d218ed332834809ba6c6fd1a591f
+GL_TAGNAME= 3ab6a4781fa5d218ed332834809ba6c6fd1a591f
SHEBANG_GLOB= *.py
Index: math/dune-alugrid/Makefile
===================================================================
--- math/dune-alugrid/Makefile
+++ math/dune-alugrid/Makefile
@@ -28,7 +28,7 @@
GL_SITE= https://gitlab.dune-project.org
GL_ACCOUNT= extensions
-GL_COMMIT= ffd6cd15dc7092593c3d5827c2a2b43b81d7a32f
+GL_TAGNAME= ffd6cd15dc7092593c3d5827c2a2b43b81d7a32f
CMAKE_ON= BUILD_SHARED_LIBS
Index: math/dune-common/Makefile
===================================================================
--- math/dune-common/Makefile
+++ math/dune-common/Makefile
@@ -24,7 +24,7 @@
GL_SITE= https://gitlab.dune-project.org
GL_ACCOUNT= core
-GL_COMMIT= df65b1282ea89ad40d2cb6565983f7e633ccce31
+GL_TAGNAME= df65b1282ea89ad40d2cb6565983f7e633ccce31
CMAKE_ON= BUILD_SHARED_LIBS
CMAKE_ARGS= -DTBB_INCLUDE_DIR=${LOCALBASE}/include -DTBB_LIBRARIES=${LOCALBASE}/lib/libtbb.so
Index: math/dune-curvedgeometry/Makefile
===================================================================
--- math/dune-curvedgeometry/Makefile
+++ math/dune-curvedgeometry/Makefile
@@ -17,7 +17,7 @@
GL_SITE= https://gitlab.mn.tu-dresden.de
GL_ACCOUNT= iwr
-GL_COMMIT= fae02adf3757851f7f9caf41037da87caa52197d
+GL_TAGNAME= fae02adf3757851f7f9caf41037da87caa52197d
NO_ARCH= yes
Index: math/dune-fem/Makefile
===================================================================
--- math/dune-fem/Makefile
+++ math/dune-fem/Makefile
@@ -49,7 +49,7 @@
GL_SITE= https://gitlab.dune-project.org
GL_ACCOUNT= dune-fem
-GL_COMMIT= 30e278aa744c908fbf4bbd8b237eb26c0475d16e
+GL_TAGNAME= 30e278aa744c908fbf4bbd8b237eb26c0475d16e
CMAKE_ON= BUILD_SHARED_LIBS
Index: math/dune-foamgrid/Makefile
===================================================================
--- math/dune-foamgrid/Makefile
+++ math/dune-foamgrid/Makefile
@@ -20,7 +20,7 @@
GL_SITE= https://gitlab.dune-project.org
GL_ACCOUNT= extensions
-GL_COMMIT= c33bcf407a7061e7f5997b895d89207fb9a8097f
+GL_TAGNAME= c33bcf407a7061e7f5997b895d89207fb9a8097f
NO_ARCH= yes
Index: math/dune-functions/Makefile
===================================================================
--- math/dune-functions/Makefile
+++ math/dune-functions/Makefile
@@ -26,7 +26,7 @@
GL_SITE= https://gitlab.dune-project.org
GL_ACCOUNT= staging
-GL_COMMIT= 1882b3ec0a14b211dd077f0d5e6455495e28c35d
+GL_TAGNAME= 1882b3ec0a14b211dd077f0d5e6455495e28c35d
NO_ARCH= yes
Index: math/dune-geometry/Makefile
===================================================================
--- math/dune-geometry/Makefile
+++ math/dune-geometry/Makefile
@@ -23,7 +23,7 @@
GL_SITE= https://gitlab.dune-project.org
GL_ACCOUNT= core
-GL_COMMIT= e7bfb66e48496aa28e47974c33ea9a4579bf723b
+GL_TAGNAME= e7bfb66e48496aa28e47974c33ea9a4579bf723b
CMAKE_ON= BUILD_SHARED_LIBS
CMAKE_ARGS= -DTBB_INCLUDE_DIR=${LOCALBASE}/include -DTBB_LIBRARIES=${LOCALBASE}/lib/libtbb.so
Index: math/dune-grid-glue/Makefile
===================================================================
--- math/dune-grid-glue/Makefile
+++ math/dune-grid-glue/Makefile
@@ -28,7 +28,7 @@
GL_SITE= https://gitlab.dune-project.org
GL_ACCOUNT= extensions
-GL_COMMIT= 22efb0e3cbf0a75094a8d81a4fdd352c98e78947
+GL_TAGNAME= 22efb0e3cbf0a75094a8d81a4fdd352c98e78947
CMAKE_ON= BUILD_SHARED_LIBS
CMAKE_ARGS= -DTBB_INCLUDE_DIR=${LOCALBASE}/include -DTBB_LIBRARIES=${LOCALBASE}/lib/libtbb.so
Index: math/dune-grid/Makefile
===================================================================
--- math/dune-grid/Makefile
+++ math/dune-grid/Makefile
@@ -29,7 +29,7 @@
GL_SITE= https://gitlab.dune-project.org
GL_ACCOUNT= core
-GL_COMMIT= de36e4b4e99da4cd7a120a39779345e701821115
+GL_TAGNAME= de36e4b4e99da4cd7a120a39779345e701821115
CMAKE_ON= BUILD_SHARED_LIBS
CMAKE_ARGS= -DTBB_INCLUDE_DIR=${LOCALBASE}/include -DTBB_LIBRARIES=${LOCALBASE}/lib/libtbb.so
Index: math/dune-istl/Makefile
===================================================================
--- math/dune-istl/Makefile
+++ math/dune-istl/Makefile
@@ -22,7 +22,7 @@
GL_SITE= https://gitlab.dune-project.org
GL_ACCOUNT= core
-GL_COMMIT= fffb544a61d2c65a0d2fc7c751f36909f06be8f5
+GL_TAGNAME= fffb544a61d2c65a0d2fc7c751f36909f06be8f5
NO_ARCH= yes
Index: math/dune-localfunctions/Makefile
===================================================================
--- math/dune-localfunctions/Makefile
+++ math/dune-localfunctions/Makefile
@@ -22,7 +22,7 @@
GL_SITE= https://gitlab.dune-project.org
GL_ACCOUNT= core
-GL_COMMIT= f6628171b2773065ab43f97a77f47cd8c4283d8f
+GL_TAGNAME= f6628171b2773065ab43f97a77f47cd8c4283d8f
NO_ARCH= yes
Index: math/dune-metagrid/Makefile
===================================================================
--- math/dune-metagrid/Makefile
+++ math/dune-metagrid/Makefile
@@ -19,7 +19,7 @@
GL_SITE= https://gitlab.dune-project.org
GL_ACCOUNT= extensions
-GL_COMMIT= 45fe80d530d18d8b86e77f20e38865f2101e571a
+GL_TAGNAME= 45fe80d530d18d8b86e77f20e38865f2101e571a
NO_ARCH= yes
Index: math/dune-multidomaingrid/Makefile
===================================================================
--- math/dune-multidomaingrid/Makefile
+++ math/dune-multidomaingrid/Makefile
@@ -21,7 +21,7 @@
GL_SITE= https://gitlab.dune-project.org
GL_ACCOUNT= extensions
-GL_COMMIT= d31fd53d5a3d90348f8b33364011f3afb047c394
+GL_TAGNAME= d31fd53d5a3d90348f8b33364011f3afb047c394
NO_ARCH= yes
Index: math/dune-pdelab/Makefile
===================================================================
--- math/dune-pdelab/Makefile
+++ math/dune-pdelab/Makefile
@@ -49,7 +49,7 @@
GL_SITE= https://gitlab.dune-project.org
GL_ACCOUNT= pdelab
-GL_COMMIT= 20c7085389d3eb4f8ca99e1bc60f7fa6036536c8
+GL_TAGNAME= 20c7085389d3eb4f8ca99e1bc60f7fa6036536c8
CMAKE_ON= BUILD_SHARED_LIBS
CMAKE_ARGS= -DTBB_INCLUDE_DIR=${LOCALBASE}/include -DTBB_LIBRARIES=${LOCALBASE}/lib/libtbb.so
Index: math/dune-polygongrid/Makefile
===================================================================
--- math/dune-polygongrid/Makefile
+++ math/dune-polygongrid/Makefile
@@ -25,7 +25,7 @@
GL_SITE= https://gitlab.dune-project.org
GL_ACCOUNT= extensions
-GL_COMMIT= 90840c3d36f5fa6e18a00e7df7be01832cd7e23b
+GL_TAGNAME= 90840c3d36f5fa6e18a00e7df7be01832cd7e23b
CMAKE_ON= BUILD_SHARED_LIBS
Index: math/dune-spgrid/Makefile
===================================================================
--- math/dune-spgrid/Makefile
+++ math/dune-spgrid/Makefile
@@ -25,7 +25,7 @@
GL_SITE= https://gitlab.dune-project.org
GL_ACCOUNT= extensions
-GL_COMMIT= 0e5a3b234d885ac566c9622421ab4eab97c8a50e
+GL_TAGNAME= 0e5a3b234d885ac566c9622421ab4eab97c8a50e
NO_ARCH= yes
Index: math/dune-typetree/Makefile
===================================================================
--- math/dune-typetree/Makefile
+++ math/dune-typetree/Makefile
@@ -23,7 +23,7 @@
GL_SITE= https://gitlab.dune-project.org
GL_ACCOUNT= staging
-GL_COMMIT= cf6b5b4d3abe5dfa748815a69f6a8bda02af36f0
+GL_TAGNAME= cf6b5b4d3abe5dfa748815a69f6a8bda02af36f0
NO_ARCH= yes
Index: math/dune-uggrid/Makefile
===================================================================
--- math/dune-uggrid/Makefile
+++ math/dune-uggrid/Makefile
@@ -24,7 +24,7 @@
GL_SITE= https://gitlab.dune-project.org
GL_ACCOUNT= staging
-GL_COMMIT= bc2d1229420367563410ce9e519f5ff82b45266f
+GL_TAGNAME= bc2d1229420367563410ce9e519f5ff82b45266f
CMAKE_ON= BUILD_SHARED_LIBS
CMAKE_ARGS= -DTBB_INCLUDE_DIR=${LOCALBASE}/include -DTBB_LIBRARIES=${LOCALBASE}/lib/libtbb.so
Index: math/dune-vtk/Makefile
===================================================================
--- math/dune-vtk/Makefile
+++ math/dune-vtk/Makefile
@@ -48,7 +48,7 @@
GL_SITE= https://gitlab.dune-project.org
GL_ACCOUNT= extensions
-GL_COMMIT= 467838cde3bbea3d27d2bd117570a3215240dcd1
+GL_TAGNAME= 467838cde3bbea3d27d2bd117570a3215240dcd1
CMAKE_ON= BUILD_SHARED_LIBS
Index: math/eigen3/Makefile
===================================================================
--- math/eigen3/Makefile
+++ math/eigen3/Makefile
@@ -24,7 +24,7 @@
USES= cmake:testing
USE_GITLAB= yes
GL_ACCOUNT= libeigen
-GL_COMMIT= 3147391d946bb4b6c68edd901f2add6ac1f31f8c
+GL_TAGNAME= 3147391d946bb4b6c68edd901f2add6ac1f31f8c
CMAKE_ARGS= -DPKGCONFIG_INSTALL_DIR:PATH="libdata/pkgconfig"
CMAKE_ON= EIGEN_TEST_CXX11 # This is to set the C++ standard to C++11, instead of 03
Index: math/gf2x/Makefile
===================================================================
--- math/gf2x/Makefile
+++ math/gf2x/Makefile
@@ -14,7 +14,7 @@
USES= autoreconf libtool
USE_GITLAB= yes
GL_SITE= https://gitlab.inria.fr/
-GL_COMMIT= 27ba588f03bf6e1e74763903bab25e6e8bb6d0f0
+GL_TAGNAME= 27ba588f03bf6e1e74763903bab25e6e8bb6d0f0
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
Index: math/lib2geom/Makefile
===================================================================
--- math/lib2geom/Makefile
+++ math/lib2geom/Makefile
@@ -16,7 +16,7 @@
USE_GNOME= cairo glib20
GL_ACCOUNT= inkscape
-GL_COMMIT= a84a73ebdae50cc729f57d1ffb788aeaef0f746c
+GL_TAGNAME= a84a73ebdae50cc729f57d1ffb788aeaef0f746c
CMAKE_ON= 2GEOM_BUILD_SHARED
Index: math/libsharp2/Makefile
===================================================================
--- math/libsharp2/Makefile
+++ math/libsharp2/Makefile
@@ -15,7 +15,7 @@
GL_SITE= https://gitlab.mpcdf.mpg.de
GL_ACCOUNT= mtr
GL_PROJECT= libsharp
-GL_COMMIT= 54856313a5fcfb6a33817b7dfa28c4b1965ffbd1
+GL_TAGNAME= 54856313a5fcfb6a33817b7dfa28c4b1965ffbd1
GNU_CONFIGURE= yes
Index: math/octave-forge-fda/Makefile
===================================================================
--- math/octave-forge-fda/Makefile
+++ math/octave-forge-fda/Makefile
@@ -14,11 +14,11 @@
USE_GITLAB= yes
GL_ACCOUNT= kakila
GL_PROJECT= fda
-GL_COMMIT= 99f733cfa284fc0fdf911e7da97269197c4dec94
+GL_TAGNAME= 99f733cfa284fc0fdf911e7da97269197c4dec94
NO_ARCH= yes
NO_BUILD= yes
-OCTAVE_SRC= ${GL_PROJECT}-${GL_COMMIT}
+OCTAVE_SRC= ${GL_PROJECT}-${GL_TAGNAME}
.include <bsd.port.mk>
Index: math/octave-forge-pythonic/Makefile
===================================================================
--- math/octave-forge-pythonic/Makefile
+++ math/octave-forge-pythonic/Makefile
@@ -17,9 +17,9 @@
USE_GITLAB= yes
GL_ACCOUNT= mtmiller
GL_PROJECT= octave-pythonic
-GL_COMMIT= 3dbe9a06c1dec1a138f398b951e18044a00e063d
+GL_TAGNAME= 3dbe9a06c1dec1a138f398b951e18044a00e063d
-OCTAVE_SRC= ${GL_PROJECT}-${GL_COMMIT}
+OCTAVE_SRC= ${GL_PROJECT}-${GL_TAGNAME}
MAKE_ENV+= PYTHON=${PYTHON_CMD} SED=gsed
Index: math/symmetrica/Makefile
===================================================================
--- math/symmetrica/Makefile
+++ math/symmetrica/Makefile
@@ -12,7 +12,7 @@
USES= autoreconf gmake libtool
USE_GITLAB= yes
GL_ACCOUNT= sagemath
-GL_COMMIT= e29c85915f368d6fb2f89d703b6695ff29ab9eae
+GL_TAGNAME= e29c85915f368d6fb2f89d703b6695ff29ab9eae
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
Index: math/sympow/Makefile
===================================================================
--- math/sympow/Makefile
+++ math/sympow/Makefile
@@ -20,7 +20,7 @@
USE_GITLAB= yes
GL_ACCOUNT= rezozer/forks
-GL_COMMIT= 7fd4d97cabc07951200b98ee841afc4151c2c287
+GL_TAGNAME= 7fd4d97cabc07951200b98ee841afc4151c2c287
HAS_CONFIGURE= yes
CONFIGURE_SCRIPT=Configure
Index: math/zn_poly/Makefile
===================================================================
--- math/zn_poly/Makefile
+++ math/zn_poly/Makefile
@@ -16,7 +16,7 @@
USES= gmake python:build tar:bz2
USE_GITLAB= yes
GL_ACCOUNT= sagemath
-GL_COMMIT= f421e4788914e1625488d9b7d5aaab877eb1a940
+GL_TAGNAME= f421e4788914e1625488d9b7d5aaab877eb1a940
OPTIONS_DEFINE= DOCS
Index: misc/gnu-watch/Makefile
===================================================================
--- misc/gnu-watch/Makefile
+++ misc/gnu-watch/Makefile
@@ -16,7 +16,7 @@
USE_GITLAB= yes
GL_ACCOUNT= procps-ng
GL_PROJECT= procps
-GL_COMMIT= 19a508ea121c0c4ac6d0224575a036de745eaaf8
+GL_TAGNAME= 19a508ea121c0c4ac6d0224575a036de745eaaf8
GNU_CONFIGURE= yes
ALL_TARGET= watch
Index: misc/ironscanner/Makefile
===================================================================
--- misc/ironscanner/Makefile
+++ misc/ironscanner/Makefile
@@ -17,7 +17,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.gnome.org/World
GL_ACCOUNT= OpenPaperwork
-GL_COMMIT= e73528c5602088eb75f99b78a498dec622b5c97e
+GL_TAGNAME= e73528c5602088eb75f99b78a498dec622b5c97e
USE_PYTHON= distutils autoplist noflavors
NO_ARCH= yes
Index: misc/iso-codes/Makefile
===================================================================
--- misc/iso-codes/Makefile
+++ misc/iso-codes/Makefile
@@ -16,7 +16,7 @@
USE_GITLAB= yes
GL_SITE= https://salsa.debian.org
GL_ACCOUNT= iso-codes-team
-GL_COMMIT= 59767ed869f3952575f7d0f639a290a4c4b315e5
+GL_TAGNAME= 59767ed869f3952575f7d0f639a290a4c4b315e5
BINARY_ALIAS= python3=${PYTHON_VERSION}
Index: misc/shared-mime-info/Makefile
===================================================================
--- misc/shared-mime-info/Makefile
+++ misc/shared-mime-info/Makefile
@@ -21,7 +21,7 @@
GL_SITE= https://gitlab.freedesktop.org/
GL_ACCOUNT= xdg
GL_PROJECT= shared-mime-info
-GL_COMMIT= 13695c7225c2f525a435e72739c33ac32bbfbbb9
+GL_TAGNAME= 13695c7225c2f525a435e72739c33ac32bbfbbb9
GL_TUPLE= xdg:xdgmime:de283fc430460b9b3a7e61432a6d273cd64cb102:xdgmime/src/xdgmime
bash_CMD= /bin/sh
SHEBANG_FILES= ${WRKSRC}/tests/compare_iana.py \
Index: misc/tlci/Makefile
===================================================================
--- misc/tlci/Makefile
+++ misc/tlci/Makefile
@@ -11,7 +11,7 @@
USE_GITLAB= yes
GL_ACCOUNT= herrhotzenplotz
-GL_COMMIT= 4a3dd51a872f36a513f06efa475922259dee91f1
+GL_TAGNAME= 4a3dd51a872f36a513f06efa475922259dee91f1
PLIST_FILES= ${PREFIX}/bin/tlci \
${PREFIX}/man/man8/tlci.8.gz
Index: misc/valentina/Makefile
===================================================================
--- misc/valentina/Makefile
+++ misc/valentina/Makefile
@@ -17,7 +17,7 @@
USE_GITLAB= yes
GL_ACCOUNT= smart-pattern
-GL_COMMIT= 9429be3e0d467a75eab1f2fd3791ba29d9d1bb9d
+GL_TAGNAME= 9429be3e0d467a75eab1f2fd3791ba29d9d1bb9d
DOS2UNIX_FILES= src/libs/vgeometry/vellipticalarc.cpp
Index: multimedia/bcmatroska2/Makefile
===================================================================
--- multimedia/bcmatroska2/Makefile
+++ multimedia/bcmatroska2/Makefile
@@ -14,7 +14,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.linphone.org/BC
GL_ACCOUNT= public
-GL_COMMIT= 4d125bf2788915325c5ab93b9a97835f96d566d3
+GL_TAGNAME= 4d125bf2788915325c5ab93b9a97835f96d566d3
USE_LDCONFIG= yes
CMAKE_ARGS= -DCMAKE_PREFIX_PATH=${LOCALBASE} \
Index: multimedia/dav1d/Makefile
===================================================================
--- multimedia/dav1d/Makefile
+++ multimedia/dav1d/Makefile
@@ -19,7 +19,7 @@
USE_LDCONFIG= yes
GL_SITE= https://code.videolan.org
GL_ACCOUNT= videolan
-GL_COMMIT= 8a6f054ef1e0f7886bc6e53e6be97c427154fe85
+GL_TAGNAME= 8a6f054ef1e0f7886bc6e53e6be97c427154fe85
LDFLAGS_i386= -Wl,-z,notext
OPTIONS_DEFINE= SDL TEST XXHASH
Index: multimedia/gstreamer1-plugins-rust/Makefile
===================================================================
--- multimedia/gstreamer1-plugins-rust/Makefile
+++ multimedia/gstreamer1-plugins-rust/Makefile
@@ -20,7 +20,7 @@
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= gstreamer
GL_PROJECT= gst-plugins-rs
-GL_COMMIT= a291a2f0982b2d410aec25e007e16ff83a0d5c54
+GL_TAGNAME= a291a2f0982b2d410aec25e007e16ff83a0d5c54
SHEBANG_FILES= dependencies.py
MESON_ARGS= -Ddoc=disabled
MAKE_ENV= ${CARGO_ENV}
Index: multimedia/gstreamer1-plugins-svt-av1/Makefile
===================================================================
--- multimedia/gstreamer1-plugins-svt-av1/Makefile
+++ multimedia/gstreamer1-plugins-svt-av1/Makefile
@@ -18,7 +18,7 @@
USE_GNOME= glib20
GL_ACCOUNT= AOMediaCodec
GL_PROJECT= SVT-AV1
-GL_COMMIT= 08c18ba0768ed3dbbff0903adc326fb3a7549bd9
+GL_TAGNAME= 08c18ba0768ed3dbbff0903adc326fb3a7549bd9
WRKSRC_SUBDIR= gstreamer-plugin
PLIST_FILES= lib/gstreamer-1.0/libgstsvtav1enc.so
Index: multimedia/helvum/Makefile
===================================================================
--- multimedia/helvum/Makefile
+++ multimedia/helvum/Makefile
@@ -18,7 +18,7 @@
USE_GNOME= cairo gtk40
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= ryuukyu
-GL_COMMIT= 69257ffa09e9ac844d22d85e288b97ac98b37665
+GL_TAGNAME= 69257ffa09e9ac844d22d85e288b97ac98b37665
MAKE_ENV= ${CARGO_ENV}
PLIST_FILES= bin/${PORTNAME}
Index: multimedia/lebiniou-data/Makefile
===================================================================
--- multimedia/lebiniou-data/Makefile
+++ multimedia/lebiniou-data/Makefile
@@ -13,7 +13,7 @@
USE_GITLAB= YES
GL_ACCOUNT= lebiniou
-GL_COMMIT= 18949ea967b3616d251ea7eeac7f2409991a9030
+GL_TAGNAME= 18949ea967b3616d251ea7eeac7f2409991a9030
GNU_CONFIGURE= YES
Index: multimedia/lebiniou/Makefile
===================================================================
--- multimedia/lebiniou/Makefile
+++ multimedia/lebiniou/Makefile
@@ -36,7 +36,7 @@
USE_LDCONFIG= YES
USE_GITLAB= YES
GL_ACCOUNT= lebiniou
-GL_COMMIT= 2049ce3d9ee5f860fb6a5d516c4af797f4669b58
+GL_TAGNAME= 2049ce3d9ee5f860fb6a5d516c4af797f4669b58
GNU_CONFIGURE= YES
Index: multimedia/libdv/Makefile
===================================================================
--- multimedia/libdv/Makefile
+++ multimedia/libdv/Makefile
@@ -18,7 +18,7 @@
GL_SITE= https://gitlab.freedesktop.org/gstreamer
GL_ACCOUNT= meson-ports
GL_PROJECT= libdv
-GL_COMMIT= 24218c36bed3b0a3bd5a57d5790ac12ade44e88d
+GL_TAGNAME= 24218c36bed3b0a3bd5a57d5790ac12ade44e88d
USE_LDCONFIG= yes
Index: multimedia/libndi/Makefile
===================================================================
--- multimedia/libndi/Makefile
+++ multimedia/libndi/Makefile
@@ -20,7 +20,7 @@
USE_GITLAB= yes
GL_SITE= https://code.videolan.org
GL_ACCOUNT= jbk
-GL_COMMIT= c14b40caafb26a02249f062e7f907ceaa53c1b74
+GL_TAGNAME= c14b40caafb26a02249f062e7f907ceaa53c1b74
PLIST_FILES= bin/ndi \
include/libndi.h \
Index: multimedia/librist/Makefile
===================================================================
--- multimedia/librist/Makefile
+++ multimedia/librist/Makefile
@@ -18,7 +18,7 @@
GL_SITE= https://code.videolan.org
GL_ACCOUNT= rist
-GL_COMMIT= 00d1d3e33fb654d4744ce91fa838b413a4408494
+GL_TAGNAME= 00d1d3e33fb654d4744ce91fa838b413a4408494
MESON_ARGS= -Dtest=false
Index: multimedia/libvdpau/Makefile
===================================================================
--- multimedia/libvdpau/Makefile
+++ multimedia/libvdpau/Makefile
@@ -15,7 +15,7 @@
USE_LDCONFIG= yes
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= vdpau
-GL_COMMIT= 79f1506a3307d3275b0fdfb2e110c173f68e6f78
+GL_TAGNAME= 79f1506a3307d3275b0fdfb2e110c173f68e6f78
MESON_ARGS= -Ddocumentation=false
post-patch: .SILENT
Index: multimedia/libvlcpp/Makefile
===================================================================
--- multimedia/libvlcpp/Makefile
+++ multimedia/libvlcpp/Makefile
@@ -18,7 +18,7 @@
GL_SITE= https://code.videolan.org
GL_ACCOUNT= videolan
-GL_COMMIT= 17e622c6a23f685a60451e9611d50e361cee2278
+GL_TAGNAME= 17e622c6a23f685a60451e9611d50e361cee2278
GNU_CONFIGURE= yes
Index: multimedia/msopenh264/Makefile
===================================================================
--- multimedia/msopenh264/Makefile
+++ multimedia/msopenh264/Makefile
@@ -19,7 +19,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.linphone.org/BC
GL_ACCOUNT= public
-GL_COMMIT= 5c7a9522478f5eedc9a3e1600fdd705da1e00d23
+GL_TAGNAME= 5c7a9522478f5eedc9a3e1600fdd705da1e00d23
CMAKE_ARGS= -DENABLE_STATIC=NO
PLIST_FILES= lib/mediastreamer/plugins/libmsopenh264.so
Index: multimedia/mswebrtc/Makefile
===================================================================
--- multimedia/mswebrtc/Makefile
+++ multimedia/mswebrtc/Makefile
@@ -22,7 +22,7 @@
GL_SITE= https://gitlab.linphone.org/BC
GL_ACCOUNT= public public/external:webrtc
GL_PROJECT= webrtc:webrtc
-GL_COMMIT= 80b8e33b11516870b887b80279b9da4de8b26ebe \
+GL_TAGNAME= 80b8e33b11516870b887b80279b9da4de8b26ebe \
583acd27665cfadef8ab03eb85a768d308bd29dd:webrtc
GL_SUBDIR= webrtc:webrtc
Index: multimedia/py-metadata-cleaner/Makefile
===================================================================
--- multimedia/py-metadata-cleaner/Makefile
+++ multimedia/py-metadata-cleaner/Makefile
@@ -29,6 +29,6 @@
BINARY_ALIAS= python3=${PYTHON_VERSION}
NO_ARCH= yes
GL_ACCOUNT= rmnvgr
-GL_COMMIT= 62a400a96099d947502611a1b9bc67f7f48a675a
+GL_TAGNAME= 62a400a96099d947502611a1b9bc67f7f48a675a
.include <bsd.port.mk>
Index: multimedia/qpwgraph/Makefile
===================================================================
--- multimedia/qpwgraph/Makefile
+++ multimedia/qpwgraph/Makefile
@@ -18,7 +18,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= rncbc
-GL_COMMIT= 71edb283e7b5d4429d5ef9951de6b740afb07790
+GL_TAGNAME= 71edb283e7b5d4429d5ef9951de6b740afb07790
PLIST_FILES= bin/qpwgraph
Index: multimedia/svt-av1/Makefile
===================================================================
--- multimedia/svt-av1/Makefile
+++ multimedia/svt-av1/Makefile
@@ -21,7 +21,7 @@
USE_LDCONFIG= yes
GL_ACCOUNT= AOMediaCodec
GL_PROJECT= SVT-AV1
-GL_COMMIT= 08c18ba0768ed3dbbff0903adc326fb3a7549bd9
+GL_TAGNAME= 08c18ba0768ed3dbbff0903adc326fb3a7549bd9
CMAKE_ON= ENABLE_NASM
CMAKE_OFF= NATIVE
Index: multimedia/vdpauinfo/Makefile
===================================================================
--- multimedia/vdpauinfo/Makefile
+++ multimedia/vdpauinfo/Makefile
@@ -16,7 +16,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= vdpau
-GL_COMMIT= d3c5bd63bf8878d59b22d618d2bb5116db392d28
+GL_TAGNAME= d3c5bd63bf8878d59b22d618d2bb5116db392d28
GNU_CONFIGURE= yes
PLIST_FILES= bin/vdpauinfo
Index: multimedia/video-trimmer/Makefile
===================================================================
--- multimedia/video-trimmer/Makefile
+++ multimedia/video-trimmer/Makefile
@@ -20,7 +20,7 @@
USE_GSTREAMER= good libav
GL_SITE= https://gitlab.gnome.org
GL_ACCOUNT= YaLTeR
-GL_COMMIT= 0232139f9b68be808c9091abf6d3189fdb2ace36
+GL_TAGNAME= 0232139f9b68be808c9091abf6d3189fdb2ace36
MAKE_ENV= ${CARGO_ENV}
CARGO_BUILD= no
CARGO_INSTALL= no
Index: multimedia/x264/Makefile
===================================================================
--- multimedia/x264/Makefile
+++ multimedia/x264/Makefile
@@ -34,7 +34,7 @@
X264_BUILD= 164
X264_REV= 3095
-X264_GITVER= ${GL_COMMIT:C/^(.{7}).*/\1/}
+X264_GITVER= ${GL_TAGNAME:C/^(.{7}).*/\1/}
USES?= pkgconfig
USES+= compiler:c11 gmake localbase shebangfix
@@ -42,7 +42,7 @@
USE_LDCONFIG= yes
GL_SITE= https://code.videolan.org
GL_ACCOUNT= videolan
-GL_COMMIT= baee400fa9ced6f5481a728138fed6e867b0ff7f
+GL_TAGNAME= baee400fa9ced6f5481a728138fed6e867b0ff7f
HAS_CONFIGURE= yes
SHEBANG_FILES= configure
PLIST_FILES?= bin/x264
Index: net-im/6cord/Makefile
===================================================================
--- net-im/6cord/Makefile
+++ net-im/6cord/Makefile
@@ -65,7 +65,7 @@
USE_GITLAB= yes
GL_ACCOUNT= diamondburned
-GL_COMMIT= ba5dcdd139d35078f31d957e4fb43f88528a32f5
+GL_TAGNAME= ba5dcdd139d35078f31d957e4fb43f88528a32f5
GL_TUPLE= diamondburned:go-w3m:1b390b8a3d1fd142bcaf77a949223cb36ef84cbc:diamondburned_go_w3m/vendor/gitlab.com/diamondburned/go-w3m \
diamondburned:ueberzug-go:7c15a5f63b064530b92411f2850d0fc7fe9059ea:diamondburned_ueberzug_go/vendor/gitlab.com/diamondburned/ueberzug-go
Index: net-im/conduit/Makefile
===================================================================
--- net-im/conduit/Makefile
+++ net-im/conduit/Makefile
@@ -29,7 +29,7 @@
USE_GITLAB= yes
GL_ACCOUNT= famedly
-GL_COMMIT= 53f14a2c4c216b529cc63137d8704573197aed19
+GL_TAGNAME= 53f14a2c4c216b529cc63137d8704573197aed19
CARGO_CRATES= adler-1.0.2 \
ahash-0.7.6 \
aho-corasick-0.7.20 \
Index: net-im/libaccounts-glib/Makefile
===================================================================
--- net-im/libaccounts-glib/Makefile
+++ net-im/libaccounts-glib/Makefile
@@ -24,7 +24,7 @@
# GitLab variables.
USE_GITLAB= yes
GL_ACCOUNT= accounts-sso
-GL_COMMIT= d31d74997c8524cac862a2c5f0cd902f99a39fc6
+GL_TAGNAME= d31d74997c8524cac862a2c5f0cd902f99a39fc6
OPTIONS_DEFINE= DOCS
OPTIONS_SUB= yes
Index: net-im/libaccounts-qt5/Makefile
===================================================================
--- net-im/libaccounts-qt5/Makefile
+++ net-im/libaccounts-qt5/Makefile
@@ -22,7 +22,7 @@
USE_GITLAB= yes
GL_ACCOUNT= accounts-sso
GL_PROJECT= libaccounts-qt
-GL_COMMIT= 525ec684cfa8d234f797d7e49e21c476eea04d8e
+GL_TAGNAME= 525ec684cfa8d234f797d7e49e21c476eea04d8e
OPTIONS_DEFINE= DOCS
OPTIONS_SUB= yes
Index: net-im/libsignon-glib/Makefile
===================================================================
--- net-im/libsignon-glib/Makefile
+++ net-im/libsignon-glib/Makefile
@@ -20,7 +20,7 @@
# gitlab variables
USE_GITLAB= yes
GL_ACCOUNT= accounts-sso
-GL_COMMIT= 7f9f10a2e7533b74eaf027b26de48818326a1dcf
+GL_TAGNAME= 7f9f10a2e7533b74eaf027b26de48818326a1dcf
CFLAGS+= -Wno-error
CONFIGURE_ARGS= -Dtests=false
Index: net-im/signald/Makefile
===================================================================
--- net-im/signald/Makefile
+++ net-im/signald/Makefile
@@ -81,7 +81,7 @@
USES= gmake shebangfix
USE_GITLAB= yes
GL_ACCOUNT= signald
-GL_COMMIT= 65cf5e8a1cf2b81fd1f5c3936e0164d53c5a9b29
+GL_TAGNAME= 65cf5e8a1cf2b81fd1f5c3936e0164d53c5a9b29
USE_JAVA= yes
JAVA_VERSION= 11+
Index: net-im/telepathy-accounts-signon/Makefile
===================================================================
--- net-im/telepathy-accounts-signon/Makefile
+++ net-im/telepathy-accounts-signon/Makefile
@@ -24,7 +24,7 @@
# gitlab variables
USE_GITLAB= yes
GL_ACCOUNT= accounts-sso
-GL_COMMIT= 0af244284e6b04c4abe5373d43bbc88a235d84aa
+GL_TAGNAME= 0af244284e6b04c4abe5373d43bbc88a235d84aa
PLIST_FILES= lib/mission-control-plugins.0/mcp-account-manager-accounts-sso.so
Index: net-mgmt/gnu-ipcalc/Makefile
===================================================================
--- net-mgmt/gnu-ipcalc/Makefile
+++ net-mgmt/gnu-ipcalc/Makefile
@@ -13,7 +13,7 @@
USES= localbase meson pkgconfig
USE_GITLAB= yes
GL_ACCOUNT= ipcalc
-GL_COMMIT= c341e55be386649c0a5347eefeae410753c4e753
+GL_TAGNAME= c341e55be386649c0a5347eefeae410753c4e753
MESON_ARGS= -Duse_geoip=disabled
CONFLICTS_INSTALL= ipcalc
Index: net-mgmt/nagiosql/Makefile
===================================================================
--- net-mgmt/nagiosql/Makefile
+++ net-mgmt/nagiosql/Makefile
@@ -15,7 +15,7 @@
USE_PHP= filter gettext mysqli session simplexml
USE_GITLAB= yes
GL_ACCOUNT= wizonet
-GL_COMMIT= 7e40440fa5e0a4a81a3a40c2895b248bfabcdd84
+GL_TAGNAME= 7e40440fa5e0a4a81a3a40c2895b248bfabcdd84
USERS?= nagios
GROUPS?= nagios
Index: net/bctoolbox/Makefile
===================================================================
--- net/bctoolbox/Makefile
+++ net/bctoolbox/Makefile
@@ -17,7 +17,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.linphone.org/BC
GL_ACCOUNT= public
-GL_COMMIT= 02c84d3563ee054a977f5f2d8357d94d095145a5
+GL_TAGNAME= 02c84d3563ee054a977f5f2d8357d94d095145a5
USE_LDCONFIG= yes
CMAKE_ARGS= -DENABLE_STATIC=NO -DENABLE_STRICT=NO \
Index: net/belle-sip/Makefile
===================================================================
--- net/belle-sip/Makefile
+++ net/belle-sip/Makefile
@@ -18,7 +18,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.linphone.org/BC
GL_ACCOUNT= public
-GL_COMMIT= 792409499ee514028067e63b33867eee90b5dadd
+GL_TAGNAME= 792409499ee514028067e63b33867eee90b5dadd
USE_JAVA= yes
JAVA_BUILD= jre
USE_LDCONFIG= yes
Index: net/echoping/Makefile
===================================================================
--- net/echoping/Makefile
+++ net/echoping/Makefile
@@ -27,7 +27,7 @@
USE_GITLAB= yes
GL_SITE= https://framagit.org
GL_ACCOUNT= bortzmeyer
-GL_COMMIT= ccf3c95d9249d3065db3853486f41c852d20101e
+GL_TAGNAME= ccf3c95d9249d3065db3853486f41c852d20101e
WRKSRC_SUBDIR= SRC
OPTIONS_DEFINE= LDAP PGSQL
Index: net/geoclue/Makefile
===================================================================
--- net/geoclue/Makefile
+++ net/geoclue/Makefile
@@ -20,7 +20,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.freedesktop.org
-GL_COMMIT= 3bb60dd600a8b247fd6049e7e5b1c73c2c5fc0e8
+GL_TAGNAME= 3bb60dd600a8b247fd6049e7e5b1c73c2c5fc0e8
MESON_ARGS= -D3g-source=false \
-Dcdma-source=false \
Index: net/gitlab-agent/Makefile
===================================================================
--- net/gitlab-agent/Makefile
+++ net/gitlab-agent/Makefile
@@ -20,7 +20,7 @@
GO_BUILDFLAGS= -tags="tracer_static,tracer_static_jaeger" \
-ldflags=" \
-X 'gitlab.com/gitlab-org/cluster-integration/gitlab-agent/v16/cmd.Version=v${PORTVERSION}' \
- -X 'gitlab.com/gitlab-org/cluster-integration/gitlab-agent/v16/cmd.Commit=${GL_COMMIT:C/^(........).*/\1/}' \
+ -X 'gitlab.com/gitlab-org/cluster-integration/gitlab-agent/v16/cmd.Commit=${GL_TAGNAME:C/^(........).*/\1/}' \
-X 'gitlab.com/gitlab-org/cluster-integration/gitlab-agent/v16/cmd.BuildTime=${_BUILD_DATE}'"
GO_TARGET= ./cmd/kas
Index: net/liblinphone/Makefile
===================================================================
--- net/liblinphone/Makefile
+++ net/liblinphone/Makefile
@@ -30,7 +30,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.linphone.org/BC
GL_ACCOUNT= public
-GL_COMMIT= f8c1a652c2e014d1bdec9fc8d2a1996571970a9d
+GL_TAGNAME= f8c1a652c2e014d1bdec9fc8d2a1996571970a9d
USE_GNOME= libxml2
USE_LDCONFIG= yes
Index: net/libslirp/Makefile
===================================================================
--- net/libslirp/Makefile
+++ net/libslirp/Makefile
@@ -18,6 +18,6 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= slirp
-GL_COMMIT= 3ad1710a96678fe79066b1469cead4058713a1d9
+GL_TAGNAME= 3ad1710a96678fe79066b1469cead4058713a1d9
.include <bsd.port.mk>
Index: net/linphone/Makefile
===================================================================
--- net/linphone/Makefile
+++ net/linphone/Makefile
@@ -21,7 +21,7 @@
GL_SITE= https://gitlab.linphone.org/BC
GL_ACCOUNT= public
GL_PROJECT= linphone-desktop
-GL_COMMIT= 02e025324143c8479dc7634e74d3f5b5107e3b9a
+GL_TAGNAME= 02e025324143c8479dc7634e74d3f5b5107e3b9a
USE_QT= concurrent core dbus declarative gui linguisttools network \
quickcontrols2 speech svg testlib widgets buildtools:build \
qmake:build graphicaleffects:run quickcontrols:run
Index: net/mediastreamer/Makefile
===================================================================
--- net/mediastreamer/Makefile
+++ net/mediastreamer/Makefile
@@ -21,7 +21,7 @@
GL_SITE= https://gitlab.linphone.org/BC
GL_ACCOUNT= public
GL_PROJECT= ${PORTNAME}2
-GL_COMMIT= bd8ef7b1e5377c8c9598f8d53cac942deae6befc
+GL_TAGNAME= bd8ef7b1e5377c8c9598f8d53cac942deae6befc
USE_GNOME= libxml2
USE_LDCONFIG= yes
Index: net/ortp/Makefile
===================================================================
--- net/ortp/Makefile
+++ net/ortp/Makefile
@@ -15,7 +15,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.linphone.org/BC
GL_ACCOUNT= public
-GL_COMMIT= 6e05272d70456ef8a84684572a3bb847873ec176
+GL_TAGNAME= 6e05272d70456ef8a84684572a3bb847873ec176
USE_LDCONFIG= yes
CMAKE_ARGS= -DENABLE_DOC=NO -DENABLE_STATIC=NO -DENABLE_STRICT=NO \
Index: net/py-ldap0/Makefile
===================================================================
--- net/py-ldap0/Makefile
+++ net/py-ldap0/Makefile
@@ -21,7 +21,7 @@
USE_GITLAB= yes
GL_ACCOUNT= ae-dir
GL_PROJECT= python-ldap0
-GL_COMMIT= 70b3aad8593d34c82f6bca1eca53f1c8938d345d
+GL_TAGNAME= 70b3aad8593d34c82f6bca1eca53f1c8938d345d
PYDISTUTILS_BUILD_TARGET= build_ext
PYDISTUTILS_BUILDARGS+= --inplace
Index: net/py-pypacker/Makefile
===================================================================
--- net/py-pypacker/Makefile
+++ net/py-pypacker/Makefile
@@ -17,6 +17,6 @@
NO_ARCH= yes
GL_ACCOUNT= mike01
-GL_COMMIT= 268e27c813545bf7995dd0a80abdb4da24d64722
+GL_TAGNAME= 268e27c813545bf7995dd0a80abdb4da24d64722
.include <bsd.port.mk>
Index: net/py-sbws/Makefile
===================================================================
--- net/py-sbws/Makefile
+++ net/py-sbws/Makefile
@@ -39,7 +39,7 @@
GL_SITE= https://gitlab.torproject.org/tpo
GL_ACCOUNT= network-health
GL_PROJECT= sbws
-GL_COMMIT= 25aa5b232ca26729e1bf30a7c5a54fd22f5c3eeb
+GL_TAGNAME= 25aa5b232ca26729e1bf30a7c5a54fd22f5c3eeb
SHEBANG_FILES= setup.py \
scripts/tools/get-per-relay-budget.py \
Index: net/remmina/Makefile
===================================================================
--- net/remmina/Makefile
+++ net/remmina/Makefile
@@ -26,7 +26,7 @@
USE_GITLAB= yes
GL_ACCOUNT= Remmina
GL_PROJECT= Remmina
-GL_COMMIT= 61ea9b6681104cadf0a3f8c25bd3e5685ee6691a
+GL_TAGNAME= 61ea9b6681104cadf0a3f8c25bd3e5685ee6691a
USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk30 pango
Index: net/waypipe/Makefile
===================================================================
--- net/waypipe/Makefile
+++ net/waypipe/Makefile
@@ -15,7 +15,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= mstoeckl
-GL_COMMIT= 033d0e7eb613f1ddfe104d07079a81b8d4e02dac
+GL_TAGNAME= 033d0e7eb613f1ddfe104d07079a81b8d4e02dac
PLIST_FILES= bin/${PORTNAME}
OPTIONS_DEFINE= FFMPEG LZ4 MANPAGES OPENGL VAAPI ZSTD
Index: polish/napi/Makefile
===================================================================
--- polish/napi/Makefile
+++ polish/napi/Makefile
@@ -20,7 +20,7 @@
USE_GITLAB= yes
GL_ACCOUNT= hesperos
GL_PROJECT= ${PORTNAME}
-GL_COMMIT= ac404649571e470bf9494f788bd8a74843956851
+GL_TAGNAME= ac404649571e470bf9494f788bd8a74843956851
SHEBANG_GLOB= *.sh *.sh.in
Index: ports-mgmt/hs-cabal2tuple/Makefile
===================================================================
--- ports-mgmt/hs-cabal2tuple/Makefile
+++ ports-mgmt/hs-cabal2tuple/Makefile
@@ -13,7 +13,7 @@
USE_GITLAB= yes
GL_SITE= https://foss.heptapod.net
GL_ACCOUNT= bsdutils
-GL_COMMIT= 7adf07b805d83040e7b164c69636c9b67a6a5fc6
+GL_TAGNAME= 7adf07b805d83040e7b164c69636c9b67a6a5fc6
# Version of the 'hashable' package should be the same as in devel/hs-cabal-install
USE_CABAL= hashable-1.4.2.0
Index: ports-mgmt/hs-panopticum/Makefile
===================================================================
--- ports-mgmt/hs-panopticum/Makefile
+++ ports-mgmt/hs-panopticum/Makefile
@@ -14,7 +14,7 @@
USE_GITLAB= yes
GL_SITE= https://foss.heptapod.net
GL_ACCOUNT= bsdutils
-GL_COMMIT= ef5c3793acad2ed2ef17138dabfeb575e26458c5
+GL_TAGNAME= ef5c3793acad2ed2ef17138dabfeb575e26458c5
USE_CABAL= ansi-terminal-1.0 \
ansi-terminal-types-0.11.5_1 \
Index: ports-mgmt/portconfig/Makefile
===================================================================
--- ports-mgmt/portconfig/Makefile
+++ ports-mgmt/portconfig/Makefile
@@ -14,7 +14,7 @@
USE_GITLAB= yes
GL_ACCOUNT= alfix
-GL_COMMIT= a19a1ff5cbd2dbfa18bb5402b936fdefb515a06d
+GL_TAGNAME= a19a1ff5cbd2dbfa18bb5402b936fdefb515a06d
PLIST_FILES= bin/${PORTNAME} \
man/man1/${PORTNAME}.1.gz
Index: print/ft2demos/Makefile
===================================================================
--- print/ft2demos/Makefile
+++ print/ft2demos/Makefile
@@ -21,7 +21,7 @@
USE_GITLAB= yes
GL_PROJECT= freetype-demos
GL_ACCOUNT= freetype
-GL_COMMIT= 07027905d9a47664251b3ee362c5cfad1cddf86f
+GL_TAGNAME= 07027905d9a47664251b3ee362c5cfad1cddf86f
PLIST_FILES= ${FT_PROGRAMS:S,^,bin/,}
@@ -30,7 +30,7 @@
post-extract:
${LN} -sf `${MAKE} -C ${.CURDIR}/../../print/freetype2 -V WRKSRC` \
- ${WRKDIR}/${GL_PROJECT}-${GL_COMMIT}/subprojects/freetype2
+ ${WRKDIR}/${GL_PROJECT}-${GL_TAGNAME}/subprojects/freetype2
do-install:
@(cd ${WRKSRC}/_build && \
Index: print/pdfmixtool/Makefile
===================================================================
--- print/pdfmixtool/Makefile
+++ print/pdfmixtool/Makefile
@@ -32,7 +32,7 @@
USE_GITLAB= yes
GL_ACCOUNT= scarpetta
-GL_COMMIT= 35d482029881d9904c6e7487fe7572a3a5795406
+GL_TAGNAME= 35d482029881d9904c6e7487fe7572a3a5795406
LDFLAGS+= -L${LOCALBASE}/lib
Index: print/pdftk/Makefile
===================================================================
--- print/pdftk/Makefile
+++ print/pdftk/Makefile
@@ -18,7 +18,7 @@
USE_ANT= yes
USE_GITLAB= yes
GL_ACCOUNT= pdftk-java
-GL_COMMIT= e4292c8f1bd2580a44d3cbf3570a4505bd3a74b6
+GL_TAGNAME= e4292c8f1bd2580a44d3cbf3570a4505bd3a74b6
USE_JAVA= yes
ALL_TARGET= jar
NO_ARCH= yes
Index: science/agrum/Makefile
===================================================================
--- science/agrum/Makefile
+++ science/agrum/Makefile
@@ -19,7 +19,7 @@
USE_GITLAB= yes
GL_ACCOUNT= agrumery
GL_PROJECT= aGrUM
-GL_COMMIT= ddc302c8758294bf54781c019195468f2764706d
+GL_TAGNAME= ddc302c8758294bf54781c019195468f2764706d
SHEBANG_FILES= act
Index: science/dalton/Makefile
===================================================================
--- science/dalton/Makefile
+++ science/dalton/Makefile
@@ -19,7 +19,7 @@
SHEBANG_FILES= dalton.in
USE_GITLAB= yes
-GL_COMMIT= 66052b3af5ea7225e31178bf9a8b031913c72190
+GL_TAGNAME= 66052b3af5ea7225e31178bf9a8b031913c72190
GL_TUPLE= bingao:gen1int:1e4148ecd676761b3399801acba443925a1fee6b:gen1int/external/gen1int \
pe-software:pelib-public:cf49a6e04fdca09af6245fb68a36d20b68552ace:pelib/external/pelib
Index: science/dirac/Makefile
===================================================================
--- science/dirac/Makefile
+++ science/dirac/Makefile
@@ -24,7 +24,7 @@
USES= cmake:noninja,testing fortran python shebangfix
#USE_GITLAB= yes
-#GL_COMMIT= 37b755410d9fdcd9b5e7bba6e43ceb7d5c7b9dae
+#GL_TAGNAME= 37b755410d9fdcd9b5e7bba6e43ceb7d5c7b9dae
SHEBANG_FILES= pam.in \
utils/process_schema.py \
Index: science/fleur/Makefile
===================================================================
--- science/fleur/Makefile
+++ science/fleur/Makefile
@@ -22,7 +22,7 @@
USE_GITLAB= yes
GL_SITE= https://iffgit.fz-juelich.de
-GL_COMMIT= a2934446e0eb1fcbf7a69d4d652c969cef0c8c8d
+GL_TAGNAME= a2934446e0eb1fcbf7a69d4d652c969cef0c8c8d
FFLAGS= -I${LOCALBASE}/include
LDFLAGS+= -llapack -lopenblas -lxml2 # to fix missing symbols, see https://iffgit.fz-juelich.de/fleur/fleur/-/issues/670
Index: science/frontistr/Makefile
===================================================================
--- science/frontistr/Makefile
+++ science/frontistr/Makefile
@@ -19,7 +19,7 @@
USE_GITLAB= yes
GL_ACCOUNT= ${PORTNAME}-Commons
-GL_COMMIT= c66bdc397de319ca59a0565b3f3b1a3b33f0c50c
+GL_TAGNAME= c66bdc397de319ca59a0565b3f3b1a3b33f0c50c
USES= blaslapack:openblas cmake:testing fortran mpi shebangfix
SHEBANG_GLOB= *.sh
Index: science/kplib/Makefile
===================================================================
--- science/kplib/Makefile
+++ science/kplib/Makefile
@@ -14,7 +14,7 @@
USE_GITLAB= yes
GL_ACCOUNT= muellergroup
-GL_COMMIT= 7ad807da6753b4677927ad8efd485bee13d6f761
+GL_TAGNAME= 7ad807da6753b4677927ad8efd485bee13d6f761
PLIST_FILES= include/kPointLattice.h \
include/kPointLatticeGenerator.h \
Index: science/libvdwxc/Makefile
===================================================================
--- science/libvdwxc/Makefile
+++ science/libvdwxc/Makefile
@@ -14,7 +14,7 @@
USES= autoreconf gmake libtool localbase
GNU_CONFIGURE= yes
USE_GITLAB= yes
-GL_COMMIT= b1e0dd854310410012d05daf4c6661b49f31b2ab
+GL_TAGNAME= b1e0dd854310410012d05daf4c6661b49f31b2ab
CONFIGURE_ARGS= --disable-static
USE_LDCONFIG= yes
Index: science/massxpert/Makefile
===================================================================
--- science/massxpert/Makefile
+++ science/massxpert/Makefile
@@ -18,7 +18,7 @@
USE_GITLAB= yes
GL_SITE= https://salsa.debian.org/
GL_ACCOUNT= debichem-team
-GL_COMMIT= a21ad33eee0314df202146392023dfb3868b7d84
+GL_TAGNAME= a21ad33eee0314df202146392023dfb3868b7d84
USE_GNOME= glib20
USE_QT= core gui printsupport svg widgets xml buildtools:build \
qmake:build
Index: science/openmolcas/Makefile
===================================================================
--- science/openmolcas/Makefile
+++ science/openmolcas/Makefile
@@ -25,7 +25,7 @@
USE_GITLAB= yes
GL_ACCOUNT= Molcas
GL_PROJECT= OpenMolcas
-GL_COMMIT= 17238da5c339c41ddf14ceb88f139d57143d7a14
+GL_TAGNAME= 17238da5c339c41ddf14ceb88f139d57143d7a14
USE_GITHUB= nodefault
GH_TUPLE= Reference-LAPACK:lapack:aa631b4b:lapack/External/lapack \
Index: science/opensph/Makefile
===================================================================
--- science/opensph/Makefile
+++ science/opensph/Makefile
@@ -22,7 +22,7 @@
GL_SITE= https://gitlab.com
GL_ACCOUNT= sevecekp
GL_PROJECT= sph
-GL_COMMIT= a8aac69f63e38d45339ddbc87855f77a71b2459d
+GL_TAGNAME= a8aac69f63e38d45339ddbc87855f77a71b2459d
QMAKE_SOURCE_PATH= ${WRKSRC}/sph.pro
QMAKE_ARGS= CONFIG+=release
Index: science/pastix/Makefile
===================================================================
--- science/pastix/Makefile
+++ science/pastix/Makefile
@@ -26,7 +26,7 @@
GL_SITE= https://gitlab.inria.fr/
GL_ACCOUNT= solverstack
GL_PROJECT= pastix spm:s morse_cmake:m
-GL_COMMIT= 6e35c2ba179013b058f5d4e1afd4b451953149c6 \
+GL_TAGNAME= 6e35c2ba179013b058f5d4e1afd4b451953149c6 \
14e36c1586c9ba13f938b1a89f51c080d6551392:s \
31cd2bbb0d76f2b9fd83011d8f079d97540b0ba8:m
GL_SUBDIR= spm:s cmake_modules/morse_cmake:m
Index: science/simgrid/Makefile
===================================================================
--- science/simgrid/Makefile
+++ science/simgrid/Makefile
@@ -23,7 +23,7 @@
GL_SITE= https://framagit.org/
GL_ACCOUNT= simgrid
GL_PROJECT= simgrid
-GL_COMMIT= 93ba9586352a457e9795a66ccd6f45f8525cb03f
+GL_TAGNAME= 93ba9586352a457e9795a66ccd6f45f8525cb03f
CMAKE_OFF= enable_python
Index: science/v_sim/Makefile
===================================================================
--- science/v_sim/Makefile
+++ science/v_sim/Makefile
@@ -40,7 +40,7 @@
USE_GL= gl glu
USE_GITLAB= yes
GL_ACCOUNT= l_sim
-GL_COMMIT= 9dc8e5a0b2f4e7237ac50a922b87d234ff56a6e5
+GL_TAGNAME= 9dc8e5a0b2f4e7237ac50a922b87d234ff56a6e5
GNU_CONFIGURE= yes
CONFIGURE_SHELL=${LOCALBASE}/bin/bash
Index: science/xdrawchem/Makefile
===================================================================
--- science/xdrawchem/Makefile
+++ science/xdrawchem/Makefile
@@ -19,7 +19,7 @@
USE_GITLAB= yes
GL_SITE= https://salsa.debian.org
GL_ACCOUNT= georgesk
-GL_COMMIT= a3f74c34eb09fa72ee16848ec6901049ca5309d5
+GL_TAGNAME= a3f74c34eb09fa72ee16848ec6901049ca5309d5
pre-configure:
${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \
Index: security/amavisd-new/Makefile
===================================================================
--- security/amavisd-new/Makefile
+++ security/amavisd-new/Makefile
@@ -24,7 +24,7 @@
USE_PERL5= run
GL_ACCOUNT= amavis
GL_PROJECT= amavis
-GL_COMMIT= 38f86957cfc161c23d12637ce206f5ae7ec3d0a8
+GL_TAGNAME= 38f86957cfc161c23d12637ce206f5ae7ec3d0a8
SHEBANG_FILES= amavisd-agent amavisd-nanny amavisd-release p0f-analyzer.pl \
amavisd-snmp-subagent amavisd
Index: security/archlinux-keyring/Makefile
===================================================================
--- security/archlinux-keyring/Makefile
+++ security/archlinux-keyring/Makefile
@@ -21,7 +21,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.archlinux.org
GL_ACCOUNT= archlinux
-GL_COMMIT= f7749fd39c019922d504a43b7e94ceef6ae9e0ff
+GL_TAGNAME= f7749fd39c019922d504a43b7e94ceef6ae9e0ff
NO_ARCH= yes
Index: security/arti/Makefile
===================================================================
--- security/arti/Makefile
+++ security/arti/Makefile
@@ -19,7 +19,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.torproject.org
GL_ACCOUNT= tpo/core
-GL_COMMIT= 6843093052d00f5fce00d2ae677379a811e36ab1
+GL_TAGNAME= 6843093052d00f5fce00d2ae677379a811e36ab1
CARGO_FEATURES= tokio rustls
CARGO_INSTALL= no
Index: security/authenticator/Makefile
===================================================================
--- security/authenticator/Makefile
+++ security/authenticator/Makefile
@@ -24,7 +24,7 @@
GL_SITE= https://gitlab.gnome.org
GL_ACCOUNT= World
GL_PROJECT= Authenticator
-GL_COMMIT= 77963b4714065939a86b329fe611d57d182a573e
+GL_TAGNAME= 77963b4714065939a86b329fe611d57d182a573e
CARGO_ENV= ZBAR_INCLUDE_DIRS="${LOCALBASE}/include" ZBAR_LIB_DIRS="${LOCALBASE}/lib"
MAKE_ENV= ${CARGO_ENV}
CARGO_BUILD= no
Index: security/bzrtp/Makefile
===================================================================
--- security/bzrtp/Makefile
+++ security/bzrtp/Makefile
@@ -16,7 +16,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.linphone.org/BC
GL_ACCOUNT= public
-GL_COMMIT= bf66d442d1881eff4310ce9516e25f2616adfd35
+GL_TAGNAME= bf66d442d1881eff4310ce9516e25f2616adfd35
USE_GNOME= libxml2
USE_LDCONFIG= yes
Index: security/diffcode/Makefile
===================================================================
--- security/diffcode/Makefile
+++ security/diffcode/Makefile
@@ -14,6 +14,6 @@
USE_GITLAB= yes
GL_ACCOUNT= LadySerenaKitty
GL_PROJECT= ${PORTNAME}
-GL_COMMIT= 4ae08b53b657ad2aa6816123b49709d903e4593c
+GL_TAGNAME= 4ae08b53b657ad2aa6816123b49709d903e4593c
.include <bsd.port.mk>
Index: security/lime/Makefile
===================================================================
--- security/lime/Makefile
+++ security/lime/Makefile
@@ -17,7 +17,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.linphone.org/BC
GL_ACCOUNT= public
-GL_COMMIT= c20149550d1d9386cff67640d5391d0c814a7e70
+GL_TAGNAME= c20149550d1d9386cff67640d5391d0c814a7e70
CMAKE_ARGS= -DCMAKE_PREFIX_PATH=${LOCALBASE} \
-DENABLE_STATIC=NO \
Index: security/obfs4proxy-tor/Makefile
===================================================================
--- security/obfs4proxy-tor/Makefile
+++ security/obfs4proxy-tor/Makefile
@@ -29,7 +29,7 @@
USE_GITLAB= yes
GL_ACCOUNT= yawning
GL_PROJECT= obfs4
-GL_COMMIT= 336a71d6e4cfd2d33e9c57797828007ad74975e9
+GL_TAGNAME= 336a71d6e4cfd2d33e9c57797828007ad74975e9
GL_TUPLE= yawning:bsaes:0a714cd429ec754482b4001e918db30cd2094405:yawning_bsaes/vendor/gitlab.com/yawning/bsaes.git \
yawning:edwards25519-extra:def713fd18e464864613d2b55ef41a21df2c9493:yawning_edwards25519extra/vendor/gitlab.com/yawning/edwards25519-extra.git \
yawning:utls:f1bcf4b40e4596d0ccd1dbf8f3a9f4922f9759ca:yawning_utls/vendor/gitlab.com/yawning/utls.git
Index: security/olm/Makefile
===================================================================
--- security/olm/Makefile
+++ security/olm/Makefile
@@ -14,7 +14,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.matrix.org/
GL_ACCOUNT= matrix-org
-GL_COMMIT= 6d767aaf29bdf15571c2ef4d3f8f9e953de03733
+GL_TAGNAME= 6d767aaf29bdf15571c2ef4d3f8f9e953de03733
PLIST_SUB= SOVER=${DISTVERSION}
Index: security/openvpn-devel/Makefile
===================================================================
--- security/openvpn-devel/Makefile
+++ security/openvpn-devel/Makefile
@@ -21,7 +21,7 @@
USES= autoreconf cpe libtool pkgconfig python:build shebangfix tar:xz
IGNORE_SSL= libressl libressl-devel
USE_GITLAB= yes
-GL_COMMIT= fafb05f6f3a7a1b46c278961ec8d2d8970f01096
+GL_TAGNAME= fafb05f6f3a7a1b46c278961ec8d2d8970f01096
USE_RC_SUBR= openvpn
SHEBANG_FILES= sample/sample-scripts/auth-pam.pl \
@@ -40,7 +40,7 @@
CFLAGS+= -DLOG_OPENVPN=${LOG_OPENVPN}
.endif
-CPPFLAGS+= -I${WRKSRC}/include -I${LOCALBASE}/include -DCONFIGURE_GIT_REVISION='\"${GL_COMMIT}\"' -DCONFIGURE_GIT_FLAGS=
+CPPFLAGS+= -I${WRKSRC}/include -I${LOCALBASE}/include -DCONFIGURE_GIT_REVISION='\"${GL_TAGNAME}\"' -DCONFIGURE_GIT_FLAGS=
LDFLAGS+= -L${LOCALBASE}/lib
CONFLICTS_INSTALL?= openvpn-2.[!4].* openvpn-[!2].* openvpn-beta \
Index: security/palisade/Makefile
===================================================================
--- security/palisade/Makefile
+++ security/palisade/Makefile
@@ -18,7 +18,7 @@
USE_GITLAB= yes
USE_GITHUB= nodefault
GL_PROJECT= palisade-release # there's also palisade-development
-GL_COMMIT= 0860127401ab794591f931fa2c61426c7b56ee2d
+GL_TAGNAME= 0860127401ab794591f931fa2c61426c7b56ee2d
GH_TUPLE= \
JerryRyan:cereal:a384b101:cereal/third-party/cereal \
google:benchmark:e451e50e:benchmark/third-party/google-benchmark \
Index: security/rotate/Makefile
===================================================================
--- security/rotate/Makefile
+++ security/rotate/Makefile
@@ -14,6 +14,6 @@
USE_GITLAB= yes
GL_ACCOUNT= LadySerenaKitty
GL_PROJECT= ${PORTNAME}
-GL_COMMIT= 11865e9748bb1a949c9450771283e4423b7c7115
+GL_TAGNAME= 11865e9748bb1a949c9450771283e4423b7c7115
.include <bsd.port.mk>
Index: security/sequoia-sq/Makefile
===================================================================
--- security/sequoia-sq/Makefile
+++ security/sequoia-sq/Makefile
@@ -20,7 +20,7 @@
USE_GITLAB= yes
GL_ACCOUNT= sequoia-pgp
GL_PROJECT= ${PKGNAMEPREFIX}${PORTNAME}
-GL_COMMIT= 3433e6e8064b45a6531c7b6b3374b6a2ed77d032
+GL_TAGNAME= 3433e6e8064b45a6531c7b6b3374b6a2ed77d032
OPTIONS_DEFINE= BASH FISH MANPAGES ZSH
OPTIONS_DEFAULT= BASH FISH MANPAGES ZSH
Index: security/signing-party/Makefile
===================================================================
--- security/signing-party/Makefile
+++ security/signing-party/Makefile
@@ -29,7 +29,7 @@
USE_GITLAB= yes
GL_SITE= https://salsa.debian.org/
GL_ACCOUNT= signing-party-team
-GL_COMMIT= 8f6c9d59d8edbb08dade7bac06417fce07626f7f
+GL_TAGNAME= 8f6c9d59d8edbb08dade7bac06417fce07626f7f
BINS= keyanalyze/keyanalyze keyanalyze/process_keys \
gpgwrap/bin/gpgwrap
Index: security/webtunnel-tor/Makefile
===================================================================
--- security/webtunnel-tor/Makefile
+++ security/webtunnel-tor/Makefile
@@ -26,7 +26,7 @@
GL_SITE= https://gitlab.torproject.org/tpo
GL_ACCOUNT= anti-censorship/pluggable-transports
-GL_COMMIT= ${TPO_WEBTUN}
+GL_TAGNAME= ${TPO_WEBTUN}
GL_TUPLE= anti-censorship:pluggable-transports/goptlib:${TPO_GOPTLIB}:tpo_ac_ptlib/vendor/gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptlib
PLIST_FILES= bin/${PORTNAME}-tor-client \
Index: shells/ion/Makefile
===================================================================
--- shells/ion/Makefile
+++ shells/ion/Makefile
@@ -15,7 +15,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.redox-os.org
GL_ACCOUNT= redox-os
-GL_COMMIT= a8872014dbce730ccd00aaa722397dc394a52bf4
+GL_TAGNAME= a8872014dbce730ccd00aaa722397dc394a52bf4
CARGO_CRATES= adler32-1.0.3 \
aho-corasick-0.7.4 \
@@ -263,7 +263,7 @@
${WRKSRC_crate_calculate}/Cargo.toml
post-configure:
- ${ECHO_CMD} ${GL_COMMIT} > ${WRKSRC}/git_revision.txt
+ ${ECHO_CMD} ${GL_TAGNAME} > ${WRKSRC}/git_revision.txt
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ion
Index: sysutils/accounts-qml-module/Makefile
===================================================================
--- sysutils/accounts-qml-module/Makefile
+++ sysutils/accounts-qml-module/Makefile
@@ -21,6 +21,6 @@
# gitlab variables
USE_GITLAB= yes
GL_ACCOUNT= accounts-sso
-GL_COMMIT= cfadea7ba8ba4011ae20d771696eb74deb87201e
+GL_TAGNAME= cfadea7ba8ba4011ae20d771696eb74deb87201e
.include <bsd.port.mk>
Index: sysutils/bsdisks/Makefile
===================================================================
--- sysutils/bsdisks/Makefile
+++ sysutils/bsdisks/Makefile
@@ -15,6 +15,6 @@
USE_GITLAB= yes
GL_SITE= https://foss.heptapod.net
GL_ACCOUNT= bsdutils
-GL_COMMIT= 732ac95883643f31701ade5805e27ce1adc98030
+GL_TAGNAME= 732ac95883643f31701ade5805e27ce1adc98030
.include <bsd.port.mk>
Index: sysutils/devedeng/Makefile
===================================================================
--- sysutils/devedeng/Makefile
+++ sysutils/devedeng/Makefile
@@ -22,7 +22,7 @@
USES= python gettext-tools gnome
USE_GITLAB= yes
GL_ACCOUNT= rastersoft
-GL_COMMIT= b003c2bfe61a1001ea708501f8d36239782975ce
+GL_TAGNAME= b003c2bfe61a1001ea708501f8d36239782975ce
USE_GNOME= gtk30
USE_PYTHON= distutils autoplist
Index: sysutils/g15daemon/Makefile
===================================================================
--- sysutils/g15daemon/Makefile
+++ sysutils/g15daemon/Makefile
@@ -20,7 +20,7 @@
USE_RC_SUBR= g15daemon
GL_ACCOUNT= menelkir
-GL_COMMIT= 1f4e8b41a6ea460d59cc07305a4d9b487b575ec6
+GL_TAGNAME= 1f4e8b41a6ea460d59cc07305a4d9b487b575ec6
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --sysconfdir=${LOCALBASE}/etc
Index: sysutils/hid-tools/Makefile
===================================================================
--- sysutils/hid-tools/Makefile
+++ sysutils/hid-tools/Makefile
@@ -19,7 +19,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.freedesktop.org/
GL_ACCOUNT= libevdev
-GL_COMMIT= 0f71fd65d83b28b744a2fe0a6cc1e3139921c721
+GL_TAGNAME= 0f71fd65d83b28b744a2fe0a6cc1e3139921c721
USE_PYTHON= autoplist distutils
OPTIONS_DEFINE= MANPAGES
Index: sysutils/hs-cputype/Makefile
===================================================================
--- sysutils/hs-cputype/Makefile
+++ sysutils/hs-cputype/Makefile
@@ -14,7 +14,7 @@
USE_GITLAB= yes
GL_SITE= https://foss.heptapod.net
GL_ACCOUNT= bsdutils
-GL_COMMIT= ae3a01cc39547e6e014e40bd7c2cc0f6810ec616
+GL_TAGNAME= ae3a01cc39547e6e014e40bd7c2cc0f6810ec616
USE_CABAL= ansi-terminal-1.0 \
ansi-terminal-types-0.11.5_1 \
Index: sysutils/jstest-gtk/Makefile
===================================================================
--- sysutils/jstest-gtk/Makefile
+++ sysutils/jstest-gtk/Makefile
@@ -20,6 +20,6 @@
# gitlab variables
USE_GITLAB= yes
GL_ACCOUNT= jstest-gtk
-GL_COMMIT= 62f6e2d7d44620e503149510c428df9e004c9f3b
+GL_TAGNAME= 62f6e2d7d44620e503149510c428df9e004c9f3b
.include <bsd.port.mk>
Index: sysutils/libdisplay-info/Makefile
===================================================================
--- sysutils/libdisplay-info/Makefile
+++ sysutils/libdisplay-info/Makefile
@@ -16,7 +16,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= emersion
-GL_COMMIT= 92b031749c0fe84ef5cdf895067b84a829920e25
+GL_TAGNAME= 92b031749c0fe84ef5cdf895067b84a829920e25
SHEBANG_FILES= tool/*.py
pre-test:
Index: sysutils/libg15/Makefile
===================================================================
--- sysutils/libg15/Makefile
+++ sysutils/libg15/Makefile
@@ -14,7 +14,7 @@
USE_LDCONFIG= yes
GL_ACCOUNT= menelkir
-GL_COMMIT= ea3bc624ac7b3c84f4669c317cae8554ec897907
+GL_TAGNAME= ea3bc624ac7b3c84f4669c317cae8554ec897907
GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
Index: sysutils/libg15render/Makefile
===================================================================
--- sysutils/libg15render/Makefile
+++ sysutils/libg15render/Makefile
@@ -16,7 +16,7 @@
USE_LDCONFIG= yes
GL_ACCOUNT= menelkir
-GL_COMMIT= b7c1b217e95a1c473fa219c1940c8c9db0eb4628
+GL_TAGNAME= b7c1b217e95a1c473fa219c1940c8c9db0eb4628
GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
Index: sysutils/minipro/Makefile
===================================================================
--- sysutils/minipro/Makefile
+++ sysutils/minipro/Makefile
@@ -15,7 +15,7 @@
USE_GITLAB= yes
GL_ACCOUNT= DavidGriffith
-GL_COMMIT= 8be592c954264afdc3a2cb596ee45517cc5dc621
+GL_TAGNAME= 8be592c954264afdc3a2cb596ee45517cc5dc621
GL_PROJECT= ${PORTNAME}
BINARY_ALIAS= sed=${LOCALBASE}/bin/gsed
SHEBANG_FILES= miniprohex
Index: sysutils/nsysctl/Makefile
===================================================================
--- sysutils/nsysctl/Makefile
+++ sysutils/nsysctl/Makefile
@@ -14,7 +14,7 @@
USE_GITLAB= yes
GL_ACCOUNT= alfix
-GL_COMMIT= 5d92b5a19300c56a95db0012c659f64f36fb1bce
+GL_TAGNAME= 5d92b5a19300c56a95db0012c659f64f36fb1bce
PLIST_FILES= man/man8/${PORTNAME}.8.gz \
sbin/${PORTNAME}
Index: sysutils/py-dict-toolbox/Makefile
===================================================================
--- sysutils/py-dict-toolbox/Makefile
+++ sysutils/py-dict-toolbox/Makefile
@@ -13,7 +13,7 @@
USE_GITLAB= yes
GL_ACCOUNT= saltstack/open
-GL_COMMIT= 60ae07cb72c49918917c681fdcc3df88813b036b
+GL_TAGNAME= 60ae07cb72c49918917c681fdcc3df88813b036b
USE_PYTHON= autoplist distutils
NO_ARCH= yes
Index: sysutils/py-python-crontab/Makefile
===================================================================
--- sysutils/py-python-crontab/Makefile
+++ sysutils/py-python-crontab/Makefile
@@ -20,7 +20,7 @@
USE_GITLAB= yes
GL_ACCOUNT= doctormo
-GL_COMMIT= ba23056ddf1a00ecfd14b0a31c2e0cdad132f8d0
+GL_TAGNAME= ba23056ddf1a00ecfd14b0a31c2e0cdad132f8d0
do-test:
@cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
Index: sysutils/scanbd/Makefile
===================================================================
--- sysutils/scanbd/Makefile
+++ sysutils/scanbd/Makefile
@@ -21,7 +21,7 @@
USE_GITLAB= yes
GL_ACCOUNT= sane-project/frontend
GL_PROJECT= scanbd
-GL_COMMIT= 4503640d202c06510f21848a684e221f613f324b
+GL_TAGNAME= 4503640d202c06510f21848a684e221f613f324b
GNU_CONFIGURE= yes
Index: sysutils/signon-plugin-oauth2/Makefile
===================================================================
--- sysutils/signon-plugin-oauth2/Makefile
+++ sysutils/signon-plugin-oauth2/Makefile
@@ -20,7 +20,7 @@
# gitlab variables
USE_GITLAB= yes
GL_ACCOUNT= accounts-sso
-GL_COMMIT= 091887d09bb635fa31f69ed16d384563cddc8009
+GL_TAGNAME= 091887d09bb635fa31f69ed16d384563cddc8009
# Fix for Qt5-5.13:
# oauth2plugin.cpp:133:9: error: 'addQueryItem' is deprecated [-Werror,-Wdeprecated-declarations]
Index: sysutils/signon-qt5/Makefile
===================================================================
--- sysutils/signon-qt5/Makefile
+++ sysutils/signon-qt5/Makefile
@@ -22,7 +22,7 @@
USE_GITLAB= yes
GL_ACCOUNT= accounts-sso
GL_PROJECT= signond
-GL_COMMIT= 07d45498ad374d9e8e4ff6a886f4b4bb850c0cb5
+GL_TAGNAME= 07d45498ad374d9e8e4ff6a886f4b4bb850c0cb5
OPTIONS_DEFINE= DOCS
Index: sysutils/signon-ui/Makefile
===================================================================
--- sysutils/signon-ui/Makefile
+++ sysutils/signon-ui/Makefile
@@ -25,6 +25,6 @@
# gitlab variables
USE_GITLAB= yes
GL_ACCOUNT= accounts-sso
-GL_COMMIT= 075830f31096947fcea70802b8d3c142bccfbefa
+GL_TAGNAME= 075830f31096947fcea70802b8d3c142bccfbefa
.include <bsd.port.mk>
Index: sysutils/sysctlbyname-improved-kmod/Makefile
===================================================================
--- sysutils/sysctlbyname-improved-kmod/Makefile
+++ sysutils/sysctlbyname-improved-kmod/Makefile
@@ -13,7 +13,7 @@
USE_GITLAB= yes
GL_ACCOUNT= alfix
GL_PROJECT= sysctlbyname-improved
-GL_COMMIT= 22bdff50867ff927edd098091608e871503291b6
+GL_TAGNAME= 22bdff50867ff927edd098091608e871503291b6
PLIST_FILES= ${KMODDIR}/sysctlbyname_improved.ko
Index: sysutils/sysctlinfo-kmod/Makefile
===================================================================
--- sysutils/sysctlinfo-kmod/Makefile
+++ sysutils/sysctlinfo-kmod/Makefile
@@ -13,7 +13,7 @@
USE_GITLAB= yes
GL_ACCOUNT= alfix
GL_PROJECT= sysctlinfo
-GL_COMMIT= be57d5a892d0a908172664f87afeed0627e9ddf2
+GL_TAGNAME= be57d5a892d0a908172664f87afeed0627e9ddf2
PLIST_FILES= ${KMODDIR}/sysctlinfo.ko \
include/sysctlinfo.h \
Index: sysutils/ufetch/Makefile
===================================================================
--- sysutils/ufetch/Makefile
+++ sysutils/ufetch/Makefile
@@ -13,7 +13,7 @@
USE_GITLAB= yes
GL_ACCOUNT= jschx
-GL_COMMIT= 9831ec29c6ec3b105a7a1c3573f58f4f7c414e09
+GL_TAGNAME= 9831ec29c6ec3b105a7a1c3573f58f4f7c414e09
NO_ARCH= yes
NO_BUILD= yes
Index: sysutils/upower/Makefile
===================================================================
--- sysutils/upower/Makefile
+++ sysutils/upower/Makefile
@@ -14,7 +14,7 @@
USES= compiler:c11 gettext gnome localbase meson pkgconfig
USE_GITLAB= yes
GL_SITE= https://gitlab.freedesktop.org/
-GL_COMMIT= 8dcf54440d7eb58b75d7982bc1c29ee35dccf0c2
+GL_TAGNAME= 8dcf54440d7eb58b75d7982bc1c29ee35dccf0c2
USE_GNOME= glib20 introspection:build
USE_LDCONFIG= yes
MESON_ARGS= -Dgtk-doc=false \
Index: sysutils/zeitgeist/Makefile
===================================================================
--- sysutils/zeitgeist/Makefile
+++ sysutils/zeitgeist/Makefile
@@ -23,7 +23,7 @@
python sqlite tar:xz vala:build
USE_GITLAB= yes
GL_SITE= https://gitlab.freedesktop.org
-GL_COMMIT= 8b89364c077b46734d193c5b8a80f83b0fc917dd
+GL_TAGNAME= 8b89364c077b46734d193c5b8a80f83b0fc917dd
USE_GNOME= cairo gdkpixbuf2 glib20 intlhack \
introspection:build
USE_LDCONFIG= yes
Index: textproc/belr/Makefile
===================================================================
--- textproc/belr/Makefile
+++ textproc/belr/Makefile
@@ -15,7 +15,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.linphone.org/BC
GL_ACCOUNT= public
-GL_COMMIT= 4e0fee77c87c5abf2b002f1a4b5f0c7f5d4c69f6
+GL_TAGNAME= 4e0fee77c87c5abf2b002f1a4b5f0c7f5d4c69f6
USE_LDCONFIG= yes
CMAKE_ARGS= -DCMAKE_PREFIX_PATH=${LOCALBASE} \
Index: textproc/gitlab-elasticsearch-indexer/Makefile
===================================================================
--- textproc/gitlab-elasticsearch-indexer/Makefile
+++ textproc/gitlab-elasticsearch-indexer/Makefile
@@ -20,7 +20,7 @@
USE_GITLAB= yes
GL_ACCOUNT= gitlab-org
# Find the commit hash here: https://gitlab.com/gitlab-org/gitlab-elasticsearch-indexer/-/tags
-GL_COMMIT= f5b02c19bc905e7759ffd3466c4daca0c1f22fbc
+GL_TAGNAME= f5b02c19bc905e7759ffd3466c4daca0c1f22fbc
MAKE_ENV= GOFLAGS="${GO_BUILDFLAGS}"
# make sure to pass go build options into make process
Index: textproc/hexcode/Makefile
===================================================================
--- textproc/hexcode/Makefile
+++ textproc/hexcode/Makefile
@@ -14,6 +14,6 @@
USE_GITLAB= yes
GL_ACCOUNT= LadySerenaKitty
GL_PROJECT= ${PORTNAME}
-GL_COMMIT= 28014ba87c67b7d352c131a7a985b8188506a2ed
+GL_TAGNAME= 28014ba87c67b7d352c131a7a985b8188506a2ed
.include <bsd.port.mk>
Index: textproc/yodl/Makefile
===================================================================
--- textproc/yodl/Makefile
+++ textproc/yodl/Makefile
@@ -20,7 +20,7 @@
USE_PERL5= build
USE_GITLAB= yes
GL_ACCOUNT= fbb-git
-GL_COMMIT= 5fa97b175c85581d01329013cfdb4239f019b023
+GL_TAGNAME= 5fa97b175c85581d01329013cfdb4239f019b023
SHEBANG_LANG= icmake
icmake_OLD_CMD= /usr/bin/icmake
Index: www/davical/Makefile
===================================================================
--- www/davical/Makefile
+++ www/davical/Makefile
@@ -22,7 +22,7 @@
USE_GITLAB= yes
GL_ACCOUNT= davical-project
-GL_COMMIT= 4301a795ac7a7636846bcc15348d96c68a1830fd
+GL_TAGNAME= 4301a795ac7a7636846bcc15348d96c68a1830fd
USE_PHP= calendar curl gettext iconv pdo \
pdo_pgsql pgsql session xml
Index: www/ffsend/Makefile
===================================================================
--- www/ffsend/Makefile
+++ www/ffsend/Makefile
@@ -25,7 +25,7 @@
USES= cargo localbase:ldflags python:build ssl xorg
USE_GITLAB= yes
GL_ACCOUNT= timvisee
-GL_COMMIT= ccd489ce2e75b91c0f17fbf13dbd91fe84f5ad98
+GL_TAGNAME= ccd489ce2e75b91c0f17fbf13dbd91fe84f5ad98
USE_XORG= xcb
CARGO_CRATES= addr2line-0.16.0 \
Index: www/gitlab-ce/Makefile
===================================================================
--- www/gitlab-ce/Makefile
+++ www/gitlab-ce/Makefile
@@ -292,7 +292,7 @@
GL_ACCOUNT= gitlab-org
GL_PROJECT= gitlab-foss
# Find the here: https://gitlab.com/gitlab-org/gitlab-foss/-/tags
-GL_COMMIT= e60fc11f2d3d2a3d4fe6e1c9001e29091bd4ccd5
+GL_TAGNAME= e60fc11f2d3d2a3d4fe6e1c9001e29091bd4ccd5
USERS= git
GROUPS= git
Index: www/gitlab-pages/Makefile
===================================================================
--- www/gitlab-pages/Makefile
+++ www/gitlab-pages/Makefile
@@ -18,9 +18,9 @@
USE_GITLAB= yes
GL_ACCOUNT= gitlab-org
# Find this here: https://gitlab.com/gitlab-org/gitlab-pages/-/tags/
-GL_COMMIT= 9e21d85f07735fb9f64efdf56917a334e65dbb7a
+GL_TAGNAME= 9e21d85f07735fb9f64efdf56917a334e65dbb7a
-GO_BUILDFLAGS= -ldflags="-X 'main.VERSION=${PORTVERSION}' -X 'main.REVISION=${GL_COMMIT}'"
+GO_BUILDFLAGS= -ldflags="-X 'main.VERSION=${PORTVERSION}' -X 'main.REVISION=${GL_TAGNAME}'"
USE_RC_SUBR= gitlab_pages
Index: www/gitlab-workhorse/Makefile
===================================================================
--- www/gitlab-workhorse/Makefile
+++ www/gitlab-workhorse/Makefile
@@ -24,7 +24,7 @@
GL_ACCOUNT= gitlab-org
GL_PROJECT= gitlab-foss
# Find the commit hash here: https://gitlab.com/gitlab-org/gitlab-foss/-/tags
-GL_COMMIT= e60fc11f2d3d2a3d4fe6e1c9001e29091bd4ccd5
+GL_TAGNAME= e60fc11f2d3d2a3d4fe6e1c9001e29091bd4ccd5
# for go dependencies
# Gitlab hosts there dependencies on their own platform and not on go-proxy
Index: www/py-woob-qt/Makefile
===================================================================
--- www/py-woob-qt/Makefile
+++ www/py-woob-qt/Makefile
@@ -21,7 +21,7 @@
USE_GITLAB= yes
GL_ACCOUNT= woob
-GL_COMMIT= 958a79c2e5de4698afe34f960fc1698cf2de8ca5
+GL_TAGNAME= 958a79c2e5de4698afe34f960fc1698cf2de8ca5
BINARY_ALIAS= pyuic5=pyuic5-${PYTHON_VER}
Index: www/simple-web-server/Makefile
===================================================================
--- www/simple-web-server/Makefile
+++ www/simple-web-server/Makefile
@@ -16,7 +16,7 @@
USE_GITLAB= yes
GL_ACCOUNT= eidheim
GL_PROJECT= Simple-Web-Server
-GL_COMMIT= 0f8b26ff19d757db039d6f70e252219326cc3d8f
+GL_TAGNAME= 0f8b26ff19d757db039d6f70e252219326cc3d8f
NO_ARCH= yes
NO_BUILD= yes
Index: www/tt-rss/Makefile
===================================================================
--- www/tt-rss/Makefile
+++ www/tt-rss/Makefile
@@ -15,7 +15,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.tt-rss.org
-GL_COMMIT= 11946f0148d0b8a76ecc120fd9c1dc0b7fa04664
+GL_TAGNAME= 11946f0148d0b8a76ecc120fd9c1dc0b7fa04664
USE_PHP= ctype dom exif fileinfo filter iconv intl mbstring openssl \
pcntl pdo phar posix session simplexml tokenizer xml xmlwriter \
@@ -61,7 +61,7 @@
"! -name LICENSE ! -name .empty ! -name Jenkinsfile")
${RM} -r ${STAGEDIR}${WWWDIR}/debian
${INSTALL_DATA} ${WRKDIR}/httpd-tt-rss.conf ${STAGEDIR}${DATADIR}
- ${ECHO} "${OPSYS}:${PORTVERSION}:${GL_COMMIT:C/^(.{11}).*$/\1/W}}" > \
+ ${ECHO} "${OPSYS}:${PORTVERSION}:${GL_TAGNAME:C/^(.{11}).*$/\1/W}}" > \
"${STAGEDIR}${WWWDIR}/version_static.txt"
${RM} ${STAGEDIR}${WWWDIR}/config.php-dist
${INSTALL_DATA} ${WRKDIR}/config.php \
Index: x11-drivers/xf86-video-intel/Makefile
===================================================================
--- x11-drivers/xf86-video-intel/Makefile
+++ x11-drivers/xf86-video-intel/Makefile
@@ -1,6 +1,6 @@
PORTNAME= xf86-video-intel
DISTVERSION= 2.99.917-923
-DISTVERSIONSUFFIX= -g${GL_COMMIT:C/(.{12}).*/\1/}
+DISTVERSIONSUFFIX= -g${GL_TAGNAME:C/(.{12}).*/\1/}
PORTEPOCH= 1
CATEGORIES= x11-drivers
@@ -19,7 +19,7 @@
USES= cpe localbase xorg xorg-cat:driver
CPE_VENDOR= x
USE_GITLAB= yes
-GL_COMMIT= b74b67f0f321875492968f7097b9d6e82a66d7df
+GL_TAGNAME= b74b67f0f321875492968f7097b9d6e82a66d7df
USE_XORG= pciaccess pixman
CONFIGURE_ENV= ac_cv_header_sys_sysinfo_h=no # XXX ports/242236
CONFIGURE_ARGS= --with-builderstring="${DISTVERSIONFULL}"
Index: x11-fonts/ohsnap-otb/Makefile
===================================================================
--- x11-fonts/ohsnap-otb/Makefile
+++ x11-fonts/ohsnap-otb/Makefile
@@ -13,7 +13,7 @@
USE_GITLAB= yes
GL_ACCOUNT= rigoletto
-GL_COMMIT= c88223abc6fcb4c5970d8ed6c3887ed8a1ab0817
+GL_TAGNAME= c88223abc6fcb4c5970d8ed6c3887ed8a1ab0817
FONTS= ohsnap ohsnapu ohsnap.icons
NO_BUILD= yes
Index: x11-servers/xwayland-devel/Makefile
===================================================================
--- x11-servers/xwayland-devel/Makefile
+++ x11-servers/xwayland-devel/Makefile
@@ -1,7 +1,7 @@
PORTNAME= xwayland
DISTVERSIONPREFIX= xorg-server-
DISTVERSION= 21.0.99.1-478
-DISTVERSIONSUFFIX= -g${GL_COMMIT:C/(.{12}).*/\1/}
+DISTVERSIONSUFFIX= -g${GL_TAGNAME:C/(.{12}).*/\1/}
CATEGORIES= x11-servers
PKGNAMESUFFIX= -devel
@@ -40,7 +40,7 @@
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= xorg
GL_PROJECT= xserver
-GL_COMMIT= befef003d4690f236771d79abeccd5b8c7f8d7dc
+GL_TAGNAME= befef003d4690f236771d79abeccd5b8c7f8d7dc
GL_TUPLE= xorg/proto:xorgproto:766967322209f2dcb72e6a8edea0c651f586201d:xorgproto/subprojects/xorgproto
MESON_ARGS= -D${PORTNAME}=true \
-Dxorg=false \
Index: x11-themes/plata-theme/Makefile
===================================================================
--- x11-themes/plata-theme/Makefile
+++ x11-themes/plata-theme/Makefile
@@ -23,7 +23,7 @@
USE_GITLAB= yes
GL_ACCOUNT= tista500
-GL_COMMIT= 1dd0953f1d6a35777388d39f46e2428c038042be
+GL_TAGNAME= 1dd0953f1d6a35777388d39f46e2428c038042be
NO_ARCH= yes
Index: x11-toolkits/color-widgets-qt5/Makefile
===================================================================
--- x11-toolkits/color-widgets-qt5/Makefile
+++ x11-toolkits/color-widgets-qt5/Makefile
@@ -19,6 +19,6 @@
USE_GITLAB= yes
GL_ACCOUNT= mattia.basaglia
GL_PROJECT= Qt-Color-Widgets
-GL_COMMIT= f2eca13bbc836cec09daae02579f10d5e85e71e8
+GL_TAGNAME= f2eca13bbc836cec09daae02579f10d5e85e71e8
.include <bsd.port.mk>
Index: x11-toolkits/libdecor/Makefile
===================================================================
--- x11-toolkits/libdecor/Makefile
+++ x11-toolkits/libdecor/Makefile
@@ -18,7 +18,7 @@
USE_GNOME= cairo pango
USE_LDCONFIG= yes
GL_SITE= https://gitlab.freedesktop.org
-GL_COMMIT= 4db201134ab51950a1c673d77d7c4f2f7c7b48fd
+GL_TAGNAME= 4db201134ab51950a1c673d77d7c4f2f7c7b48fd
MESON_ARGS= -Ddemo=false
OPTIONS_DEFINE= DBUS
Index: x11-toolkits/libhandy0/Makefile
===================================================================
--- x11-toolkits/libhandy0/Makefile
+++ x11-toolkits/libhandy0/Makefile
@@ -21,6 +21,6 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.gnome.org/
GL_ACCOUNT= GNOME
-GL_COMMIT= 7a193d7692c9c76a1a94f17c4d30b585f77d177c
+GL_TAGNAME= 7a193d7692c9c76a1a94f17c4d30b585f77d177c
.include <bsd.port.mk>
Index: x11-toolkits/wlroots-devel/Makefile
===================================================================
--- x11-toolkits/wlroots-devel/Makefile
+++ x11-toolkits/wlroots-devel/Makefile
@@ -1,6 +1,6 @@
PORTNAME= wlroots
DISTVERSION= 0.16.0-643
-DISTVERSIONSUFFIX= -g${GL_COMMIT:C/(.{12}).*/\1/}
+DISTVERSIONSUFFIX= -g${GL_TAGNAME:C/(.{12}).*/\1/}
CATEGORIES= x11-toolkits
PKGNAMESUFFIX= -devel
@@ -27,7 +27,7 @@
USE_XORG= pixman
USE_LDCONFIG= yes
GL_SITE= https://gitlab.freedesktop.org
-GL_COMMIT= 214df8eda07d18b032abfcf525c8344e077c0c7e
+GL_TAGNAME= 214df8eda07d18b032abfcf525c8344e077c0c7e
MESON_ARGS= -Dexamples=false -Dbackends=${BACKENDS:ts,} -Drenderers=${RENDERERS:ts,}
.ifdef PKGNAMESUFFIX
Index: x11-toolkits/wlroots/Makefile
===================================================================
--- x11-toolkits/wlroots/Makefile
+++ x11-toolkits/wlroots/Makefile
@@ -1,6 +1,6 @@
PORTNAME= wlroots
DISTVERSION= 0.16.2
-DISTVERSIONSUFFIX= -g${GL_COMMIT:C/(.{12}).*/\1/}
+DISTVERSIONSUFFIX= -g${GL_TAGNAME:C/(.{12}).*/\1/}
PORTREVISION= 1
CATEGORIES= x11-toolkits
@@ -30,7 +30,7 @@
USE_XORG= pixman
USE_LDCONFIG= yes
GL_SITE= https://gitlab.freedesktop.org
-GL_COMMIT= 0a32b5a74db06a27bee55a47205951bb277a9657
+GL_TAGNAME= 0a32b5a74db06a27bee55a47205951bb277a9657
MESON_ARGS= -Dexamples=false -Dbackends=${BACKENDS:ts,} -Drenderers=${RENDERERS:ts,}
OPTIONS_DEFINE= DRM OPENGL VULKAN X11
Index: x11-toolkits/wlroots015/Makefile
===================================================================
--- x11-toolkits/wlroots015/Makefile
+++ x11-toolkits/wlroots015/Makefile
@@ -1,6 +1,6 @@
PORTNAME= wlroots
DISTVERSION= 0.15.1
-DISTVERSIONSUFFIX= -g${GL_COMMIT:C/(.{12}).*/\1/}
+DISTVERSIONSUFFIX= -g${GL_TAGNAME:C/(.{12}).*/\1/}
PORTREVISION= 2
CATEGORIES= x11-toolkits
PKGNAMESUFFIX= 015
@@ -36,7 +36,7 @@
USE_XORG= pixman
USE_LDCONFIG= yes
GL_SITE= https://gitlab.freedesktop.org
-GL_COMMIT= 29938b74251e826f3778f6bf9c54974a30488cc1
+GL_TAGNAME= 29938b74251e826f3778f6bf9c54974a30488cc1
MESON_ARGS= -Dexamples=false -Dbackends=${BACKENDS:ts,} -Drenderers=${RENDERERS:ts,}
.ifdef PKGNAMESUFFIX
Index: x11-wm/kwinft/Makefile
===================================================================
--- x11-wm/kwinft/Makefile
+++ x11-wm/kwinft/Makefile
@@ -41,7 +41,7 @@
multimedia:run quickcontrols2:run widgets x11extras
USE_XORG= pixman x11 xcb xi
SHEBANG_FILES= effect/effects/*.py kconf_update/*.py kconf_update/*.pl
-GL_COMMIT= 6d47e3aebd58ea1e7556c67e0f7870e874922f7c
+GL_TAGNAME= 6d47e3aebd58ea1e7556c67e0f7870e874922f7c
PLIST_SUB= VERSION=${PORTVERSION}
LDFLAGS+= -Wl,--as-needed # GL, ICE/SM/Xext, glib, intl, Qt5*, KF5*
Index: x11-wm/phoc/Makefile
===================================================================
--- x11-wm/phoc/Makefile
+++ x11-wm/phoc/Makefile
@@ -27,7 +27,7 @@
USE_XORG= pixman xcb
GL_SITE= https://gitlab.gnome.org
GL_ACCOUNT= World/Phosh
-GL_COMMIT= e2848b26104200e2f7fff3d29f8eb7365313f474
+GL_TAGNAME= e2848b26104200e2f7fff3d29f8eb7365313f474
GL_TUPLE= https://gitlab.gnome.org:guidog:gmobile:ff854988bff80f2d4c1181ccf3c94b032603b6f9:gmobile/subprojects/gmobile
SHEBANG_FILES= build-aux/post_install.py
MESON_ARGS= -Dembed-wlroots=disabled
Index: x11/appmenu-registrar/Makefile
===================================================================
--- x11/appmenu-registrar/Makefile
+++ x11/appmenu-registrar/Makefile
@@ -30,6 +30,6 @@
USE_GITLAB= yes
GL_ACCOUNT= vala-panel-project
GL_PROJECT= vala-panel-appmenu
-GL_COMMIT= 4e362c22ab3a23c98f13fb379c782786ee057cf6
+GL_TAGNAME= 4e362c22ab3a23c98f13fb379c782786ee057cf6
.include <bsd.port.mk>
Index: x11/arandr/Makefile
===================================================================
--- x11/arandr/Makefile
+++ x11/arandr/Makefile
@@ -15,7 +15,7 @@
USES= gettext gnome python
USE_GITLAB= yes
-GL_COMMIT= 43faec00c0feca3f00b0acbae048de14f02c6d21
+GL_TAGNAME= 43faec00c0feca3f00b0acbae048de14f02c6d21
USE_GNOME= gtk30 pygobject3
USE_PYTHON= distutils noflavors py3kplist
Index: x11/coreterminal/Makefile
===================================================================
--- x11/coreterminal/Makefile
+++ x11/coreterminal/Makefile
@@ -19,7 +19,7 @@
USE_GITLAB= yes
GL_ACCOUNT= CuboCore
-GL_COMMIT= 679b317d1612dcdd54596ba5bf313d60bebc808e
+GL_TAGNAME= 679b317d1612dcdd54596ba5bf313d60bebc808e
PLIST_FILES= bin/coreterminal \
share/applications/org.cubocore.CoreTerminal.desktop \
Index: x11/disman/Makefile
===================================================================
--- x11/disman/Makefile
+++ x11/disman/Makefile
@@ -18,7 +18,7 @@
USE_LDCONFIG= yes
USE_QT= qmake:build buildtools:build core dbus gui
GL_ACCOUNT= kwinft
-GL_COMMIT= f38bb9d31ae5b7fe518ff3f20c2873bf680abf9f
+GL_TAGNAME= f38bb9d31ae5b7fe518ff3f20c2873bf680abf9f
PLIST_SUB= VERSION=${PORTVERSION}
OPTIONS_DEFINE= WAYLAND X11
Index: x11/evtest/Makefile
===================================================================
--- x11/evtest/Makefile
+++ x11/evtest/Makefile
@@ -17,7 +17,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.freedesktop.org/
GL_ACCOUNT= libevdev
-GL_COMMIT= da347a8f88d2e5729dd12d61ee9743f902065b55
+GL_TAGNAME= da347a8f88d2e5729dd12d61ee9743f902065b55
CFLAGS+= -DPACKAGE_VERSION=${PKGVERSION}
Index: x11/gtk-app-menu/Makefile
===================================================================
--- x11/gtk-app-menu/Makefile
+++ x11/gtk-app-menu/Makefile
@@ -28,7 +28,7 @@
USE_GITLAB= yes
GL_ACCOUNT= vala-panel-project
GL_PROJECT= vala-panel-appmenu
-GL_COMMIT= 4e362c22ab3a23c98f13fb379c782786ee057cf6
+GL_TAGNAME= 4e362c22ab3a23c98f13fb379c782786ee057cf6
USE_GNOME= gtk30 glib20 gtk20 gdkpixbuf2
GLIB_SCHEMAS= org.appmenu.gtk-module.gschema.xml
Index: x11/kdisplay/Makefile
===================================================================
--- x11/kdisplay/Makefile
+++ x11/kdisplay/Makefile
@@ -24,7 +24,7 @@
USE_QT= qmake:build buildtools:build core dbus declarative gui \
sensors widgets
GL_ACCOUNT= kwinft
-GL_COMMIT= 9a4e585dfa1324310ee9b96ea58173e84a815843
+GL_TAGNAME= 9a4e585dfa1324310ee9b96ea58173e84a815843
PLIST_SUB= VERSION=${PORTVERSION}
LDFLAGS+= -Wl,--as-needed # Qt5*, KF5*
Index: x11/lemonbar-xft/Makefile
===================================================================
--- x11/lemonbar-xft/Makefile
+++ x11/lemonbar-xft/Makefile
@@ -24,6 +24,6 @@
USE_GITLAB= yes
GL_ACCOUNT= protesilaos
-GL_COMMIT= 0042efd2ec1477ab96eb044ebba72a10aefff21f
+GL_TAGNAME= 0042efd2ec1477ab96eb044ebba72a10aefff21f
.include <bsd.port.mk>
Index: x11/libei/Makefile
===================================================================
--- x11/libei/Makefile
+++ x11/libei/Makefile
@@ -26,7 +26,7 @@
GH_TUPLE= nemequ:munit:v0.2.0-38-gfbbdf14:munit/subprojects/munit
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= libinput
-GL_COMMIT= 661f7665d793e389a644d9082540554d0f861137
+GL_TAGNAME= 661f7665d793e389a644d9082540554d0f861137
BINARY_ALIAS= python3=${PYTHON_CMD}
MESON_ARGS= -Dsd-bus-provider=basu -Dtests=disabled
Index: x11/libinput/Makefile
===================================================================
--- x11/libinput/Makefile
+++ x11/libinput/Makefile
@@ -21,7 +21,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.freedesktop.org
-GL_COMMIT= 0b005eb64b12603e65a620a77c67ec62fd03f413
+GL_TAGNAME= 0b005eb64b12603e65a620a77c67ec62fd03f413
CPE_VENDOR= freedesktop
Index: x11/mate-applet-appmenu/Makefile
===================================================================
--- x11/mate-applet-appmenu/Makefile
+++ x11/mate-applet-appmenu/Makefile
@@ -34,6 +34,6 @@
USE_GITLAB= yes
GL_ACCOUNT= vala-panel-project
GL_PROJECT= vala-panel-appmenu
-GL_COMMIT= 4e362c22ab3a23c98f13fb379c782786ee057cf6
+GL_TAGNAME= 4e362c22ab3a23c98f13fb379c782786ee057cf6
.include <bsd.port.mk>
Index: x11/openrgb/Makefile
===================================================================
--- x11/openrgb/Makefile
+++ x11/openrgb/Makefile
@@ -23,7 +23,7 @@
USE_GITLAB= yes
GL_ACCOUNT= CalcProgrammer1
GL_PROJECT= OpenRGB
-GL_COMMIT= fb88964b8e514cdf4eb22da314e13f8db06a3636
+GL_TAGNAME= fb88964b8e514cdf4eb22da314e13f8db06a3636
USE_GL= gl
USE_QT= buildtools core gui linguisttools widgets
Index: x11/salut/Makefile
===================================================================
--- x11/salut/Makefile
+++ x11/salut/Makefile
@@ -16,7 +16,7 @@
USES= cargo
USE_GITLAB= yes
GL_ACCOUNT= snakedye
-GL_COMMIT= bb53391bac0c379dffdddb3cb35b423a8738a962
+GL_TAGNAME= bb53391bac0c379dffdddb3cb35b423a8738a962
PLIST_FILES= bin/${PORTNAME}
.include <bsd.port.mk>
Index: x11/shikane/Makefile
===================================================================
--- x11/shikane/Makefile
+++ x11/shikane/Makefile
@@ -13,7 +13,7 @@
USES= cargo
USE_GITLAB= yes
GL_ACCOUNT= w0lff
-GL_COMMIT= 5a25f501b9ba13c4379ecf6ed14dae4c8801d78f
+GL_TAGNAME= 5a25f501b9ba13c4379ecf6ed14dae4c8801d78f
PLIST_FILES= bin/${PORTNAME}
OPTIONS_DEFINE= MANPAGES
Index: x11/squeekboard/Makefile
===================================================================
--- x11/squeekboard/Makefile
+++ x11/squeekboard/Makefile
@@ -27,7 +27,7 @@
USE_GNOME= cairo gdkpixbuf2 gnomedesktop3 gtk30
GL_SITE= https://gitlab.gnome.org
GL_ACCOUNT= World/Phosh
-GL_COMMIT= 1fac218c7077e5c42882330a7f6ddd6d63f2690f
+GL_TAGNAME= 1fac218c7077e5c42882330a7f6ddd6d63f2690f
SHEBANG_FILES= tools/entry.py
MAKE_ENV= ${CARGO_ENV}
CARGO_BUILD= no
Index: x11/tint/Makefile
===================================================================
--- x11/tint/Makefile
+++ x11/tint/Makefile
@@ -30,6 +30,6 @@
USE_GITLAB= yes
GL_ACCOUNT= o9000
-GL_COMMIT= 78313502d3b26c217f5583a23ef571bc9e0edc45
+GL_TAGNAME= 78313502d3b26c217f5583a23ef571bc9e0edc45
.include <bsd.port.mk>
Index: x11/virglrenderer/Makefile
===================================================================
--- x11/virglrenderer/Makefile
+++ x11/virglrenderer/Makefile
@@ -22,7 +22,7 @@
USE_GL= gbm
GL_SITE= https://gitlab.freedesktop.org
GL_ACCOUNT= virgl
-GL_COMMIT= 7d204f3927be65fb3365dce01dbcd04d447a4985
+GL_TAGNAME= 7d204f3927be65fb3365dce01dbcd04d447a4985
BINARY_ALIAS= python3=${PYTHON_CMD}
Index: x11/virtboard/Makefile
===================================================================
--- x11/virtboard/Makefile
+++ x11/virtboard/Makefile
@@ -30,7 +30,7 @@
USE_XORG= pixman
GL_SITE= https://source.puri.sm
GL_ACCOUNT= Librem5
-GL_COMMIT= 1d30b07870bf6138395d6529ab496e321b8b3938
+GL_TAGNAME= 1d30b07870bf6138395d6529ab496e321b8b3938
PLIST_FILES= bin/${PORTNAME} \
share/applications/sm.puri.Virtboard.desktop \
share/dbus-1/interfaces/sm.puri.OSK0.xml
Index: x11/x-on-resize/Makefile
===================================================================
--- x11/x-on-resize/Makefile
+++ x11/x-on-resize/Makefile
@@ -16,7 +16,7 @@
USES= autoreconf pkgconfig xorg
USE_GITLAB= yes
GL_ACCOUNT= 0mp
-GL_COMMIT= f59c9247e682b95f4091def7575490466f131131
+GL_TAGNAME= f59c9247e682b95f4091def7575490466f131131
USE_XORG= x11 xorg-macros xrandr
Index: x11/xfce4-appmenu-plugin/Makefile
===================================================================
--- x11/xfce4-appmenu-plugin/Makefile
+++ x11/xfce4-appmenu-plugin/Makefile
@@ -33,6 +33,6 @@
USE_GITLAB= yes
GL_ACCOUNT= vala-panel-project
GL_PROJECT= vala-panel-appmenu
-GL_COMMIT= 4e362c22ab3a23c98f13fb379c782786ee057cf6
+GL_TAGNAME= 4e362c22ab3a23c98f13fb379c782786ee057cf6
.include <bsd.port.mk>
Index: x11/xfce4-docklike-plugin/Makefile
===================================================================
--- x11/xfce4-docklike-plugin/Makefile
+++ x11/xfce4-docklike-plugin/Makefile
@@ -20,7 +20,7 @@
USE_GITLAB= yes
GL_SITE= https://gitlab.xfce.org
GL_ACCOUNT= panel-plugins
-GL_COMMIT= e6831250e5ca792f31ef4b493b1a92020fe1ab6b
+GL_TAGNAME= e6831250e5ca792f31ef4b493b1a92020fe1ab6b
GNU_CONFIGURE= yes
CONFIGURE_SCRIPT= autogen.sh
Index: x11/xrestop/Makefile
===================================================================
--- x11/xrestop/Makefile
+++ x11/xrestop/Makefile
@@ -11,7 +11,7 @@
USE_XORG= x11 xext xrender xt xres xorgproto
GNU_CONFIGURE= yes
USE_GITLAB= yes
-GL_COMMIT= 5e3d606e9e055c2442e90285b6fe7ffdc2f721b8
+GL_TAGNAME= 5e3d606e9e055c2442e90285b6fe7ffdc2f721b8
CONFIGURE_ENV= XLIBS="-L${LOCALBASE}/lib -lX11"
LDFLAGS+= -L${LOCALBASE}/lib

File Metadata

Mime Type
text/plain
Expires
Tue, Feb 11, 5:11 PM (12 h, 57 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
16598451
Default Alt Text
D37077.id124541.diff (141 KB)

Event Timeline