From owner-svn-ports-head@freebsd.org Wed Jan 4 01:22:42 2017 Return-Path: Delivered-To: svn-ports-head@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 1785CC9D9BF; Wed, 4 Jan 2017 01:22:42 +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 E4D991CB0; Wed, 4 Jan 2017 01:22:41 +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 v041Mfbk005354; Wed, 4 Jan 2017 01:22:41 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v041MeBj005349; Wed, 4 Jan 2017 01:22:40 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201701040122.v041MeBj005349@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 4 Jan 2017 01:22:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r430526 - in head/security: . rubygem-timfel-krb5 rubygem-timfel-krb5/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 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: Wed, 04 Jan 2017 01:22:42 -0000 Author: swills Date: Wed Jan 4 01:22:40 2017 New Revision: 430526 URL: https://svnweb.freebsd.org/changeset/ports/430526 Log: security/rubygem-timfel-krb5: create port timfel-krb5-auth - ruby wrapper for KRB5 WWW: https://github.com/timfel/krb5-auth PR: 199695 Submitted by: yerenkow@gmail.com Added: head/security/rubygem-timfel-krb5/ head/security/rubygem-timfel-krb5/Makefile (contents, props changed) head/security/rubygem-timfel-krb5/distinfo (contents, props changed) head/security/rubygem-timfel-krb5/files/ head/security/rubygem-timfel-krb5/files/patch-ext_extconf.rb (contents, props changed) head/security/rubygem-timfel-krb5/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Tue Jan 3 22:48:31 2017 (r430525) +++ head/security/Makefile Wed Jan 4 01:22:40 2017 (r430526) @@ -1050,6 +1050,7 @@ SUBDIR += rubygem-six SUBDIR += rubygem-sshkey SUBDIR += rubygem-sshkit + SUBDIR += rubygem-timfel-krb5 SUBDIR += rubygem-twitter_oauth SUBDIR += s2n SUBDIR += safesh Added: head/security/rubygem-timfel-krb5/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-timfel-krb5/Makefile Wed Jan 4 01:22:40 2017 (r430526) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= timfel-krb5-auth +PORTVERSION= 0.8.3 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= KRB5 for Ruby + +BUILD_DEPENDS= krb5>0:security/krb5 +RUN_DEPENDS= krb5>0:security/krb5 + +USE_RUBY= yes +USES= gem + +.include Added: head/security/rubygem-timfel-krb5/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-timfel-krb5/distinfo Wed Jan 4 01:22:40 2017 (r430526) @@ -0,0 +1,3 @@ +TIMESTAMP = 1483485734 +SHA256 (rubygem/timfel-krb5-auth-0.8.3.gem) = ab388c9d747fa3cd95baf2cc1c03253e372d8c680adcc543670f4f099854bb80 +SIZE (rubygem/timfel-krb5-auth-0.8.3.gem) = 10240 Added: head/security/rubygem-timfel-krb5/files/patch-ext_extconf.rb ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-timfel-krb5/files/patch-ext_extconf.rb Wed Jan 4 01:22:40 2017 (r430526) @@ -0,0 +1,15 @@ +--- ext/extconf.rb.orig 2017-01-04 01:13:32 UTC ++++ ext/extconf.rb +@@ -4,8 +4,8 @@ RbConfig::MAKEFILE_CONFIG['CC'] = ENV['C + extension_name = 'krb5_auth' + dir_config(extension_name) + have_library("c", "main") +-raise "Cannot find krb5 library" unless have_library("krb5","krb5_init_context") +-raise "Cannot find krb5 headers" unless have_header("krb5.h") +-have_library("com_err","error_message") +-have_header("com_err.h") ++raise "Cannot find krb5 library" unless find_library("krb5","krb5_init_context") ++raise "Cannot find krb5 headers" unless find_header("krb5.h") ++find_library("com_err","error_message") ++find_header("com_err.h") + create_makefile('krb5_auth') Added: head/security/rubygem-timfel-krb5/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-timfel-krb5/pkg-descr Wed Jan 4 01:22:40 2017 (r430526) @@ -0,0 +1,3 @@ +timfel-krb5-auth - ruby wrapper for KRB5 + +WWW: https://github.com/timfel/krb5-auth