diff options
author | Matthias Fechner <mfechner@FreeBSD.org> | 2024-11-22 14:08:43 +0200 |
---|---|---|
committer | Matthias Fechner <mfechner@FreeBSD.org> | 2024-11-22 15:15:15 +0200 |
commit | edc8d0390e04766c7102c04cdba727b8c0fd22d6 (patch) | |
tree | e9fa78df8edac36c0c97c44afc4ca0514aaabe04 /net/rubygem-gitlab-fog-azure-rm | |
parent | www/gitlab: update to 17.6.0 (diff) |
www/gitlab: fix regression from 335fc7c38d61142727cb9f01fd9e401c476e4ad8
Gitlab requires net-http 0.4.1:
Because faraday >= 2, < 2.5 could not be found in locally installed gems
and faraday >= 2.5, < 2.12.1 could not be found in locally installed gems,
faraday >= 2, < 2.12.1 cannot be used.
And because faraday >= 2.12.1 depends on faraday-net_http >= 2.0, < 3.5,
faraday >= 2 requires faraday-net_http >= 2.0, < 3.5.
Because faraday-net_http >= 3.4.0 depends on net-http >= 0.5.0
and faraday-net_http >= 2.0, < 3.4.0 could not be found in locally installed
gems,
faraday-net_http >= 2.0 requires net-http >= 0.5.0.
Thus, faraday >= 2 requires net-http >= 0.5.0.
So, because Gemfile depends on faraday ~> 2
and Gemfile depends on net-http = 0.4.1,
version solving has failed.
While fixing the problem, moved gitlab used packages to own package names with a
PKGNAMESUFFIX of `-gitlab`.
This should make the gitlab package much more stable if updates in the ports are done.
Diffstat (limited to 'net/rubygem-gitlab-fog-azure-rm')
-rw-r--r-- | net/rubygem-gitlab-fog-azure-rm/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/net/rubygem-gitlab-fog-azure-rm/Makefile b/net/rubygem-gitlab-fog-azure-rm/Makefile index be4d1ca04b8b..1e8c9a3b51e5 100644 --- a/net/rubygem-gitlab-fog-azure-rm/Makefile +++ b/net/rubygem-gitlab-fog-azure-rm/Makefile @@ -1,5 +1,6 @@ PORTNAME= gitlab-fog-azure-rm PORTVERSION= 2.1.0 +PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG @@ -10,9 +11,9 @@ WWW= https://gitlab.com/gitlab-org/gitlab-fog-azure-rm LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md -RUN_DEPENDS= rubygem-faraday>=2.0<3:www/rubygem-faraday \ - rubygem-faraday-follow_redirects>=0.3.0<0.4:www/rubygem-faraday-follow_redirects \ - rubygem-faraday-net_http_persistent>=2.0<3:www/rubygem-faraday-net_http_persistent \ +RUN_DEPENDS= rubygem-faraday-gitlab>=2.0<3:www/rubygem-faraday-gitlab \ + rubygem-faraday-follow_redirects-gitlab>=0.3.0<0.4:www/rubygem-faraday-follow_redirects-gitlab \ + rubygem-faraday-net_http_persistent-gitlab>=2.0<3:www/rubygem-faraday-net_http_persistent-gitlab \ rubygem-fog-core>=2.1<3:devel/rubygem-fog-core \ rubygem-fog-json>=1.2<2:devel/rubygem-fog-json \ rubygem-mime-types>=0:misc/rubygem-mime-types \ |