From owner-svn-ports-all@freebsd.org Mon May 18 21:09:53 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E0DAF2DD6D7; Mon, 18 May 2020 21:09:53 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49Qs8x5kyyz4NKG; Mon, 18 May 2020 21:09:53 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BEA1A27B2E; Mon, 18 May 2020 21:09:53 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 04IL9r9D098529; Mon, 18 May 2020 21:09:53 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 04IL9rLu098528; Mon, 18 May 2020 21:09:53 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <202005182109.04IL9rLu098528@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Mon, 18 May 2020 21:09:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r535788 - head/devel/libevent X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/devel/libevent X-SVN-Commit-Revision: 535788 X-SVN-Commit-Repository: ports 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.33 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, 18 May 2020 21:09:53 -0000 Author: zeising Date: Mon May 18 21:09:53 2020 New Revision: 535788 URL: https://svnweb.freebsd.org/changeset/ports/535788 Log: devel/libevent: Don't force Python 2.7 There is no need to force the use of python 2.7 in libevent, it has been updated to work with python 3 in this upstream commit: https://github.com/libevent/libevent/commit/8b0aa7b36a3250fad4953f194c8a94ab25032583 Bump portrevision to force rebuild PR: 246465 Reported by: gahr@ Modified: head/devel/libevent/Makefile Modified: head/devel/libevent/Makefile ============================================================================== --- head/devel/libevent/Makefile Mon May 18 21:04:07 2020 (r535787) +++ head/devel/libevent/Makefile Mon May 18 21:09:53 2020 (r535788) @@ -5,6 +5,7 @@ PORTNAME= libevent DISTVERSIONPREFIX= release- DISTVERSION= 2.1.11 DISTVERSIONSUFFIX= -stable +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= zeising@FreeBSD.org @@ -13,7 +14,7 @@ COMMENT= API for executing callback functions on event LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= autoreconf libtool pathfix pkgconfig python:2.7,env shebangfix +USES= autoreconf libtool pathfix pkgconfig python:env shebangfix SHEBANG_FILES= event_rpcgen.py USE_GITHUB= yes GNU_CONFIGURE= yes