From owner-svn-ports-all@FreeBSD.ORG Wed Feb 11 13:18:23 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 93700348; Wed, 11 Feb 2015 13:18:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 7E8FAE7F; Wed, 11 Feb 2015 13:18:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1BDINPE091205; Wed, 11 Feb 2015 13:18:23 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1BDINDb091204; Wed, 11 Feb 2015 13:18:23 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201502111318.t1BDINDb091204@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Wed, 11 Feb 2015 13:18:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r378837 - head/databases/py-sqlite3 X-SVN-Group: ports-head 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.18-1 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: Wed, 11 Feb 2015 13:18:23 -0000 Author: koobs Date: Wed Feb 11 13:18:22 2015 New Revision: 378837 URL: https://svnweb.freebsd.org/changeset/ports/378837 QAT: https://qat.redports.org/buildarchive/r378837/ Log: databases/py-sqlite3: Strip shared library - Strip shared extension - Sort DIST* entries - Sort USE_PYTHON values - Add LICENSE_FILE Approved by: python (with hat) Modified: head/databases/py-sqlite3/Makefile Modified: head/databases/py-sqlite3/Makefile ============================================================================== --- head/databases/py-sqlite3/Makefile Wed Feb 11 13:15:41 2015 (r378836) +++ head/databases/py-sqlite3/Makefile Wed Feb 11 13:18:22 2015 (r378837) @@ -3,26 +3,27 @@ PORTNAME= sqlite3 PORTVERSION= ${PYTHON_PORTVERSION} -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= databases python MASTER_SITES= PYTHON MASTER_SITE_SUBDIR= ftp/python/${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= Python-${PORTVERSION} +DIST_SUBDIR= python MAINTAINER= python@FreeBSD.org COMMENT= Standard Python binding to the SQLite3 library LICENSE= PSFL +LICENSE_FILE= ${WRKDIR}/Python-${PORTVERSION}/LICENSE LIB_DEPENDS= libsqlite3.so:${PORTSDIR}/databases/sqlite3 PORTSCOUT= ignore:1 USES= python tar:xz -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist distutils -DIST_SUBDIR= python DISTINFO_FILE= ${PORTSDIR}/lang/python${PYTHON_SUFFIX}/distinfo WRKSRC= ${WRKDIR}/Python-${PORTVERSION}/Modules @@ -37,4 +38,7 @@ post-extract: @${CP} ${FILESDIR}/setup3.py ${WRKSRC}/setup.py .endif +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHON_LIBDIR}/lib-dynload/_sqlite3.so + .include