summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2013-05-09Add missing includes.joerg5-4/+44
2013-05-09Support file for libtool-fortran.joerg1-0/+4
2013-05-09Split Fortran support from devel/libtool-base into a separate packagejoerg5-3/+107
devel/libtool-fortran. If USE_LIBTOOL is present and Fortran is in USE_LANGUAGES, include the new package.
2013-05-09Give INT64_C and friends a chance of being defined.joerg3-1/+44
2013-05-09libc++ doesn't provide libstdc++'s ext/slist.h, so don't use it.joerg3-2/+33
2013-05-09Fake std::tr1 namespace for tuple and compile with C++11 for clang.joerg3-2/+29
2013-05-09Massive revbump after updating graphics/ilmbase, graphics/openexr, textproc/icu.adam48-89/+96
2013-05-08Update ruby-gnome2 to 2.0.0.obache1-3/+8
GObject Introspection based bindings on Windows support release! === Changes ==== NEWS * Fixes * Fixed a typo. [Reported by Masafumi Yokoyama] * FIxed a typo. [Reported by Toyo Abe] ==== Ruby/GLib2 * Improvements * Moved lib/gnome2-*.rb files to lib/gnome2/ directory. * Supported GLib 2.34. [Reported by OBATA Akio] ==== Ruby/GdkPixbuf2 * Fixes * [windows] Fixed PNG can't be handled problem. [ruby-gnoem2-devel-ja] [Reported by Masafumi Yokoyama] ==== Ruby/GDK3 * Improvements * [windows] Removed needless Greybird theme. [ruby-gnome2-devel-en] [Reported by Regis d'Aubarede] * Added Gdk::Window#create_cairo_context [ruby-gnome2-devel-en] [Reported by Detlef Reichl] ==== Ruby/GTK3 * Improvements * Updated samples. [GitHub #140][GitHub #141][GitHub #144] [Patch by Simon Arnaud] [GitHub #142][GitHub #143][GitHub #145][GitHub #146][GitHub #148] [Patch by Detlef Reichl] ==== Ruby/GObjectIntrospection * Improvements * [windows] Supported! ==== Ruby/GStreamer * Improvements * Supported GStreamer 1.0! * Migrated to GObject Introspection bindings! * Dropped GStreamer 0.10 support. ==== Ruby/Clutter * Improvements * [windows] Supported! ==== Ruby/ClutterGTK * Improvements * [windows] Supported!
2013-05-08Update to 2.0802wen2-6/+6
Upstream changes: 2.0802 Tue, May 07, 2013 * fix incompatibilities with Test::Builder 1.005+ (Karen Etheridge) * Moose::Manual::Contributing updated to reflect the change of primary repository from git.moose.perl.org to github.com
2013-05-08Move the sps, vorbis and tremor PLIST_VARS and settings to mozilla-common.mksbd2-15/+15
2013-05-06Update to 1.002000wen2-6/+6
Upstream changes: 1.002000 - 2013-05-04 - add 'moosify' attribute key to provide code for inflating to Moose - fix warnings about unknown attribute parameters on metaclass inflation - don't pass 'handles' down when doing 'has +' to avoid unDWIMmy explosions - throw a useful exception when typemap doesn't return a value - avoid localising @_ when not required for Sub::Quote - successfully inflate a metaclass for attributeless classes (RT#86415) - fix false default values used with non-lazy accessors - stop built values that fail isa checks still getting stored in the object - stop lazy+weak_ref accessors re-building their value on every call - make lazy+weak_ref accessors return undef if built value isn't already stored elsewhere (Moose compatibility) - stop isa checks being called on every access for lazy attributes - bump Devel::GlobalDestruction dependency to fix warning on cleanup when run under -c (RT#78617) - document Moose type constraint creation for roles and classes (actually fixed in 1.001000)
2013-05-06Update to 1.48wen2-7/+6
Upstream changes: 1.48 - 2013-05-06T04:47:00Z * Fixed test failure with versions of Pod::Simple lower than 3.24. Thanks to Martin Holste and Tatsuhiko Miyagawa for the reports. 1.47 - 2013-05-05T03:14:25Z * Fixed failing test on Pod::Simple 3.27 and higher. 1.46 - 2013-02-16T19:46:17Z * Fixed a crash when `all_pod_files_ok()` finds no files to test. Thanks to H.Merijn Brand. * Switched from custom file searching code to File::Find. Suggested by H.Merijn Brand. * Fixed failing test on Pod::Simple 3.24.
2013-05-06Fix missing includes. Prefer C++11 over TR1 when using libc++ or C++11.joerg22-5/+551
2013-05-06Regen.joerg1-3/+3
2013-05-06When using libc++ or C++11, use the standard namespace.joerg3-1/+61
2013-05-06Add missing include. Use C++11 STL for libc++ and when in C++11 mode.joerg3-1/+64
2013-05-06Needs p5-Module-Implementation. Bump revision.joerg1-1/+3
2013-05-05Use PREFIX instead of LOCALBASE. Commented patches/patch-aa and regeneratedrodent3-5/+7
distinfo. patches/patch-ab still needs commenting. Resolves SUBST issue cited in PR pkg/47387.
2013-05-05Fix PLIST for python2.6.wiz1-3/+3
2013-05-05Update to 1.15. From the changelog:schmonz4-11/+12
* Added lib/repo, for support for repo (as used in Android) Closes: #705652 Thanks, Peter Eisentraut. * Better cvs status. Closes: #694037 Thanks, Paul Wise
2013-05-05update to 1.36.0, mostly from Patrick Welchedrochner7-117/+99
This switches to the new stable release branch.
2013-05-04Update to 0.19:wiz3-10/+14
0.19 (2013-04-19) ================= Features added -------------- * New directives ``c_string_type`` and ``c_string_encoding`` to more easily and automatically convert between C strings and the different Python string types. * The extension type flag ``Py_TPFLAGS_HAVE_VERSION_TAG`` is enabled by default on extension types and can be disabled using the ``type_version_tag`` compiler directive. * EXPERIMENTAL support for simple Cython code level line tracing. Enabled by the "linetrace" compiler directive. * Cython implemented functions make their argument and return type annotations available through the ``__annotations__`` attribute (PEP 3107). * Access to non-cdef module globals and Python object attributes is faster. * ``Py_UNICODE*`` coerces from and to Python unicode strings. This is helpful when talking to Windows APIs, which use compatible wchar_t arrays for strings. Note that the ``Py_UNICODE`` type is otherwise deprecated as of CPython 3.3. * ``isinstance(obj, basestring)`` is optimised. In Python 3 it only tests for instances of ``str`` (i.e. Py2 ``unicode``). * The ``basestring`` builtin is mapped to ``str`` (i.e. Py2 ``unicode``) when compiling the generated C code under Python 3. * Closures use freelists, which can speed up their creation quite substantially. This is also visible for short running generator expressions, for example. * A new class decorator ``@cython.freelist(N)`` creates a static freelist of N instances for an extension type, thus avoiding the costly allocation step if possible. This can speed up object instantiation by 20-30% in suitable scenarios. Note that freelists are currently only supported for base types, not for types that inherit from others. * Fast extension type instantiation using the ``Type.__new__(Type)`` idiom has gained support for passing arguments. It is also a bit faster for types defined inside of the module. * The Python2-only dict methods ``.iter*()`` and ``.view*()`` (requires Python 2.7) are automatically mapped to the equivalent keys/values/items methods in Python 3 for typed dictionaries. * 2-value slicing of unknown objects passes the correct slice when the ``getitem`` protocol is used instead of the ``getslice`` protocol (especially in Python 3), i.e. ``None`` values for missing bounds instead of ``[0,maxsize]``. It is also a bit faster in some cases, e.g. for constant bounds. This fixes trac ticket 636. * Slicing unicode strings, lists and tuples is faster. * list.append() is faster on average. * ``raise Exception() from None`` suppresses the exception context in Py3.3. * Py3 compatible ``exec(tuple)`` syntax is supported in Py2 code. * Keyword arguments are supported for cdef functions. * External C++ classes can be declared nogil. Patch by John Stumpo. This fixes trac ticket 805. Bugs fixed ---------- * Cascaded assignments of None values to extension type variables failed with a ``TypeError`` at runtime. * The ``__defaults__`` attribute was not writable for Cython implemented functions. * Default values of keyword-only arguments showed up in ``__defaults__`` instead of ``__kwdefaults__`` (which was not implemented). Both are available for Cython implemented functions now, as specified in Python 3.x. * ``yield`` works inside of ``with gil`` sections. It previously lead to a crash. This fixes trac ticket 803. * Static methods without explicitly named positional arguments (e.g. having only ``*args``) crashed when being called. This fixes trac ticket 804. * ``dir()`` without arguments previously returned an unsorted list, which now gets sorted as expected. * ``dict.items()``, ``dict.keys()`` and ``dict.values()`` no longer return lists in Python 3. * Exiting from an ``except-as`` clause now deletes the exception in Python 3 mode. * The declarations of ``frexp()`` and ``ldexp()`` in ``math.pxd`` were incorrect.
2013-05-04Set LICENSE to gnu-gpl-v2 and fix modern solaris builds with c99richard1-1/+3
2013-05-04Add a bunch of missing includes hidden by libstdc++ namespace pollution.joerg4-9/+24
2013-05-04Request C99 format strings in C++ mode.joerg1-1/+3
2013-05-04Do not undef/define __LITTLE_ENDIAN__, the compiler defined macro has ajoerg2-1/+18
value.
2013-05-04Update p5-Hash-MultiValue to 0.13.hiramatsu2-7/+6
Change from previous: --------------------- - repackage with Module::Install > 1.04
2013-05-04Update p5-Test-SharedFork to 0.21.hiramatsu2-7/+6
Change from previous: --------------------- * t/10_subtest.t: added --norc option for more portable testing.
2013-05-04Update p5-Class-Inspector to 1.28.hiramatsu2-7/+6
Change from previous: --------------------- 1.28 Fri 19 Oct 2012 - No functional changes - Updating to Module::Install::DSL 1.06
2013-05-03Update to 2.6.0:wiz3-7/+25
This is a regularly scheduled feature release. addremove: improve performance amend: support amending merge changesets (issue3778) ancestor: a new algorithm that is faster for nodes near tip annotate: increase refcount of each revision correctly (issue3841) applyupdates: assign variable before we try to use it (issue3855) archive: raise error.Abort if the file pattern matches no files bash_completion: allow remove to complete normal files blackbox: new extension bookmarks: don't allow integers as bookmark/branch/tag names bookmarks: allow (re-)activating a bookmark on the current changeset bookmarks: allow moving a bookmark forward to a descendant bookmarks: moving the active bookmark deactivates it bookmarks: fix bug that activated a bookmark even with -r passed bookmarks: resolve divergent bookmark when moving across a branch bookmarks: resolve divergent bookmarks when moving active bookmark forward commit: allow closing "non-head" changesets commit: show active bookmark in commit editor helper text config: discard "%unset" values defined in the other files read in previously convert/git: catch errors from modern git-ls-remote (issue3428) convert: add closesort algorithm to mercurial sources dates: support 'today' and 'yesterday' in parsedate (issue3764) destroyed: invalidate phraserevs cache in all case (issue3858) diff: fix binary file removals in git mode dirstate: performance improvements dispatch: exit with status 1 for an InterventionRequired exception (BC) dispatch: print 'abort:' when a pre-command hook fails (BC) export: clobber files with -o (BC) (issue3652) export: export working directory parent by default export: show 'Date' header in a format that also is readable for humans extensions: obsolete and remove interhg extension filesets: add eol predicate grep: use re2 if possible hgk: add support for phases hgk: don't use fixed format for dates hgk: update backgroud colour when Ttk is available hgweb: generate HTML documentation hgweb: teach archive how to download a specific directory or file histedit: allow "-" as a command file histedit: handle multiple spaces between action and hash (issue3893) histedit: make "hg histedit" sensitive to branch in URL histedit: properly handle --continue on empty fold histedit: support editing of the first commit (issue3767) httppeer: avoid large dumps when we don't see an hgweb repo icasefs: rewrite case-folding collision detection (issue3452) import: don't rollback on failed import --exact (issue3616) largefiles: don't cache largefiles for pulled heads by default largefiles: improve reuse of HTTP connections largefiles: introduce lfpull command for pulling missing largefiles largefiles: introduce pull --lfrev option largefiles: introduce pulled() revset expression for use in --lfrev largefiles: quiet (and document) undefined name errors (issue3886) largefiles: stat all largefiles in one batch before downloading largefiles: use repo.wwrite for writing standins (issue3909) log: fix behavior with empty repositories (issue3497) merge: apply non-interactive working dir updates in parallel mergetools: avoid losing the merged version with meld mergetools: vimdiff issues a warning explaining how to abort mq: comply with filtering when injecting fake tags (issue3812) mq: do not inherit settings form base repo in mqrepo (Fixes issue2358) outgoing: fix possible filtering crash in outgoing (issue3814) pager: catch ctrl-c on exit (issue3834) date: understand "now" as a shortcut for the current time parsers: a C implementation of the new ancestors algorithm pull: list bookmarks before pulling changesets (issue3873) push: make locking of source optional (issue3684) rebase: check no-op before checking phase (issue3891) rebase: fix --collapse when a file was added then removed record: abort on malformed patches instead of crashing revset: change ancestor to accept 0 or more arguments (issue3750) revset: don't abort when regex to tag() matches nothing (issue3850) sadclown: another test failure eluded bos scheme: don't crash on invalid URLs scmutil: rewrite dirs in C, use if available setup: make error message for missing Python headers more helpful smtp: use 465 as default port for SMTPS smtp: verify the certificate of the SMTP server for STARTTLS/SMTPS sshpeer: store subprocess so it cleans up correctly sslutil: abort if peer certificate is not verified for secure use subrepo: clone of git sub-repository creates incorrect git branch (issue3870) subrepo: do not push mercurial subrepos whose store is clean subrepo: fix exception on revert when "all" option is omitted summary: make "incoming" information sensitive to branch in URL (issue3830) summary: make "outgoing" information sensitive to branch in URL (issue3829) summary: show active bookmark even if not at current changeset tags: update tag type only if tag node is updated (issue3911) templatekw: add default styles for hybrid types (issue3887) templater: add get() function to access dict element (e.g. extra) unionrepo: read-only operations on a union of two localrepos win32: use explicit path to "python.exe" only if it exists
2013-05-03update to 0.8.6drochner2-6/+6
change: Fix HashSet.foreach
2013-05-03revert last change, it is useless checking dcgettext().obache1-8/+5
2013-05-03PR pkg/47792mef3-25/+3
Let me revert to as of 30mins before. /usr/local may be left as it is for the case to compile stuff outside of pkgsrc with this cmake.
2013-05-03PR pkg/47792mef3-3/+25
Correct install PREFIX found on Modules/CMakeGenericSystem.cmake. The example of problem was found on wip/trustedQSL (1.14)
2013-05-02Change builtin features good enough to replace GNU gettext from ngettext()obache1-5/+8
to dcgettext(), because BUILDLINK_API_DEPENDS.gettext-lib is now >=0.18.
2013-05-02Update to 0.24wen2-8/+7
Update DEPENDS Upstream changes: [0.24] - Properly skip debugger test when optional deps not available - Make sure pure-perl tests pass correctly on space-containing paths (RT#77528) - Remove all the pure-perl fallback code and depend on PP-capable B::H::EOS 0.12
2013-05-02Update to 0.12wen2-8/+7
Update DEPENDS Upstream changes: 0.12 Tue, 4 Dec 2012 20:13:00 +0000 * Complete pure-perl implementation in addition to the one based on Variable::Magic. You can specify the implementation explicitly by use-ing B::Hooks::EndOfScope::PP or B::Hooks::EndOfScope::XS, or by setting $ENV{B_HOOKS_ENDOFSCOPE_IMPLEMENTATION} to either 'XS' or 'PP' * Switch from using Sub::Exporter to the more conservative Sub::Exporter::Progressive
2013-05-02Update to 0.10010wen2-6/+6
Upstream changes: 0.10010 2013-04-24 02:58 (UTC) - Fix bug with identically-named 'simple' accessors in different classes set to access *differently named fields* getting their field access mixed up - Fix subtle pessimization when having identically-named accessors in different classes leads to 'simple' implementations not being replaced by Class::XSAccessor where appropriate
2013-05-02Update to 3.27wen2-7/+6
Upstream changes: 3.27 2013-04-30 - Dramatically reduce memory usage (Nick Clark, RT #84939) - Store test_num (in Grammar.pm) as a number instead of a string. Reduces memory usage (Nick Clark, RT #84939) - PERL5LIB is always propogated to a test's @INC, even with taint more (Schwern, RT #84377) 3.26 2013-01-16 - Renamed env.opts.t to env_opts.t (for VMS) - Skipped some TAP::Formatter::HTML tests due to this bug: #82738
2013-05-02Update to 2.79wen2-7/+6
Upstream changes: 2.79 Tue Apr 30 21:22:05 2013 - allow import arguments to be passed as a hashref - add t/import_hashref.t - doc tweaks 2.78 Tue Apr 30 18:53:54 2013 - fix RT #80400 (thanks, Tokuhiro Matsuno) - added t/rt_80400.t 2.77 Thu Dec 13 19:59:48 2012 - doc tweaks - add multiple-arg autoref tests 2.76 Wed Nov 21 14:35:33 2012 - fix breaking tests in perl >= 5.17.5: update error message pattern (thanks, rjbs) - update ppport.h from 3.19 to 3.20
2013-04-30Fix various case of missing includes due to libstdc++'s namespacejoerg3-1/+25
pollution.
2013-04-30Add missing include. Avoid incompatible forward declaration, justjoerg3-1/+32
include the correct header.
2013-04-30Avoid conflicts with std::hash and std::ref in C++11.joerg5-10/+233
2013-04-30Try harder to give the custom string class an operand that itjoerg2-1/+15
understands.
2013-04-29Add a number of includes hidden by libstdc++'s name space pollution.joerg4-2/+28
2013-04-29Be explicit that the local version of bitset is wanted, not the STLjoerg2-1/+24
version in std for C++11 libraries.
2013-04-29nullptr is a reserved name in C++11, so use a different identifier.joerg2-1/+20
2013-04-29Update p5-IO-Compress to 2.060.hiramatsu2-7/+6
Changes from previous: ---------------------- 2.060 7 January 2013 * Updated POD RT# 82138: Example code not clear - gunzip() takes filenames! * IO::Compress::Base Remove the flush call when opening a filehandle. 2.059 10 December 2012 * IO::Compress::Base Added "Encode" option. Fixes the encoding half of RT# 42656. Decode is still TODO 2.058 12 November 2012 * RT# 81119: Latest IO::Compress 2.057 fails tests on 5.8.x 2.057 10 November 2012 * IO::Compress::Zip Allow member name & Zip Comment to be "0" * IO::Compress::Base::Common Remove "-r" test - the file open will catch this. RT# 80855: IO::Compress::Base::Common returns that it cannot read readable files in NFS * RT# 79820: Install to 'site' instead of 'perl' when perl version is 5.11+ * General Performance improvements.
2013-04-29Update p5-Compress-Raw-Bzip2 to 2.060.hiramatsu2-7/+6
Changes from previous: ---------------------- 2.060 7 January 2013 * No Changes 2.059 24 November 2012 * Copy-on-write support [#81352] 2.058 12 November 2012 * No Changes 2.057 10 November 2012 * Compress::Raw::Bzip2 needs to use PERL_NO_GET_CONTEXT [#80318] * Install to 'site' instead of 'perl' when perl version is 5.11+ [#79811] * update to ppport.h that includes SvPV_nomg_nolen [#78080]
2013-04-29Added devel/netcdf-fortran version 4.2adam1-1/+2