From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Sep 21 14:30:02 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4A2B31065674 for ; Tue, 21 Sep 2010 14:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0C5D58FC16 for ; Tue, 21 Sep 2010 14:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o8LEU116049918 for ; Tue, 21 Sep 2010 14:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o8LEU1X1049912; Tue, 21 Sep 2010 14:30:01 GMT (envelope-from gnats) Resent-Date: Tue, 21 Sep 2010 14:30:01 GMT Resent-Message-Id: <201009211430.o8LEU1X1049912@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, Sofian Brabez Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9A5BD1065672 for ; Tue, 21 Sep 2010 14:26:18 +0000 (UTC) (envelope-from sbrabez@gmail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 311958FC19 for ; Tue, 21 Sep 2010 14:26:17 +0000 (UTC) Received: by wyb33 with SMTP id 33so7602420wyb.13 for ; Tue, 21 Sep 2010 07:26:17 -0700 (PDT) Received: by 10.216.3.19 with SMTP id 19mr5696964weg.108.1285079177211; Tue, 21 Sep 2010 07:26:17 -0700 (PDT) Received: from localhost (paris.office.wallix.com [82.238.42.70]) by mx.google.com with ESMTPS id p45sm6041790weq.21.2010.09.21.07.26.16 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 21 Sep 2010 07:26:16 -0700 (PDT) Message-Id: <4c98c088.c3e9d80a.592d.60b7@mx.google.com> Date: Tue, 21 Sep 2010 07:26:16 -0700 (PDT) From: Sofian Brabez To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/150786: [patch] devel/py-usb: update to 0.4.3, take maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Sep 2010 14:30:02 -0000 >Number: 150786 >Category: ports >Synopsis: [patch] devel/py-usb: update to 0.4.3, take maintainership >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 Sep 21 14:30:01 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sofian Brabez >Release: FreeBSD 8.1-STABLE i386 >Organization: >Environment: System: FreeBSD freebsd.ifr.lan 8.1-STABLE FreeBSD 8.1-STABLE #2: Thu Sep 2 14:53:08 CEST >Description: - Update to 0.4.3 - Take maintainership - Respect NOPORTEXAMPLES Added file(s): - pkg-plist Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- py26-usb-0.4.3.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/py-usb/Makefile /tmp/py-usb/Makefile --- /usr/ports/devel/py-usb/Makefile 2009-08-22 02:18:30.000000000 +0200 +++ /tmp/py-usb/Makefile 2010-09-21 16:26:06.000000000 +0200 @@ -5,20 +5,22 @@ # $FreeBSD: ports/devel/py-usb/Makefile,v 1.9 2009/08/22 00:18:30 amdmi3 Exp $ # -PORTNAME= pyusb -PORTVERSION= 0.4.2 +PORTNAME= usb +PORTVERSION= 0.4.3 CATEGORIES= devel python -MASTER_SITES= SF \ - ${MASTER_SITE_BERLIOS} - +MASTER_SITES= SF +MASTER_SITE_SUBDIR= py${PORTNAME}/PyUSB%200.x/${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= py${PORTNAME}-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sbrabez@gmail.com COMMENT= Python wrapper around libusb USE_PYTHON= yes USE_PYDISTUTILS= yes -PLIST_FILES= %%PYTHON_SITELIBDIR%%/usb.so +PYDISTUTILS_PKGNAME= py${PORTNAME} + +EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} .include @@ -30,4 +32,10 @@ .endif +post-install: +.if !defined(NOPORTEXAMPLES) + ${MKDIR} ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/samples/* ${EXAMPLESDIR} +.endif + .include diff -ruN --exclude=CVS /usr/ports/devel/py-usb/distinfo /tmp/py-usb/distinfo --- /usr/ports/devel/py-usb/distinfo 2009-07-21 02:55:36.000000000 +0200 +++ /tmp/py-usb/distinfo 2010-09-21 16:23:04.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (pyusb-0.4.2.tar.gz) = 5667a00af1ac0d5062103b4512e227f8 -SHA256 (pyusb-0.4.2.tar.gz) = 121294da4c58d10bbb84404f27d5bdd75713a0b37ae38c8a873008c0b39e3dfe -SIZE (pyusb-0.4.2.tar.gz) = 15801 +MD5 (pyusb-0.4.3.tar.gz) = a1a43bc6407caccbc22073c56439aa06 +SHA256 (pyusb-0.4.3.tar.gz) = 3c08b292886b7001ab088345af4d0dfe3e7d37bfc4b2bdcd7edb564ea3ef04d5 +SIZE (pyusb-0.4.3.tar.gz) = 16242 diff -ruN --exclude=CVS /usr/ports/devel/py-usb/pkg-plist /tmp/py-usb/pkg-plist --- /usr/ports/devel/py-usb/pkg-plist 1970-01-01 01:00:00.000000000 +0100 +++ /tmp/py-usb/pkg-plist 2010-09-21 16:11:31.000000000 +0200 @@ -0,0 +1,5 @@ +@comment $FreeBSD$ +%%PYTHON_SITELIBDIR%%/usb.so +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/usbenum.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/usbprint.py +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% --- py26-usb-0.4.3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: