diff options
Diffstat (limited to 'devel')
-rw-r--r-- | devel/gitaly/Makefile | 2 | ||||
-rw-r--r-- | devel/gitaly/distinfo | 14 | ||||
-rw-r--r-- | devel/gitaly/files/patch-Makefile | 67 | ||||
-rw-r--r-- | devel/gitlab-shell/Makefile | 4 | ||||
-rw-r--r-- | devel/gitlab-shell/distinfo | 10 |
5 files changed, 80 insertions, 17 deletions
diff --git a/devel/gitaly/Makefile b/devel/gitaly/Makefile index 64bb1010af84..50b44de5e20d 100644 --- a/devel/gitaly/Makefile +++ b/devel/gitaly/Makefile @@ -25,9 +25,9 @@ CPE_VENDOR= gitlab USE_GITLAB= yes GL_ACCOUNT= gitlab-org +GL_TUPLE= gitlab-org:git:v${GITLAB_GIT_VERSION}:_build/_build/deps/git-v${GITLAB_GIT_VERSION_SHORT} GO_MOD_DIST= gitlab GO_MODULE= gitlab.com/gitlab-org/gitaly/v18 -GL_TUPLE= gitlab-org:git:v${GITLAB_GIT_VERSION}:_build/_build/deps/git-v${GITLAB_GIT_VERSION_SHORT} MAKE_ENV= GOFLAGS="${GO_BUILDFLAGS}" # make sure to pass go build options into make process diff --git a/devel/gitaly/distinfo b/devel/gitaly/distinfo index ccf599dc21c3..326621df2ba3 100644 --- a/devel/gitaly/distinfo +++ b/devel/gitaly/distinfo @@ -1,7 +1,7 @@ -TIMESTAMP = 1752120719 -SHA256 (go/devel_gitaly/gitaly-v18.1.2/go.mod) = c0924eaae5b6c66c0e8d04e25e1dad85b88be0d33008524c3e6a9eca51311dcb -SIZE (go/devel_gitaly/gitaly-v18.1.2/go.mod) = 13011 -SHA256 (go/devel_gitaly/gitaly-v18.1.2/gitaly-v18.1.2.tar.bz2) = 8538f12c47dcb7ad3cd9c1bafe003d8e3f6fc2e26b10031f835af624d8c12c55 -SIZE (go/devel_gitaly/gitaly-v18.1.2/gitaly-v18.1.2.tar.bz2) = 4541124 -SHA256 (go/devel_gitaly/gitaly-v18.1.2/git-v2.49.0.tar.bz2) = 63678e3839f5af667b48cb9d0c37de4b249916dc19aae7c5ce83d07fb3146ecb -SIZE (go/devel_gitaly/gitaly-v18.1.2/git-v2.49.0.tar.bz2) = 9079092 +TIMESTAMP = 1752679148 +SHA256 (go/devel_gitaly/gitaly-v18.2.0/go.mod) = ec7c02d0d63b1125e6446a6c2ada6fc2efa12d332da58b7c9c9cd56103cc51ed +SIZE (go/devel_gitaly/gitaly-v18.2.0/go.mod) = 13011 +SHA256 (go/devel_gitaly/gitaly-v18.2.0/gitaly-v18.2.0.tar.bz2) = 8d1543f363464030eb72c83d6d32f6020e7c912de95fb3a33659995d20598d0f +SIZE (go/devel_gitaly/gitaly-v18.2.0/gitaly-v18.2.0.tar.bz2) = 4543392 +SHA256 (go/devel_gitaly/gitaly-v18.2.0/git-v2.50.0.tar.bz2) = 33e44c038ae6b3ff526e6927c2c6ff1658fd7f3c7334b079c019fa08f8ab20e4 +SIZE (go/devel_gitaly/gitaly-v18.2.0/git-v2.50.0.tar.bz2) = 9249878 diff --git a/devel/gitaly/files/patch-Makefile b/devel/gitaly/files/patch-Makefile index 9345aecfdf54..871068592d17 100644 --- a/devel/gitaly/files/patch-Makefile +++ b/devel/gitaly/files/patch-Makefile @@ -1,6 +1,69 @@ ---- Makefile.orig 2025-05-14 17:37:06 UTC +--- Makefile.orig 2025-07-16 11:35:37 UTC +++ Makefile -@@ -717,12 +717,12 @@ ${DEPENDENCY_DIR}/git-%/Makefile: ${DEPENDENCY_DIR}/gi +@@ -156,7 +156,6 @@ GIT_VERSION ?= + # GIT_VERSION_x_xx defines versions for each instance of bundled Git we ship. When a new + # major version is added, be sure to update GIT_PACKED_EXECUTABLES, the *-bundled-git targets, + # and add new targets under the "# These targets build specific releases of Git." section. +-GIT_VERSION_2_49 ?= v2.49.0.gl2 + GIT_VERSION_2_50 ?= v2.50.1.gl1 + # + # OVERRIDE_GIT_VERSION allows you to specify a custom semver value to be reported by the +@@ -168,7 +167,7 @@ ifeq (${GIT_VERSION:default=},) + ifeq (${GIT_VERSION:default=},) + # GIT_VERSION should be overridden to the default version of bundled Git. This is only + # necessary until https://gitlab.com/gitlab-org/gitaly/-/issues/6195 is complete. +- override GIT_VERSION := ${GIT_VERSION_2_49} ++ override GIT_VERSION := ${GIT_VERSION_2_50} + # When GIT_VERSION is not explicitly set, we default to bundled Git. + export WITH_BUNDLED_GIT = YesPlease + else +@@ -264,8 +263,7 @@ BUILD_GEM_NAME ?= gitaly + BUILD_GEM_NAME ?= gitaly + + # Git binaries that are eventually embedded into the Gitaly binary. +-GIT_PACKED_EXECUTABLES = $(addprefix ${BUILD_DIR}/bin/gitaly-, $(addsuffix -v2.49, ${GIT_EXECUTABLES})) \ +- $(addprefix ${BUILD_DIR}/bin/gitaly-, $(addsuffix -v2.50, ${GIT_EXECUTABLES})) ++GIT_PACKED_EXECUTABLES = $(addprefix ${BUILD_DIR}/bin/gitaly-, $(addsuffix -v2.50, ${GIT_EXECUTABLES})) + + # All executables provided by Gitaly. + GITALY_EXECUTABLES = $(addprefix ${BUILD_DIR}/bin/,$(notdir $(shell find ${SOURCE_DIR}/cmd -mindepth 1 -maxdepth 1 -type d -print))) +@@ -354,15 +352,13 @@ install: build + + .PHONY: build-bundled-git + ## Build bundled Git binaries. +-build-bundled-git: build-bundled-git-v2.49 build-bundled-git-v2.50 +-build-bundled-git-v2.49: $(patsubst %,${BUILD_DIR}/bin/gitaly-%-v2.49,${GIT_EXECUTABLES}) ++build-bundled-git: build-bundled-git-v2.50 + build-bundled-git-v2.50: $(patsubst %,${BUILD_DIR}/bin/gitaly-%-v2.50,${GIT_EXECUTABLES}) + + .PHONY: install-bundled-git + ## Install bundled Git binaries. The target directory can be modified by + ## setting PREFIX and DESTDIR. +-install-bundled-git: install-bundled-git-v2.49 install-bundled-git-v2.50 +-install-bundled-git-v2.49: $(patsubst %,${INSTALL_DEST_DIR}/gitaly-%-v2.49,${GIT_EXECUTABLES}) ++install-bundled-git: install-bundled-git-v2.50 + install-bundled-git-v2.50: $(patsubst %,${INSTALL_DEST_DIR}/gitaly-%-v2.50,${GIT_EXECUTABLES}) + + ifdef WITH_BUNDLED_GIT +@@ -684,17 +680,12 @@ ${DEPENDENCY_DIR}/git-distribution/build/git: ${DEPEND + ${Q}touch $@ + + # These targets build specific releases of Git. +-${BUILD_DIR}/bin/gitaly-%-v2.49: override GIT_VERSION = ${GIT_VERSION_2_49} + ${BUILD_DIR}/bin/gitaly-%-v2.50: override GIT_VERSION = ${GIT_VERSION_2_50} + + ifdef USE_MESON +-${BUILD_DIR}/bin/gitaly-%-v2.49: ${DEPENDENCY_DIR}/git-v2.49/build/% | ${BUILD_DIR}/bin +- ${Q}install $< $@ + ${BUILD_DIR}/bin/gitaly-%-v2.50: ${DEPENDENCY_DIR}/git-v2.50/build/% | ${BUILD_DIR}/bin + ${Q}install $< $@ + else +-${BUILD_DIR}/bin/gitaly-%-v2.49: ${DEPENDENCY_DIR}/git-v2.49/% | ${BUILD_DIR}/bin +- ${Q}install $< $@ + ${BUILD_DIR}/bin/gitaly-%-v2.50: ${DEPENDENCY_DIR}/git-v2.50/% | ${BUILD_DIR}/bin + ${Q}install $< $@ + endif +@@ -731,12 +722,12 @@ ${DEPENDENCY_DIR}/git-%/Makefile: ${DEPENDENCY_DIR}/gi # otherwise try to rebuild all targets depending on it whenever we build # something else. We thus depend on the Makefile instead. ${DEPENDENCY_DIR}/git-%/Makefile: ${DEPENDENCY_DIR}/git-%.version diff --git a/devel/gitlab-shell/Makefile b/devel/gitlab-shell/Makefile index 4cc0e2c9205f..9e98e6868819 100644 --- a/devel/gitlab-shell/Makefile +++ b/devel/gitlab-shell/Makefile @@ -1,5 +1,5 @@ PORTNAME= gitlab-shell -PORTVERSION= 14.42.0 +PORTVERSION= 14.43.0 DISTVERSIONPREFIX= v CATEGORIES= devel @@ -13,7 +13,7 @@ LICENSE= MIT # https://gitlab.com/gitlab-org/gitlab-shell/-/merge_requests/720 #BUILD_DEPENDS= heimdal>=0:security/heimdal -USES= gmake go:modules,no_targets,1.23 pkgconfig +USES= gmake go:modules,no_targets,1.24 pkgconfig USE_GITLAB= yes GL_ACCOUNT= gitlab-org diff --git a/devel/gitlab-shell/distinfo b/devel/gitlab-shell/distinfo index c0fb1a1a36c4..c3fc85caa41c 100644 --- a/devel/gitlab-shell/distinfo +++ b/devel/gitlab-shell/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1747896733 -SHA256 (go/devel_gitlab-shell/gitlab-shell-v14.42.0/go.mod) = 03a99472d6dba82d6abef4c58ec01a339c8001966d7feebc3a41db804d736c1e -SIZE (go/devel_gitlab-shell/gitlab-shell-v14.42.0/go.mod) = 6034 -SHA256 (go/devel_gitlab-shell/gitlab-shell-v14.42.0/gitlab-shell-v14.42.0.tar.bz2) = a5b932818f580d4876dbf6e9fd4a4955a0b9ba22c620cbb2ee79cee741601086 -SIZE (go/devel_gitlab-shell/gitlab-shell-v14.42.0/gitlab-shell-v14.42.0.tar.bz2) = 173780 +TIMESTAMP = 1752677513 +SHA256 (go/devel_gitlab-shell/gitlab-shell-v14.43.0/go.mod) = 0ce82c489c0d218be51dd0fc2ee44bca651c0d79e3a99b6aef3918a78bfbad8d +SIZE (go/devel_gitlab-shell/gitlab-shell-v14.43.0/go.mod) = 6034 +SHA256 (go/devel_gitlab-shell/gitlab-shell-v14.43.0/gitlab-shell-v14.43.0.tar.bz2) = 05b56edd8b60f24217c72526a3ab0f0933841077be3a8f96bb77c2c2320c4a63 +SIZE (go/devel_gitlab-shell/gitlab-shell-v14.43.0/gitlab-shell-v14.43.0.tar.bz2) = 174499 |