Commit graph

16333 commits

Author SHA1 Message Date
obache
b876a82158 Add user-destdir installation support. 2011-03-05 09:14:23 +00:00
obache
3a2d15ff30 Update ruby-gnome2 to 0.90.8.
== Ruby-GNOME2 0.90.8: 2011-03-04

NOTE: 0.90.x releases are for 1.0.0 major release.

A bug fix release of 0.90.7.

=== Changes

==== All

  * Fixes
    * 'make distclean' does not removed pkg-config files.

==== Ruby/GLib2

  * Fixes
    * fix non-gem rcairo detection. [#3178228]
      [OBATA Akio, Kouhei Sutou]

==== Ruby/Atk

  * Fixes
    * fix 'make distclean' cleans needed a file.
      [Vincent Carmona]

==== Ruby/Pango

  * Fixes
    * fix 'make distclean' cleans needed a file.
      [Vincent Carmona]

==== Ruby/GTK2

  * Fixes
    * fix require order.
      [id:kenhys]
    * [#3046538] fix crash by GC at exit.
      [Vincent Carmona, Kouhei Sutou]
    * gtk-demo samples with ruby 1.9 (excepted cairo ones).
      [Vincent Carmona]

==== Ruby/GooCanvas

  * Fixes
    * fix pc install. [#3178294]
      [OBATA Akio, Kouhei Sutou]

==== Ruby/GStreamer

  * Improvements
    * improve missing message.
      [Vincent Carmona]
    * add Gst::InstallPlugins.
      [Vincent Carmona, Kouhei Sutou]

  * Fixes
    * fix pc install. [#3178294]
      [OBATA Akio, Kouhei Sutou]
    * don't use rbgprivate.h. [#3188442]
      [Mamoru Tasaka, Kouhei Sutou]

==== Ruby/GtkMozEmbed

  * Fixes
    * fix pc install. [#3178294]
      [OBATA Akio, Kouhei Sutou]

==== Ruby/GtkSourceView2

  * Fixes
    * fix pc install. [#3178294]
      [OBATA Akio, Kouhei Sutou]
2011-03-04 13:14:04 +00:00
taca
8d8877c113 Update subversion package to 1.6.16.
Security fix seems to related to www/ap2-subversion.


Version 1.6.16
(02 Mar 2011, from /branches/1.6.x)
http://svn.apache.org/repos/asf/subversion/tags/1.6.16

  User-visible changes:
   * more improvement to the 'blame -g' memory leak from 1.6.15 (r1041438)
   * avoid a crash in mod_dav_svn when using locks (r1071239, -307)
            See CVE-2011-0715, and descriptive advisory at
            http://subversion.apache.org/security/CVE-2011-0715-advisory.txt
   * avoid unnecessary globbing for performance (r1068988)
   * don't add tree conflicts when one already exists (issue #3486)
   * fix potential crash when requesting mergeinfo (r902467)
   * don't attempt to resolve prop conflicts in 'merge --dry-run' (r880146)
   * more fixes for issue #3270.

  Developer-visible changes:
   * ensure report_info_t is properly initialized by ra_serf (r1058722)
   * locate errors properly on a malfunction (r1053208)
   * fix output param timing of svn_fs_commit_txn() on fsfs (r1051751)
   * for svn_fs_commit_txn(), set invalid rev on failed commit (r1051632, -8)
   * fix sporadic Ruby bindings test failures (r1038792)
   * fix JavaHL JVM object leak when dumping large revisions (r947006)
   * use Perl to resolve symlinks when building swig-pl (r1039040)
   * allow Perl bindings to build within a symlinked working copy (r1036534)
   * don't overwrite the LD_LIBRARY_PATH during make check-swig-pl (r946355)
   * improve unit tests for some fs functions (r1051744, -5, -3185, -241)
2011-03-04 03:12:35 +00:00
wiz
60ee1591ba Update to 1.8:
1.1. Core

    * Bookmarks are now a core feature (see UpgradeNotes)
    * New listfile: pattern-matching (patterns)
    * Revset syntax supported by most commands
    * Performance improvements for reading large repository indexes
    * Certificate validation for HTTPS proxies

1.2. Subrepos

    * New support for git subrepos
    * Various improvements to merge, update, and commit logic

1.3. Windows

    * Numerous robustness improvements for quirks in Windows file handling
    * Now uses the native ctypes module rather than PyWin32

1.4. Extensions

    * eol: filter aliases for compatibility with win32text
    * mq: --exact option for qpush
    * mq: various robustness improvements
    * progress: remaining time estimates
2011-03-02 06:46:11 +00:00
wiz
e76c41da58 Update to 3.1.4, inspired by PR 44659 by Marko Schuetz Schmuck:
ccache 3.1.4
Bug fixes

ccache 3.1.3
Bug and portability fixes

ccache 3.1.2
Bug fixes

ccache 3.1.1
Bug fixes

ccache 3.1

New features and improvements
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    - Added support for hashing the output of a custom command (e.g.
      `%compiler% --version`) to identify the compiler instead of stat-ing or
      hashing the compiler binary. This can improve robustness when the
      compiler (as seen by ccache) actually isn't the real compiler but another
      compiler wrapper.

    - Added support for caching compilations that use precompiled headers. (See
      the manual for important instructions regarding this.)

    - Locking of the files containing statistics counters is now done using
      symlinks instead of POSIX locks. This should make ccache behave a lot
      better on file systems where POSIX locks are slow or broken (e.g. NFS on
      some systems).

    - Manifest files are now updated without the need of taking locks.

    - Updates of statistics counters are now always done in one of the
      sub-level statistics files. This reduces lock contention, which
      especially improves performance on slow NFS mounts.

    - Reading and writing of statistics counters has been made
      forward-compatible (unknown counters are retained).

    - Files are now read without using mmap(). This has two benefits: it's more
      robust against file changes during reading and it improves performance on
      poor systems where mmap() doesn't use the disk cache.

    - Added `.cp` and `.CP` as known C++ suffixes.

    - Improved logging.

    - Added `-install_name` as an option known to take an argument. (This
      improves statistics when using the Darwin linker.)


Bug fixes

ccache 3.0.1
Bug fixes

ccache 3.0

General
~~~~~~~

    - ccache is now licensed under the GNU General Public License (GPL) version
      3 or later.


Upgrade notes
~~~~~~~~~~~~~

    - The way the hashes are calculated has changed, so you won't get cache
      hits for compilation results stored by older ccache versions. Because of
      this, you might as well clear the old cache directory with `ccache
      --clear` if you want, unless you plan to keep using an older ccache
      version.


New features and improvements
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    - ccache now has a ``direct mode'' where it computes a hash of the source
      code (including all included files) and compiler options without
      running the preprocessor. By not running the preprocessor, CPU usage is
      reduced; the speed is somewhere between 1 and 5 times that of ccache
      running in traditional mode, depending on the circumstances. The speedup
      will be higher when I/O is fast (e.g., when files are in the disk cache).
      The direct mode can be disabled by setting +CCACHE_NODIRECT+.

    - Support has been added for rewriting absolute paths to relative paths
      when hashing, in order to increase cache hit rate when building the same
      source code in different directories even when compiling with `-g` and
      when using absolute include directory paths. This is done by setting the
      `CCACHE_BASEDIR` environment variable to an absolute path that specifies
      which paths to rewrite.

    - Object files are now optionally stored compressed in the cache. The
      runtime cost is negligible, and more files will fit in the ccache
      directory and in the disk cache. Set `CCACHE_COMPRESS` to enable object
      file compression. Note that you can't use compression in combination with
      the hard link feature.

    - A `CCACHE_COMPILERCHECK` option has been added. This option tells ccache
      what compiler-identifying information to hash to ensure that results
      retrieved from the cache are accurate. Possible values are: none (don't
      hash anything), mtime (hash the compiler's mtime and size) and content
      (hash the content of the compiler binary). The default is mtime.

    - It is now possible to specify extra files whose contents should be
      included in the hash sum by setting the `CCACHE_EXTRAFILES` option.

    - Added support for Objective-C and Objective-C\+\+. The statistics counter
      ``not a C/C++ file'' has been renamed to ``unsupported source language''.

    - Added support for the `-x` compiler option.

    - Added support for long command-line options.

    - A `CACHEDIR.TAG` file is now created in the cache directory. See
      <http://www.brynosaurus.com/cachedir/>.

    - Messages printed to the debug log (specified by `CCACHE_LOGFILE`) have
      been improved.

    - You can relax some checks that ccache does in direct mode by setting
      `CCACHE_SLOPPINESS`. See the manual for more information.

    - `CCACHE_TEMPDIR` no longer needs to be on the same filesystem as
      `CCACHE_DIR`.

    - The default value of `CCACHE_TEMPDIR` has been changed to
      `$CCACHE_DIR/tmp` to avoid cluttering the top directory.

    - Temporary files that later will be moved into the cache are now created
      in the cache directory they will end up in. This makes ccache more
      friendly to Linux's directory layout.

    - Improved the test suite and added tests for most of the new
      functionality. It's now also possible to specify a subset of tests to
      run.

    - Standard error output from the compiler is now only stored in the cache
      if it's non-empty.

    - If the compiler produces no object file or an empty object file, but
      gives a zero exit status (could be due to a file system problem, a buggy
      program specified by `CCACHE_PREFIX`, etc.), ccache copes with it
      properly.

    - Added `installcheck` and `distcheck` make targets.

    - Clarified cache size limit options' and cleanup semantics.

    - Improved display of cache max size values.

    - The following options are no longer hashed in the preprocessor mode:
      `-imacros`, `-imultilib`, `-iprefix`, `-iquote`, `-isysroot`,
      `-iwithprefix`, `-iwithprefixbefore`, `-nostdinc`, `-nostdinc++` and
      `-U`.
2011-03-02 06:40:51 +00:00
wiz
39d16ebf77 Remove file added by accident 2011-03-01 09:29:15 +00:00
obache
4c1fe3918b * marked as user-destdir ready.
* LICENSE=gnu-gpl-v2.
2011-03-01 09:06:41 +00:00
wiz
f48623b320 + mdds, libxenserver. 2011-02-28 18:11:17 +00:00
wiz
aaf3512914 Initial import of mdds-0.5.1:
Multi-Dimensional Data Structure (mdds)

A collection of multi-dimensional data structure and indexing algorithm.

It implements the following data structure:

    * flat segment tree
    * segment tree
    * rectangle set
2011-02-28 18:10:51 +00:00
wiz
36ff915e97 Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
adam
6abd5459f9 Changes 5.8:
Interface changes
* turn on _XOPEN_CURSES definition in curses.h.
* change _nc_has_mouse to has_mouse, reflect its use in C++ and Ada95.
* add is_pad and is_subwin functions for opaque access to the WINDOW structure.
* add tiparm, based on review of X/Open Curses Issue 7.

Library Improvements
* add a terminal driver for Windows console, which supports a MinGW port to
  Windows.
* add extended functions which specify the SCREEN pointer for several curses
  functions which use the global SP.
* improve the NCURSES_NO_UTF8_ACS feature by adding a check for an extended
  terminfo capability U8.
* improve performance of tigetstr, etc., by using hashing code from tic.
* add WACS_xxx definitions to wide-character configuration for thick- and
  double-lines.
* modify init_pair to allow caller to create extra color pairs beyond the
  color_pairs limit, which use default colors.

Improvements to Programs
* add tabs program.
* modify tic's -I/-C dump to reformat acsc strings into canonical form (sorted,
  unique mapping).
* add checks in tic for inconsistent cursor-movement controls, and for
  inconsistent printer-controls.
* add special case to _nc_infotocap (used by tic and infocmp) to recognize the
  setaf/setab strings from xterm+256color and xterm+88color, and provide a
  reduced version which works with termcap.
2011-02-28 11:02:46 +00:00
spz
c947d02fca add a missing file, fix a few paths 2011-02-27 17:05:57 +00:00
spz
4a9830fb5e Update of rt3 to version 3.8.9
Changelog:

SECURITY

* Move to a SHA-256 based password hashing scheme
* Redirect users to their desired pages after login.
  This prevents possible back button attacks after a user logs out.
* Clone Scrip's TicketObj since we change the CurrentUser and it can
  leak information (Custom field values, etc)

INSTALLATION

* Fixes to the RH Layout in config.layout

ACCESS CONTROL

* New AdminCustomFieldValues right that allows user to add/remove
  CF values, but not edit the CF

CONFIGURATION

* Add ResolveDefaultUpdateType to choose between Comment or Correspond
  on Resolve
* When using Set($MailCommand, 'testfile') log all mail to the
  same tmpfile
* Add a callback to allow extensions to redirect a user to an external
  auth logout URL using RT's logout button. This ensures that the user's
  RT session is cleared
* Add SuppressAutoOpenOnUpdate preference

DOCUMENTATION

* Clean up README
* Update UPGRADING.mysql documentation for users of older mysql
* Flag that "Let this user be granted rights" means "Privileged"
* Fix rt-crontool examples to use a real Condition
* Undocument SenderMustExistInExternalDatabase since the code was
  never merged
* Better document SetOutgoingMailFrom
* Better document shrink_cgm_table.pl

DATABASE

* Add support for Postgres 9
* No longer record transactions for ACL Equivalence Groups
* Don't delete all RT MySQL ACLs before invoke GRANT
* Quote database name for GRANT on MySQL
* Insert extensions' schema and acl files as the DBA
* Fix searches for empty Attachments on Oracle

EMAIL

* Better handling of mail generated by Outlook
* When RT's SendmailCommand fails, record it in ticket history
* New GPG tests and bugfixes for corner cases
* use EmailOutputEncoding for Content-Type.charset
* Handle failures in MIME Encoding better
* Small bugfixes for text/html templates
* Fix MIME decoding on ticket subjects
* Remove stray colons and whitespace in the default Admin Comment
  template

USER INTERFACE

* Fix an infinite loop when using the 3.4-compat theme
* Fixes to CollectionList sorting
* css positioning tweaks for page menus
* Fixes for Bulk Update when users click 'Add More Files'
* Skip all watchers when offering to add CCs as Watchers
* Fix ahah.js to handle more than one CF 'Include page' link
* Ensure that Nobody is always at the front of the Select Owner list
* Link Basics in SelfService to the Update page
* Fix toggling js to only run once
* Ensure signatures are included in Jumbo edits
* Better identify (in the UI) a misconfigured GPG setup
* GPG key management UI updates
* Add classes/ids to the Custom Field Editing pages
* CSS Fixes for preferences widgets
* Fix truncated top values on Charts
* Wording and layout changes for the 'update password' widget
* Ensure that we keep Anchor tags on redirects
* Fix loading a new search on the Chart/Graph pages
* Change Attachment size label from Bytes to Megabytes
* Respect timezones in timestamps in /Approvals/
* Charset fixes for Ticket Attachment downloads
* Bar graph fixes for large numbers of bars
* Allow a callback on QuickCreate to pass a default Status
* Fix Approvals to make one search for approval tickets that distincts
  and orders them
* Link from Group Membership lists to User admin pages
* New callbacks (autohandler, default queue, aborting ticket updates,
  after requestor on create)
* Fix non-local local links and add t: syntax
* Editing Transaction custom fields now shows errors inline
* Use the ShowUser element more consistently across the UI

TOOLS

* Improvements to extract-message-catalog (translation tool)
* Let shrink_cgm_table and shrink_transactions display "percent complete"
* Added a simple script to naively generate a RTAddressRegexp
* Install rt-attributes-viewer originally shipped with 3.8.8
* bin/rt now searches for global configs in LOCAL_ETC_PATH also

OTHER BUG FIXES

* No longer refuse to start if you upgraded from a version of RT that
  allowed you to have invalid Scrips
* Handle broken Reminders links when users change their Organization
* Trim whitespace from CustomFieldValues consistently
* RFC2616 dates are always in UTC
* Scrips can no longer have an empty Condition, Action or Template
* make multi-value REST fields separated with commas ignore spaces
* Localize ENV changes under mod_perl
* Don't page group memberships for a User
* Skip disabled Queues when a Simple Search term matches a Queue Name
* Add TransactionObj to CreateTickets templates to match the docs
* Fix the use of Tickets_Local.pm in rt-email-dashboards and rt-crontool
* Escape more characters in graphviz output
* Fix message when you fail to delete a saved search to tell you
  Permission Denied
* Include Rules with Scrips when previewing recipients
* Ensure that distribution upgrades that break Scalar::Util show up in
  apache logs
* Fix warnings on empty Collection List headers
* Log errors from safe_run_child
* Refuse to run if webmux.pl and RT.pm are mismatched
* Actually log the error that caused "Can't load a principal for id #"
* Switch to using $Approver->Name in templates since an AdminCc can
  approve
* Allow fastcgi_server to specify a port
* Guard against SavedSearches with no content
* Ensure our output is always flagged as utf-8
* Allow queries like "Priority > -2"
* Fixes to Private/Public key methods
* Return 'set private key' from SetPrivateKey, not 'unset private key'
* Protect STDOUT under mod_perl - among other things, this fixes
  Scrips that use system()
* Fix forwarding of messages without a top level textual part
2011-02-26 20:58:15 +00:00
drochner
5d39cf5f65 needs lang/vala to build, from Ryo ONODERA per PR pkg/44636
(the files generated by valac seem to be present in the distribution,
mut the build logics is too stupid to allow a build without it)
2011-02-25 20:46:11 +00:00
drochner
0291d09999 update to 0.10.3
changes: bugfixes
2011-02-25 13:09:34 +00:00
wiz
df14816790 Let's assume for now that everything that worked with python-2.6 also
works with python-2.7.
2011-02-25 09:47:18 +00:00
obache
4d2e5fcb23 + ruby-memoize 2011-02-25 02:35:12 +00:00
obache
fdb620b3f5 Import ruby-memoize-1.3.1 as devel/ruby-memoize.
The memoize library allows you to cache methods for faster lookup.
Cached results can either be stored in memory (the default) or to
a file.
2011-02-25 02:34:13 +00:00
adam
0b738c98ac Changes 1.46.0:
New Libraries
* Icl: Interval Container Library, interval sets and maps and aggregation of
  associated values, from Joachim Faulhaber.
Updated Libraries
* Array:
  - Added support for cbegin/cend
  - Fixed a problem with the Sun compiler
* Asio:
  - Fixed a problem on older Linux kernels (where epoll is used without timerfd
    support) that prevents timely delivery of deadline_timer handlers, after
    the program has been running for some time
* Bind:
  - make_adaptable now documented
* Concept Check:
  - fixed warnings with self-assignment
* Filesystem:
  - Version 3 of the library is now the default.
  - IBM vacpp: Workaround for compiler bug affecting iterator_facade
  - Verify, clarify, document that <boost/config/user.hpp> can be used to
    specify BOOST_FILESYSTEM_VERSIO
  - Replaced C-style assert with BOOST_ASSERT.
  - Undeprecated unique_path(). Instead, add a note mentioning the workaround
   for lack of thread safety and possible change to cwd. unique_path() is just
   too convenient to deprecate!
  - Cleared several GCC warnings.
  - Changed V2 code to use BOOST_THROW_EXCEPTION.
  - Windows: Fix status() to report non-symlink reparse point correctly.
  - Add symlink_option to recursive_directory_iterator, allowing control over
    recursion into directory symlinks. Note that the default is changed to not
    recurse into directory symlinks.
  - Reference documentation cleanup, including fixing missing and broken links,
    and adding missing functions.
  - Miscellaneous implementation code cleanup.
* Fusion:
  - vector copy constructor now copies sequence members in the same order on different platforms
* Graph:
  - Fixed Graphviz output to work on Visual C++ 7.1.
  - Replaced assert with BOOST_ASSERT.
  - Changed to Boost.Filesystem v3.
More...
2011-02-24 11:05:34 +00:00
adam
e21071c9d0 Changes 6.2:
a. Fixed a bug that caused the unconverted filename to be added to the list of
   completions when the application specified filename conversion functions.
b. Fixed a bug that caused the wrong filename to be passed to opendir when the
   application has specified a filename dequoting function.
c. Fixed a bug when repeating a character search in vi mode in the case where
   there was no search to repeat.
d. When show-all-if-ambiguous is set, the completion routines no longer insert
   a common match prefix that is shorter than the text being completed.
e. The full set of vi editing commands may now be used in callback mode.
   dimensions while running in `no-echo' mode.
h. Fixed a bug that caused readline to dump core if an application called
   rl_prep_terminal without setting rl_instream.
i. Fixed a bug that caused meta-prefixed characters bound to incremental
   search forward or backward to not be recognized if they were typed
   subsequently.
j. The incremental search code treats key sequences that map to the same
   functions as (default) ^G, ^W, and ^Y as equivalent to those characters.
k. Fixed a bug in menu-complete that caused it to misbehave with large
   negative argument.
l. Fixed a bug that caused vi-mode yank-last-arg to ring the bell when invoked
   at the end of the line.
m. Fixed a bug that made an explicit argument of 0 to yank-last-arg behave
   as if it were a negative argument.
n. Fixed a bug that caused directory names in words to be completed to not
   be dequoted correctly.

New Features
a. The history library does not try to write the history filename in the
   current directory if $HOME is unset.  This closes a potential security
   problem if the application does not specify a history filename.
b. New bindable variable `completion-display-width' to set the number of
   columns used when displaying completions.
c. New bindable variable `completion-case-map' to cause case-insensitive
   completion to treat `-' and `_' as identical.
d. There are new bindable vi-mode command names to avoid readline's case-
   insensitive matching not allowing them to be bound separately.
e. New bindable variable `menu-complete-display-prefix' causes the menu
   completion code to display the common prefix of the possible completions
   before cycling through the list, instead of after.
2011-02-23 11:00:17 +00:00
adam
ac8349a24d Changes 2.8.4:
* Fix crash in GraphVizWriter when GRAPHVIZ_TARGET_IGNORE_REGEX is used
* FindPerlLibs: Add notice of copyright
* libarchive: Define major/minor/makedev only where needed
* libarchive: Use OpenSSL only if CMAKE_USE_OPENSSL
* Fix documentation of MSVC_VERSION
* Silence the may be used uninitialized warnings: initialize stuff.
* CPack Tests the different ways of packaging components
* Avoid foreach IN LISTS syntax which is not supported by CMake 2.6
2011-02-22 15:05:33 +00:00
sborrill
68b952644e Update to 20110222.
Changes include
- man page claims that you can use auth type = none, but in reality this
didn't work (insisted on a username being given and then used, plus always
advertised CHAP to the target). Make initiator work as advertised (i.e.
defaults to auth type none and so don't require a username).
- document -D option to iscsi-initiator
- Remove hostname from pathname to storage in mount point.
This means /mnt/mytarget.domain.local/target0/storage is now
/mnt/target0/storage.
- Note limitations of CHAP implementation in BUGS section.
- Skip target if TargetName is empty.
- Use relevant TargetAddress, not just first one we happen to find.
- Handle NOP-OUT CmdSN and immediate bit.
- Handle NOP-IN TransferTag=0xffffffff.
- Interim solution for dealing with Underflow bit in iSCSI response.
- iscsi-initiator now talks to istgt and other targets.
- Retry read capacity. Device may not be ready on first access, so need to
wait and re-issue.
2011-02-22 13:33:22 +00:00
taca
6d80a96612 Bump PKGREVISION due to ABI change of ruby18-base. 2011-02-21 16:01:10 +00:00
jmmv
35b750b3ce Forcibly delete any stale cache files during deinstall. For example, the
gio-querymodules utility does not delete the file when no modules are left,
so we were left with a giomodule.cache file after removing glib2 that was
not managed by any package.

Also, and as a side effect, ensure that the files are created during
install time so that in-place updates work correctly.

Bump PKGREVISION to 2.
2011-02-20 17:40:54 +00:00
jmmv
34b7d87483 TOOLS_NOOP is not enough to catch all calls to glib-compile-schemas because
some packages deduce the full name to the tool instead of relying on the
PATH.

Attempt to do better by setting the GLIB_COMPILE_SCHEMAS variable to
a non-absolute name during the build, hoping that such packages do define
this Makefile variable.

This should fix the build of evince as reported in PR pkg/44589.
2011-02-20 15:07:40 +00:00
taca
4ac8b755ce Add missing patch file, something was wrong since patches/CVS directory
existed but patches directory wasn't cvs added...

Bump PKGREVISION.
2011-02-20 02:12:08 +00:00
schwarz
e94836e363 Updated libosip to 3.5.0 2011-02-19 17:02:57 +00:00
kefren
e423b9817e Update to 2.4.2. This release is mainly a bug fix release, but it also
includes some new features and improvements:

 * Support for future MonoDroid releases
 * Support for running ASP.NET 4.0 applications (XSP4).
2011-02-19 15:33:27 +00:00
minskim
9e1a368aa2 pvs needs tex-amsmath, not the entire teTeX. 2011-02-19 00:42:21 +00:00
reed
d887b5dd27 Disable build/install of doxygen-built HTML docs.
No change to working package.
This was reported in PR #44596
2011-02-18 18:00:43 +00:00
sborrill
09b1c44355 SDK for Citrix XenServer 5.6 FP1
Citrix XenServer includes a XML-RPC based API, providing programmatic access
to the extensive set of XenServer management features and tools. The
XenServer API can be called from a remote system as well as local to the
XenServer host. Remote calls are generally made securely over HTTPS, using
port 443.
2011-02-17 09:54:02 +00:00
markd
1bcd1f49b0 fix build with gcc4.3 2011-02-17 09:45:00 +00:00
markd
c17a2afbfc Fix build with gcc 4.3 2011-02-17 08:31:50 +00:00
markd
6d7653a617 Update to kdbg 2.2.2
Changes since 2.2.0
-------------------

Bugfixes

Changes since 2.1.1
-------------------

Features:

- Source code windows have now a tab attached, which makes switching
  source files much easier.

- Source code windows now show line numbers at the left.

- There are now "Find Next" and "Find Previous" commands with shortcuts
  F3 and Shift+F3.

- Improved support of template types in the type tables (which are used
  to show structure members next to a structure variable). Notably, the
  number of elements in STL and Qt collection classes are shown.

- Arguments for the debugged program can be passed on KDbg's command line.

Bug fixes
2011-02-17 07:48:35 +00:00
gls
dce5ab850b Update to 0.6.1
Upstream changes:

2011-01-28  Joerg Billeter  <j@bitron.ch>
Release 0.6.1

Fix memory leak in LinkedList.clear
Based on patch by Travis Reitter, fixes bug 639254.

2011-01-20  Maciej Piechotka  <uzytkownik2@gmail.com>
Remove depending on order of iteration in read-only collections' test

2010-11-20  Maciej Piechotka  <uzytkownik2@gmail.com>
Fix memory leak on freeingi LinkedList
If fixes issue described in bug #63522
2011-02-16 21:43:27 +00:00
wiz
e8470c527f Quell a pkglint warning. 2011-02-14 23:31:34 +00:00
drochner
373cc4b671 update to 1.2.0
changes:
-header cleanup
-bugfixes
2011-02-14 18:57:14 +00:00
obache
c9be1567e8 gave up maintainership of Gnome related packages. 2011-02-14 01:07:41 +00:00
obache
613728f708 Update cutter to 1.1.7.
While here, add pdf option to enable pdf support without GTK2+.

= NEWS --- The history of Cutter

== [release-1-1-7] 1.1.7: 2011-02-13

=== Cutter

==== Improvements

  * Supported growlnotify.

==== Changes

  * Droped Debian GNU/Linux lenny support.

==== Fixes

  * Fixed using unknown symbol on CentOS 5.5.
    [Reported by Hiroaki Nakamura]

=== Document

===== Fixes

  * Fixed typos in tutorial.
    [Reported by Hiroaki Nakamura]

=== Thanks

  * Hiroaki Nakamura
2011-02-13 12:59:50 +00:00
obache
d83d4f45e3 gave up maintainership.
I have no modern MacOS X environment anymore.
2011-02-13 06:29:34 +00:00
obache
acaae010ee Fixes build on SUA 6.0.
It have both inityes.h and stdint.h, but SIZE_MAX is only in stdint.h,
so let to include both header file.
2011-02-12 01:58:54 +00:00
tnn
1b0495fc57 revbump(1) for devel/libevent update. 2011-02-11 21:22:02 +00:00
tnn
ec7d6c3b8c Update to libevent-2.0.10.
Supposedly API backwards-compatible with libevent 1.x.
Will need a recursive revbump for shlib name changes, though.

All regression tests pass except "thread_conditions_simple". Not sure
why yet, but it's new API so shouldn't break anything existing in pkgsrc
today.

Changes in libevent 2.0 include cleaner interfaces, buffered I/O improvements,
improved multithreading and openssl integration.
2011-02-11 21:13:47 +00:00
obache
1f05d39f7f Update ruby-gnome2 to 0.90.7.
Removed deprecated binding packages.

== Ruby-GNOME2 0.90.7: 2011-02-02

NOTE: 0.90.x releases are for 1.0.0 major release.

A package fix release of 0.90.6.

=== Changes

==== Ruby/GLib2

  * Improvments
    * force remove "-Wl,--noundefined" linker option because
      Ruby-GNOME2 packages doesn't support the option.
      [Dobai-Pataky Bálint, Kouhei Sutou]

==== Ruby/GTK2

  * Improvments
    * use "MS-Windows" GTK+ theme by default on Windows.
      [ashbb, Kouhei Sutou]

=== Thanks

  * ashbb
  * Dobai-Pataky Bálint

== Ruby-GNOME2 0.90.6: 2011-01-29

NOTE: 0.90.x releases are for 1.0.0 major release.

Removed deprecated packages. All supported packages support
RubyGems. All supported packages except Ruby/VTE,
Ruby/GStreamer and Ruby/GtkMozEmbed support also Windows
binary bundled gem.

=== Changes

==== All

  * remove all deprecated packages.
    [Masaaki Aoyagi]
  * all supported packages support RubyGems.
    [Masaaki Aoyagi]

==== Ruby/GLib2

  * Imrpovements
    * add gnome2-raketask.rb that is a utility library to
      define Rake tasks for Ruby-GNOME2 packages.
      [Masaaki Aoyagi, Kouhei Sutou]

  * Fixes
    * fix GType conversion.
      [Kouhei Sutou]
    * fix rcairo installed by RubyGems detection.
      [Masaaki Aoyagi]

==== Ruby/GIO2

  * Improvements
    * support GIO 2.26.
      [Nikolai Weibull]

==== Ruby/GStreamer

  * Improvements
    * add Gst::MissingURISourceMessage.
      [Vincent Carmona, Kouhei Sutou]
    * support RubyGems.
      [Masaaki Aoyagi]

==== Ruby/Pango

  * Fixes
    * rename Pango::LayoutIter#at_last_line! to
      at_last_line? because at_last_line is a predicate
      method. (at_last_line! still exists for backward compatibility.)
      [mrkn, Kouhei Sutou]

==== Ruby/GtkMozEmbed

  * Improvements
    * support RubyGems.
      [Masaaki Aoyagi]
  * Fixes
    * support "2.0b7" style module version. #3141244
      [reandr, Kouhei Sutou]

==== Ruby/GooCanvas

  * Improvements
    * support RubyGems.
      [Masaaki Aoyagi]

==== Ruby/GtkSourceView2

  * Improvements
    * support RubyGems.
      [Masaaki Aoyagi]

==== Ruby/VTE

  * Improvements
    * support RubyGems.
      [Masaaki Aoyagi]

=== Thanks

  * Vincent Carmona
  * mrkn
  * reandr
  * Nikolai Weibull
  * Masaaki Aoyagi
2011-02-11 13:50:06 +00:00
jmmv
d0e4a9ef18 Update to 20110121:
* lua-mode now lives in github.
* Small patch to show how to make Emacs automatically use lua-mode for
  files that have a hash-bang line containing "lua", even if they don't
  have a ".lua" suffix.
* Customization of indent level and comments.
2011-02-11 10:05:30 +00:00
adam
fe7340fb32 Added devel/py-mako version 0.3.6 2011-02-11 08:25:35 +00:00
adam
cbb24ccbfe Mako is a template library written in Python. It provides a familiar, non-XML
syntax which compiles into Python modules for maximum performance. Mako's
syntax and API borrows from the best ideas of many others, including Django
templates, Cheetah, Myghty, and Genshi. Conceptually, Mako is an embedded
Python (i.e. Python Server Page) language, which refines the familiar ideas of
componentized layout and inheritance to produce one of the most straightforward
and flexible models available, while also maintaining close ties to Python
calling and scoping semantics.
2011-02-11 08:24:02 +00:00
agc
d4fdb2e8da update ldpc package to pkgrevision 1
fix a packaging botch whereby the file of random numbers was not installed,
and a reference to the build directory was embedded in the executables.

now the regression tests run to completion:

	Running ex-dep:

	Running ex-ham7a:

	Running ex-ham7b:

	Running ex-ldpc-encode:

	Running ex-ldpc36-1000a:

	Running ex-ldpc36-5000a:

	Running ex-ldpcvar-5000a:

	Running ex-wrong-model:
	155c155
	< Bit error rate (on message bits only): 1.320e-02
	---
	> Bit error rate (on message bits only): 1.299e-02
2011-02-10 16:15:36 +00:00
obache
1f6f317c8b Update gobject-introspection to 0.10.2.
regenerate *.c and bug fixes.
2011-02-10 05:17:13 +00:00
taca
0fb30d5be2 Update ruby-railties package to 3.0.4.
* More strict dependency reflect gemspec's description.

Not documented but includes fix for security problem:
 http://weblog.rubyonrails.org/2011/2/8/csrf-protection-bypass-in-ruby-on-rails
2011-02-09 13:04:29 +00:00
taca
a9e61ccf98 Update ruby-activemodel package to 3.0.4.
* More strict dependency reflect gemspec's description.
* It is update of version only for Ruby on Rails 3.0.4 update.
2011-02-09 12:57:46 +00:00
taca
d398b662ba Update ruby-activesupport3 package to 3.0.4.
* 3.0.4 updates version only for Ruby on Rails 3.0.4 update.


*Rails 3.0.3 (November 16, 2010)*

* No changes.


*Rails 3.0.2 (November 15, 2010)*

* Added before_remove_const callback to ActiveSupport::Dependencies.remove_unloadable_constants! [Andrew White]
2011-02-09 12:56:48 +00:00
ryoon
5e315d28d6 Add emacs23nox to EMACS_VERSIONS_ACCEPTED. 2011-02-09 12:45:33 +00:00
taca
607ce619a4 Update ruby-activesupport package to 2.3.11.
It is update of version only for Ruby on Rails 2.3.11 update.
2011-02-09 12:37:58 +00:00
rumko
f59e3997f4 Add missing header for DragonFly
To compile initiator.c, inttypes.h has to be included like it is for some
of the other files.

ok@ agc
2011-02-09 09:41:44 +00:00
dholland
92720e780e Build fix for AIX from J Raynor in PR 41433. 2011-02-09 05:52:07 +00:00
drochner
76403174e1 +gps 2011-02-08 18:36:34 +00:00
drochner
32a6163d63 add gps-5.0.0, a Multi-language IDE with an emphasis on Ada, from
John Marino per PR pkg/44440
(Python wasn't regognized for me, that's why I've commented it
out for now. Needs a second look.)
2011-02-08 18:32:23 +00:00
obache
ef6745bab6 Update cutter to 1.1.6.
== [release-1-1-6] 1.1.6: 2011-02-09

=== Cutter

==== Improvment

  * Renamed an utility:
    * ((<cut_build_fixture_data_path()>)) -> ((<cut_build_fixture_path()>))
  * Added utitlities:
    * ((<gcut_take_string()>))
    * ((<cut_get_fixture_data()>))
    * ((<gcut_get_fixture_data()>))
    * ((<GCutEventLoop>))
    * ((<GCutGLibEventLoop>))
  * Supported Debian GNU/Linux squeeze.
    [Suggested by Romuald Conty]
  * Supported Ubuntu Maverick Meerkat.
  * Supported Fedora 14.
  * cutter.m4: supported --config-cache.
  * cutter.m4: supported custom Makefile for
    --enable-coverage. (specify custome Makefile name to
    AC_CHECK_COVERAGE() argument)
  * Supported notify-send.

==== Fixes

  * Fixed a wrong test.
    [Suggested by Ilya Barygin]

=== cut-diff

==== Improvements

  * Added ((<--label option|cut-diff#--label>)) that specify
    labels in header.

=== Thanks

  * Romuald Conty
  * Ilya Barygin
2011-02-08 04:53:19 +00:00
schnoebe
7e097075b6 Bring in boost-license, 1.0. Certified by OSI as an Open Source
license.
2011-02-06 18:54:49 +00:00
obache
6257e8a9af Skip multibyte handling if neither mbsinit nor mbrtowc exists.
Patch taken from upstream bug #24687 and fixes PR#42925.
2011-02-06 13:04:04 +00:00
obache
3814c37c0c uintmax_t is defined in stdint.h on SUA, include it additionally. 2011-02-06 12:09:50 +00:00
markd
c8af9a9f0a CFLAGS+=-D__STDC_CONSTANT_MACROS so that UINT64_C() is defined for C++
as it is used in ffmpeg's <libavutil/common.h>
2011-02-06 08:00:05 +00:00
schnoebe
08385fe942 correct the distinfo for patch-ae. 2011-02-06 07:14:21 +00:00
schnoebe
d43a98a1a8 Oops, drat.. Forgot to purge the wip references from the packages
before importing.

wip  references now all purged.
2011-02-06 06:08:06 +00:00
schnoebe
044a33023e Add poco. 2011-02-06 05:56:56 +00:00
schnoebe
925a0d43de Import Poco 1.4.0
The POCO C++ Libraries (POCO stands for POrtable COmponents) are
open source C++ class libraries that simplify and accelerate the
development of network-centric, portable applications in C++. The
libraries integrate perfectly with the C++ Standard Library and
fill many of the functional gaps left open by it. Their modular
and efficient design and implementation makes the POCO C++ Libraries
extremely well suited for embedded development, an area where the
C++ programming language is becoming increasingly popular, due to
its suitability for both low-level (device I/O, interrupt handlers,
etc.) and high-level object-oriented development. Of course, the
POCO C++ Libraries are also ready for enterprise-level challenges.
2011-02-06 05:55:14 +00:00
adam
919ff948ea Fix building on Mac OS X. Fix building with Clang. 2011-02-03 21:52:33 +00:00
drochner
0c28f46078 +gprbuild-aux 2011-02-03 19:08:19 +00:00
drochner
d1dc42144e add gprbuild-aux-20101120, a Multi-language project builder,
from John Marino per PR pkg/44438
2011-02-03 19:04:02 +00:00
wiz
bfd7b85a21 Add upstream bug report and remove unnecessary chunk. 2011-02-03 15:12:45 +00:00
imil
79bebfd178 add & enable p5-Term-Shell 2011-02-03 13:31:17 +00:00
imil
1d1e604a1b Initial import of p5-Term-Shell, version 0.02, into the NetBSD Packages
Collection.

Term::Shell makes it joyfully easy to write command-line interfaces in Perl.
All the boring details like command-line parsing and terminal handling are
done for you.
2011-02-03 13:28:05 +00:00
wiz
8349e644c1 Update to 1.7.5:
1.7.5 (2011-02-01)

This is a quick bugfix release to include some fixes accidentally
dropped from 1.7.4.

  subrepo: fix update -C with svn subrepos when cwd != repo.root
  subrepo: make update -C clean the working directory for svn subrepos
  url: add --insecure option to bypass verification of ssl certificates
  win32mbcs: Fix typo in documentation

1.7.4 (2011-02-01)

This is a scheduled bugfix release that smooths out some of the
rough edged introduced with 1.7.3's HTTPS certificate verification.

  bookmarks: always write undo file
  bookmarks: respect rollbacks dryrun parameter
  hgrc.5: mention that web.cacerts are run through util.expandpath
  opener: force copy on 'a'ppend if nlinks() returns 0 (issue1922)
  subrepo: compare svn subrepo state to last committed revision
  subrepo: do not report known files inside repositories as unknown
  url: 'ssh known host'-like checking of fingerprints of HTTPS certificates (see CACertificates)
  url: check subjectAltName when verifying ssl certificate
  url: expand path for web.cacerts
  url: fix UnicodeDecodeError on certificate verification error
  win32: add cacert.pem file to Inno Setup installer
  win32: win32console.GetStdHandle() can return None
2011-02-03 12:36:37 +00:00
jnemeth
a87082f5bf mock -> py-mock 2011-02-03 08:04:37 +00:00
taca
3920ddc7b4 Update checksum of patch-cj. 2011-02-03 06:12:32 +00:00
ryoon
40eae7f8c1 set LICENSE. 2011-02-02 11:31:17 +00:00
ryoon
2dc38e158b Update to 1.3.0.
RP pkg/44475

Changelog:
New in CSSC-1.3.0, 2010-11-07

        * This release is identical to CSSC-1.3.0rc1 apart from the
          version number.

New in CSSC-1.3.0rc1, 2010-05-16

        * The CSSC manual is now published under version 1.3 of the
          GNU Free Documentation License.

 	* The code and build system have been modernised and some
          redundant files have been removed.  This may make it harder
          to build CSSC on very old systems.  However, it's now easier
          to maintain.  If CSSC no longer builds on a system that's
          important to you, please send mail to <bug-cssc@gnu.org>
          explaining your problem.

	* CSSC now uses the GNU portability library, gnulib.

	* CSSC now requires a C++ compiler with working exceptions and
          a working STL implementation.

	* Adoption of some STL data structures has made some parts of
          CSSC faster, notably "val".

	* CSSC now includes unit tests.  We also run the y2k tests for
          "make check".  If valgrind is installed, it will be used to
          for verification during tests.  You can turn this off by
          givig the --without-valgrind option to configure.

	* The configure script now supports a new option
          "--enable-warnings" which enables many GCC warning options.

New in CSSC-1.2.0, 2009-04-11

	* This stable release is almost identical to the 1.1.1 test
          release; there are no functional changes.

New in CSSC-1.1.1, 2008-01-18

	* Updated the NEWS file to give estimated release dates
	  and user-visible changes for ancient releases.

	* The -l and -L options of "get" are now implemented.

	* If you use "admin -dlX" to unlock release X, but all
	  releases are locked, an explanatory error message is issued.
	  Previously, the attempt was simply silently ignored.

	* prs no longer has a -R option.

	* When CSSC tools are passed the name of a directory on the
	  command line, they operate on the SCCS files in that directory.
	  As of this release, subdirectories are ignored (instead of
	  generating an error when CSSC tries to open the directory as
	  a file).

New in CSSC-1.1.0, 2007-12-17

	* GNU CSSC is now distributed under version 3 of the GNU General
	  Public License.  The documentation is distributed under
          version 1.2 of the GNU Free Documentation License.

	* We now require the C++ compiler to support exceptions in
          order to compile successfully.  Previously, CSSC allowed
          compilation without exceptions, but this meant that graceful
	  recovery from failures was not possible.

	* Fixed a spurious failure when writing out the SCCS file when
          the Y flag is set in the SCCS file.

	* "sccs unedit /tmp/SCCS/s.foo" will no longer cause the
	  deletion of ./s.foo, if it exists.  Instead, ./foo will be
          deleted, as intended.

	* Support for some older SCCS files as produced by Unix System III
	  (some of these have leading spaces in the counts of inserted/
	  deleted/unchanged lines in the delta table).

	* Compilation fixes for Darwin
2011-02-02 11:29:07 +00:00
drochner
75a6ebf619 +gnatpython 2011-02-01 20:56:21 +00:00
drochner
9296e9d175 add gnatpython-20101207, testing support for Ada programs, from
John Marino per PR pkg/44441
2011-02-01 20:44:47 +00:00
jwise
f47b96121f The mem-overflow test contains a declaration of an empty struct, which breaks
on at least SunPro cc, and presumably some other non-gcc compilers.  Skip this
test for now, pending a better fix.
2011-02-01 19:20:14 +00:00
reed
7fac3061ce Add devel/log4cxx 2011-01-31 17:29:51 +00:00
reed
60d8d9db25 New package: log4cxx
Apache log4cxx is a logging framework for C++ patterned after Apache
log4j. Logging can be selectively enabled or disabled, and sent to
different and multiple output targets in user-chosen formats.
2011-01-31 17:27:43 +00:00
obache
834e939050 Update ruby-pkg-config to 1.0.8.
== 1.0.8 - 2011/01/30

* fix a bug that multiple PKGConfig.add_path doesn't work.
2011-01-30 12:10:30 +00:00
markd
b6f883a999 Fix build with gcc4.3 2011-01-30 02:08:18 +00:00
jnemeth
0e0d71bf7d add and enable RBTools 2011-01-30 00:58:14 +00:00
jnemeth
7725f47f80 RBTools provides the post-review command:
post-review is a command line tool for Windows, Linux and MacOS X
that simplifies both creating and updating review requests.  It
can look at your source directory, generate a diff, and upload it
to a new or existing review request on an associated Review Board
server.  This saves a lot of time over the web UI, and for some
types of code repositories (such as Perforce), its actually required
in order to produce a compatible diff.
2011-01-30 00:55:59 +00:00
gdt
9d1f1ca2e4 +mock 2011-01-29 14:57:09 +00:00
gdt
a7005703c6 Import py26-mock-0.7.0b4 as devel/py-mock.
mock is a Python module that provides a core Mock class.  It removes
the need to create a host of stubs throughout your test suite.  After
performing an action, you can make assertions about which methods /
attributes were used and arguments they were called with.  You can
also specify return values and set needed attributes in the normal
way.
2011-01-29 14:53:14 +00:00
obache
b85938a4a0 Fix automatic BUILDLINK_ABI_DEPENDS pattern update. 2011-01-29 11:53:17 +00:00
wiz
d075ab53b0 Fix build with png-1.5. 2011-01-29 11:09:44 +00:00
adam
8490ff1569 Changes 1.7.3.5:
* The xfuncname pattern used by "git diff" and "git grep" to show the
  last notable line in context were broken for python and ruby for a long
  time.
* "git merge" into an unborn branch removed an untracked file "foo" from
  the working tree when merged branch had "foo" (this fix was already in
  1.7.3.3 but was omitted from the release notes by mistake).
* "git status -s" did not quote unprintable characters in paths as
  documented.
* "git am --abort" used to always reset to the commit at the beginning of
  the last "am" invocation that has stopped, losing any unrelated commits
  that may have been made since then.  Now it refrains from doing so and
  instead issues a warning.
* "git blame" incorrectly reused bogusly cached result of textconv
  filter for files from the working tree.
* "git commit" used to abort after the user edited the log message
  when the committer information was not correctly set up.  It now
  aborts before starting the editor.
* "git commit --date=invalid" used to silently ignore the incorrectly
  specified date; it is now diagnosed as an error.
* "git rebase --skip" to skip the last commit in a series used to fail
  to run post-rewrite hook and to copy notes from old commits that have
  successfully been rebased so far.  Now it do (backmerge ef88ad2).
* "gitweb" tried to show a wrong feed logo when none was specified.
2011-01-28 08:11:30 +00:00
adam
fb98805892 Changes 1.2:
* Fix build error when cross-compiling to MinGW.

Changes 1.1:
* Update gnulib files.
* The core library is now compiled with many warning flags.
  Some warnings have been fixed too.

Changes 1.0:
* Update gnulib files.

Changes 0.4.2:
* Fix endian related bug in self test.
* Add a note in README about NTLM being a insecure protocol.
* Cleaned up internal endianness handling.
* Update of gnulib files.

Changes 0.4.1:
* Update of gnulib files.

Changes 0.4.0:
* Only public API functions are exported in shared library.
  Using libtool's -export-symbols-regex.
* Update of gnulib files.
2011-01-28 07:44:25 +00:00
adam
ba418c619d We don't BUILDLINK_PASSTHRU_DIRS magic on Mac OS X any more. 2011-01-27 14:15:05 +00:00
drochner
b14fc4cf2c -add patch from https://bugzilla.gnome.org/show_bug.cgi?id=639882 to fix
possible heap corruption when parsing a corrupt font (CVE-2011-0020)
-being here, add a patch from upstream to fix a scaling inconsistency
bump PKGREV
2011-01-27 14:04:51 +00:00
drochner
04dbfdb4e7 reset PKGREV for base pkg update 2011-01-26 23:30:38 +00:00
wiz
d8d1cd8a64 Add missing ".o". Found by Matthieu Herrb in PR 44461. 2011-01-26 10:13:48 +00:00
obache
5daa1a1955 configure require xgettext, msgmerge and msgfmt. 2011-01-25 05:24:28 +00:00
obache
ec811adbda Fixes dependency
* change dependency on py-cairo and gobject-introspection to build.
  Those are required by configure script, but not required by
  installed files. Furthermore, this package is python-version-independent
  part of py-gobject, but full dependency of those packages introduce
  dependency on certain python version.
* add direct full dependency on libffi, because it is already in  buildlink3.mk.
  (previously, it was indirect dependency from gobject-introspection, but
   py-gobject is using it directly).

Bump PKGREVISION.
2011-01-24 08:30:00 +00:00
tnn
9b0206e304 include pyversion.mk for ${PYPKGPREFIX} 2011-01-23 22:28:17 +00:00
tnn
4a9fab9ebf it cannot accept python23 because a dependency doesn't. 2011-01-23 22:27:36 +00:00
tnn
c704ec7397 need pyversion.mk for ${PYPKGPREFIX} here. 2011-01-23 22:13:42 +00:00
agc
231a384ac3 Add support for MirBSD to pkgsrc. Patches from Benny Siegert and
Thorsten Glaser.
2011-01-23 19:07:24 +00:00
markd
be0b6ed082 set FREEBL_NO_DEPEND=0 in MAKE_ENV otherwise Linux2.6 defaults to
FREEBL_NO_DEPEND=1 and files not in PLIST are installed.
OKed by tnn.
2011-01-23 11:18:27 +00:00
markd
7487975709 Update to kdevelop 4.1.1
bugfixes and improved translations
2011-01-23 08:53:09 +00:00
markd
76473bad3a Update to KDE SC 4.5.5
bugfixes and translation updates
2011-01-23 07:55:12 +00:00
schwarz
a881b3076a GConf says it requires gio>=2.25.9 2011-01-22 17:58:53 +00:00
wiz
882353f1ef Remove --without-libintl-prefix that's not recognized by recent
configure scripts for quite some time now.
2011-01-21 21:24:11 +00:00
dmcmahill
0f7ca5f284 Remove some level 0 formatting which is not allowed for an 'article'.
That is only allowed for a 'book'.  Fixes build when asciidoc-8.6.3
is used.
2011-01-21 13:09:51 +00:00
tnn
e8d8e641a9 enable for hppa*-*-netbsd* 2011-01-21 09:21:57 +00:00
drochner
8158213f0d +mk-configure 2011-01-20 21:39:46 +00:00
drochner
27016ae409 import mk-configure-0.21.0, a lightweight but powerful replacement for
GNU autotools, from Aleksey Cheusov per pkgsrc-wip
(needed for the runawk pkg to be imported in a minute)
2011-01-20 21:36:24 +00:00
adam
3736fc5b7b Fix building with special CFLAGS, e.g. on Mac OS X with -isysroot 2011-01-19 13:18:26 +00:00
uebayasi
58a1b7abbe Update GNU GLOBAL from 5.4 to 5.9.3.
Big changes:

- Allows the symbolic links which point to directories, and treats
  the names of struct, union, enum and enum member as definitions.
  (5.7)

- Uses GPLv3 and LGPLv3 license. (5.6)

- Becomes GNU BOKINware. (5.5)

Details:

	http://cvs.savannah.gnu.org/viewvc/global/global/NEWS?view=markup

Bunch of incompatible format changes.  DON'T FORGET TO RE-GENERATE TAGS!
2011-01-19 04:24:15 +00:00
markd
6cab729e59 Pass in INSTALL_{DATA,LIB} to make rather than hardcoding path of install.
Fixes install on Arch Linux.
2011-01-18 10:34:38 +00:00
jmmv
e4b76cefe8 Add a schemas.mk file to let packages that install GSettings schemas to
rebuild the precompiled database upon install/deinstall.  This is mostly
a copy/paste of the same logic to deal with gio modules found in modules.mk.

No PKGREVISION bump because this does not affect the glib2 package in
itself.
2011-01-18 10:03:59 +00:00
is
ca4441c55d Revert the last change to avoid cyclic dependencies. 2011-01-17 20:52:58 +00:00
minskim
e40d0f712f Disable ODBC explicitly. 2011-01-17 20:02:42 +00:00
is
0d888131f5 Declaring char *getcwd(); interfered with _USE_FORTIFY_SOURCE=N (for N>0).
(pointed out by aniou@ircnet).

The problem is avoided by not declaring in make.h if defined(HAVE_UNISTD_H).

(I wish people would actually use configure's findings after it spent several
billions(en_US) of CPU cycles computing them.)
2011-01-17 14:17:29 +00:00
is
1e134dddad Add USE_TOOLS+=perl; needed to run make test. 2011-01-17 12:53:23 +00:00
sbd
dc1c291210 On Linux, extra libs will be created, same as Darwin and DragonFly. 2011-01-17 04:11:23 +00:00
adam
d4aae0871a Changes 8.12:
This release contains several bug fixes for the pcregrep program.
There are no changes to the code of the PCRE library.
2011-01-15 21:14:21 +00:00
wiz
3a5b68d51d Find png-1.5. Bump PKGREVISION. 2011-01-14 11:18:02 +00:00
drochner
422ac1fbea update to 2.30.0
This switches to the gnome-2.32 release branch.
2011-01-13 16:09:08 +00:00
drochner
2064ff36b4 update to 2.28.2
changes: minor build and documentation tweaks
2011-01-13 16:07:28 +00:00
drochner
e3dc6923ef +atkmm 2011-01-13 15:57:56 +00:00
drochner
b4d5e5ad4a add atkmm-2.22.2, C++ bindings for atk which used to be part of
gtkmm before 2.22
2011-01-13 15:56:24 +00:00
wiz
fcc0b5fda0 png shlib name changed for png>=1.5.0, so bump PKGREVISIONs. 2011-01-13 13:53:23 +00:00
wiz
2f4126dc58 png shlib name changed for png>=1.5.0, so bump PKGREVISIONs. 2011-01-13 13:36:05 +00:00
drochner
27147f54b3 update to 2.0.18
changes:
-add ctop (works like alltop but only in the C file)
-bugfixes
2011-01-12 20:40:55 +00:00
drochner
4d4596e52d update to 0.10.0
sorry, no changelog available

pkgsrc change: deal with 64-bit time_t on NetBSD-current - the selftests
succeed now
2011-01-12 20:23:34 +00:00
drochner
45895292a9 build dconf's editor GUI (in an extra pkg to limit dependencies) 2011-01-12 13:52:09 +00:00
wiz
e220c8bf12 Update to 1.7.3:
1.7.3:

    * archive: don't set gzip filename header when there's no filename
    * checknlink: use two testfiles (issue2543)
    * churn: ignore trailing and leading spaces (issue2546)
    * date: fix matching of underspecified date ranges
    * eol: improve help on whether EOLs are changed in working copy or repository
    * fncachestore: copy dh directory before the manifest
    * hgweb: abort if config file isn't found
    * hook: assume relative path to hook is given from repo root
    * hook: fix import path handling for repo=None
    * https: use web.cacerts configuration from local repo to validate remote repo
    * https: warn when server certificate isn't verified
    * keyword: copy: when copied source is a symlink, follow it
    * patch: write .rej files without rewriting EOLs
    * strip: typo bugfix related to '--nobackup -> --no-backup' rename (issue2377)
    * tag: abort if not at a branch head (issue2552)
    * tag: don't check .hgtags status if --local passed
    * tag: fix uncommitted merge check and error message (issue2542)
    * util: fix ellipsis() not to break multi-byte sequence (issue2564)
    * util: work around behavior change in Python 2.7.1
    * windows.rename: eliminate temp name race (issue2571)
    * wix: add an ssl certificate file to the WiX installers
2011-01-12 10:19:50 +00:00
drochner
bd3e78da7f +py-logilab-* 2011-01-11 20:45:54 +00:00
drochner
1368abf2d0 add py-logilab-astng-0.21.0, support for Extend Python abstract syntax
trees, from Kamel Derouiche and Helge Muehlmeier per pkgsrc-wip
2011-01-11 20:42:34 +00:00
drochner
b937996640 add py-logilab-common-0.53.0, a collection of miscellaneous modules
used by Logilab projects, from Kamel Derouiche and Helge Muehlmeier
per pkgsrc-wip
2011-01-11 20:41:00 +00:00
drochner
f128df6303 use numpy rather than py-Numeric, the former is more modern
bump PKGREVISION
2011-01-11 15:34:18 +00:00
drochner
1738a01088 update to 4.4.11, from Helge Muehlmeier per PR pkg/44314
changes:
-bugfixes
-minor UI improvements
2011-01-11 15:21:39 +00:00
obache
ae24f8afd8 configure require xgettext, msgmerge and msgfmt. 2011-01-09 10:41:00 +00:00
dsainty
48708bad94 Avoid installing some files not in PLIST, namely language and hwclock files. 2011-01-08 22:30:38 +00:00
dsainty
0d5cbb7e2a Avoid installing some files not in PLIST, namely language and hwclock files. 2011-01-08 22:19:52 +00:00
markd
76488b65a1 Add libuuid and libblkid. Added during freeze to fix build of sysutils/hal
on Linux.
2011-01-08 20:46:39 +00:00
markd
a22548c643 Initial import libblkid 2.18
The libblkid library is used to identify block devices (disks) as to their
content (e.g. filesystem type) as well as extracting additional information
such as filesystem labels/volume names, unique identifiers/serial numbers, etc.
A common use is to allow use of LABEL= and UUID= tags instead of hard-coding
specific block device names into configuration files.

From util-linux-ng.
2011-01-08 20:43:38 +00:00
markd
a0869e5bf8 Initial import libuuid 2.18
The UUID library is used to generate unique identifiers for objects
that may be accessible beyond the local system.  This library
generates UUIDs compatible with those created by the Open Software
Foundation (OSF) Distributed Computing Environment (DCE) utility
uuidgen.

The UUIDs generated by this library can be reasonably expected to be
unique within a system, and unique across all systems.  They could
be used, for instance, to generate unique HTTP cookies across multiple
web servers without communication between the servers, and without fear
of a name clash.

From util-linux-ng.
2011-01-08 20:40:33 +00:00
obache
25a46c7005 Update HOMEPAGE. 2011-01-06 05:14:02 +00:00
adam
2c231eda72 Darwin hacks changes:
* forget about problem with universal binaries; it's fixed with ABI
* replace libiconv_open with iconv_open in configure, so system libiconv can
  be detected and used in 64-bit mode
2011-01-04 09:55:15 +00:00
obache
8c86bd939a Disable ld-version-script for Interix.
PR#44291.
2011-01-03 03:11:14 +00:00
adam
cec4108ae4 yasm also works on x86_64 2010-12-29 18:34:06 +00:00
obache
0761b90de0 buildlink with gettext-lib additionally.
libtre.la refer -lintl.
2010-12-28 08:40:16 +00:00
wiz
3486993f4d Not make-jobs safe. 2010-12-27 20:48:02 +00:00
taca
48c251841f Mechanical change: rails directory from www/rails to www/rails. 2010-12-26 15:23:23 +00:00
adam
d2ea9f0023 Fix linking command, otherwise LDFLAGS aren't used: needed for special LDFLAGS on Mac OS X 2010-12-26 12:07:01 +00:00
adam
1feefdf8f3 Removed duplicate line 2010-12-26 10:46:27 +00:00
obache
8b16dda860 On DragonFly, extra libs will be created, same as Darwin. 2010-12-26 08:36:44 +00:00
obache
6dfbdb8994 Updte zzuf to 0.12.
Based on PR#44274, with some fixes.

Changes from zzuf 0.12 to 0.13

 * various fixes for Linux, FreeBSD, OS X and OpenBSD libc calls.
 * network host filtering support.
 * support for memory limits on OS X.
 * massive testsuite improvements.
 * support most cat options in zzcat, which is now fully programmable.
2010-12-25 11:00:51 +00:00
joerg
3a033c95c3 Update to 2010/12/21 snapshot:
- Support for git-fast-export format
- More efficient synchronisation mechanism
- "addremove", "bisect" and "stash" commands
- sqlite3 shell with some bindings to fossil logic like content_get
- undo cleans merge state
- Various improvements and bugfixes to other commands
2010-12-24 13:06:33 +00:00
abs
b539c88ea7 Fix build on OS X 10.4
- Correct a sublime piece of gmake logic to catch at least 10.4
  rather than 10.5 and later:
    ifeq ($(shell echo "$(uname_R)" | awk -F. '{if ($$1 >= 9)
    print "y"}')_$(shell test -d $(TKFRAMEWORK) || echo n),y_n)

- Then handle the case that on 10.4
    share/git-gui/lib/Git Gui.app/Contents/MacOS/Wish
  becomes
    share/git-gui/lib/Git Gui.app/Contents/MacOS/Wish Shell

Bump PKGREVISION and Slowly Back Away From The Package
2010-12-23 23:42:40 +00:00
fhajny
a58af195b1 Added BUILDLINK_INCDIRS and BUILDLINK_LDFLAGS support to bl3, to help with
building lang/spidermonkey.
2010-12-23 12:24:00 +00:00
dsainty
ada744dc0a Mechanically replace references to graphics/jpeg with the suitable
alternative from mk/jpeg.buildlink3.mk

This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).

The mechanical edits were applied via the following script:

#!/bin/sh
for d in */*; do
  [ -d "$d" ] || continue
  for i in "$d/"Makefile* "$d/"*.mk; do
    case "$i" in *.orig|*"*"*) continue;; esac
    out="$d/x"
    sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
        -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
        < "$i" > "$out"
    if cmp -s "$i" "$out"; then
      rm -f "$out"
    else
      echo "Edited $i"
      mv -f "$i" "$i.orig" && mv "$out" "$i"
    fi
  done
done
2010-12-23 11:44:24 +00:00
seanb
38bf12b8ea No SA_RESTART on qnx. 2010-12-21 22:57:44 +00:00
obache
f8ee69010a +cutter 2010-12-21 11:29:39 +00:00
obache
8f6401135d Import cutter-1.1.5 as devel/cutter.
Cutter is a xUnit family Unit Testing Framework for C and C++.

This is a list of features of Cutter:
  * easy to write tests.
  * outputs result with useful format for debugging.
  * tests are built as shared libraries.
2010-12-21 11:27:57 +00:00
taca
39f647a8bd Update php-memcache package to 2.2.6.
2.2.6		2010-10-03

- Fixed pecl bug #16536 (Weight of 0 causes SegFault on memcache_add_server)
- Fixed pecl bug #17130 (Uninitialized tv.tv_usec causing PHP to loop
  endlessly)
- Fixed pecl bug #13623 (Memcache-client makes php segfault in semi-related
  code)
2010-12-19 03:00:52 +00:00
wiz
d574d704d1 Install some emacs support files. Requested by Stefan in PR 44250.
Bump PKGREVISION.
2010-12-18 13:06:04 +00:00
abs
3a98466379 update distinfo for 1.7.3.4 2010-12-17 23:37:50 +00:00
rhaen
573cba4487 - updated to 2.212
Changelog:
2.212 Mon 22 Nov 2010
    - Updating to Module::Install 1.00
    - No functional changes
2010-12-17 22:49:27 +00:00
rhaen
a786f4a223 - updated to 0.108
Changelog:
0.108     2009-1015

          simple (stringwise) comparison should now be much faster (thanks,
          NCLEATON)
2010-12-17 22:28:49 +00:00
rhaen
9c522896eb - updated to 0.09
Changelog:
0.09
    +   upgraded to jQuery 1.4.2
    +   updated App::Prove::Plugin::HTML to simplify cmdline usage to the
    extent possible.
    +   fixed RT #41457 & RT #49621: applied Neil Hemingway, Tim Esselens, and
        Panu Ervamaa's patches, and got everything working.  This addresses:
        +   small changes to the top-left corner menu (default_report.css)
        to render it corretly with Firefox 3 (Linux)
        +   inline_js fix
        +   added support for force_inline_js (not on by default, including
        jQuery inline causes errors)
        +   fixed bug in handling of parse_errors in default_report.tt
        +   fixed bug: nothing happens when I click on the test output.
        +   XHTML support
    +   fixed bug: click on summary changes location
    +   fixed 2 minor javascript bugs where '#' was being used as a jQuery id ref
    +   added new feature: column sorting via Christian Bach's jquery.tablesorter
    plugin (bundled from http://tablesorter.com). optional.
    +   added new feature: up to top of test when the test filename is no longer
    visible
2010-12-17 22:23:05 +00:00
rhaen
38a5f5887c - updated to 1.31
Changelog:
1.31 (2010/10/27)
  *     (ms) Fixed the number of skipped tests for Windows for previous fix
        of [RT 60665].
2010-12-17 18:34:55 +00:00
rhaen
2bcd58926f - updated to 2.28
- package no longer uses Module::Build

Changelog:
2.28   2010-12-13

- The Log::Dispatch module still had version 2.26 in the last
  release. Reported by Øyvind Skaar. RT #63876.


2.27   2010-10-16

- Fix docs on handling of arrays passed to ->debug, ->error, etc. Requested by
  Andrew Hanenkamp. RT #61400.

- Allow an arrayref for the Syslog socket option. Requested by Paul
  Bennett. RT #57631.

- License is now Artistic 2.0
2010-12-17 18:30:10 +00:00
rhaen
91095a0625 - updated to 1.10
Changelog:
2010-10-11   Todd Rinaldo <toddr@cpan.org>
	* CPAN testers clean. Bumping to release version 1.10

2010-10-04   Todd Rinaldo <toddr@cpan.org>
	* RT 60788 - Better error reporting on Operating Systems
	  that can't set a controlling terminal e.g. BeOS
	* Bump to 1.09_01

2010-10-04   Todd Rinaldo <toddr@cpan.org>
	* CPAN testers looks clean. Internal testing done on perl 5.6
	* Bump version to 1.09 and release to CPAN
2010-12-17 18:20:18 +00:00
rhaen
d73425489a - Updated to 1.26
Changelog:
- The as_string method did not localize $@ and $SIG{__DIE__} before doing an
  eval. Reported and tested by Marc Mims. RT #61072.
2010-12-17 14:12:10 +00:00
wiz
35882226a3 Update to 0.9.8.6rc1 and add lots of upstream SVN patches to make
it build again.

Changes:
This is a major feature enhancement and bugfix release

    * Added keyword and optional function arguments.

      The syntax of a keyword parameter/argument is "identifier = expr".

         Function     Application
         -------------------------------------------
         f(a)         f(1)
         f(~a, b)     f(~a = 10, 11)     Required keyword argument
         f(?a, b)     f(~a = 10, 12)     Optional keyword argument
                      f(12)              -- defaults to empty
         f(?a = 1, b) f(~a = 10, 11)     Optional keyword argument with default value
         f(~a = 1, b) f(11)              -- ~a is same as ?a if there is a default value
                      f(?a = 10, 11)     -- Arguments can use ?, but it means the same thing

      Keyword arguments and normal arguments are processed
      independently. Normal arguments have to appear in the same
      order as in the parameter list, but keyword arguments can go
      anywhere.

      This also adds the function notation.

          fun(x, y) =>
             add($x, $y)

          foreach(x => ..., a b c)
             println($x)

      where the "..." essentially means "parse as if the indented
      block below was actually an expression in here"

      Old-style foreach generate a warning.
    * Added "program" syntax. This provides a more standard
    programming language, where strings must be explicit, and
    variables represent applications.

      The outer syntax is normal; the program syntax is an ast to
      ast translation. The translation is turned on with the command
      ".LANGUAGE: program", which is scoped like "export". Here is
      an example:

         #!/usr/bin/env osh
         .LANGUAGE: program

         f(x) =
            return x + 1

         println(f(f(1)))

      The normal $-style expressions are always allowed, but in
      program-syntax mode, identifiers stand for variables, function
      application is the f(e1, ..., e2) form, and there are the
      standard infix operators. To switch back to the default
      syntax, use .LANGUAGE: make

      Note, shell commands and rules never use program syntax,
      except within function arguments.

      This is not heavily tested.
    * Added support for partial and curried function applications.
    Normal funcation application still require using the correct
    number of arguments (as relaxed by the introduction of optional
    arguments), but apply function can be used to create curried
    and partial applications.

         f(x,y) =
            return $(add $x, $y)

         g = $(apply $f, 2)      # Partial applications must use apply
         println($(g 3))         # 5

         ff(x) =
            gg(y) =
               return $(add $x, $y)

         println($(apply $(ff), 3, 5)) # Prints 8, also need to use apply here

      apply can also take keyword arguments.
    * A high-quality C parser was added to OMake — see lib/parse/C/Parse.om
    * Added a LaTeX parser and spellchecker - see lib/parse/LaTeX/README.txt
    * New functions added: localtime, gmtime, mktime, normalize-tm,
    utimes, digest-string, url-escaped, find-all, addprefixes
    * New object added: Tm
    * About 10 Bugs fixed
    * [Experimental] Object methods can now export their fields
    back into the parent object. For example,

         Z. =
             x = 1
             f() =
                 x = 2
                 export
         Z.f()
         echo $(Z.x)
         # Prints "2"

      This works with arbitrary levels of nesting.
2010-12-17 09:40:14 +00:00
obache
d99eb6b342 Bump PKGREVISION from icu shlib major bump. 2010-12-17 07:36:08 +00:00
hiramatsu
1067c820b1 Updated to 5.25. This fixes build problem due to API changes of devel/libev.
5.25  Thu Nov 11 01:08:39 CET 2010
        - try a different approach on netbsd - netbsd 5 finally has marginally
          working pthreads, but still broken ucontext/sigaltstack.
        - openbsd 4.8 finally got their act together, Coro works out of the box
          with asm, setjmp and pthreads (no change, just informational).

5.24  Sat Oct 23 11:27:12 CEST 2010
        - port to the EV 4.0 API.
        - work around bugs in mingw32, making strawberry perl work
          out of the box.
        - correctly modify Coro::AIO function prototypes
          so that they reflect the "no optional parameters" rule.
        - "ported" libcoro to C++.
2010-12-17 02:22:36 +00:00
gdt
21d9d2e7bb Update to 1.7.3.4.
Git v1.7.3.4 Release Notes
==========================

Fixes since v1.7.3.3
--------------------

 * Smart HTTP transport used to incorrectly retry redirected POST
   request with GET request.

 * "git apply" did not correctly handle patches that only change modes
   if told to apply while stripping leading paths with -p option.

 * "git apply" can deal with patches with timezone formatted with a
   colon between the hours and minutes part (e.g. "-08:00" instead of
   "-0800").

 * "git checkout" removed an untracked file "foo" from the working
   tree when switching to a branch that contains a tracked path
   "foo/bar".  Prevent this, just like the case where the conflicting
   path were "foo" (c752e7f..7980872d).

 * "git cherry-pick" or "git revert" refused to work when a path that
   would be modified by the operation was stat-dirty without a real
   difference in the contents of the file.

 * "git diff --check" reported an incorrect line number for added
   blank lines at the end of file.

 * "git imap-send" failed to build under NO_OPENSSL.

 * Setting log.decorate configuration variable to "0" or "1" to mean
   "false" or "true" did not work.

 * "git push" over dumb HTTP protocol did not work against WebDAV
   servers that did not terminate a collection name with a slash.

 * "git tag -v" did not work with GPG signatures in rfc1991 mode.

 * The post-receive-email sample hook was accidentally broken in 1.7.3.3
   update.

 * "gitweb" can sometimes be tricked into parrotting a filename argument
   given in a request without properly quoting.

Other minor fixes and documentation updates are also included.

Git v1.7.3.3 Release Notes
==========================

In addition to the usual fixes, this release also includes support for
the new "add.ignoreErrors" name given to the existing "add.ignore-errors"
configuration variable.

The next version, Git 1.7.4, and future versions, will support both
old and incorrect name and the new corrected name, but without this
backport, users who want to use the new name "add.ignoreErrors" in
their repositories cannot use older versions of Git.

Fixes since v1.7.3.2
--------------------

 * "git apply" segfaulted when a bogus input is fed to it.

 * Running "git cherry-pick --ff" on a root commit segfaulted.

 * "diff", "blame" and friends incorrectly applied textconv filters to
   symlinks.

 * Highlighting of whitespace breakage in "diff" output was showing
   incorrect amount of whitespaces when blank-at-eol is set and the line
   consisted only of whitespaces and a TAB.

 * "diff" was overly inefficient when trying to find the line to use for
   the function header (i.e. equivalent to --show-c-function of GNU diff).

 * "git imap-send" depends on libcrypto but our build rule relied on the
   linker to implicitly link it via libssl, which was wrong.

 * "git merge-file" can be called from within a subdirectory now.

 * "git repack -f" expanded and recompressed non-delta objects in the
   existing pack, which was wasteful.  Use new "-F" option if you really
   want to (e.g. when changing the pack.compression level).

 * "git rev-list --format="...%x00..." incorrectly chopped its output
   at NUL.

 * "git send-email" did not correctly remove duplicate mail addresses from
   the Cc: header that appear on the To: header.

 * The completion script (in contrib/completion) ignored lightweight tags
   in __git_ps1().

 * "git-blame" mode (in contrib/emacs) didn't say (require 'format-spec)
   even though it depends on it; it didn't work with Emacs 22 or older
   unless Gnus is used.

 * "git-p4" (in contrib/) did not correctly handle deleted files.

Other minor fixes and documentation updates are also included.
2010-12-17 01:05:23 +00:00
wiz
c48df617e6 Update to 1.46.1:
Release notes for 1.46

This release has improvements and bug fixes.

We fixed 153 tickets, and that is a somewhat "usual" number for a Cppcheck release.

The report has been improved. New severities were added to make the messages more informational. The possible severities are now:
 * error
 * warning
 * style
 * performance

This has no effect on the command line flags nor the xml report. The command line flags and the xml report is fully compatible with previous versions.

These are the new checks that were added:
 * detect dangerous usage of string::c_str()
 * warn for unused variable when only doing malloc/free
 * warn when assert has side effects
 * warn for mutual exclusion over ||. The condition is always false. Example: 'if (x != 1 || x != 4)'

More details about all the fixed tickets can be found here:
http://sourceforge.net/apps/trac/cppcheck/milestone/1.46


Release notes for 1.46.1

Fix segmentation fault.
2010-12-15 13:01:38 +00:00
abs
663b73804b On at least OS X 10.4 the builtin zlib does not provide all the symbols
we need
2010-12-14 19:51:45 +00:00
wiz
a02a999161 Set LICENSE. 2010-12-12 12:20:10 +00:00
wiz
b5578eb44a Update to 2.26.3:
2.26.3 (stable):

* Build/Installer: Added support for MSVC 2010 and 64 bit.
  (Armin Burgmeier)
2010-12-12 12:15:26 +00:00
mrg
9ac7a16259 fix the lisp scanner to properly exit when EOF is reached. there are
two files in netbsd 'src' that trigger this bug, but now i can run 'mkid'
on all of 'src' again.
2010-12-11 23:40:08 +00:00
tnn
3d37ed8b69 Update to firefox-3.6.13.
MFSA 2010-84 XSS hazard in multiple character encodings
MFSA 2010-83 Location bar SSL spoofing using network error page
MFSA 2010-82 Incomplete fix for CVE-2010-0179
MFSA 2010-81 Integer overflow vulnerability in NewIdArray
MFSA 2010-80 Use-after-free error with nsDOMAttribute MutationObserver
MFSA 2010-79 Java security bypass from LiveConnect loaded via data: URL meta
             refresh
MFSA 2010-78 Add support for OTS font sanitizer
MFSA 2010-77 Crash and remote code execution using HTML tags inside a XUL tree
MFSA 2010-76 Chrome privilege escalation with window.open and <isindex> element
MFSA 2010-75 Buffer overflow while line breaking after document.write with
             long string
MFSA 2010-74 Miscellaneous memory safety hazards (rv:1.9.2.13/ 1.9.1.16)
2010-12-11 14:46:29 +00:00
adam
e5eb177e84 Changes 8.11:
A number of bugs in the library and in pcregrep have been fixed. As always, see
ChangeLog for details. The following are the non-bug-fix changes:
. Added --match-limit and --recursion-limit to pcregrep.
. Added an optional parentheses number to the -o and --only-matching options
  of pcregrep.
. Changed the way PCRE_PARTIAL_HARD affects the matching of $, \z, \Z, \b, and
  \B.
. Added PCRE_ERROR_SHORTUTF8 to make it possible to distinguish between a
  bad UTF-8 sequence and one that is incomplete when using PCRE_PARTIAL_HARD.
. Recognize (*NO_START_OPT) at the start of a pattern to set the PCRE_NO_
  START_OPTIMIZE option, which is now allowed at compile time
2010-12-11 08:16:12 +00:00
hauke
1773600a0c Squash a C++ism: Variable declarations only at the beginning of a block.
Found while building on NetBSD 1.5.
2010-12-10 07:45:56 +00:00
reed
061ed254f1 Upgrade lcov to 1.9. Branch coverage analysis added and defaults to on.
From the CHANGES:

Version 1.9
===========

genhtml:
- Improved wording for branch representation tooltip text
- Fixed vertical alignment of HTML branch representation

geninfo:
- Improved warning message about --initial not generating branch coverage data
- Debugging messages are now printed to STDERR instead of STDOUT
- Fixed problem with some .gcno files. Reported by gui@futarque.com.
  (file.gcno: reached unexpected end of file)
- Fixed problem with relative build paths. Reported by zhanbiao2000@gmail.com.
  (cannot find an entry for ^#src#test.c.gcov in .gcno file, skipping file!)
- Fixed problem where coverage data is missing for some files. Reported by
  weston_schmidt@open-roadster.com
- Fixed problem where exclusion markers are ignored when gathering
  initial coverage data. Reported by ahmed_osman@mentor.com.
- Fixed large execution counts showing as negative numbers in HTML output.
  Reported by kkyriako@yahoo.com.
- Fixed problem that incorrectly associated branches outside of a block with
  branches inside the first block

lcov:
- Fixed problem that made lcov ignore --kernel-directory parameters when
  specifying --initial. Reported by hjia@redhat.com.
- Added --list-full-path option to prevent lcov from truncating paths in list
  output
- Added lcov_list_width and lcov_list_truncate_max directives to the
  lcov configuration file to allow for list output customization
- Improved list output

COPYING:
- Added license text to better comply with GPL recommendations


Version 1.8
===========

gendesc:
- Fixed problem with single word descriptions

genhtml:
- Added support for branch coverage measurements
- Added --demangle-cpp option to convert C++ function names to human readable
  format. Based on a patch by slava.semushin@gmail.com.
- Improved color legend: legend display takes up less space in HTML output
- Improved coverage rate limits: all coverage types use the same limits
  unless specified otherwise
- Fixed CRLF line breaks in source code when generating html output. Based
  on patch by michael.knigge@set-software.de.
- Fixed warning when $HOME is not set
- Fixed problem with --baseline-file option. Reported by sixarm@gmail.com.
  (Undefined subroutine &main::add_fnccounts called at genhtml line 4560.)
- Fixed problem with --baseline-file option and files without function
  coverage data (Can't use an undefined value as a HASH reference at genhtml
  line 4441.)
- Fixed short-name option ambiguities
- Fixed --highlight option not showing line data from converted test data
- Fixed warnings about undefined value used. Reported by nikita@zhuk.fi.
- Fixed error when processing tracefiles without function data. Reported
  by richard.corden@gmail.com (Can't use an undefined value as a HASH
  reference at genhtml line 1506.)

geninfo:
- Added support for branch coverage measurements
- Added support for exclusion markers: Users can exclude lines of code from
  coverage reports by adding keywords to the source code.
- Added --derive-func-data option
- Added --debug option to better debug problems with graph files
- Fixed CRLF line breaks in source code when generating tracefiles. Based on
  patch by michael.knigge@set-software.de.
- Fixed problems with unnamed source files
- Fixed warning when $HOME is not set. Reported by acalando@free.fr.
- Fixed errors when processing unnamed source files
- Fixed help text typo
- Fixed errors when processing incomplete function names in .bb files
- Fixed filename prefix detection
- Fixed problem with matching filename
- Fixed problem when LANG is set to non-english locale. Reported by
  benoit_belbezet@yahoo.fr.
- Fixed short-name option ambiguities

genpng:
- Fixed runtime-warning

lcov:
- Added support for branch coverage measurements
- Added support for the linux-2.6.31 upstream gcov kernel support
- Added --from-package and --to-package options
- Added --derive-func-data option
- Added overall coverage result output for more operations
- Improved output of lcov --list
- Improved gcov-kernel handling
- Fixed minor problem with --diff
- Fixed double-counting of function data
- Fixed warning when $HOME is not set. Reported by acalando@free.fr.
- Fixed error when combining tracefiles without function data. Reported by
  richard.corden@gmail.com. (Can't use an undefined value as a HASH reference
  at lcov line 1341.)
- Fixed help text typo
- Fixed filename prefix detection
- Fixed lcov ignoring information about converted test data

README:
- Added note to mention required -lgcov switch during linking
2010-12-06 19:19:15 +00:00
gdt
1e5003f924 Change MAINTAINER on bzr packages.
With epg@'s concurrence, reset MAINTAINER on *bzr* to Jan Danielsson.
2010-12-06 13:57:27 +00:00
markd
4474500328 Fix build with recent subversion. 2010-12-06 11:50:35 +00:00
markd
b9a3982465 Update to KDE SC 4.5.4
4.5.4 brings bugfixes and translation updates
2010-12-06 11:43:38 +00:00
abs
3628d94749 fix PLIST for last 2010-12-06 10:56:31 +00:00
abs
f7ca503686 Updated devel/cpuflags to 1.42
Add initial powerpc support for Darwin
2010-12-05 11:19:39 +00:00
tonio
b8e365aa36 Update devel/apache-ant to 1.8.1
Fixes PR pkg/43752

Changes from Ant 1.8.0 TO Ant 1.8.1:
- Changes that could break older environments:
 * ant-trax.jar is no longer produced since TrAX is included in JDK 1.4+.
 * Ant no longer ships with Apache Xerces-J or the XML APIs but relies
   on the Java runtime to provide a parser and matching API versions.
 * The stylebook ant task and the ant-stylebook.jar are removed.

- Fixed bugs:
 * Tasks that iterate over task or type definitions, references or
   targets now iterate over copies instead of the live maps to avoid
   ConcurrentModificationExceptions if another thread changes the
   maps.
 * The filesmatch condition threw a NullPointerException when
   comparing text files and the second file contained fewer lines than
   the first one.
 * Regression: The <ear> task would allow multiple
   META-INF/application.xml files to be added.
 * VectorSet#remove(Object) would fail if the size of the vector
   equaled its capacity.
 * Regression : ant -diagnostics was returning with exit code 1
 * Fix for exec task sometimes inserts extraneous newlines
 * SymlinkTest#testSymbolicLinkUtilsMethods failing on MacOS
 * If <concat>'s first resourcecollection child is a <resources>,
   any subsequently added child resourcecollection joins the first.
 * <get> with an invalid URL could trigger an NPE in some JVMs.
 * Broken Pipe issue under Ubuntu Linux
 * Properties wrongly read from file or not update during read
 * AntClassLoader in Ant 1.8.0 has been considerably slower than in
   1.7.1
 * ANT_CMD_LINE_ARGS are rippling through lower level Ant usage
 * email : IO error sending mail with plain mimetype
 * the complete-ant-cmd.pl script failed to create a proper cache of
   target if "ant -p" failed.
 * <rmic>'s sourcebase attribute was broken.
 * <copy>'s failonerror didn't work as expected when copying a single
   element resource collection to a file.
 * <get> no longer followed redirects if the redirect URL was relative
   and not an absolute URL.
 * fixed a performance degradation in the code that expands property
   references.
 * <jar filesetmanifest="merge"> was broken on Windows.
 * <symlink> delete failed if the link attribute was a relative path
   to a link inside the current directory without a leading ".".
 * <telnet> and <rexec> failed to find the expected strings when
   waiting for responses and thus always failed.

- Other changes:
 * Project provides new get methods that return copies instead of the
   live maps of task and type definitions, references and targets.
 * Ant is now more lenient with ZIP extra fields and will be able to
   read archives that it failed to read in earlier versions.
 * The <zip> family of tasks has been sped up for bigger archives.
 * Add removeKeepExtension option to NetRexxC task.
 * Add prefix attribute to loadproperties task.
 * Add resource attribute to length task.
 * PropertyResource will effectively proxy another Resource if ${name}
   evaluates to a Resource object.
 * Added forcestring attribute to equals condition to force evaluation
   of Object args as strings; previously only API-level usage of the
   equals condition allowed Object args, but Ant 1.8.x+ property
   evaluation may yield values of any type.
 * BuildFileTest.assertPropertyUnset() fails with a slightly more
   meaningful error message
 * <junit> will now throw an exception if a test name is empty.  This
   used to manifest itself in unrelated errors like
 * A change that made <exec> more reliable on Windows (Bugzilla Report
   5003) strongly impacts the performance for commands that execute
   quickly, like attrib.  Basically no single execution of a command
   could take less than a second on Windows.
   A few timeouts have been tweaked to allow these commands to finish
   more quickly but still they will take longer than they did with Ant
   1.7.1.
 * Added SimpleBigProjectLogger, intermediate between NoBannerLogger and
   BigProjectLogger.
 * <mappedresources> supports new attributes enablemultiplemappings
   and cache.
 * Added the augment task to manipulate existing references via Ant's basic
   introspection mechanisms.
2010-12-05 10:05:06 +00:00
adam
fecfae3b65 Fix building on Mac OS X 2010-12-04 08:12:33 +00:00
taca
616c39144e Update ruby-thor package to 0.14.6.
Changes are unknown.
2010-12-04 04:03:53 +00:00
taca
fd3e2bd8ab Update ruby-test-unit package to 2.1.2.
=== 2.1.2 / 2010-11-25

* 1 enhanchement
  * support auto runner prepare hook.
2010-12-04 04:03:03 +00:00
taca
131ddacaa8 Update ruby-mocha package to 0.9.10.
= 0.9.10 ()
* Added Mocha::ObjectMethods#unstub method - https://github.com/floehopper/mocha/issues#issue/6
* Inherit Mocha::ExpectationError from Exception instead of StandardError to reduce the chances of a test passing by accident - thanks to James Sanders (jsanders) - https://github.com/floehopper/mocha/issues#issue/15
* Fixed bug - GitHub README page to link correctly to code examples - https://github.com/floehopper/mocha/issues/closed#issue/11
* Fixed bug - PASSTHROUGH_EXCEPTIONS are defined on MiniTest::Unit::TestCase not in Mocha - thanks to Brian Troutwine (blt) - https://github.com/floehopper/mocha/issues/closed#issue/14

= 0.9.9 (ee3a79db4d52c3339e8acf07505e01236a2b4810)

* Avoid loading bits of the test-unit gem by accident. This is an attempt at
  a fix for the problem that James Adam reported [1]. By using 'load' instead
  of 'require' to detect the version of Test::Unit, we can avoid rubygems
  trying to load bits of the test-unit gem when it's not wanted. [1]
  http://floehopper.lighthouseapp.com/projects/22289-mocha/tickets/50#ticket-50-13
* Fix exception when running rake without test-unit gem. When test-unit gem
  >=v2.0.0 was installed but the "use_test_unit_gem" MOCHA_OPTIONS was not
  specified, a "comparison of Fixnum with Hash failed" exception was being
  raised when running the performance tests. This was because bits of the
  test-unit gem were being loaded accidentally and a Hash was being
  incorrectly supplied to the TestRunner.run method.
* Explicitly require rubygems for running tests via rake using test-unit gem.
* Handle newer versions of test-unit gem (v2.0.2 to v2.0.9)
* Handle newer versions of minitest gem (v1.4.0 to v1.6.0)
* Added warnings about monkey-patching test-unit and minitest to aid
  debugging. These are enabled by including "debug" in the MOCHA_OPTIONS
  environment variable. This is now a comma-separated list, so that we can
  specify multiple options e.g. MOCHA_OPTIONS=debug,use_test_unit_gem
* Eloy Duran (alloy) made the unit tests run on 1.9.2dev r25249.
* Eloy Duran (alloy) also improved some MiniTest TestResult code I'd written
  and got the acceptance tests running on Ruby 1.9 HEAD. There are still 4
  failures because for some reason the backtrace line numbers are off by
  one. And the minitest_test test case does not run when the whole suite is
  run with MiniTest. These issues still need investigation.
* Fixed some acceptance tests to run in Ruby 1.9.2 - it's no longer possible
  to subvert the protection of a method by calling it via Object#send.
* Fixed "test:performance" rake task so it runs in Ruby 1.9.2.
* Fix test incorrectly failing under Rubinius 1.0. This test imposed too many
  constraints. It appears that Object#inspect legitimately calls
  Object#object_id in Rubinius. But we're only interested in what 'id'
  methods Mocha::ObjectMethods#mocha_inspect calls. By stubbing
  Object#inspect we can relax the constraints imposed by the test.
* Luke Redpath (lukeredpath) added new shorthand "any" and "all" composite
  parameter matchers using "&" and "|". This provides an alternative syntax
  for expecting any or all matchers to pass,
  e.g. foo.expects(:bar).with(equals(1) | equals(2)).
* Improved documentation for Expectation#raises. A number of people have
  suggested an extension to the API to cope with custom exceptions that have
  extra constructor parameters. However, since the arguments supplied to
  Expectation#raises are just passed on to Kernel#raise, it's possible to
  pass in an instance of an exception. Thus no change to the API is required,
  but it does seem worthwhile pointing this out in the docs.
* Corrected RDoc example for Expectation#never thanks to Red David (reddavis).
* Improved RDoc including a change suggested by Rohit Arondekar (rohit).
* Updated gemspec as requested by Sam Woodard (shwoodard).
2010-12-04 04:01:54 +00:00
taca
b2cd42ec7a Update ruby-log4r package to 1.1.9.
Changes are unknown.
2010-12-04 04:01:06 +00:00
taca
6bf39d39dd Update ruby-i18n package to 0.5.0.
0.5.0

* "Extract Backend::ActiveRecord to a separate gem":197dacebad (see "i18n-active_record":https://github.com/svenfuchs/i18n-active_record)
* "Improve exception handling":2913ff9a75 (deprectates I18n.default_exception_handler)
* "Change MissingTranslationData message to 'translation missing: foo.bar'":68fdfe4795
* "Expose MissingTranslationsData#keys method":3a37a389ec
* "Improve Cascade#lookup (add default options)":0b9a1f2058
* "Finally remove deprecated interpolation syntax":2d43846d2b

0.4.2 (2010-10-26)

* "Improve UTF8 handling":e8d5820a3b
* "Expose I18n::VERSION":b832037bac
* "Better deprecation output":2bee924464
2010-12-04 04:00:24 +00:00
taca
6df7669090 Update ruby-flexmoc to 0.8.11.
Changes are unknown.
2010-12-04 03:58:30 +00:00
taca
602fe4ac82 Update ruby-ffi package to 1.0.0.
== 1.0.0 / 2010-11-30
* Major improvements
  * Better handling of non-ruby thread callbacks
  * Support for releasing the GIL during C function calls
* Minor improvements
  * code cleanups
2010-12-04 03:57:30 +00:00
taca
5d0f3c2220 Update ruby-facade package to 1.0.5.
== 1.0.5 - 10-Nov-2010
* Refactored the Rakefile.
2010-12-04 03:56:47 +00:00
taca
5d9ce8d815 Update ruby-debug-ide package to 0.4.16.
For Ruby 1.9 support, needs ruby-debug-base19 (unpackaged yet).

Changes:

Merged with ruby-debug-ide19, compatibility with ruby 1.9 Fixed segfaults on 1.9
2010-12-04 03:55:29 +00:00
taca
b992d0bba7 Update ruby-debug to 0.10.4.
0.10.4
10/27/10

 - Various bug fixes:
   * reload command.
   * plain 'info' command
   * improve list and list - (backwards) handling when hitting end of file
 - Add ability to specify port to debug on
 - Allow breakpoints at class methods
 - "quit!" is same as "quit unconditionally"
 - irb improvements: Access to non-executing rdebug commands inside irb via
   "dbgr" method
 - Go over documentation including that created by rdoc.
 - For emacs package: add README, INSTALL, AUTHORS.
2010-12-04 03:53:32 +00:00
taca
fa49aac929 Update ruby-debug-base to 0.10.4.
0.10.4
10/27/10

 - Various bug fixes:
   * reload command.
   * plain 'info' command
   * improve list and list - (backwards) handling when hitting end of file
 - Add ability to specify port to debug on
 - Allow breakpoints at class methods
 - "quit!" is same as "quit unconditionally"
 - irb improvements: Access to non-executing rdebug commands inside irb via
   "dbgr" method
 - Go over documentation including that created by rdoc.
 - For emacs package: add README, INSTALL, AUTHORS.
2010-12-04 03:52:25 +00:00
taca
2dc001a476 Update hoe package to 2.7.0.
=== 2.7.0 / 2010-11-15

* 2 minor enhancements:

  * Added new plugin: gem_prelude_sucks. (jbarnette)
    * Activate under 1.9 if you don't want it messing with you.
  * Added rspec2 support (bleything)

* 1 bug fix:

  * require uri in hoe/deps (raggi)
2010-12-04 03:50:20 +00:00
gdt
4b331afb52 Update to 2.1.0 for compatability with updated devel/bzr version.
From Jan Danielsson in private mail.  Miscellaneous changes, including:

* (Gordon Tyler) shell now accepts --directory
* shell now run qbzr commands in a subprocess.
* (Max Bowsher) fetch-ghosts now works again.  And has tests.
* conflict-diff no longer requires a single file to be specified.  Multiple
  files or no files can be specified.
2010-12-04 01:34:08 +00:00
gdt
32b72a63c1 Update to 0.98 for compatability with updated devel/bzr version.
Upstream does not have any reasonable NEWS/Changelog, but 0.97 does
not work with bzr 2.1.1.  From Jan Danielsson in private mail.
2010-12-04 01:27:52 +00:00
gdt
af7b7908d3 Upgrade to 2.1.1, from Jan Danielsson in private email.
Work has gone in to reducing memory usage in the 2.1 series.

This is a small bugfix release. Upgrading is recommended for anyone
running 2.1.0 or earlier.

Bugfixes:
* Avoid malloc(0) in patiencediff, which is non-portable.
* Fix stub sftp test server to call os.getcwdu().
* Merge correctly when this_tree is not a WorkingTree.
* Warn if pyrex is too old to compile the new SimpleSet and StaticTuple
  extensions, rather than having the build fail randomly.
2010-12-04 01:21:06 +00:00
drochner
2597755e81 reset PKGREV for base pkg update 2010-12-03 18:40:20 +00:00
wiz
3aea2d4aca Update to 2.7:
New in 2.7
----------

* Bugfix release.
2010-12-02 16:10:34 +00:00
wiz
039b1efffe Update to 4.00:
4.00 Mon Oct 25 13:30:09 CEST 2010
	- many API changes, see the manual.
        - (libev) lots and lots of bugfixes, see the ev documentation.
	- fix a bug where inotify usage would parse the same event
          multiple times, causing various forms of breakage.
	- greatly reduce stack usage for inotify (8kb to <0.5kb).
        - expose ev_depth and ev_verify via the XS API.
        - implement ev_cleanup watchers.
        - (libev) ev_embed_stop did not correctly stop the watcher.
        - (libev) disable poll backend on AIX.
        - (libev) rename EV_TIMEOUT to EV_TIMER.
        - (libev) add section on accept() problems to the manpage.
        - (libev) no child watchers on win32.
        - make code more aliasing compliant, in case perl is ever
          translated to C.
        - document the EV::CHECK runtime unavailability.
        - ported to minix 3.1.7.
2010-12-02 15:47:42 +00:00
wiz
7b0f839705 Update to 4.01. Shlib major bump, so bump bl3.mk.
4.01 Fri Nov  5 21:51:29 CET 2010
        - automake fucked it up, apparently, --add-missing -f is not quite enough
          to make it update its files, so 4.00 didn't install ev++.h and
          event.h on make install. grrr.
        - ev_loop(count|depth) didn't return anything (Robin Haberkorn).
        - change EV_UNDEF to 0xffffffff to silence some overzealous compilers.
        - use "(libev) " prefix for all libev error messages now.

4.00 Mon Oct 25 12:32:12 CEST 2010
	- "PORTING FROM LIBEV 3.X TO 4.X" (in ev.pod) is recommended reading.
	- ev_embed_stop did not correctly stop the watcher (very good
          testcase by Vladimir Timofeev).
        - ev_run will now always update the current loop time - it erroneously
          didn't when idle watchers were active, causing timers not to fire.
        - fix a bug where a timeout of zero caused the timer not to fire
          in the libevent emulation (testcase by Péter Szabó).
	- applied win32 fixes by Michael Lenaghan (also James Mansion).
	- replace EV_MINIMAL by EV_FEATURES.
        - prefer EPOLL_CTL_ADD over EPOLL_CTL_MOD in some more cases, as it
          seems the former is *much* faster than the latter.
        - linux kernel version detection (for inotify bug workarounds)
          did not work properly.
        - reduce the number of spurious wake-ups with the ports backend.
        - remove dependency on sys/queue.h on freebsd (patch by Vanilla Hsu).
        - do async init within ev_async_start, not ev_async_set, which avoids
          an API quirk where the set function must be called in the C++ API
          even when there is nothing to set.
        - add (undocumented) EV_ENABLE when adding events with kqueue,
          this might help with OS X, which seems to need it despite documenting
          not to need it (helpfully pointed out by Tilghman Lesher).
        - do not use poll by default on freebsd, it's broken (what isn't
          on freebsd...).
        - allow to embed epoll on kernels >= 2.6.32.
        - configure now prepends -O3, not appends it, so one can still
          override it.
        - ev.pod: greatly expanded the portability section, added a porting
          section, a description of watcher states and made lots of minor fixes.
        - disable poll backend on AIX, the poll header spams the namespace
          and it's not worth working around dead platforms (reported
          and analyzed by Aivars Kalvans).
        - improve header file compatibility of the standalone eventfd code
          in an obscure case.
        - implement EV_AVOID_STDIO option.
        - do not use sscanf to parse linux version number (smaller, faster,
          no sscanf dependency).
        - new EV_CHILD_ENABLE and EV_SIGNAL_ENABLE configurable settings.
        - update libev.m4 HAVE_CLOCK_SYSCALL test for newer glibcs.
        - add section on accept() problems to the manpage.
        - rename EV_TIMEOUT to EV_TIMER.
        - rename ev_loop_count/depth/verify/loop/unloop.
        - remove ev_default_destroy and ev_default_fork.
        - switch to two-digit minor version.
        - work around an apparent gentoo compiler bug.
        - define _DARWIN_UNLIMITED_SELECT. just so.
        - use enum instead of #define for most constants.
        - improve compatibility to older C++ compilers.
        - (experimental) ev_run/ev_default_loop/ev_break/ev_loop_new have now
          default arguments when compiled as C++.
        - enable automake dependency tracking.
        - ev_loop_new no longer leaks memory when loop creation failed.
        - new ev_cleanup watcher type.
2010-12-02 15:47:12 +00:00
wiz
6c43af4b29 Update to 1.0.3:
makedepend 1.0.3

    config: upgrade to util-macros 1.8 for additional man page support

    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
    The value of MAN_SUBST is the same for all X.Org packages.

    Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
    Enables use of platform appropriate version of sed.

    config: update AC_PREREQ statement to 2.60

    Unrelated to the previous patches, the new value simply reflects
    the reality that the minimum level for autoconf to configure
    all x.org modules is 2.60 dated June 2006.

    Convert testcase from bug 28045 into automake "make check" test

    Bug 28045 - makedepend fails on directory named like an include file
2010-12-02 14:46:39 +00:00
wiz
c58b2da2d2 Due to py-cairo 1.8.8<>1.8.10 binary incompatibility, bump dependency pattern
in buildlink3.mk and PKGREVISION of dependencies.
2010-12-02 13:36:56 +00:00
wiz
1cb2275c60 Update to 0.49:
0.49 Nov 25 2010
	- fixed issue with returning the episodes of TV series;
	- made movie kind low case to have back compatibility;
	- fixed retrieving year of movie;
	- fixed retrieving bio of the movie person;
	- fixed tests;

0.48 Oct 19 2010
	- fixed bug with retrieving of movie cover if the title contains special HTML symbols, ticket #62254;
	- added returning of default IMDB image in case if movie doesn't have a cover;
	- fixed issue with retrieving of movie's plot;
	- added a new method - storyline;
	- fixed bug with return of movie's kind;
	- fixed issue with not completed year period, i.e 2004-, ticket #62174;
		- added a few new tests.

0.47 Oct 12 2010
	- fixed module functionality according to new IMDB design.
2010-12-02 12:17:13 +00:00
wiz
67efa5ff47 Update to 6.14:
VERSION 6.14 (2010-10-20)

Date::Manip 5.xx fully integrated with 6.xx

Date::Manip 5.xx and 6.xx are both installed automatically, and the
correct one will be chosen.

Fixed a bug where recurrence handling was broken.  RT 62128

A lot of documentation was cleaned up to be easier to read, and better
organized.

VERSION 6.13 (2010-10-13)

New features

Added the input methods to Date::Manip::Date and Date::Manip::Delta.  Ed Avis.

The 'date +%z' command will also be used to determine the timezone.  Oliver Schulze

Bug fixes

Several changes to try to get rid of a memory leaks reported in RT
54937.  Huge thanks to BrowserUK on perlmonks for help.  Unfortunately, it
ended up being a bug in perl, and will only be resolved when that bug is
fixed. See the Date::Manip::Problems document for more information.

Reorganized Base/TZ to get rid of circular references.
Added end blocks to clean some global variables.
Got rid of switch/given structures.

Fixed a bug where an incomplete date with 'last' in it was causing an
error.  RT 60138

Fixed a bug where 'Sunday, 9th Jan 1972' wasn't parsed correctly.  RT 57832

Fixed a bug where Zones.pm was generated with the abbreviations in the wrong
order.  Amish Chana.

French month abbreviations now support periods.  Bernard Haerri

Added tests from RT 29655 to make sure that the problem never recurs.

Fixed documentation problem with the new_* methods in Date::Manip::Obj.  Options
must be passed in as \@opts rather than @opts.

Cleaned up some of the documentation.

VERSION 6.12 (2010-09-27)

IntCharSet config variable deprecated

With better support for international character sets, the old IntCharSet
config variable (which was a bandaid at best) is deprecated. Currently, the
functionality still exists, but it will be removed at some point.

New features

Added the Encoding config variable.

Now supports parsing the EXIF date format.  Rhesa Rozendaal

Bug fixes

Fixed Build.PL to not require perl 5.010 since the distribution as a whole
does not require that (and I want that fact to be in META.yml).

Fixed a bug where the Date::Manip::Date::set method was broken when setting
individual fields.  Helmut A. Bender

Fixed a bug where set didn't work in Date::Manip::Delta. Patch provided in
RT 59096.

Newest zoneinfo data (tzdata 2010m)

Converted all language files to UTF-8 and added rudimentary support for
character encodings. Some assistance by Stephen Ostermiller.

Fixed problem in Polish, Dutch.  Stephen Ostermiller

Extended support for 'nth' up to 53rd.  Paco Regodon

Added some corrections to German.  Dieter Lange

Clarified Date::Manip::Recur documentation based on RT 59132.
2010-12-02 12:15:49 +00:00
wiz
3481dfece9 Update to 1.7.2:
This is a scheduled bugfix release.

    * checknlink: return False if .hgtmp file preexists (issue2517)
    * commit: search both parents for missing copy revision (issue2484)
    * context: walk both parents for workingctx.ancestors()
    * convert/svn: fix changed files list upon directory replacements
    * hgwebdir: fix incorrect index generation for invalid paths (issue2023)
    * keyword: copy: when copied source is a symlink, follow it
    * mq: ignore subrepos (issue2499)
    * rebase: support --detach when null is common ancestor
    * subrepo: fix removing read-only svn files on Windows
    * subrepo: handle missing subrepo spec file as removed
    * subrepo: prune empty directories when removing svn subrepo
    * subrepo: use subprocess directly to avoid python 2.6 bug
    * util: do not crash on revisions with negative timestamp (issue2513)
    * util: do not recurse in makedirs if name is '' (issue2528)
    * win32mbcs: use extsetup() to wrap functions only once
    * wix: add support for x64 native MSI packages
2010-12-02 10:28:24 +00:00
drochner
2882e2092f fix MASTER_SITES 2010-11-30 11:48:39 +00:00
jmmv
95b9dd5240 Update monotone{,-el,-server} to 0.99.1:
Bugs fixed

- monotone crashed on x86_64 when a netsync action required
  the parsing of an URL. This has been fixed.
  (closes monotone issue 100)

- monotone's automation interface version was reported wrongly
  as 12.1, where it should have been 13.0.
2010-11-30 10:30:53 +00:00
agc
ac97f5a114 add and enable ldpc 2010-11-29 06:44:15 +00:00
agc
e8c822c06b Initial import of ldpc-20060208 into the Packages Collection.
This collection of programs and modules, written in C, is
	intended to support research and education concerning Low
	Density Parity Check (LDPC) codes.  (Note, however, that the
	copyright notice no longer restricts use to these purposes).
	These codes were invented by Robert Gallager in the early
	1960's, and re-invented and shown to have very good
	performance by David MacKay and myself in the mid-1990's.  The
	decoding algorithm for LDPC codes is related to that used for
	Turbo codes, and to probabilistic inference methods used in
	other fields.  Variations on LDPC and Turbo codes are
	currently the best practical codes known, in terms of their
	ability to transmit data at rates approaching channel capacity
	with very low error probability.
2010-11-29 06:43:15 +00:00
gdt
c3d073b846 avoid setuptools_darcs 2010-11-27 18:24:44 +00:00
obache
03254b33aa Update ruby-gnome2 packages to 0.90.5.
== Ruby-GNOME2 0.90.5: 2010-10-28

NOTE: 0.90.x releases are for 1.0.0 major release.

A build system improvements release.

=== Changes

==== All

  * Improvements
    * add --with-pkg-config-dir option to extconf.rb for *.pc.

==== Ruby/GLib2

  * Improvements
    * glib-mkenums.rb can work with Ruby 1.9 on LANG=C.
      [Kouhei Sutou]

  * Bug fixes
    * fix pkg-config gem dependency.
      [Kouhei Sutou]

== Ruby-GNOME2 0.90.4: 2010-10-24

NOTE: 0.90.x releases are for 1.0.0 major release.

A bug fix release of 0.90.3.

=== Changes

==== Ruby/GLib2

  * Bug fixes
    * add missing '*' for String type conversion. [#3093789]
      [tmtms, Kouhei Sutou]

==== Ruby/GIO2

  * Bug fixes
    * Remove needless cairo dependency.
      [OBATA Akio, Kouhei Sutou]

==== Ruby/Libglade2

  * Improvements
    * Don't install *.pc by default.
      [OBATA Akio, Kouhei Sutou]
2010-11-27 06:14:45 +00:00
adam
2f2ed5f9b2 Changes 1.45.0:
* Fixed a problem on kqueue-based platforms where a deadline_timer
  may never fire if the io_service is running in a background thread
* Fixed a const-correctness issue that prevented valid uses of
  has_service<> from compiling
* Fixed MinGW cross-compilation
* Removed dependency on deprecated Boost.System functions
* Ensured close()/closesocket() failures are correctly propagated
* Added a check for errors returned by
  InitializeCriticalSectionAndSpinCount
* Added support for hardware flow control on QNX
* Always use pselect() on HP-UX, if it is available.
* Ensured handler arguments are passed as lvalues
* Fixed Windows build when thread support is disabled
* Fixed a Windows-specific problem where deadline_timer objects with
  expiry times set more than 5 minutes in the future may never expire
* Fixed the resolver backend on BSD platforms so that an empty service
  name resolves to port number 0, as per the documentation
* Fixed read operations so that they do not accept buffer sequences of
  type const_buffers_1
* Redefined Protocol and id to avoid clashing with Objective-C++ keywords
* Fixed a vector reallocation performance issue that can occur when
  there are many active deadline_timer objects
* Fixed the kqueue backend so that it compiles on NetBSD
* Fixed the socket io_control() implementation on 64-bit Mac OS X and
  BSD platforms
* Fixed a Windows-specific problem where failures from accept() are
  incorrectly treated as successes
* Deprecated the separate compilation header <boost/asio/impl/src.cpp>
  in favour of <boost/asio/impl/src.hpp>
2010-11-26 21:07:00 +00:00
adam
6e1fc4a011 Changes 1.45.0:
* Fixed a problem on kqueue-based platforms where a deadline_timer
  may never fire if the io_service is running in a background thread
* Fixed a const-correctness issue that prevented valid uses of
  has_service<> from compiling
* Fixed MinGW cross-compilation
* Removed dependency on deprecated Boost.System functions
* Ensured close()/closesocket() failures are correctly propagated
* Added a check for errors returned by
  InitializeCriticalSectionAndSpinCount
* Added support for hardware flow control on QNX
* Always use pselect() on HP-UX, if it is available.
* Ensured handler arguments are passed as lvalues
* Fixed Windows build when thread support is disabled
* Fixed a Windows-specific problem where deadline_timer objects with
  expiry times set more than 5 minutes in the future may never expire
* Fixed the resolver backend on BSD platforms so that an empty service
  name resolves to port number 0, as per the documentation
* Fixed read operations so that they do not accept buffer sequences of
  type const_buffers_1
* Redefined Protocol and id to avoid clashing with Objective-C++ keywords
* Fixed a vector reallocation performance issue that can occur when
  there are many active deadline_timer objects
* Fixed the kqueue backend so that it compiles on NetBSD
* Fixed the socket io_control() implementation on 64-bit Mac OS X and
  BSD platforms
* Fixed a Windows-specific problem where failures from accept() are
  incorrectly treated as successes
* Deprecated the separate compilation header <boost/asio/impl/src.cpp>
  in favour of <boost/asio/impl/src.hpp>
2010-11-26 20:46:59 +00:00
taca
9a7da89234 Update subversion package to 1.6.15.
Also update subversion-base, ap2-subversion, p5-subversion, py-subversion
and ruby-subversion.


Version 1.6.15
(26 Nov 2010, from /branches/1.6.x)
http://svn.apache.org/repos/asf/subversion/tags/1.6.15

  User-visible changes:
   * improve svnsync handling of dir copies (r962377, -8)
   * hide unreadable dirs in mod_dav_svn's GET response (r996884)
   * make 'svnmucc propsetf' actually work (r1005446)
   * limit memory fragmentation in svnserve (r1022675)
   * fix 'svn export' regression from 1.6.13 (r1032970)
   * fix 'svn export' mistakenly uri-encodes paths (issue #3745)
   * fix server-side memory leaks triggered by 'blame -g' (r1032808)
   * prevent crash in mod_dav_svn when using SVNParentPath (r1033166)
   * allow 'log -g' to continue in the face of invalid mergeinfo (r1028108)
   * filter unreadable paths for 'svn ls' and 'svn co' (r997026, -070, -474)
   * fix abort in 'svn blame -g' (issue #3666)
   * fix file handle leak in ruby bindings (issue #3512)
   * remove check for 1.7-style working copies (issue #3729)

  Developer-visible changes:
   * improve some swig parameter mapping (r984565, r1035745)
   * improve test accuracy over dav (r991534, r877814)
   * create fails.log for test runs (r964349)
   * improve detection of 'svnversion' when buildling (r877219, et al)
   * don't violate API layering in dumpstream logic (issue #3733)
   * don't report working copy installs as switched (r1033921)


Version 1.6.14
(Not released, see changes for 1.6.15.)
2010-11-26 13:57:59 +00:00
hauke
cc22f47fe6 The distribution patch under work/nbitools-R6.3/config/md.patch breaks
with GNU patch, hurting !NetBSD pkgsrc platforms. Replace the patch with
patch-a{m,n,o}, and remove the pre-patch target.

The pkglint
ERROR: Makefile:24: Invalid tool syntax: "${IMAKE_TOOLS:Nimake}".
appears to be bogus, given an identical expression is used in
<mk/tools/imake.mk>.
2010-11-25 15:17:50 +00:00
drochner
af76fde3d4 update to 2.30.6
changes: translation updates
2010-11-24 20:14:05 +00:00
drochner
0a0b91d2b6 update to 2.26.0
This switches to the gnome-2.32 release branch.
2010-11-24 18:54:55 +00:00
drochner
b7cb97512f update to 0.13
too many changes to list here - see the ReleaseNotes
2010-11-24 17:58:22 +00:00
wiz
e23e57c3f5 Update to 3.0z:
External compression updates. 3.0z prints a new warning when it
decompresses externally-compressed inputs, since I've received a
few reports of users confused by checksum failures. Remember, it
is not possible for xdelta3 to decompress and recompress a file
and ensure it has the same checksum. 3.0z improves error handling
for externally-compressed inputs with "trailing garbage" and also
includes a new flag to force the external compression command. Pass
'-F' to xdelta3 and it will pass '-f' to the external compression
command.
2010-11-23 17:20:04 +00:00
wiz
c389348851 Update to 1.7.1:
This is an unscheduled bugfix release. 1.7 clients broke support
for pushing bookmarks with HTTP.

    * alias: fall back to normal error handling for ambigious commands (issue2475)
    * bundlerepository: get rid of temporary bundle files (issue2478)
    * bundlerepository: test self.tempfile field, not tempfile module
    * eol: exclude .hgtags file from eol translation (issue2493)
    * log: fix log -rREV FILE when REV isnt the last filerev (issue2492)
    * opener: check hardlink count reporting (issue1866)
    * pushkey: force HTTP POST on push and add tests (issue2489)
    * revlog: fix descendants() if nullrev is in revs
    * subrepo: test & fix svn subrepo removal
    * win32: remove try-catch block of GetModuleFileNameEx (issue2480)
2010-11-23 14:21:21 +00:00
wiz
bfcea0cd0c Fix typo in comment. 2010-11-23 13:56:31 +00:00
haad
c57e717095 Add small patch which fixes problem with p5-gettext described in
http://rt.cpan.org/Public/Bug/Display.html?id=35680
2010-11-23 13:53:53 +00:00
tron
9a470f7c22 Add fix for CVE-2010-2891 taken from Debian's GIT repository. 2010-11-23 11:30:50 +00:00
ahoka
3c1fedf7ca Update to version 0.48. 2010-11-22 09:32:24 +00:00
dholland
04084b3a74 Needs c99; fixes Solaris build, from yamt in PR 37617. 2010-11-21 03:48:23 +00:00
minskim
e812d5671a Make apel build with emacs24. 2010-11-20 22:44:39 +00:00
minskim
0286376aff Update lua-mode to 20100617.
Changes:
- Cleans up the code and attempts to improve long string colouring.
- Adds syntax colouring for variable declarations and long strings,
  and tidies up the source somewhat, while simplifying the
  distribution to a single ELisp file.
- Fixes minor bugs.
2010-11-20 21:02:40 +00:00
taca
874344cb5a Update ruby-rspec to 1.3.1.
=== Version 1.3.1 / 2010-10-09

* enhancements
  * Array =~ matcher works with subclasses of Array (Matthew Peychich & Pat Maddox)
  * config.suppress_deprecation_warnings!

* bug fixes
  * QuitBacktraceTweaker no longer eats all paths with 'lib'
    (Tim Harper - #912)
  * Fix delegation of stubbed values on superclass class-level methods.
    (Scott Taylor - #496 - #957)
  * Fix pending to work with ruby-1.9

* deprecations
  * share_as (will be removed from rspec-core-2.0)
  * simple_matcher (will be removed from rspec-core-2.0)
2010-11-20 11:55:22 +00:00
tsutsui
91a1677c37 Make this build on NetBSD/sh3el.
Tested on NetBSD/landisk 5.1.
2010-11-20 08:45:12 +00:00
obache
663a420ef2 Adjust dbus machine uuid path to dbus package.
Bump PKGREVISION.
2010-11-20 01:36:49 +00:00
tez
18d9c308eb make build honor LDFLAGS
fixes build on platforms not using builtin libiconv PR#44105
2010-11-19 19:21:37 +00:00
obache
fcd27f0ed8 No need gtkdoc-rebase workaround anymore. 2010-11-19 01:12:23 +00:00
obache
1845cb43ba Bump ABI_DEPNDS of gtkhtml314 and recursive bump from libgtkhtml shlib name changed. 2010-11-18 23:59:15 +00:00
obache
d0eb87809f Fixes paths for PKGCONFIG_OVERRIDE files. 2010-11-18 11:35:02 +00:00
obache
217ee6e46a Update devhelp to 2.32.0.
This switches to the gnome-2.32 release branch.
2010-11-18 02:05:52 +00:00
dholland
21a6ea1077 One of the graphviz libraries changed major number in the update, so
bump PKGREVISION of its bl3 users.
2010-11-17 16:47:37 +00:00
drochner
21d9ec5568 don't call gio-querymodules on installation of gio-fam, the framework
will take care of this
2010-11-17 14:36:45 +00:00
drochner
b1269d0081 deal with giomodule.cache, should fix PRs pkg/43578 and pkg/44104
by Robert Elz
2010-11-17 14:35:32 +00:00
drochner
8651fc0fe4 add support for rebuilding giomodule.cache on INSTALL/DEINSTALL,
addresses PRs pkg/43578 and pkg/44104 by Robert Elz
2010-11-17 14:09:55 +00:00