From owner-svn-ports-head@freebsd.org Sat May 6 07:36:41 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 57D96D60977; Sat, 6 May 2017 07:36:41 +0000 (UTC) (envelope-from miwi@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 E5CFF1B22; Sat, 6 May 2017 07:36:40 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v467adHr020660; Sat, 6 May 2017 07:36:39 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v467adlp020656; Sat, 6 May 2017 07:36:39 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201705060736.v467adlp020656@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Sat, 6 May 2017 07:36:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r440238 - in head/www: . py-django-hijack 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: Sat, 06 May 2017 07:36:41 -0000 Author: miwi Date: Sat May 6 07:36:39 2017 New Revision: 440238 URL: https://svnweb.freebsd.org/changeset/ports/440238 Log: Django superusers/admins can login and work on behalf of other users without having to know their credentials. WWW: https://github.com/arteria/django-hijack PR: 210275 Submitted by: Kevin Golding Added: head/www/py-django-hijack/ head/www/py-django-hijack/Makefile (contents, props changed) head/www/py-django-hijack/distinfo (contents, props changed) head/www/py-django-hijack/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat May 6 07:29:54 2017 (r440237) +++ head/www/Makefile Sat May 6 07:36:39 2017 (r440238) @@ -1556,6 +1556,7 @@ SUBDIR += py-django-guardian SUBDIR += py-django-happenings SUBDIR += py-django-haystack + SUBDIR += py-django-hijack SUBDIR += py-django-htmlmin SUBDIR += py-django-json-rpc SUBDIR += py-django-jsonfield Added: head/www/py-django-hijack/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-hijack/Makefile Sat May 6 07:36:39 2017 (r440238) @@ -0,0 +1,22 @@ +# Created by: Kevin Golding +# $FreeBSD$ + +PORTNAME= django-hijack +PORTVERSION= 2.1.1 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ports@caomhin.org +COMMENT= Allows DJango superusers to login as other users + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/django/bin/django-admin.py:www/py-django18 + +NO_ARCH= yes +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/www/py-django-hijack/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-hijack/distinfo Sat May 6 07:36:39 2017 (r440238) @@ -0,0 +1,3 @@ +TIMESTAMP = 1465909608 +SHA256 (django-hijack-2.1.1.tar.gz) = 2b90d9fdd733e608aee9b83f25a58ac3d7cb86f337c771fcf1c37713d7bac2d2 +SIZE (django-hijack-2.1.1.tar.gz) = 17047 Added: head/www/py-django-hijack/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-hijack/pkg-descr Sat May 6 07:36:39 2017 (r440238) @@ -0,0 +1,4 @@ +Django superusers/admins can login and work on behalf of other users without +having to know their credentials. + +WWW: https://github.com/arteria/django-hijack