From owner-svn-ports-all@FreeBSD.ORG Sun Jun 14 14:28:17 2015 Return-Path: Delivered-To: svn-ports-all@hub.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 821AD33F; Sun, 14 Jun 2015 14:28:17 +0000 (UTC) (envelope-from novel@FreeBSD.org) 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 564A9380; Sun, 14 Jun 2015 14:28:17 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5EESHXl030470; Sun, 14 Jun 2015 14:28:17 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5EESGvf030467; Sun, 14 Jun 2015 14:28:16 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201506141428.t5EESGvf030467@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Sun, 14 Jun 2015 14:28:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r389638 - in head/devel/py-xattr: . files 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.20 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: Sun, 14 Jun 2015 14:28:17 -0000 Author: novel Date: Sun Jun 14 14:28:15 2015 New Revision: 389638 URL: https://svnweb.freebsd.org/changeset/ports/389638 Log: Update to 0.7.5. PR: 200551 Submitted by: novel Approved by: maintainer timeout (2 weeks) Added: head/devel/py-xattr/files/ head/devel/py-xattr/files/patch-xattr-lib.py (contents, props changed) Modified: head/devel/py-xattr/Makefile head/devel/py-xattr/distinfo Modified: head/devel/py-xattr/Makefile ============================================================================== --- head/devel/py-xattr/Makefile Sun Jun 14 14:17:05 2015 (r389637) +++ head/devel/py-xattr/Makefile Sun Jun 14 14:28:15 2015 (r389638) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= xattr -PORTVERSION= 0.6.4 -PORTREVISION= 1 +PORTVERSION= 0.7.5 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,6 +13,9 @@ COMMENT= Python wrapper for extended fil LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>0:${PORTSDIR}/devel/py-cffi +RUN_DEPENDS:= ${BUILD_DEPENDS} + USES= python USE_PYTHON= distutils autoplist Modified: head/devel/py-xattr/distinfo ============================================================================== --- head/devel/py-xattr/distinfo Sun Jun 14 14:17:05 2015 (r389637) +++ head/devel/py-xattr/distinfo Sun Jun 14 14:28:15 2015 (r389638) @@ -1,2 +1,2 @@ -SHA256 (xattr-0.6.4.tar.gz) = f9dcebc99555634b697fa3dad8ea3047deb389c6f1928d347a0c49277a5c0e9e -SIZE (xattr-0.6.4.tar.gz) = 15207 +SHA256 (xattr-0.7.5.tar.gz) = 32ceae0a55e8a2f5de35f085397aaaf55ae80dc127fd8613f76d3945ff4bf2b9 +SIZE (xattr-0.7.5.tar.gz) = 21717 Added: head/devel/py-xattr/files/patch-xattr-lib.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-xattr/files/patch-xattr-lib.py Sun Jun 14 14:28:15 2015 (r389638) @@ -0,0 +1,11 @@ +--- xattr.orig/lib.py ++++ xattr/lib.py +@@ -48,6 +48,8 @@ + #define XATTR_XATTR_REPLACE 0x0004 + #define XATTR_XATTR_NOSECURITY 0x0008 + ++#define XATTR_CREATE 0x1 ++#define XATTR_REPLACE 0x2 + + /* Converts a freebsd format attribute list into a NULL terminated list. + * While the man page on extattr_list_file says it is NULL terminated,