From owner-svn-ports-all@freebsd.org Fri Aug 17 10:11:00 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6997F1088E92; Fri, 17 Aug 2018 10:11:00 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1899775801; Fri, 17 Aug 2018 10:11:00 +0000 (UTC) (envelope-from matthew@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 ECAB726E4D; Fri, 17 Aug 2018 10:10:59 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7HAAx65025829; Fri, 17 Aug 2018 10:10:59 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7HAAxar025825; Fri, 17 Aug 2018 10:10:59 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201808171010.w7HAAxar025825@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Fri, 17 Aug 2018 10:10:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r477418 - in head/devel: . py-shellingham X-SVN-Group: ports-head X-SVN-Commit-Author: matthew X-SVN-Commit-Paths: in head/devel: . py-shellingham X-SVN-Commit-Revision: 477418 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.27 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: Fri, 17 Aug 2018 10:11:00 -0000 Author: matthew Date: Fri Aug 17 10:10:58 2018 New Revision: 477418 URL: https://svnweb.freebsd.org/changeset/ports/477418 Log: Shellingham detects what shell the current Python executable is running in. WWW: https://github.com/sarugaku/shellingham Added: head/devel/py-shellingham/ head/devel/py-shellingham/Makefile (contents, props changed) head/devel/py-shellingham/distinfo (contents, props changed) head/devel/py-shellingham/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Aug 17 09:55:25 2018 (r477417) +++ head/devel/Makefile Fri Aug 17 10:10:58 2018 (r477418) @@ -5047,6 +5047,7 @@ SUBDIR += py-setuptools_scm SUBDIR += py-sh SUBDIR += py-shapely + SUBDIR += py-shellingham SUBDIR += py-should_dsl SUBDIR += py-simpleeval SUBDIR += py-simplegeneric Added: head/devel/py-shellingham/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-shellingham/Makefile Fri Aug 17 10:10:58 2018 (r477418) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= shellingham +PORTVERSION= 1.2.4 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= matthew@FreeBSD.org +COMMENT= Detect what shell the current Python executable is running in + +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist concurrent distutils + +# No tests implemented for this module. + +.include Added: head/devel/py-shellingham/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-shellingham/distinfo Fri Aug 17 10:10:58 2018 (r477418) @@ -0,0 +1,3 @@ +TIMESTAMP = 1534500162 +SHA256 (shellingham-1.2.4.tar.gz) = c09c563a2e185ec3d64e43c286dbba3150fc182d96cd29ff5b002f3d3c3f5076 +SIZE (shellingham-1.2.4.tar.gz) = 5967 Added: head/devel/py-shellingham/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-shellingham/pkg-descr Fri Aug 17 10:10:58 2018 (r477418) @@ -0,0 +1,3 @@ +Shellingham detects what shell the current Python executable is running in. + +WWW: https://github.com/sarugaku/shellingham