From owner-svn-ports-head@freebsd.org Fri Jun 24 21:27:51 2016 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 BBBF6B7496B; Fri, 24 Jun 2016 21:27:51 +0000 (UTC) (envelope-from feld@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 7E92E1B21; Fri, 24 Jun 2016 21:27:51 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5OLRok7089027; Fri, 24 Jun 2016 21:27:50 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5OLRoHi089023; Fri, 24 Jun 2016 21:27:50 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201606242127.u5OLRoHi089023@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 24 Jun 2016 21:27:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417449 - in head/www: . redmine-single_auth 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.22 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, 24 Jun 2016 21:27:51 -0000 Author: feld Date: Fri Jun 24 21:27:50 2016 New Revision: 417449 URL: https://svnweb.freebsd.org/changeset/ports/417449 Log: Plugin implements SSO authentication method in Redmine. Plugin allows transparent authentication of the User using his domain account through Web-server module (for ex. mod_ntlm in Apache). WWW: https://bitbucket.org/dkuk/single_auth Added: head/www/redmine-single_auth/ head/www/redmine-single_auth/Makefile (contents, props changed) head/www/redmine-single_auth/distinfo (contents, props changed) head/www/redmine-single_auth/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Jun 24 21:27:30 2016 (r417448) +++ head/www/Makefile Fri Jun 24 21:27:50 2016 (r417449) @@ -1824,6 +1824,7 @@ SUBDIR += redmine-qa_contact SUBDIR += redmine-redcarpet_formatter SUBDIR += redmine-sidebar_hide + SUBDIR += redmine-single_auth SUBDIR += redmine-stuff_to_do SUBDIR += redmine-wiki_notes SUBDIR += rejik Added: head/www/redmine-single_auth/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/redmine-single_auth/Makefile Fri Jun 24 21:27:50 2016 (r417449) @@ -0,0 +1,25 @@ +# Created by: Mark Felder +# $FreeBSD$ + +PORTNAME= single_auth +PORTVERSION= 2.0.0 +CATEGORIES= www +MASTER_SITES= http://bitbucket.org/dkuk/${PORTNAME}/get/ +PKGNAMEPREFIX= redmine- +DISTNAME= ${BB_COMMIT} +DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} + +MAINTAINER= feld@FreeBSD.org +COMMENT= SSO authentication method for Redmine + +RUN_DEPENDS= redmine-a_common_libs>0:www/redmine-a_common_libs + +NO_ARCH= yes + +BB_COMMIT= 5bf59295d194 + +REDMINE_PLUGIN_NAME= ${PORTNAME} + +WRKSRC= ${WRKDIR}/dkuk-${PORTNAME}-${BB_COMMIT} + +.include "${.CURDIR}/../../www/redmine/bsd.redmine.mk" Added: head/www/redmine-single_auth/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/redmine-single_auth/distinfo Fri Jun 24 21:27:50 2016 (r417449) @@ -0,0 +1,3 @@ +TIMESTAMP = 1466798954 +SHA256 (single_auth-2.0.0/5bf59295d194.tar.gz) = feab0a118a8091192b26500f02d01c246030f2d99cd5abe37059e46c6df41dcf +SIZE (single_auth-2.0.0/5bf59295d194.tar.gz) = 20208 Added: head/www/redmine-single_auth/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/redmine-single_auth/pkg-descr Fri Jun 24 21:27:50 2016 (r417449) @@ -0,0 +1,6 @@ +Plugin implements SSO authentication method in Redmine. + +Plugin allows transparent authentication of the User using his domain +account through Web-server module (for ex. mod_ntlm in Apache). + +WWW: https://bitbucket.org/dkuk/single_auth