Date: Tue, 10 Nov 2020 09:05:11 +0000 (UTC) From: Rainer Hurling <rhurlin@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r554822 - in head/devel: . py-hg-evolve Message-ID: <202011100905.0AA95BZr083388@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rhurlin Date: Tue Nov 10 09:05:11 2020 New Revision: 554822 URL: https://svnweb.freebsd.org/changeset/ports/554822 Log: New port:devel/py-hg-evolve: Changeset Evolution with Mercurial evolve is a Mercurial extension for faster and safer mutable history. It implements the changeset evolution concept for Mercurial[1][2]. [1] https://www.mercurial-scm.org/doc/evolution/# [2] https://pypi.org/project/hg-evolve/ Reviewed by: tcberner (mentor) Approved by: arrowd (mentor) Differential Revision: https://reviews.freebsd.org/D27150 Added: head/devel/py-hg-evolve/ head/devel/py-hg-evolve/Makefile (contents, props changed) head/devel/py-hg-evolve/distinfo (contents, props changed) head/devel/py-hg-evolve/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Nov 10 08:57:38 2020 (r554821) +++ head/devel/Makefile Tue Nov 10 09:05:11 2020 (r554822) @@ -4482,6 +4482,7 @@ SUBDIR += py-gyp SUBDIR += py-hash_ring SUBDIR += py-heapdict + SUBDIR += py-hg-evolve SUBDIR += py-hglib SUBDIR += py-hgtools SUBDIR += py-holidays Added: head/devel/py-hg-evolve/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-hg-evolve/Makefile Tue Nov 10 09:05:11 2020 (r554822) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= hg-evolve +PORTVERSION= 10.1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rhurlin@FreeBSD.org +COMMENT= Changeset Evolution with Mercurial + +LICENSE= GPLv2+ + +RUN_DEPENDS= hg:devel/mercurial + +USES= python:3.6+ +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +# Do not conflict with devel/mercurial, which also installs hgext3rd/__init__.py +EXTRACT_AFTER_ARGS= --exclude ${DISTNAME}/hgext3rd/__init__.py + +.include <bsd.port.mk> Added: head/devel/py-hg-evolve/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-hg-evolve/distinfo Tue Nov 10 09:05:11 2020 (r554822) @@ -0,0 +1,3 @@ +TIMESTAMP = 1604941749 +SHA256 (hg-evolve-10.1.0.tar.gz) = a386e6ee2d9a0e332a49f1cb210c4c11ba9844bcd52808270f48e688314783d8 +SIZE (hg-evolve-10.1.0.tar.gz) = 836446 Added: head/devel/py-hg-evolve/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-hg-evolve/pkg-descr Tue Nov 10 09:05:11 2020 (r554822) @@ -0,0 +1,14 @@ +evolve is a Mercurial extension for faster and safer mutable history. It +implements the changeset evolution concept for Mercurial. + +- It offers a safe and simple way to refine changesets locally and + propagate those changes to other repositories. +- It can automatically detect and handle the complex issues that can + arise from exchanging draft changesets. +- It even makes it possible for multiple developers to safely rewrite + the same parts of history in a distributed way. +- It fully respects the Phases concept so users will only be able to + rewrite parts of the history that are safe to change. Phases have been + part of Mercurial since early 2012. + +WWW: https://www.mercurial-scm.org/doc/evolution/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202011100905.0AA95BZr083388>