Commit graph

25166 commits

Author SHA1 Message Date
wiz
a6a1bbf96f Update gettext* to 0.19.6:
Version 0.19.6 - September 2015

* Programming languages support:
  - AppData:
    xgettext now supports AppData file format, used by software center
    applications (e.g., GNOME Software) to describe installable
    applications.

* A new macro AM_GNU_GETTEXT_REQUIRE_VERSION can be used to indicate
  autopoint to pull the latest available infrastructure, instead of
  the exact version specified with AM_GNU_GETTEXT_VERSION.  When
  AM_GNU_GETTEXT_REQUIRE_VERSION is used, AM_GNU_GETTEXT_VERSION is
  ignored.

* po/Makefile.in.in can now insert the file $(DOMAIN).pot-header to
  $(DOMAIN).pot, instead of the standard header comments.

* Bug fixes:
  - Fix mishandling of gettext version numbers for minor releases, in
    po-mode.el and gettextize.
  - Fix build with --enable-relocatable.

Version 0.19.5 - July 2015

* xgettext now has a feature to perform syntax checks on msgid, which
  could enforce common styles of translatable strings, such as to
  prefer Unicode characters to the corresponding ASCII characters.
  They can be enabled with --check option or special "xgettext: "
  comment in the source code.  By default, no syntax checks are
  enabled.

* msgfilter and msgexec now have an option --newline, which appends a
  newline character to filter input and trims it from the filter
  output.  This would allow filter programs to be more POSIX friendly.

* The base Unicode standard is now updated to 8.0.0.  This
  particularly improves "\N{...}" notation handling of xgettext for
  Perl and Python.

* msginit is now capable of generating "Plural-Forms:" from Unicode
  CLDR.  This feature is still experimental, but you can try it by
  setting the GETTEXTCLDRDIR environment variable pointing to the
  directory where the CLDR archive is extracted.  The actual
  conversion is done by a helper program 'cldr-plural', which can be
  used as a generic converter and evaluator of CLDR plural forms.

* Programming languages support:
  - C++ with KDE: xgettext and msgfmt can now recognize KUIT (KDE User
    Interface Text) markup.  See the documentation section "KUIT
    Format Strings" for more info.
  - C++ with KDE: xgettext now recognizes all default KDE keywords.
    This removes the need for a long list of --keyword and --flag
    options to perform a reasonable extraction.

* Bug fixes:
  - xgettext C++11 raw string recognition is now stricter and don't
    accept unbalanced delimiters.
  - Suppress baseless warnings which msgfmt emits when processing a
    .desktop file.
  - xgettext line wrapping behaviour is now consistent between comment
    lines and non-comment lines.
  - Fix msgfilter-7 test failure on some platforms.
  - Fix VPATH build.
2015-09-30 20:58:32 +00:00
wiz
f093b911dc Update to 2.27:
libuuid:
   - return correct value for uuid_generate_time_safe  [Romain Bouvier]
2015-09-30 20:38:16 +00:00
wiz
0e96accca3 Update to 0.7.0:
version 0.7.0

     * updates related to new Linux systems, also fixed some
       compiler warnings
     * fixed bug when last line in configuration file was not
       parsed (thanks to Richard Zidlicky<rz@linux-m68k.org>)
2015-09-30 20:30:54 +00:00
wiz
1a85c0eea1 Update to 18.3.2:
------
18.3.2
------

* Correct another regression in setuptools.findall
  where the fix for Python #12885 was lost.
2015-09-30 20:28:21 +00:00
wiz
2864bcbad5 Update to 6.5.1:
Version 6.5.1 - Sep 15 2015

[CHANGES]
New facilities:
o gtags(c, c++): New environment variable GTAGSFORCEENDBLOCK.
  If this variable is set, each '}' at the first column brings
  end of all blocks.
o gtags: New --skip-unreadable option.
  If this option is specified, gtags skips unreadable files
  instead of exiting the command.

[FIXED BUGS]
o gtags: There was a difference of interpretation of the langmap
  between gtags and ctags. Now there is no difference.

o gtags (C++): Gtags did not pick up 'my_type1' as a definition
  in the following example:
	[xxx.cpp]
	+------------------------
	|using my_type1 = double;
  Now it picks up the symbol as a definition.

o gtags (C++): gtags picked up 'DomainId_t' as a definition
        in the following example:
	[xxx.cc]
	+------------------------
        |typedef std::map<DomainId_t, int> map_t2;
  Now it does not pick up it as a definition.

