pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/py-rope



Module Name:    pkgsrc
Committed By:   wiz
Date:           Thu May  4 10:03:52 UTC 2023

Modified Files:
        pkgsrc/devel/py-rope: Makefile PLIST distinfo

Log Message:
py-rope: update to 1.7.0.

# Release 1.7.0

## Feature

- #548 Implement MoveGlobal using string as destination module names (@lieryan)

## Bug

- #627 Fix parsing of octal literal (@lieryan)
- #643, #435 Fix fstrings with mismatched parens (@apmorton)
- #646 Fix renaming kwargs when refactoring from imports (@apmorton)
- #648 Remove __init__ from import statement when using sqlite autoimport (@bagel897)

## Improvements

- rope.contrib.generate improvements
  - #640 Remove unnecessary eval in generate.py (@edreamleo)
  - #641 Add type annotations for rope.contrib.generate.create_generate() (@edreamleo)

- call_for_nodes() improvements
  - #634 Remove call_for_nodes(recursive) argument (@edreamleo)
  - #642 Add comments & docstrings related to call_for_nodes (@edreamleo, @lieryan)

- Data storage improvements
  - #604 Fix test that sometimes leaves files behind in the current working directory (@lieryan)
  - #606 Deprecate compress_objectdb and compress_history (@lieryan)
  - #607 Remove importing from legacy files with `.pickle` suffix (@lieryan)
  - #611 Implement JSON DataFile serialization (@lieryan)
  - #630 SQLite models improvements (@lieryan)
  - #631 Implement version hash (@lieryan)

## Tech Debt

- #594 Tidy up patchedast (@Alex-CodeLab)
- #595 Global default DEFAULT_TASK_HANDLE (@Alex-CodeLab)
- #609, #610, #612, #613 Fix pyflakes issues (@edreamleo)
- #615 Remove 'unicode' from builtins dict (@edreamleo)
- #616, #621 Remove `file` builtins (@edreamleo)
- #618 Separate pynames and pynamesdef and remove star-import (@edreamleo, @lieryan)
- #620 Remove unused import in occurrences.py (@edreamleo)
- #625 Remove support for deprecated ast nodes (@lieryan)

## Tests/Dev

- #626 Install pre-commit hooks on rope repository (@lieryan)
- #628 Add isort to pre-commit
- #638 Add a function to identify ast Constant nodes more granularly

## Docs

- #636 Update readme to reflect 1.0 has been released.

# Release 1.6.0

## New features & Enhancements

- #559, #560 Improve handling of whitespace in import and from-import statements (@lieryan)
- #566, #567, #597 Fix variables in kwonlyargs and posonlyargs not being correctly passed to extracted methods (@lieryan)

## Unit Test

- #589, #596 Fix issue with `sample_project()` creating directories where it shouldn't when running tests (@lieryan)
- #547 Add config file for linters
- #593 Remove `only_for` decorator for all python versions less than 3.7 (@edreamleo)

## Tech Debt

- Code quality
  - #546 Remove unused vars in test (@lieryan, @edreamleo)
  - #551, #552 Numerous flake8 linter complaints (@edreamleo)
  - #558 Fix typos (@kianmeng)
  - #583, #584 More consistent import style (@edreamleo)
- Python 2-related tech debt
  - #533 Refactoring to Remove usage of unicode type (@lieryan)
  - #549, #553 Remove rope.base.utils.pycompat (@dreamleo)
  - #555 Fix some python2-isms (@lieryan)
- Rope's AST Wrapper
  - #536, #578 walk does not return a value (@edreamleo)
  - #537, #538 Remove special case code from walk (@edreamleo)
  - #581 Remove functions in rope.base.ast that has functionally identical implementation in stdlib's ast (@lieryan, @edreamleo)
  - #582 Refactoring rope.base.ast and remove rope.base.astutils (@lieryan, @edreamleo)
- pynames and pyobjects
  - #569, #572 rename pynames to pynamesdef in pyobjectsdef.ph (@edreamleo)

# Release 1.5.1

- #531 Add alternative way to retrieve version number from pyproject.toml

# Release 1.5.0

Date: 2022-11-23

- #492 Feat: Global configuration support (@bagel897)
- #519 Move pytest to pyproject.toml (@gliptak, @bagel897)
- #509 Fix read/write analysis of the left-hand side of an augmented assignment (@lieryan)
- #522 Implement patchedast parsing of MatchMapping (@lieryan)
- #514 Fix inlining dictionary with inline comment (@lieryan)

# Release 1.4.0

Date: 2022-10-22

## Bug fixes

- #506, #507 Fix issue with parsing function call args list
- #411, #505 Fix extracting generator without parens
- #18, #510 When the function is a builtin function, the call parameter's name was sometimes incorrectly identified as an AssignedName. This led to rename refactoring incorrectly renaming these 
parameters.

# Release 1.3.0

Date: 2022-07-29

## Bug fixes

- #496, #497 Add MatMul operator to patchedast
- #495 Fix autoimport collection for compiled modules

## Improvement

- #501, #502 Autoimport improvements

# Release 1.2.0

Date: 2022-04-22

## New feature

- #473 Pyproject.toml support (@bageljrkhanofemus)
- #489 Rope now publishes documentations to rope.readthedocs.org (@bageljrkhanofemus)
- #490 Migrate from setup.py to pyproject.toml (@bageljrkhanofemus)

## Improvement

- #479 Add ABC and type hints for TaskHandle and JobSet (@bageljrkhanofemus)
- #486 Drop Python 2 support (@bageljrkhanofemus, @lieryan)
- #487 Improved value inference of __all__ declaration (@lieryan)
- #424 Add some basic __repr__ to make it easier for debugging (@lieryan)


To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 pkgsrc/devel/py-rope/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-rope/PLIST
cvs rdiff -u -r1.21 -r1.22 pkgsrc/devel/py-rope/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/py-rope/Makefile
diff -u pkgsrc/devel/py-rope/Makefile:1.31 pkgsrc/devel/py-rope/Makefile:1.32
--- pkgsrc/devel/py-rope/Makefile:1.31  Sun Apr 30 18:24:21 2023
+++ pkgsrc/devel/py-rope/Makefile       Thu May  4 10:03:52 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.31 2023/04/30 18:24:21 wiz Exp $
+# $NetBSD: Makefile,v 1.32 2023/05/04 10:03:52 wiz Exp $
 
-DISTNAME=      rope-1.1.1
+DISTNAME=      rope-1.7.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=r/rope/}
@@ -11,6 +11,8 @@ COMMENT=      Python refactoring library
 LICENSE=       gnu-lgpl-v3
 
 DEPENDS+=      ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3
+DEPENDS+=      ${PYPKGPREFIX}-toolconfig>=1.2.2:../../devel/py-toolconfig
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
 
 USE_LANGUAGES= # none
 

Index: pkgsrc/devel/py-rope/PLIST
diff -u pkgsrc/devel/py-rope/PLIST:1.6 pkgsrc/devel/py-rope/PLIST:1.7
--- pkgsrc/devel/py-rope/PLIST:1.6      Sun Apr 30 18:24:21 2023
+++ pkgsrc/devel/py-rope/PLIST  Thu May  4 10:03:52 2023
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.6 2023/04/30 18:24:21 wiz Exp $
+@comment $NetBSD: PLIST,v 1.7 2023/05/04 10:03:52 wiz Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -16,9 +16,6 @@ ${PYSITELIB}/rope/base/arguments.pyo
 ${PYSITELIB}/rope/base/ast.py
 ${PYSITELIB}/rope/base/ast.pyc
 ${PYSITELIB}/rope/base/ast.pyo
-${PYSITELIB}/rope/base/astutils.py
-${PYSITELIB}/rope/base/astutils.pyc
-${PYSITELIB}/rope/base/astutils.pyo
 ${PYSITELIB}/rope/base/builtins.py
 ${PYSITELIB}/rope/base/builtins.pyc
 ${PYSITELIB}/rope/base/builtins.pyo
@@ -28,9 +25,6 @@ ${PYSITELIB}/rope/base/change.pyo
 ${PYSITELIB}/rope/base/codeanalyze.py
 ${PYSITELIB}/rope/base/codeanalyze.pyc
 ${PYSITELIB}/rope/base/codeanalyze.pyo
-${PYSITELIB}/rope/base/default_config.py
-${PYSITELIB}/rope/base/default_config.pyc
-${PYSITELIB}/rope/base/default_config.pyo
 ${PYSITELIB}/rope/base/evaluate.py
 ${PYSITELIB}/rope/base/evaluate.pyc
 ${PYSITELIB}/rope/base/evaluate.pyo
@@ -46,6 +40,9 @@ ${PYSITELIB}/rope/base/history.pyo
 ${PYSITELIB}/rope/base/libutils.py
 ${PYSITELIB}/rope/base/libutils.pyc
 ${PYSITELIB}/rope/base/libutils.pyo
+${PYSITELIB}/rope/base/nameanalyze.py
+${PYSITELIB}/rope/base/nameanalyze.pyc
+${PYSITELIB}/rope/base/nameanalyze.pyo
 ${PYSITELIB}/rope/base/oi/__init__.py
 ${PYSITELIB}/rope/base/oi/__init__.pyc
 ${PYSITELIB}/rope/base/oi/__init__.pyo
@@ -151,6 +148,9 @@ ${PYSITELIB}/rope/base/resourceobserver.
 ${PYSITELIB}/rope/base/resources.py
 ${PYSITELIB}/rope/base/resources.pyc
 ${PYSITELIB}/rope/base/resources.pyo
+${PYSITELIB}/rope/base/serializer.py
+${PYSITELIB}/rope/base/serializer.pyc
+${PYSITELIB}/rope/base/serializer.pyo
 ${PYSITELIB}/rope/base/simplify.py
 ${PYSITELIB}/rope/base/simplify.pyc
 ${PYSITELIB}/rope/base/simplify.pyo
@@ -166,9 +166,9 @@ ${PYSITELIB}/rope/base/utils/__init__.py
 ${PYSITELIB}/rope/base/utils/datastructures.py
 ${PYSITELIB}/rope/base/utils/datastructures.pyc
 ${PYSITELIB}/rope/base/utils/datastructures.pyo
-${PYSITELIB}/rope/base/utils/pycompat.py
-${PYSITELIB}/rope/base/utils/pycompat.pyc
-${PYSITELIB}/rope/base/utils/pycompat.pyo
+${PYSITELIB}/rope/base/versioning.py
+${PYSITELIB}/rope/base/versioning.pyc
+${PYSITELIB}/rope/base/versioning.pyo
 ${PYSITELIB}/rope/base/worder.py
 ${PYSITELIB}/rope/base/worder.pyc
 ${PYSITELIB}/rope/base/worder.pyo
@@ -181,6 +181,9 @@ ${PYSITELIB}/rope/contrib/autoimport/__i
 ${PYSITELIB}/rope/contrib/autoimport/defs.py
 ${PYSITELIB}/rope/contrib/autoimport/defs.pyc
 ${PYSITELIB}/rope/contrib/autoimport/defs.pyo
+${PYSITELIB}/rope/contrib/autoimport/models.py
+${PYSITELIB}/rope/contrib/autoimport/models.pyc
+${PYSITELIB}/rope/contrib/autoimport/models.pyo
 ${PYSITELIB}/rope/contrib/autoimport/parse.py
 ${PYSITELIB}/rope/contrib/autoimport/parse.pyc
 ${PYSITELIB}/rope/contrib/autoimport/parse.pyo

Index: pkgsrc/devel/py-rope/distinfo
diff -u pkgsrc/devel/py-rope/distinfo:1.21 pkgsrc/devel/py-rope/distinfo:1.22
--- pkgsrc/devel/py-rope/distinfo:1.21  Sun Apr 30 18:24:21 2023
+++ pkgsrc/devel/py-rope/distinfo       Thu May  4 10:03:52 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.21 2023/04/30 18:24:21 wiz Exp $
+$NetBSD: distinfo,v 1.22 2023/05/04 10:03:52 wiz Exp $
 
-BLAKE2s (rope-1.1.1.tar.gz) = 7573a11feaf63b7c21d16ceb5f39dcd59e03f89fc8baeb3e1a19fbd8acab213d
-SHA512 (rope-1.1.1.tar.gz) = aaf664a63ef00e3c844d6999338fe6a3384ddecfe95ef9b7eb213e5c37c9f78f7d2ea59aa7e612487bac5eaaaf7fc8ba499c0d43c740f99a7b3be64c9d7f6e07
-Size (rope-1.1.1.tar.gz) = 274610 bytes
+BLAKE2s (rope-1.7.0.tar.gz) = b4db393c1cb8f5adaa2dbd6145f7d05b5e5cd535e73dd7450040271c8dbf09c3
+SHA512 (rope-1.7.0.tar.gz) = 13cc3a2041c58c142892d1c9e5105ecdaa672e012364a5d4ccf82dbf5110fe0b6f0362b3a0309e9e6b72ab1d267dfc58eae8f3af3a8756f0356a6aff06c09abd
+Size (rope-1.7.0.tar.gz) = 295362 bytes



Home | Main Index | Thread Index | Old Index