From owner-svn-ports-head@freebsd.org Fri May 31 10:07:10 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CF81415B8368; Fri, 31 May 2019 10:07:09 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 73FB58BDAC; Fri, 31 May 2019 10:07:09 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3F8EE26CB5; Fri, 31 May 2019 10:07:09 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4VA79U5020423; Fri, 31 May 2019 10:07:09 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4VA783e020417; Fri, 31 May 2019 10:07:08 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201905311007.x4VA783e020417@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Fri, 31 May 2019 10:07:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r503134 - in head: devel devel/gitaly devel/rubygem-google-protobuf371 www/gitlab-ce X-SVN-Group: ports-head X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: in head: devel devel/gitaly devel/rubygem-google-protobuf371 www/gitlab-ce X-SVN-Commit-Revision: 503134 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 73FB58BDAC X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 May 2019 10:07:10 -0000 Author: mfechner Date: Fri May 31 10:07:08 2019 New Revision: 503134 URL: https://svnweb.freebsd.org/changeset/ports/503134 Log: Fixed build errors for gitlab-ce, introduced by r503102, that upgrade a dependency to an unsupported version. Reported by: pkg-fallout Added: head/devel/rubygem-google-protobuf371/ - copied from r497040, head/devel/rubygem-google-protobuf/ Modified: head/devel/Makefile head/devel/gitaly/Makefile head/devel/rubygem-google-protobuf371/Makefile head/www/gitlab-ce/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri May 31 10:00:20 2019 (r503133) +++ head/devel/Makefile Fri May 31 10:07:08 2019 (r503134) @@ -5536,6 +5536,7 @@ SUBDIR += rubygem-gobject-introspection SUBDIR += rubygem-google-api-client SUBDIR += rubygem-google-protobuf + SUBDIR += rubygem-google-protobuf371 SUBDIR += rubygem-googleapis-common-protos SUBDIR += rubygem-googleapis-common-protos-types SUBDIR += rubygem-graf Modified: head/devel/gitaly/Makefile ============================================================================== --- head/devel/gitaly/Makefile Fri May 31 10:00:20 2019 (r503133) +++ head/devel/gitaly/Makefile Fri May 31 10:07:08 2019 (r503134) @@ -2,7 +2,7 @@ PORTNAME= gitaly DISTVERSION= 1.42.0 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= mfechner@FreeBSD.org @@ -27,7 +27,7 @@ MY_DEPENDS= git>=2.21:devel/git \ rubygem-faraday>=0.12:www/rubygem-faraday \ rubygem-rbtrace>0:devel/rubygem-rbtrace \ rubygem-licensee8>=8.9.0:devel/rubygem-licensee8 \ - rubygem-google-protobuf>=3.7.1:devel/rubygem-google-protobuf + rubygem-google-protobuf371>=3.7.1:devel/rubygem-google-protobuf371 BUILD_DEPENDS= go>=1.11:lang/go \ gem:devel/ruby-gems \ ${MY_DEPENDS} Modified: head/devel/rubygem-google-protobuf371/Makefile ============================================================================== --- head/devel/rubygem-google-protobuf/Makefile Thu Mar 28 17:33:22 2019 (r497040) +++ head/devel/rubygem-google-protobuf371/Makefile Fri May 31 10:07:08 2019 (r503134) @@ -5,13 +5,16 @@ PORTNAME= google-protobuf PORTVERSION= 3.7.1 CATEGORIES= devel rubygems MASTER_SITES= RG +PKGNAMESUFFIX= 371 -MAINTAINER= sunpoet@FreeBSD.org +MAINTAINER= mfechner@FreeBSD.org COMMENT= Ruby extension to Google Protocol Buffers LICENSE= BSD3CLAUSE USES= gem USE_RUBY= yes + +PORTSCOUT= limit:^3\.7\.1 .include Modified: head/www/gitlab-ce/Makefile ============================================================================== --- head/www/gitlab-ce/Makefile Fri May 31 10:00:20 2019 (r503133) +++ head/www/gitlab-ce/Makefile Fri May 31 10:07:08 2019 (r503134) @@ -3,7 +3,7 @@ PORTNAME= gitlab-ce PORTVERSION= 11.11.0 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= www devel MAINTAINER= mfechner@FreeBSD.org @@ -193,7 +193,7 @@ MY_DEPENDS= git>=2.21.0:devel/git \ rubygem-gitaly-proto>=1.27.0:net/rubygem-gitaly-proto \ rubygem-grpc>=1.19.0:net/rubygem-grpc \ rubygem-gitaly>=0.8.0:net/rubygem-gitaly \ - rubygem-google-protobuf>=3.7.1:devel/rubygem-google-protobuf \ + rubygem-google-protobuf371>=3.7.1:devel/rubygem-google-protobuf371 \ rubygem-toml-rb10>=1.0.0:www/rubygem-toml-rb10 \ rubygem-flipper013>=0.13.0:devel/rubygem-flipper013 \ rubygem-flipper-active_record013>=0.13.0:databases/rubygem-flipper-active_record013 \