o gtags (C, C++): Gtags did not pick up 'pr_debug' as a definition
  in the following example:
	[xxx.h]
	+------------------------
	|extern void dump_stack(void) __cold;
	|#define pr_debug() printk()
  Now it picks up it as a definition.

o gtags (PHP): Gtags did not treat back-quote correctly.
	[xxx.php]
	+------------------------
	|<?php `ls $echo ~/*`; ?>
  Now it works.

[INCOMPATIBLE CHANGES]
o gozilla: Now, gozilla invokes firefox as a generic browser, that is, using
  command line 'firefox url'. Because firefox have removed the -remote command
  since version 39.
2015-09-30 20:26:51 +00:00
wiz
d096b8c814 Update to 0.23.2:
0.23.2 (2015-09-11)
===================

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

* Compiler crash when analysing some optimised expressions.

* Coverage plugin was adapted to coverage.py 4.0 beta 2.

* C++ destructor calls could fail when '&' operator is overwritten.

* Incorrect C literal generation for large integers in compile-time
  evaluated DEF expressions and constant folded expressions.

* Byte string constants could end up as Unicode strings when originating
  from compile-time evaluated DEF expressions.

* Invalid C code when caching known builtin methods.
  This fixes ticket 860.

* ``ino_t`` in ``posix.types`` was not declared as ``unsigned``.

* Declarations in ``libcpp/memory.pxd`` were missing ``operator!()``.
  Patch by Leo Razoumov.

* Static cdef methods can now be declared in .pxd files.
2015-09-30 19:22:08 +00:00
wiz
a772e47b4b Update to 1.8.0:
1.8.0
-----

* Strip comments present in setup.cfg
* Protect WSGI application with a critical section

1.7.0
-----

