RE: [EXTERNAL] [BULK] Re: GUI interface to Subversion via web browser?
"Williams, James P. {Jim} (JSC-CD4)[KBR Wyle Services, LLC] via users" <[email protected]>
| Newsgroups | gmane.comp.version-control.subversion.user |
|---|---|
| Message-ID | <DS0PR09MB105056454AA967C77D561DB08BFF42@DS0PR09MB10505.namprd09.prod.outlook.com> |
> > ViewVC 1.2.3 does not support Python 3. > > The fact that their newest release, 1.2.3, still requires python 2 does > not exactly fill me with confidence with respect to the health of the > project. :( For what it's worth, I've been using the latest ViewVC commits along master for about a year and have seen no problems. That's been with Python 3.8 and 3.11 so far. I had to ensure some environment variables were exported to CGI scripts so ViewVC can find SVN's Python bindings, something like this in the server start script, export PYTHONPATH=path-to-svn-python-bindings:$PYTHONPATH export LD_LIBRARY_PATH=path-to-svn-libs:$LD_LIBRARY_PATH and this in the server configuration files, PassEnv PYTHONPATH LD_LIBRARY_PATH As simple as that looks, I had to add debugging to ViewVC to figure out why the CGI script was having problems, but that has nothing to do with using master commits. Good luck. Jim