From owner-svn-ports-all@freebsd.org Sat Jul 8 00:49:53 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E0063DAE55A; Sat, 8 Jul 2017 00:49:53 +0000 (UTC) (envelope-from swills@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 mx1.freebsd.org (Postfix) with ESMTPS id B8CBF688C8; Sat, 8 Jul 2017 00:49:53 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v680nqKN099159; Sat, 8 Jul 2017 00:49:52 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v680nqxk099155; Sat, 8 Jul 2017 00:49:52 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201707080049.v680nqxk099155@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 8 Jul 2017 00:49:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r445290 - in head/devel: . rubygem-jenkins_api_client X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/devel: . rubygem-jenkins_api_client X-SVN-Commit-Revision: 445290 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.23 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: Sat, 08 Jul 2017 00:49:54 -0000 Author: swills Date: Sat Jul 8 00:49:52 2017 New Revision: 445290 URL: https://svnweb.freebsd.org/changeset/ports/445290 Log: devel/rubygem-jenkins_api_client: create port This is a simple and easy-to-use Jenkins Api client with features focused on automating Job configuration programaticaly and so forth WWW: https://github.com/arangamani/jenkins_api_client PR: 214106 Reported by: asomers Added: head/devel/rubygem-jenkins_api_client/ head/devel/rubygem-jenkins_api_client/Makefile (contents, props changed) head/devel/rubygem-jenkins_api_client/distinfo (contents, props changed) head/devel/rubygem-jenkins_api_client/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Jul 8 00:24:05 2017 (r445289) +++ head/devel/Makefile Sat Jul 8 00:49:52 2017 (r445290) @@ -5411,6 +5411,7 @@ SUBDIR += rubygem-jbuilder-rails5 SUBDIR += rubygem-jbuilder-rails50 SUBDIR += rubygem-jekyll-coffeescript + SUBDIR += rubygem-jenkins_api_client SUBDIR += rubygem-jeweler SUBDIR += rubygem-jira-ruby SUBDIR += rubygem-jmespath Added: head/devel/rubygem-jenkins_api_client/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-jenkins_api_client/Makefile Sat Jul 8 00:49:52 2017 (r445290) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= jenkins_api_client +PORTVERSION= 1.5.3 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Jenkins JSON API Client + +RUN_DEPENDS= rubygem-nokogiri>=1.6:textproc/rubygem-nokogiri \ + rubygem-thor>=0.16.0:devel/rubygem-thor \ + rubygem-terminal-table>=1.4.0:textproc/rubygem-terminal-table \ + rubygem-mixlib-shellout>=1.1.0:devel/rubygem-mixlib-shellout \ + rubygem-socksify>=1.7.0:www/rubygem-socksify \ + rubygem-json>=1.0:devel/rubygem-json + +USE_RUBY= yes +USES= gem +PLIST_FILES= bin/jenkinscli + +.include Added: head/devel/rubygem-jenkins_api_client/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-jenkins_api_client/distinfo Sat Jul 8 00:49:52 2017 (r445290) @@ -0,0 +1,3 @@ +TIMESTAMP = 1499473801 +SHA256 (rubygem/jenkins_api_client-1.5.3.gem) = 1acb01d242a2ff77138375a2eeaa76c41ba70637ff665e0a509a26ef36daa0c3 +SIZE (rubygem/jenkins_api_client-1.5.3.gem) = 592384 Added: head/devel/rubygem-jenkins_api_client/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-jenkins_api_client/pkg-descr Sat Jul 8 00:49:52 2017 (r445290) @@ -0,0 +1,4 @@ +This is a simple and easy-to-use Jenkins Api client with features focused on +automating Job configuration programaticaly and so forth + +WWW: https://github.com/arangamani/jenkins_api_client