From owner-svn-ports-all@FreeBSD.ORG Mon May 12 14:35:33 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3298ED2D; Mon, 12 May 2014 14:35:33 +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 05D812BF5; Mon, 12 May 2014 14:35:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4CEZWJ1067171; Mon, 12 May 2014 14:35:32 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4CEZW74067169; Mon, 12 May 2014 14:35:32 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201405121435.s4CEZW74067169@svn.freebsd.org> From: Steve Wills Date: Mon, 12 May 2014 14:35:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353828 - head/databases/py-cmemcache 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 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: Mon, 12 May 2014 14:35:33 -0000 Author: swills Date: Mon May 12 14:35:32 2014 New Revision: 353828 URL: http://svnweb.freebsd.org/changeset/ports/353828 QAT: https://qat.redports.org/buildarchive/r353828/ Log: - Mark deprecated since it's deprecated upstream [1] [2] - Mark broken on 10.0 and newer because it doesn't build [2] - Stage just so I can commit [2] - Switch to USES=tar:bzip2 to silence warnings [2] - Cleanup pkg-descr [2] - Bump PORTREVISION for package change (pkg-descr) [2] - Not assigning maintainership because port is expiring PR: ports/188825 [1] PR: ports/189681 [2] Submitted by: Bartek Rutkowski [1] Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> [2] Deleted: head/databases/py-cmemcache/pkg-plist Modified: head/databases/py-cmemcache/Makefile head/databases/py-cmemcache/pkg-descr Modified: head/databases/py-cmemcache/Makefile ============================================================================== --- head/databases/py-cmemcache/Makefile Mon May 12 14:21:01 2014 (r353827) +++ head/databases/py-cmemcache/Makefile Mon May 12 14:35:32 2014 (r353828) @@ -3,6 +3,7 @@ PORTNAME= cmemcache PORTVERSION= 0.95 +PORTREVISION= 1 CATEGORIES= databases python MASTER_SITES= http://gijsbert.org/downloads/cmemcache/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,9 +13,18 @@ COMMENT= Python API for memcached, a dis LIB_DEPENDS= libmemcache.so:${PORTSDIR}/databases/libmemcache -USE_BZIP2= yes +USES= tar:bzip2 USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes -.include +DEPRECATED= Deprecated upstream +EXPIRATION_DATE=2014-06-12 + +.include + +.if ${OSVERSION} >= 1000000 +BROKEN= Does not build with CLANG or GCC greater than 4.2 +.endif + +.include Modified: head/databases/py-cmemcache/pkg-descr ============================================================================== --- head/databases/py-cmemcache/pkg-descr Mon May 12 14:21:01 2014 (r353827) +++ head/databases/py-cmemcache/pkg-descr Mon May 12 14:35:32 2014 (r353828) @@ -2,4 +2,4 @@ Python extension for libmemcache, the C same as python-memcache, so it is easy to replace python-memcache with cmemcache, and vice versa. -WWW: http://gijsbert.org/cmemcache/ +WWW: http://gijsbert.org/cmemcache/