Date: Thu, 8 Nov 2012 14:29:13 -0800 (PST) From: Nat Baldwin <nbaldwin@berkeley.edu> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/173485: confman port relies on wrong version of subversion Message-ID: <20121108222913.C4484119E44@hal.rescomp.berkeley.edu> Resent-Message-ID: <201211082240.qA8Me0QB075923@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 173485 >Category: ports >Synopsis: confman port relies on wrong version of subversion >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Nov 08 22:40:00 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Nat Baldwin >Release: FreeBSD 7.4-RELEASE-p9 amd64 >Organization: University of California, Berkeley >Environment: System: FreeBSD hal.rescomp.berkeley.edu 7.4-RELEASE-p9 FreeBSD 7.4-RELEASE-p9 #0: Wed Jun 13 01:34:32 UTC 2012 root@engineer.rescomp.berkeley.edu:/usr/obj/usr/src/sys/RCBSD amd64 >Description: The sysutils/confman port currently depends on the subversion port. However, it relies on .svn directories for metadata, which subversion stopped using as of version 1.7, which is what the subversion port is currently at. The confman port should instead rely on the subversion16 port which houses the 1.6 branch. >How-To-Repeat: Try to install the confman port and it will attempt to pull in the wrong subversion. >Fix: Here's the very simple makefile fix. I wasn't sure if I was supposed to bump the PORTREVISION, so I did. Sorry if that's wrong. I'm submitting this PR at the request of the busy maintaner. --- Makefile.diff begins here --- --- Makefile.orig 2012-11-08 14:16:34.997054971 -0800 +++ Makefile 2012-11-08 14:16:56.714905673 -0800 @@ -7,6 +7,7 @@ PORTNAME= confman PORTVERSION= 1.9.4b +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://www.timesinks.net/distfiles/ @@ -14,7 +15,7 @@ COMMENT= A revision controlled configuration manager RUN_DEPENDS= bash:${PORTSDIR}/shells/bash \ - svn:${PORTSDIR}/devel/subversion \ + svn:${PORTSDIR}/devel/subversion16 \ sudo:${PORTSDIR}/security/sudo \ greadlink:${PORTSDIR}/sysutils/coreutils \ wget:${PORTSDIR}/ftp/wget --- Makefile.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20121108222913.C4484119E44>