From owner-svn-ports-head@freebsd.org Thu Mar 30 02:40:49 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 E873ED254A3; Thu, 30 Mar 2017 02:40:49 +0000 (UTC) (envelope-from lwhsu@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 B609E7B5; Thu, 30 Mar 2017 02:40:49 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2U2emlu015374; Thu, 30 Mar 2017 02:40:48 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2U2em0P015373; Thu, 30 Mar 2017 02:40:48 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201703300240.v2U2em0P015373@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Thu, 30 Mar 2017 02:40:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r437267 - head/net/py-pysendfile 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: Thu, 30 Mar 2017 02:40:50 -0000 Author: lwhsu Date: Thu Mar 30 02:40:48 2017 New Revision: 437267 URL: https://svnweb.freebsd.org/changeset/ports/437267 Log: - Add LICENSE_FILE - Strip sendfile.so PR: 217373 Submitted by: Danilo G. Baio (dbaio) Approved by: koobs (maintainer) Modified: head/net/py-pysendfile/Makefile Modified: head/net/py-pysendfile/Makefile ============================================================================== --- head/net/py-pysendfile/Makefile Thu Mar 30 01:58:06 2017 (r437266) +++ head/net/py-pysendfile/Makefile Thu Mar 30 02:40:48 2017 (r437267) @@ -3,6 +3,7 @@ PORTNAME= pysendfile PORTVERSION= 2.0.1 +PORTREVISION= 1 CATEGORIES= net python devel MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,10 +12,14 @@ MAINTAINER= koobs@FreeBSD.org COMMENT= Python interface to sendfile(2) LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE CONFLICTS_INSTALL= py*-sendfile-[0-9]* USES= python USE_PYTHON= distutils autoplist +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/sendfile.so + .include