From owner-svn-ports-head@freebsd.org Tue Oct 25 22:42:40 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 58200C22164; Tue, 25 Oct 2016 22:42:40 +0000 (UTC) (envelope-from rm@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 mx1.freebsd.org (Postfix) with ESMTPS id 0BF4CD9A; Tue, 25 Oct 2016 22:42:39 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9PMgdjG004379; Tue, 25 Oct 2016 22:42:39 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9PMgdnR004377; Tue, 25 Oct 2016 22:42:39 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201610252242.u9PMgdnR004377@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Tue, 25 Oct 2016 22:42:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424659 - in head/net-p2p/libtorrent-rasterbar: . 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-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2016 22:42:40 -0000 Author: rm Date: Tue Oct 25 22:42:38 2016 New Revision: 424659 URL: https://svnweb.freebsd.org/changeset/ports/424659 Log: net-p2p/libtorrent-rasterbar: fix runtime of python binding It was reported by many people that python binding fails to import after updating to 1.1.1, breaking net-p2p/deluge runtime at least. Bump PORTREVISION to initiate packages rebuild. Fix is based on this commit: https://github.com/voidlinux/void-packages/commit/e3a19958 PR: 213739 Reported by: many Approved by: portmgr (just-fix-it blanket) Added: head/net-p2p/libtorrent-rasterbar/files/patch-bindings_python_compile__flags.in (contents, props changed) Modified: head/net-p2p/libtorrent-rasterbar/Makefile Modified: head/net-p2p/libtorrent-rasterbar/Makefile ============================================================================== --- head/net-p2p/libtorrent-rasterbar/Makefile Tue Oct 25 22:28:22 2016 (r424658) +++ head/net-p2p/libtorrent-rasterbar/Makefile Tue Oct 25 22:42:38 2016 (r424659) @@ -3,6 +3,7 @@ PORTNAME= libtorrent-rasterbar PORTVERSION= 1.1.1 +PORTREVISION= 1 CATEGORIES?= net-p2p ipv6 MASTER_SITES= https://github.com/arvidn/libtorrent/releases/download/libtorrent-${PORTVERSION:S/./_/g}/ Added: head/net-p2p/libtorrent-rasterbar/files/patch-bindings_python_compile__flags.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/libtorrent-rasterbar/files/patch-bindings_python_compile__flags.in Tue Oct 25 22:42:38 2016 (r424659) @@ -0,0 +1,5 @@ +--- bindings/python/compile_flags.in.orig 2016-05-24 02:57:40 UTC ++++ bindings/python/compile_flags.in +@@ -1 +1 @@ +--I@top_srcdir@/include @COMPILETIME_OPTIONS@ @CPPFLAGS@ @BOOST_CPPFLAGS@ @OPENSSL_INCLUDES@ ++-I@top_srcdir@/include @COMPILETIME_OPTIONS@ @CPPFLAGS@ -std=c++11 @BOOST_CPPFLAGS@ @OPENSSL_INCLUDES@