2016-06-17 13:54:09 by Filip Hajny | Files touched by this commit (2) |
Log message:
Update devel/py-argcomplete to 1.4.1.
Version 1.4.1 (2016-06-14)
- activate-global-python-argcomplete runs on Homebrew out of the box
Version 1.4.0 (2016-06-10)
- Correctly handle suggestions for positionals with variable-length
nargs. Thanks to @evanunderscore (#132, #133).
|
2016-06-06 16:51:07 by Filip Hajny | Files touched by this commit (2) |
Log message:
Update devel/py-argcomplete to 1.3.0.
Version 1.3.0 (2016-06-01)
- Correctly handle suggestions with custom nargs for optionals.
Version 1.2.0 (2016-05-25)
- Fix propagation of partially parsed subparser namespace into
parent parser namespace upon subparser failure due to partial
args. This allows completers to access partial parse results for
subparser optionals in parsed_args (#114).
- The default completer can now be specified when manually
instantiating CompletionFinder. Thanks to @avylove (#130).
Version 1.1.1 (2016-03-22)
- Use FilesCompleter as default completer fallback (#120).
|
2016-02-22 12:41:59 by Filip Hajny | Files touched by this commit (2) |
Log message:
Update devel/py-argcomplete to 1.1.0.
- Recognize subclasses of argparse._SubParsersAction.
- Support parsed_args in custom completers with missing args.
- Non-ASCII support in FilesCompleter.
- Automatically enable FilesCompleter for argparse.FileType arguments.
|
2015-11-03 04:29:40 by Alistair G. Crooks | Files touched by this commit (1995) |
Log message:
Add SHA512 digests for distfiles for devel category
Issues found with existing distfiles:
distfiles/eclipse-sourceBuild-srcIncluded-3.0.1.zip
distfiles/fortran-utils-1.1.tar.gz
distfiles/ivykis-0.39.tar.gz
distfiles/enum-1.11.tar.gz
distfiles/pvs-3.2-libraries.tgz
distfiles/pvs-3.2-linux.tgz
distfiles/pvs-3.2-solaris.tgz
distfiles/pvs-3.2-system.tgz
No changes made to these distinfo files.
Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden). All existing
SHA1 digests retained for now as an audit trail.
|
2015-08-24 18:31:28 by Filip Hajny | Files touched by this commit (2) |
Log message:
Update devel/py-argcomplete to 1.0.0.
Version 1.0.0 (2015-08-22)
- Don't print args with suppressed help by default; add
argcomplete.autocomplete(print_suppressed=True) to control this behavior.
Version 0.9.0 (2015-07-03)
- Fix always_complete_options=False support.
|
2015-06-09 16:55:57 by Filip Hajny | Files touched by this commit (3) |
Log message:
Update devel/py-argcomplete to 0.8.9.
Version 0.8.9 (2015-06-01)
- Correct doc filename in setup.cfg (fixes bdist_rpm failure, Issue 111).
- Make context managers exception-safe.
Version 0.8.8 (2015-05-01)
- Build and upload universal wheel packages in release.
- Fix issue with non-string choices for arguments.
- Improve non-ascii argparse argument support on Python 2.7.
Version 0.8.7 (2015-04-11)
- register-python-argcomplete: add option to avoid default readline
completion.
Version 0.8.6 (2015-04-11)
- Expand tilde in script name, allowing argcomplete to work when
invoking scripts from one's home directory.
Version 0.8.5 (2015-04-07)
- Fix issues related to using argcomplete in a REPL environement.
- New helper method for custom completion display.
- Expand test suite; formatting cleanup.
|
2015-04-14 01:12:44 by Blue Rats | Files touched by this commit (94) |
Log message:
Removing python26. EOL'd quite some ago and discussed a couple times on
tech-pkg@ and pkgsrc-users@.
|
2014-12-12 12:45:05 by Filip Hajny | Files touched by this commit (2) |
Log message:
Update py-argcomplete to 0.8.4.
Version 0.8.4 (2014-12-11)
- Fix issue related to using argcomplete in a REPL environement. Thanks
to @wapiflapi (pull request #91).
Version 0.8.3 (2014-11-09)
- Fix multiple issues related to using argcomplete in a REPL environement.
Thanks to @wapiflapi (pull request #90).
Version 0.8.2 (2014-11-03)
- Don't strip colon prefix in completion results if COMP_WORDBREAKS does
not contain a colon. Thanks to @berezv (pull request #88).
|
2014-10-30 14:50:41 by Filip Hajny | Files touched by this commit (4) |
Log message:
Import py-argcomplete.
Argcomplete provides easy, extensible command line tab completion of
arguments for your Python script. It makes two assumptions:
- You're using bash or zsh as your shell
- You're using argparse to manage your command line arguments/options
|