Commit graph

153949 commits

Author SHA1 Message Date
obache
b95f1dbff0 Updated devel/py-Optik to 1.5.3 2010-02-04 10:35:43 +00:00
obache
e82026dab0 Update py-Optik to 1.5.3.
Based on PR#41674 by Kamel Derouiche.

1.5.3 (23 Jul 2006)
-------------------

  * Port r47026 from Python svn repository: fix unit test so
    it doesn't screw up other tests in the Python test suite.

1.5.2 (22 Jul 2006)
-------------------

  * Minor documentation tweaks.

  * SF bug #1498146: handle Unicode help strings (affects option help,
    description, and epilog).

1.5.1 (19 Apr 2006)
-------------------

  * Fix so the 'merge' script works again (bugs spotted, and mostly
    fixed, by Andrea 'fwyzard' Bocci).

  * SF bug #1145594: add 'destroy()' method to OptionParser so
    applications can explicitly break reference cycles, making life
    easier for Python's garbage collector.

  * SF feature #988126: add 'epilog' attribute to OptionParser
    (and constructor arg): paragraph of text to print after the
    main option help.

  * Corrected French translation (po/optik/fr.po) (Laurent Laporte).

  * Beefed up reference guide.

  * Backported to Python 2.0/2.1 (Giovanni Bajo).

1.5 (6 Dec 2004)
----------------

(All changes first released in Optik 1.5a1 except as noted.)

  * Optik now requires Python 2.2 or later.

  * Add expansion of default values in help text: the string
    "%default" in an option's help string is expanded to str() of
    that option's default value, or "none" if no default value.

  * SF bug #955889: option default values that happen to be strings are
    now processed in the same way as values from the command line; this
    allows generation of nicer help when using custom types.  Can
    be disabled with parser.set_process_default_values(False).

  * SF bug #960515: don't crash when generating help for callback
    options that specify 'type', but not 'dest' or 'metavar'.

  * SF feature #815264: change the default help format for short options
    that take an argument from e.g. "-oARG" to "-o ARG"; add
    set_short_opt_delimiter() and set_long_opt_delimiter() methods to
    HelpFormatter to allow (slight) customization of the formatting.

  * SF patch #736940: internationalize Optik: all built-in user-
    targeted literal strings are passed through gettext.gettext().  Also
    added po/ directory for message catalog and translations, so that
    Optik-based applications have a single place to go for translations
    of Optik's built-in messags.  Include translations for Danish and
    German (thanks to Frederik S. Olesen and Martin v. L
    respectively), and partial translations for French (by me).

  * SF bug #878453 (Python): respect $COLUMNS environment variable for
    wrapping help output.

  * SF feature #964317: allow type objects to specify option types;
    allow "str" as an alias for "string".

  * SF feature #988122: expand "%prog" in the 'description' passed
    to OptionParser, just like in the 'usage' and 'version' strings.
    (This is *not* done in the 'description' passed to OptionGroup.)

  * Added HTML-formatted docs to the source distribution (in addition
    to the reStructuredText source files).

  * Added three new examples: custom_source.py, custom_type.py, and
    no_help.py.

  * Remove the old, broken "ignore" option conflict handler -- was
    only needed for compatibility with Optik 1.1.

  * Move documentation into docs/ directory, and write a script
    (mkpydoc) to automatically convert it to LaTeX for the Python
    standard library manual.  Many documentation improvements.
    (1.5a2)

  * SF #997100: attempt to avoid triggering a FutureWarning in
    __repr__() when using id() with "%x" (1.5a2).

  * SF #1048725: fix typo in Values.__eq__() introduced in 1.5a1.

  * Fix test script so it plays nice when being run with other test
    scripts (as in the Python test suite) (1.5a2).

  * SF patch #870807: allow users to specify integer option arguments
    in hexadecimal, octal, or binary with leading "0x", "0", or "0b"
    (1.5 final).

  * SF feature #1050184: add 'append_const' action (patch by
    Andrea 'fwyzard' Bocci) (1.5 final).

  * Keep going if importing gettext fails (so optparse can be used
    in the Python build process) (1.5 final).


Python 2.3 (29 July 2003)
-------------------------

