Commit graph

18417 commits

Author SHA1 Message Date
dholland
e13f165242 Fix COMMENT. 2012-06-06 21:55:22 +00:00
ryoon
4f96bc4a1d Update to 10.0.5
Changelog:
* Security fixes can be found
  https://www.mozilla.org/security/known-vulnerabilities/firefoxESR.html
	MFSA 2012-40 Buffer overflow and use-after-free issues found using Address Sanitizer
	MFSA 2012-39 NSS parsing errors with zero length items
	MFSA 2012-38 Use-after-free while replacing/inserting a node in a document
	MFSA 2012-37 Information disclosure though Windows file shares and shortcut files
	MFSA 2012-36 Content Security Policy inline-script bypass
	MFSA 2012-34 Miscellaneous memory safety hazards
* 10.5 Firefox top crash with signature [@ GLEngine@0x620cf ] (734848)
2012-06-06 14:39:21 +00:00
obache
9c52f78ff5 bison is not required to build flex.
resolve PR 46554.
2012-06-06 13:27:05 +00:00
wiz
78919f749f Update to 2.5.1:
* Noteworthy changes in release 2.5.1 (2012-06-05) [stable]

** Future changes:

  The next major release will drop support for generating parsers in K&R C.

** yacc.c: YYBACKUP works as expected.

** glr.c improvements:

*** Location support is eliminated when not requested:

  GLR parsers used to include location-related code even when locations were
  not requested, and therefore not even usable.

*** __attribute__ is preserved:

  __attribute__ is no longer disabled when __STRICT_ANSI__ is defined (i.e.,
  when -std is passed to GCC).

** lalr1.java: several fixes:

  The Java parser no longer throws ArrayIndexOutOfBoundsException if the
  first token leads to a syntax error.  Some minor clean ups.

** Changes for C++:

*** C++11 compatibility:

  C and C++ parsers use "nullptr" instead of "0" when __cplusplus is 201103L
  or higher.

*** Header guards

  The header files such as "parser.hh", "location.hh", etc. used a constant
  name for preprocessor guards, for instance:

  #ifndef BISON_LOCATION_HH
  # define BISON_LOCATION_HH
  ...
  #endif // !BISON_LOCATION_HH

  The inclusion guard is now computed from "PREFIX/FILE-NAME", where lower
  case characters are converted to upper case, and series of
  non-alphanumerical characters are converted to an underscore.

  With "bison -o lang++/parser.cc", "location.hh" would now include:

  #ifndef YY_LANG_LOCATION_HH
  # define YY_LANG_LOCATION_HH
  ...
  #endif // !YY_LANG_LOCATION_HH

*** C++ locations:

  The position and location constructors (and their initialize methods)
  accept new arguments for line and column.  Several issues in the
  documentation were fixed.

** liby is no longer asking for "rpl_fprintf" on some platforms.

** Changes in the manual:

*** %printer is documented

  The "%printer" directive, supported since at least Bison 1.50, is finally
  documented.  The "mfcalc" example is extended to demonstrate it.

  For consistency with the C skeletons, the C++ parsers now also support
  "yyoutput" (as an alias to "debug_stream ()").

*** Several improvements have been made:

  The layout for grammar excerpts was changed to a more compact scheme.
  Named references are motivated.  The description of the automaton
  description file (*.output) is updated to the current format.  Incorrect
  index entries were fixed.  Some other errors were fixed.

** Building bison:

*** Conflicting prototypes with recent/modified Flex.

  Fixed build problems with the current, unreleased, version of Flex, and
  some modified versions of 2.5.35, which have modified function prototypes.

*** Warnings during the build procedure have been eliminated.

*** Several portability problems in the test suite have been fixed:

  This includes warnings with some compilers, unexpected behavior of tools
  such as diff, warning messages from the test suite itself, etc.

*** The install-pdf target work properly:

  Running "make install-pdf" (or -dvi, -html, -info, and -ps) no longer
  halts in the middle of its course.
2012-06-06 07:20:35 +00:00
ryoon
1cd206316a Update to 13.0
Changelog:
* When opening a new tab, users are now presented with their most visited pages
* General performance improvements through incremental JavaScript garbage collection
* The default home page now has quicker access to bookmarks, history, settings, and more SPDY protocol now enabled by default for faster browsing on supported sites
* Restored background tabs are not loaded by default for faster startup
* Smooth scrolling is now enabled by default
* 72 total improvements to Page Inspector, HTML panel, Style Inspector, Scratchpad and Style Editor
* The column-fill CSS property has been implemented
* Experimental support for ECMAScript 6 Map and Set objects has been implemented
* Support for the CSS3 background-position property extended syntax has been added
* The :invalid pseudo-class can now be applied to the element
* The CSS turn <angle> unit is now supported
2012-06-05 18:09:21 +00:00
obache
583b7453cf pkg-config is not required to build. 2012-06-04 13:31:23 +00:00
obache
f842d5af5c + protobuf 2012-06-04 13:24:29 +00:00
obache
8ee32ad5e9 Import protobuf-2.4.1 as devel/protobuf.
Based on PR 46477 by Aran Clauson.

Protocol Buffers are a way of encoding structured data in an efficient yet
extensible format. Google uses Protocol Buffers for almost all of its internal
RPC protocols and file formats.
2012-06-04 13:21:50 +00:00
obache
89a626eafa Update p5-InlineX-C2XS to 0.22.
per maintainer update request by PR 46541.

ChangeLog:
- 0.22 ... Add DIST and MANIF config options.

- 0.19 ... If EXPORT_TAGS_ALL is set, then it's now unnecessary
           to set EXPORT_OK_ALL

- 0.18 ... Add CPPFLAGSEX, BOOT_F and PRE_HEAD config options.

           Add script.in (which generates the c2xs script)
2012-06-04 12:28:17 +00:00
drochner
3f7f447ba7 oops, typo in pkg name 2012-06-04 10:10:01 +00:00
drochner
d8bdb6dece install the "gdbus-codegen" python script, part of glib2 2012-06-04 09:57:42 +00:00
dholland
b238c865db Restore ${PYVERSSUFFIX}, lost in update. 2012-06-04 06:39:02 +00:00
wiz
bba68b4731 Update to 0.8.19:
Version 0.8.19   -  8 January 2011
  * Add support for Python 2.7
  * Fixed SF Bug [ 2209631 ]:
    New pcmodules.py module, modulePath code causes import error
  * Fixed SF Bug [ 1565876 ]:
    pychecker does not allow lambda with setattr and const
  * Fixed SF Bug [ 1564614 ]:
    pychecker -q on 64-bit ignores the platform-specific stdlib
  * Fixed SF Bug [ 1563572 ]:
    order of checking files affects errors reported
    PyChecker was only checking one of each set of modules with the same
    name; so it will now catch many more warnings it was missing before.
  * Fixed SF Bug [ 1563495 ]:
     couldn't find real module does not respect blacklist
  * Fixed SF Bug [ 1563494 ]:
    pychecker tracebacks when importing zope.interface.declaration
  * Add unittest-based testsuite.
  * Warn about missing opcodes.
  * Added implementations for the following opcodes:
    BUILD_SLICE, DELETE_SLICE3, DUP_TOPX, JUMP_IF_FALSE/TRUE,
    JUMP_IF_FALSE/TRUE_OR_POP, MAP_ADD, PRINT_NEWLINE_TO, SET_ADD, SETUP_WITH,
    SLICE0, STORE_MAP, STORE_SLICE+0, STORE_SLICE2, WITH_CLEANUP, YIELD_VALUE

