On 09/09/15 06:53, Remi Pointel wrote:
> Hi,
> 
> these are the diff to update mercurial and tortoisehg to latest releases.
> 
> Ok?
> 
> Cheers,
> 
> Remi.
tortoisehg is one I have a fix for locally.

RUN_DEPENDS = ${BUILD_DEPENDS}

can't be used, if USE_CCACHE is set, then devel/ccache is added to the
BUILD_DEPENDS which causes the RUN_DEPENDS dependency list to change and
include devel/ccache requiring a bump.

I used

$ cvs -R -q diff -uNp
Index: Makefile
===================================================================
RCS file: /home/cvs/ports/devel/tortoisehg/Makefile,v
retrieving revision 1.17
diff -u -p -r1.17 Makefile
--- Makefile    1 Mar 2015 14:07:34 -0000       1.17
+++ Makefile    4 Sep 2015 01:14:10 -0000
@@ -21,7 +21,9 @@ BUILD_DEPENDS =               x11/py-qt4 \
                        editors/qscintilla \
                        devel/py-sip

-RUN_DEPENDS =          ${BUILD_DEPENDS} \
+RUN_DEPENDS =          x11/py-qt4 \
+                       editors/qscintilla \
+                       devel/py-sip \
                        editors/py-qscintilla \
                        devel/mercurial>=3.2,<3.4 \
                        devel/py-iniparse

Reply via email to