(A couple of fixes were made in Optik in time for its inclusion in
Python 2.3 as optparse, but I never got around to making a corresponding
bug-fix release of Optik.)

  * Add __all__ to optik package and optparse module (fixes
    SF bug #728563).

  * Fix so the 'prog' attribute of OptionParser (which was
    surreptitiously added in 1.4.1, but undocumented, untested,
    and not working) actually works.


1.4.1 (20 Apr 2003)
-------------------

  * Changed to use the new textwrap module included with Python 2.3.
    Includes a copy of textwrap.py for use with older Python versions.

  * Set __all__ in each of the optik.* modules, to make life easier for
    optik/__init__.py.

  * Rewrote the test suite to use PyUnit, and added some new tests
    that revealed some long-hidden bugs.  Fixed those bugs.
    (Thanks to Johannes Gijsbers for doing all the work!)

  * For versions of Python with builtin True and False values (ie.
    Python 2.2.1 and later), make store_true/store_false use them.

  * Add forwards-compatibility 'optparse' module, so scripts can
    import from 'optparse' and work under base Python 2.3, or
    under older Pythons with Optik 1.4.1 or later installed.
2010-02-04 10:35:28 +00:00
wiz
795e5b0bbf Added devel/p5-InlineX-C2XS version 0.15 2010-02-04 09:55:24 +00:00
wiz
45e3f5e0c2 + p5-InlineX-C2XS 2010-02-04 09:55:18 +00:00
wiz
c57625ecd4 Initial import of p5-InlineX-C2XS, packaged for wip by Wen Heping.
InlineX::C2XS - create an XS file from an Inline C file.

The C file that InlineX::C2XS needs to find would contain
only the C code.

InlineX::C2XS looks for the file in ./src directory,
expecting that the filename will be the same as what
appears after the final '::' in the module name (with a
'.c' extension).ie if the module is calle My::Next::Mod
it looks for a file ./src/Mod.c, and creates a file
named Mod.xs. Also created, is the file 'INLINE.h' - but
only if that file is needed. The generated xs file (and
INLINE.h) will be written to the cwd unless a third argument
(specifying a valid directory) is provided to the c2xs()
function.

The created XS file, when packaged with the '.pm' file, an
appropriate 'Makefile.PL', and 'INLINE.h' (if it's needed),
can be used to build the module in the usual way - without
any dependence upon the Inline::C module
2010-02-04 09:54:44 +00:00
wiz
0ebee89c51 Added geography/p5-Geo-ShapeFile version 2.52 2010-02-04 09:52:38 +00:00
wiz
b022557be5 + p5-Geo-ShapeFile 2010-02-04 09:52:21 +00:00
wiz
e5288c3532 Initial import of p5-Geo-ShapeFile, packaged for wip by Wen Heping.
Geo::ShapeFile module reads ESRI ShapeFiles containing GIS mapping
data, it has support for shp (shape), shx (shape index), and dbf
(data base) formats.
2010-02-04 09:52:04 +00:00
tnn
e4d89d26f9 DESTDIR conversion 2010-02-04 09:18:12 +00:00
wiz
80c91351a8 Remove file that should have disappeared with 2.28.2 update. 2010-02-04 07:18:11 +00:00
dholland
88cb213617 destdir support, plus fix some pre-existing funnies with install permissions 2010-02-04 06:40:19 +00:00
dholland
0575276017 destdir support 2010-02-04 05:23:27 +00:00
dholland
250e7d7a12 destdir support 2010-02-04 05:08:12 +00:00
obache
5a6c7ee90d Remove a redundant MASTER_SITES line. 2010-02-04 04:42:09 +00:00
obache
14e811d9fb Update abook to 0.5.6.
0.5.6
 - translation fixes
 - fixed gcrd export format (\r\n line endings according to RFC, Marc Tardif)
 - fix localized keybindings with --disable-nls
2010-02-04 04:31:15 +00:00
joerg
e0dad6b70f DESTDIR support 2010-02-04 02:42:23 +00:00
joerg
0f39cd669d DESTDIR support 2010-02-04 02:31:29 +00:00
joerg
e8c3c91783 DESTDIR support 2010-02-04 02:20:24 +00:00
joerg
ef511a7cea DESTDIR support 2010-02-04 02:00:36 +00:00
joerg
23ccbcec83 DESTDIR ready 2010-02-04 01:57:26 +00:00
joerg
e4d7104472 DESTDIR support 2010-02-04 01:46:15 +00:00
joerg
ee5aa8dde2 DESTDIR support 2010-02-04 01:32:00 +00:00
joerg
895818c819 DESTDIR support 2010-02-04 01:21:39 +00:00
seb
2c8fe778a2 - Add LICENSE
- Removed commented out dependencies in previous commit
2010-02-04 01:15:28 +00:00
joerg
97147c216a DESTDIR support 2010-02-03 23:41:03 +00:00
wiz
3f85a7e461 Added math/wxMaxima version 0.8.4nb1 2010-02-03 23:39:52 +00:00
wiz
24a1f4805f + wxMaxima. 2010-02-03 23:39:33 +00:00
joerg
367301e6d0 DESTDIR support 2010-02-03 23:27:52 +00:00
minskim
952c816d13 Note update of scmgit. 2010-02-03 23:26:57 +00:00
minskim
4d9d7395f3 Update scmgit to 1.6.6.1.
Changes:
 * "git blame" did not work well when commit lacked the author name.
 * "git branch -a name" wasn't diagnosed as an error.
 * "git count-objects" did not handle packfiles that are bigger than 4G on
   platforms with 32-bit off_t.
 * "git checkout -m other" while on a branch that does not have any commit
   segfaulted, instead of failing.
 * "git fast-import" choked when fed a tag that do not point at a
   commit.
 * "git grep" finding from work tree files could have fed garbage to
   the underlying regexec(3).
 * "git grep -L" didn't show empty files (they should never match, and
   they should always appear in -L output as unmatching).
 * "git rebase -i" did not abort cleanly if it failed to launch the editor.
 * "git reset --hard" did not work correctly when GIT_WORK_TREE environment
   variable is used to point at the root of the true work tree.
 * http-backend was not listed in the command list in the documentation.
 * Building on FreeBSD (both 7 and 8) needs OLD_ICONV set in the Makefile
 * "git checkout -m some-branch" while on an unborn branch crashed.
2010-02-03 23:26:16 +00:00
joerg
d8b33546f3 DESTDIR support 2010-02-03 23:23:27 +00:00
joerg
40bf6e7166 DESTDIR ready 2010-02-03 23:21:36 +00:00
joerg
fdbe3af1ef DESTDIR support 2010-02-03 23:11:15 +00:00
joerg
025b7ad848 DESTDIR ready 2010-02-03 23:05:44 +00:00
joerg
406a95f945 DESTDIR ready. Needs full libXt. 2010-02-03 23:04:20 +00:00
joerg
2965f9ddeb DESTDIR support 2010-02-03 22:58:38 +00:00
joerg
166f273b95 DESTDIR ready. Needs full libXt. 2010-02-03 22:53:39 +00:00
joerg
5b9b74839b DESTDIR support. Needs full libXt dependency. 2010-02-03 22:46:02 +00:00
joerg
1efbf474bc DESTDIR ready. Needs full libXt. 2010-02-03 22:42:57 +00:00
joerg
c0d9b09a2d DESTDIR ready 2010-02-03 22:42:10 +00:00
joerg
7aff8ee764 DESTDIR support. Full libXt dependency. 2010-02-03 22:40:00 +00:00
joerg
e89232e407 DESTDIR support 2010-02-03 22:37:56 +00:00
joerg
d53c31cd1d DESTDIR ready 2010-02-03 22:35:34 +00:00
seb
cd1c9ffac0 Updated www/p5-Alien-GvaScript to 1.21 2010-02-03 22:35:08 +00:00
seb
285a8e1592 Update from version 1.11 to version 1.21
Pkgsrc changes:
- Add LICENSE

Upstream changes:
1.21 18.01.2010
  - bug in Builder, Gvascript.js was written to wrong location

1.20   07.01.2009
  - Element.autoScroll : fix scroll amount when the scrolling block has
    an offsetTop > 0
  - removed PAGE_UP/DOWN handlers in TreeNavigator -- let the browser deal
    with those
  - treeNavigator select() has an additional param "prevent_autoscroll"
  - treeNavigator autoscroll only active through kbd, not through click
  - treeNavigator observes "mouseup" (instead of mousedown or click)
  - autoCompleter bug fix on detach (stop observing "click")
  - protoExtensions : removed RegExp.escape() (now in prototype.js)
  - autoCompleter div, display above only if enough vertical space
  - autoCompleter : code layout improvements

1.18 13.10.2009
  - fix some minor doc glitches released in 1.17

1.17 13.10.2009
  - major revision from Mona Remlawi
  - new Grid component
  - new CustomButtons component
  - new Paginator component
  - new test suite
2010-02-03 22:34:58 +00:00
joerg
ee217e6074 DESTDIR support 2010-02-03 21:55:04 +00:00
seb
d7505c5f11 Updated devel/p5-Class-C3 to 0.22 2010-02-03 21:46:21 +00:00
seb
8cc2a409a9 Update from version 0.21 to version 0.22
Pkgsrc changes:
- Drop all dependencies now that perl 5.10.0 is the minimum
required Perl version with respect to pkgsrc.

Upstream changes:
0.22 Fri, Jan 29, 2010
    - Add note that people should be using MRO::Compat rather than
      Class::C3 directly.
2010-02-03 21:46:09 +00:00
joerg
794e9d058d DESTDIR support 2010-02-03 21:35:42 +00:00
is
bce4779a59 fix paths in patches. 2010-02-03 21:14:22 +00:00