* Have pbr egg_info.writer check PBR is enabled
2015-09-30 19:18:26 +00:00
richard
d472a8835d Update to ucpp-1.3.2
ucpp-1.3.2
* Fixed Issue 8, Included files missing  a "terminating carriage
  return character" will interrupt preprocessing in sample.c/LEXER
  mode.
  (http://code.google.com/p/ucpp/issues/detail?id=8)

ucpp-1.3.1
* Fixed Issue 5, "\r\n" carriage return characters are double
  counted.
  (http://code.google.com/p/ucpp/issues/detail?id=5)
* Fixed Issue 6, Included files missing a "terminating carriage
  return character" will interrupt preprocessing in ucpp
  (STAND_ALONE mode).
  (http://code.google.com/p/ucpp/issues/detail?id=6)
* Fixed Issue 7, STD_MACROS & STD_ASSERTS undefined when trying to
  build ucpp -DSTAND_ALONE.
  (http://code.google.com/p/ucpp/issues/detail?id=7)
* Build ucpp & libucpp with 'make'.
2015-09-30 16:39:45 +00:00
fhajny
b001466524 Do not assume share/examples/rc.d existing. Fixes installation on platforms
that do not the init system.
2015-09-30 14:30:03 +00:00
jperkin
599570cc15 Use PKGMANDIR. 2015-09-30 13:58:15 +00:00
wen
a3ddebab06 Update to 0.119
Remove unneeded DEPENDS

Upstream changes:
0.119     2015-09-29
        - remove use of Test::NoWarnings for user-facing tests

0.118     2015-07-27 TRIAL RELEASE
        - overloading of & and | no longer can change All or Any objects
          found as arguments
        - an All as an argument to an All constructed is flattened out into its
          All-ed values; the same goes for Any
2015-09-30 11:48:17 +00:00
wen
e5b4533791 Update to 0.9703
Upstream changes:
0.9703 2015-09-29  Jarkko Hietaniemi  <jhi@iki.fi>
    - document (at user level) the openbsd random problem
    - using the 5.22+ Inf was done the wrong way:
      https://github.com/neilbowers/Graph/issues/1

0.9702 2015-09-28  Jarkko Hietaniemi  <jhi@iki.fi>
    - rt.cpan.org 107394 $Storable::VERSION may contain underscores
    - follow-up to rt.cpan.org 104687: more docs, fixes, and tests for
      diameter/radius/shortest_path/center_vertices/vertex_eccentricity
      for corner cases like empty graph, single-vertex graphs, and
      in general unconnected graphs
    - for perl 5.22 or later one should be able to use Inf for Infinity
    - openbsd before perl 5.20 had nondeterministic rand()

0.97 2015-09-22  Jarkko Hietaniemi  <jhi@iki.fi>
    - rt.cpan.org 104687 diameter and centre of a one vertex graph
    - rt.cpan.org 107195 [PATCH] fix POD: add missing NAME header
    - rt.cpan.org 107194 [PATCH] fix a spelling mistake
    - rt.cpan.org #94046 Loading graph produces a warning with Perl 5.16.3
    - rt.cpan.org 62626 Graph::TransitiveClosure::Matrix contradictory wrt reflexive
    - rt.cpan.org 71793 Problem with APSP and default weight 1
    - rt.cpan.org 79143 Graph scalar context override causes problems
    - rt.cpan.org 92427 Graph::delete_vertex should not use _edges_at (in all cases)
    - rt.cpan.org 85238 bug in edges() method?
    - rt.cpan.org 93278 SPT_Dijkstra sometimes returns a wrong answer
    - rt.cpan.org 78465 find_a_cycle and has_cycle are broken
    - rt.cpan.org 92204 (longest path is not calculated correctly in this case)
    - rt.cpan.org 65497 induced subgraph method
    - plus various doc and code nits found while looking at the above

0.96_01 2014-03-09 @NEILB
    - Taken over maintenance from JHI
    - Specified min perl version 5.6.0
    - Tweaked COPYRIGHT and LICENSE in pod to match usual form
    - Added "use warnings", but that results in loads of warnings
      about functions redefined. So added "no warnings 'redefine';".
      Have to come back and work that one out!
    - Set all VERSION's to 0.96_01. I suspect a switch to Dist::Zilla
      might be coming soon...
    - Updated README to acknowledge change in maintainer
    - Reformatted as per CPAN::Changes::Spec
2015-09-30 10:47:35 +00:00
ast
c31fb0c29a Upgrade to Parse-RecDescent-1.967013 as Parse-RecDescent-1.967011 tarball is
not on all servers and in the meantime two new versions have been released
PR pkg/50270
2015-09-29 20:02:23 +00:00
alnsn
d8e373282a Update lua-lpeg to 1.0.0.
* Changes from version 0.12 to 1.0
  ---------------------------------
    + group "names" can be any Lua value
    + some bugs fixed
    + other small improvements
2015-09-29 19:18:00 +00:00
richard
1cfb8667af Shelling perl in the Makefile can be problematic since pbulk-index may
invoke the Makefile prior to having the perl dependency installed.

Instead, gather ldopts during configure and pass them to libsvn_swig_perl
in order to build with the necessary ldflags.
2015-09-29 11:52:48 +00:00
wiz
0a49d6acdc Update to 3.3.2:
Changes in 3.3.2 since 3.3.1:

Brad King (2):
     Makefile: Print color escapes only when necessary
     CMake 3.3.2

Chuck Atkins (1):
     find_*: Fix search order when the environment duplicates some HINTS

Daniel Pfeifer (3):
     cmExtra{Kate,SublimeText}Generator: Remove unused cmXMLSafe includes
     cmCTest{BZR,GIT,P4}: Remove unused cmXMLSafe includes
     CTest: Fix XML double-encoding cases

Matt McCormick (1):
     CMakeDetermine{C,CXX}Compiler: Avoid if() auto-dereferene in quoted arguments
2015-09-29 08:34:14 +00:00
wiz
c625a36344 Update to 1.8.14:
Waf 1.8.14 has been released a few moments ago; it contains the following changes:
* Fixed a regression affecting Visual Studio detection on Python 3 when --msvc_lazy_autodetect is not provided
* Enabled vala processing on a folder basis with the vala_dir parameter - #1601
* Enabled vala resource processing - #1626

Waf 1.8.13 has been released today; it contains the following changes:
* Exposed the Popen parameters input/timeout to cmd_and_log/exec_command ('timeout' is for Python >= 3.3 though)
* Added 'with_sys_path' to Context.load_tool to use/skip sys.path
* Changed gccdeps so that it handles '..' within paths
* env = conf.env.derive().detach()
* Changed Sun compiler's default shared library flag from -Kpic to -xcode=pic32 - #1625
* Added bld(rule=, ..., cls_str=, cls_keyword=) for more descriptive outputs - #1598
* Added a lazy Visual Studio detection option --msvc_lazy_autodetect - #1614
* Changed the definition of function tests to prevent warnings with gcc - #1622
2015-09-29 08:24:13 +00:00
rodent
51d3c8357f Make this not self-conflict like we did with a lot of other python packages
ie. remove ${DESTDIR}${PREFIX}/bin/virtualenv in the post-install phase.
Bump PKGREVISION.
2015-09-28 23:16:12 +00:00
ryoon
5b120615a1 Add upstream bug report URL. 2015-09-28 16:37:55 +00:00
adam
a9c50e1512 Changes 2.5.3:
* The experimental untracked-cache feature were buggy when paths with
   a few levels of subdirectories are involved.

 * Recent versions of scripted "git am" has a performance regression
   in "git am --skip" codepath, which no longer exists in the
   built-in version on the 'master' front.  Fix the regression in
   the last scripted version that appear in 2.5.x maintenance track
   and older.

Also contains typofixes, documentation updates and trivial code
clean-ups.
2015-09-28 14:21:30 +00:00
wiz
c5e3c9c567 Improve COMMENT (expand XMP) 2015-09-27 19:03:58 +00:00
joerg
f5ef4215c2 GC devel/librsync, superseded by net/librsync. 2015-09-27 09:16:31 +00:00
taca
4be60c8190 Update HOMEPAGE.
Avoid using rubyforge.org since it stopped most of services.
2015-09-26 15:02:18 +00:00
wen
c3e5992598 Update to 0.12.1
Upstream changes please visit:
http://ftp5.gwdg.de/pub/misc/cran/web/packages/Rcpp/news.html
2015-09-26 14:26:15 +00:00
adam
43373ffcd2 Changes 1.9.2:
User-visible changes:
  - Client-side bugfixes:
    * svn: fix crash when saving credentials in kwallet (r1700740, r1700951)
    * checkout/update: fix "access denied" error on Windows (r1701064 et al)
    * update: fix crash when updating a conflicted tree (r1702198, r1702200)
    * commit: fix possible crash (r1702231)
    * ra_serf: do not crash on unexpected 'X-SVN-VR-Base' headers (r1702288)
    * merge: fix crash when merging to a local add (r1702299 et al)
    * svnmucc: fix error during propset+put for existing file (r1702467 et al)
    * update: fix crash without .svn/tmp folder (r1701838, r1702203)
    * checkout: remove unnecessary I/O operation (r1701638)
    * merge: fix possible crash (r1701997)
    * update: fix crash with some of the incoming deletes (r1702247)
    * upgrade: fix crash for pre-1.3 wc with externals (r1702218 et al)
    * revert: fix crash when reverting the root of a move (r1702237 et al)
    * svn: do not crash upon specific database corruptions (r1702974, r1702991)
    * svn: show utf8proc version in svn --version --verbose (r1702533, r1702891)

  - Server-side bugfixes:
    * fix reporting for empty representations in svnfsfs stats (r1698312 et al)

Developer-visible changes:
  - General:
    * fix svnfsfs_tests.py in fsfs-v4 and fsfs-v6 modes (r1700215 et al)

  - API changes:
    * disable unsupported operations for standard streams
2015-09-26 06:32:17 +00:00
tnn
cbc3834cfd Update to binutils-2.25.1.
This is a bugfix release that primarily fixes out of bounds memory writes
in libbfd when inspecting malicious binaries.
2015-09-25 17:05:33 +00:00
taca
63ba5565b5 Avoid using rubyforge.org since it stopped most of services. 2015-09-25 08:55:44 +00:00
taca
3a2d7f4b41 Update HOMEPAGE.
Avoid using rubyforge.org since it stopped most of services.
2015-09-25 08:55:18 +00:00
taca
dcf4499579 Avoid using rubyforge.org since it stopped most of services. 2015-09-25 08:54:47 +00:00
taca
380e854897 Update HOMEPAGE.
Avoid using rubyforge.org since it stopped most of services.
2015-09-25 08:53:27 +00:00
taca
4a26ca339d Update HOMEPAGE and comment out unreachable MASTER_SITES.
Avoid using rubyforge.org since it stopped most of services.
2015-09-25 08:52:59 +00:00
taca
78e08219c1 Avoid using rubyforge.org since it stopped most of services. 2015-09-25 08:52:21 +00:00
taca
5f034cb5e9 Update HOMEPAGE.
Avoid using rubyforge.org since it stopped most of services.
2015-09-25 08:50:45 +00:00
richard
cc84347a97 missing perl possible -fstack-protector* options plus patch to get MAKE_JOBS_SAFE
working again as referenced https://bugs.gentoo.org/show_bug.cgi?id=388607
2015-09-25 08:43:03 +00:00
taca
380cf51122 Update HOMEPAGE.
Avoid using rubyforge.org since it stopped most of services.
2015-09-25 06:06:36 +00:00
taca
2c05893308 Avoid using rubyforge.org since it stopped most of services. 2015-09-25 06:05:11 +00:00
taca
8ac2d2cab2 Update HOMEPAGE.
Avoid using rubyforge.org since it stopped most of services.
2015-09-25 06:04:44 +00:00
taca
ce9318ffff Update SOPE to 2.3.2, which required by SOGo 2.3.2.
Changes are too many to write here, please refer:
https://github.com/inverse-inc/sope/blob/master/ChangeLog.
2015-09-25 06:00:29 +00:00
ryoon
c8294dbfb0 Update to 0.8.1
Changelog: highlights only
Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Fri Feb 7 00:55:18 2014 +0000

    pstream.h (basic_ipstream::basic_ipstream(argv_type, pmode): Use
    basic_ipstream::readable(pmode) to correctly set input mode.
    test_pstreams.cc: Test execve-style construction for ipstream.

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Fri Jul 12 00:20:21 2013 +0100

    pstream.h: Add initializer-list constructors.
               Make unary constructors explicit.

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Thu Jul 11 23:27:43 2013 +0100

    pstream.h: Add newpg pmode flag. Version 0.8.1.
    test_pstreams.cc: Test newpg flag.

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Fri Mar 29 17:42:22 2013 +0000

    pstream.h: Doc tweak

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Wed Jan 23 00:43:11 2013 +0000

    pstream.h: Put child in new process group and define pstreambuf::killpg()

    Thanks to Hein-Pieter van Braam for the suggestion.

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Sun Jan 20 19:15:41 2013 +0000

    pstream.h: Retry interrupted writes

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Sun Jan 20 17:11:27 2013 +0000

    pstream.h: Overload constructors for convenience.

    Bump version to 0.7.3

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Mon Jun 25 22:57:26 2012 +0100

    pstream.h: Update copyright years and remove RCSID.

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Mon Jun 25 22:48:53 2012 +0100

    pstream.h (pstreambuf::xsputn): Optimize.

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Sun Jun 24 13:03:43 2012 +0100

    pstream.h (basic_pstreambuf::open): Work with _FORTIFY_SOURCE.

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Tue Nov 15 11:12:10 2011 +0000

    (basic_pstreambuf::wpipe, basic_pstreambuf::rpipe): Fix for clang.
    (PSTREAMS_VERSION): Bump to 0.7.2

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Thu Oct 14 19:57:41 2010 +0000

    	* pstream.h, test_pstreams.cc: Update copyright dates.

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Thu Oct 14 19:55:19 2010 +0000

    	* pstream.h (pstreams_common::pstreams_common): Use basic_ios::rdbuf
            to set the streambuf, basic_ios::init(0) has already been called.
2015-09-24 23:08:42 +00:00
joerg
e900111cc6 Update py-h5py to 2.5.0 to sync with the API changes in devel/hdf.
cython is now unconditional and the package is installed as egg.
2015-09-23 12:11:47 +00:00
joerg
e375f260ba + py-pkgconfig 2015-09-23 12:10:03 +00:00
joerg
33500d4ba6 Add py-pkgconfig-1.1.0:
py-pkgconfig is a Python wrapper for the pkg-config program.  It
simplifies checking for libraries and the necessary compiler and linker
flags.

Add during the freeze as it is a prerequirement for fixing
devel/py-h5df.
2015-09-23 12:09:18 +00:00
joerg
0d70b52a01 Fix rpath handling. 2015-09-23 11:47:57 +00:00
joerg
87ea6293cd Honour DESTDIR properly. 2015-09-23 11:46:57 +00:00
joerg
b9115bfa21 Try to get subversion support to at least build again. 2015-09-23 11:45:54 +00:00
joerg
6f89ccebc3 Drop pointless preprocessor noise. 2015-09-23 11:42:57 +00:00
wiz
71a2f92f9b Add build dependency on perl so that man pages are created correctly.
Noted by Frédéric Fauberteau in PR 50266.

Bump PKGREVISION.
2015-09-23 08:44:41 +00:00
mef
6a67701393 - Fix the build with newer ExtUtils-MakeMaker
Incompatible change in the newer ExtUtils-MakeMaker:
It places .o files where the source file lives (lib/File/ in this case),
whereas the older MakeMaker placed it in the current working dir
(toplevel in this case).

Thanks Matthias Ferdinand
http://mail-index.netbsd.org/pkgsrc-users/2015/09/19/msg022238.html
2015-09-23 06:43:47 +00:00
joerg
c1db536141 Don't hard-code JDK position. 2015-09-17 17:13:33 +00:00
richard
14bace16a4 update tryton client to 3.6.3
$ hg log --style changelog -b 3.6 -r 3.6.3:3.6.2
2015-09-08  Cédric Krier  <ced@b2ck.com>

	* CHANGELOG:
	Prepare release 3.6.3
	[12ad2caf0b4a] [3.6.3] <3.6>

2015-07-28  Cédric Krier  <ced@b2ck.com>

	* doc/usage.rst, tryton/gui/main.py:
	opt-in for Mac integration

	The Mac integration is not fully stable for now.

	issue4595 review19341002 (grafted from
	b00d6918cc6acee02921bb92e2c0ddbe1788c95c)
	[0a41df770987] <3.6>

	* tryton/config.py:
	Decode windows HOME using the file system encoding

	GTK requires to have string encoded in utf-8.

	issue4870 review16471002 (grafted from
	3a832b0ccf86fd80fb58f0e32f18647c4612b744)
	[d8b7956f1fe4] <3.6>

	* tryton/gui/window/view_form/model/record.py:
	Check if field is loaded before adding its timestamp

	issue4876 review20331003 (grafted from
	4adab6dc64fa312664c6dfadce62f38cc065dacd)
	[20357c8c7814] <3.6>

	* tryton/common/common.py:
	Don't decode file name from get_preview_filename

	The file name received from get_preview_filename is already encoded
	in utf-8.

	issue4871 review8251002 (grafted from
	19ac99adc0b71c99478f7510d10c8aab50fcbefd)
	[facaf37c52cb] <3.6>

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

	* tryton/common/domain_parser.py,
	tryton/gui/window/view_form/screen/screen.py:
	Add support of TimeDelta to DomainParser

	issue4851 review20321002 (grafted from
	6d3ea9bff014927d9073a892e1d02ce3eb5c5852)
	[0458be2d858c] <3.6>

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

	* doc/usage.rst:
	Remove Tabs Position documenation

	issue1014 (grafted from 97e4356ed90b91ff253ab30887c45a38c2b7f00f)
	[6fd0b418e185] <3.6>

2015-07-01  Cédric Krier  <ced@b2ck.com>

	* tryton/common/datetime_.py,
	tryton/gui/window/view_form/view/list_gtk/editabletree.py:
	Call activate on Date, Time cell before getting value

	The focus-out event is not yet triggered when editing is done which
	result of the content of the cell not yet being parsed. So the
	parsing must be forced by calling activate.

	issue4826 review18341002 (grafted from
	1f55c2dbde245703ff89d3a68f0aa90a8a27db8c)
	[71e137fa3ddf] <3.6>

2015-07-01  David Harper  <google@unicode2013.org>

	* tryton/gui/window/view_form/model/field.py:
	Fix set_client of new datetime from editable tree

	issue4850 review20311002 (grafted from
	67d552d629c7ea2bfedd93d1c0bf22b6f33ef98a)
	[acf96fab06be] <3.6>

2015-07-01  Cédric Krier  <ced@b2ck.com>

	* tryton/gui/window/form.py:
	Display date and microsecond in logs

	create and write dates should be formatted the same way as the
	revisions.

	issue4808 review18351002 (grafted from
	ad74340d5c82480adef6115ba08677be8457c500)
	[0b59dd061a53] <3.6>

2015-06-28  Cédric Krier  <ced@b2ck.com>

	* tryton/gui/window/view_form/view/list.py:
	Fix behaviour of TreeModel when record is None

	issue4831 review16381002 (grafted from
	1c35fe52323832015370d4831f3b09bdacdb27ed)
	[39744a792077] <3.6>

2015-07-13  Cédric Krier  <ced@b2ck.com>

	* tryton/__init__.py:
	Increase version number
	[f0042c7ffa0a] <3.6>

	* .hgtags:
	Added tag 3.6.2 for changeset 94c93cbb7dd4
	[4dbcf91f53fc] <3.6>

	* CHANGELOG:
	Prepare release 3.6.2
	[94c93cbb7dd4] [3.6.2] <3.6>
2015-09-17 14:29:25 +00:00