[Bug 230544] sysutils/duply: Port broken after update to 2.1

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Sat Aug 11 18:08:44 UTC 2018


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230544

            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 at FreeBSD.org
          Reporter: freebsd at mnd.sc
                CC: michael at ranner.eu
             Flags: maintainer-feedback?(michael at ranner.eu)
                CC: michael at 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

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


More information about the freebsd-ports-bugs mailing list