Commit graph

22570 commits

Author SHA1 Message Date
jklos
1cab259091 Fixes glib2 on netbsd-5. From OBATA Akio. Tested on macppc and amd64. 2014-09-14 21:36:19 +00:00
wiz
07724c33e9 Comment out c++ dep again, only needed for testing. 2014-09-14 17:45:20 +00:00
wiz
cbabb4a3fb Update to 0.21:
0.21 (2014-09-10)
=================

Features added
--------------

* C (cdef) functions allow inner Python functions.

* Enums can now be declared as cpdef to export their values to
  the module's Python namespace.  Cpdef enums in pxd files export
  their values to their own module, iff it exists.

* Allow @staticmethod decorator to declare static cdef methods.
  This is especially useful for declaring "constructors" for
  cdef classes that can take non-Python arguments.

* Taking a ``char*`` from a temporary Python string object is safer
  in more cases and can be done inside of non-trivial expressions,
  including arguments of a function call.  A compile time error
  is raised only when such a pointer is assigned to a variable and
  would thus exceed the lifetime of the string itself.

* Generators have new properties ``__name__`` and ``__qualname__``
  that provide the plain/qualified name of the generator function
  (following CPython 3.5).  See http://bugs.python.org/issue21205

* The ``inline`` function modifier is available as a decorator
  ``@cython.inline`` in pure mode.

* When cygdb is run in a virtualenv, it enables the same virtualenv
  inside of the debugger. Patch by Marc Abramowitz.

* PEP 465: dedicated infix operator for matrix multiplication (A @ B).

* HTML output of annotated code uses Pygments for code highlighting
  and generally received a major overhaul by Matthias Bussonier.

* IPython magic support is now available directly from Cython with
  the command "%load_ext cython".  Cython code can directly be
  executed in a cell when marked with "%%cython".  Code analysis
  is available with "%%cython -a".  Patch by Martín Gaitán.

* Simple support for declaring Python object types in Python signature
  annotations.  Currently requires setting the compiler directive
  ``annotation_typing=True``.

* New directive ``use_switch`` (defaults to True) to optionally disable
  the optimization of chained if statement to C switch statements.

* Defines dynamic_cast et al. in ``libcpp.cast`` and C++ heap data
  structure operations in ``libcpp.algorithm``.

* Shipped header declarations in ``posix.*`` were extended to cover
  more of the POSIX API.  Patches by Lars Buitinck and Mark Peek.

Optimizations
-------------

* Simple calls to C implemented Python functions/methods are faster.
  This also speeds up many operations on builtins that Cython cannot
  otherwise optimise.

* The "and"/"or" operators try to avoid unnecessary coercions of their
  arguments.  They now evaluate the truth value of each argument
  independently and only coerce the final result of the whole expression
  to the target type (e.g. the type on the left side of an assignment).
  This also avoids reference counting overhead for Python values during
  evaluation and generally improves the code flow in the generated C code.

* The Python expression "2 ** N" is optimised into bit shifting.
  See http://bugs.python.org/issue21420

* Cascaded assignments (a = b = ...) try to minimise the number of
  type coercions.

* Calls to ``slice()`` are translated to a straight C-API call.

Bugs fixed
----------

* Crash when assigning memory views from ternary conditional expressions.

* Nested C++ templates could lead to unseparated ">>" characters being
  generated into the C++ declarations, which older C++ compilers could
  not parse.

* Sending SIGINT (Ctrl-C) during parallel cythonize() builds could
  hang the child processes.

* No longer ignore local setup.cfg files for distutils in pyximport.
  Patch by Martin Teichmann.

* Taking a ``char*`` from an indexed Python string generated unsafe
  reference counting code.

* Set literals now create all of their items before trying to add them
  to the set, following the behaviour in CPython.  This makes a
  difference in the rare case that the item creation has side effects
  and some items are not hashable (or if hashing them has side effects,
  too).

* Cython no longer generates the cross product of C functions for code
  that uses memory views of fused types in function signatures (e.g.
  ``cdef func(floating[:] a, floating[:] b)``).  This is considered the
  expected behaviour by most users and was previously inconsistent with
  other structured types like C arrays.  Code that really wants all type
  combinations can create the same fused memoryview type under different
  names and use those in the signature to make it clear which types are
  independent.

* Names that were unknown at compile time were looked up as builtins at
  runtime but not as global module names.  Trying both lookups helps with
  globals() manipulation.

* Fixed stl container conversion for typedef element types.

* ``obj.pop(x)`` truncated large C integer values of x to ``Py_ssize_t``.

* ``__init__.pyc`` is recognised as marking a package directory
  (in addition to .py, .pyx and .pxd).

* Syntax highlighting in ``cython-mode.el`` for Emacs no longer
  incorrectly highlights keywords found as part of longer names.

* Correctly handle ``from cython.submodule cimport name``.

* Fix infinite recursion when using super with cpdef methods.

* No-args ``dir()`` was not guaranteed to return a sorted list.

Other changes
-------------

* The header line in the generated C files no longer contains the
  timestamp but only the Cython version that wrote it.  This was
  changed to make builds more reproducible.

* Removed support for CPython 2.4, 2.5 and 3.1.

* The licensing implications on the generated code were clarified
  to avoid legal constraints for users.
