Index: CHANGES =================================================================== --- CHANGES +++ CHANGES @@ -10,6 +10,19 @@ All ports committers are allowed to commit to this file. +20221022: +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. + 20221014: AUTHOR: adamw@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 @@ -1704,7 +1704,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 @@ -2945,12 +2945,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 @@ -292,10 +292,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 @@ -429,6 +429,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 @@ -443,34 +448,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} @@ -478,8 +485,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) @@ -503,18 +512,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} @@ -536,12 +551,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/feedbackd/Makefile =================================================================== --- accessibility/feedbackd/Makefile +++ accessibility/feedbackd/Makefile @@ -17,7 +17,7 @@ USE_LDCONFIG= yes GL_SITE= https://source.puri.sm GL_ACCOUNT= Librem5 -GL_COMMIT= 2e081602f627505e566cc0bdb6cd96c7642d8b65 +GL_TAGNAME= 2e081602f627505e566cc0bdb6cd96c7642d8b65 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 Index: audio/amberol/Makefile =================================================================== --- audio/amberol/Makefile +++ audio/amberol/Makefile @@ -23,7 +23,7 @@ USE_GSTREAMER= bad good libav GL_SITE= https://gitlab.gnome.org GL_ACCOUNT= World -GL_COMMIT= 2b2fc127f63acf69f795b657d4721188bd5d145e +GL_TAGNAME= 2b2fc127f63acf69f795b657d4721188bd5d145e MAKE_ENV= ${CARGO_ENV} GLIB_SCHEMAS= io.bassi.Amberol.gschema.xml 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= 00423757b1f266f9164eff35e69b6e7d4d967f41 +GL_TAGNAME= 00423757b1f266f9164eff35e69b6e7d4d967f41 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= 26fb83ff4ca32bf801260c3e32af6dcef19f5e59 +GL_TAGNAME= 26fb83ff4ca32bf801260c3e32af6dcef19f5e59 SHEBANG_FILES= build-aux/meson_post_install.py MAKE_ENV= ${CARGO_ENV} GLIB_SCHEMAS= com.adrienplazas.Metronome.gschema.xml Index: audio/gnome-podcasts/Makefile =================================================================== --- audio/gnome-podcasts/Makefile +++ audio/gnome-podcasts/Makefile @@ -24,7 +24,7 @@ USE_GSTREAMER= bad good libav GL_SITE= https://gitlab.gnome.org GL_ACCOUNT= World -GL_COMMIT= c86f7bfdef7692bbf20f315a90450321f6ca9ce7 +GL_TAGNAME= c86f7bfdef7692bbf20f315a90450321f6ca9ce7 SHEBANG_FILES= scripts/cargo.sh scripts/compile-gschema.py MAKE_ENV= ${CARGO_ENV} GLIB_SCHEMAS= org.gnome.Podcasts.gschema.xml Index: audio/lollypop/Makefile =================================================================== --- audio/lollypop/Makefile +++ audio/lollypop/Makefile @@ -27,7 +27,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,6 +22,6 @@ USE_GITLAB= yes GL_ACCOUNT= OpenMusicKontrollers GL_PROJECT= ${PORTNAME}.lv2 -GL_COMMIT= f4aa620fc8d77418856581a6a955192af15b3860 +GL_TAGNAME= f4aa620fc8d77418856581a6a955192af15b3860 .include Index: audio/sayonara/Makefile =================================================================== --- audio/sayonara/Makefile +++ audio/sayonara/Makefile @@ -22,7 +22,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 @@ -19,7 +19,7 @@ GL_SITE= https://gitlab.gnome.org GL_ACCOUNT= World GL_PROJECT= Shortwave -GL_COMMIT= de062d5f2a2f395bb2c3f8149793d4203593e912 +GL_TAGNAME= de062d5f2a2f395bb2c3f8149793d4203593e912 MAKE_ENV= ${CARGO_ENV} GLIB_SCHEMAS= de.haeckerfelix.Shortwave.gschema.xml Index: cad/kicad-devel/Makefile =================================================================== --- cad/kicad-devel/Makefile +++ cad/kicad-devel/Makefile @@ -40,7 +40,7 @@ USE_GITLAB= yes GL_ACCOUNT= kicad/code GL_PROJECT= kicad -GL_COMMIT= ${GIT_SRC_HASH} +GL_TAGNAME= ${GIT_SRC_HASH} USE_GL= gl glew glu glut USE_WX= 3.1 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= 0 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= 0 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= 0 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= 0 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= c7b1b58765bf5c99822025e77d0bc13cea82c719 +GL_TAGNAME= c7b1b58765bf5c99822025e77d0bc13cea82c719 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 @@ -28,7 +28,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 @@ -23,7 +23,7 @@ GL_SITE= https://gitlab.gnome.org GL_ACCOUNT= World GL_PROJECT= Health -GL_COMMIT= d664384370bb55f0e46a78da094c567a5a7e97c6 +GL_TAGNAME= d664384370bb55f0e46a78da094c567a5a7e97c6 MAKE_ENV= ${CARGO_ENV} GLIB_SCHEMAS= dev.Cogitri.Health.gschema.xml 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 Index: deskutils/meteo/Makefile =================================================================== --- deskutils/meteo/Makefile +++ deskutils/meteo/Makefile @@ -20,7 +20,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 @@ -21,7 +21,7 @@ GL_SITE= https://gitlab.gnome.org GL_ACCOUNT= World GL_PROJECT= Solanum -GL_COMMIT= 3f84b1d0c46fe1a3daef2940b1d0747222023984 +GL_TAGNAME= 3f84b1d0c46fe1a3daef2940b1d0747222023984 SHEBANG_FILES= build-aux/meson/postinstall.py MAKE_ENV= ${CARGO_ENV} GLIB_SCHEMAS= org.gnome.Solanum.gschema.xml 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 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= 75a6d95988736ec0471d22ceb07579c0cedac2ad +GL_TAGNAME= 75a6d95988736ec0471d22ceb07579c0cedac2ad 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= 968e494d54862d1672ad439a6d02ec791976c004 +GL_TAGNAME= 968e494d54862d1672ad439a6d02ec791976c004 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 @@ -21,7 +21,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 Index: devel/gitaly/Makefile =================================================================== --- devel/gitaly/Makefile +++ devel/gitaly/Makefile @@ -52,7 +52,7 @@ USE_GITLAB= yes GL_ACCOUNT= gitlab-org # Find this here: https://gitlab.com/gitlab-org/gitaly/-/tags -GL_COMMIT= 32daa20c2ee21928898610d83a9175027d3918dc +GL_TAGNAME= 32daa20c2ee21928898610d83a9175027d3918dc # 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 @@ -29,7 +29,7 @@ # Find tags here: # https://gitlab.com/gitlab-org/gitlab-runner/tags GL_ACCOUNT= gitlab-org -GL_COMMIT= f0a95a76c6db80232ae46716938e1b3c27950b3b +GL_TAGNAME= f0a95a76c6db80232ae46716938e1b3c27950b3b GITBRANCH= 14-5-stable # https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-freebsd-amd64 BUILT= 2021-11-21T16:54:14+0000 @@ -169,7 +169,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=${BUILT} \ -X gitlab.com/gitlab-org/gitlab-runner/common.BRANCH=${GITBRANCH} \ -s -w" Index: devel/gitlab-shell/Makefile =================================================================== --- devel/gitlab-shell/Makefile +++ devel/gitlab-shell/Makefile @@ -14,7 +14,7 @@ USE_GITLAB= yes GL_ACCOUNT= gitlab-org # Find the commit hash here: https://gitlab.com/gitlab-org/gitlab-shell/tags -GL_COMMIT= 28188013f53673b0870e44b082b93d855082be49 +GL_TAGNAME= 28188013f53673b0870e44b082b93d855082be49 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:3.5+,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 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= 827fbfed7dab0ca339998ca6cdcffb328246d83b +GL_TAGNAME= 827fbfed7dab0ca339998ca6cdcffb328246d83b 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 @@ -21,7 +21,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= 6df7e8756882f7d7f28f662011ee72f21746c580 +GL_TAGNAME= 6df7e8756882f7d7f28f662011ee72f21746c580 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/qemu-devel/Makefile =================================================================== --- emulators/qemu-devel/Makefile +++ emulators/qemu-devel/Makefile @@ -30,7 +30,7 @@ USE_PYTHON= distutils noflavors USE_XORG= pixman -GL_COMMIT= 09ed077d7fae5f825e18ff9a2004dcdd1b165edb +GL_TAGNAME= 09ed077d7fae5f825e18ff9a2004dcdd1b165edb GL_TUPLE= qemu-project:keycodemapdb:e15649b83a78f89f57205927022115536d2c1698:keycodemapdb/ui/keycodemapdb \ qemu-project:dtc:e37c25677dc946a025002a394172788b3169b3ce:dtc/dtc \ qemu-project:meson:3fbcff1c2722988d05c5248f7ab54c53001b1ee1:meson/meson \ 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= fa108b25a92b0e037723debc4388a300e737dc2d +GL_TAGNAME= fa108b25a92b0e037723debc4388a300e737dc2d .include 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 @@ USES= compiler:c++17-lang gettext gmake lua:52 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 @@ -24,7 +24,7 @@ USE_GITLAB= yes GL_ACCOUNT= solarus-games -GL_COMMIT= e541e1312c242bff10aa1fb84a7eb8b6cb8504ba +GL_TAGNAME= e541e1312c242bff10aa1fb84a7eb8b6cb8504ba CMAKE_ARGS+= -DSOLARUS_USE_LUAJIT=OFF USE_SDL= sdl2 ttf2 image2 Index: games/solarus/Makefile =================================================================== --- games/solarus/Makefile +++ games/solarus/Makefile @@ -22,7 +22,7 @@ USE_GITLAB= yes GL_ACCOUNT= solarus-games -GL_COMMIT= f43727b232b3ed13d98440a845e2a29e470e4f0d +GL_TAGNAME= f43727b232b3ed13d98440a845e2a29e470e4f0d MAKE_ARGS+= DESTDIR=${STAGEDIR} USE_QT= buildtools:build core gui linguisttools:build widgets Index: games/toppler/Makefile =================================================================== --- games/toppler/Makefile +++ games/toppler/Makefile @@ -18,7 +18,7 @@ USES= gmake sdl pkgconfig USE_GITLAB= yes GL_ACCOUNT= roever -GL_COMMIT= 5e3e581bb7b58098f54df9b634c7bd4a23ba66b5 +GL_TAGNAME= 5e3e581bb7b58098f54df9b634c7bd4a23ba66b5 USE_SDL= sdl2 image2 mixer2 PORTDOCS= * Index: games/veloren/Makefile =================================================================== --- games/veloren/Makefile +++ games/veloren/Makefile @@ -27,7 +27,7 @@ USES= cargo python:3.4+,build xorg USE_XORG= xcb USE_GITLAB= yes -GL_COMMIT= 34ae5b9df73f367fa34350337ebba71711f48b86 +GL_TAGNAME= 34ae5b9df73f367fa34350337ebba71711f48b86 CARGO_ENV= VELOREN_USERDATA_STRATEGY=system SHADERC_LIB_DIR="${LOCALBASE}/lib" PLIST_FILES= bin/${PORTNAME}-server-cli \ bin/${PORTNAME}-voxygen \ 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= 4f4d727a9757e7ef6bf25ad7d289066990a1face +GL_TAGNAME= 4f4d727a9757e7ef6bf25ad7d289066990a1face 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= edae2efd428623ac22aec06bdec572fc45c368f3 +GL_TAGNAME= edae2efd428623ac22aec06bdec572fc45c368f3 PLIST_FILES= bin/fig2sxd man/man1/fig2sxd.1.gz Index: graphics/gcolor3/Makefile =================================================================== --- graphics/gcolor3/Makefile +++ graphics/gcolor3/Makefile @@ -19,7 +19,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 @@ -19,7 +19,7 @@ USE_GITLAB= yes GL_ACCOUNT= mattbas -GL_COMMIT= 91219dc52ca909118e4a756629ea779dde5577c3 +GL_TAGNAME= 91219dc52ca909118e4a756629ea779dde5577c3 GL_TUPLE= mattbas:CMake-Lib:8af80b5668dbc6a0210e09a969a1b43fc99f39ba:mattbas_CMake_Lib/cmake \ mattbas:Qt-Color-Widgets:091c29463bbeec1a672598af4597055ba24842cd: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= ce6dcb8495b65afa74bfc7602cce42c8fd667582 +GL_TAGNAME= ce6dcb8495b65afa74bfc7602cce42c8fd667582 WRKSRC_SUBDIR= src/xdemos PLIST_FILES= bin/glxgears \ bin/glxinfo \ 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= 3bf6ee1a02334386d87cfe356c3bfb0b24e1fed8 +GL_TAGNAME= 3bf6ee1a02334386d87cfe356c3bfb0b24e1fed8 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 @@ -21,7 +21,7 @@ USE_GITLAB= yes GL_SITE= https://gitlab.freedesktop.org GL_ACCOUNT= glvnd -GL_COMMIT= 8f3c5b17a21e2222ab3e5fd38870b915815aca49 +GL_TAGNAME= 8f3c5b17a21e2222ab3e5fd38870b915815aca49 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= c4488eeff94f511aa4d93ef93a042e471c1b2705 +GL_TAGNAME= c4488eeff94f511aa4d93ef93a042e471c1b2705 .include 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/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= 39ef1464cc5e706a30f317684362cbb7bb54753f +GL_TAGNAME= 39ef1464cc5e706a30f317684362cbb7bb54753f 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= df61726a0955369f07399e8115454013b887903e +GL_TAGNAME= df61726a0955369f07399e8115454013b887903e 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 @@ -23,7 +23,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 @@ -16,7 +16,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 @@ -19,7 +19,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 @@ -25,7 +25,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 @@ -21,7 +21,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 @@ -21,7 +21,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 @@ -18,7 +18,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 @@ -20,7 +20,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 @@ -24,7 +24,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 @@ -22,7 +22,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/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/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/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 @@ -19,7 +19,7 @@ USE_GITLAB= yes GL_ACCOUNT= smart-pattern -GL_COMMIT= 679e68a15bb1fa247140171825aa50e0f6aaea06 +GL_TAGNAME= 679e68a15bb1fa247140171825aa50e0f6aaea06 DOS2UNIX_FILES= src/libs/vgeometry/vellipticalarc.cpp 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= 99172b11470776177939c3d2bc366fe8d904eab7 +GL_TAGNAME= 99172b11470776177939c3d2bc366fe8d904eab7 LDFLAGS_i386= -Wl,-z,notext OPTIONS_DEFINE= SDL TEST Index: multimedia/gstreamer1-plugins-rust/Makefile =================================================================== --- multimedia/gstreamer1-plugins-rust/Makefile +++ multimedia/gstreamer1-plugins-rust/Makefile @@ -22,7 +22,7 @@ GL_SITE= https://gitlab.freedesktop.org GL_ACCOUNT= gstreamer GL_PROJECT= gst-plugins-rs -GL_COMMIT= 18c9bd0355e0fc1ab20072d805807112945ad5bb +GL_TAGNAME= 18c9bd0355e0fc1ab20072d805807112945ad5bb MAKE_ENV= ${CARGO_ENV} CARGO_CRATES= adler-1.0.2 \ 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= 91b94efb2809e83d9bf041d8575b32f234dfef27 +GL_TAGNAME= 91b94efb2809e83d9bf041d8575b32f234dfef27 WRKSRC_SUBDIR= gstreamer-plugin PLIST_FILES= lib/gstreamer-1.0/libgstsvtav1enc.so Index: multimedia/helvum/Makefile =================================================================== --- multimedia/helvum/Makefile +++ multimedia/helvum/Makefile @@ -19,7 +19,7 @@ USE_GNOME= cairo gtk40 GL_SITE= https://gitlab.freedesktop.org GL_ACCOUNT= ryuukyu -GL_COMMIT= 094681637ec8f9f2acdb993230e10da88aa3fedb +GL_TAGNAME= 094681637ec8f9f2acdb993230e10da88aa3fedb 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 INSTALLS_ICONS= 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 @@ -19,7 +19,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 @@ -17,7 +17,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 @@ -21,7 +21,7 @@ USE_GITLAB= yes GL_SITE= https://gitlab.linphone.org/BC GL_ACCOUNT= public -GL_COMMIT= c09d2652245f0d660f427c1cf5ae97709b504803 +GL_TAGNAME= c09d2652245f0d660f427c1cf5ae97709b504803 CMAKE_ARGS= -DENABLE_STATIC=NO PLIST_FILES= lib/mediastreamer/plugins/libmsopenh264.so Index: multimedia/qpwgraph/Makefile =================================================================== --- multimedia/qpwgraph/Makefile +++ multimedia/qpwgraph/Makefile @@ -17,7 +17,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= 91b94efb2809e83d9bf041d8575b32f234dfef27 +GL_TAGNAME= 91b94efb2809e83d9bf041d8575b32f234dfef27 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/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= e8cd85fee41c5f0d92b674fd30f62b6485dd146f +GL_TAGNAME= e8cd85fee41c5f0d92b674fd30f62b6485dd146f CARGO_CRATES= adler-1.0.2 \ adler32-1.2.0 \ ahash-0.7.6 \ 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 @@ -14,7 +14,7 @@ USES= localbase meson pkgconfig USE_GITLAB= yes GL_ACCOUNT= ipcalc -GL_COMMIT= 8dfa28013234755ef3ce3e157b3940eeaaa2b7df +GL_TAGNAME= 8dfa28013234755ef3ce3e157b3940eeaaa2b7df CONFLICTS_INSTALL= ipcalc Index: net-mgmt/nagiosql/Makefile =================================================================== --- net-mgmt/nagiosql/Makefile +++ net-mgmt/nagiosql/Makefile @@ -18,7 +18,7 @@ USE_GITLAB= yes GL_ACCOUNT= wizonet -GL_COMMIT= 365d4e0b5edc623b12ea96e8002e8ac66aad6aac +GL_TAGNAME= 365d4e0b5edc623b12ea96e8002e8ac66aad6aac USERS?= nagios GROUPS?= nagios Index: net/bctoolbox/Makefile =================================================================== --- net/bctoolbox/Makefile +++ net/bctoolbox/Makefile @@ -18,7 +18,7 @@ USE_GITLAB= yes GL_SITE= https://gitlab.linphone.org/BC GL_ACCOUNT= public -GL_COMMIT= 32ea3c32d3352400d49d89fcbc36ca7006a532d9 +GL_TAGNAME= 32ea3c32d3352400d49d89fcbc36ca7006a532d9 USE_LDCONFIG= yes CMAKE_ARGS= -DENABLE_STATIC=NO -DENABLE_STRICT=NO \ Index: net/belle-sip/Makefile =================================================================== --- net/belle-sip/Makefile +++ net/belle-sip/Makefile @@ -19,7 +19,7 @@ USE_GITLAB= yes GL_SITE= https://gitlab.linphone.org/BC GL_ACCOUNT= public -GL_COMMIT= 6cfa9cf048905756bb9e729ccc029ad19b36ca76 +GL_TAGNAME= 6cfa9cf048905756bb9e729ccc029ad19b36ca76 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 @@ -21,7 +21,7 @@ GO_BUILDFLAGS= -tags="tracer_static,tracer_static_jaeger" \ -ldflags=" \ -X 'gitlab.com/gitlab-org/cluster-integration/gitlab-agent/v15/cmd.Version=v${PORTVERSION}' \ - -X 'gitlab.com/gitlab-org/cluster-integration/gitlab-agent/v15/cmd.Commit=${GL_COMMIT:C/^(........).*/\1/}' \ + -X 'gitlab.com/gitlab-org/cluster-integration/gitlab-agent/v15/cmd.Commit=${GL_TAGNAME:C/^(........).*/\1/}' \ -X 'gitlab.com/gitlab-org/cluster-integration/gitlab-agent/v15/cmd.BuildTime=${_BUILD_DATE}'" GO_TARGET= ./cmd/kas Index: net/liblinphone/Makefile =================================================================== --- net/liblinphone/Makefile +++ net/liblinphone/Makefile @@ -29,7 +29,7 @@ USE_GITLAB= yes GL_SITE= https://gitlab.linphone.org/BC GL_ACCOUNT= public -GL_COMMIT= c5d52f725840bceca36874f480d86bdbb91f5b7e +GL_TAGNAME= c5d52f725840bceca36874f480d86bdbb91f5b7e 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 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= da40aed848da44e851d67a2039e7e966c5257d3b +GL_TAGNAME= da40aed848da44e851d67a2039e7e966c5257d3b 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 @@ -20,7 +20,7 @@ GL_SITE= https://gitlab.linphone.org/BC GL_ACCOUNT= public GL_PROJECT= ${PORTNAME}2 -GL_COMMIT= a48ff7d92ddfdce17f47cf71b1867ed85fc826cd +GL_TAGNAME= a48ff7d92ddfdce17f47cf71b1867ed85fc826cd 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= d5505bf226f8c81e5742d854ef559e201fdc2ee9 +GL_TAGNAME= d5505bf226f8c81e5742d854ef559e201fdc2ee9 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 @@ -22,7 +22,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 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 @@ -27,7 +27,7 @@ USE_GITLAB= yes GL_ACCOUNT= Remmina GL_PROJECT= Remmina -GL_COMMIT= 9d409a3556c8c2759a376b4f4ac5149db7aacf4f +GL_TAGNAME= 9d409a3556c8c2759a376b4f4ac5149db7aacf4f USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk30 pango Index: net/waypipe/Makefile =================================================================== --- net/waypipe/Makefile +++ net/waypipe/Makefile @@ -14,7 +14,7 @@ USE_GITLAB= yes GL_SITE= https://gitlab.freedesktop.org GL_ACCOUNT= mstoeckl -GL_COMMIT= f37c665893c74fb3f47364a4c2cecad8248ee6d4 +GL_TAGNAME= f37c665893c74fb3f47364a4c2cecad8248ee6d4 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 @@ -15,7 +15,7 @@ USE_GITLAB= yes GL_SITE= https://foss.heptapod.net GL_ACCOUNT= bsdutils -GL_COMMIT= 71e15f6b22106489576a2a84b16017b3ca4c211c +GL_TAGNAME= 71e15f6b22106489576a2a84b16017b3ca4c211c USE_CABAL= OneTuple-0.3 \ StateVar-1.2.2 \ 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-0.11.3 \ ansi-wl-pprint-0.6.9_3 \ 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= 120109308b3c15a4570e65ea91bfba6426b37193 +GL_TAGNAME= 120109308b3c15a4570e65ea91bfba6426b37193 PLIST_FILES= bin/${PORTNAME} \ man/man1/${PORTNAME}.1.gz Index: print/ft2demos/Makefile =================================================================== --- print/ft2demos/Makefile +++ print/ft2demos/Makefile @@ -20,7 +20,7 @@ USE_GITLAB= yes GL_PROJECT= freetype-demos GL_ACCOUNT= freetype -GL_COMMIT= 07027905d9a47664251b3ee362c5cfad1cddf86f +GL_TAGNAME= 07027905d9a47664251b3ee362c5cfad1cddf86f PLIST_FILES= ${FT_PROGRAMS:S,^,bin/,} @@ -29,7 +29,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/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 @@ -17,7 +17,7 @@ USE_GITLAB= yes GL_ACCOUNT= agrumery GL_PROJECT= aGrUM -GL_COMMIT= cd81e3c04da2cedf5c8d02c55dfeac87b9dc82b6 +GL_TAGNAME= cd81e3c04da2cedf5c8d02c55dfeac87b9dc82b6 SHEBANG_FILES= act Index: science/dalton/Makefile =================================================================== --- science/dalton/Makefile +++ science/dalton/Makefile @@ -16,7 +16,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 @@ -22,7 +22,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 @@ -18,7 +18,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= 9f96d56d32f67a019066025e044dcd9e3b3316ea +GL_TAGNAME= 9f96d56d32f67a019066025e044dcd9e3b3316ea 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 @@ -19,7 +19,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 @@ -24,7 +24,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 @@ -25,7 +25,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 @@ -22,7 +22,7 @@ GL_SITE= https://framagit.org/ GL_ACCOUNT= simgrid GL_PROJECT= simgrid -GL_COMMIT= fcfdefe62e01e5353377ebe3573782ba4d368eeb +GL_TAGNAME= fcfdefe62e01e5353377ebe3573782ba4d368eeb 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/arti/Makefile =================================================================== --- security/arti/Makefile +++ security/arti/Makefile @@ -17,7 +17,7 @@ USE_GITLAB= yes GL_SITE= https://gitlab.torproject.org GL_ACCOUNT= tpo/core -GL_COMMIT= 6ed2e0c37760f9235e8524a595556d2382b77e47 +GL_TAGNAME= 6ed2e0c37760f9235e8524a595556d2382b77e47 CARGO_FEATURES= tokio rustls CARGO_INSTALL= no CARGO_CRATES= addr2line-0.17.0 \ Index: security/authenticator/Makefile =================================================================== --- security/authenticator/Makefile +++ security/authenticator/Makefile @@ -22,7 +22,7 @@ GL_SITE= https://gitlab.gnome.org GL_ACCOUNT= World GL_PROJECT= Authenticator -GL_COMMIT= fc8624342b3b4aa599b4efdefdda84514c223b18 +GL_TAGNAME= fc8624342b3b4aa599b4efdefdda84514c223b18 CARGO_ENV= ZBAR_INCLUDE_DIRS="${LOCALBASE}/include" ZBAR_LIB_DIRS="${LOCALBASE}/lib" MAKE_ENV= ${CARGO_ENV} GLIB_SCHEMAS= com.belmoussaoui.Authenticator.gschema.xml 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= ab352db967d3f2bd0037564079e5cb4df0bd3460 +GL_TAGNAME= ab352db967d3f2bd0037564079e5cb4df0bd3460 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 Index: security/lime/Makefile =================================================================== --- security/lime/Makefile +++ security/lime/Makefile @@ -18,7 +18,7 @@ USE_GITLAB= yes GL_SITE= https://gitlab.linphone.org/BC GL_ACCOUNT= public -GL_COMMIT= 242c5b26a62ccd8d9ecaa7efbd15aa7697fe027b +GL_TAGNAME= 242c5b26a62ccd8d9ecaa7efbd15aa7697fe027b CMAKE_ARGS= -DCMAKE_PREFIX_PATH=${LOCALBASE} \ -DENABLE_STATIC=NO \ Index: security/obfs4proxy-tor/Makefile =================================================================== --- security/obfs4proxy-tor/Makefile +++ security/obfs4proxy-tor/Makefile @@ -28,7 +28,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/openvpn-devel/Makefile =================================================================== --- security/openvpn-devel/Makefile +++ security/openvpn-devel/Makefile @@ -21,7 +21,7 @@ USES= autoreconf cpe libtool pkgconfig shebangfix tar:xz IGNORE_SSL= libressl libressl-devel USE_GITLAB= yes -GL_COMMIT= 734de8f9aa2df56bcb45ebab7cfa799a23f36403 +GL_TAGNAME= 734de8f9aa2df56bcb45ebab7cfa799a23f36403 USE_RC_SUBR= openvpn SHEBANG_FILES= sample/sample-scripts/auth-pam.pl sample/sample-scripts/ucn.pl \ @@ -38,7 +38,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 @@ -23,7 +23,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/py-sequoia/Makefile =================================================================== --- security/py-sequoia/Makefile +++ security/py-sequoia/Makefile @@ -23,7 +23,7 @@ GL_ACCOUNT= sequoia-pgp GL_PROJECT= sequoia -GL_COMMIT= 383133f6be990237044900a4df676488bf8dd71e +GL_TAGNAME= 383133f6be990237044900a4df676488bf8dd71e CFLAGS+= -I${LOCALBASE}/include post-install: 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 Index: security/sequoia/Makefile =================================================================== --- security/sequoia/Makefile +++ security/sequoia/Makefile @@ -21,7 +21,7 @@ USE_GITLAB= yes GL_ACCOUNT= sequoia-pgp GL_PROJECT= sequoia -GL_COMMIT= 383133f6be990237044900a4df676488bf8dd71e +GL_TAGNAME= 383133f6be990237044900a4df676488bf8dd71e CARGO_BUILD_ARGS+= --all SOVERS= ${PORTVERSION} 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: 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 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= 6a92dd764fa6335848036e0233b0baf3e4d69f0c +GL_TAGNAME= 6a92dd764fa6335848036e0233b0baf3e4d69f0c .include 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 @@ -13,7 +13,7 @@ USE_GITLAB= yes GL_SITE= https://foss.heptapod.net GL_ACCOUNT= bsdutils -GL_COMMIT= ae3a01cc39547e6e014e40bd7c2cc0f6810ec616 +GL_TAGNAME= ae3a01cc39547e6e014e40bd7c2cc0f6810ec616 USE_CABAL= ansi-terminal-0.11.3 \ ansi-wl-pprint-0.6.9_3 \ 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 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= 122f70b0c1556ee8d7862f532e62f8860c9dcce8 +GL_TAGNAME= 122f70b0c1556ee8d7862f532e62f8860c9dcce8 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/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 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= 1d6119756931d05cc2526308c941c979e475d3a7 +GL_TAGNAME= 1d6119756931d05cc2526308c941c979e475d3a7 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= 0e32703fcde8d29df5e1f6f21094c668c61238fe +GL_TAGNAME= 0e32703fcde8d29df5e1f6f21094c668c61238fe 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/zeitgeist/Makefile =================================================================== --- sysutils/zeitgeist/Makefile +++ sysutils/zeitgeist/Makefile @@ -21,7 +21,7 @@ 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= 03d649ca34c715dda11f842ad54d5eb38752086f +GL_TAGNAME= 03d649ca34c715dda11f842ad54d5eb38752086f 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 @@ -21,7 +21,7 @@ USE_GITLAB= yes GL_ACCOUNT= gitlab-org # Find the commit hash here: https://gitlab.com/gitlab-org/gitlab-elasticsearch-indexer/-/tags -GL_COMMIT= 13a14c697ada73449b9b8ed15d58b74b4d4a4d9b +GL_TAGNAME= 13a14c697ada73449b9b8ed15d58b74b4d4a4d9b 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 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= 9da21ad116a2913bf788bd4b0b8c58c0de83d9da +GL_TAGNAME= 9da21ad116a2913bf788bd4b0b8c58c0de83d9da USE_PHP= calendar curl gettext iconv pcre 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,3.5+ 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 @@ -277,7 +277,7 @@ GL_ACCOUNT= gitlab-org GL_PROJECT= gitlab-foss # Find the here: https://gitlab.com/gitlab-org/gitlab-foss/-/tags -GL_COMMIT= a347a04b6129dea62767a196124bebbf338077c9 +GL_TAGNAME= a347a04b6129dea62767a196124bebbf338077c9 USERS= git GROUPS= git Index: www/gitlab-workhorse/Makefile =================================================================== --- www/gitlab-workhorse/Makefile +++ www/gitlab-workhorse/Makefile @@ -25,7 +25,7 @@ GL_ACCOUNT= gitlab-org GL_PROJECT= gitlab-foss # Find the commit hash here: https://gitlab.com/gitlab-org/gitlab-foss/-/tags -GL_COMMIT= a347a04b6129dea62767a196124bebbf338077c9 +GL_TAGNAME= a347a04b6129dea62767a196124bebbf338077c9 # 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= 5f92f73ed91b215bfd1c77d65650157335691b8b +GL_TAGNAME= 5f92f73ed91b215bfd1c77d65650157335691b8b BINARY_ALIAS= pyuic5-python${PYTHON_VER}=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: 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-916 -DISTVERSIONSUFFIX= -g${GL_COMMIT:C/(.{12}).*/\1/} +DISTVERSIONSUFFIX= -g${GL_TAGNAME:C/(.{12}).*/\1/} PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= x11-drivers @@ -20,7 +20,7 @@ USES= cpe localbase xorg xorg-cat:driver CPE_VENDOR= x USE_GITLAB= yes -GL_COMMIT= 31486f40f8e8f8923ca0799aea84b58799754564 +GL_TAGNAME= 31486f40f8e8f8923ca0799aea84b58799754564 USE_XORG= pciaccess pixman CONFIGURE_ENV= ac_cv_header_sys_sysinfo_h=no # XXX ports/242236 CONFIGURE_ARGS= --with-builderstring="${DISTVERSIONFULL}" 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 Index: x11-toolkits/libdecor/Makefile =================================================================== --- x11-toolkits/libdecor/Makefile +++ x11-toolkits/libdecor/Makefile @@ -25,7 +25,7 @@ USE_LDCONFIG= yes GL_SITE= https://gitlab.gnome.org GL_ACCOUNT= jadahl -GL_COMMIT= 3ec3fadd59a21835079fbb3046d2bec6c649d6fa +GL_TAGNAME= 3ec3fadd59a21835079fbb3046d2bec6c649d6fa MESON_ARGS= -Ddemo=false OPTIONS_DEFINE= DBUS Index: x11-toolkits/libhandy0/Makefile =================================================================== --- x11-toolkits/libhandy0/Makefile +++ x11-toolkits/libhandy0/Makefile @@ -23,6 +23,6 @@ USE_GITLAB= yes GL_SITE= https://source.puri.sm/ GL_ACCOUNT= Librem5 -GL_COMMIT= 7a193d7692c9c76a1a94f17c4d30b585f77d177c +GL_TAGNAME= 7a193d7692c9c76a1a94f17c4d30b585f77d177c .include Index: x11-toolkits/wlroots-devel/Makefile =================================================================== --- x11-toolkits/wlroots-devel/Makefile +++ x11-toolkits/wlroots-devel/Makefile @@ -1,6 +1,6 @@ PORTNAME= wlroots DISTVERSION= 0.15.0-493 -DISTVERSIONSUFFIX= -g${GL_COMMIT:C/(.{12}).*/\1/} +DISTVERSIONSUFFIX= -g${GL_TAGNAME:C/(.{12}).*/\1/} CATEGORIES= x11-toolkits PKGNAMESUFFIX= -devel @@ -30,7 +30,7 @@ USE_XORG= pixman USE_LDCONFIG= yes GL_SITE= https://gitlab.freedesktop.org -GL_COMMIT= 6d90518c974e1dd959ed00c255de5b54595c4e90 +GL_TAGNAME= 6d90518c974e1dd959ed00c255de5b54595c4e90 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.15.1 -DISTVERSIONSUFFIX= -g${GL_COMMIT:C/(.{12}).*/\1/} +DISTVERSIONSUFFIX= -g${GL_TAGNAME:C/(.{12}).*/\1/} CATEGORIES= x11-toolkits PATCH_SITES+= https://github.com/swaywm/${GL_PROJECT}/commit/:github @@ -29,7 +29,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,} OPTIONS_DEFINE= DRM NVIDIA OPENGL VULKAN X11 Index: x11-wm/kwinft/Makefile =================================================================== --- x11-wm/kwinft/Makefile +++ x11-wm/kwinft/Makefile @@ -40,7 +40,7 @@ multimedia:run quickcontrols2:run widgets x11extras USE_XORG= pixman x11 xcb xi SHEBANG_FILES= kconf_update/*.py kconf_update/*.pl -GL_COMMIT= 022f157ce4bd14fbe069ab6fe41647b70d20f004 +GL_TAGNAME= 022f157ce4bd14fbe069ab6fe41647b70d20f004 PLIST_SUB= VERSION=${PORTVERSION} LDFLAGS+= -Wl,--as-needed # GL, ICE/SM/Xext, epoll-shim, glib, intl, Qt5*, KF5* Index: x11-wm/phoc/Makefile =================================================================== --- x11-wm/phoc/Makefile +++ x11-wm/phoc/Makefile @@ -26,7 +26,7 @@ USE_XORG= pixman xcb GL_SITE= https://gitlab.gnome.org GL_ACCOUNT= World/Phosh -GL_COMMIT= 0bcb87984fc08f7417baf9aa25a1707126620a6e +GL_TAGNAME= 0bcb87984fc08f7417baf9aa25a1707126620a6e SHEBANG_FILES= build-aux/post_install.py CFLAGS+= -Wno-error=format-nonliteral # clang PLIST_FILES= bin/${PORTNAME} Index: x11/appmenu-registrar/Makefile =================================================================== --- x11/appmenu-registrar/Makefile +++ x11/appmenu-registrar/Makefile @@ -29,6 +29,6 @@ USE_GITLAB= yes GL_ACCOUNT= vala-panel-project GL_PROJECT= vala-panel-appmenu -GL_COMMIT= 4e362c22ab3a23c98f13fb379c782786ee057cf6 +GL_TAGNAME= 4e362c22ab3a23c98f13fb379c782786ee057cf6 .include 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= a8fc81af423ab14513c7096b405cec3f58943495 +GL_TAGNAME= a8fc81af423ab14513c7096b405cec3f58943495 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 @@ -23,7 +23,7 @@ USE_QT= qmake:build buildtools:build core dbus declarative gui \ sensors widgets GL_ACCOUNT= kwinft -GL_COMMIT= a4dcebd297fded753579c7aef5a874617d274b7f +GL_TAGNAME= a4dcebd297fded753579c7aef5a874617d274b7f 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 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= bc363328a704b3c5e0ee2f0fcf088de67c708979 +GL_TAGNAME= bc363328a704b3c5e0ee2f0fcf088de67c708979 CPE_VENDOR= freedesktop Index: x11/libxcvt/Makefile =================================================================== --- x11/libxcvt/Makefile +++ x11/libxcvt/Makefile @@ -15,6 +15,6 @@ USE_GITLAB= yes GL_SITE= https://gitlab.freedesktop.org GL_ACCOUNT= xorg/lib -GL_COMMIT= d9ca87eea9eecddaccc3a77227bcb3acf84e89df +GL_TAGNAME= d9ca87eea9eecddaccc3a77227bcb3acf84e89df .include Index: x11/mate-applet-appmenu/Makefile =================================================================== --- x11/mate-applet-appmenu/Makefile +++ x11/mate-applet-appmenu/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 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= 817d5d55dfb2baf932effe9fec9c557ad1529eb9 +GL_TAGNAME= 817d5d55dfb2baf932effe9fec9c557ad1529eb9 USE_GL= gl USE_QT= buildtools core gui widgets Index: x11/salut/Makefile =================================================================== --- x11/salut/Makefile +++ x11/salut/Makefile @@ -15,7 +15,7 @@ USES= cargo USE_GITLAB= yes GL_ACCOUNT= snakedye -GL_COMMIT= c6e2dad1fb542080bc1b6a0bf73f87a522900deb +GL_TAGNAME= c6e2dad1fb542080bc1b6a0bf73f87a522900deb PLIST_FILES= bin/${PORTNAME} CARGO_CRATES= adler-1.0.2 \ Index: x11/squeekboard/Makefile =================================================================== --- x11/squeekboard/Makefile +++ x11/squeekboard/Makefile @@ -26,7 +26,7 @@ USE_GNOME= cairo gdkpixbuf2 gnomedesktop3 gtk30 GL_SITE= https://gitlab.gnome.org GL_ACCOUNT= World/Phosh -GL_COMMIT= 2faa98d85f1142383ec8ad1487616c1a7ad1882f +GL_TAGNAME= 2faa98d85f1142383ec8ad1487616c1a7ad1882f SHEBANG_FILES= tools/entry.py MAKE_ENV= ${CARGO_ENV} MESON_ARGS= -Dstrict=false 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 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 @@ -32,6 +32,6 @@ USE_GITLAB= yes GL_ACCOUNT= vala-panel-project GL_PROJECT= vala-panel-appmenu -GL_COMMIT= 4e362c22ab3a23c98f13fb379c782786ee057cf6 +GL_TAGNAME= 4e362c22ab3a23c98f13fb379c782786ee057cf6 .include Index: x11/xfce4-docklike-plugin/Makefile =================================================================== --- x11/xfce4-docklike-plugin/Makefile +++ x11/xfce4-docklike-plugin/Makefile @@ -19,7 +19,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