070f09d1ca
(contains security fix for CVE-2011-0728). What's changed in loggerhead? ============================= 1.18.1 [24Mar2011] ------------------ - Fix escaping of filenames in revision views. (William Grant, #740142) - Add missing import to loggerhead.trace, allowing start-loggerhead to run when a log.roll config option is set. (Max Kanat-Alexander, #673999) 1.18 [10Nov2010] ---------------- - Syntax highlighting is no longer applied for files greater than 512K, reducing codebrowse.launchpad.net overloading. (Max Kanat-Alexander, #513044) - Documentation added in the docs directory. README simplified accordingly. (Tres Seaver). - Show svn/git/hg revision ids in loggerhead revision view. (Jelmer Vernooij) - Fix .bzr/smart access to branches in shared repos. (You also need a version of bzr with bug #348308 fixed.) (Andrew Bennetts) - Support FastCGI, SCGI and AJP using flup. (Denis Martinez) - Repository.get_revision_inventory() was removed in bzr 2.2; use Repository.get_inventory() instead. (Matt Nordhoff, #528194) - Ignore readonly+ prefix when checking if Loggerhead is serving a local location. (Reported by Tres Seaver.) (Matt Nordhoff) - Set Cache-Control and Expires headers on static pages. (John Arbash Meinel) - Generate relative links where possible (everywhere but HTTP redirects and feed IDs). (Michael Hudson, Matt Nordhoff) - Fix bad redirect when visiting "/download" or "/download/". (Matt Nordhoff, #247992)
32 lines
1.1 KiB
Makefile
32 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.8 2011/03/26 08:02:38 obache Exp $
|
|
|
|
DISTNAME= loggerhead-${VER}
|
|
CATEGORIES= www scm
|
|
MASTER_SITES= http://launchpad.net/loggerhead/1.18/${VER}/+download/
|
|
VER= 1.18.1
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://launchpad.net/loggerhead
|
|
COMMENT= Web viewer for Bazaar branches
|
|
LICENSE= gnu-gpl-v2 # or later
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
DEPENDS+= bzr>=1.17:../../devel/bzr
|
|
DEPENDS+= ${PYPKGPREFIX}-simplejson>=2.0:../../converters/py-simplejson
|
|
DEPENDS+= ${PYPKGPREFIX}-Paste>=1.2:../../www/py-paste
|
|
DEPENDS+= ${PYPKGPREFIX}-PasteDeploy>=1.3:../../www/py-PasteDeploy
|
|
DEPENDS+= ${PYPKGPREFIX}-SimpleTAL>=4.1:../../www/py-simpletal
|
|
DEPENDS+= ${PYPKGPREFIX}-flup-[0-9]*:../../www/py-flup
|
|
|
|
.include "../../lang/python/pyversion.mk"
|
|
|
|
.if defined(PYPACKAGE) && ${PYPACKAGE} == "python24"
|
|
DEPENDS+= ${PYPKGPREFIX}-sqlite2>=2:../../databases/py-sqlite2
|
|
.else
|
|
DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3
|
|
.endif
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|