pkgsrc/devel/codeville/Makefile

44 lines
1.2 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.22 2010/02/10 19:17:35 joerg Exp $
DISTNAME= Codeville-0.8.0
PKGNAME= codeville-0.8.0
PKGREVISION= 4
CATEGORIES= devel scm
Changes 0.1.10: * Un*x shell style filename expansion on windows * 'rebuild' can be done from a given changenumber * 'last-modified' can be done from a given changenumber * 'update' recognizes repository URLs of the format 'cdv://server/{changenumber}' * 'diff' can now take 'local' as either first or second -r argument * 'diff' does not display diffs for files which exist on only 1 side by default * 'diff' takes -N switch to show diffs for files which exist on only 1 side * fixed: critical bug where an invalid merge was generated and not caught by the server * fixed: locking bug on server when files are deleted * fixed: traceback when committing from windows * fixed: all files show up as modified after doing 'construct' * fixed: server sending responses out of order * fixed: merge done by 'update' was sometimes incorrect * fixed: 'update -d' not pulling in diffs * fixed: CVILLE directory could not be at the root of the filesystem * fixed: 'diff -r repo' caused traceback * fixed: 'revert' on a file deleted from the local filesystem caused traceback Changes 0.1.9: * Allow user to be specified on client command line via -u * Server port is configurable via the config file or -o on the command line (-p is already being used, I need to switch to long opts) * Server catches exceptions and only shuts down the offending connection, rather than exiting * 'commit' takes -b for backup, makes it not generate a new changeset * 'history' accepts filenames on the command line * New command 'heads' shows currents heads in the client * New command 'last-modified' gives the last change to modify a file * Server doesn't revalidate changes already committed to other repositories, better performance for branching and merging * fixed: bad changesets being generated for some merge cases * fixed: merging a change with its ancestor caused traceback * fixed: locking bug on failed commit * fixed: 'add' of CVILLE directory issued warning but did the add anyway * fixed: 'diff' with ... tries to diff files not open for edit
2005-02-22 16:35:56 +01:00
MASTER_SITES= http://codeville.org/download/
MAINTAINER= pkgsrc-users@NetBSD.org
Changes 0.1.10: * Un*x shell style filename expansion on windows * 'rebuild' can be done from a given changenumber * 'last-modified' can be done from a given changenumber * 'update' recognizes repository URLs of the format 'cdv://server/{changenumber}' * 'diff' can now take 'local' as either first or second -r argument * 'diff' does not display diffs for files which exist on only 1 side by default * 'diff' takes -N switch to show diffs for files which exist on only 1 side * fixed: critical bug where an invalid merge was generated and not caught by the server * fixed: locking bug on server when files are deleted * fixed: traceback when committing from windows * fixed: all files show up as modified after doing 'construct' * fixed: server sending responses out of order * fixed: merge done by 'update' was sometimes incorrect * fixed: 'update -d' not pulling in diffs * fixed: CVILLE directory could not be at the root of the filesystem * fixed: 'diff -r repo' caused traceback * fixed: 'revert' on a file deleted from the local filesystem caused traceback Changes 0.1.9: * Allow user to be specified on client command line via -u * Server port is configurable via the config file or -o on the command line (-p is already being used, I need to switch to long opts) * Server catches exceptions and only shuts down the offending connection, rather than exiting * 'commit' takes -b for backup, makes it not generate a new changeset * 'history' accepts filenames on the command line * New command 'heads' shows currents heads in the client * New command 'last-modified' gives the last change to modify a file * Server doesn't revalidate changes already committed to other repositories, better performance for branching and merging * fixed: bad changesets being generated for some merge cases * fixed: merging a change with its ancestor caused traceback * fixed: locking bug on failed commit * fixed: 'add' of CVILLE directory issued warning but did the add anyway * fixed: 'diff' with ... tries to diff files not open for edit
2005-02-22 16:35:56 +01:00
HOMEPAGE= http://codeville.org/
COMMENT= Distributed revision control system
2008-06-12 04:14:13 +02:00
PKG_DESTDIR_SUPPORT= user-destdir
PYDISTUTILSPKG= yes
REPLACE_PYTHON= *.py
REPLACE_PYTHON+= */*.py
BUILD_DEFS+= VARBASE
BUILD_DEFS_EFFECTS+= CODEVILLE_DATADIR
CODEVILLE_DATADIR?= ${VARBASE}/db/cdv
# XXX Could create a user for the server, rc script, server directory hier, etc.
CONF_FILES= ${EGDIR}/cdvserver.conf \
${PKG_SYSCONFDIR}/cdvserver.conf
EGDIR= ${PREFIX}/share/examples/${PKGBASE}
SUBST_CLASSES+= paths
SUBST_FILES.paths= cdvserver.conf.sample cdvpasswd cdvserver
SUBST_MESSAGE.paths= performing pathname substitutions
SUBST_STAGE.paths= pre-configure
SUBST_VARS.paths= CODEVILLE_DATADIR VARBASE PKG_SYSCONFDIR
post-install:
${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR}
${INSTALL_DATA} ${WRKSRC}/cdvserver.conf.sample \
${DESTDIR}${EGDIR}/cdvserver.conf
.include "../../lang/python/application.mk"
.include "../../lang/python/extension.mk"
.include "../../databases/py-bsddb3/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"