From amdmi3@amdmi3.ru  Mon Jan 20 14:02:10 2014
Return-Path: <amdmi3@amdmi3.ru>
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 9B70A1E9;
	Mon, 20 Jan 2014 14:01:15 +0000 (UTC)
Received: from smtpout6.timeweb.ru (smtpout6.timeweb.ru [92.53.117.39])
	(using TLSv1 with cipher AES256-SHA (256/256 bits))
	(No client certificate requested)
	by mx1.freebsd.org (Postfix) with ESMTPS id 55FA11282;
	Mon, 20 Jan 2014 14:01:15 +0000 (UTC)
Received: from [213.148.20.85] (helo=hive.panopticon)
	by smtp.timeweb.ru with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32)
	(Exim 4.76)
	(envelope-from <amdmi3@amdmi3.ru>)
	id 1W5FPd-0003M8-Go; Mon, 20 Jan 2014 18:01:13 +0400
Received: from hades.panopticon (hades.panopticon [192.168.0.32])
	by hive.panopticon (Postfix) with ESMTP id C069DE78;
	Mon, 20 Jan 2014 18:01:03 +0400 (MSK)
Received: by hades.panopticon (Postfix, from userid 1000)
	id BC5D391D0; Mon, 20 Jan 2014 18:01:03 +0400 (MSK)
Message-Id: <20140120140103.BC5D391D0@hades.panopticon>
Date: Mon, 20 Jan 2014 18:01:03 +0400 (MSK)
From: Dmitry Marakasov <amdmi3@amdmi3.ru>
To: FreeBSD-gnats-submit@freebsd.org
Cc: olivierd@FreeBSD.org
Subject: [PATCH] x11/keybinder: disable g-ir-scanner cache
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         185910
>Category:       ports
>Synopsis:       [PATCH] x11/keybinder: disable g-ir-scanner cache
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    olivierd
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Jan 20 14:10:00 UTC 2014
>Closed-Date:    Tue Jan 28 19:40:03 UTC 2014
>Last-Modified:  Tue Jan 28 19:40:03 UTC 2014
>Originator:     Dmitry Marakasov
>Release:        FreeBSD 10.0-RELEASE amd64
>Organization:
>Environment:
System: FreeBSD hades.panopticon 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260807: Fri Jan 17 13:14:28 MSK
>Description:
- Disable g-ir-scanner cache to not pollute /root/.cache on build

Port maintainer (olivierd@FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: SVN)
>How-To-Repeat:
>Fix:

--- keybinder-0.3.0_1.patch begins here ---
Index: Makefile
===================================================================
--- Makefile	(revision 340395)
+++ Makefile	(working copy)
@@ -18,6 +18,7 @@
 USE_XORG=	x11 xext xrender
 USES=		gmake pkgconfig pathfix
 USE_LDCONFIG=	yes
+MAKE_ENV=	GI_SCANNER_DISABLE_CACHE=yes
 
 OPTIONS_DEFINE=	DOCS EXAMPLES PYTHON LUA
 OPTIONS_DEFAULT=	PYTHON
--- keybinder-0.3.0_1.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->olivierd 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Mon Jan 20 14:10:08 UTC 2014 
Responsible-Changed-Why:  
Over to maintainer (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=185910 

From: Olivier Duchateau <duchateau.olivier@gmail.com>
To: bug-followup <bug-followup@freebsd.org>
Cc:  
Subject: Re: ports/185910: [PATCH] x11/keybinder: disable g-ir-scanner cache
Date: Mon, 20 Jan 2014 17:22:53 +0100

 It's ok, feel free to commit
 
 -- 
 olivier

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/185910: commit references a PR
Date: Tue, 28 Jan 2014 19:38:53 +0000 (UTC)

 Author: olivierd
 Date: Tue Jan 28 19:38:45 2014
 New Revision: 341648
 URL: http://svnweb.freebsd.org/changeset/ports/341648
 QAT: https://qat.redports.org/buildarchive/r341648/
 
 Log:
   - Fix Python and Lua versions
   - Disable g-ir-scanner cache [1]
   
   PR:		185910
   Submitted by:	amdmi3@ [1]
 
 Modified:
   head/x11/keybinder/Makefile
 
 Modified: head/x11/keybinder/Makefile
 ==============================================================================
 --- head/x11/keybinder/Makefile	Tue Jan 28 19:15:44 2014	(r341647)
 +++ head/x11/keybinder/Makefile	Tue Jan 28 19:38:45 2014	(r341648)
 @@ -9,15 +9,14 @@ MASTER_SITES=	GENTOO/distfiles
  MAINTAINER=	olivierd@FreeBSD.org
  COMMENT=	Library for registering keyboard shortcuts
  
 -BUILD_DEPENDS=	g-ir-scanner:${PORTSDIR}/devel/gobject-introspection
 -
  LICENSE=	GPLv2
  
  GNU_CONFIGURE=	yes
 -USE_GNOME=	gtk20
 +USE_GNOME=	gtk20 introspection
  USE_XORG=	x11 xext xrender
  USES=		gmake pkgconfig pathfix
  USE_LDCONFIG=	yes
 +MAKE_ENV=	GI_SCANNER_DISABLE_CACHE=yes
  
  OPTIONS_DEFINE=	DOCS EXAMPLES PYTHON LUA
  OPTIONS_DEFAULT=	PYTHON
 @@ -28,7 +27,7 @@ LUA_DESC=	Lua bindings
  .include <bsd.port.options.mk>
  
  .if ${PORT_OPTIONS:MPYTHON}
 -USE_PYTHON=	yes
 +USE_PYTHON=	2
  USE_GNOME+=	pygtk2
  PLIST_SUB+=	PYTHON=""
  .else
 @@ -37,7 +36,7 @@ PLIST_SUB+=	PYTHON="@comment "
  .endif
  
  .if ${PORT_OPTIONS:MLUA}
 -USE_LUA=	5.1+
 +USE_LUA=	5.1
  CONFIGURE_ARGS+=	--with-lua-includes=${LUA_INCDIR}
  PLIST_SUB+=	LUA=""
  .else
 @@ -58,7 +57,7 @@ PLIST_SUB+=	DOCS="@comment "
  
  post-install:
  .if ${PORT_OPTIONS:MEXAMPLES}
 -	@${REINPLACE_CMD} -i '' -e 's|lua5.1|lua-5.1|g' ${WRKSRC}/examples/Makefile
 +	@${REINPLACE_CMD} -i '' -e 's|lua5.1|lua-${LUA_VER}|g' ${WRKSRC}/examples/Makefile
  	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
  	${INSTALL_DATA} ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR}
  .endif
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: open->closed 
State-Changed-By: olivierd 
State-Changed-When: Tue Jan 28 19:40:01 UTC 2014 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=185910 
>Unformatted:
