Skip to content

Commit

Permalink
Update to 1.2.1, a version from this decade:
Browse files Browse the repository at this point in the history
2013/03/16 1.2.1 N/A Fix strings-as-symbols support (really).
---------- --------- ------ ----------------------------------------------------
2013/03/16 1.2 N/A Fix strings-as-symbols support; fix end of function
marking; add the ability to only run the indexer;
remove the threading support that was broken.
---------- --------- ------ ----------------------------------------------------
2012/10/01 1.1 N/A Fix Python3 support; enhance unit tests to run using
nose, generating coverage by default; fix broken
unit tests that were not properly run before the
switch to nose; add contrib area containing the
pyxcscope integration for (X)Emacs.
---------- --------- ------ ----------------------------------------------------
2012/09/20 1.0 N/A Call it 1.0; update to use setuptools; drop .py from
installed script name; transition authorship from
Dean Hall to Peter Portante.
---------- --------- ------ ----------------------------------------------------
2012/09/19 0.3e-pajp N/A Fix issues #7 and #8: we now properly handle symbols
closest to the assignment itself (rather than the
first one), and replace the crazy comma counting
method with a more stable pattern recognition method
that explicitly records which tuples should receive
the assignment mark; fixed handling of import state-
ments of the form, "from . import moda"
---------- --------- ------ ----------------------------------------------------
2012/09/18 0.3d-pajp N/A Implement debugging help from Issue #9: dumpCst now
works on subtrees of tuples, not just lists.
---------- --------- ------ ----------------------------------------------------
2012/09/17 0.3c-pajp N/A First pass fix of Issue #6 removing errant assertion
thus allowing symbol assignment marking to work as
coded (if not correctly, see Issue #7).
---------- --------- ------ ----------------------------------------------------
2012/09/11 0.3b-pajp N/A Include changes from fspeech to get it working for
Python 3; add proper support for yield expression
following an augmented assignment; added support
for filename and line numbers when assertions fire;
fixed handling of commas on the left hand side of
assignment statements; gracefully handle errors
opening files.
GitHub issues: #5
---------- --------- ------ ----------------------------------------------------
2012/04/29 0.3a-pajp N/A (NOTE: Failed to update version!)
Fix handling of DOS style line endings.
GitHub issues: #4
---------- --------- ------ ----------------------------------------------------
2012/04/13 0.3a-pajp N/A (NOTE: Failed to update version!)
Fix handling of function definition decorators
GitHub issues: #2, #3
---------- --------- ------ ----------------------------------------------------
2012/03/11 0.3a-pajp N/A (NOTE: Failed to update version!)
Change references from abstract syntax tree to
concrete syntax tree; fix handling of trailing
commas.
---------- --------- ------ ----------------------------------------------------
2012/03/05 0.3a-pajp N/A Updated changes to support symbol assignment,
enhance unit test coverage, prepare code for PyCon
poster session.
  • Loading branch information
thomasklausner committed Apr 11, 2015
1 parent 786a04f commit 844ade6
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
7 changes: 5 additions & 2 deletions py-cscope/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# $NetBSD$

DISTNAME= pycscope-0.3
DISTNAME= pycscope-1.2.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//}
CATEGORIES= devel python
MASTER_SITES= http://pypi.python.org/packages/source/p/pycscope/
Expand All @@ -12,11 +12,14 @@ LICENSE= gnu-gpl-v2

USE_LANGUAGES= # none

REPLACE_PYTHON+= pycscope/__init__.py

INSTALLATION_DIRS= share/doc/py-cscope

post-install:
${INSTALL_DATA} ${WRKSRC}/README \
${DESTDIR}${PREFIX}/share/doc/py-cscope

.include "../../lang/python/distutils.mk"
.include "../../lang/python/application.mk"
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
14 changes: 12 additions & 2 deletions py-cscope/PLIST
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
@comment $NetBSD$
bin/pycscope.py
${PYSITELIB}/${EGG_FILE}
bin/pycscope
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/pycscope/__init__.py
${PYSITELIB}/pycscope/__init__.pyc
${PYSITELIB}/pycscope/__init__.pyo
${PYSITELIB}/pycscope/__main__.py
${PYSITELIB}/pycscope/__main__.pyc
${PYSITELIB}/pycscope/__main__.pyo
share/doc/py-cscope/README
6 changes: 3 additions & 3 deletions py-cscope/distinfo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$NetBSD$

SHA1 (pycscope-0.3.tar.gz) = 0b719f8068d5d8378819fc18f2b049c7a2720f46
RMD160 (pycscope-0.3.tar.gz) = 226656017274066eb59533dfa65fd3264e67c96b
Size (pycscope-0.3.tar.gz) = 13650 bytes
SHA1 (pycscope-1.2.1.tar.gz) = 63fbc7415e2b07293476196d1aea455437e241c6
RMD160 (pycscope-1.2.1.tar.gz) = 5aaeeb58c5877eaa1b09eea839cd4e565756fbf1
Size (pycscope-1.2.1.tar.gz) = 55680 bytes

0 comments on commit 844ade6

Please sign in to comment.