pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/py-hgtools Update to 6.3. Update LICENSE (see 6....



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c492074329ed
branches:  trunk
changeset: 646496:c492074329ed
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Mon Feb 09 18:53:03 2015 +0000

description:
Update to 6.3. Update LICENSE (see 6.0 below).

6.3
~~~

* Updated 'dev' revision to be compatible with setuptools 8 canonical
  pre-release version numbering (now '.dev0').

6.2.1
~~~~~

* Pull Request #7: Fixed intermittent test failures.

6.2
~~~

* Issue #28: Fixed poor parsing of git version. Also provide a nicer error
  message when no repo manager is found.
* Added support for querying the Mercurial version in cmd.Mercurial.

6.1
~~~

* Issue #21: GitManager is now only valid if Git 1.7.10 or later is present.

6.0
~~~

* Issue #23: hgtools no longer imports Mercurial and thus does not link to
  it. Applications that wish to use the in-process Mercurial manager must
  first `import mercurial.dispatch` in their application.
* Issue #23: hgtools is now licensed under the MIT license.

5.3
~~~

* Issue #19: Add file finder support for git. Credit to Berry Phillips.

5.2
~~~

* Issue #20: Added support for listing all git tags. Credit to Berry Phillips.

5.1
~~~

* In version inference, always fallback to increment (or None) when an
  Exception occurs in the calculation.

5.0.1
~~~~~

* Issue #17: Fix regression on older versions of setuptools where unspecified
  distribution attributes would cause use_vcs_version of None to supersede
  a supplied use_hg_version.

5.0
~~~

* Added new ``use_vcs_version`` distutils parameter to supersede
  ``use_hg_version``. Clients should update to use this new parameter as soon
  as hgtools 5.0 is generally available.
* Initial git support. The tool now nominally supports eliciting the project
  version from a git tag. Many of the hg features are not yet implemented,
  such as auto-incrementing versions when the current revision is not on a
  tag and file discovery from repo metadata.
  This new Git support provides experimental support for dual-hosted
  repositories (such as those found on Kiln). Since file discovery is not yet
  tested or implemented, there are likely to be yet undiscovered issues.
* Refactored the Manager models to better support the two repositories.
  Clients that use hgtools to programmatically manipulate repositories will
  need to update to use the new names. In particular, HGRepoManager was
  renamed to RepoManager. SubprocessManager renamed to MercurialManager and
  a new GitManager was created. The LibraryManager was renamed to
  MercurialInProcManager.

4.0
~~~

* Removed functions in hgtools (package) module deprecated since 0.6.6.

3.0.2
~~~~~

* Restored Python 2.6 compatibility in reentry module.

3.0.1
~~~~~

* Merged changes from 2.2.2 to address #13.

3.0
~~~

* Removed support for Python 2.5. Python 2.6 or later is now required.

2.2.3
~~~~~

* Restored Python 2.5 compatibility in some modules.

2.2.2
~~~~~

* Removed the LibraryManager from the default imports. This means it will not
  be available unless the client application specifically imports
  `hgtools.managers.library`. This change appears to fix #13.

2.2.1
~~~~~

* Added some exception handling and tests around Library Manager in the hopes
  of preventing #13.

2.2
~~~

* LibraryManager has been re-written to use the command-line API in-process.
  The new LibraryManager now only works Python 2.7 and greater, but also now
  shares the same capability as the SubprocessManager with full tags support.

2.1
~~~

* hgtools now builds natively on Python 3, rather than requiring a 2to3
  conversion at install time.

2.0.3
~~~~~

 * Issue #12: Suppress exceptions besides ImportError when importing
   Mercurial modules.

diffstat:

 devel/py-hgtools/Makefile |   9 ++++-----
 devel/py-hgtools/PLIST    |  38 +++++++++++++++++++++++++++++++-------
 devel/py-hgtools/distinfo |   8 ++++----
 3 files changed, 39 insertions(+), 16 deletions(-)

diffs (98 lines):

diff -r 7f848ddd3be5 -r c492074329ed devel/py-hgtools/Makefile
--- a/devel/py-hgtools/Makefile Mon Feb 09 18:39:31 2015 +0000
+++ b/devel/py-hgtools/Makefile Mon Feb 09 18:53:03 2015 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2012/11/18 02:25:37 asau Exp $
-#
+# $NetBSD: Makefile,v 1.3 2015/02/09 18:53:03 wiz Exp $
 
-HGTVERS=       2.0.2
+HGTVERS=       6.3
 DISTNAME=      hgtools-${HGTVERS}
 PKGNAME=       ${PYPKGPREFIX}-hgtools-${HGTVERS}
 CATEGORIES=    devel python
@@ -10,8 +9,8 @@
 
 MAINTAINER=    imil%NetBSD.org@localhost
 HOMEPAGE=      http://pypi.python.org/packages/source/h/hgtools/
-COMMENT=       Classes and setuptools plugin for Mercurial repositories
-LICENSE=       gnu-gpl-v1
+COMMENT=       Classes and setuptools plugin for Mercurial and Git repositories
+LICENSE=       mit
 
 USE_LANGUAGES= # none
 
diff -r 7f848ddd3be5 -r c492074329ed devel/py-hgtools/PLIST
--- a/devel/py-hgtools/PLIST    Mon Feb 09 18:39:31 2015 +0000
+++ b/devel/py-hgtools/PLIST    Mon Feb 09 18:53:03 2015 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2012/11/03 13:55:16 imil Exp $
+@comment $NetBSD: PLIST,v 1.2 2015/02/09 18:53:03 wiz Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -13,21 +13,45 @@
 ${PYSITELIB}/hgtools/managers/base.py
 ${PYSITELIB}/hgtools/managers/base.pyc
 ${PYSITELIB}/hgtools/managers/base.pyo
+${PYSITELIB}/hgtools/managers/cmd.py
+${PYSITELIB}/hgtools/managers/cmd.pyc
+${PYSITELIB}/hgtools/managers/cmd.pyo
 ${PYSITELIB}/hgtools/managers/library.py
 ${PYSITELIB}/hgtools/managers/library.pyc
 ${PYSITELIB}/hgtools/managers/library.pyo
+${PYSITELIB}/hgtools/managers/reentry.py
+${PYSITELIB}/hgtools/managers/reentry.pyc
+${PYSITELIB}/hgtools/managers/reentry.pyo
 ${PYSITELIB}/hgtools/managers/subprocess.py
 ${PYSITELIB}/hgtools/managers/subprocess.pyc
 ${PYSITELIB}/hgtools/managers/subprocess.pyo
-${PYSITELIB}/hgtools/namedtuple_backport.py
-${PYSITELIB}/hgtools/namedtuple_backport.pyc
-${PYSITELIB}/hgtools/namedtuple_backport.pyo
 ${PYSITELIB}/hgtools/plugins.py
 ${PYSITELIB}/hgtools/plugins.pyc
 ${PYSITELIB}/hgtools/plugins.pyo
-${PYSITELIB}/hgtools/py25compat.py
-${PYSITELIB}/hgtools/py25compat.pyc
-${PYSITELIB}/hgtools/py25compat.pyo
+${PYSITELIB}/hgtools/tests/__init__.py
+${PYSITELIB}/hgtools/tests/__init__.pyc
+${PYSITELIB}/hgtools/tests/__init__.pyo
+${PYSITELIB}/hgtools/tests/conftest.py
+${PYSITELIB}/hgtools/tests/conftest.pyc
+${PYSITELIB}/hgtools/tests/conftest.pyo
+${PYSITELIB}/hgtools/tests/test_git.py
+${PYSITELIB}/hgtools/tests/test_git.pyc
+${PYSITELIB}/hgtools/tests/test_git.pyo
+${PYSITELIB}/hgtools/tests/test_managers.py
+${PYSITELIB}/hgtools/tests/test_managers.pyc
+${PYSITELIB}/hgtools/tests/test_managers.pyo
+${PYSITELIB}/hgtools/tests/test_mercurial.py
+${PYSITELIB}/hgtools/tests/test_mercurial.pyc
+${PYSITELIB}/hgtools/tests/test_mercurial.pyo
+${PYSITELIB}/hgtools/tests/test_reentry.py
+${PYSITELIB}/hgtools/tests/test_reentry.pyc
+${PYSITELIB}/hgtools/tests/test_reentry.pyo
+${PYSITELIB}/hgtools/tests/test_versioning.py
+${PYSITELIB}/hgtools/tests/test_versioning.pyc
+${PYSITELIB}/hgtools/tests/test_versioning.pyo
+${PYSITELIB}/hgtools/util.py
+${PYSITELIB}/hgtools/util.pyc
+${PYSITELIB}/hgtools/util.pyo
 ${PYSITELIB}/hgtools/versioning.py
 ${PYSITELIB}/hgtools/versioning.pyc
 ${PYSITELIB}/hgtools/versioning.pyo
diff -r 7f848ddd3be5 -r c492074329ed devel/py-hgtools/distinfo
--- a/devel/py-hgtools/distinfo Mon Feb 09 18:39:31 2015 +0000
+++ b/devel/py-hgtools/distinfo Mon Feb 09 18:53:03 2015 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2012/11/03 13:55:16 imil Exp $
+$NetBSD: distinfo,v 1.2 2015/02/09 18:53:03 wiz Exp $
 
-SHA1 (hgtools-2.0.2.zip) = b4db6f850e2172cff5f1740c6591cd97cadec285
-RMD160 (hgtools-2.0.2.zip) = 22d7416d1b28c6b2dd8ed2652a4ef3229b9a81a8
-Size (hgtools-2.0.2.zip) = 30635 bytes
+SHA1 (hgtools-6.3.zip) = 899d33fb897e4dc6ea0f6e19f236ffa3acf8a95b
+RMD160 (hgtools-6.3.zip) = c227b01506004600cfeef7f59d023661c1db18a1
+Size (hgtools-6.3.zip) = 39805 bytes



Home | Main Index | Thread Index | Old Index