Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Aug 2018 18:08:41 +0000
From:      bugzilla-noreply@freebsd.org
To:        ports-bugs@FreeBSD.org
Subject:   [Bug 230544] sysutils/duply: Port broken after update to 2.1
Message-ID:  <bug-230544-7788@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D230544

            Bug ID: 230544
           Summary: sysutils/duply: Port broken after update to 2.1
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Only Me
          Priority: ---
         Component: Individual Port(s)
          Assignee: ports-bugs@FreeBSD.org
          Reporter: freebsd@mnd.sc
                CC: michael@ranner.eu
             Flags: maintainer-feedback?(michael@ranner.eu)
                CC: michael@ranner.eu

sysutils/duply is broken in version 2.1, due to the incorrect replacement of
the python interpreter variable. The variable is called "python_binary" now,
but only "python" is replaced. This results in
"$(/usr/local/bin/python2.7_binary)" which of course does not work.

I'm not sure the replacement is actually needed anymore, as duply seems to =
work
fine with this interim patch applied to the makefile:

--- Makefile.orig       2018-08-11 20:02:43.020810000 +0200
+++ Makefile    2018-08-11 20:03:02.549038000 +0200
@@ -28,7 +28,7 @@

 post-patch:
        ${REINPLACE_CMD} -e "s,/etc/duply,${ETCDIR},g" ${WRKSRC}/duply
-       ${REINPLACE_CMD} -e "s,(python,(${PYTHON_CMD},g" ${WRKSRC}/duply
+       #${REINPLACE_CMD} -e "s,(python,(${PYTHON_CMD},g" ${WRKSRC}/duply

 do-install:
        ${INSTALL_SCRIPT} ${WRKSRC}/duply ${STAGEDIR}${PREFIX}/bin/duply

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-230544-7788>