Port details |
- viewvc-devel Web-based Version Control Repository Browsing
- 1.3.0.20230104 devel
=3 Version of this port present on the latest quarterly branch. - Maintainer: dvl@FreeBSD.org
 - Port Added: 2020-11-25 19:30:16
- Last Update: 2023-01-25 17:54:07
- Commit Hash: 40843b1
- People watching this port, also watch:: mod_dav_svn, apache24, pkg, git, subversion
- Also Listed In: python
- License: BSD2CLAUSE
- Description:
- ViewVC is a browser interface for CVS and Subversion version control
repositories. It generates templatized HTML to present navigable directory,
revision, and change log listings. It can display specific versions of files as
well as diffs between those versions. Basically, ViewVC provides the bulk of the
report-like functionality you expect out of your version control tool, but much
more prettily than the average textual command-line program output.
¦ ¦ ¦ ¦ 
- pkg-plist: as obtained via:
make generate-plist - There is no configure plist information for this port.
- Dependency lines:
-
- ${PYTHON_PKGNAMEPREFIX}viewvc-devel>0:devel/viewvc-devel@${PY_FLAVOR}
- Conflicts:
- CONFLICTS_INSTALL:
- Conflicts Matches:
-
There are no Conflicts Matches for this port. This is usually an error.
- To install the port:
- cd /usr/ports/devel/viewvc-devel/ && make install clean
- To add the package, run one of these commands:
- pkg install devel/viewvc-devel
- pkg install py39-viewvc-devel
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above. NOTE: This is a Python port. Instead of py39-viewvc-devel listed in the above command, you can pick from the names under the Packages section.- PKGNAME: py39-viewvc-devel
- Package flavors (<flavor>: <package>)
- distinfo:
- TIMESTAMP = 1672851658
SHA256 (viewvc-viewvc-1.3.0-20230104-a239c4a93093d9f3e0e34ea4d254bde463ad38b1_GH0.tar.gz) = 6e2f304fcde9d76a726b946d47f15045c992e67ee1368c01f0e2f8897c7fc3e4
SIZE (viewvc-viewvc-1.3.0-20230104-a239c4a93093d9f3e0e34ea4d254bde463ad38b1_GH0.tar.gz) = 345541
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- python3.9 : lang/python39
- Test dependencies:
-
- python3.9 : lang/python39
- Runtime dependencies:
-
- py39-pygments>=1.1 : textproc/py-pygments@py39
- py39-subversion>=0 : devel/py-subversion@py39
- python3.9 : lang/python39
- apxs : www/apache24
- There are no ports dependent upon this port
Configuration Options:
- ===> The following configuration options are available for py39-viewvc-devel-1.3.0.20230104:
APMOD=off: depend on Apache module
SUBVERSION=on: Subversion version control support
WEBSRV=on: Enable web server support
====> depend on Apache module: you have to select exactly one of them
MODWSGI=off: Add mod_wsgi to the list of package dependencies
====> Enable web server support: you have to select exactly one of them
APACHE=on: Apache server support
LIGHTTPD=off: Lighttpd server support
===> Use 'make config' to modify these settings
- Options name:
- devel_viewvc-devel
- USES:
- cpe python:3.6+ apache:run
- pkg-message:
- For install:
- To use ViewVC, modify the configuration file located at
/usr/local/viewvc/viewvc.conf.
If no webserver was selected during installation, then
a rc script for running ViewVC standalone is installed.
To enable the standalone ViewVC server in rc.conf use
parameter viewvc_enable="YES".
You can also adjust the user which runs the ViewVC standalone
server with the parameter "viewvc_user".
If you want to run the ViewVC standalone server with another
IP/PORT, use the parameter "viewvc_flags".
To see all available parameters, use the command
/usr/local/viewvc/bin/standalone.py --help
To use ViewVC with Apache or lighttpd as a CGI script,
see the following config examples.
Example config lines for Apache 2.4
===================================
<IfModule wsgi_module>
WSGIRestrictSignal Off
</IfModule>
<IfModule !wsgi_module>
ScriptAlias "/viewvc" "/usr/local/viewvc/bin/cgi/viewvc.cgi"
</IfModule>
<IfModule wsgi_module>
WSGIScriptAlias "/viewvc" "/usr/local/viewvc/bin/wsgi/viewvc.wsgi"
</IfModule>
<Location /viewvc>
Options NONE +ExecCGI
</Location>
Example config lines for lighttpd
=================================
server.modules = (
"mod_alias",
"mod_access"
)
alias.url += ( "/viewvc" => "/usr/local/viewvc/bin/cgi" )
$HTTP["url"] =~ "^/viewvc/" {
index-file.names = ( "viewvc.cgi" )
cgi.assign = (
".cgi" => "/usr/local/bin/python3.9",
)
}
Note: Cvsdb (Bonsai-like repository query) feature is not stable and
have some incompatibility on DB data with any released version,
(and it may be also incompatible with any feature release).
- If upgrading from < 1.3.0:
- Please review your vievc.conf, see viewvc.sample.conf
======================================================
- the template path has changed
- the vhost notation has changed
Additional upgrade informations:
https://github.com/viewvc/viewvc/blob/master/docs/upgrading-howto.html
Note: Cvsdb (Bonsai-like repository query) feature is not stable and
have some incompatibility on DB data with any released version,
(and it may be also incompatible with any feature release).
So if you want to use this feature, make sure to make back up
of existing DB and then rebuild your DB data with
cvsdbadmin/svndbadmin.
- WWW: https://www.viewvc.org/
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
1.3.0.20230104 25 Jan 2023 17:54:07
    |
Muhammad Moinur Rahman (bofh)  |
Mk/Uses/apache.mk: Refactor after removal of older versions
apache22 and apache25 had been removed a long time ago however the
apache.mk file has never been refactored and is out of sync from the
file Mk/bsd.default-versions.mk. These changes refactors the removals of
the older versions. In addition:
- Move some keywords like USE_APACHE, USE_APACHE_BUILD, USE_APACHE_RUN
from SANITY_DEPRECATED to SANITY_UNSUPPORTED
- Remove apache versions from ports Makefiles as currently there is only
one available version in the tree. However the version checks are
still valid and should work flawlessly whenever a new version is
added. For example USES=apache:2.2+ are simply replaced with
USES=apache. As currently there are no other versions available for
test this could not be checked on it's own ground.
- Update FOO_USE=APACHE=yes to FOO_USES=apache
- Remove trailing whitespaces
Approved by: portmgr
Differential Revision: https://reviews.freebsd.org/D38113 |
1.3.0.20230104 05 Jan 2023 21:09:37
    |
Dan Langille (dvl)  |
devel/viewvc-devel: Fix my broken patch.
PR: 268754
Reported by: Alex |
1.3.0.20230104 05 Jan 2023 17:28:59
    |
Dan Langille (dvl)  |
devel/viewvc-devel: update to 1.3.0-20230104
fixes CVE-2023-22464b re cross site scripting
PR: 268754
Security: CVE-2023-22464 |
07 Sep 2022 21:58:51
    |
Stefan Eßer (se)  |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
1.3.0.20201006_1 07 Sep 2022 21:10:59
    |
Stefan Eßer (se)  |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
1.3.0.20201006_1 20 Jul 2022 14:21:35
    |
Tobias C. Berner (tcberner)  |
devel: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* "Waitman Gobble" <uzimac@da3m0n8t3r.com>
* <jkoshy@FreeBSD.org>
* Aaron Dalton <aaron@FreeBSD.org>
* Aaron Dalton <aaron@daltons.ca>
* Aaron H. K. Diep <ahkdiep@gmail.com>
* Aaron Hurt <ahurt@anbcs.com>
* Abel Chow <abel_chow@yahoo.com>
* Adam McLaurin
* Adam Saponara <as@php.net>
* Adam Weinberger <adamw@FreeBSD.org>
* Ade Lovett <ade@FreeBSD.org> (Only the first 15 lines of the commit message are shown above ) |
1.3.0.20201006_1 16 Oct 2021 09:51:39
    |
Jimmy Olgeni (olgeni)  |
*: fix tab vs. space issues, and comments according to the guide. |
1.3.0.20201006_1 30 Jun 2021 05:09:36
    |
Fukang Chen (loader)  |
Mk/bsd.options.desc.mk: Add shared version control OPTIONS & descriptions
- Add CVS description
- Add DARCS description
- Add GIT description
- Add MERCURIAL description
- Add PERFORCE description
- Rename SVN to SUBVERSION
devel/anjuta:
- Rename OPTION SVN to SUBVERSION
- Sort OPTIONS_DEFINE and OPTIONS_DEFAULT
- Change SUBVERSION_DESC to use the default description
devel/git: (Only the first 15 lines of the commit message are shown above ) |
1.3.0.20201006 20 Jun 2021 16:16:17
    |
Po-Chuan Hsieh (sunpoet)  |
devel/viewvc-devel: Remove PY_PYGMENTS
With hat: python |
1.3.0.20201006 06 Apr 2021 14:31:13
    |
Mathieu Arnold (mat)  |
all: Remove all other $FreeBSD keywords. |
1.3.0.20201006 06 Apr 2021 14:31:07
    |
Mathieu Arnold (mat)  |
Remove # $FreeBSD$ from Makefiles. |
1.3.0.20201006 29 Dec 2020 12:27:56
  |
rene  |
devel/viewvc-devel: drop optional dependency on expired databases/py-MySQLdb |
1.3.0.20201006 25 Nov 2020 19:29:36
  |
dvl  |
Add devel/viewvc-devel which uses Python 3
The original PR is from Robert William Vesterman but the bulk of this patch
comes from Yasuhito FUTATSUKI <freebsd-bug-report-yf@yf.bsdclub.org>
PR: 247161,247804
Submitted by: Robert William Vesterman <bob@vesterman.com>,Yasuhito FUTATSUKI
<freebsd-bug-report-yf@yf.bsdclub.org>
Approved by: maintainer timeout (7 weeks) |