Version 0.8.18   - 17 August 2008
  * Fixed SF Bug [ 1827412 ] pychecker.bat only handles 9 cmdline args
  * Fix warning about comparison checking with bool false alert for 'in' and 'not in'
  * Add warning for using __set__, __get__, and __delete__ in an old-style class
  * Fix spurious warning about __set__, __get__, and __delete__ not being special
    methods.
  * Fix inability to disable Warning about constant setattr()/getattr()
  * Fix spurious warning on min/max not accepting kwarg of key in Python 2.5
  * Add some __special__ pickling methods that were missing
  * Add --missingattrs option to ignore some (but not all) attribute names
  * Fix crash when using keyword arguments with builtin methods
  * Add --keepgoing option to ignore import errors
  * Add --findevil option to make it easier to find objects that crash the interpreter
  * Add support for Python 2.5

Version 0.8.17   - 3 February 2006
  * Fix spurious warning for Statement with no effect using bit shifts
  * Add -#/--limit command line option to set the max # of warnings to show
  * Remove broken command line options:  -e/--errors, --complexity
  * Add -e/--level command line options which allows the error level
    to be specified:  error, security, warning, unused, deprecated, style.
    These names map to numbers: 90, 90, 70, 50, 40, 10 (error == security).
    Specifying a value means all levels equal to or greater than it.
  * Add --only option which displays warnings only for files specified
    on the command line
  * Add --evil option for users to prevent the interpreter from crashing
    due to broken C extensions
  * Fix wrong file name when warning about returning values from
    __init__ functions. (#1291116)
  * Fix a few more glitches with setup.py.
  * Suppress warning about integer division when the code is: int(x / y)
  * Add code to skip testing objects from extension modules that are
    known to crash the interpreter.  Currently, the list includes old versions of
    matplotlib.axes.BinOpType and wx.TheClipboard.
  * Support ROT_THREE and ROT_FOUR opcodes

Version 0.8.16   - 4 September 2005
  * Fix problems installing on Windows and running setup.py build
2012-06-03 22:32:59 +00:00
wiz
5cd228d91f Update to 1.12.1:
New in 1.12.1:

* WARNING: Future backward-incompatibilities!

  - Starting from either the next minor version (1.12.2) or the next major
    version (1.13), Automake will start warning if 'configure.in' is used
    instead of 'configure.ac' as the Autoconf input.  Future versions of
    Automake will drop support for 'configure.in' altogether.

  - Autoconf 2.65 or later will be required by the next major Automake
    version (1.13).  Until now, Automake has required Autoconf version
    2.62 or later.

  - Starting from the next major Automake version (1.13), the rules to
    build pdf, ps and dvi output from Texinfo input will use the '--tidy'
    option by default.  Since such an option was introduced in Texinfo
    4.9, this means that Makefiles generated by future Automake versions
    will require at least that version of Texinfo.

  - Starting from the next major Automake version (1.13), the parallel
    testsuite harness (previously only enabled by the 'parallel-tests'
    option) will become the default one; the older serial testsuite
    harness will still be available through the use of the 'serial-tests'
    option.

  - The following long-obsolete m4 macros will be removed in the
    next major Automake version (1.13):

      AM_PROG_CC_STDC:    superseded by AC_PROG_CC since October 2002
      fp_PROG_CC_STDC:    broken alias for AM_PROG_CC_STDC
      fp_WITH_DMALLOC:    old alias for AM_WITH_DMALLOC
      AM_CONFIG_HEADER:   superseded by AC_CONFIG_HEADERS since July 2002
      ud_PATH_LISPDIR:    old alias for AM_PATH_LISPDIR
      jm_MAINTAINER_MODE: old alias for AM_MAINTAINER_MODE
      ud_GNU_GETTEXT:     old alias for AM_GNU_GETTEXT
      gm_PROG_LIBTOOL:    old alias for AC_PROG_LIBTOOL
      fp_C_PROTOTYPES:    old alias for AM_C_PROTOTYPES (which was part
                          of the now-removed automatic de-ANSI-fication
                          support of Automake)

  - All the "old alias" macros in 'm4/obsolete.m4' will be removed in
    the next major Automake version (1.13).

  - Support for the two- and three-arguments invocation forms of the
    AM_INIT_AUTOMAKE macro will be deprecated in the next minor version
    of Automake (1.12.1) and removed in the next major version (1.13).

  - The '--acdir' option of aclocal is deprecated, and will probably
    be removed in the next major Automake release (1.13).  You should
    use the options '--automake-acdir' and '--system-acdir' instead
    (which have been introduced in Automake 1.11.2).

  - The exact order in which the directories in the aclocal macro
    search path are looked up is probably going to be changed in the
    next Automake release (1.13).

* New supported languages:

  - Support for Objective C++ has been added; it should work similarly to
    the support for Objective C.

* Deprecated obsolescent features:

  - Use of the long-deprecated two- and three-arguments invocation forms
    of the AM_INIT_AUTOMAKE macro now elicits a warning in the 'obsolete'
    category.  Starting from the next major Automake release (1.13), such
    usages won't be allowed anymore.

  - Support for the "Cygnus-style" trees (enabled by the 'cygnus' option) is
    now deprecated (its use triggers a warning in the 'obsolete' category).
    It will be removed in the next major Automake release (1.13).

  - The long-obsolete (since 1.10) automake-provided $(mkdir_p) make
    variable, @mkdir_p@ configure-time substitution and AM_PROG_MKDIR
    m4 macro are deprecated, eliciting a warning in the 'obsolete'
    category.  They will be removed in the next major version (1.13).

* Miscellaneous changes:

  - The Automake test cases now require a proper POSIX-conforming shell.
    Older non-POSIX Bourne shells (like Solaris 10 /bin/sh) won't be
    accepted anymore.  In most cases, the user shouldn't have to specify
    such POSIX shell explicitly, since it will be looked up at configure
    time.  Still, when this lookup fails, or when the user wants to
    override its conclusion, the variable 'AM_TEST_RUNNER_SHELL' can be
    used (pointing to the shell that will be used to run the Automake
    test cases).

Bugs fixed in 1.12.1:

* Bugs introduced by 1.12:

  - Several weaknesses in Automake's own build system and test suite
    have been fixed.

* Bugs introduced by 1.11.3:

  - When given non-option arguments, aclocal rejects them, instead of
    silently ignoring them.

* Long-standing bugs:

  - When the 'color-tests' option is in use, forcing of colored testsuite
    output through "AM_COLOR_TESTS=always" works even if the terminal is
    a non-ANSI one, i.e., if the TERM environment variable has a value of
    "dumb".

  - Several inefficiencies and poor performances in the implementation
    of the parallel-tests 'check' and 'recheck' targets have been fixed.

  - The post-processing of output "#line" directives done the ylwrap
    script is more faithful w.r.t. files in a subdirectory; for example,
    if the processed file is "src/grammar.y", ylwrap will correctly
    produce directives like:
        #line 7 "src/grammar.y"
    rather than like
        #line 7 "grammar.y"
    as it did before.

* Bugs with new Perl versions:

  - Aclocal works correctly with perl 5.16.0 (automake bug#11543).
2012-06-03 21:18:30 +00:00
wiz
78f7f6eed8 Update to 2.2.2:
This is a regularly-scheduled bugfix release.
    addremove: document default similarity behavior (issue3429)
    alias: inherit command optionalrepo flag (issue3298)
    amend: preserve extra dict (issue3430)
    bisect: save current state before running a command
    bugzilla: fix transport initialization on python 2.4
    build: fix hgrc manpage building with docutils 0.9
    bundle: make bundles more portable (isue3441)
    changelog: ensure that nodecache is valid (issue3428)
    hg-ssh: exit with 255 instead of -1 on error
    hgweb: fix filediff base calculation
    largefiles: fix "hg status dir" missing regular files (issue3421)
    largefiles: fix deletion of multiple missing largefiles (issue3329)
    largefiles: follow normal codepath for addremove if non-largefiles repo (issue3249)
    largefiles: in putlfile, ensure tempfile's directory exists prior to creation
    largefiles: use wlock for lfconvert (issue3444)
    localrepo: clear _filecache earlier to really force reloading (issue3462)
    match: make 'match.files()' return list object always
    mq: add --no-backup for qpush/qpop/qgoto
    mq: backup local changes in qpop --force (issue3433)
    mq: backup local changes in qpush --force
    mq: qimport need wlock for --push - do that after releasing lock
    osutil: handle deletion race with readdir/stat (issue3463)
    pager: check if signal.SIGPIPE exists
    pager: preserve Hg's exit code (and fix Windows support) (issue3225)
    pager: remove quiet flag
    paper, monoblue: link correctly to lines in annotate view
    parsers: fix refcount bug on corrupt index
    patch: fix segfault against unified diffs which start line is zero
    patch: keep patching after missing copy source (issue3480)
    posix: workaround lack of TIOCGWINSZ on Irix (issue3449)
    revpair: handle odd ranges (issue3474)
    revset: explicitely tag alias arguments for expansion
    revset: fix infinite alias expansion detection
    revset: fix traceback for bogus revisions in id(rev)
    revset: make matching() preserve input revision order
    scmutil: seen.union should be seen.update (issue3476)
    subrepo: do not traceback on .hgsubstate parsing errors
    subrepo: ignore blank lines in .hgsubstate (issue3424)
    tag: run commit hook when lock is released (issue3344)
    templater: handle SyntaxError when parsing ui.logtemplate
    util: fix bad variable use in bytecount introduced by f0f7f3fab315
    win32: fix encoding handling for registry strings (issue3467)
2012-06-03 20:03:50 +00:00
obache
f62c85186b Update py-pip to 1.1.
Based on PR 46531 by Wen Heping.
* convert to use python/egg.mk.

1.1 (2012-02-16)
----------------

* Fixed issue #326 - don't crash when a package's setup.py emits UTF-8 and
  then fails. Thanks Marc Abramowitz.

* Added ``--target`` option for installing directly to arbitrary directory.
  Thanks Stavros Korokithakis.

* Added support for authentication with Subversion repositories. Thanks
  Qiangning Hong.

* Fixed issue #315 - ``--download`` now downloads dependencies as well.
  Thanks Qiangning Hong.

* Errors from subprocesses will display the current working directory.
  Thanks Antti Kaihola.

* Fixed issue #369 - compatibility with Subversion 1.7. Thanks Qiangning
  Hong. Note that setuptools remains incompatible with Subversion 1.7; to
  get the benefits of pip's support you must use Distribute rather than
  setuptools.

* Fixed issue #57 - ignore py2app-generated OS X mpkg zip files in finder.
  Thanks Rene Dudfield.

* Fixed issue #182 - log to ~/Library/Logs/ by default on OS X framework
  installs. Thanks Dan Callahan for report and patch.

* Fixed issue #310 - understand version tags without minor version ("py3")
  in sdist filenames. Thanks Stuart Andrews for report and Olivier Girardot for
  patch.

* Fixed issue #7 - Pip now supports optionally installing setuptools
  "extras" dependencies; e.g. "pip install Paste[openid]". Thanks Matt Maker
  and Olivier Girardot.

* Fixed issue #391 - freeze no longer borks on requirements files with
  --index-url or --find-links. Thanks Herbert Pfennig.

* Fixed issue #288 - handle symlinks properly. Thanks lebedov for the patch.

* Fixed issue #49 - pip install -U no longer reinstalls the same versions of
  packages. Thanks iguananaut for the pull request.

* Removed ``-E`` option and ``PIP_RESPECT_VIRTUALENV``; both use a
  restart-in-venv mechanism that's broken, and neither one is useful since
  every virtualenv now has pip inside it.

* Fixed issue #366 - pip throws IndexError when it calls `scraped_rel_links`

* Fixed issue #22 - pip search should set and return a userful shell status code

* Fixed issue #351 and #365 - added global ``--exists-action`` command line
  option to easier script file exists conflicts, e.g. from editable
  requirements from VCS that have a changed repo URL.
2012-06-03 13:18:58 +00:00
dholland
528e06233d tv_sec isn't necessarily time_t. Fixes netbsd-5 build. 2012-06-02 20:06:30 +00:00
dholland
74af2b7144 Clear PACKAGES in the build environment, as if it's set the build fails. 2012-06-02 19:28:05 +00:00
cheusov
046ffb9517 Remove variable GNU_PROGRAM_PREFIX as discussed in pkgsrc-users@, always
use prefix 'g' instead, and add symlinks
with original names in gnu/bin and gnu/man.

++pkgrevision
2012-06-02 11:54:38 +00:00
cheusov
534718c470 Add symlinks in gnu/man/man1/
++pkgrevision
2012-06-02 08:18:35 +00:00
cheusov
0ab82a9914 Add symlink gnu/man/man1/indent.1
++pkgrevision
2012-06-02 08:05:59 +00:00
cheusov
7855c07dd3 Add symlink gnu/man/man1/make.1
++pkgrevision
2012-06-02 07:57:21 +00:00
cheusov
cf5e97d665 Add symlink gnu/man/man1/m4
++pkgrevision
2012-06-02 07:51:04 +00:00
obache
8a25ff7590 Convert to usual way to define DISTNAME/PKGNAME and WRKSRC. 2012-06-02 05:53:14 +00:00
obache
482634e4da Allow compile on Mac OS X, taken from upstream fix.
Use pid_t instead of __pid_t.
Fixes PR 46514.
2012-06-02 05:43:07 +00:00
taca
3f2c387b8f Update ruby-railties32 to 3.2.5.
## Rails 3.2.4 (May 31, 2012) ##

*   Add hook for resource route's generator. *Santiago Pastorino*
2012-06-02 01:42:13 +00:00
taca
98924023b6 Update ruby-activemodel32 to 3.2.5.
## Rails 3.2.4 (May 31, 2012) ##

*   No changes.
2012-06-02 01:39:48 +00:00
taca
5a1fe5bf3b Update ruby-activesupport32 to 3.2.5.
3.2.4 had some regression related problem.

## Rails 3.2.4 (May 31, 2012) ##

*   Added #beginning_of_hour and #end_of_hour to Time and DateTime core
    extensions. *Mark J. Titorenko*

*   ActiveSupport::JSON::Variable is deprecated. Define your own #as_json and #encode_json methods
    for custom JSON string literals. *Erich Menge*
2012-06-02 01:39:07 +00:00
taca
c9f9e346d0 Update ruby-railties31 to 3.1.5.
## Rails 3.1.5 (May 31, 2012) ##

*   No changes.
2012-06-02 01:36:16 +00:00
taca
ea21360cdb Update ruby-activemodel31 to 3.1.5.
## Rails 3.1.5 (May 31, 2012) ##

*   No changes.
2012-06-02 01:33:42 +00:00
taca
395242c460 Update ruby-activesupport31 to 3.1.5.
## Rails 3.1.5 (May 31, 2012) ##

*   call binmode on the tempfile for Ruby 1.8 compatibility

*   Stop SafeBuffer#clone_empty from issuing warnings

*   Use 1.9 native XML escaping to speed up html_escape and shush regexp warnings
2012-06-02 01:33:14 +00:00
taca
519c89a963 Update ruby-railties to 3.0.13.
* Rails 3.0.13 (May 31, 2012)

* No changes.
2012-06-02 01:31:34 +00:00
taca
c84653be9a Update ruby-activemodel to 3.0.13.
* Rails 3.0.13 (May 31, 2012)

* No changes.
2012-06-02 01:27:45 +00:00
taca
6e5b096ee5 Update ruby-activesupport3 to 3.0.13.
* Rails 3.0.13 (May 31, 2012)

* Stop SafeBuffer#clone_empty from issuing warnings
2012-06-02 01:27:07 +00:00
taca
558a0d58e4 Update ruby-simplecov to 0.6.4.
v0.6.4, 2012-05-10 ([changes](https://github.com/colszowka/simplecov/compare/v0.6.3...v0.6.4))
-------------------

  * [BUGFIX] Encoding issues with ISO-8859-encoded source files fixed.
    See https://github.com/colszowka/simplecov/pull/117. (thanks to @Deradon)
  * [BUGFIX] Ensure ZeroDivisionErrors won't occur when calculating the coverage result, which previously
    could happen in certain cases. See https://github.com/colszowka/simplecov/pull/128. (thanks to @japgolly)
  * [REFACTORING] Changed a couple instance variable lookups so SimpleCov does not cause a lot of warnings when
    running ruby at a higher warning level. See https://github.com/colszowka/simplecov/issues/106 and
    https://github.com/colszowka/simplecov/pull/119. (thanks to @mvz and @gioele)


v0.6.3, 2012-05-10 ([changes](https://github.com/colszowka/simplecov/compare/v0.6.2...v0.6.3))
-------------------

  * [BUGFIX] Modified the API-changes for newer multi_json versions introduced with #122 and v0.6.2 so
    they are backwards-compatible with older multi_json gems in order to avoid simplecov polluting
    the multi_json minimum version requirement for entire applications.
    See https://github.com/colszowka/simplecov/issues/132
  * Added appraisal gem to the test setup in order to run the test suite against both 1.0 and 1.3
    multi_json gems and ensure the above actually works :)
2012-06-02 00:51:30 +00:00
taca
ebeebcef98 Update ruby-rspec-rails to 2.10.1.
### 2.10.1 / 2012-05-03
[full changelog](http://github.com/rspec/rspec-rails/compare/v2.10.0...v2.10.1)

Bug fixes

* fix regression introduced in 2.10.0 that broke integration with Devise
  (https://github.com/rspec/rspec-rails/issues/534)

### 2.10.0 / 2012-05-03
[full changelog](http://github.com/rspec/rspec-rails/compare/v2.9.0...v2.10.0)

Bug fixes

* `render_views` called in a spec can now override the config setting. (martinsvalin)
* Fix `render_views` for anonymous controllers on 1.8.7. (hudge, mudge)
* Eliminate use of deprecated `process_view_paths`
* Fix false negatives when using `route_to` matcher with `should_not`
* `controller` is no longer nil in `config.before` hooks
* Change `request.path_parameters` keys to symbols to match real Rails
  environment (Nathan Broadbent)
* Silence deprecation warnings in pre-2.9 generated view specs (Jonathan del
  Strother)
2012-06-02 00:48:42 +00:00
taca
305bf9682a Update ruby-rspec to 2.10.0.
This is a meta package like one and reflect update of
ruby-rspec-core/ruby-rspec-expectations/ruby-rspec-mock.
2012-06-02 00:47:46 +00:00
taca
fa825000f1 Update ruby-rspec-mocks to 2.10.1.
### 2.10.1 / 2012-05-05
[full changelog](http://github.com/rspec/rspec-mocks/compare/v2.10.0...v2.10.1)

Bug fixes

* fix regression of edge case behavior
  (https://github.com/rspec/rspec-mocks/issues/132)
    * fixed failure of `object.should_receive(:message).at_least(0).times.and_return value`
    * fixed failure of `object.should_not_receive(:message).and_return value`

### 2.10.0 / 2012-05-03
[full changelog](http://github.com/rspec/rspec-mocks/compare/v2.9.0...v2.10.0)

Bug fixes

* fail fast when an `exactly` or `at_most` expectation is exceeded
2012-06-02 00:45:55 +00:00
taca
8036ca7169 Update ruby-rspec-expectations to 2.10.0.
### 2.10.0 / 2012-05-03
[full changelog](http://github.com/rspec/rspec-expectations/compare/v2.9.1...v2.10.0)

Enhancements

* Add new `start_with` and `end_with` matchers (Jeremy Wadsack)
* Add new matchers for specifying yields (Myron Marson):
    * `expect {...}.to yield_control`
    * `expect {...}.to yield_with_args(1, 2, 3)`
    * `expect {...}.to yield_with_no_args`
    * `expect {...}.to yield_successive_args(1, 2, 3)`
* `match_unless_raises` takes multiple exception args

Bug fixes

* Fix `be_within` matcher to be inclusive of delta.
* Fix message-specific specs to pass on Rubinius (John Firebaugh)
2012-06-02 00:45:07 +00:00
taca
2853027476 Update ruby-rspec-core to 2.10.1.
### 2.10.1 / 2012-05-19
[full changelog](http://github.com/rspec/rspec-core/compare/v2.10.0...v2.10.1)

Bug fixes

* `RSpec.reset` properly reinits configuration and world
* Call `to_s` before `split` on exception messages that might not always be
  Strings (slyphon)

### 2.10.0 / 2012-05-03
[full changelog](http://github.com/rspec/rspec-core/compare/v2.9.0...v2.10.0)

Enhancements

* Add `prepend_before` and `append_after` hooks (preethiramdev)
    * intended for extension libs
    * restores rspec-1 behavior
* Reporting of profiled examples (moro)
    * Report the total amount of time taken for the top slowest examples.
    * Report what percentage the slowest examples took from the total runtime.

Bug fixes

* Properly parse `SPEC_OPTS` options.
* `example.description` returns the location of the example if there is no
  explicit description or matcher-generated description.
* RDoc fixes (Grzegorz Świrski)
* Do not modify example ancestry when dumping errors (Michael Grosser)
2012-06-02 00:44:33 +00:00
taca
ec04361ce4 Update ruby-parsetree to 3.0.9.
=== 3.0.9 / 2012-05-01

* 6 minor enhancements:

  * Added a bunch of new tests from PTTC.
  * Added masgn handling inside block_pass
  * Added rewrite_iter to unwrap masgns w/ only 1 arg.
  * Handle rewriting block_pass in iter.
  * Imported RawParseTree test data from PTTC.
  * Removed rewrite_masgn requirement for 4 slots.

* 3 bug fixes:

  * Fixed dependencies to ensure they're not going to use ruby_parser 3 and friends.
  * Fixed segv for NODE_BLOCK_PASS in iter (nd_iter == 1... go boom)
  * Remove nil body in iter (I think this is wrong, but whatevs).
2012-06-02 00:40:54 +00:00
taca
6a96f84c45 Update ruby-mocha to 0.11.4.
= 0.11.4
* Homepage has moved to http://gofreerange.com/mocha/docs.
2012-06-02 00:40:05 +00:00
taca
410a8c0252 Update ruby-highline to 1.6.12.
== 1.6.12

* Silenced warnings (by James McEwan).
2012-06-02 00:39:32 +00:00
taca
a826a127a5 Update ruby-gettext_i18n_rails to 0.5.4.
Changes are unknown.
2012-06-02 00:38:49 +00:00
taca
e6360e8810 Update ruby-fast_gettext to 0.6.7.
Changes are unknown.
2012-06-02 00:38:09 +00:00
taca
8a4af971ef Update ruby-gettext o 2.2.1.
= Ruby-GetText-Package-2.2.1 (2012-05-20)
 * Supported non ASCII string in msgid. [GitHub#1]
   [Patch by Urban Hafner]
 * Stopped overriding String#% on Ruby 1.9.
 * Fixed a bug that "\" is too escaped.
 * Removed GetText.bindtext dependency from GetText::PoParser.
 * Ranamed GetText::MOFile to GetText::MoFile but GetText::MOFile
   is still available.

Thanks to:
 * Urban Hafner
2012-06-02 00:37:25 +00:00
taca
7b90efe1a2 Update ZenTest to 4.8.1.
=== 4.8.1 / 2012-06-01

* 1 bug fix:

  * Fixed 1.9 bug caused by differences between Hash#find_all and Hash#select. (semaperepelitsa)
2012-06-02 00:35:50 +00:00
cheusov
46a5dcfbfa Add gnu/man/man1/patch.1
++pkgrevision
2012-06-01 16:32:41 +00:00
wiz
c930a77807 Remove LICENSE=# 2012-06-01 15:47:18 +00:00
taca
5a447a3350 Update hoe to 3.0.6.
=== 3.0.6 / 2012-05-15

* 1 minor enhancement:

  * Added install_plugins to the newb task

=== 3.0.5 / 2012-05-07

* 1 bug fix:

  * Fixed ridocs argument handling (erikh)

=== 3.0.4 / 2012-05-01

* 1 bug fix:

  * Removed rubygems/deprecated and rolled my own for users on older rubygems
2012-06-01 14:29:01 +00:00
taca
32bf172fa5 Update ZenTest to 4.8.0.
=== 4.8.0 / 2012-05-04

* 1 minor enhancement:

  * Added Minitest generation to zentest (use -t to generate for test/unit)

* 1 bug fix:

  * Fixes and clarifications to Autotest#find_file. (hugh sasse)
2012-06-01 14:26:59 +00:00
jdc
af4bff765c Work around gcc/sparc64/-O3 bug by using buildlink to rename "-O3" to "-O1". 2012-06-01 10:26:09 +00:00
imil
d299904873 add & enable p5-Test-DistManifest 2012-05-31 16:47:34 +00:00
imil
7ea939b788 Initial import of p5-Test-DistManifest, version 1.012, into the NetBSD Packages
Collection.

This module provides a simple method of testing that a MANIFEST matches the
distribution.

It tests three things:

    Everything in MANIFEST exists
    Everything in the package is listed in MANIFEST, or subsequently matches a
    regular expression mask in MANIFEST.SKIP
    Nothing exists in MANIFEST that also matches a mask in MANIFEST.SKIP, so
    as to avoid an unsatisfiable dependency conditions

If there is no MANIFEST.SKIP included in your distribution, this module will
replicate the toolchain behaviour of using the default system-wide
MANIFEST.SKIP file. To view the contents of this file, use the command:

  $ perldoc -m ExtUtils::MANIFEST.SKIP
2012-05-31 16:44:52 +00:00
wiz
e4eb981992 Depend on libusb1. Requested by upstream maintainer, Peter Stuge.
Bump PKGREVISION.
2012-05-31 11:58:12 +00:00
wiz
3146c00f5f Add buildlink3.mk 2012-05-31 11:57:28 +00:00
sno
87fbd7709d Updating package for CPAN module Contextual::Return in
devel/p5-Contextual-Return from 0.003.001nb1 to 0.004.003.

Upstream changes (in reverse order):
0.003002  Thu Jan 19 09:27:29 2012

    - Updated version number of Contextual::Return::Failure
      to placate CPAN indexer

    - Improved error messages for bare handlers in bad contexts (thanks Mathew)

    - Work around problems with Test::More and caller


0.004000  Thu Feb 16 14:30:56 2012

    - Fixed context propagation bugs in FIXED and ACTIVE modifiers

    - Added STRICT modifier to prevent fallbacks
      (i.e. impose strict typing on return values)


0.004001  Thu Feb 16 19:01:05 2012

    - Fixed annoying POD nit (thanks Salvatore)


0.004002  Fri Mar  2 06:18:38 2012

    - Fixed significant typo (Carp:carp -> Carp::carp)
      (thanks everyone who reported it)


0.004003  Wed Apr 11 07:55:49 2012

    - Doc patch (thanks Fabrizio)

    - Patched failures.t to account from bleadperl changes
      (thanks Zefram!)
2012-05-31 09:21:26 +00:00
reed
a8bf5c84a3 Increase build dependency of gtk-doc for the kqueue configuration.
With older version 1.11nb1, it had many failures during automake.
Noticed that this newer version allowed the configuration and build
to complete.
2012-05-31 04:58:34 +00:00
jmmv
4ef2653f83 Update to 0.2:
Released on 2012/05/30.

* New global constants: globals_index.

* New methods added to the state class: get_metafield, get_metatable,
  insert, push_value, raw_get and raw_set.

* Acknowledged that Lua 5.2 is currently not supported.
2012-05-30 22:48:36 +00:00
wiz
439bc19217 Note conflict with libusb-compat. 2012-05-30 15:48:21 +00:00
wiz
b3e2eb0321 Add buildlink3.mk. 2012-05-30 15:46:00 +00:00
wiz
4e4d3f4e74 + libusb-compat 2012-05-30 15:45:44 +00:00
wiz
7c2bdea0b3 Initial import of libusb-compat-0.1.4.
Notes: depends on libusbx (we need a switch between the two)
Conflicts with libusb (we need a switch between the two)

libusb-compat-0.1 is a replacement for libusb-0.1. However, instead
of being an actual implementation, libusb-0.1 is more of a
compatibility layer (or wrapper) which just converts libusb-0.1
calls into their libusb-1.0 equivalents.

It aims to look, feel and behave exactly like libusb-0.1. As it is
a replacement, you cannot install it alongside libusb-0.1 on the
same system.

As the compatibility layer implements the exact same ABI and API,
no modifications to existing libusb-0.1-based applications are
needed. You do not even have to recompile them. This compatibility
layer is a drop-in replacement.
2012-05-30 15:42:04 +00:00
wiz
885394dc0d + libusbx. 2012-05-30 15:29:13 +00:00
wiz
f3f4d6ef90 Mark conflict with libusbx. 2012-05-30 15:28:59 +00:00
wiz
24bc7ef417 Initial import of libusbx, a fork of libusb1.
libusbx is a library that provides generic access to USB devices.
As a library, it is meant to be used by developers, to facilitate
the development of applications that communicate with USB hardware.

It is portable: Using a single cross-platform API, it provides
access to USB devices on Linux, OS X, Windows and OpenBSD.

It is user-mode: No special privilege or elevation is required for
the application to communicate with a device.

It is version-agnostic: All versions of the USB protocol, from 1.0
to 3.0 (latest), are supported.

libusbx is a fork of libusb.
2012-05-30 15:28:29 +00:00
wiz
9b2b9b38e3 Mention that this is version 0 of the library. Bump PKGREVISION. 2012-05-30 14:13:14 +00:00
wiz
fdea08a9a2 + libusb1. 2012-05-30 14:11:59 +00:00
wiz
69c1355f13 Initial import of libusb1-1.0.9.
libusb is a library for USB device access from Linux, Mac OS X,
OpenBSD, NetBSD, and Windows userspace.

This package contains major version 1 of the library.
2012-05-30 14:10:23 +00:00
wiz
9d5ba0bd81 Update to 2.3.2, by Jaap Boender in PR 44991.
===== 2.3.2 (2011-11-04) =====

  * Add location informations in logs:
    ** allow loggers to get the current location through local storage
    ** pass current location to logging functions
    ** pass the current location with the syntax extension
  * Add Lwt.on_termination
  * Add Lwt_unix.reinstall_signal_handler
  * Add Lwt_io.flush_all
  * Add assert_lwt keyword to the syntax extension
  * Add Lwt.wrap
  * Add Lwt_glib.iter and Lwt_glib.wakeup
  * ocaml 3.13 ready
  * Allow to compile without libev support
  * Fix bugs in Lwt_io
  * Better handling of forks
  * Fix many problems on Windows

===== 2.3.1 (2011-07-13) =====

  * Fix building of documentation when using the tarball
  * Add Lwt_unix.fsync and Lwt_unix.fdatasync
  * Fix the stubs for Lwt_unix.send_msg when fd-passing is not
    available
  * Add -lwt-sequence-strict option to the syntax extension
  * Use a custom PRNG state for Lwt.choose and Lwt.pick
  * Fix a display glitch when starting the toplevel
  * Add Lwt_unix.fork which should now be used when one want to use
    Lwt in the child process
  * Better implementation of Lwt_unix.readlink and
    Lwt_unix.gethostbyname, which fixes compilation on Hurd
  * Add Lwt.wakeup_later and Lwt.wakeup_later_exn to be used when one
    need to do lot of nested wakeup, which fixes a buffer overflow in
    Lwt_mutex
  * Fix Lwt_unix.abort and Lwt_unix.close (threads was never wakeup)
  * Fix Lwt_throttle for correct timings
  * Fix subtle use of cancel

===== 2.3.0 (2011-04-12) =====

  * Add an extensible system of engines to:
    ** allow the user to replace libev by another event system, such
       as select
    ** allow easier integration of external libraries supporting
       asynchronous operations
  * Lots of improvements for windows:
    ** use the ocaml select instead of libev by default on windows
    ** make asynchronous operations on non-socket file descriptors
       such as pipes to work
    ** make glib integration to work
  * Better use of engines in Lwt_unix: now events are cached to minimize
    the amount of calls to epoll_ctl
  * Use an eventfd when possible for notifications for faster delivery
  * Add modules:
    ** Lwt_sys: allow to test availability of extra features
    ** Lwt_react: replace Lwt_event and Lwt_signal
  * Allow to configure logging rules at runtime in Lwt_log
  * Add match_lwt and while_lwt to the syntax extension
  * Fixes:
    ** syntax extension: handle "lwt ... = ... in ..." at toplevel
    ** make the notification system fork-proof
    ** fix an issue with stubs not raising correctly exceptions

===== 2.2.1 (2011-01-26) =====

  * Better interaction with Js_of_ocaml.
  * Add functions {{{Lwt.register_pause_notifier}}} and {{{Lwt.paused_count}}}.

===== 2.2.0 (2010-12-13) =====

  * Bugfixes:
    ** Fix a bug with cancellable threads causing {{{Canceled}}}
       exceptions to be raised randomly
    ** Fix a fd-leak in Lwt_io.open_connection
  * {{{Lwt_unix}}} now use libev instead of select
  * Add thread local storage support to {{{Lwt}}}
  * Add backtrace support to {{{Lwt}}}. Now {{{Lwt}}} exceptions can
    be recored by using the syntax extension with the {{{-lwt-debug}}}
    command line switch.
  * Allow blocking system calls to be executed in parallels
  * Change the type of many functions of {{{Lwt_unix}}}, which now
    return a {{{Lwt}}} thread
  * Add functions {{{Lwt_unix.readable}}} and {{{Lwt_unix.writable}}}
  * Add function {{{Lwt_io.is_busy}}}
  * Add functions {{{Lwt_event.delay}}} and {{{Lwt_signal.delay}}}
  * Add function {{{Lwt_term.render_update}}}
  * Add function {{{Lwt_ssl.embed_socket}}}
  * Add module {{{Lwt_bytes}}} defining operations on bigarrays
    instead of strings
  * Use bigarrays in Lwt_io instead of strings for the internal buffer.
    Lwt_io.make now takes a function that uses a bigarray.
  * Add module {{{Lwt_switch}}}

===== 2.1.1 (2010-06-13) =====

  * Many bugfixes, including:
    ** buggy behaviour of cancellable threads
    ** file descriptor leakage in {{{Lwt_unix.accept_n}}}
  * Add {{{Lwt.nchoose}}} and {{{Lwt.npick}}}
  * Use {{{set_close_on_exec}}} for fds created by {{{Lwt_log}}}
  * Better implementation of lwtized react functions

===== 2.1.0 (2010-04-19) =====

  * Rename {{{Lwt.select}}} to {{{Lwt.pick}}}
  * Removing module {{{Lwt_monitor}}} in favour of {{{Lwt_mutex}}} and
    new module {{{Lwt_condition}}}
  * More react helpers:
    ** {{{Lwt_event.next}}}
    ** {{{Lwt_event.limit}}} and {{{Lwt_signal.limit}}}
    ** {{{Lwt_event.from}}}
  * Adding function {{{Lwt_main.fast_yield}}}
  * Adding unit tests
  * Optimisation of {{{Lwt}}}
  * Adding module {{{Lwt_log}}} for logging
  * Adding a camlp4 filter for remmoving logging statement or inlining
    tests
  * Adding module {{{Lwt_daemon}}}
  * Adding function {{{Lwt_unix.recv_msg}}} and {{{Lwt_unix.send_msg}}}
  * Adding function {{{Lwt_unix.wait4}}}
  * Adding function {{{Lwt_io.establish_server}}}
  * Adding module {{{Lwt_list}}}
  * Enhancement in {{{Lwt_process}}}, it now support redirections and
    timeouts
  * Allow to use {{{select}}} on arbitrary high file descriptors
  * More commands and features in {{{Lwt_read_line}}}:
    ** Handle "undo" command
    ** New controlable read-lines instances
    ** More edition commands
    ** Completion as you type
    ** Backward search
  * Enhancement in {{{Lwt_term}}}: more drawing functions and allow to
    put the terminal into drawing mode
  * Optimisation of {{{Lwt_stream}}}
  * Optimisation of {{{Lwt_io.write_char}}} and {{{Lwt_io.read_char}}}
  * Bugfix of {{{Lwt_stream}}}: two parallel {{{Lwt_stream.get}}}
    returned the same value
  * Bugfix in {{{Lwt_unix.connect}}}: it returned immediatly on EINPROGRESS
  * Bugfixes in {{{Lwt_glib}}}: file descriptors were not monitored correctly

===== 2.0.0 (2009-10-15) =====

  * Adding modules:
    ** {{{Lwt_stream}}}: lwt-aware version of the {{{Stream}}} module
    ** {{{Lwt_gc}}} for using {{{finalise}}} without
       {{{Lwt_unix.run}}}
    ** {{{Lwt_io}}}: a new implementation of buffered channels with
       more features and better handling of concurrent access
    ** {{{Lwt_text}}}: implementation of text channels
    ** {{{Lwt_process}}}: helpers to spawn processes and communicate
       with them
    ** {{{Lwt_main}}} for abstracting the main loop and allowing
       replacement by a custom main loop
    ** {{{Lwt_glib}}} for integration into the glib main event loop
    ** {{{Lwt_term}}} for interaction with the terminal
    ** {{{Lwt_read_line}}} for interactive user input
    ** {{{Lwt_monitor}}}, {{{Lwt_mvar}}}: combined locks for
       synchronization with conditional variables for notification
    ** {{{Lwt_throttle}}} for limiting rate of execution
       (e.g. for authentication procedure)
    ** {{{Lwt_sequence}}}: mutable sequence of elements
    ** {{{Lwt_event}}}, {{{Lwt_signal}}}: helpers for reactive
       programming with lwt
  * Adding a syntax extension {{{pa_lwt}}}:
    ** handles anonymous bind {{{a >> b}}}
    ** adds syntactic sugar for catching errors (ticket #6)
    ** adds syntactic sugar for parallel let-binding construction
    ** adds syntactic sugar for for-like loops
  * Top-level integration:
    ** threads can runs while reading user input
    ** line editing support
  * New enhanced OCaml toplevel with some basic completion features
  * Adding C stubs to reimplement {{{Unix.read}}} and {{{Unix.write}}}
    with assumption of non-blocking behaviour
  * Adding more functions/helpers in {{{Lwt}}}
  * Fixing memory leaks in {{{Lwt.choose}}}
  * Bugfix in {{{Lwt_chan.close_*}}} (ticket #66)
  * Separate the type of threads (covariant) from the type of thread
    wakeners (contravariant); the type of many functions related to
    {{{Lwt.wait}}} has been changed
  * Add cancelable threads
  * Unix-dependent part is now put in its own archive and findlib
    package.
2012-05-30 13:40:59 +00:00
cheusov
bc4b6b5afc Remove GNU_PROGRAM_PREFIX as discussed in pkgsrc-users@ 2012-05-30 11:55:54 +00:00
sno
7ea645f892 Updating package for CPAN module Log::Any::Adapter in
devel/p5-Log-Any-Adapter from 0.06 to 0.07.

pkgsrc changes:
- fix dependency change missing in update to 0.06
- adjust dependencies as documented in package upstream (META.json)

Upstream changes:
0.07  Feb 22, 2012
- add Carp, Log::Any as prereqs
2012-05-30 11:03:23 +00:00
sno
a17f583ce9 Updating package for CPAN module Devel::GlobalDestruction in
devel/p5-Devel-GlobalDestruction from 0.04 to 0.05.

Upstream changes:
0.05  Thu, 26 Apr 2012
  * Pure-perl implementation for situations where neither ${^GLOBAL_PHASE} nor
    XS are available
2012-05-30 10:53:48 +00:00
jperkin
2008e2abc4 Apply fix from http://gcc.gnu.org/ml/java-patches/2010-q1/msg00058.html
Fixes Solaris/64bit, tested on NetBSD/amd64.
2012-05-30 09:13:16 +00:00
cheusov
6a13d2c1a0 Remove GNU_PROGRAM_PREFIX variable (discussed in pkgsrc-users@) 2012-05-29 22:58:52 +00:00
cheusov
5d57f31221 Remove GNU_PROGRAM_PREFIX variable (discussed in pkgsrc-users@).
All utilities are installed with a prefix 'g'. Symlinks with original
names are created in ${PREFIX}/gnu/bin.

++pkgrevision
2012-05-29 21:44:45 +00:00
cheusov
feaf6c4497 Remove GNU_PROGRAM_PREFIX variable (discussed in pkgsrc-users@).
All utilities are installed with a prefix 'g'. Symlinks with original
names are created in ${PREFIX}/gnu/bin.

++pkgrevision

Fix for some pkglint warnings
2012-05-29 21:37:03 +00:00
cheusov
09d6b8031b Remove GNU_PROGRAM_PREFIX variable (discussed in pkgsrc-users@) 2012-05-29 21:22:19 +00:00
cheusov
60e53fafc7 Remove GNU_PROGRAM_PREFIX variable (discussed in pkgsrc-users@).
All utilities are installed with a prefix 'g'. Symlinks with original
names are created in ${PREFIX}/gnu/bin.

++pkgrevision
2012-05-29 21:19:30 +00:00
cheusov
6acade1163 Remove GNU_PROGRAM_PREFIX variable (discussed in pkgsrc-users@).
All utilities are installed with a prefix 'g'. Symlinks with original
names are created in ${PREFIX}/gnu/bin.

++pkgrevision

Add LICENSE
2012-05-29 21:07:33 +00:00
cheusov
be53a5ace6 Remove GNU_PROGRAM_PREFIX variable (discussed in pkgsrc-users@).
All utilities are installed with a prefix 'g'. Symlinks with original
names are created in ${PREFIX}/gnu/bin.

++pkgrevision
2012-05-29 21:01:25 +00:00
wiz
27e431f290 Update to 0.9.2:
# 0.9.2 - 2012.03.29
- Fix disabling and hiding actions (Aurelien Gateau)
- Avoid spamming dbus at startup (Aurelien Gateau)
- Do not print warnings when not necessary (Aurelien Gateau)

# 0.9.1 - 2012.03.26
- Add support for "opened" and "closed" events (Aurelien Gateau)
- Add support for icon-data (LP BUG 633339) (Christoph Spielmann)
2012-05-29 15:01:41 +00:00
wiz
ab360f0c34 + ocaml-react 2012-05-29 14:45:47 +00:00
wiz
a13692fa43 Initial import of ocaml-react-0.9.3, packaged by Jaap Boender in PR 45184.
React is an OCaml module for functional reactive programming (FRP).
It provides support to program with time varying values: declarative events
and signals.
2012-05-29 14:45:14 +00:00
wiz
b2cd8fcffb Update to 1.25:
* Version 1.25 (released 2012-05-23) [stable]

** MSVC: Build fixes related to _GL_ATTRIBUTE_CONST and _GL_ATTRIBUTE_PURE.
Reported by Bartosz Brachaczek <b.brachaczek@gmail.com>.

** examples: Fix compiler warning about ignoring return value from fgets.

** tests: Ship with a valgrind suppressions file for the strlen issue.
See tests/libidn.supp and  bottom of HACKING for discussion.

** Update gnulib files and translations.

** API and ABI is backwards compatible with the previous version.
2012-05-29 14:43:06 +00:00
wiz
046b893cbf Update to 7.2b:
7.2b:
An incorrect assertion in multi-threaded mode was fixed.

7.2:
This release adds many enhancements and fixes.
2012-05-29 14:35:41 +00:00
wiz
cde868d28a Update to 1.0.5:
1.0.5:
Adam Jackson (1):
      Silence useless pedantry warning from find(1) when running cleanlinks.

Alan Coopersmith (8):
      Remove unused variable in get_sun_compiler_versions
      Strip trailing whitespace
      Add const attributes to fix gcc -Wwrite-strings warnings
      Rework temp filename pointers into const & non-const parts
      Convert error logging functions to normal idioms
      Fix a bunch of "too many arguments for format" warnings
      xmkmf.man: Remove instructions for "X Consortium" monolithic build tree
      imake 1.0.5

1.0.4:
Alan Coopersmith (4):
      config: upgrade to util-macros 1.8 for additional man page support
      config: Remove unnecessary calls from configure.ac
      Use autoconf standard HAVE_MKSTEMP instead of HAS_MKSTEMP
      imake 1.0.4

Gaetan Nadon (1):
      config: update AC_PREREQ statement to 2.60

Yaakov Selkowitz (5):
      Allow for EXEEXT in appman_DATA rule
      Use AC_PROG_SED to find sed
      Use standard .gitignore with custom section for imake
      mkdirhier: use mkdir -p
      Nuke RCS tags
2012-05-29 14:22:27 +00:00
wiz
765c3c08a0 Update to 1.0.4:
Alan Coopersmith (7):
      Add README with pointers to mailing list, bugzilla & git repos
      Strip trailing whitespace
      Move extern variable declarations to common header (def.h)
      Add const attributes to fix gcc -Wwrite-strings warnings
      Call strdup directly, instead of via copy macro
      define(): Avoid assigning constant string to non-const char *
      makedepend 1.0.4

Cyril Brulebois (1):
      Fix bashism: shell string comparison is =, not ==.

Stuart Kreitman (1):
      Raise MAXFILES from 1024 to 2048
2012-05-29 14:20:37 +00:00
enami
4fbcb95ac5 Fix comment after #endif directive so that it matches other
directives, before sending this patch to upstream.
2012-05-29 03:01:15 +00:00
abs
53dfd47444 Add VAX to the list of supported architectures
(That is not a typo)
2012-05-28 18:06:48 +00:00
adam
df0b3f3b4f Changes 1.7.10.3:
* The message file for German translation has been updated a bit.
* Running "git checkout" on an unborn branch used to corrupt HEAD.
* When checking out another commit from an already detached state, we
  used to report all commits that are not reachable from any of the
  refs as lossage, but some of them might be reachable from the new
  HEAD, and there is no need to warn about them.
* Some time ago, "git clone" lost the progress output for its
  "checkout" phase; when run without any "--quiet" option, it should
  give progress to the lengthy operation.
* The directory path used in "git diff --no-index", when it recurses
  down, was broken with a recent update after v1.7.10.1 release.
* "log -z --pretty=tformat:..." did not terminate each record with
  NUL.  The fix is not entirely correct when the output also asks for
  --patch and/or --stat, though.
* The DWIM behaviour for "log --pretty=format:%gd -g" was somewhat
  broken and gave undue precedence to configured log.date, causing
  "git stash list" to show "stash@{time stamp string}".
* "git status --porcelain" ignored "--branch" option by mistake.  The
  output for "git status --branch -z" was also incorrect and did not
  terminate the record for the current branch name with NUL as asked.
* When a submodule repository uses alternate object store mechanism,
  some commands that were started from the superproject did not
  notice it and failed with "No such object" errors.  The subcommands
  of "git submodule" command that recursed into the submodule in a
  separate process were OK; only the ones that cheated and peeked
  directly into the submodule's repository from the primary process
  were affected.
2012-05-28 13:33:20 +00:00
tonio
ef375d7f33 Update devel/apache-ant to 1.8.4
Changes from Ant 1.8.3 TO Ant 1.8.4
Fixed bugs:
 * Ported libbzip2's fallback sort algorithm to CBZip2OutputStream to
   speed up compression in certain edge cases.  Merge from Commons
   Compress.
 * Using specially crafted inputs this can be used as a denial of
   service attack.
   See CVE-2012-2098.
2012-05-28 08:10:05 +00:00
ryoon
835c0b3c09 Fix PLIST, this fixes build failure. 2012-05-27 21:53:48 +00:00
spz
b7c15a9cf9 Update RT to version 3.8.12:
Changes from 3.8.11 to 3.8.12:
    This release, in addition to being a bugfix release, also resolves a
    number of security vulnerabilities.  It resolves CVE-2011-2082,
    CVE-2011-2083, CVE-2011-2084, CVE-2011-2085, CVE-2011-4458,
    CVE-2011-4459, and CVE-2011-4460.

     * Upgrade prototype.js to version 1.7, for compatibility with google
       charts.
     * Remove ie7.js, which is no longer used.
     * Ensure that TransactionBatch scripts are only run once.

Changes from 3.8.10 to 3.8.11:
    This release contains a number of bugfixes and minor security updates
    since the 3.8.10 release, most notably:

     * Adjust FCGI dependency to one which resolves FCGI's CVE-2011-2766

     * New WebHttpOnlyCookies option, enabled by default, which hides RT's
       cookie from direct Javascript access.

     * Compatibility with perl 5.12 and 5.14, by removing deprecated "for
       qw(...)" and "defined %hash" syntax.

     * MySQL 5.5 compatibility, by specifying ENGINE=InnoDB rather than
       TYPE=InnoDB

     * Ensure that RT::Interface::Web's _Overlay, _Local, and _Vendor files
       are loaded correctly.

     * Fix session cleaner for on-disk sessions, broken since 3.8.0.

     * Ensure that only one "Based on" attribute is stored for each custom
       field.

     * Fix the loading of Shredder plugins, broken in 3.8.10.
2012-05-25 19:55:43 +00:00
ryoon
ba31d86f32 Update to 1.447.1
Changelog:
What's new in 1.447.1 (2012/03/28)

    File handle leak in serving static files (issue 13097)
    LDAP config error (issue 8152)
    jenkins running in Tomcat doesn't initalize slf4j properly (issue 12650)
    java.lang.NoClassDefFoundError: org.slf4j.impl.StaticLoggerBinder (issue 12446)
    Remote call on CLI channel from [ip] failed (issue 12302)
    jenkins does not start in jboss container (issue 12334)
2012-05-24 18:12:11 +00:00
marino
a0f8633347 devel/kyua-cli: Fix DragonFly 2012-05-24 16:47:11 +00:00
gdt
dadc8f1369 not MAKE_JOBS_SAFE 2012-05-23 23:11:56 +00:00
markd
fa5d2d001f Add ${PLIST.gnome} entries as per xulrunner and xulrunner192 2012-05-23 21:06:02 +00:00
reed
b7387c28d9 change to working generic HOMEPAGE 2012-05-23 17:27:19 +00:00
dholland
035df07df0 Don't launder const. Should fix Linux build. 2012-05-23 04:39:28 +00:00