From owner-svn-ports-all@freebsd.org Tue Oct 18 18:37:00 2016 Return-Path: Delivered-To: svn-ports-all@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 551C7C1773C; Tue, 18 Oct 2016 18:37:00 +0000 (UTC) (envelope-from novel@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 26F34C5D; Tue, 18 Oct 2016 18:37:00 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9IIax4a023769; Tue, 18 Oct 2016 18:36:59 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9IIaxrF023768; Tue, 18 Oct 2016 18:36:59 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201610181836.u9IIaxrF023768@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Tue, 18 Oct 2016 18:36:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424200 - head/devel/py-oslo.config 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.23 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: Tue, 18 Oct 2016 18:37:00 -0000 Author: novel Date: Tue Oct 18 18:36:59 2016 New Revision: 424200 URL: https://svnweb.freebsd.org/changeset/ports/424200 Log: devel/py-oslo.config: respect hier(7) - Use ${PREFIX}/etc instead of /etc for configuration files - Bump PORTREVISION PR: 213542 Submitted by: Alexander Nusov (maintainer) Modified: head/devel/py-oslo.config/Makefile Modified: head/devel/py-oslo.config/Makefile ============================================================================== --- head/devel/py-oslo.config/Makefile Tue Oct 18 18:30:24 2016 (r424199) +++ head/devel/py-oslo.config/Makefile Tue Oct 18 18:36:59 2016 (r424200) @@ -3,6 +3,7 @@ PORTNAME= oslo.config PORTVERSION= 3.17.0 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -23,4 +24,10 @@ NO_ARCH= yes USES= python USE_PYTHON= autoplist distutils +post-patch: + @${REINPLACE_CMD} -e "s|/etc|${PREFIX}/etc|g" \ + ${WRKSRC}/doc/source/sphinxconfiggen.rst \ + ${WRKSRC}/oslo_config/_list_opts.py \ + ${WRKSRC}/oslo_config/cfg.py + .include