From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 4 13:40:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 8A37786F for ; Tue, 4 Jun 2013 13:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 6D59A11FB for ; Tue, 4 Jun 2013 13:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r54De1kP049959 for ; Tue, 4 Jun 2013 13:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r54De18n049958; Tue, 4 Jun 2013 13:40:01 GMT (envelope-from gnats) Resent-Date: Tue, 4 Jun 2013 13:40:01 GMT Resent-Message-Id: <201306041340.r54De18n049958@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Tijl Coosemans Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 8FA86729 for ; Tue, 4 Jun 2013 13:34:06 +0000 (UTC) (envelope-from tijl@coosemans.org) Received: from mailrelay011.isp.belgacom.be (mailrelay011.isp.belgacom.be [195.238.6.178]) by mx1.freebsd.org (Postfix) with ESMTP id 3306711CA for ; Tue, 4 Jun 2013 13:34:05 +0000 (UTC) Received: from 251.145-176-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.176.145.251]) by relay.skynet.be with ESMTP; 04 Jun 2013 15:34:03 +0200 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.14.7/8.14.7) with ESMTP id r54DY2gT023284 for ; Tue, 4 Jun 2013 15:34:02 +0200 (CEST) (envelope-from tijl@kalimero.tijl.coosemans.org) Received: (from tijl@localhost) by kalimero.tijl.coosemans.org (8.14.7/8.14.7/Submit) id r54DY2mj023283; Tue, 4 Jun 2013 15:34:02 +0200 (CEST) (envelope-from tijl) Message-Id: <201306041334.r54DY2mj023283@kalimero.tijl.coosemans.org> Date: Tue, 4 Jun 2013 15:34:02 +0200 (CEST) From: Tijl Coosemans To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/179298: [patch] devel/tevent: 0.9.18 and fix ldb package build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Tijl Coosemans List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Jun 2013 13:40:02 -0000 >Number: 179298 >Category: ports >Synopsis: [patch] devel/tevent: 0.9.18 and fix ldb package build >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Jun 04 13:40:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Tijl Coosemans >Release: FreeBSD 10.0-CURRENT i386 >Organization: >Environment: >Description: - update devel/tevent to 0.9.18. - precompile tevent.py to fix databases/ldb package build: http://pointyhat.freebsd.org/errorlogs/amd64-errorlogs/e.9.20130528113939.pointyhat/ldb-1.1.15.log >How-To-Repeat: >Fix: --- tevent.patch begins here --- Index: devel/tevent/Makefile =================================================================== --- devel/tevent/Makefile (revision 319762) +++ devel/tevent/Makefile (working copy) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= tevent -PORTVERSION= 0.9.17 +PORTVERSION= 0.9.18 PORTREVISION= 0 PORTEPOCH= 0 CATEGORIES= devel @@ -61,7 +61,9 @@ _MAKE_JOBS= --jobs=${MAKE_JOBS_NUMBER} .if ${PORT_OPTIONS:MPYTHON} USE_PYTHON_RUN= yes PLIST_FILES+= %%PYTHON_SITELIBDIR%%/_tevent.so \ - %%PYTHON_SITELIBDIR%%/tevent.py + %%PYTHON_SITELIBDIR%%/tevent.py \ + %%PYTHON_SITELIBDIR%%/tevent.pyc \ + %%PYTHON_SITELIBDIR%%/tevent.pyo PLIST_DIRSTRY+= %%PYTHON_SITELIBDIR%% \ %%PYTHON_LIBDIR%% .else @@ -100,5 +102,9 @@ do-build: do-install: @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} ${INSTALL_WRKSRC}/${WAF_TOOL} ${MAKE_ARGS} ${INSTALL_TARGET}) +.if ${PORT_OPTIONS:MPYTHON} + ${PYTHON_CMD} -m py_compile ${PYTHON_SITELIBDIR}/tevent.py + ${PYTHON_CMD} -O -m py_compile ${PYTHON_SITELIBDIR}/tevent.py +.endif .include Index: devel/tevent/distinfo =================================================================== --- devel/tevent/distinfo (revision 319762) +++ devel/tevent/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (tevent-0.9.17.tar.gz) = 9155a85e83b6df38d251c292ca70950dd3f2ba325aad2cb8429ae0a3ee1d6b6c -SIZE (tevent-0.9.17.tar.gz) = 496964 +SHA256 (tevent-0.9.18.tar.gz) = 5c636a0c55a7b59745bae0d8ae3900b5ea8c09bfff6001dcd95f1db9cd06ea4f +SIZE (tevent-0.9.18.tar.gz) = 505276 --- tevent.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: