ports/127970: [UPDATE] devel/viewvc to 1.0.6

Martin Matuska mm at FreeBSD.org
Thu Oct 9 09:30:11 UTC 2008


>Number:         127970
>Category:       ports
>Synopsis:       [UPDATE] devel/viewvc to 1.0.6
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Oct 09 09:30:10 UTC 2008
>Closed-Date:
>Last-Modified:
>Originator:     Martin Matuska
>Release:        FreeBSD 7.1-PRERELEASE i386/amd64
>Organization:
>Environment:
FreeBSD 7.1-PRERELEASE i386/amd64
>Description:
- Update viewvc from 1.0.5 to 1.0.6

Removed files: files/patch-svn-r1993
>How-To-Repeat:
>Fix:
Index: ports/devel/viewvc/Makefile
===================================================================
RCS file: /home/pcvs/ports/devel/viewvc/Makefile,v
retrieving revision 1.33
diff -u -r1.33 Makefile
--- ports/devel/viewvc/Makefile	22 Aug 2008 16:47:20 -0000	1.33
+++ ports/devel/viewvc/Makefile	9 Oct 2008 09:27:39 -0000
@@ -6,10 +6,9 @@
 #
 
 PORTNAME=	viewvc
-PORTVERSION=	1.0.5
-PORTREVISION=	4
+PORTVERSION=	1.0.6
 CATEGORIES=	devel python
-MASTER_SITES=	http://viewvc.tigris.org/files/documents/3330/41694/
+MASTER_SITES=	http://viewvc.tigris.org/files/documents/3330/43677/
 
 MAINTAINER=	pgollucci at FreeBSD.org
 COMMENT=	Web-based Version Control Repository Browsing
Index: ports/devel/viewvc/distinfo
===================================================================
RCS file: /home/pcvs/ports/devel/viewvc/distinfo,v
retrieving revision 1.15
diff -u -r1.15 distinfo
--- ports/devel/viewvc/distinfo	3 Apr 2008 02:39:36 -0000	1.15
+++ ports/devel/viewvc/distinfo	9 Oct 2008 09:27:39 -0000
@@ -1,3 +1,3 @@
-MD5 (viewvc-1.0.5.tar.gz) = 8fc8107f937b9da481b14333a7fdb29d
-SHA256 (viewvc-1.0.5.tar.gz) = 0caf17fa0137231c0a78a5c57e758da73475212516d4758fe521def007a8fddd
-SIZE (viewvc-1.0.5.tar.gz) = 522323
+MD5 (viewvc-1.0.6.tar.gz) = 882bfbf31773dc3981a8514ca045a30a
+SHA256 (viewvc-1.0.6.tar.gz) = ad56d2ad074bbd09ff1a1968164fd0f14f01241864366e0931d0a265bbff8752
+SIZE (viewvc-1.0.6.tar.gz) = 520839
Index: ports/devel/viewvc/files/patch-svn-r1993
===================================================================
RCS file: ports/devel/viewvc/files/patch-svn-r1993
diff -N ports/devel/viewvc/files/patch-svn-r1993
--- ports/devel/viewvc/files/patch-svn-r1993	22 Aug 2008 16:47:20 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,54 +0,0 @@
-Index: bin/mod_python/viewvc.py
-===================================================================
---- bin/mod_python/viewvc.py	(revision 1992)
-+++ bin/mod_python/viewvc.py	(revision 1993)
-@@ -42,9 +42,15 @@
-   sys.path.insert(0, LIBRARY_DIR)
- 
- import sapi
--import viewvc
--reload(viewvc) # need reload because initial import loads this stub file
-+import imp
- 
-+# Import real ViewVC module
-+fp, pathname, description = imp.find_module('viewvc', [LIBRARY_DIR])
-+try:
-+  viewvc = imp.load_module('viewvc', fp, pathname, description)
-+finally:
-+  if fp:
-+    fp.close()
- 
- def index(req):
-   server = sapi.ModPythonServer(req)
-Index: bin/mod_python/query.py
-===================================================================
---- bin/mod_python/query.py	(revision 1992)
-+++ bin/mod_python/query.py	(revision 1993)
-@@ -42,10 +42,24 @@
-   sys.path.insert(0, LIBRARY_DIR)
- 
- import sapi
--import viewvc
--import query
--reload(query) # need reload because initial import loads this stub file
-+import imp
- 
-+# Import real ViewVC module
-+fp, pathname, description = imp.find_module('viewvc', [LIBRARY_DIR])
-+try:
-+  viewvc = imp.load_module('viewvc', fp, pathname, description)
-+finally:
-+  if fp:
-+    fp.close()
-+
-+# Import real ViewVC Query modules
-+fp, pathname, description = imp.find_module('query', [LIBRARY_DIR])
-+try:
-+  query = imp.load_module('query', fp, pathname, description)
-+finally:
-+  if fp:
-+    fp.close()
-+
- cfg = viewvc.load_config(CONF_PATHNAME)
- 
- def index(req):
>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list