pkgsrc/devel/mercurial/Makefile

34 lines
1 KiB
Makefile
Raw Normal View History

Update to 2.5: This is a regularly-scheduled feature release. 1.1. Core features branchmap: improved performances bundle: add revset expression to show bundle contents (issue3487) dirstate: implement unix statfiles in C hgweb: add (Atom) subscribe links to the repository index hgweb: add "URL breadcrumbs" hgweb: add branches RSS and Atom feeds hgweb: secret changeset are excluded from html view (3614 ) serve: use chunked encoding in hgweb responses pathencode: implement both basic and hashed encoding in C subrepo: append subrepo path to subrepo error messages validate: check for spurious incoming filelog entries hgweb: allow hgweb's archive to recurse into subrepos 1.2. Changeset Evolution Major progress toward ChangesetEvolution were done. hidden changesets are now properly ignored by all commands a global --hidden flag is added to give access to hidden changesets rewriting a changeset but not its descendants is now allowed; this leaves unstable changeset behind we now detect *divergent* changesets. The third and last kind of obsolescence related troubles. divergent() revset is added a troubled() revset have been added branchmap for of *visible* and *served* changeset are now cached on disk. This is a major performance improvements performance improvements of most evolution related algorithm 1.3. Extension features color: add template label function convert: add config option to use the local time zone convert: add support for converting git submodule (issue3528) hgk: use Ttk instead of plain Tk inotify: don't fall over just because of a dangling symlink largefiles: fix revert removing a largefile from a merge largefiles: fix update from a merge with removed files largefiles: make log match largefiles in the non-standin location too largefiles: make update with backup files in .hglf slightly less broken largefiles: rename 'admin' to more descriptive 'lfstoredir rebase: performance improvements rebase: rebase set with multiple roots are now handled by the --rev option record: use patch.diffopts to account for user diffopts share: always set default path to work with subrepos (issue3518) zsh_completion: add completion of branch names 1.4. Fixes commands: 'hg bookmark NAME' should work even with ui.strict=True copies: do not track backward copies, only renames (issue3739) destroyed: keep the filecache in sync with __dict__ (issue3335, issue3693, issue3743) grep: don't search past the end of the searched string hgweb: properly returns 404 for unknown revision (instead of 500) histedit: proper phase conservation (issue3724) histedit: prevents obsolescence cycle (issue3681) hook: disable demandimport before importing hooks mq: don't fail when removing a patch without patch file from series file mq: fix qpop of working directory parent patch when not at qtip zeroconf: use port from server instead of picking port from config (issue3746) update: update to current bookmark if it moved out from under us (issue3682) bookmarks: show active bookmark even if not at working dir largefiles: let wirestore._stat return stats as expected by remotestore verify largefiles: adapt verify to batched remote statlfile (issue3780) largefiles: don't allow corruption to propagate after detection largefiles: don't verify largefile hashes on servers when processing statlfile largefiles: allow use of urls with #revision largefiles: fix commit when using relative paths from subdirectory largefiles: fix cat when using relative paths from subdirectory histedit: prevent parent guessed via --outgoing from being a revset (issue3770) rebase: delete divergent bookmarks on destination (issue3685) hgwebdir: use web.prefix when creating url breadcrumbs (issue3790) subrepo: allow skipping courtesy phase sync (issue3781) merge: .hgsubstate is special as merge destination, not as merge source merge: improved handling of symlinks
2013-02-03 15:39:05 +01:00
# $NetBSD: Makefile,v 1.83 2013/02/03 14:39:05 wiz Exp $
Update to 2.5: This is a regularly-scheduled feature release. 1.1. Core features branchmap: improved performances bundle: add revset expression to show bundle contents (issue3487) dirstate: implement unix statfiles in C hgweb: add (Atom) subscribe links to the repository index hgweb: add "URL breadcrumbs" hgweb: add branches RSS and Atom feeds hgweb: secret changeset are excluded from html view (3614 ) serve: use chunked encoding in hgweb responses pathencode: implement both basic and hashed encoding in C subrepo: append subrepo path to subrepo error messages validate: check for spurious incoming filelog entries hgweb: allow hgweb's archive to recurse into subrepos 1.2. Changeset Evolution Major progress toward ChangesetEvolution were done. hidden changesets are now properly ignored by all commands a global --hidden flag is added to give access to hidden changesets rewriting a changeset but not its descendants is now allowed; this leaves unstable changeset behind we now detect *divergent* changesets. The third and last kind of obsolescence related troubles. divergent() revset is added a troubled() revset have been added branchmap for of *visible* and *served* changeset are now cached on disk. This is a major performance improvements performance improvements of most evolution related algorithm 1.3. Extension features color: add template label function convert: add config option to use the local time zone convert: add support for converting git submodule (issue3528) hgk: use Ttk instead of plain Tk inotify: don't fall over just because of a dangling symlink largefiles: fix revert removing a largefile from a merge largefiles: fix update from a merge with removed files largefiles: make log match largefiles in the non-standin location too largefiles: make update with backup files in .hglf slightly less broken largefiles: rename 'admin' to more descriptive 'lfstoredir rebase: performance improvements rebase: rebase set with multiple roots are now handled by the --rev option record: use patch.diffopts to account for user diffopts share: always set default path to work with subrepos (issue3518) zsh_completion: add completion of branch names 1.4. Fixes commands: 'hg bookmark NAME' should work even with ui.strict=True copies: do not track backward copies, only renames (issue3739) destroyed: keep the filecache in sync with __dict__ (issue3335, issue3693, issue3743) grep: don't search past the end of the searched string hgweb: properly returns 404 for unknown revision (instead of 500) histedit: proper phase conservation (issue3724) histedit: prevents obsolescence cycle (issue3681) hook: disable demandimport before importing hooks mq: don't fail when removing a patch without patch file from series file mq: fix qpop of working directory parent patch when not at qtip zeroconf: use port from server instead of picking port from config (issue3746) update: update to current bookmark if it moved out from under us (issue3682) bookmarks: show active bookmark even if not at working dir largefiles: let wirestore._stat return stats as expected by remotestore verify largefiles: adapt verify to batched remote statlfile (issue3780) largefiles: don't allow corruption to propagate after detection largefiles: don't verify largefile hashes on servers when processing statlfile largefiles: allow use of urls with #revision largefiles: fix commit when using relative paths from subdirectory largefiles: fix cat when using relative paths from subdirectory histedit: prevent parent guessed via --outgoing from being a revset (issue3770) rebase: delete divergent bookmarks on destination (issue3685) hgwebdir: use web.prefix when creating url breadcrumbs (issue3790) subrepo: allow skipping courtesy phase sync (issue3781) merge: .hgsubstate is special as merge destination, not as merge source merge: improved handling of symlinks
2013-02-03 15:39:05 +01:00
DISTNAME= mercurial-2.5
CATEGORIES= devel scm
2009-07-17 00:12:17 +02:00
MASTER_SITES= http://mercurial.selenic.com/release/
MAINTAINER= wiz@NetBSD.org
HOMEPAGE= http://mercurial.selenic.com/
2006-04-09 01:01:58 +02:00
COMMENT= Fast, lightweight source control management system
LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 # OR newer
Update to mercurial 1.0 and add DESTDIR support. Changes: General: * greatly improved merge tool configuration, see "hgrc.5.txt" for details * improved copy/rename handling in diffs, status, and merge * files in .hg inherit permissions from .hg/store * infer --repository when possible, so commands may be run from anywhere. * easy-installable * new "droplet" logo Commands: * archive: disable ".hg_archival.txt" file addition with "ui.archivemeta" * bisect: now built-in with greatly improved performance and usability * bundle: new --all option to bundle the whole repository more easily. * cat: apply decode filters with --decode * clone: can clone from a full-history bundle * commit: warn when creating a new head * debugancestor: index argument is now optional * diff: set the number of context line to show with -U/--unified * grep: display matched revisions commit date with --date * import: new --no-commit and --user options * incoming/outgoing: add --limit option * log: use -b/--only-branch to show revisions of a single branch * remove: improve handling for --after * revert: major speedup * serve: prefix the served path with --prefix (also in [web] section) * status: unknown files are skipped by --quiet * tag: allow multiple tags to be added or removed * tags: --verbose flags local tags * update: switch between named branches without -C Extensions: * churn: promoted to an official extension (previously in contrib) * color: new extension coloring "status" and "qseries" command outputs * convert: * hgk: configuration file changed from .gitk to .hgk * highlight: new extension enabling syntax highlighting in hgweb file view (requires pygments) * inotify: new extension using Linux 2.6 inotify API for instant status checking * keyword: new extension for filewise RCS-keyword expansion in working directory * mq: new --currentdate, --date, --currentuser, and --user options * record: add "qrecord" command when used with mq Web interface: * improved WSGI integration and compatibility * follow symlinks in hgwebdir collections * show branches in most of gitweb templates * add line anchors to annotate, changeset, diff and file views * support web.baseurl in hgwebdir, overriding SCRIPT_NAME Hooks: * standard hook to reject text files with CRLF in win32text extension * redirect stdout to stderr for ssh and http servers
2008-04-11 01:34:51 +02:00
Update to 0.9.2: New features: - merge now follows renames and copies - new layout protects against case-insensitivity issues - new branch and branches commands for managing named branches - push command accepts -r for pushing specified heads or named branches - proper storage of changelog and other metadata in UTF-8 - log, annotate and grep '--follow' follow renames and copies - date parsing is improved and log, update, and revert accept --date ranges - additional command options for log, status, addremove - improved schema for hgweb URLs - bundle can now use '-r' and '--base' removing the need of an base repository - support for git-style extended patches with --git option - new debuginstall command to check for common installation issues New contributions and extensions: - mq - support for quilt-style guards - can import existing changesets into mq ('qimport -r') or commit mq patches as regular changesets ('qdel -f') - edit the log message with 'qrefresh -e' - rename patches with 'qrename' - qheader to display the patch header of particular patches, and '--summary' for qseries, qapplied, qunapplied and qtop - combine patches with 'qfold' - qrefresh supports pattern options to import only a subset of the changes into a patch, to help split changes into multiple patches - patch names for applied patches act like local tags, and can be used in the revision arguments of any hg command - hgk - browse a subset of the history with '--limit' and revision range arguments - shows revision numbers as well as node hashes - churn: graph lines of code changed per user over a range of history - patchbomb: generate inline attachments with '-a' Behavior changes: - hg cat defaults to the working directory revision rather than tip - hg manifest no longer shows internal file revision hashes by default - hg revert now requires the -a flag to revert all files Developer notes: - new high-level API functions in the 'hg' module - new context API simplifies many operations - The changelog can now include arbitrary metadata in key: value form
2006-12-12 00:15:56 +01:00
BUILD_DEPENDS+= xmlto-[0-9]*:../../textproc/xmlto
BUILD_DEPENDS+= asciidoc-[0-9]*:../../textproc/asciidoc
Update to 1.3. Set LICENSE. Disallow Python-2.3 (see below). Major Changes * experimental support for sub-repositories * Python 2.3 is no longer supported; now requires Python 2.4-2.6 Commands * merge: add -P/--preview option * update: don't unlink added files when -C/--clean is specified * update: added -c/--check option to abort on local changes * update: allow merges going backwards * push: improved handling of named branches * branches/heads: add a -c/--closed option to show closed branches * help: new extensions topic General * add patch.eol config setting to work with cross-platform patches * fixed support for SSL through proxies * add ability to load hooks from arbitrary Python modules * hide passwords for HTTP repositories in error and log output * fix Python 2.6 support in the Windows installer * add mechanism for specifying HTTP authentication details in hgrc * prompts and choices are now shown even in non-interactive mode * performance improvements, especially on Windows * much improved zsh completion * improved Danish, Japanese, Italian and simplified Chinese translations * new German, French, Greek, Brazilian Portuguese and traditional Chinese translations Web interface * read configuration data from webdir configs * add branches page to hgweb * pluggable templater engine support * refresh hgwebdir configuration periodically * let web.encoding override ui.encoding setting * deal with dicts/lists like webdir config paths Extensions * experimental share extension * the alias extension has been moved into core * mq o add -P/--push option to qimport o numerous bug fixes * convert o improved source detection o support for comments in author maps o add branch map support o add different ordering options o svn: support OS-specific authn providers o svn: improved tag support o git: add committer tag only when needed o bzr: fix renaming support o bzr: add support for filemaps o bzr: handle timestamps correctly o bzr: fix symlink handling o bzr: restore paths to source encoding o cvs: add support for CVS merge(point)s o cvs: add support for synthetic revisions o cvs: better support for branchpoints o cvs: deprecate use of external cvsps o mtn: improve renaming support o mtn: support mtn database files as source o mtn: improve date/time support o p4: better handling of keywords, binary files and symlinks * rebase o don't lose copy/rename info o keep original mq patch format * zeroconf o advertise repositories by hostname o try to guess IP address if necessary * patchbomb o option to set attachment name o support for In-Reply-To header * inotify o fix handling of untracked files moved out of repository o fix support for directory deletion * acl: now works with push over https
2009-07-17 22:35:48 +02:00
USE_TOOLS+= gmake msgfmt
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man5
INSTALLATION_DIRS+= share/doc/mercurial
post-install:
Update to mercurial 1.0 and add DESTDIR support. Changes: General: * greatly improved merge tool configuration, see "hgrc.5.txt" for details * improved copy/rename handling in diffs, status, and merge * files in .hg inherit permissions from .hg/store * infer --repository when possible, so commands may be run from anywhere. * easy-installable * new "droplet" logo Commands: * archive: disable ".hg_archival.txt" file addition with "ui.archivemeta" * bisect: now built-in with greatly improved performance and usability * bundle: new --all option to bundle the whole repository more easily. * cat: apply decode filters with --decode * clone: can clone from a full-history bundle * commit: warn when creating a new head * debugancestor: index argument is now optional * diff: set the number of context line to show with -U/--unified * grep: display matched revisions commit date with --date * import: new --no-commit and --user options * incoming/outgoing: add --limit option * log: use -b/--only-branch to show revisions of a single branch * remove: improve handling for --after * revert: major speedup * serve: prefix the served path with --prefix (also in [web] section) * status: unknown files are skipped by --quiet * tag: allow multiple tags to be added or removed * tags: --verbose flags local tags * update: switch between named branches without -C Extensions: * churn: promoted to an official extension (previously in contrib) * color: new extension coloring "status" and "qseries" command outputs * convert: * hgk: configuration file changed from .gitk to .hgk * highlight: new extension enabling syntax highlighting in hgweb file view (requires pygments) * inotify: new extension using Linux 2.6 inotify API for instant status checking * keyword: new extension for filewise RCS-keyword expansion in working directory * mq: new --currentdate, --date, --currentuser, and --user options * record: add "qrecord" command when used with mq Web interface: * improved WSGI integration and compatibility * follow symlinks in hgwebdir collections * show branches in most of gitweb templates * add line anchors to annotate, changeset, diff and file views * support web.baseurl in hgwebdir, overriding SCRIPT_NAME Hooks: * standard hook to reject text files with CRLF in win32text extension * redirect stdout to stderr for ssh and http servers
2008-04-11 01:34:51 +02:00
${INSTALL_DATA} ${WRKSRC}/doc/*.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
${INSTALL_DATA} ${WRKSRC}/doc/*.5 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man5
${INSTALL_DATA} ${WRKSRC}/README \
${DESTDIR}${PREFIX}/share/doc/mercurial
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "Linux" && empty(OS_VERSION:M2.4.*) && empty(OS_VERSION:M2.2.*)
PLIST_SRC+= ${.CURDIR}/PLIST ${.CURDIR}/PLIST.inotify
.endif
.include "../../lang/python/distutils.mk"
.include "../../mk/bsd.pkg.mk"