2014-09-14 17:44:49 +00:00
wiz
fce28bcbed Update to 3.3:
Version 3.3
-----------

(bugfix release, released on September 8th 2014)

- Fixed an issue with error reporting on Python 3 for invalid forwarding
  of commands.
2014-09-14 16:59:29 +00:00
wiz
0f4fa7d6e6 Update to 0.113:
0.113     2004-08-22
        - fix a compile error (!!) in RegexpOnly
        - fix some documentation typos (thanks, ZOFFIX)
        - add license to META file
2014-09-14 13:40:19 +00:00
wiz
593d771fd2 Update to 0.4210:
0.4210 - Mon Sep  1 13:30:29 CEST 2014

  [BUG FIXES]

  - Fixup CPAN::Meta dependency

  - Handle old releases of CPAN::Meta more gracefully.

0.4209 - Mon Sep  1 12:24:40 CEST 2014

  [BUG FIXES]

  - Stop calling UNIVERSAL::isa as a function

  [ENHANCEMENTS]

  - Use CPAN::Meta::Merge for meta_merge

  - Convert with CPAN::Meta::Convert in meta_add

  - Add configure requirements

0.4208 - Mon Aug 18 21:44:38 CEST 2014

  [BUG FIXES]

  - Removed missed references to Module::Build::Version

0.4207 - Sat Aug 16 12:56:59 CEST 2014

  [BUG FIXES]

  - Fix type installdir -> installdirs [Leon Timmermans, Vitaliy Tokarev]

  [DEPRECATIONS]

  - Module::Build::YAML has been removed

  - Module::Build::ModuleInfo has been removed

  - Module::Build::Version has been removed

  - Get rid of "use vars"

  - Added use warnings to all modules

0.4206 - Sat Jul 12 14:03:01 CEST 2014

  [BUG FIXES]

  - Formally declare 5.8 dependency [Karen Etheridge]

  - Fix MBTest to work with new and old versions of Test::Builder [Chad Granum]

  [ENHANCEMENTS]

  - Enable release and author tests during disttest [Leon Timmermans, Alberto Simões]
2014-09-14 13:39:28 +00:00
wiz
136f70bfef Update to 2.142060:
2.142060  2014-07-25 13:30:06-04:00 America/New_York

  [ADDED]

  - CPAN::Meta::Merge is a new class for merging two possibly overlapping
    instances of metadata. It will accept both CPAN::Meta objects and
    (possibly incomplete) hashrefs of metadata.
2014-09-14 13:36:29 +00:00
cheusov
2a85aea6a5 Update to version 0.28.0
LIBDEPS, STATICLIBS, DPLDADD, DPLIBDIRS and DPINCDIRS variables were
  introduced. With their help one can specify library dependencies in
  the top-level Makefile. Users are also able to build some libraries
  statically even if they were designed to be a dynamic libraries.

  New variable FOREIGN was introduced. With its help one can embed
  autotools-based projects (as a subproject) to mk-configure-based once.
  See mkc_imp.foreign_autotools.mk section in man page for details.

  Support for Darwin was fixed. Nowadays it uses clang.

  New features were introduced:
    - "progname" for setprogname(3) and getprogname(3) BSDisms;
    - "err" for err(3), errx(3), verr(3) and verrx(3) BSDisms;
    - "warn" for warn(3), warnx(3), vwarn(3) and vwarnx(3) BSD-isms;
    - "fgetln" for fgetln(3) BSD-ism;

  Support for Haiku was fixed. It does not support hard links
  and uses LIBRARY_PATH.

  LDCOMPILER variable was removed.
  Compiler is always used for linking.

  New builtin "prog_gmake" was introduced which search GNU make.

  INTERNALLIBS variable was introduced. With its help one can
  implement libraries common for several subprojects.

  COMPATLIB variable was introduced. It is ideal solution for
  portability code.

  MKC_FEATURES: all objects are removed by target "clean"

  Target "errorcheck" was added to ALLTARGETS. Therefore it also have
  pre_, do_, post_ counterparts.

  VARDIR, SHAREDSTATEDIR, SUBPRJSRCTOP, CPPFLAGS0 variables were introduced.

  MKC_SOURCE_FUNCSLIBS: .o{s,p} objects are also removed by target "clean"

  Hardcoded /etc/mk.conf is not included anymore. New mk-configure
  specific configuration file @sysconfdir@/mk-c.conf was introduced.

  Additions to doc/NOTES

  .depends is added to DISTCLEANDIRS only for non-empty SRCS

  mkc_imp.intexts.mk: new error type for odd tokens in INTEXTS_REPLS

  MKDEP_CC is shquoted when passed to mkdep(1) as CC.

  Code clean-ups, more regression tests.

  This release was sucessfully tested on the following platforms.
  NetBSD-6.1/x86_64/gcc-4.5, FreeBSD-9.0/i386/gcc-4.2,
  OpenBSD-4.9/i386/gcc-4.2, DragonFlyBSD-3.4/x86_64/gcc-4.7,
  Darwin-14.0/x86_64/clang-600.0.53, SunOS-5.11/i86pc/gcc-4.7,
  SunOS-5.10/sparc/{gcc-4.8,SunStudio-12.3}, diverse
  Linux-es/{gcc,icc-12.1,SunStudio-12.3}, Haiku/gcc-4.8.
