From owner-svn-ports-all@freebsd.org Sun Dec 29 12:47:08 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 3379C1DE7DC; Sun, 29 Dec 2019 12:47:08 +0000 (UTC) (envelope-from sunpoet@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 47m0gw0Tldz4TqV; Sun, 29 Dec 2019 12:47:08 +0000 (UTC) (envelope-from sunpoet@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 0BEFC19A9F; Sun, 29 Dec 2019 12:47:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xBTCl7kN096226; Sun, 29 Dec 2019 12:47:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xBTCl7vx096218; Sun, 29 Dec 2019 12:47:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201912291247.xBTCl7vx096218@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 29 Dec 2019 12:47:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r521292 - in head/devel: . rubygem-ms_rest_azure rubygem-ms_rest_azure/files X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . rubygem-ms_rest_azure rubygem-ms_rest_azure/files X-SVN-Commit-Revision: 521292 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Dec 2019 12:47:08 -0000 Author: sunpoet Date: Sun Dec 29 12:47:06 2019 New Revision: 521292 URL: https://svnweb.freebsd.org/changeset/ports/521292 Log: Add rubygem-ms_rest 0.11.1 MsRestAzure is a library which supports the Azure clients (SDKs) generated with Autorest tool. It contains core logic and helper classes for error handling and authentication. Also it includes azure specific logic like long polling functionality and Azure application authentication. Usually it is not supposed to be used as a standalone gem but only as a dependency for generated client gems. WWW: https://github.com/Azure/azure-sdk-for-ruby WWW: https://github.com/Azure/azure-sdk-for-ruby/tree/master/runtime/ms_rest_azure Added: head/devel/rubygem-ms_rest_azure/ head/devel/rubygem-ms_rest_azure/Makefile (contents, props changed) head/devel/rubygem-ms_rest_azure/distinfo (contents, props changed) head/devel/rubygem-ms_rest_azure/files/ head/devel/rubygem-ms_rest_azure/files/patch-gemspec (contents, props changed) head/devel/rubygem-ms_rest_azure/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Dec 29 12:47:00 2019 (r521291) +++ head/devel/Makefile Sun Dec 29 12:47:06 2019 (r521292) @@ -6026,6 +6026,7 @@ SUBDIR += rubygem-mongo SUBDIR += rubygem-mono_logger SUBDIR += rubygem-ms_rest + SUBDIR += rubygem-ms_rest_azure SUBDIR += rubygem-msgpack SUBDIR += rubygem-mspec SUBDIR += rubygem-multi_json Added: head/devel/rubygem-ms_rest_azure/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-ms_rest_azure/Makefile Sun Dec 29 12:47:06 2019 (r521292) @@ -0,0 +1,26 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= ms_rest_azure +PORTVERSION= 0.11.1 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Azure Client Library for Ruby + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby \ + rubygem-faraday>=0.9<1:www/rubygem-faraday \ + rubygem-faraday-cookie_jar>=0.0.6<0.1:devel/rubygem-faraday-cookie_jar \ + rubygem-ms_rest>=0.7.4<0.8:devel/rubygem-ms_rest \ + rubygem-unf_ext>=0.0.7.2<0.0.8:textproc/rubygem-unf_ext + +USES= gem +USE_RUBY= yes + +NO_ARCH= yes + +.include Added: head/devel/rubygem-ms_rest_azure/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-ms_rest_azure/distinfo Sun Dec 29 12:47:06 2019 (r521292) @@ -0,0 +1,3 @@ +TIMESTAMP = 1577523860 +SHA256 (rubygem/ms_rest_azure-0.11.1.gem) = 7f5b49d0c7398c515b48ee3150448b9f8586a24feb382ad655c0f2fe6150bb8c +SIZE (rubygem/ms_rest_azure-0.11.1.gem) = 20480 Added: head/devel/rubygem-ms_rest_azure/files/patch-gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-ms_rest_azure/files/patch-gemspec Sun Dec 29 12:47:06 2019 (r521292) @@ -0,0 +1,11 @@ +--- ms_rest_azure.gemspec.orig 2019-12-28 11:39:10 UTC ++++ ms_rest_azure.gemspec +@@ -27,7 +27,7 @@ Gem::Specification.new do |s| + s.add_development_dependency(%q.freeze, ["~> 10.0"]) + s.add_development_dependency(%q.freeze, ["~> 3.3"]) + s.add_runtime_dependency(%q.freeze, ["~> 1.0"]) +- s.add_runtime_dependency(%q.freeze, ["= 0.0.7.2"]) ++ s.add_runtime_dependency(%q.freeze, ["~> 0.0.7.2"]) + s.add_runtime_dependency(%q.freeze, ["~> 0.9"]) + s.add_runtime_dependency(%q.freeze, ["~> 0.0.6"]) + s.add_runtime_dependency(%q.freeze, ["~> 0.7.4"]) Added: head/devel/rubygem-ms_rest_azure/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-ms_rest_azure/pkg-descr Sun Dec 29 12:47:06 2019 (r521292) @@ -0,0 +1,9 @@ +MsRestAzure is a library which supports the Azure clients (SDKs) generated with +Autorest tool. It contains core logic and helper classes for error handling and +authentication. Also it includes azure specific logic like long polling +functionality and Azure application authentication. Usually it is not supposed +to be used as a standalone gem but only as a dependency for generated client +gems. + +WWW: https://github.com/Azure/azure-sdk-for-ruby +WWW: https://github.com/Azure/azure-sdk-for-ruby/tree/master/runtime/ms_rest_azure