2014-09-14 13:11:39 +00:00
szptvlfn
75be48599d Bump PKGREVISION for hs-text-1.2.0.0 2014-09-13 22:23:27 +00:00
szptvlfn
e4be7ed61c Update to 0.3.3.3
Changes from https://github.com/meiersi/blaze-builder
0.3.3.3
 - Bump text upper version bounds
2014-09-13 22:04:01 +00:00
szptvlfn
20d05f5720 Update to 1.2.0.0
changelog:
1.2.0.0

* Fixed an integer overflow in the replace function
  (https://github.com/bos/text/issues/81)

* Fixed a hang in lazy decodeUtf8With
  (https://github.com/bos/text/issues/87)

* Reduced codegen bloat caused by use of empty and single-character
  literals

* Added an instance of IsList for GHC 7.8 and above
2014-09-13 22:03:04 +00:00
wen
48f502ffb2 Update to 1.000005
Upstream changes:
1.000005 - 2014-08-16
  - comment blessed use so people who don't know perl stop trying to break it
  - add link to lightning talk given at YAPC::NA 2013

1.000004 - 2013-09-18
  - fixed slightly mangled metadata from last release

1.000003 - 2013-03-25
  - fix NAME in Makefile.PL (RT#84212)
2014-09-13 16:01:14 +00:00
richard
efac41c732 SunOS getopt doesn't define/use optreset 2014-09-13 11:03:17 +00:00
obache
fca0ac2486 Update gmtk to 1.0.9.
Development
1.0.9
    Don't force a minimum size on the tracker
1.0.9b
    Only do the media player allocation event if no video is present
    Fix parameter warning to gtk_widget_get_visible
    Add backend variable to gmtk.pc
    Run autoreconf
    Updated Hungarian translation
    Updated Polish translation
    Updated Portuguese translation
    Add key bindings for h tv_step_channel down and k tv_step_channel up
1.0.9a
    Only emit size_allocation when the widget is visible
    Fix bug where title was getting reset when genre was found
    Fix gnome-mplayer Issue 683 more granular
	gmtk_media_player - fix OSD messages so they only displayed for level 1 and higher
    gmtk_media_player - exclude input.conf from file not found message
    Use case inspecific parsing of metadata attributes fixes issue #13
2014-09-13 02:40:38 +00:00
szptvlfn
7cd5e8faec + hs-resourcet 2014-09-12 21:12:17 +00:00
szptvlfn
04d5883fd8 Import resourcet-1.1.2.3 as devel/hs-resourcet,
packaged for wip.

A full tutorial is available at
https://www.fpcomplete.com/user/snoyberg/library-documentation/resourcet.

This package was originally included with the conduit package, but has
existed as a separate package for quite a while. It is fully usable outside
of conduit.
2014-09-12 21:10:09 +00:00
wen
8159383eff Add p5-Path-IsDev 2014-09-12 12:54:10 +00:00
wen
f5575d2843 Import Path-IsDev-1.001002 as devel/p5-Path-IsDev.
This module is more or less a bunch of heuristics for determining if a
given path is a development tree root of some kind.

This has many useful applications, notably ones that require
behaviours for "installed" modules to be different to those that are
still "in development".
2014-09-12 12:52:12 +00:00
wen
89849ab433 Update to 1.39
Add missing BUILD_DEPENDS
Add a patch to fix test

Upstream changes:
1.39 - Thu Sep 11 05:46:58 2014
	* Allow tests to run in parallel (RT #89908 and RT #91862)

1.38 - Thu Sep 11 04:03:42 2014
	* Add xmikew's mtime test fucntions. GitHub issue #8

1.37 - Thu Sep 11 03:46:00 2014
	* Uncomment accidently commented symlink_target_is_absolute_ok
2014-09-12 08:49:52 +00:00
wen
3159685074 Add p5-Test-utf8 2014-09-12 08:11:11 +00:00
wen
3b0f91c8d4 Import Test-utf8-1.01 as devel/p5-Test-utf8.
This module is a collection of tests useful for dealing with
utf8 strings in Perl.
2014-09-12 08:09:23 +00:00
szptvlfn
fffac22eb0 + hs-hint 2014-09-11 21:59:06 +00:00
szptvlfn
290ed8a9eb Import hint-0.4.2.0 as devel/hs-hint,
packaged for wip by pho.

This library defines an Interpreter monad. It allows to load Haskell
modules, browse them, type-check and evaluate strings with Haskell
expressions and even coerce them into values. The library is thread-safe
and type-safe (even the coercion of expressions to values). It is,
esentially, a huge subset of the GHC API wrapped in a simpler API.
2014-09-11 21:57:46 +00:00
jperkin
c2be8e75b1 libgetopt-1.4.6: Don't replace getopt on SunOS. 2014-09-11 21:48:34 +00:00
joerg
dbd4f3593a Revert, missed the earlier update for the same change. 2014-09-11 13:49:06 +00:00
joerg
d307eb26c2 Restrict to the same versions as Mercurial itself. 2014-09-11 13:46:30 +00:00
jperkin
b71cbf9dbe Not python3 compatible due to py-mercurial dependency. 2014-09-11 10:47:58 +00:00
szptvlfn
6e7f360049 + hs-ghc-mtl 2014-09-10 21:41:39 +00:00
szptvlfn
439f529f79 Import ghc-mtl-1.2.1.0 as devel/hs-ghc-mtl,
packaged fro wip by pho.

Provides an mtl compatible version of the GhcT monad-transformer
defined in the GHC-API since version 6.10.1.
2014-09-10 21:40:07 +00:00
richard
4c71a8db35 Add Tryton module analytic_account as finance/py-trytond-analytic-account
Update by consequence devel/py-trytond/Makefile.common
2014-09-10 16:03:48 +00:00
jperkin
7df37958c1 Expand --version-script removals for SunOS back out into package Makefiles
rather than trying to consolidate into a single fnmatch.  There aren't that
many of them, and it will aid the integration of cwrappers which doesn't
support globs.
2014-09-10 15:59:33 +00:00
richard
edff2d9c3a update devel/py-trytond to 3.2.2
Changelog as generated by Mercurial:
2014-08-03  Cédric Krier  <ced@b2ck.com>

o  	* CHANGELOG:
|  	Prepare release 3.2.2
|  	[282f764285a6] [3.2.2] <3.2>
|
2014-07-20  Cédric Krier  <ced@b2ck.com>

o  	* trytond/modules/__init__.py:
|  	'res' should be global in load_modules
|
|  	issue4045 (grafted from d1bf8bffed36b177685d2fa29dbe3608f85b5a79)
|  	[ee24fb8ffbb1] <3.2>
|
o  	* trytond/tests/run-tests.py:
|  	Exit run-tests with correct error code
|
|  	review7411002 (grafted from
|  	ec915931bf69a18cc004d208064e14d159276972)
|  	[bc4a4b150883] <3.2>
|
2014-06-13  Cédric Krier  <ced@b2ck.com>

o  	* trytond/model/fields/numeric.py:
|  	Fix SQLite Numeric domain value for None
|
|  	issue3930 review11281002 (grafted from
|  	b7653d96ef050a23b8d600d0eaaa99745cd03b81)
|  	[ed07a28cdd64] <3.2>
|
o  	* trytond/protocols/xmlrpc.py:
|  	XML-RPC dumps None to nil instead of bool
|
|  	issue3981 review6351003 (grafted from
|  	851a0446f64dea53fcee27dce1ea16e6f06b7b46)
|  	[78e787cd5cfc] <3.2>
|
2014-06-08  Cédric Krier  <ced@b2ck.com>

o  	* trytond/model/fields/many2many.py, trytond/model/fields/many2one.py:
|  	Ensure ids clause is a list for concatenation
|
|  	issue3949 review11281006 (grafted from
|  	4f0c0b43e6a70823126f76e8c814c4b60cdf2bb2)
|  	[1f165de2a802] <3.2>
|
2014-07-01  Cédric Krier  <ced@b2ck.com>

o  	* trytond/version.py:
|  	Increase version number
|  	[3f5aa86ffab6] <3.2>
|
o  	* .hgtags:
|  	Added tag 3.2.1 for changeset f239ef8edd83
|  	[25bfbef89d0e] <3.2>
|
o  	* CHANGELOG:
|  	Prepare release 3.2.1
|  	[f239ef8edd83] [3.2.1] <3.2>
|
2014-06-06  Sergi Almacellas Abellana  <sergi@koolpi.com>

o  	* trytond/model/modelstorage.py:
|  	Fix KeyError when raising digits validation error.
|
|  	issue3970 review8411002 (grafted from
|  	8d071b3c5c7e8c0d62469c0d94ac8056da1db6fb)
|  	[5052bcaba02b] <3.2>
|
2014-05-17  Cédric Krier  <ced@b2ck.com>

o  	* trytond/model/fields/field.py:
|  	Fix joins when ordering on ir.model.field
|
|  	issue3910 review10311002 (grafted from
|  	5754ea65653441eace71fd814b75f2174fad1e70)
|  	[e4c2d03b07e9] <3.2>
|
2014-05-09  Cédric Krier  <ced@b2ck.com>

o  	* trytond/model/model.py:
|  	Set relation_field of one2many only when exists
|
|  	The client use this value if it exists for string concatenation, so
|  	having None fails. (grafted from
|  	070f4178a35b304b9e8f3e5e7f0a103621447dad)
|  	[70d2adcc4bfa] <3.2>
|
2014-04-21  Cédric Krier  <ced@b2ck.com>

o  	* trytond/version.py:
|  	Increase version number
|  	[b3364dd3b39d] <3.2>
|
o  	* Create branch 3.2
|  	[736df7691a44] <3.2>
|
2014-09-10 14:35:05 +00:00
richard
c452f88798 update tryton client to 3.2.3
Changelog from mercurial:
2014-05-07  Cédric Krier  <ced@b2ck.com>

	* CHANGELOG:
	Prepare release 3.2.1
	[41c2b1119e77] [3.2.1] <3.2>

	* .hgtags:
	Added tag 3.2.1 for changeset 41c2b1119e77
	[e023e0931a72] <3.2>

	* tryton/version.py:
	Increase version number
	[ea8cda98fb8e] <3.2>

	* tryton/gui/window/view_form/view/form_gtk/many2one.py:
	Fix update completion for empty reference

	issue3890 review12271002 (grafted from
	b5dfbddfcd96c62b61b9e4c5f38514eec95adfaa)
	[8684e4c9a9c8] <3.2>

2014-05-09  Cédric Krier  <ced@b2ck.com>

	* tryton/gui/window/view_form/view/form_gtk/char.py:
	Use the right widget to get text in Char widget

	issue3898 review9301002 (grafted from
	64eae7781c5170b8c3339c01857263cab5177129)
	[a60ba42dae30] <3.2>

2014-05-17  Cédric Krier  <ced@b2ck.com>

	* tryton/common/domain_inversion.py:
	Fix eval_leaf when field equals 0

	Only None must be considered as a value not set which will be forced
	by the domain inversion.

	issue3896 review14271002 (grafted from
	6f199f6ec408ffec15cc202067e2347702d8fe0c)
	[d43242fb4b4f] <3.2>

	* tryton/common/button.py,
	tryton/gui/window/view_form/screen/screen.py,
	tryton/gui/window/view_form/view/list_gtk/parser.py:
	Set button readonly when record or group is readonly

	issue3904 review13301002 (grafted from
	16b9fc83f836f06ed3aec9463238e28b44c1cbae)
	[fc85cf557c9e] <3.2>

	* tryton/gui/window/view_form/model/field.py:
	O2M.set_client should compare with active records

	issue3914 review14281004 (grafted from
	47264a4a7b02e312e57d43b9e597ae30fddb741b)
	[8a0bb5899ee4] <3.2>

2014-05-22  Cédric Krier  <ced@b2ck.com>

	* tryton/gui/window/view_form/view/list.py:
	Set None instead of False when moving record on top

	issue3912 review14291002 (grafted from
	0439ac9001836e87780e4631c4498952485df4a9)
	[a9c30f198396] <3.2>

	* tryton/gui/window/view_form/view/form_gtk/parser.py:
	Some widgets are registered many times

	This could lead to have buttons clicked many times because the
	clicked event will be registered many time.

	issue3924 review8371002 (grafted from
	d97ea070448917d64af20fcb043455a8e1adf526)
	[2cd728dd8c6e] <3.2>

2014-06-02  Guillem Barba  <guillem@nan-tic.com>

	* tryton/gui/window/view_form/model/field.py:
	Detect correctly when to parse value from DateTime, Date or Time
	field

	issue3957 review12341002 (grafted from
	50820068cef9807e8775ae8e2768f7ab80395d5f)
	[ed8ba769c241] <3.2>

2014-07-02  Cédric Krier  <ced@b2ck.com>

	* CHANGELOG:
	Prepare release 3.2.2
	[b6ebffbfa9ab] [3.2.2] <3.2>

	* .hgtags:
	Added tag 3.2.2 for changeset b6ebffbfa9ab
	[ac542cde2365] <3.2>

	* tryton/version.py:
	Increase version number
	[44e9c4d05dfc] <3.2>

2014-06-08  Cédric Krier  <ced@b2ck.com>

	* tryton/gui/window/view_form/view/form_gtk/reference.py:
	Don't guess the values for no reference

	No reference could use '' or None as selection value for the model.
	So to prevent to detect false-positive modification and to set
	invalid value, the widget must find which one is used as empty
	model.

	issue3933 review11291002 (grafted from
	e2ccc0ff4368c3342f300eb5205c2a3fa2fd7df5)
	[f77767bfa651] <3.2>

	* tryton/common/domain_inversion.py:
	Fix simplify for simple domains ['AND'], ['OR']

	issue3955 review9411002 (grafted from
	90b6308d43a17fc9f0d775a48670277d25162abc)
	[28c0a8b104c6] <3.2>

2014-06-11  Nicolas Évrard  <nicoe@b2ck.com>

	* tryton/gui/window/view_form/view/list.py:
	Quote doublequote characters when copying records to clipboard

	issue3972 review6341002 (grafted from
	52b6005d779a4a7c07291fb6f7628ee8d8c5263e)
	[94499cc28049] <3.2>

2014-06-16  Cédric Krier  <ced@b2ck.com>

	* tryton/common/popup_menu.py:
	Fix mix up of record and id in popup_menu

	issue3990 review10371002 (grafted from
	42a053cf61ff39ed7c2be82e67489fceb9a1c6b4)
	[7147cdbb594c] <3.2>

	* tryton/gui/window/view_form/view/form_gtk/many2one.py:
	Clean many2one only if text was modified

	As update_completion emit the signal changed to force the display of
	the popup when the completion model is changed. In this case the
	many2one should not be cleaned.

	issue3881 review7371002 (grafted from
	439e92599164af699ba3daca928590d3fd1acd82)
	[b14c2573b71f] <3.2>

2014-07-09  Cédric Krier  <ced@b2ck.com>

	* tryton/gui/window/view_form/model/field.py:
	Fix when number's factor is negative

	It must use the absolute value of factor to compute the digit shift
	using the logarithm.

	issue4031 review11361002 (grafted from
	901f343723bf1a32640cc8cc7e1e1bbdc5332b9c)
	[f50ec0364a34] <3.2>

2014-08-03  Cédric Krier  <ced@b2ck.com>

	* CHANGELOG:
	Prepare release 3.2.3
	[8581032eff00] [3.2.3] <3.2>
2014-09-10 12:05:38 +00:00
prlw1
94e3c83e7c Update py-at-spi2 to 2.12.0
* Fix a traceback when removing a text selection.
* Add AtspiTableCell, tracking the new atk interface.
* document: add support to current page and page count (BGO#719508).
* Add new roles and states to track atk (BGO#710464, BGO#712608, BGO#712609).
2014-09-10 11:08:19 +00:00
prlw1
d01b2ac801 Update dconf and dconf-editor to 0.20.0
Changes in dconf 0.20.0
========================

Czech translation updated.

Changes in dconf 0.19.92
=========================

 - depend on automake 1.11.2

 - stop using ACLOCAL_FLAGS

 - depend on released version of Vala (0.18.0)

Changes in dconf 0.19.91
=========================

 - fix an unlikely failure in the fuzz testing of gvdb

 - fix a thread safety issue with file-db

Changes in dconf 0.19.90
=========================

 - dconf compile: always write little endian

 - file-db: don't install match rules on no bus (fixes gdbus assertion)

 - update dconf(1) manpage for 'dconf compile'

 - fix 'make clean' on FreeBSD

 - editor: provide appdata

Translations updates:
  Ukrainian translation
  Aragonese translation
  Chinese

Changes in dconf 0.19.3
========================

 - quite a lot of test coverage improvements

 - Add a proper DCONF_ERROR error domain

 - suppress GLib deprecation warnings during build

 - engine: issue warnings about missing files only once per source

 - engine: grok the WritabilityNotify signal from D-Bus

 - gsettings: handle writability changes correctly

 - engine: assorted fixes for issues found during testing

 - portability: only link to -ldl if it is required

 - add support for 'file-db' to profiles: this is an absolute path to a
   immutable dconf database file

 - add support for finding profiles in XDG_DATA_DIRS if they are not in
   /etc

 - add 'dconf compile' command for building dconf databases from
   keyfiles in arbitrary locations (like from the build system of a
   project that may want to install a file-db)

 - editor: add a section separator to the app menu for consistency

Changes in dconf 0.19.2
========================

 - Add support for the new GSettingsBackend.read_user_value() API

 - bump GLib version depend accordingly (2.39.1)

Translations updates:
 Greek
 Catalan (Valencian)
 Simplified Chinese
 Persian
2014-09-10 10:54:46 +00:00
richard
47825a6014 revert py-tryton 2014-09-10 10:48:17 +00:00
richard
72f8044f70 revert m4 2014-09-10 10:47:13 +00:00
richard
8f81a2baa0 revert zlib 2014-09-10 10:46:07 +00:00
richard
5dc326bb4e revert libtool 2014-09-10 10:44:58 +00:00
richard
f104aea758 revert gmp/Makefile 2014-09-10 10:41:13 +00:00
richard
11ba5b2e2d revert binutils/builtin.mk 2014-09-10 10:39:35 +00:00
richard
cfd0295a64 adding devel/py-hgnested
hgnested is a Mercurial extension to work with nested repositories.

It was inspired by the forest extension.

The extension allows to apply common Mercurial commands to all the nested
repositories at once like pull, push etc. It also allows to fetch a complete
tree of repositories through ssh or http.

To enable the "hgnested" extension, create an entry for it in your hgrc, like
this:

    [extensions]
    hgnested =

See `hg help hgnested` for the complete list of commands.

For more information please visit the following website:

	http://code.google.com/p/hgnested/
2014-09-10 10:14:07 +00:00
obache
340b8eb704 Update py-testtools to 1.0.0.
testtools NEWS
++++++++++++++

Changes and improvements to testtools_, grouped by release.

1.0.0
~~~~~

Long overdue, we've adopted a backwards compatibility statement and recognized
that we have plenty of users depending on our behaviour - calling our version
1.0.0 is a recognition of that.

Improvements
------------

* Fix a long-standing bug where tearDown and cleanUps would not be called if the
  test run was interrupted. This should fix leaking external resources from
  interrupted tests.
  (Robert Collins, #1364188)

* Fix a long-standing bug where calling sys.exit(0) from within a test would
  cause the test suite to exit with 0, without reporting a failure of that
  test. We still allow the test suite to be exited (since catching higher order
  exceptions requires exceptional circumstances) but we now call a last-resort
  handler on the TestCase, resulting in an error being reported for the test.
  (Robert Collins, #1364188)

* Fix an issue where tests skipped with the ``skip``* family of decorators would
  still have their ``setUp`` and ``tearDown`` functions called.
  (Thomi Richards, #https://github.com/testing-cabal/testtools/issues/86)

* We have adopted a formal backwards compatibility statement (see hacking.rst)
  (Robert Collins)

0.9.39
~~~~~~

Brown paper bag release - 0.9.38 was broken for some users,
_jython_aware_splitext was not defined entirely compatibly.
(Robert Collins, #https://github.com/testing-cabal/testtools/issues/100)

0.9.38
~~~~~~

Bug fixes for test importing.

Improvements
------------

* Discovery import error detection wasn't implemented for python 2.6 (the
  'discover' module). (Robert Collins)

* Discovery now executes load_tests (if present) in __init__ in all packages.
  (Robert Collins, http://bugs.python.org/issue16662)

0.9.37
~~~~~~

Minor improvements to correctness.

Changes
-------

* ``stdout`` is now correctly honoured on ``run.TestProgram`` - before the
  runner objects would be created with no stdout parameter. If construction
  fails, the previous parameter list is attempted, permitting compatibility
  with Runner classes that don't accept stdout as a parameter.
  (Robert Collins)

* The ``ExtendedToStreamDecorator`` now handles content objects with one less
  packet - the last packet of the source content is sent with EOF set rather
  than an empty packet with EOF set being sent after the last packet of the
  source content. (Robert Collins)

0.9.36
~~~~~~

Welcome to our long overdue 0.9.36 release, which improves compatibility with
Python3.4, adds assert_that, a function for using matchers without TestCase
objects, and finally will error if you try to use setUp or tearDown twice -
since that invariably leads to bad things of one sort or another happening.

Changes
-------

* Error if ``setUp`` or ``tearDown`` are called twice.
  (Robert Collins, #882884)

* Make testtools compatible with the ``unittest.expectedFailure`` decorator in
  Python 3.4. (Thomi Richards)


Improvements
------------

* Introduce the assert_that function, which allows matchers to be used
  independent of testtools.TestCase. (Daniel Watkins, #1243834)
2014-09-10 09:01:49 +00:00
mef
23a3d51f43 (Upstream update 1.8.7 to 1.8.8)
-------------------------------------
Release 1.8.8 (release date 21-08-2014)
New features
    Bug 731947 - Support for PlantUML [view]
    Add BREAD_CRUMB_TRAIL. [view]

Bug fixes
    Bug 172072 $title doesn't work in LateX header [view]
    Bug 583958 Class diagrams and class hierarchy don't work for java generic classes [view]
    Bug 589707 Flex .rule file for Visual Studio build can't cope with spaces in filenames [view]
    Bug 623299 Fortran: quotation after define causes error [view]
    Bug 625601 FORTRAN: recognition free versus fixed formatted code [view]
    Bug 700510 Bibliography duplicate filenames fails [view] and [view]
    Bug 702584 \cite rejects valid BibTeX keys [view] and [view]
    Bug 705503 TCL: Documentation of oo::define is not working [view]
    Bug 727732 Nested C structures/unions does not work with groups [view]
    Bug 728654 configuration stops with settings.h missing [view]
    Bug 728740 XML Output: Doxygen doesn't escape & characters (included in a hyperlink) in <detaileddescription> [view]
    Bug 729017 function object in member initializer causes documentation loss [view]
    Bug 729427 [PATCH] Propagate configure's perl to makefiles [view]
    Bug 730418 man page extension is incorrect [view]
    Bug 730520 No documentation generated for method-less C++ struct [view]
    Bug 730887 [PATCH] Fix potential copy and paste error in inputstring.cpp [view]
    Bug 730888 [PATCH] Fix missing '&' in Boolean operation in qstring.cpp [view]
    Bug 731238 Dead links in html documentation when using tabs for indentation in c++ [view]
    Bug 731363 Callgraphs for C# only generated for methods inside the same class [view]
    Bug 731985 Variadic macros failing to expand if trailing ... is empty [view]
    Bug 732594 Two entries for a single member in Doxygen XML [view]
    Bug 732768 nested html tables cause pdflatex to hang (1.8.4 and 1.8.6) [view]
    Bug 733451 volatile declaration on member functions is not handled as xml attribute [view]
    Bug 733605 Incorrect LaTeX generation for private union member in C++ [view]
    Bug 733722 XML Output invalid: XML_PROGRAMLISTING=YES copies Unicode form feed character (U+000C) to XML files [view]
    Bug 733856 segfault in QGListIterator while parsing fortran code [view]
    Bug 733938 Explicit links using operator()() not generated. [view]
    Bug 734077 no uniquely matching class member found for inline function definition where parameter argument names don't match [view]
    Bug 734099 Add support for non-parsed language [view]
    Bug 734245 Q_PROPERTY switches the member access from private to public [view]
    Bug 734331 Strong enum members listed in containing namespace [view]
    Bug 734704 Sigsegv while generating XML output [view]
    Bug 734727 GENERATE_TAGFILE no longer includes any @*section links [view] and [view]
    Bug 734828 Request: disable building documentation if Python 2.6 or newer not available [view]
    Bug 735001 No output for markdown pages with duplicate label title (different anchor) [view]
    Bug 735037 QGDict::hashAsciiKey: Invalid null key [view]
    Add FORTRAN 2003 keywords and commands [view]
    Add type option to FORTRAN select statements [view]
    Added build support for Python3+ and Python2.6+ [view]
    Added class/procedure vardefs to FORTRAN code highlighting [view]
    Added documentation for some missing HTML commands [view]
    Added flatten, listsort and paginate filters [view]
    Added get filter, unified index properties [view]
    Added groupby filter and some more context info [view]
    Added import keyword to FORTRAN code highlighting [view]
    Added lists for indices to template context [view]
    Added mainpage to context and improved page tree [view]
    Added member indexes to template context [view]
    Added missing links in changelog when multiple bug ids were on one line [view]
    Added more missing links to the changelog [view]
    Added namespace info to the context [view]
    Addition of module data to context and alphaIndex filter [view]
    Coded coloring of flow statements corrected (regression) [view]
    Corrected copyright year [view]
    Correction of typing error [view]
    Disabled/fixed segments that produced doxygen warnings while running the test [view]
    Docbook output improvements [view]
    Documentation generator: added support for C# property accessors visibility modifiers. [view]
    Doxywizard: make the Next button on the last page of the expert tab switch to the run tab [view]
    Doxywizard: make the Next button on the last page of the wizard switch to the run tab [view]
    Error linking 32-bit windows [view]
    Fix FORTRAN code function scope test [view]
    Fix after rebase from master [view]
    Fix description of USE_PDFLATEX [view]
    Fix highlighting issues [view]
    Fix typo [view]
    Fix unnecessary rules for FORTRAN types [view]
    Fix warning about unused functions in qstring.cpp [view]
    Fixed keyword type [view]
    Fixed missing include for Linux [view]
    Fixed test 021 [view]
    Fixed typo [view]
    Fixed typo and used QString for directory [view]
    Fixed windows compile issue for is_neutral [view]
    Fixes for ./configure script on Solaris [view]
    Fixes regression due to PR 169 [view]
    Language parser: added support for C# property accessors visibility modifiers. [view]
    Made INSTALL file version and date independent [view]
    Made bread crumb trails enabled unconditionally [view]
    Made setName() virtual so overloading works [view]
    Make index for faq [view]
    Messages truncated in warnings file [view]
    Minor fixes [view]
    Minor fixes to the template context [view]
    Missing word after \n command in Doxygen rtf output, version 1.8.5 & up [view]
    More robust extraction of scope information from tag files [view]
    No warning in case cite definition is missing [view]
    Preparations for release 1.8.8 [view]
    Removed not implemented HTML commands from documentation [view]
    Removed unsupported HTML commands from the docs [view]
    Set deployment targets for MacOSX 10.5+ versions [view]
    Support multiple extra HTML stylesheets. [view]
    Tcl: add missing file that breaks test 057 [view]
    Tcl: add test code for Bug 729092 [view]
    Tcl: collect XRefs also if INLINE_SOURCES = no [view]
    Tcl: correct namespace resolution in case of INLINE_SOURCES = YES [view]
    Tcl: recurse for [] [view]
    Tcl: refactor similar code into tcl_codify_token function [view]
    Tcl: support eval/catch commands [view]
    Tcl: support switch command [view]
    Tcl: test 057 additionally tests mutual Xrefs for two files [view]
    Template context support for CREATE_SUBDIRS [view]
    Update dot.cpp [view]
    Update latexgen.cpp [view]
    Update test 058 because commit 9d315a9 fixes also Bug 729135 [view]
    Replaced the VHDL parser with the VHDL scanner from 1.7.5 to avoid potential licensing issues [view]
    New VHDL parser implementation [view]
    Vhdl fixes [view]
    \usepackage{fixltx2e} must come before use \usepackage{float} [view]
    cache anonymous into ClassDefImpl::isAnonymous [view]
    changed append filter and added index and path attributes to node [view]
    doc/translator.py -- unification for Python 2.6+ and 3.3+ (not finished) [view]
    doc/translator.py unified for Python 2.6+ and Python 3.0+ [view]
    make.bat: change current directory [view] and [view]
    removeRedundantWhiteSpace micro-optimization [view]
    resolves the error of unbalanced tags opened/closed in docbook output: parser error : Opening and ending tag mismatch: para line 358 and tbody [view]
    winbuild/pack_the_distribution_for_windows.py minor updates [view]
2014-09-09 00:44:56 +00:00
wiz
df8ba30614 Add basic infrastructure collecting information how to use waf. 2014-09-08 12:12:10 +00:00
prlw1
7d259282db Insist on glib 2.40.0 for glibmm 2.40.0
While here, add to category gnome
2014-09-08 11:42:08 +00:00
wiz
74d3e76a25 + waf. 2014-09-08 11:30:16 +00:00
wiz
79ceda2802 Import waf-1.7.16 as devel/waf.
Waf is a Python-based framework for configuring, compiling and
installing applications. Here are perhaps the most important features
of Waf:

*   Automatic build order: the build order is computed from input
    and output files, among others
*   Automatic dependencies: tasks to execute are detected by hashing
    files and commands
*   Performance: tasks are executed in parallel automatically, the
    startup time is meant to be fast (separation between configuration
    and build)
*   Flexibility: new commands and tasks can be added very easily
    through subclassing, bottlenecks for specific builds can be
    eliminated through dynamic method replacement
*   Extensibility: though many programming languages and compilers
    are already supported by default, many others are available as
    extensions
*   IDE support: Eclipse, Visual Studio and Xcode project generators
    (waflib/extras/)
*   Documentation: the application is based on a robust model
    documented in The Waf book and in the API docs
*   Python compatibility: cPython 2.4 to 3.4, Jython 2.5, IronPython,
    and Pypy
2014-09-08 11:29:44 +00:00
obache
da27e06e8a Upstream DISTNAME must not be renamed. 2014-09-08 09:41:08 +00:00
jperkin
3843fa8aad Add a comment explaining why we need to force --with-libiconv=gnu for
the ICONV_TYPE=gnu case.  Suggested by wiz.
2014-09-08 08:44:54 +00:00