Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (1h)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-13 02:17:35 UTC Now

2013-12-07 21:26:39 UTC MAIN commitmail json YAML

update sysutils/py-psutil to 1.2.1

(richard)

2013-12-07 21:25:24 UTC MAIN commitmail json YAML

Update to 1.2.1, changelog follows:

1.2.1 - 2013-11-25
------------------

BUG FIXES

* #348: [Windows XP] fixed "ImportError: DLL load failed" occurring on module
        import.
* #425: [Solaris] crash on import due to failure at determining BOOT_TIME.
* #443: [Linux] can't set CPU affinity on systems with more than 64 cores.

1.2.0 - 2013-11-20
------------------

ENHANCEMENTS

* #439: assume os.getpid() if no argument is passed to psutil.Process
        constructor.
* #440: new psutil.wait_procs() utility function which waits for multiple
        processes to terminate.

BUG FIXES

* #348: [Windows XP/Vista] fixed "ImportError: DLL load failed" occurring on
        module import.

1.1.3 - 2013-11-07
------------------

BUG FIXES

* #442: [Linux] psutil won't compile on certain version of Linux because of
        missing prlimit(2) syscall.

(richard)

2013-12-07 21:07:56 UTC MAIN commitmail json YAML

2013-12-07 19:32:48 UTC MAIN commitmail json YAML

2013-12-07 18:25:00 UTC MAIN commitmail json YAML

2013-12-07 17:30:31 UTC MAIN commitmail json YAML

Removed games/pokerth [dholland 2013-12-07]

(wiz)

2013-12-07 17:20:03 UTC MAIN commitmail json YAML

2013-12-07 17:19:19 UTC MAIN commitmail json YAML

G/C pokerth, which hasn't been buildable in years. Anyone interested in
this package should look at wip/pokerth, which is also not buildable but
is a more recent version.

(dholland)

2013-12-07 16:50:02 UTC MAIN commitmail json YAML

2013-12-07 13:35:59 UTC MAIN commitmail json YAML

Updated www/libmicrohttpd to 0.9.32

(gls)

2013-12-07 13:34:47 UTC MAIN commitmail json YAML

Update www/libmicrohttpd to 0.9.32

This includes security fixes.

Upstream changes:
-----------------

Tue Dec  3 21:25:56 CET 2013
        Security fix: do not read past 0-terminator when unescaping
        strings (thanks to Florian Weimer for reporting).
        Releasing 0.9.32. -CG

Tue Dec  3 21:05:38 CET 2013
        Signaling n times for shutdown works, but for resume we need to
        wake up the correct daemon. Even if we signal n times in that
        case also, there's no guarantee that some daemon can't run
        through its select loop more than once before the daemon we want
        to wake up gets a chance to read.  Thus we need a signal pipe
        per thread in the thread pool IF MHD_suspend_connection is used.
        This introduces a new flag MHD_USE_SUSPEND_RESUME to add those
        additional pipes and only allow MHD_suspend_connection to be
        used in conjunction with this flag.

        Also, as MHD_resume_connection() will be called on a non-daemon
        thread, but none of the queue insert/delete calls are thread safe,
        we need to be concerned about (a) corrupting the queue, and (b)
        having to add mutex protection around every access to the queues,
        including loops through timer queues, etc. This wasn't a problem
        before adding resume; even suspend should be safe since it happens
        in a callback from the daemon.

        I think it's easier to (a) have MHD_suspend_connection() move the
        connection to a suspended queue, (b) have MHD_resume_connection()
        mark the connection as resuming, and then (c) do all the actual
        queue manipulations in MHD_select (poll, epoll, etc.) to move the
        resumed connections back to their normal queues, in response to
        the wake up. The changes are simpler & cleaner. There is a cost to
        the basic select loop that is avoided by making suspend/resume a
        startup option. The per-worker pipes can then also be enabled only
        with that option set. -MH

Fri Nov 29 20:17:03 CET 2013
        Eliminating theoretical stack overflow by limiting length
        of URIs in authentication headers to 32k (only applicable
        if the application explicitly raised the memroy limits,
        and only applies to MHD_digest_auth_check). Issue was
        reported by Florian Weimer. -CG

Tue Nov 26 01:26:15 CET 2013
        Fix race on shutdown signal with thread pool on non-Linux
        systems by signalling n times for n threads. -CG

Sun Nov 24 13:41:15 CET 2013
        Introduce state to mark connections in suspended state (with
        epoll); add missing locking operations in MHD_suspend_connection.
        Fix definition of MHD_TLS_CONNECTION_INIT.  -MH/JC

Wed Oct 30 09:34:20 CET 2013
        Fixing issue in PostProcessor when getting partial boundary
        at the beginning, expanding test suite. -CG

Sun Oct 27 15:19:44 CET 2013
"work/libmicrohttpd-0.9.32/ChangeLog" 1318L, 46479C
        Also, as MHD_resume_connection() will be called on a non-daemon
        thread, but none of the queue insert/delete calls are thread safe,
        we need to be concerned about (a) corrupting the queue, and (b)
        having to add mutex protection around every access to the queues,
        including loops through timer queues, etc. This wasn't a problem
        before adding resume; even suspend should be safe since it happens
        in a callback from the daemon.

        I think it's easier to (a) have MHD_suspend_connection() move the
        connection to a suspended queue, (b) have MHD_resume_connection()
        mark the connection as resuming, and then (c) do all the actual
        queue manipulations in MHD_select (poll, epoll, etc.) to move the
        resumed connections back to their normal queues, in response to
        the wake up. The changes are simpler & cleaner. There is a cost to
        the basic select loop that is avoided by making suspend/resume a
        startup option. The per-worker pipes can then also be enabled only
        with that option set. -MH

Fri Nov 29 20:17:03 CET 2013
        Eliminating theoretical stack overflow by limiting length
        of URIs in authentication headers to 32k (only applicable
        if the application explicitly raised the memroy limits,
        and only applies to MHD_digest_auth_check). Issue was
        reported by Florian Weimer. -CG

Tue Nov 26 01:26:15 CET 2013
        Fix race on shutdown signal with thread pool on non-Linux
        systems by signalling n times for n threads. -CG

Sun Nov 24 13:41:15 CET 2013
        Introduce state to mark connections in suspended state (with
        epoll); add missing locking operations in MHD_suspend_connection.
        Fix definition of MHD_TLS_CONNECTION_INIT.  -MH/JC

Wed Oct 30 09:34:20 CET 2013
        Fixing issue in PostProcessor when getting partial boundary
        at the beginning, expanding test suite. -CG

Sun Oct 27 15:19:44 CET 2013
        Implementing faster processing of upload data in multipart
        encoding (thanks to performance analysis by Adam Homolya). -CG

Thu Oct 24 10:40:03 CEST 2013
        Adding support for connection flow control via
        MHD_suspend_connection and MHD_resume_connection. -CG

(gls)

2013-12-07 12:58:18 UTC MAIN commitmail json YAML

2013-12-07 12:57:54 UTC MAIN commitmail json YAML

2013-12-07 12:57:13 UTC MAIN commitmail json YAML

Updated graphics/py-Pillow to 2.2.1

(obache)

2013-12-07 12:56:52 UTC MAIN commitmail json YAML

Import py-Pillow-2.2.1 as graphics/py-Pillow.

Pillow is the "friendly" PIL fork.
The Python Imaging Library (PIL) adds image processing capabilities to your
Python environment.  This library provides extensive file format support, an
efficient internal representation, and powerful image processing capabilities.

(obache)

2013-12-07 11:43:13 UTC MAIN commitmail json YAML

Updated inputmethod/ibus-input-pad to 1.4.1

(obache)

2013-12-07 11:41:09 UTC MAIN commitmail json YAML

Update ibus-input-pad to 1.4.1.

* Updated translations.
* Enabled GTK3 by default.
* Enabled maintainer-mode in configure.ac.
* Added ibus-setup-input-pad.desktop

(obache)

2013-12-07 11:34:06 UTC MAIN commitmail json YAML

Updated input-pad to 1.0.3.

(obache)

2013-12-07 11:32:31 UTC MAIN commitmail json YAML

Update input-pad to 1.0.3.

* Added the man of input-pad
* Updated translations.
* Fixed an error with gcc -Wformat -Werror=format-security
* Enabled GTK3 by default.
* Enalbed XTEST because glib2 uses XI2.
* Enabled maintainer-mode in configure.ac.
* Added data for Old English and Middle English.
* Some unofficial IPA, labial-velars, laterals, nasal releases,
  More obsolete IPA, fixed output for wedge; added a precise, unofficial symbol  for the alveolar flap.

(obache)

2013-12-07 09:31:07 UTC MAIN commitmail json YAML

2013-12-07 09:09:31 UTC MAIN commitmail json YAML

Removed www/ruby-httpclient.

No packages depend on this one anymore and no advantage to maintain pure ruby
gem with pkgsrc.

(obache)

2013-12-07 09:05:11 UTC MAIN commitmail json YAML

Removed net/ruby-tweetstream.

No package depend on this one anymore, and no advantage to maintain pure ruby
gem with pkgsrc.

(obache)

2013-12-07 09:00:51 UTC MAIN commitmail json YAML

Drop maintainership, not using anymore.

(obache)

2013-12-07 08:56:24 UTC MAIN commitmail json YAML

Removed textproc/ruby-xmlscan.

Nothing depend on this package anymore and dead upstream.

(obache)

2013-12-07 08:46:24 UTC MAIN commitmail json YAML

Drop maintainership, not using anymore.

(obache)

2013-12-07 08:43:34 UTC MAIN commitmail json YAML

Drop maintainership, not using anymore.

(obache)

2013-12-07 08:36:31 UTC MAIN commitmail json YAML

2013-12-07 01:05:39 UTC MAIN commitmail json YAML

+ calibre-1.14.0, libmpdclient-2.9, musicpd-0.18.5, opus-1.1.

(wiz)

2013-12-07 01:00:12 UTC MAIN commitmail json YAML

Updated devel/p5-ExtUtils-InstallPaths to 0.010

(wiz)

2013-12-07 01:00:02 UTC MAIN commitmail json YAML

Update to 0.010:

0.010    2013-10-29 12:17:18 Europe/Amsterdam
          Deprecated usage of legacy configuration variables
          Generate default paths more dynamically

(wiz)

2013-12-07 00:59:02 UTC MAIN commitmail json YAML

Remove p5-Extutils-Install.

Version included in perl has been newer since 5.11.1 and no newer
separate distfile is available.

(wiz)

2013-12-07 00:58:01 UTC MAIN commitmail json YAML

Remove p5-ExtUtils-Install dependencies in preparation for package removal.

(wiz)

2013-12-07 00:54:15 UTC MAIN commitmail json YAML

Updated devel/p5-ExtUtils-MakeMaker to 6.84nb1

(wiz)

2013-12-07 00:54:05 UTC MAIN commitmail json YAML

Bump dependency versions and add one to avoid installing local copies.
Bump PKGREVISION.

(wiz)

2013-12-07 00:48:03 UTC MAIN commitmail json YAML

Updated devel/p5-CPAN-Meta to 2.133380

(wiz)

2013-12-07 00:47:54 UTC MAIN commitmail json YAML

Update to 2.133380:

2.133380  2013-12-03 23:01:07 America/New_York

  [FIXED]

  - Improved bad version handling during META conversion

  - When downgrading multiple licenses to version 1.x META formats, if all
    the licenses are open source, the downgraded license will be
    "open_source", not "unknown"

(wiz)

2013-12-07 00:44:35 UTC MAIN commitmail json YAML

Updated converters/p5-JSON-PP to 2.27203

(wiz)

2013-12-07 00:44:26 UTC MAIN commitmail json YAML

Update to 2.27203:

2.27203  Thu Oct 17 19:38:55 2013
- fixed return/or in _incr_parse
  reported and patched by MAUKE, sprout and rjbs
  https://rt.cpan.org/Public/Bug/Display.html?id=86948

(wiz)

2013-12-07 00:42:23 UTC MAIN commitmail json YAML

Updated devel/p5-Parse-CPAN-Meta to 1.4409

(wiz)

2013-12-07 00:42:10 UTC MAIN commitmail json YAML

Update to 1.4409:

1.4409    2013-09-23 13:17:18 America/New_York

    [FIXED]

    - updated Makefile.PL logic to support PERL_NO_HIGHLANDER

1.4408    2013-09-23 11:06:35 America/New_York

    [FIXED]

    - Installation on Perls < 5.12 will uninstall older versions installed
      due to being bundled with ExtUtils::MakeMaker

1.4407    2013-09-08 10:16:29 America/New_York

    - Fixed incorrect resource metadata

1.4406    2013-09-08 09:59:28 America/New_York

    - Fixed improperly encoded META.yml

1.4405    2013-07-17 21:43:34 America/New_York

    - Fixed incorrect "return ... or die ..." constructs

    - Converted distribution to Dist::Zilla management

    - Noted new repository location in the Github Perl-Toolchain-Gang
      organization

(wiz)

2013-12-06 21:51:32 UTC MAIN commitmail json YAML

Require the GTK3 version of yelp. Bump revision.

(joerg)

2013-12-06 21:50:12 UTC MAIN commitmail json YAML

Fix autoconf dependency to not match autoconf-archive. Bump revision.

(joerg)

2013-12-06 21:26:05 UTC MAIN commitmail json YAML

2013-12-06 21:24:59 UTC MAIN commitmail json YAML

2013-12-06 19:58:27 UTC MAIN commitmail json YAML

2013-12-06 19:33:22 UTC MAIN commitmail json YAML

Updated databases/sqlite3 to 3.8.2

(adam)

2013-12-06 19:26:58 UTC MAIN commitmail json YAML

Changes 3.8.2:
Changed the defined behavior for the CAST expression when floating point values greater than +9223372036854775807 are cast into into integers so that the result is the largest possible integer, +9223372036854775807, instead of the smallest possible integer, -9223372036854775808. After this change, CAST(9223372036854775809.0 as INT) yields +9223372036854775807 instead of -9223372036854775808. ← Potentially Incompatible Change!
Added support for WITHOUT ROWID tables.
Added the skip-scan optimization to the query planner.
Extended the virtual table interface, and in particular the sqlite3_index_info object to allow a virtual table to report its estimate on the number of rows that will be returned by a query.
Update the R-Tree extension to make use of the enhanced virtual table interface.
Add the SQLITE_ENABLE_EXPLAIN_COMMENTS compile-time option.
Enhanced the comments that are inserted into EXPLAIN output when the SQLITE_ENABLE_EXPLAIN_COMMENTS compile-time option is enabled.
Performance enhancements in the VDBE, especially to the OP_Column opcode.
Factor constant subexpressions in inner loops out to the initialization code in prepared statements.
Enhanced the ".explain" output formatting of the command-line shell so that loops are indented to better show the structure of the program.
Enhanced the ".timer" feature of the command-line shell so that it shows wall-clock time in addition to system and user times.

(adam)

2013-12-06 18:35:26 UTC MAIN commitmail json YAML

Note update of the "phpmyadmin" package to version 4.0.10.

(tron)

2013-12-06 18:34:54 UTC MAIN commitmail json YAML

Update "phpmyadmin" package to version 4.0.10. The following bugs were
fixed since version 4.0.9:
- bug #4150 Clicking database name in query window opens a new tab
- bug #4141 Wrong page is shown after editing; also, do not show a modal
            dialog for multi-row edit
- bug #3939 PHP NavigationTree error when paging through list
- bug #4075 Support A10 Networks load balancer
- bug #4083 row deleting isn't binlogs friendly
- bug #4163 Setup script does not recognize manually-configured server
- bug #4158 Events page says no privileges with ALL PRIVILEGES

(tron)

2013-12-06 16:27:43 UTC MAIN commitmail json YAML

Updated www/py-flask-script to 0.6.5.

(kleink)

2013-12-06 16:26:54 UTC MAIN commitmail json YAML

Update py-flask-script to 0.6.5.

Version 0.6.5
-----------------

Released on December 5, 2013

- Change warning from UserWarning to DeprecationWarning so it is
  ignored by default

Version 0.6.4
-----------------

Released on December 5, 2013

- Only pass `parents` argument if a command's `create_parser`
  accepts it.  Workaround for #71

(kleink)

2013-12-06 15:35:53 UTC MAIN commitmail json YAML

Fix for later gcc against platforms without stpcpy().

(seanb)

2013-12-06 14:00:54 UTC MAIN commitmail json YAML

Added devel/p5-Data-Printer version 0.35

(wiz)

2013-12-06 14:00:30 UTC MAIN commitmail json YAML

+ p5-Data-Printer

(wiz)

2013-12-06 14:00:18 UTC MAIN commitmail json YAML

Import p5-Data-Printer-0.35 as devel/p5-Data-Printer.

Data::Printer is a Perl module to pretty-print Perl data structures
and objects in full color. It is meant to display variables on
screen, properly formatted to be inspected by a human.

Data::Printer is highly customizable, from indentation size to
depth level. You can even rename the exported p() function!

Data::Printer also lets you create filters to help debugging
your objects easily.

(wiz)

2013-12-06 13:39:46 UTC MAIN commitmail json YAML

2013-12-06 13:39:34 UTC MAIN commitmail json YAML

Update to 0.25:

0.25 (2013/11/09)
* fix "insert" with directory argument
* optimize tab completion commands
* do character set conversion for tab completion commands
* require libmpdclient 2.3, MPD 0.16

0.24 (2013/10/29)
* configure.ac: fix syntax error
* new command "toggleoutput"
* use the "volume" command on MPD 0.18
* fix search/find with "filename" constraint
* add search/find with "base" constraint
* don't strip trailing slashes from absolute URLs

(wiz)

2013-12-06 13:36:57 UTC MAIN commitmail json YAML

2013-12-06 13:36:48 UTC MAIN commitmail json YAML

Update to 300:

300: This release fixed a problem when running in XFCE4.

299: This release fixed an error in line drawing.

298: This release fixes several minor bugs and adds a new option
"-report-fonts" to show which fonts are actually loaded.

(wiz)

2013-12-06 13:34:04 UTC MAIN commitmail json YAML

Note removal of Pillow.

(obache)

2013-12-06 13:32:54 UTC MAIN commitmail json YAML

Remove Pillow, claimed by joerg@.

I have no interesting about this package.

(obache)

2013-12-06 13:28:52 UTC MAIN commitmail json YAML

+ Mesa-10.0, MesaLib-10.0, binutils-2.24, dolphin-4.0.2, fotoxx-13.12,
  glu-10.0, go-1.2, kde4-4.11.4, mkvtoolnix-6.6.0, par2-0.6.0
  [https://github.com/BlackIkeEagle/par2cmdline], pokerth-1.0.1,
  reposurgeon-2.43, openbsd-input-ws, only builds on OpenBSD],
  xf86-video-mga-1.6.3, xterm-299.

(wiz)

2013-12-06 13:28:28 UTC MAIN commitmail json YAML

+ Updated math/mpfr to 3.1.2 [drochner 2013-03-15]

(wiz)

2013-12-06 13:26:27 UTC MAIN commitmail json YAML

Updated textproc/raptor2 to 2.0.11

(wiz)

2013-12-06 13:26:14 UTC MAIN commitmail json YAML

Update to 2.0.11:

Changes between raptor2 2.0.10 and 2.0.10

New functions, types and enums

Functions

  + unsigned char* raptor_qname_format_as_xml(const raptor_qname *qname, size_t
    *length_p)

  + int raptor_uri_uri_string_is_absolute(const unsigned char* uri_string)

(wiz)

2013-12-06 13:23:47 UTC MAIN commitmail json YAML

2013-12-06 13:11:12 UTC MAIN commitmail json YAML

Updated print/poppler to 0.24.4

(wiz)

2013-12-06 13:10:59 UTC MAIN commitmail json YAML

poppler updated to 0.24.4. changes shlib major again, PKGREVISION bump
follows next.

Changes:

Release 0.24.4
        core:
        * Fix regression in broken endstream detection. Bug #70854
        * Catalog: sort entries of NameTrees to make sure lookup works. Bug #26049
        * Don't infinite loop if reading from GooFile::read fails. Bug #71835

        utils:
        * pdftotext: Do not close stdout. Bug #71639
        * pdftotext: Silence warning for may be used uninitialized variable. Bug #71640
        * pdftotext: Escape the text of the xml headers
        * Warn the user if he provides a wrong range

        qt4:
        * Fix typo in xml API. Bug #71643

        qt5:
        * Fix typo in xml API. Bug #71643

(wiz)

2013-12-06 12:11:33 UTC MAIN commitmail json YAML

Updated graphics/py-aafigure to 0.5nb2

(obache)

2013-12-06 12:11:15 UTC MAIN commitmail json YAML

Allow to depend on Pillow as well as py-imaging.

Bump PKGREVISION.

(obache)

2013-12-06 12:02:57 UTC MAIN commitmail json YAML

Updated devel/bison to 3.0.2

(wiz)

2013-12-06 12:02:47 UTC MAIN commitmail json YAML

Update to 3.0.2:

* Noteworthy changes in release 3.0.2 (2013-12-05) [stable]

** Bug fixes

*** Generated source files when errors are reported

  When warnings are issued and -Werror is set, bison would still generate
  the source files (*.c, *.h...).  As a consequence, some runs of "make"
  could fail the first time, but not the second (as the files were generated
  anyway).

  This is fixed: bison no longer generates this source files, but, of
  course, still produces the various reports (*.output, *.xml, etc.).

*** %empty is used in reports

  Empty right-hand sides are denoted by '%empty' in all the reports (text,
  dot, XML and formats derived from it).

*** YYERROR and variants

  When C++ variant support is enabled, an error triggered via YYERROR, but
  not caught via error recovery, resulted in a double deletion.

* Noteworthy changes in release 3.0.1 (2013-11-12) [stable]

** Bug fixes

*** Errors in caret diagnostics

  On some platforms, some errors could result in endless diagnostics.

*** Fixes of the -Werror option

  Options such as "-Werror -Wno-error=foo" were still turning "foo"
  diagnostics into errors instead of warnings.  This is fixed.

  Actually, for consistency with GCC, "-Wno-error=foo -Werror" now also
  leaves "foo" diagnostics as warnings.  Similarly, with "-Werror=foo
  -Wno-error", "foo" diagnostics are now errors.

*** GLR Predicates

  As demonstrated in the documentation, one can now leave spaces between
  "%?" and its "{".

*** Installation

  The yacc.1 man page is no longer installed if --disable-yacc was
  specified.

*** Fixes in the test suite

  Bugs and portability issues.

(wiz)

2013-12-06 11:57:39 UTC MAIN commitmail json YAML

Updated print/py-reportlab to 2.5nb5

(obache)

2013-12-06 11:56:36 UTC MAIN commitmail json YAML

Allow to depend on Pillow as well as py-imaging.

Bump PKGREVISION.

(obache)

2013-12-06 11:35:22 UTC MAIN commitmail json YAML

Updated graphics/py-nwdiag to 1.0.0

(obache)

2013-12-06 11:35:03 UTC MAIN commitmail json YAML

Update nwdiag to 1.0.0.

History
=======

1.0.0 (2013-10-05)
------------------
* Support python 3.2 and 3.3 (thanks to @masayuko)
* Drop supports for python 2.4 and 2.5
* Replace dependency: PIL -> Pillow

(obache)

2013-12-06 11:33:28 UTC MAIN commitmail json YAML

Updated graphics/py-actdiag to 0.5.1

(obache)

2013-12-06 11:33:13 UTC MAIN commitmail json YAML

Update actdiag to 0.5.1.

History
=======

0.5.1 (2013-10-22)
------------------
* Fix bugs

0.5.0 (2013-10-05)
------------------
* Support python 3.2 and 3.3 (thanks to @masayuko)
* Drop supports for python 2.4 and 2.5
* Replace dependency: PIL -> Pillow

(obache)

2013-12-06 11:31:14 UTC MAIN commitmail json YAML

Updated graphics/py-seqdiag to 0.9.0

(obache)

2013-12-06 11:30:53 UTC MAIN commitmail json YAML

Update seqdiag to 0.9.0.

History
=======

0.9.0 (2013-10-05)
------------------
* Support python 3.2 and 3.3 (thanks to @masayuko)
* Drop supports for python 2.4 and 2.5
* Replace dependency: PIL -> Pillow

(obache)

2013-12-06 11:27:17 UTC MAIN commitmail json YAML

Updated graphics/py-blockdiag to 1.3.2

(obache)

2013-12-06 11:26:55 UTC MAIN commitmail json YAML

Update blockdiag to 1.3.2.

History
=======

1.3.2 (2013-11-19)
------------------
* Fix bugs

1.3.1 (2013-10-22)
------------------
* Fix bugs

1.3.0 (2013-10-05)
------------------
* Support python 3.2 and 3.3 (thanks to @masayuko)
* Drop supports for python 2.4 and 2.5
* Replace dependency: PIL -> Pillow

(obache)

2013-12-06 11:23:37 UTC MAIN commitmail json YAML

2013-12-06 11:23:08 UTC MAIN commitmail json YAML

Added graphics/Pillow version 2.2.1

(obache)

2013-12-06 11:22:45 UTC MAIN commitmail json YAML

Import Pillow-2.2.1 as graphics/Pillow.

Pillow is the "friendly" PIL fork by Alex Clark and Contributors. PIL is the
Python Imaging Library by Fredrik Lundh and Contributors.

(obache)

2013-12-06 11:16:56 UTC MAIN commitmail json YAML

Needs libiconv to build on FreeBSD.
Bump revision as precaution.

(asau)

2013-12-06 11:01:55 UTC MAIN commitmail json YAML

Updated parallel/slurm to 2.6.4

(asau)

2013-12-06 10:46:24 UTC MAIN commitmail json YAML

Fix packaging on FreeBSD: OSS audio.

(asau)

2013-12-06 10:35:39 UTC MAIN commitmail json YAML

Updated emulators/suse131_pulseaudio to 13.1nb1

(obache)

2013-12-06 10:35:17 UTC MAIN commitmail json YAML

openSUSE-RU-2013:1801-1 had been backed out due to ABI incompatibility,
so changed to use GA version.

Bump PKGREVISION.

(obache)

2013-12-06 10:21:26 UTC MAIN commitmail json YAML

commented out suse131_linux.

(obache)

2013-12-06 07:28:07 UTC MAIN commitmail json YAML

Updated cross/avrdude to 6.0.1

(mef)

2013-12-06 07:27:15 UTC MAIN commitmail json YAML

(Upstream)
- Bump version 5.11 to 6.0.1
  (See cvs log for Makefile for changes).
(pkgsrc)
- Add patches/patch-fileio_c to avoid following problem:
  fileio.c:957:3: warning: implicit declaration of function 'elf_getshdrstrndx'

(mef)

2013-12-06 07:23:56 UTC MAIN commitmail json YAML

(Upstream) Bump version 5.11 to 6.0.1
----------------------------------------------------------------------
Version 6.0.1:
  * Major changes compared to the previous version:
    - Programmer types in configuration file are no longer keywords but
      specified as string.

      So you need to change 'type = XYZ;' to 'type = "XYZ";' in own
      config files.  (internal: The parser does not need to know all
      programmer types now, new programmers will update only the table
      in pgm_type.c.)

    - The erase cycle counter (formerly options -y / -Y) has been
      removed.

    - Specifying a -U option without a memory type (short form of
      option argument list) now defaults to "application" memory for
      Xmega devices, and "flash" for everything else.  This ensures
      the Xmega bootloader is not accidentally touched.

    - For programmers that support it, the default erase method is a
      page erase now, rather than a chip erase (Xmega only).

    - Keep track of input file contents

      Memory segments are being tracked to remember whether they've
      been actually read from a file.  Only segments that came from a
      file are being programmed into the device, or considered for
      verification.  This drastically improves handling speed for
      sparse files (e.g. files that have a second bootloader segment),
      and it ensures the device contents is actually compared for
      everything mentioned in the file (even in case the file has
      large 0xFF blocks).

    - The -U option now accepts ELF files as input files, and extracts
      the appropriate section contents that matches the requested memory
      region.  To enable this feature, the host system used for the
      compilation must have a libelf around, including the respective
      header files (i.e., package "libelf-devel" on many Linux systems).

    - Programmers and parts lists

      They are now sorted at output with '-c ?'/'-p ?'. (patch #7671:
      Sorting programmers and parts lists for console output)

      Programmers and parts lists in documentation generated from lists
      mentioned above. (patch #7687: Autogenerating programmers and
      parts lists for docs)

      Output list of programmer types with '-c ?type', add list to
      documentation

    - Configuration files now accepts parent parts/programmers, parts
      starting with '.' (eg. .xmega) are not included in output parts
      list and can be used as abstract parents

      (bug #34302: Feature request : device configuration with parent classes)
      (patch #7688: Implement parent programmers feature)

    - Additional config files which are read after default can be
      specified on command line using '-C +filename'

      (patch #7699 Read additional config files)

    - "Safemode" can now be turned off by default from within a
      configuration file (like ~/.avrduderc).

    - The new option -l logfile allows to redirect diagnostic messages
      to a logfile rather than stderr.  Useful to record debugging
      traces, in particular in environments which do not offer
      shell-style redirection functionality for standard streams.

    - When leaving debugWIRE mode, immediately retry with ISP rather
      than bailing out completely.

    - The USBasp programmer implementation now supports detailed traces
      with -vvv, and device communication traces with -vvvv.

    - The "verbose" terminal mode command allows to query or modify the
      verbosity level.

  * New devices supported:
    - ATmega48P (patch #7629 add support for atmega48p)
    - AT90PWM316 (bug #21797: AT90PWM316: New part description)
    - ATxmega16D4, ATxmega32D4, ATxmega64D4, ATxmega128D4
    - ATmega256RFR2, ATmega128RFR2, ATmega64RFR2, ATmega2564RFR2,
      ATmega1284RFR2, ATmega644RFR2
    - ATtiny1634
    - ATxmega128A1U, ATxmega128A3U, ATxmega128A4U, ATxmega128B1,
      ATxmega128B3, ATxmega128C3, ATxmega128D3, ATxmega16A4U,
      ATxmega16C4, ATxmega192A3U, ATxmega192C3, ATxmega192D3,
      ATxmega256A3BU, ATxmega256A3U, ATxmega256C3, ATxmega256D3,
      ATxmega32A4U, ATxmega32C4, ATxmega384C3, ATxmega384D3,
      ATxmega64A1U, ATxmega64A3U, ATxmega64A4U, ATxmega64B1,
      ATxmega64B3, ATxmega64C3, ATxmega64D3
    - ATtiny43U
    - ATmega406
    - ATxmega8E5, ATxmega16E5, ATxmega32E5
    - ATtiny20, ATtiny40

  * New programmers supported:
    - linuxgpio
      + any (embedded) Linux system with 4 GPIOs available can be used
        as a programmer with little or no additional hardware.

    - avrftdi
      + o-link (patch #7672 adding support for O-Link (FTDI based
        JTAG) as programmer)
      + 4232h (patch #7715 FT4232H support)
    - TPI support
      + openmoko (bug #37977 Support for Openmoko Debug Board)

    - usbasp
      + nibobee (previously specified as '-c usbasp -P nibobee)
      + usbasp-clone (same as usbasp but ignores vendor and product
        string, checks only vid/pid)

    - ftdi_syncbb (new type for synchronous bitbanging with ft232r/ft245r)
      + ft245r (FT245R Synchronous BitBang, miso = D1, sck = D0, mosi
        = D2, reset = D4)
      + ft232r (FT232R Synchronous BitBang, miso = RxD, sck = RTS,
        mosi = TxD, reset = DTR)
      + bwmega (BitWizard ftdi_atmega builtin programmer, miso = DSR,
        sck = DCD, mosi = CTS, reset = RI)
      + arduino-ft232r (Arduino: FT232R connected to ISP, miso = CTS
        X3(1), sck = DSR X3(2), mosi = DCD X3(3), reset = RI X3(4))
      + diecimila (alias for arduino-ft232r)

    - pickit2
    - Atmel JTAGICE3
    - buspirate_bb (TPI programming using the BusPirate in bitbang mode)

  * Bugfixes
      - bug #34027: avrdude AT90S1200 Problem
      - bug #34518: loading intel hex files > 64k using record-type 4
      - patch #7667: Minor memory handling fixes
      - patch #7680: Fixing timeout problem in ser_recv in ser_win32.c
      - patch #7693: Fix config file atmel URLs (+ URLs in
        avrdude.texi and avrpart.h)
      - bug #21663: AT90PWM efuse incorrect, bug #30438: efuse bits
        written as 0 on at90pwmxx parts
      - bug #35261: avrftdi uses wrong interface in avrftdi_paged_(write|load)
      - patch #7437 modifications to Bus Pirate module
      - patch #7686 Updating buspirate ascii mode to current firmware,
        use AUX as clock generator, and setting of serial receive
        timeout
      - bug #34768 Proposition: Change the name of the AVR32 devices
      - patch #7718: Merge global data of avrftdi in a private data
        structure
      - bug #35208: avrdude 5.11 on freebsd 8.2-STABLE does not reset
        Arduino Uno properly
      - bug #34518: loading intel hex files > 64k using record-type 4
        (Extended Linear Address Record)
      - bug #34027: avrdude AT90S1200 Problem
      - bug #30451: Accessing some Xmega memory sections gives not
        supported error
      - bug #28744: Can't load bootloader to xmega128a1
      - bug #29019: pagel/bs2 warning when uploading using stk500 to xmega
      - bug #30756: When setting SUT to 64ms on XMEGA, avrdude doesn't
        read device signature
      - bug #37265: wrong page sizes for XMega64xx in avrdude.conf
      - bug #37942: Latest SVN can't program in dragon_jtag mode
      - patch #7876 JTAGICE mkII fails to connect to attiny if debugwire
        is enabled AND target has a very slow clock
      - bug #39893: Verification failure with AVRISPmkII and Xmega
      - bug #38713: Compilation of the documentation breaks with texinfo-5
      - bug #38023: avrdude doesn't return an error code when attempting
        to upload an invalid Intel HEX file
      - bug #39794: warnings when building avrdude 6.0rc1 under CentOS 6.4
      - bug #35800: Compilation error on certain systems if parport is disabled
      - bug #38307: Can't write usersig of an xmega256a3
      - bug #38580: Current svn head, xmega and fuses, all fuses tied to fuse0
      - bug #39691: Buffer overrun when reading EEPROM byte with JTAGICE3
      - bug #38951: AVR109 use byte offset instead of word offset
      - patch #7769: Write flash fails for AVR910 programmers
      - bug #38732: Support for ATtiny1634
      - bug #36901: flashing Atmega32U4 EEPROM produces garbage on chip
      - bug #28344: chip_erase_delay too short for ATmega324P, 644, 644P, and 1284P
      - bug #34277: avrdude reads wrong byte order if using avr911 (aka butterfly)
      - bug #35456: The progress bar for STK500V2 programmer is "wrong".
      - patch #5708: avrdude should make 10 synchronization attempts instead of just one
      - patch #7606: ATtiny43u support
      - patch #7657: Add ATmega406 support for avrdude using DRAGON + JTAG
      - bug #35474: Feature request: print fuse values in safemode output.
      - patch #7710: usb_libusb: Check VID/PID before opening device
      - [no-id]: Fix SCK period adjustment for STK500v2
      - bug #40040: Support for ATtiny20 and ATtiny40
      - bug #40055: AVRDUDE segfaults when writing eeprom

(mef)

2013-12-06 06:20:00 UTC MAIN commitmail json YAML

After all the Sturm und Drang, it turns out the only thing needed for
DESTDIR support in ghc is to turn it on. Sigh.

Remove BROKEN.

(dholland)

2013-12-06 06:05:31 UTC MAIN commitmail json YAML

Update to SLURM 2.6.4
Based on work of Jason Bacon published in WIP.

* Changes in Slurm 2.6.4
========================
-- Fixed sh5util to print its usage.
-- Corrected commit f9a3c7e4e8ec.
-- Honor ntasks-per-node option with exclusive node allocations.
-- sched/backfill - Prevent invalid memory reference if bf_continue option is
    configured and slurm is reconfigured during one of the sleep cycles or if
    there are any changes to the partition configuration or if the normal
    scheduler runs and starts a job that the backfill scheduler is actively
    working on.
-- Update man pages information about acct-freq and JobAcctGatherFrequency
    to reflect only the latest supported format.
-- Minor document update to include note about PrivateData=Usage for the
    slurm.conf when using the DBD.
-- Expand information reported with DebugFlags=backfill.
-- Initiate jobs pending to run in a reservation as soon as the reservation
    becomes active.
-- Purged expired reservation even if it has pending jobs.
-- Corrections to calculation of a pending job's expected start time.
-- Remove some vestigial logic treating job priority of 1 as a special case.
-- Memory freeing up to avoid minor memory leaks at close of daemons
-- Updated documentation to give correct units being displayed.
-- Report AccountingStorageBackupHost with "scontrol show config".
-- init scripts ignore quotes around Pid file name specifications.
-- Fixed typo about command case in quickstart.html.
-- task/cgroup - handle new cpuset files, similar to commit c4223940.
-- Replace the tempname() function call with mkstemp().
-- Fix for --cpu_bind=map_cpu/mask_cpu/map_ldom/mask_ldom plus
    --mem_bind=map_mem/mask_mem options, broken in 2.6.2.
-- Restore default behavior of allocating cores to jobs on a cyclic basis
    across the sockets unless SelectTypeParameters=CR_CORE_DEFAULT_DIST_BLOCK
    or user specifies other distribution options.
-- Enforce JobRequeue configuration parameter on node failure. Previously
    always requeued the job.
-- acct_gather_energy/ipmi - Add delay before retry on read error.
-- select/cons_res with GRES and multiple threads per core, fix possible
    infinite loop.
-- proctrack/cgroup - Add cgroup create retry logic in case one step is
    starting at the same time as another step is ending and the logic to create
    and delete cgroups overlaps.
-- Improve setting of job wait "Reason" field.
-- Correct sbatch documentation and job_submit/pbs plugin "%j" is job ID,
    not "%J" (which is job_id.step_id).
-- Improvements to sinfo performance, especially for large numbers of
    partitions.
-- SlurmdDebug - Permit changes to slurmd debug level with "scontrol reconfig"
-- smap - Avoid invalid memory reference with hidden nodes.
-- Fix sacctmgr modify qos set preempt+/-=.
-- BLUEGENE - fix issue where node count wasn't set up correctly when srun
    preforms the allocation, regression in 2.6.3.
-- Add support for dependencies of job array elements (e.g.
    "sbatch --depend=afterok:123_4 ...") or all elements of a job array (e.g.
    "sbatch --depend=afterok:123 ...").
-- Add support for new options in sbatch qsub wrapper:
    -W block=true (wait for job completion)
    Clear PBS_NODEFILE environment variable
-- Fixed the MaxSubmitJobsPerUser limit in QOS which limited submissions
    a job too early.
-- sched/wiki, sched/wiki2 - Fix to work with change logic introduced in
    version 2.6.3 preventing Maui/Moab from starting jobs.
-- Updated the QOS limits documentation and man page.

* Changes in Slurm 2.6.3
========================
-- Add support for some new #PBS options in sbatch scripts and qsub wrapper:
    -l accelerator=true|false (GPU use)
    -l mpiprocs=# (processors per node)
    -l naccelerators=# (GPU count)
    -l select=# (node count)
    -l ncpus=# (task count)
    -v key=value (environment variable)
    -W depend=opts (job dependencies, including "on" and "before" options)
    -W umask=# (set job's umask)
-- Added qalter and qrerun commands to torque package.
-- Corrections to qstat logic: job CPU count and partition time format.
-- Add job_submit/pbs plugin to translate PBS job dependency options to the
    extend possible (no support for PBS "before" options) and set some PBS
    environment variables.
-- Add spank/pbs plugin to set a bunch of PBS environment variables.
-- Backported sh5util from master to 2.6 as there are some important
    bugfixes and the new item extraction feature.
-- select/cons_res - Correct MacCPUsPerNode partition constraint for CR_Socket.
-- scontrol - for setdebugflags command, avoid parsing "-flagname" as an
    scontrol command line option.
-- Fix issue with step accounting if a job is requeued.
-- Close file descriptors on exec of prolog, epilog, etc.
-- Fix issue when a user has held a job and then sets the begin time
    into the future.
-- Scontrol - Enable changing a job's stdout file.
-- Fix issues where memory or node count of a srun job is altered while the
    srun is pending.  The step creation would use the old values and possibly
    hang srun since the step wouldn't be able to be created in the modified
    allocation.
-- Add support for new SchedulerParameters value of "bf_max_job_part", the
    maximum depth the backfill scheduler should go in any single partition.
-- acct_gather/infiniband plugin - Correct packets_in/out values.
-- BLUEGENE - Don't ignore a conn-type request from the user.
-- BGQ - Force a request on a Q for a MESH to be a TORUS in a dimension that
    can only be a TORUS (1).
-- Change max message length from 100MB to 1GB before generating "Insane
    message length" error.
-- sched/backfill - Prevent possible memory corruption due to use of
    bf_continue option and long running scheduling cycle (pending jobs could
    have been cancelled and purged).
-- CRAY - fix AcceleratorAllocation depth correctly for basil 1.3
-- Created the environment variable SLURM_JOB_NUM_NODES for srun jobs and
    updated the srun man page.
-- BLUEGENE/CRAY - Don't set env variables that pertain to a node when Slurm
    isn't doing the launching.
-- gres/gpu and gres/mic - Do not treat the existence of an empty gres.conf
    file as a fatal error.
-- Fixed for if hours are specified as 0 the time days-0:min specification
    is not parsed correctly.
-- switch/nrt - Fix for memory leak.
-- Subtract the PMII_COMMANDLEN_SIZE in contribs/pmi2/pmi2_api.c to prevent
    certain implementation of snprintf() to segfault.

* Changes in Slurm 2.6.2
========================
-- Fix issue with reconfig and GrpCPURunMins
-- Fix of wrong node/job state problem after reconfig
-- Allow users who are coordinators update their own limits in the accounts
    they are coordinators over.
-- BackupController - Make sure we have a connection to the DBD first thing
    to avoid it thinking we don't have a cluster name.
-- Correct value of min_nodes returned by loading job information to consider
    the job's task count and maximum CPUs per node.
-- If running jobacct_gather/none fix issue on unpacking step completion.
-- Reservation with CoreCnt: Avoid possible invalid memory reference.
-- sjstat - Add man page when generating rpms.
-- Make sure GrpCPURunMins is added when creating a user, account or QOS with
    sacctmgr.
-- Fix for invalid memory reference due to multiple free calls caused by
    job arrays submitted to multiple partitions.
-- Enforce --ntasks-per-socket=1 job option when allocating by socket.
-- Validate permissions of key directories at slurmctld startup. Report
    anything that is world writable.
-- Improve GRES support for CPU topology. Previous logic would pick CPUs then
    reject jobs that can not match GRES to the allocated CPUs. New logic first
    filters out CPUs that can not use the GRES, next picks CPUs for the job,
    and finally picks the GRES that best match those CPUs.
-- Switch/nrt - Prevent invalid memory reference when allocating single adapter
    per node of specific adapter type
-- CRAY - Make Slurm work with CLE 5.1.1
-- Fix segfault if submitting to multiple partitions and holding the job.
-- Use MAXPATHLEN instead of the hardcoded value 1024 for maximum file path
    lengths.
-- If OverTimeLimit is defined do not declare failed those jobs that ended
    in the OverTimeLimit interval.

* Changes in Slurm 2.6.1
========================
-- slurmdbd - Allow job derived ec and comments to be modified by non-root
    users.
-- Fix issue with job name being truncated to 24 chars when sending a mail
    message.
-- Fix minor issues with spec file, missing files and including files
    erroneously on a bluegene system.
-- sacct - fix --name and --partition options when using
    accounting_storage/filetxt.
-- squeue - Remove extra whitespace of default printout.
-- BGQ - added head ppcfloor as an include dir when building.
-- BGQ - Better debug messages in runjob_mux plugin.
-- PMI2 Updated the Makefile.am to build a versioned library.
-- CRAY - Fix srun --mem_bind=local option with launch/aprun.
-- PMI2 Corrected buffer size computation in the pmi2_api.c module.
-- GRES accounting data wrong in database: gres_alloc, gres_req, and gres_used
    fields were empty if the job was not started immediately.
-- Fix sbatch and srun task count logic when --ntasks-per-node specified,
    but no explicit task count.
-- Corrected the hdf5 profile user guide and the acct_gather.conf
    documentation.
-- IPMI - Fix Math bug getting new wattage.
-- Corrected the AcctGatherProfileType documentation in slurm.conf
-- Corrected the sh5util program to print the header in the csv file
    only once, set the debug messages at debug() level, make the argument
    check case insensitive and avoid printing duplicate \n.
-- If cannot collect energy values send message to the controller
    to drain the node and log error slurmd log file.
-- Handle complete removal of CPURunMins time at the end of the job instead
    of at multifactor poll.
-- sview - Add missing debug_flag options.
-- PGSQL - Notes about Postgres functionality being removed in the next
    version of Slurm.
-- MYSQL - fix issue when rolling up usage and events happened when a cluster
    was down (slurmctld not running) during that time period.
-- sched/wiki2 - Insure that Moab gets current CPU load information.
-- Prevent infinite loop in parsing configuration if including file containing
    one blank line.
-- Fix pack and unpack between 2.6 and 2.5.
-- Fix job state recovery logic in which a job's accounting frequency was
    not set. This would result in a value of 65534 seconds being used (the
    equivalent of NO_VAL in uint16_t), which could result in the job being
    requeued or aborted.
-- Validate a job's accounting frequency at submission time rather than
    waiting for it's initiation to possibly fail.
-- Fix CPURunMins if a job is requeued from a failed launch.
-- Fix in accounting_storage/filetxt to correct start times which sometimes
    could end up before the job started.
-- Fix issue with potentially referencing past an array in parse_time()
-- CRAY - fix issue with accelerators on a cray when parsing BASIL 1.3 XML.
-- Fix issue with a 2.5 slurmstepd locking up when talking to a 2.6 slurmd.
-- Add argument to priority plugin's priority_p_reconfig function to note
    when the association and QOS used_cpu_run_secs field has been reset.

* Changes in Slurm 2.6.0
========================
-- Fix it so bluegene and serial systems don't get warnings over new NODEDATA
    enum.
-- When a job is aborted send a message for any tasks that have completed.
-- Correction to memory per CPU calculation on system with threads and
    allocating cores or sockets.
-- Requeue batch job if it's node reboots (used to abort the job).
-- Enlarge maximum size of srun's hostlist file.
-- IPMI - Fix first poll to get correct consumed_energy for a step.
-- Correction to job state recovery logic that could result in assert failure.
-- Record partial step accounting record if allocated nodes fail abnormally.
-- Accounting - fix issue where PrivateData=jobs or users could potentially
    show information to users that had no associations on the system.
-- Make PrivateData in slurmdbd.conf case insensitive.
-- sacct/sstat - Add format option ConsumedEnergyRaw to print full energy
    values.

* Changes in Slurm 2.6.0rc2
===========================
-- HDF5 - Fix issue with Ubuntu where HDF5 development headers are
    overwritten by the parallel versions thus making it so we need handle
    both cases.
-- ACCT_GATHER - handle suspending correctly for polling threads.
-- Make SLURM_DISTRIBUTION env var hold both types of distribution if
    specified.
-- Remove hardcoded /usr/local from slurm.spec.
-- Modify slurmctld locking to improve performance under heavy load with
    very large numbers of batch job submissions or job cancellations.
-- sstat - Fix issue where if -j wasn't given allow last argument to be checked
    for as the job/step id.
-- IPMI - fix adjustment on poll when using EnergyIPMICalcAdjustment.

* Changes in Slurm 2.6.0rc1
===========================
-- Added helper script for launching symmetric and MIC-only MPI tasks within
    SLURM (in contribs/mic/mpirun-mic).
-- Change maximum delay for state save from 2 secs to 5 secs. Make timeout
    configurable at build time by defining SAVE_MAX_WAIT.
-- Modify slurmctld data structure locking to interleave read and write
    locks rather than always favor write locks over read locks.
-- Added sacct format option of "ALL" to print all fields.
-- Deprecate the SchedulerParameters value of "interval" use "bf_interval"
    instead as documented.
-- Add acct_gather_profile/hdf5 to profile jobs with hdf5
-- Added MaxCPUsPerNode partition configuration parameter. This can be
    especially useful to schedule systems with GPUs.
-- Permit "scontrol reboot_node" for nodes in MAINT reservation.
-- Added "PriorityFlags" value of "SMALL_RELATIVE_TO_TIME". If set, the job's
    size component will be based upon not the job size alone, but the job's
    size divided by it's time limit.
-- Added sbatch option "--ignore-pbs" to ignore "#PBS" options in the batch
    script.
-- Rename slurm_step_ctx_params_t field from "mem_per_cpu" to "pn_min_memory".
    Job step now accepts memory specification in either per-cpu or per-node
    basis.
-- Add ability to specify host repitition count in the srun hostfile (e.g.
    "host1*2" is equivalent to "host1,host1").

* Changes in Slurm 2.6.0pre3
============================
-- Add milliseconds to default log message header (both RFC 5424 and ISO 8601
    time formats). Disable milliseconds logging using the configure
    parameter "--disable-log-time-msec". Default time format changes to
    ISO 8601 (without time zone information). Specify "--enable-rfc5424time"
    to restore the time zone information.
-- Add username (%u) to the filename pattern in the batch script.
-- Added options for front end nodes of AllowGroups, AllowUsers, DenyGroups,
    and DenyUsers.
-- Fix sched/backfill logic to initiate jobs with maximum time limit over the
    partition limit, but the minimum time limit permits it to start.
-- gres/gpu - Fix for gres.conf file with multiple files on a single line
    using a slurm expression (e.g. "File=/dev/nvidia[0-1]").
-- Replaced ipmi.conf with generic acct_gather.conf file for all acct_gather
    plugins.  For those doing development to use this follow the model set
    forth in the acct_gather_energy_ipmi plugin.
-- Added more options to update a step's information
-- Add DebugFlags=ThreadID which will print the thread id of the calling
    thread.
-- CRAY - Allocate whole node (CPUs) in reservation despite what the
    user requests.  We have found any srun/aprun afterwards will work on a
    subset of resources.

* Changes in Slurm 2.6.0pre2
============================
-- Do not purge inactive interactive jobs that lack a port to ping (added
    for MR+ operation).
-- Advanced reservations with hostname and core counts now supports asymetric
    reservations (e.g. specific different core count for each node).
-- Added slurmctld/dynalloc plugin for MapReduce+ support.
-- Added "DynAllocPort" configuration parameter.
-- Added partition paramter of SelectTypeParameters to override system-wide
    value.
-- Added cr_type to partition_info data structure.
-- Added allocated memory to node information available (within the existing
    select_nodeinfo field of the node_info_t data structure). Added Allocated
    Memory to node information displayed by sview and scontrol commands.
-- Make sched/backfill the default scheduling plugin rather than sched/builtin
    (FIFO).
-- Added support for a job having different priorities in different partitions.
-- Added new SchedulerParameters configuration parameter of "bf_continue"
    which permits the backfill scheduler to continue considering jobs for
    backfill scheduling after yielding locks even if new jobs have been
    submitted. This can result in lower priority jobs from being backfill
    scheduled instead of newly arrived higher priority jobs, but will permit
    more queued jobs to be considered for backfill scheduling.
-- Added support to purge reservation records from accounting.
-- Cray - Add support for Basil 1.3

* Changes in SLURM 2.6.0pre1
============================
-- Add "state" field to job step information reported by scontrol.
-- Notify srun to retry step creation upon completion of other job steps
    rather than polling. This results in much faster throughput for job step
    execution with --exclusive option.
-- Added "ResvEpilog" and "ResvProlog" configuration parameters to execute a
    program at the beginning and end of each reservation.
-- Added "slurm_load_job_user" function. This is a variation of
    "slurm_load_jobs", but accepts a user ID argument, potentially resulting
    in substantial performance improvement for "squeue --user=ID"
-- Added "slurm_load_node_single" function. This is a variation of
    "slurm_load_nodes", but accepts a node name argument, potentially resulting
    in substantial performance improvement for "sinfo --nodes=NAME".
-- Added "HealthCheckNodeState" configuration parameter identify node states
    on which HealthCheckProgram should be executed.
-- Remove sacct --dump --formatted-dump options which were deprecated in
    2.5.
-- Added support for job arrays (phase 1 of effort). See "man sbatch" option
    -a/--array for details.
-- Add new AccountStorageEnforce options of 'nojobs' and 'nosteps' which will
    allow the use of accounting features like associations, qos and limits but
    not keep track of jobs or steps in accounting.
-- Cray - Add new cray.conf parameter of "AlpsEngine" to specify the
    communication protocol to be used for ALPS/BASIL.
-- select/cons_res plugin: Correction to CPU allocation count logic in for
    cores without hyperthreading.
-- Added new SelectTypeParameter value of "CR_ALLOCATE_FULL_SOCKET".
-- Added PriorityFlags value of "TICKET_BASED" and merged priority/multifactor2
    plugin into priority/multifactor plugin.
-- Add "KeepAliveTime" configuration parameter controlling how long sockets
    used for srun/slurmstepd communications are kept alive after disconnect.
-- Added SLURM_SUBMIT_HOST to salloc, sbatch and srun job environment.
-- Added SLURM_ARRAY_TASK_ID to environment of job array.
-- Added squeue --array/-r option to optimize output for job arrays.
-- Added "SlurmctldPlugstack" configuration parameter for generic stack of
    slurmctld daemon plugins.
-- Removed contribs/arrayrun tool. Use native support for job arrays.
-- Modify default installation locations for RPMs to match "make install":
    _prefix /usr/local
    _slurm_sysconfdir %{_prefix}/etc/slurm
    _mandir %{_prefix}/share/man
    _infodir %{_prefix}/share/info
-- Add acct_gather_energy/ipmi which works off freeipmi for energy gathering

* Changes in Slurm 2.5.8
========================
-- Fix for slurmctld segfault on NULL front-end reason field.
-- Avoid gres step allocation errors when a job shrinks in size due to either
    down nodes or explicit resizing. Generated slurmctld errors of this type:
    "step_test ... gres_bit_alloc is NULL"
-- Fix bug that would leak memory and over-write the AllowGroups field if on
    "scontrol reconfig" when AllowNodes is manually changed using scontrol.
-- Get html/man files to install in correct places with rpms.
-- Remove --program-prefix from spec file since it appears to be added by
    default and appeared to break other things.
-- Updated the automake min version in autogen.sh to be correct.
-- Select/cons_res - Correct total CPU count allocated to a job with
    --exclusive and --cpus-per-task options
-- switch/nrt - Don't allocate network resources unless job step has 2+ nodes.
-- select/cons_res - Avoid extraneous "oversubscribe" error messages.
-- Reorder get config logic to avoid deadlock.
-- Enforce QOS MaxCPUsMin limit when job submission contains no user-specified
    time limit.
-- EpilogSlurmctld pthread is passed required arguments rather than a pointer
    to the job record, which under some conditions could be purged and result
    in an invalid memory reference.

* Changes in Slurm 2.5.7
========================
-- Fix for linking to the select/cray plugin to not give warning about
    undefined variable.
-- Add missing symbols to the xlator.h
-- Avoid placing pending jobs in AdminHold state due to backfill scheduler
    interactions with advanced reservation.
-- Accounting - make average by task not cpu.
-- CRAY - Change logging of transient ALPS errors from error() to debug().
-- POE - Correct logic to support poe option "-euidevice sn_all" and
    "-euidevice sn_single".
-- Accounting - Fix minor initialization error.
-- POE - Correct logic to support srun network instances count with POE.
-- POE - With the srun --launch-cmd option, report proper task count when
    the --cpus-per-task option is used without the --ntasks option.
-- POE - Fix logic binding tasks to CPUs.
-- sview - Fix race condition where new information could of slipped past
    the node tab and we didn't notice.
-- Accounting - Fix an invalid memory read when slurmctld sends data about
    start job to slurmdbd.
-- If a prolog or epilog failure occurs, drain the node rather than setting it
    down and killing all of its jobs.
-- Priority/multifactor - Avoid underflow in half-life calculation.
-- POE - pack missing variable to allow fanout (more than 32 nodes)
-- Prevent clearing reason field for pending jobs. This bug was introduced in
    v2.5.5 (see "Reject job at submit time ...").
-- BGQ - Fix issue with preemption on sub-block jobs where a job would kill
    all preemptable jobs on the midplane instead of just the ones it needed to.
-- switch/nrt - Validate dynamic window allocation size.
-- BGQ - When --geo is requested do not impose the default conn_types.
-- CRAY - Support CLE 4.2.0
-- RebootNode logic - Defers (rather than forgets) reboot request with job
    running on the node within a reservation.
-- switch/nrt - Correct network_id use logic. Correct support for user sn_all
    and sn_single options.
-- sched/backfill - Modify logic to reduce overhead under heavy load.
-- Fix job step allocation with --exclusive and --hostlist option.
-- Select/cons_res - Fix bug resulting in error of "cons_res: sync loop not
    progressing, holding job #"
-- checkpoint/blcr - Reset max_nodes from zero to NO_VAL on job restart.
-- launch/poe - Fix for hostlist file support with repeated host names.
-- priority/multifactor2 - Prevent possible divide by zero.
-- srun - Don't check for executable if --test-only flag is used.
-- energy - On a single node only use the last task for gathering energy.
    Since we don't currently track energy usage per task (only per step).
    Otherwise we get double the energy.

* Changes in Slurm 2.5.6
========================
-- Gres fix for requeued jobs.
-- Gres accounting - Fix regression in 2.5.5 for keeping track of gres
    requested and allocated.

* Changes in Slurm 2.5.5
========================
-- Fix for sacctmgr add qos to handle the 'flags' option.
-- Export SLURM_ environment variables from sbatch, even if "--export"
    option does not explicitly list them.
-- If node is in more than one partition, correct counting of allocated CPUs.
-- If step requests more CPUs than possible in specified node count of job
    allocation then return ESLURM_TOO_MANY_REQUESTED_CPUS rather than
    ESLURM_NODES_BUSY and retrying.
-- CRAY - Fix SLURM_TASKS_PER_NODE to be set correctly.
-- Accounting - more checks for strings with a possible `'` in it.
-- sreport - Fix by adding planned down time to utilization reports.
-- Do not report an error when sstat identifies job steps terminated during
    its execution, but log using debug type message.
-- Select/cons_res - Permit node removed from job by going down to be returned
    to service and re-used by another job.
-- Select/cons_res - Tighter packing of job allocations on sockets.
-- SlurmDBD - fix to allow user root along with the slurm user to register a
    cluster.
-- Select/cons_res - Fix for support of consecutive node option.
-- Select/cray - Modify build to enable direct use of libslurm library.
-- Bug fixes related to job step allocation logic.
-- Cray - Disable enforcement of MaxTasksPerNode, which is not applicable
    with launch/aprun.
-- Accounting - When rolling up data from past usage ignore "idle" time from
    a reservation when it has the "Ignore_Jobs" flag set.  Since jobs could run
    outside of the reservation in it's nodes without this you could have
    double time.
-- Accounting - Minor fix to avoid reuse of variable erroneously.
-- Reject job at submit time if the node count is invalid. Previously such a
    job submitted to a DOWN partition would be queued.
-- Purge vestigial job scripts when the slurmd cold starts or slurmstepd
    terminates abnormally.
-- Add support for FreeBSD.
-- Add sanity check for NULL cluster names trying to register.
-- BGQ - Push action 'D' info to scontrol for admins.
-- Reset a job's reason from PartitionDown when the partition is set up.
-- BGQ - Handle issue where blocks would have a pending job on them and
    while it was free cnodes would go into software error and kill the job.
-- BGQ - Fix issue where if for some reason we are freeing a block with
    a pending job on it we don't kill the job.
-- BGQ - Fix race condition were a job could of been removed from a block
    without it still existing there.  This is extremely rare.
-- BGQ - Fix for when a step completes in Slurm before the runjob_mux notifies
    the slurmctld there were software errors on some nodes.
-- BGQ - Fix issue on state recover if block states are not around
    and when reading in state from DB2 we find a block that can't be created.
    You can now do a clean start to rid the bad block.
-- Modify slurmdbd to retransmit to slurmctld daemon if it is not responding.
-- BLUEGENE - Fix issue where when doing backfill preemptable jobs were
    never looked at to determine eligibility of backfillable job.
-- Cray/BlueGene - Disable srun --pty option unless LaunchType=launch/slurm.
-- CRAY - Fix sanity check for systems with more than 32 cores per node.
-- CRAY - Remove other objects from MySQL query that are available from
    the XML.
-- BLUEGENE - Set the geometry of a job when a block is picked and the job
    isn't a sub-block job.
-- Cray - avoid check of macro versions of CLE for version 5.0.
-- CRAY - Fix memory issue with reading in the cray.conf file.
-- CRAY - If hostlist is given with srun make sure the node count is the same
    as the hosts given.
-- CRAY - If task count specified, but no tasks-per-node, then set the tasks
    per node in the BASIL reservation request.
-- CRAY - fix issue with --mem option not giving correct amount of memory
    per cpu.
-- CRAY - Fix if srun --mem is given outside an allocation to set the
    APRUN_DEFAULT_MEMORY env var for aprun.  This scenario will not display
    the option when used with --launch-cmd.
-- Change sview to use GMutex instead of GStaticMutex
-- CRAY - set APRUN_DEFAULT_MEMROY instead of CRAY_AUTO_APRUN_OPTIONS
-- sview - fix issue where if a partition was completely in one state the
    cpu count would be reflected correctly.
-- BGQ - fix for handling half rack system in STATIC of OVERLAP mode to
    implicitly create full system block.
-- CRAY - Dynamically create BASIL XML buffer to resize as needed.
-- Fix checking if QOS limit MaxCPUMinsPJ is set along with DenyOnLimit to
    deny the job instead of holding it.
-- Make sure on systems that use a different launcher than launch/slurm not
    to attempt to signal tasks on the frontend node.
-- Cray - when a step is requested count other steps running on nodes in the
    allocation as taking up the entire node instead of just part of the node
    allocated.  And always enforce exclusive on a step request.
-- Cray - display correct nodelist, node/cpu count on steps.

* Changes in Slurm 2.5.4
========================
-- Fix bug in PrologSlurmctld use that would block job steps until node
    responds.
-- CRAY - If a partition has MinNodes=0 and a batch job doesn't request nodes
    put the allocation to 1 instead of 0 which prevents the allocation to
    happen.
-- Better debug when the database is down and using the --cluster option in
    the user commands.
-- When asking for job states with sacct, default to 'now' instead of midnight
    of the current day.
-- Fix for handling a test-only job or immediate job that fails while being
    built.
-- Comment out all of the logic in the job_submit/defaults plugin. The logic
    is only an example and not meant for actual use.
-- Eliminate configuration file 4096 character line limitation.
-- More robust logic for tree message forward
-- BGQ - When cnodes fail in a timeout fashion correctly look up parent
    midplane.
-- Correct sinfo "%c" (node's CPU count) output value for Bluegene systems.
-- Backfill - Responsive improvements for systems with large numbers of jobs
    (>5000) and using the SchedulerParameters option bf_max_job_user.
-- slurmstepd: ensure that IO redirection openings from/to files correctly
    handle interruption
-- BGQ - Able to handle when midplanes go into Hardware::SoftwareFailure
-- GRES - Correct tracking of specific resources used after slurmctld restart.
    Counts would previously go negative as jobs terminate and decrement from
    a base value of zero.
-- Fix for priority/multifactor2 plugin to not assert when configured with
    --enable-debug.
-- Select/cons_res - If the job request specified --ntasks-per-socket and the
    allocation using is cores, then pack the tasks onto the sockets up to the
    specified value.
-- BGQ - If a cnode goes into an 'error' state and the block containing the
    cnode does not have a job running on it do not resume the block.
-- BGQ - Handle blocks that don't free themselves in a reasonable time better.
-- BGQ - Fix for signaling steps when allocation ends before step.
-- Fix for backfill scheduling logic with job preemption; starts more jobs.
-- xcgroup - remove bugs with EINTR management in write calls
-- jobacct_gather - fix total values to not always == the max values.
-- Fix for handling node registration messages from older versions without
    energy data.
-- BGQ - Allow user to request full dimensional mesh.
-- sdiag command - Correction to jobs started value reported.
-- Prevent slurmctld assert when invalid change to reservation with running
    jobs is made.
-- BGQ - If signal is NODE_FAIL allow forward even if job is completing
    and timeout in the runjob_mux trying to send in this situation.
-- BGQ - More robust checking for correct node, task, and ntasks-per-node
    options in srun, and push that logic to salloc and sbatch.
-- GRES topology bug in core selection logic fixed.
-- Fix to handle init.d script for querying status and not return 1 on
    success.

* Changes in SLURM 2.5.3
========================
-- Gres/gpu plugin - If no GPUs requested, set CUDA_VISIBLE_DEVICES=NoDevFiles.
    This bug was introduced in 2.5.2 for the case where a GPU count was
    configured, but without device files.
-- task/affinity plugin - Fix bug in CPU masks for some processors.
-- Modify sacct command to get format from SACCT_FORMAT environment variable.
-- BGQ - Changed order of library inclusions and fixed incorrect declaration
    to compile correctly on newer compilers
-- Fix for not building sview if glib exists on a system but not the gtk libs.
-- BGQ - Fix for handling a job cleanup on a small block if the job has long
    since left the system.
-- Fix race condition in job dependency logic which can result in invalid
    memory reference.

* Changes in SLURM 2.5.2
========================
-- Fix advanced reservation recovery logic when upgrading from version 2.4.
-- BLUEGENE - fix for QOS/Association node limits.
-- Add missing "safe" flag from print of AccountStorageEnforce option.
-- Fix logic to optimize GRES topology with respect to allocated CPUs.
-- Add job_submit/all_partitions plugin to set a job's default partition
    to ALL available partitions in the cluster.
-- Modify switch/nrt logic to permit build without libnrt.so library.
-- Handle srun task launch failure without duplicate error messages or abort.
-- Fix bug in QoS limits enforcement when slurmctld restarts and user not yet
    added to the QOS list.
-- Fix issue where sjstat and sjobexitmod was installed in 2 different RPMs.
-- Fix for job request of multiple partitions in which some partitions lack
    nodes with required features.
-- Permit a job to use a QOS they do not have access to if an administrator
    manually set the job's QOS (previously the job would be rejected).
-- Make more variables available to job_submit/lua plugin: slurm.MEM_PER_CPU,
    slurm.NO_VAL, etc.
-- Fix topology/tree logic when nodes defined in slurm.conf get re-ordered.
-- In select/cons_res, correct logic to allocate whole sockets to jobs. Work
    by Magnus Jonsson, Umea University.
-- In select/cons_res, correct logic when job removed from only some nodes.
-- Avoid apparent kernel bug in 2.6.32 which apparently is solved in
    at least 3.5.0.  This avoids a stack overflow when running jobs on
    more than 120k nodes.
-- BLUEGENE - If we made a block that isn't runnable because of a overlapping
    block, destroy it correctly.
-- Switch/nrt - Dynamically load libnrt.so from within the plugin as needed.
    This eliminates the need for libnrt.so on the head node.
-- BLUEGENE - Fix in reservation logic that could cause abort.

* Changes in SLURM 2.5.1
========================
-- Correction to hostlist sorting for hostnames that contain two numeric
    components and the first numeric component has various sizes (e.g.
    "rack9blade1" should come before "rack10blade1")
-- BGQ - Only poll on initialized blocks instead of calling getBlocks on
    each block independently.
-- Fix of task/affinity plugin logic for Power7 processors having hyper-
    threading disabled (cpu mask has gaps).
-- Fix of job priority ordering with sched/builtin and priority/multifactor.
    Patch from Chris Read.
-- CRAY - Fix for setting up the aprun for a large job (+2000 nodes).
-- Fix for race condition related to compute node boot resulting in node being
    set down with reason of "Node <name> unexpectedly rebooted"
-- RAPL - Fix for handling errors when opening msr files.
-- BGQ - Fix for salloc/sbatch to do the correct allocation when asking for
    -N1 -n#.
-- BGQ - in emulation make it so we can pretend to run large jobs (>64k nodes)
-- BLUEGENE - Correct method to update conn_type of a job.
-- BLUEGENE - Fix issue with preemption when needing to preempt multiple jobs
    to make one job run.
-- Fixed issue where if an srun dies inside of an allocation abnormally it
    would of also killed the allocation.
-- FRONTEND - fixed issue where if a systems nodes weren't defined in the
    slurm.conf with NodeAddr's signals going to a step could be handled
    incorrectly.
-- If sched/backfill starts a job with a QOS having NO_RESERVE and not job
    time limit, start it with the partition time limit (or one year if the
    partition has no time limit) rather than NO_VAL (140 year time limit);
-- Alter hostlist logic to allocate large grid dynamically instead of on
    stack.
-- Change RPC version checks to support version 2.5 slurmctld with version 2.4
    slurmd daemons.
-- Correct core reservation logic for use with select/serial plugin.
-- Exit scontrol command on stdin EOF.
-- Disable job --exclusive option with select/serial plugin.

* Changes in SLURM 2.5.0
========================
-- Add DenyOnLimit flag for QOS to deny jobs at submission time if they
    request resources that reach a 'Max' limit.
-- Permit SlurmUser or operator to change QOS of non-pending jobs (e.g.
    running jobs).
-- BGQ - move initial poll to beginning of realtime interaction, which will
    also cause it to run if the realtime server ever goes away.

* Changes in SLURM 2.5.0-rc2
============================
-- Modify sbcast logic to survive slurmd daemon restart while file a
    transmission is in progress.
-- Add retry logic to munge encode/decode calls. This is needed if the munge
    deamon is under very heavy load (e.g. with 1000 slurmd daemons per compute
    node).
-- Add launch and acct_gather_energy plugins to RPMs.
-- Restore support for srun "--mpi=list" option.
-- CRAY - Introduce step accounting for a Cray.
-- Modify srun to abandon I/O 60 seconds after the last task ends. Otherwise
    an aborted slurmstepd can cause the srun process to hang indefinitely.
-- ENERGY - RAPL - alter code to close open files (and only open them once
    where needed)
-- If the PrologSlurmctld fails, then requeue the job an indefinite number
    of times instead of only one time.

* Changes in SLURM 2.5.0-rc1
============================
-- Added Prolog and Epilog Guide (web page). Based upon work by Jason Sollom,
    Cray Inc. and used by permission.
-- Restore gang scheduling functionality. Preemptor was not being scheduled.
    Fix for bugzilla #3.
-- Add "cpu_load" to node information. Populate CPULOAD in node information
    reported to Moab cluster manager.
-- Preempt jobs only when insufficient idle resources exist to start job,
    regardless of the node weight.
-- Added priority/multifactor2 plugin based upon ticket distribution system.
    Work by Janne Blomqvist, Aalto University.
-- Add SLURM_NODELIST to environment variables available to Prolog and Epilog.
-- Permit reservations to allow or deny access by account and/or user.
-- Add ReconfigFlags value of KeepPartState. See "man slurm.conf" for details.
-- Modify the task/cgroup plugin adding a task_pre_launch_priv function and
    move slurmstepd outside of the step's cgroup. Work by Matthieu Hautreux.
-- Intel MIC processor support added using gres/mic plugin. BIG thanks to
    Olli-Pekka Lehto, CSC-IT Center for Science Ltd.
-- Accounting - Change empty jobacctinfo structs to not actually be used
    instead of putting 0's into the database we put NO_VALS and have sacct
    figure out jobacct_gather wasn't used.
-- Cray - Prevent calling basil_confirm more than once per job using a flag.
-- Fix bug with topology/tree and job with min-max node count. Now try to
    get max node count rather than minimizing leaf switches used.
-- Add AccountingStorageEnforce=safe option to provide method to avoid jobs
    launching that wouldn't be able to run to completion because of a
    GrpCPUMins limit.
-- Add support for RFC 5424 timestamps in logfiles. Disable with configuration
    option of "--disable-rfc5424time". By Janne Blomqvist, Aalto University.
-- CRAY - Replace srun.pl with launch/aprun plugin to use srun to wrap the
    aprun process instead of a perl script.
-- srun - Rename --runjob-opts to --launcher-opts to be used on systems other
    than BGQ.
-- Added new DebugFlags - Energy for AcctGatherEnergy plugins.
-- start deprecation of sacct --dump --fdump
-- BGQ - added --verbose=OFF when srun --quiet is used
-- Added acct_gather_energy/rapl plugin to record power consumption by job.
    Work by Yiannis Georgiou, Martin Perry, et. al., Bull

* Changes in SLURM 2.5.0.pre3
=============================
-- Add Google search to all web pages.
-- Add sinfo -T option to print reservation information. Work by Bill Brophy,
    Bull.
-- Force slurmd exit after 2 minute wait, even if threads are hung.
-- Change node_req field in struct job_resources from 8 to 32 bits so we can
    run more than 256 jobs per node.
-- sched/backfill: Improve accuracy of expected job start with respect to
    reservations.
-- sinfo partition field size will be set the the length of the longest
    partition name by default.
-- Make it so the parse_time will return a valid 0 if given epoch time and
    set errno == ESLURM_INVALID_TIME_VALUE on error instead.
-- Correct srun --no-alloc logic when node count exceeds node list or task
    task count is not a multiple of the node count. Work by Hongjia Cao, NUDT.
-- Completed integration with IBM Parallel Environment including POE and IBM's
    NRT switch library.

* Changes in SLURM 2.5.0.pre2
=============================
-- When running with multiple slurmd daemons per node, enable specifying a
    range of ports on a single line of the node configuration in slurm.conf.
-- Add reservation flag of Part_Nodes to allocate all nodes in a partition to
    a reservation and automatically change the reservation when nodes are
    added to or removed from the reservation. Based upon work by
    Bill Brophy, Bull.
-- Add support for advanced reservation for specific cores rather than whole
    nodes. Current limiations: homogeneous cluster, nodes idle when reservation
    created, and no more than one reservation per node. Code is still under
    development. Work by Alejandro Lucero Palau, et. al, BSC.
-- Add DebugFlag of Switch to log switch plugin details.
-- Correct job node_cnt value in job completion plugin when job fails due to
    down node. Previously was too low by one.
-- Add new srun option --cpu-freq to enable user control over the job's CPU
    frequency and thus it's power consumption. NOTE: cpu frequency is not
    currently preserved for jobs being suspended and later resumed. Work by
    Don Albert, Bull.
-- Add node configuration information about "boards" and optimize task
    placement on minimum number of boards. Work by Rod Schultz, Bull.

* Changes in SLURM 2.5.0.pre1
=============================
-- Add new output to "scontrol show configuration" of LicensesUsed. Output is
    "name:used/total"
-- Changed jobacct_gather plugin infrastructure to be cleaner and easier to
    maintain.
-- Change license option count separator from "*" to ":" for consistency with
    the gres option (e.g. "--licenses=foo:2 --gres=gpu:2"). The "*" will still
    be accepted, but is no longer documented.
-- Permit more than 100 jobs to be scheduled per node (new limit is 250
    jobs).
-- Restructure of srun code to allow outside programs to utilize existing
    logic.

* Changes in SLURM 2.4.6
========================
-- Correct WillRun authentication logic when issued for non-job owner.
-- BGQ - fix memory leak
-- BGQ - Fix to check block for action 'D' if it also has nodes in error.

* Changes in SLURM 2.4.5
========================
-- Cray - On job kill requeust, send SIGCONT, SIGTERM, wait KillWait and send
    SIGKILL. Previously just sent SIGKILL to tasks.
-- BGQ - Fix issue when running srun outside of an allocation and only
    specifying the number of tasks and not the number of nodes.
-- BGQ - validate correct ntasks_per_node
-- BGQ - when srun -Q is given make runjob be quiet
-- Modify use of OOM (out of memory protection) for Linux 2.6.36 kernel
    or later. NOTE: If you were setting the environment variable
    SLURMSTEPD_OOM_ADJ=-17, it should be set to -1000 for Linux 2.6.36 kernel
    or later.
-- BGQ - Fix job step timeout actually happen when done from within an
    allocation.
-- Reset node MAINT state flag when a reservation's nodes or flags change.
-- Accounting - Fix issue where QOS usage was being zeroed out on a
    slurmctld restart.
-- BGQ - Add 64 tasks per node as a valid option for srun when used with
    overcommit.
-- BLUEGENE - With Dynamic layout mode - Fix issue where if a larger block
    was already in error and isn't deallocating and underlying hardware goes
    bad one could get overlapping blocks in error making the code assert when
    a new job request comes in.
-- BGQ - handle pending actions on a block better when trying to deallocate it.
-- Accounting - Fixed issue where if nodenames have changed on a system and
    you query against that with -N and -E you will get all jobs during that
    time instead of only the ones running on -N.
-- BGP - Fix for HTC mode
-- Accounting - If a job start message fails to the SlurmDBD reset the db_inx
    so it gets sent again.  This isn't a major problem since the start will
    happen when the job ends, but this does make things cleaner.
-- If an salloc is waiting for an allocation to happen and is canceled by the
    user mark the state canceled instead of completed.
-- Fix issue in accounting if a user puts a '\' in their job name.
-- Accounting - Fix for if asking for users or accounts that were deleted
    with associations get the deleted associations as well.
-- BGQ - Handle shared blocks that need to be removed and have jobs running
    on them.  This should only happen in extreme conditions.
-- Fix inconsistency for hostlists that have more than 1 range.
-- BGQ - Add mutex around recovery for the Real Time server to avoid hitting
    DB2 so hard.
-- BGQ - If an allocation exists on a block that has a 'D' action on it fail
    job on future step creation attempts.

* Changes in SLURM 2.4.4
========================
-- BGQ - minor fix to make build work in emulated mode.
-- BGQ - Fix if large block goes into error and the next highest priority jobs
    are planning on using the block.  Previously it would fail those jobs
    erroneously.
-- BGQ - Fix issue when a cnode going to an error (not SoftwareError) state
    with a job running or trying to run on it.
-- Execute slurm_spank_job_epilog when there is no system Epilog configured.
-- Fix for srun --test-only to work correctly with timelimits
-- BGQ - If a job goes away while still trying to free it up in the
    database, and the job is running on a small block make sure we free up
    the correct node count.
-- BGQ - Logic added to make sure a job has finished on a block before it is
    purged from the system if its front-end node goes down.
-- Modify strigger so that a filter option of "--user=0" is supported.
-- Correct --mem-per-cpu logic for core or socket allocations with multiple
    threads per core.
-- Fix for older < glibc 2.4 systems to use euidaccess() instead of eaccess().
-- BLUEGENE - Do not alter a pending job's node count when changing it's
    partition.
-- BGQ - Add functionality to make it so we track the actions on a block.
    This is needed for when a free request is added to a block but there are
    jobs finishing up so we don't start new jobs on the block since they will
    fail on start.
-- BGQ - Fixed InactiveLimit to work correctly to avoid scenarios where a
    user's pending allocation was started with srun and then for some reason
    the slurmctld was brought down and while it was down the srun was removed.
-- Fixed InactiveLimit math to work correctly
-- BGQ - Add logic to make it so blocks can't use a midplane with a nodeboard
    in error for passthrough.
-- BGQ - Make it so if a nodeboard goes in error any block using that midplane
    for passthrough gets removed on a dynamic system.
-- BGQ - Fix for printing realtime server debug correctly.
-- BGQ - Cleaner handling of cnode failures when reported through the runjob
    interface instead of through the normal method.
-- smap - spread node information across multiple lines for larger systems.
-- Cray - Defer salloc until after PrologSlurmctld completes.
-- Correction to slurmdbd communications failure handling logic, incorrect
    error codes returned in some cases.

* Changes in SLURM 2.4.3
========================
-- Accounting - Fix so complete 32 bit numbers can be put in for a priority.
-- cgroups - fix if initial directory is non-existent SLURM creates it
    correctly.  Before the errno wasn't being checked correctly
-- BGQ - fixed srun when only requesting a task count and not a node count
    to operate the same way salloc or sbatch did and assign a task per cpu
    by default instead of task per node.
-- Fix salloc --gid to work correctly.  Reported by Brian Gilmer
-- BGQ - fix smap to set the correct default MloaderImage
-- BLUEGENE - updated documentation.
-- Close the batch job's environment file when it contains no data to avoid
    leaking file descriptors.
-- Fix sbcast's credential to last till the end of a job instead of the
    previous 20 minute time limit.  The previous behavior would fail for
    large files 20 minutes into the transfer.
-- Return ESLURM_NODES_BUSY rather than ESLURM_NODE_NOT_AVAIL error on job
    submit when required nodes are up, but completing a job or in exclusive
    job allocation.
-- Add HWLOC_FLAGS so linking to libslurm works correctly
-- BGQ - If using backfill and a shared block is running at least one job
    and a job comes through backfill and can fit on the block without ending
    jobs don't set an end_time for the running jobs since they don't need to
    end to start the job.
-- Initialize bind_verbose when using task/cgroup.
-- BGQ - Fix for handling backfill much better when sharing blocks.
-- BGQ - Fix for making small blocks on first pass if not sharing blocks.
-- BLUEGENE - Remove force of default conn_type instead of leaving NAV
    when none are requested.  The Block allocator sets it up temporarily so
    this isn't needed.
-- BLUEGENE - Fix deadlock issue when dealing with bad hardware if using
    static blocks.
-- Fix to mysql plugin during rollup to only query suspended table when jobs
    reported some suspended time.
-- Fix compile with glibc 2.16 (Kacper Kowalik)
-- BGQ - fix for deadlock where a block has error on it and all jobs
    running on it are preemptable by scheduling job.
-- proctrack/cgroup: Exclude internal threads from "scontrol list pids".
    Patch from Matthieu Hautreux, CEA.
-- Memory leak fixed for select/linear when preempting jobs.
-- Fix if updating begin time of a job to update the eligible time in
    accounting as well.
-- BGQ - make it so you can signal steps when signaling the job allocation.
-- BGQ - Remove extra overhead if a large block has many cnode failures.
-- Priority/Multifactor - Fix issue with age factor when a job is estimated to
    start in the future but is able to run now.
-- CRAY - update to work with ALPS 5.1
-- BGQ - Handle issue of speed and mutexes when polling instead of using the
    realtime server.
-- BGQ - Fix minor sorting issue with sview when sorting by midplanes.
-- Accounting - Fix for handling per user max node/cpus limits on a QOS
    correctly for current job.
-- Update documentation for -/+= when updating a reservation's
    users/accounts/flags
-- Update pam module to work if using aliases on nodes instead of actual
    host names.
-- Correction to task layout logic in select/cons_res for job with minimum
    and maximum node count.
-- BGQ - Put final poll after realtime comes back into service to avoid
    having the realtime server go down over and over again while waiting
    for the poll to finish.
-- task/cgroup/memory - ensure that ConstrainSwapSpace=no is correctly
    handled. Work by Matthieu Hautreux, CEA.
-- CRAY - Fix for sacct -N option to work correctly
-- CRAY - Update documentation to describe installation from rpm instead
    or previous piecemeal method.
-- Fix sacct to work with QOS' that have previously been deleted.
-- Added all available limits to the output of sacctmgr list qos

* Changes in SLURM 2.4.2
========================
-- BLUEGENE - Correct potential deadlock issue when hardware goes bad and
    there are jobs running on that hardware.
-- If job is submitted to more than one partition, it's partition pointer can
    be set to an invalid value. This can result in the count of CPUs allocated
    on a node being bad, resulting in over- or under-allocation of its CPUs.
    Patch by Carles Fenoy, BSC.
-- Fix bug in task layout with select/cons_res plugin and --ntasks-per-node
    option. Patch by Martin Perry, Bull.
-- BLUEGENE - remove race condition where if a block is removed while waiting
    for a job to finish on it the number of unused cpus wasn't updated
    correctly.
-- BGQ - make sure we have a valid block when creating or finishing a step
    allocation.
-- BLUEGENE - If a large block (> 1 midplane) is in error and underlying
    hardware is marked bad remove the larger block and create a block over
    just the bad hardware making the other hardware available to run on.
-- BLUEGENE - Handle job completion correctly if an admin removes a block
    where other blocks on an overlapping midplane are running jobs.
-- BLUEGENE - correctly remove running jobs when freeing a block.
-- BGQ - correct logic to place multiple (< 1 midplane) steps inside a
    multi midplane block allocation.
-- BGQ - Make it possible for a multi midplane allocation to run on more
    than 1 midplane but not the entire allocation.
-- BGL - Fix for syncing users on block from Tim Wickberg
-- Fix initialization of protocol_version for some messages to make sure it
    is always set when sending or receiving a message.
-- Reset backfilled job counter only when explicitly cleared using scontrol.
    Patch from Alejandro Lucero Palau, BSC.
-- BLUEGENE - Fix for handling blocks when a larger block will not free and
    while it is attempting to free underlying hardware is marked in error
    making small blocks overlapping with the freeing block.  This only
    applies to dynamic layout mode.
-- Cray and BlueGene - Do not treat lack of usable front-end nodes when
    slurmctld deamon starts as a fatal error. Also preserve correct front-end
    node for jobs when there is more than one front-end node and the slurmctld
    daemon restarts.
-- Correct parsing of srun/sbatch input/output/error file names so that only
    the name "none" is mapped to /dev/null and not any file name starting
    with "none" (e.g. "none.o").
-- BGQ - added version string to the load of the runjob_mux plugin to verify
    the current plugin has been loaded when using runjob_mux_refresh_config
-- CGROUPS - Use system mount/umount function calls instead of doing fork
    exec of mount/umount from Janne Blomqvist.
-- BLUEGENE - correct start time setup when no jobs are blocking the way
    from Mark Nelson
-- Fixed sacct --state=S query to return information about suspended jobs
    current or in the past.
-- FRONTEND - Made error warning more apparent if a frontend node isn't
    configured correctly.
-- BGQ - update documentation about runjob_mux_refresh_config which works
    correctly as of IBM driver V1R1M1 efix 008.

(asau)

2013-12-06 05:53:23 UTC MAIN commitmail json YAML

Updated ham/trustedQSL to 2.0

(mef)

2013-12-06 05:52:42 UTC MAIN commitmail json YAML

(Upstream)
  tqsl-2.0 is released
(pkgsrc)
  - Tweaks for release candidate (say DIST_SUBDIR etc) are removed
  - DEPENDS+= mozilla-rootcerts are added now. This will avoid the error as:
      "Peer certificate cannot be authenticated with given CA certificates"
      (SSL certificate problem: self signed certificate in certificate chain)
      see also http://curl.haxx.se/docs/sslcerts.html
  - Add SUBST_CLASSES+= macro_S to avoid name (_S) conflicts on NetBSD-5.*
  - Add MESSAGE for rootcerts and firt thing to do after installaton

(mef)

2013-12-06 02:37:30 UTC MAIN commitmail json YAML

Note PKGREVISION bump of mendexk

(minskim)

2013-12-06 02:36:54 UTC MAIN commitmail json YAML

Sync mendexk with TeX Live 2013

Changes:
- Handle input files with Dos/Windows (CRLF) line endings.
- Always use KPATHSEA.

(minskim)

2013-12-06 02:34:14 UTC MAIN commitmail json YAML

Note PKGREVISION bump of dviljk

(minskim)

2013-12-06 02:33:32 UTC MAIN commitmail json YAML

Sync dviljk with TeX Live 2013

Changes:
- Code cleanup

(minskim)

2013-12-06 01:08:27 UTC MAIN commitmail json YAML

Very minor typo in comment part (- to _) .

(mef)

2013-12-06 00:30:08 UTC MAIN commitmail json YAML

Updated security/munge to 0.5.11

(asau)

2013-12-06 00:24:10 UTC MAIN commitmail json YAML

Update to MUNGE 0.5.11

munge-0.5.11 (2013-08-27):
- Added --mlockall cmdline opt to munged.
- Added --syslog cmdline opt to munged.
- Added --uid and --gid cmdline opts to munge.
- Added numeric timezone to unmunge timestamp output.
- Added timer to munged for periodically stirring PRNG entropy pool.
- Added support for pkg-config.
- Added support for systemd.
- Changed timer thread to better accommodate misbehaving system clocks.
- Changed behavior of munge --string cmdline opt to not append newline.
- Changed init script chkconfig priority levels to start after ntpd/ntpdate.
- Changed init script so munged runs as munge user by default.
- Fixed HMAC validation timing attack vulnerability.
- Fixed bug with munged being unable to restart if daemon not cleanly shutdown.
- Fixed bug with large groups triggering "numerical result out of range" error.
- Fixed bug causing high CPU utilization on FreeBSD when processing group info.
- Fixed bug causing IPv6-only hosts to exit due to failed hostname resolution.
- Fixed autoconf check that was not portable across shells.
- Fixed init script LSB Header on openSUSE.
- Replaced perl build-time dependency with awk.

(asau)

2013-12-05 23:31:44 UTC MAIN commitmail json YAML

Updated net/libquvi-scripts to 0.4.21

(wiz)

2013-12-05 23:31:35 UTC MAIN commitmail json YAML

Update to 0.4.21:

v0.4.21  (2013-11-30) / Toni Gundogdu

Toni Gundogdu:
  - FIX: website/101greatgoals: redirect: Add URL scheme [d1313ea]
  - FIX: website/arte: Reimpl. support [7084f63]
  - FIX: website/beeg: title pattern [6dd0013]
  - FIX: website/cbsnews: Adapt to website changes [cda2d12]
  - FIX: website/publicsenat: Reimpl. support [e33d3f9]
  - FIX: website/senat: Reimpl. support [cf3210c]
  - FIX: website/spankwire: Reimpl. support [33745ae]
  - FIX: website/vimeo: Reimpl. support [ac21fa0]
  - Mark website/imdb as "FIXME" [a3e6fb3]
  - Mark website/justintv as "FIXME" [f50dc23]
  - Mark website/wdrmaus as "FIXME" [547ba93]
  - quvi/util: Add json_get function [43d2654]
  - quvi/util: Add xml_get [e24824c]
  - website/canalplus.lua: Add support for {d8,d17} [a505772]

44 files changed, 539 insertions(+), 542 deletions(-)

v0.4.20  (2013-11-04) / Toni Gundogdu

Toni Gundogdu:
  - Add website/dorkly.lua for dorkly.com [6528f5d]
  - FIX: website/collegehumor.lua [168d954]
  - FIX: website/redtube.lua: media stream URL pattern [ed756ef]
  - FIX: website/tcmag.lua: Media stream URL pattern [e90c00d]
  - website/arte.lua: Mark as FIXME [a823ef0]
  - website/vimeo.lua: Mark as FIXME [a2279ff]

14 files changed, 202 insertions(+), 189 deletions(-)

v0.4.19  (2013-10-04) / Toni Gundogdu

Toni Gundogdu:
  - FIX: website/funnyordie.lua: Media stream pattern (PORTpt9) [3160719]
  - FIX: website/liveleak.lua: media stream URL pattern [bba8e1f]

2 files changed, 8 insertions(+), 6 deletions(-)

v0.4.18  (2013-09-03) / Toni Gundogdu

Tobias Gruetzmacher:
  - FIX: website/dailymotion.lua: sequence pattern (no match: sequence) [3d71c75]
Toni Gundogdu:
  - FIX: website/funnyordie.lua: Media stream URL pattern (PORTpt9) [84c83f7]

2 files changed, 4 insertions(+), 5 deletions(-)

(wiz)

2013-12-05 17:50:00 UTC pkgsrc-2013Q3 commitmail json YAML

2013-12-05 17:45:04 UTC pkgsrc-2013Q3 commitmail json YAML

pullup to pkgsrc-2013Q3, resolves ticket #4263

Updated to nginx 1.5.7

Changes with nginx 1.5.7                                        19 Nov 2013

    *) Security: a character following an unescaped space in a request line
      was handled incorrectly (CVE-2013-4547); the bug had appeared in
      0.8.41.
      Thanks to Ivan Fratric of the Google Security Team.

    *) Change: a logging level of auth_basic errors about no user/password
      provided has been lowered from "error" to "info".

    *) Feature: the "proxy_cache_revalidate", "fastcgi_cache_revalidate",
      "scgi_cache_revalidate", and "uwsgi_cache_revalidate" directives.

    *) Feature: the "ssl_session_ticket_key" directive.
      Thanks to Piotr Sikora.

    *) Bugfix: the directive "add_header Cache-Control ''" added a
      "Cache-Control" response header line with an empty value.

    *) Bugfix: the "satisfy any" directive might return 403 error instead of
      401 if auth_request and auth_basic directives were used.
      Thanks to Jan Marc Hoffmann.

    *) Bugfix: the "accept_filter" and "deferred" parameters of the "listen"
      directive were ignored for listen sockets created during binary
      upgrade.
      Thanks to Piotr Sikora.

    *) Bugfix: some data received from a backend with unbufferred proxy
      might not be sent to a client immediately if "gzip" or "gunzip"
      directives were used.
      Thanks to Yichun Zhang.

    *) Bugfix: in error handling in ngx_http_gunzip_filter_module.

    *) Bugfix: responses might hang if the ngx_http_spdy_module was used
      with the "auth_request" directive.

    *) Bugfix: memory leak in nginx/Windows.

Changes with nginx 1.5.6                                        01 Oct 2013

    *) Feature: the "fastcgi_buffering" directive.

    *) Feature: the "proxy_ssl_protocols" and "proxy_ssl_ciphers"
      directives.
      Thanks to Piotr Sikora.

    *) Feature: optimization of SSL handshakes when using long certificate
      chains.

    *) Feature: the mail proxy supports SMTP pipelining.

    *) Bugfix: in the ngx_http_auth_basic_module when using "$apr1$"
      password encryption method.
      Thanks to Markus Linnala.

    *) Bugfix: in MacOSX, Cygwin, and nginx/Windows incorrect location might
      be used to process a request if locations were given using characters
      in different cases.

    *) Bugfix: automatic redirect with appended trailing slash for proxied
      locations might not work.

    *) Bugfix: in the mail proxy server.

    *) Bugfix: in the ngx_http_spdy_module.

Changes with nginx 1.5.5                                        17 Sep 2013

    *) Change: now nginx assumes HTTP/1.0 by default if it is not able to
      detect protocol reliably.

    *) Feature: the "disable_symlinks" directive now uses O_PATH on Linux.

    *) Feature: now nginx uses EPOLLRDHUP events to detect premature
      connection close by clients if the "epoll" method is used.

    *) Bugfix: in the "valid_referers" directive if the "server_names"
      parameter was used.

    *) Bugfix: the $request_time variable did not work in nginx/Windows.

    *) Bugfix: in the "image_filter" directive.
      Thanks to Lanshun Zhou.

    *) Bugfix: OpenSSL 1.0.1f compatibility.
      Thanks to Piotr Sikora.

Changes with nginx 1.5.4                                        27 Aug 2013

    *) Change: the "js" extension MIME type has been changed to
      "application/javascript"; default value of the "charset_types"
      directive was changed accordingly.

    *) Change: now the "image_filter" directive with the "size" parameter
      returns responses with the "application/json" MIME type.

    *) Feature: the ngx_http_auth_request_module.

    *) Bugfix: a segmentation fault might occur on start or during
      reconfiguration if the "try_files" directive was used with an empty
      parameter.

    *) Bugfix: memory leak if relative paths were specified using variables
      in the "root" or "auth_basic_user_file" directives.

    *) Bugfix: the "valid_referers" directive incorrectly executed regular
      expressions if a "Referer" header started with "https://".
      Thanks to Liangbin Li.

    *) Bugfix: responses might hang if subrequests were used and an SSL
      handshake error happened during subrequest processing.
      Thanks to Aviram Cohen.

    *) Bugfix: in the ngx_http_autoindex_module.

    *) Bugfix: in the ngx_http_spdy_module.

(schnoebe)

2013-12-05 17:43:32 UTC pkgsrc-2013Q3 commitmail json YAML

pull-up to pkgsrc-2013Q3, ticket #4264

Updated to nginx 1.4.4

Changes with nginx 1.4.4                                        19 Nov 2013

    *) Security: a character following an unescaped space in a request line
      was handled incorrectly (CVE-2013-4547); the bug had appeared in
      0.8.41.
      Thanks to Ivan Fratric of the Google Security Team.

Changes with nginx 1.4.3                                        08 Oct 2013

    *) Bugfix: a segmentation fault might occur in a worker process if the
      ngx_http_spdy_module was used with the "client_body_in_file_only"
      directive.

    *) Bugfix: a segmentation fault might occur on start or during
      reconfiguration if the "try_files" directive was used with an empty
      parameter.

    *) Bugfix: the $request_time variable did not work in nginx/Windows.

    *) Bugfix: in the ngx_http_auth_basic_module when using "$apr1$"
      password encryption method.
      Thanks to Markus Linnala.

    *) Bugfix: in the ngx_http_autoindex_module.

    *) Bugfix: in the mail proxy server.

(schnoebe)

2013-12-05 16:49:32 UTC MAIN commitmail json YAML

revert previous commit awaiting new fix for --disable-dtrace anomaly

(richard)

2013-12-05 16:47:34 UTC MAIN commitmail json YAML

- apache24-2.4.7, typo3-4.5.31.

(taca)

2013-12-05 16:45:59 UTC MAIN commitmail json YAML

Note update of TYPO3 packages:

www/typo3_45 4.5.31
www/typo3_47 4.7.16
www/typo3_60 6.0.11
www/typo3_61 6.1.6

(taca)

2013-12-05 16:45:04 UTC MAIN commitmail json YAML

Update typo3_61 to 6.1.6 (TYPO3 6.1.6).

2013-11-26  3f69433                  [RELEASE] Release of TYPO3 6.1.6 (TYPO3 Release Team)
2013-11-26  3eda399  #53918          [BUGFIX] t3skin calls addIconSprite for each lang (Michiel Roos)
2013-11-24  93ed8d2  #51650          [BUGFIX] TS: Allow "0" as strPad.padWith (Lars Peipmann)
2013-11-24  aed6051  #15958          [BUGFIX] Reload list module on clickmenu action (Bernhard Kraft)
2013-11-21  7042298  #53802          [BUGFIX] Fix moving/copying files and folders between storages (Frans Saris)
2013-11-21  b78c694  #53844          [BUGFIX] Fix regression in ResourceCompressor (Markus Klein)
2013-11-20  3d3de05  #53243          [BUGFIX] Filemtime / Filesize trigger warning (Tomita Militaru)
2013-11-20  6c5d53d  #53458          [BUGFIX] Fluid paginate widget wrong number of links (Klaas Johan Kooistra)
2013-11-20  52b751e                  Revert "[BUGFIX] Page module: Allow to paste in empty columns" (Markus Klein)
2013-11-20  dbcaf93  #44002,#35980,  [BUGFIX] Page module: Allow to paste in empty columns (Bernhard Kraft)
2013-11-19  023014c  #38766          [BUGFIX] l10n_mode for "pages" table and group fields. (Johannes Feustel)
2013-11-19  9d97a70  #53773          [BUGFIX] Fix JS error in lang module (Markus Klein)
2013-11-19  170f084  #53750          [BUGFIX] Scheduler extension sql file is invalid (Michiel Roos)
2013-11-19  abcd5e9  #34544          [BUGFIX] fix javascript error "TBE_EDITOR not defined" in sys_action (Ralf Hettinger)
2013-11-19  ba82fac  #51998          [BUGFIX] ExtDirect StateProvider should store all settings (Johannes Feustel)
2013-11-19  571c8c9  #53746          [TASK] Optimization in AbstractViewHelper (Wouter Wolters)
2013-11-18  33b0d1b  #53707          [BUGFIX] Rename hook in VariableFrontend.php (Nicole Cordes)
2013-11-18  fbd9379  #53711          [BUGFIX] additionalAttributes for be.buttons.icon-VH misses hsc (Markus Klein)
2013-11-18  fa87ad9  #53014          [BUGFIX] Check for query failures in admin methods (Thomas Maroschik)
2013-11-15  7223b78                  Revert "[BUGFIX] EM: Fetch list as html, not as json" (Helmut Hummel)
2013-11-14  62f7e87  #45724          [BUGFIX] FILES.folder does not work (Stefan Froemken)
2013-11-14  c65640d  #51234          [BUGFIX] Move beuser property mappings to global scope (Philipp Gampe)
2013-11-14  35a95b0  #17493          [BUGFIX] Fix broken edit icons on cType HTML (Stefan Neufeind)
2013-11-13  fd66dfc  #25157,#45550  [BUGFIX] Distinguish unassigend columns and colPos 0 (Georg Ringer)
2013-11-13  0641f4f  #51918          [BUGFIX] Native date and datetime values do not consider timezone (Oliver Hader)
2013-11-12  9aa1fa2  #52926          [BUGFIX] Compressor resolves dots in filenames correctly (Christian Kuhn)
2013-11-12  fa77640  #53115          [BUGFIX] T3editor: Make errors/exceptions show correctly (Stefan Neufeind)
2013-11-12  259c64d  #22136          [BUGFIX] Fix menu popup for all IE versions (Alexander Opitz)
2013-11-12  ffd8480  #52934          [BUGFIX] dataTables: Avoid sending cookie-data too often (Stefan Neufeind)
2013-11-12  c3b0ebc  #53399          [BUGFIX] Wrong usage-text for cli_dispatch (Tomita Militaru)
2013-11-12  dcdb7bb  #52904          [BUGFIX] Evaluator in JS fails with namespaces (Stefan Aebischer)
2013-11-12  cf50919  #53538          [BUGFIX] Make be.buttons.icon-ViewHelper extensible (Stefan Neufeind)
2013-11-11  fbb19b4  #52727          [TASK] Hard-coded labels in file collections (Tomita Militaru)
2013-11-11  3dd29c3  #37948          [BUGFIX] Correctly append additionalTreelistUpdateFields (Bart Dubelaar)
2013-11-11  a3153a3  #52488          [BUGFIX] Call to FlashMessageQueue::addMessage() method in extbase (Markus Klein)
2013-11-11  b61f34f  #53423          [BUGFIX] EM: Fetch list as html, not as json (Stefan Neufeind)
2013-11-10  093d7ac  #52173          [BUGFIX] Correct storage selection (follow-up) (Ernesto Baschny)
2013-11-09  7015242  #53477          [TASK] Fix superfluous strlen() on constant strings (Steffen Ritter)
2013-11-09  827bf21  #47040          [BUGFIX] Enable treeConfig overriding by Page TSconfig (Stefan Froemken)
2013-11-09  0b03e72  #53195          [BUGFIX] T3editor: Honour fileDenyPattern on saving included TS (Stefan Neufeind)
2013-11-08  6f1625f  #29179          [BUGFIX] Escape title, extension, description of scheduler tasks (Tomita Militaru)
2013-10-23  d34bde3  #31572          [BUGFIX] Exception using cObject FORM in TypoScript (Andreas Bouche)
2013-10-18  840a3a6  #35073          [BUGFIX] Enable BE search for multiple mountpoints (Georg Ringer)
2013-10-17  775a077  #52931          [TASK] Exclude central Modernizr from concatenation (Stefan Neufeind)
2013-10-17  0382419  #52570          [TASK] Tests for Persistence\Generic\Backend::getIdentifierByObject (Stefan Neufeind)
2013-10-17  b78dc4e  #50548          [BUGFIX] Getting the identifier for a lazy object fails (Marc Bastian Heinrichs)
2013-10-16  2f1fb3f  #52529          [BUGFIX] Suppress empty tag names in output of array2xml (Markus Hoelzle)
2013-10-16  b218036  #52823          [BUGFIX] Preserve vendor name in refering request (Thomas Maroschik)
2013-10-16  88cc508                  [BUGFIX] Follow-Up: Fatal error due to missing use statement (Sascha Egerer)
2013-10-15  1761850  #52845          [BUGFIX] Moving folders fails (Oliver Hader)
2013-10-15  be9b7c7  #50802          [BUGFIX] Only load folder contents if folder is initialised (Frans Saris)
2013-10-15  ce693d8  #52824          [BUGFIX] Superfluous usage of ObjectManagerException (Oliver Hader)
2013-10-15  8be996a  #51707          [FEATURE] Add getValidators to AbstractCompositeValidator (Stefan Froemken)
2013-10-15  992e4ef  #52771          [BUGFIX] Use callback in preg_replace in RemoveXSS (Jigal van Hemert)
2013-10-14  50942c2  #52773          [BUGFIX] Detect unix-styled absolute paths on Windows systems (Nicole Cordes)
2013-10-13  2889f13  #52759          [BUGFIX] Object passed to date() (Xavier Perseguers)
2013-10-12  f4f2756  #52731          [TASK] Use 6.1 branch in travis-integration for travis (Christian Kuhn)
2013-10-12  d68c114  #52728          [BUGFIX] Use BackendUtility use statement (Anja Leichsenring)
2013-10-12  33d4415  #52104          [BUGFIX] Wrong calculation of maximum value for checkbox fields (Nicole Cordes)
2013-10-12  e3d02ef  #52715          [BUGFIX] Prevent empty newline below scheduler-task-name (Stefan Neufeind)
2013-10-11  a3f8dfe  #52708          [BUGFIX] DataMapFactory::resolveTableName must remove leading backslashes (Alexander Schnitzler)
2013-10-11  9b4462b  #50912          [BUGFIX] BackendUtility::viewOnClick() called with non-integer (Oliver Hader)
2013-10-11  d910b2b  #51051          [BUGFIX] Clear_cache() must not consider page ids lower than 0 (Oliver Hader)
2013-10-11  1483967  #37611          [BUGFIX] Select available page when changing WS (Thorsten Kahler)
2013-10-11  f4e1b0e  #52636          [BUGFIX] Copy records to target page before origin page is deleted (Timo Webler)
2013-10-11  ed4e368  #17551          [BUGFIX] Create workspace placeholder with processed field content (Sascha Egerer)
2013-10-11  6f47aa5  #36573          [BUGFIX] Add workspace overlay for fetched records. (Timo Webler)
2013-10-11  d6b57e8  #37209          [BUGFIX] WS preview shows pages changes from all WS (Thorsten Kahler)
2013-10-11  fcad15e  #52530          [BUGFIX] Delete modified record in WS just deletes WS version (Sascha Egerer)
2013-10-11  3ac3429  #37065          [BUGFIX] Don't show duplicates in workspace preview (Timo Webler)
2013-10-10  394d12e  #52178          [BUGFIX] Cannot upload an extension as zip (Xavier Perseguers)
2013-10-07  8f1afaf  #49538          [BUGFIX] Fields of type file_reference are not properly indexed (Martin Borer)
2013-10-07  98625ae  #52546          [BUGFIX] Missing closing tag in ElementBrowser (Philipp Gampe)
2013-10-05  dc5b2f1  #52469          [TASK] Use instanceof comparison instead of string comparison (Benjamin Serfhos)
2013-09-30  6b2512a  #43540          [BUGFIX] TS is fetched from cache incorrectly sometimes (Dmitry Dulepov)
2013-09-28  3a3edf1  #48809,#51730,  [BUGFIX] Fix wrong handling of php and TYPO3 dependencies (Susanne Moog)
2013-09-28  9535891  #51329          [BUGFIX] Initialize extension name in command requests (Alexander Stehlik)
2013-09-27  06723a0  #52045          [BUGFIX] EmConfUtility accesses non-arrays (Markus Klein)
2013-09-27  219c381  #51588          [BUGFIX] Clear cached menu by tag (Zbigniew Jacko)
2013-09-27  b41847a  #50437          [BUGFIX] Fix jumpToUrl()-Usage in Element Browser (Benjamin Pick)
2013-09-26  6bdc8ad  #52091,#51684  [BUGFIX] Check for string before using strlen (Kilian Hann)
2013-09-26  9be6739  #52266          [BUGFIX] groupFor-VH does not work with @lazy (Stefan Froemken)
2013-09-26  d3bf620  #50913          [BUGFIX] Fix PHP warning trigged in getAuthInfoArray() (Christian Finkemeier)
2013-09-26  993dd5d  #52316          [BUGFIX] Fatal in DefaultConfiguration (Christian Kuhn)
2013-09-26  bb94fe0  #52305          [BUGFIX] Configure main extbase caches for unlimited entry lifetime (Christian Kuhn)
2013-09-26  52ff400  #52295          [TASK] Use SimpleFileBackend for t3lib_l10n cache (Christian Kuhn)
2013-09-25  f0fe1c4  #52226          [BUGFIX] EM does not link to docs.typo3.org (Xavier Perseguers)
2013-09-25  db5fb24  #51116          [BUGFIX] Increase performance of exports for caches (Markus Klein)
2013-09-25  28ee210  #52243          [BUGFIX] Remove duplicate exception code (Fabien Udriot)
2013-09-24  3f53e6b  #52173          [BUGFIX] Correct storage selection (common prefixes) (Ernesto Baschny)
2013-09-24  1d17a21  #52201          [BUGFIX] Fix broken Unit-test for #44825 (Wouter Wolters)
2013-09-23  ae9b606  #44825          [BUGFIX] Fix page.headerData + USER_INT (Helmut Hummel)
2013-09-20  7d08d29  #48912          [BUGFIX] Increase length of identifier field in sys_file (Nicole Cordes)
2013-09-20  e0600ed  #52056          [BUGFIX] Wrong exception on renaming folder (Francois Suter)
2013-09-19  9423c2c  #49328          [BUGFIX] Fix PHP warning when writing to Backend user log (Alexander Stehlik)
2013-09-17  fd534b6  #45859          [BUGFIX] Faulty expand/collapse behavior in Element Browser (Oliver Hader)
2013-09-17  ce68bcd  #19045          [BUGFIX] Fix cropping of transparent gifs with im6. (Stefan Neufeind)
2013-09-17  fb5bbbf  #50907          [BUGFIX] Form Wizard: Adds mouse pointer to docheader icons (Ernesto Baschny)
2013-09-13  0fe373b  #51981          [BUGFIX] Also consider JPEG files for IM/GM (Markus Klein)
2013-09-12  b0c54dc  #51803          [TASK] Use a 401 header if login is not successful (Georg Ringer)
2013-09-12  7169032  #47744          [BUGFIX] Replace SHOW DATABASE by query to schema (Alexander Opitz)
2013-09-12  ddf74b0  #51891          [BUGFIX] Call to undefined method setTemplateFile (Wouter Wolters)

(taca)

2013-12-05 16:44:04 UTC MAIN commitmail json YAML

Update typo60 to 6.0.11 (TYPO3 6.0.11).  Also add MESSAGE file.

2013-11-26  5e5f1d2                  [RELEASE] Release of TYPO3 6.0.11 (TYPO3 Release Team)
2013-11-26  762cb0a  #53918          [BUGFIX] t3skin calls addIconSprite for each lang (Michiel Roos)
2013-11-24  96944c0  #15958          [BUGFIX] Reload list module on clickmenu action (Bernhard Kraft)
2013-11-21  9e2a0a1  #53802          [BUGFIX] Fix moving/copying files and folders between storages (Frans Saris)
2013-11-21  487903a  #53844          [BUGFIX] Fix regression in ResourceCompressor (Markus Klein)
2013-11-20  aed68c8  #53243          [BUGFIX] Filemtime / Filesize trigger warning (Tomita Militaru)
2013-11-20  2857828  #53458          [BUGFIX] Fluid paginate widget wrong number of links (Klaas Johan Kooistra)
2013-11-19  3d6f5be  #53773          [BUGFIX] Fix JS error in lang module (Markus Klein)
2013-11-19  ea58bd5  #53750          [BUGFIX] Scheduler extension sql file is invalid (Michiel Roos)
2013-11-19  055e6a5  #34544          [BUGFIX] fix javascript error "TBE_EDITOR not defined" in sys_action (Ralf Hettinger)
2013-11-19  6c6582a  #51998          [BUGFIX] ExtDirect StateProvider should store all settings (Johannes Feustel)
2013-11-19  9a5858d  #53746          [TASK] Optimization in AbstractViewHelper (Wouter Wolters)
2013-11-18  464a804  #53707          [BUGFIX] Rename hook in VariableFrontend.php (Nicole Cordes)
2013-11-18  ad98c0a  #53711          [BUGFIX] additionalAttributes for be.buttons.icon-VH misses hsc (Markus Klein)
2013-11-15  d33b4eb                  Revert "[BUGFIX] EM: Fetch list as html, not as json" (Helmut Hummel)
2013-11-14  ecd873f  #45724          [BUGFIX] FILES.folder does not work (Stefan Froemken)
2013-11-14  2fef8ad  #51234          [BUGFIX] Move beuser property mappings to global scope (Philipp Gampe)
2013-11-14  c9c7551  #17493          [BUGFIX] Fix broken edit icons on cType HTML (Stefan Neufeind)
2013-11-13  c372d65  #25157,#45550  [BUGFIX] Distinguish unassigend columns and colPos 0 (Georg Ringer)
2013-11-13  e6b77d8  #51918          [BUGFIX] Native date and datetime values do not consider timezone (Oliver Hader)
2013-11-12  0e4f15a  #52926          [BUGFIX] Compressor resolves dots in filenames correctly (Christian Kuhn)
2013-11-12  6163c42  #53115          [BUGFIX] T3editor: Make errors/exceptions show correctly (Stefan Neufeind)
2013-11-12  4435311  #22136          [BUGFIX] Fix menu popup for all IE versions (Alexander Opitz)
2013-11-12  53a5a1a  #52934          [BUGFIX] dataTables: Avoid sending cookie-data too often (Stefan Neufeind)
2013-11-12  94c4d70  #53399          [BUGFIX] Wrong usage-text for cli_dispatch (Tomita Militaru)
2013-11-12  f113773  #52904          [BUGFIX] Evaluator in JS fails with namespaces (Stefan Aebischer)
2013-11-12  9678fc6  #53538          [BUGFIX] Make be.buttons.icon-ViewHelper extensible (Stefan Neufeind)
2013-11-11  e9bc5e1  #52727          [TASK] Hard-coded labels in file collections (Tomita Militaru)
2013-11-11  bc9a847  #37948          [BUGFIX] Correctly append additionalTreelistUpdateFields (Bart Dubelaar)
2013-11-11  a8f0d86  #53423          [BUGFIX] EM: Fetch list as html, not as json (Stefan Neufeind)
2013-11-11  6f4ae27  #48809,#51730,  [BUGFIX] Fix wrong handling of php and TYPO3 dependencies (Susanne Moog)
2013-11-10  907d5b1  #52173          [BUGFIX] Correct storage selection (follow-up) (Ernesto Baschny)
2013-11-09  b7a6f48  #53477          [TASK] Fix superfluous strlen() on constant strings (Steffen Ritter)
2013-11-09  58f1fa5  #47040          [BUGFIX] Enable treeConfig overriding by Page TSconfig (Stefan Froemken)
2013-11-09  cb14179  #53195          [BUGFIX] T3editor: Honour fileDenyPattern on saving included TS (Stefan Neufeind)
2013-11-08  c3773a4  #29179          [BUGFIX] Escape title, extension, description of scheduler tasks (Tomita Militaru)
2013-10-23  648018e  #31572          [BUGFIX] Exception using cObject FORM in TypoScript (Andreas Bouche)
2013-10-18  8c21be4  #35073          [BUGFIX] Enable BE search for multiple mountpoints (Georg Ringer)
2013-10-17  fe876a8  #52931          [TASK] Exclude central Modernizr from concatenation (Stefan Neufeind)
2013-10-16  04e4a4b  #52529          [BUGFIX] Suppress empty tag names in output of array2xml (Markus Hoelzle)
2013-10-16  ac2b59e  #52823          [BUGFIX] Preserve vendor name in refering request (Thomas Maroschik)
2013-10-15  693b575  #52845          [BUGFIX] Moving folders fails (Oliver Hader)
2013-10-15  85d0653  #50802          [BUGFIX] Only load folder contents if folder is initialised (Frans Saris)
2013-10-15  38958f0  #52824          [BUGFIX] Superfluous usage of ObjectManagerException (Oliver Hader)
2013-10-15  4ba140a  #51707          [FEATURE] Add getValidators to AbstractCompositeValidator (Stefan Froemken)
2013-10-15  1156074  #52771          [BUGFIX] Use callback in preg_replace in RemoveXSS (Jigal van Hemert)
2013-10-14  c577f9e  #52773          [BUGFIX] Detect unix-styled absolute paths on Windows systems (Nicole Cordes)
2013-10-13  6cc1f7a  #52759          [BUGFIX] Object passed to date() (Xavier Perseguers)
2013-10-12  f272d54  #52731          [TASK] Use 6.1 branch in travis-integration for travis (Christian Kuhn)
2013-10-12  6cbf164  #52728          [BUGFIX] Use BackendUtility use statement (Anja Leichsenring)
2013-10-12  13c6602  #52104          [BUGFIX] Wrong calculation of maximum value for checkbox fields (Nicole Cordes)
2013-10-12  23b8d11  #52715          [BUGFIX] Prevent empty newline below scheduler-task-name (Stefan Neufeind)
2013-10-11  a909546  #52708          [BUGFIX] DataMapFactory::resolveTableName must remove leading backslashes (Alexander Schnitzler)
2013-10-11  5faa4da  #50912          [BUGFIX] BackendUtility::viewOnClick() called with non-integer (Oliver Hader)
2013-10-11  13c5bf9  #51051          [BUGFIX] Clear_cache() must not consider page ids lower than 0 (Oliver Hader)
2013-10-11  17fe304  #37611          [BUGFIX] Select available page when changing WS (Thorsten Kahler)
2013-10-11  e30b70b  #52636          [BUGFIX] Copy records to target page before origin page is deleted (Timo Webler)
2013-10-11  db7d3e5  #17551          [BUGFIX] Create workspace placeholder with processed field content (Sascha Egerer)
2013-10-11  660e030  #36573          [BUGFIX] Add workspace overlay for fetched records. (Timo Webler)
2013-10-11  7c837df  #37209          [BUGFIX] WS preview shows pages changes from all WS (Thorsten Kahler)
2013-10-11  5aeddac  #52530          [BUGFIX] Delete modified record in WS just deletes WS version (Sascha Egerer)
2013-10-11  f561b99  #37065          [BUGFIX] Don't show duplicates in workspace preview (Timo Webler)
2013-10-10  b4b0b0e  #52178          [BUGFIX] Cannot upload an extension as zip (Xavier Perseguers)
2013-10-07  31e44bd  #46845          [BUGFIX] Fix namespace in FileMountRepositoryTest (Marc Bastian Heinrichs)
2013-10-07  a7da230  #49538          [BUGFIX] Fields of type file_reference are not properly indexed (Martin Borer)
2013-10-07  388c02d  #52546          [BUGFIX] Missing closing tag in ElementBrowser (Philipp Gampe)
2013-10-06  30d93b4  #50756          [FEATURE] Backport ClassNamingUtility (Stefan Neufeind)
2013-10-05  d6a8e68  #52469          [TASK] Use instanceof comparison instead of string comparison (Benjamin Serfhos)
2013-09-30  8e1ea88  #43540          [BUGFIX] TS is fetched from cache incorrectly sometimes (Dmitry Dulepov)
2013-09-28  a2532bb  #51329          [BUGFIX] Initialize extension name in command requests (Alexander Stehlik)
2013-09-28  7144eb5  #52346          [BUGFIX] Incomplete backup in AbstractUserAuthenticationTest (Christian Kuhn)
2013-09-27  9c200ea  #52091,#51684  [BUGFIX] Check for string before using strlen (Kilian Hann)
2013-09-27  128d147  #52045          [BUGFIX] EmConfUtility accesses non-arrays (Markus Klein)
2013-09-27  9fa9f15  #51588          [BUGFIX] Clear cached menu by tag (Zbigniew Jacko)
2013-09-27  30af6a5  #50437          [BUGFIX] Fix jumpToUrl()-Usage in Element Browser (Benjamin Pick)
2013-09-26  77c69e7  #52266          [BUGFIX] groupFor-VH does not work with @lazy (Stefan Froemken)
2013-09-26  3f0cc99  #50913          [BUGFIX] Fix PHP warning trigged in getAuthInfoArray() (Christian Finkemeier)
2013-09-26  919541b  #52316          [BUGFIX] Fatal in DefaultConfiguration (Christian Kuhn)
2013-09-26  0deefa0  #52305          [BUGFIX] Configure main extbase caches for unlimited entry lifetime (Christian Kuhn)
2013-09-26  d00db27  #52295          [TASK] Use SimpleFileBackend for t3lib_l10n cache (Christian Kuhn)
2013-09-25  d01851c  #52226          [BUGFIX] EM does not link to docs.typo3.org (Xavier Perseguers)
2013-09-25  68bb292  #51116          [BUGFIX] Increase performance of exports for caches (Markus Klein)
2013-09-25  3f8cd14  #52243          [BUGFIX] Remove duplicate exception code (Fabien Udriot)
2013-09-24  7151ce0  #52173          [BUGFIX] Correct storage selection (common prefixes) (Ernesto Baschny)
2013-09-24  0a80fb6  #52201          [BUGFIX] Fix broken Unit-test for #44825 (Wouter Wolters)
2013-09-23  be4627f  #44825          [BUGFIX] Fix page.headerData + USER_INT (Helmut Hummel)
2013-09-20  580a576  #48912          [BUGFIX] Increase length of identifier field in sys_file (Nicole Cordes)
2013-09-20  cb6bf25  #52056          [BUGFIX] Wrong exception on renaming folder (Francois Suter)
2013-09-19  cdba66b  #49328          [BUGFIX] Fix PHP warning when writing to Backend user log (Alexander Stehlik)
2013-09-17  23e6007  #45859          [BUGFIX] Faulty expand/collapse behavior in Element Browser (Oliver Hader)
2013-09-17  c79315a  #19045          [BUGFIX] Fix cropping of transparent gifs with im6. (Stefan Neufeind)
2013-09-17  aa4ab27  #50907          [BUGFIX] Form Wizard: Adds mouse pointer to docheader icons (Ernesto Baschny)
2013-09-13  22ee660  #51981          [BUGFIX] Also consider JPEG files for IM/GM (Markus Klein)
2013-09-12  40cb0a4  #51803          [TASK] Use a 401 header if login is not successful (Georg Ringer)
2013-09-12  903046f  #51891          [BUGFIX] Call to undefined method setTemplateFile (Wouter Wolters)

(taca)

2013-12-05 16:42:21 UTC MAIN commitmail json YAML

Update typo347 to 4.7.16 (TYPO3 4.7.16).

2013-11-26  95a730f                  [RELEASE] Release of TYPO3 4.7.16 (TYPO3 Release Team)
2013-11-19  5975854  #53758          [BUGFIX] Table cache_imagesizes is defined twice (Michiel Roos)
2013-11-19  7d0a241  #53750          [BUGFIX] Scheduler extension sql file is invalid (Michiel Roos)
2013-11-11  90f4945  #31998          [BUGFIX] Faulty check for missing SMTP port (Stefan Neufeind)
2013-11-11  f328884  #47040          [BUGFIX] Enable treeConfig overriding by Page TSconfig (Stefan Neufeind)
2013-11-09  2c82f33  #29179          [BUGFIX] Escape title, extension, description of scheduler tasks (Stefan Neufeind)
2013-11-09  d683693  #53195          [BUGFIX] T3editor: Honour fileDenyPattern on saving included TS (Stefan Neufeind)
2013-10-28  37c4f0b  #53075          [BUGFIX] Cannot auto-load SC_* classes (Ernesto Baschny)
2013-10-23  ceba809  #31572          [BUGFIX] Exception using cObject FORM in TypoScript (Andreas Bouche)
2013-10-23  f8f155e  #43540          [BUGFIX] TS is fetched from cache incorrectly sometimes (Jigal van Hemert)
2013-10-22  2ce69d2  #50881          [TASK] Added missing core autoloaded files (Ernesto Baschny)
2013-10-13  d361b29  #52759          [BUGFIX] Object passed to date() (Philipp Gampe)
2013-10-12  3699866  #52104          [BUGFIX] Wrong calculation of maximum value for checkbox fields (Nicole Cordes)
2013-10-11  073dd57  #36573          [BUGFIX] Add workspace overlay for fetched records. (Anja Leichsenring)
2013-10-06  f26f2f1  #52045          [BUGFIX] EmConfUtility accesses non-arrays (Markus Klein)
2013-09-27  fda9783  #52091,#51684  [BUGFIX] Check for string before using strlen (Markus Klein)
2013-09-26  9673d7e  #50913          [BUGFIX] Fix PHP warning trigged in getAuthInfoArray() (Christian Finkemeier)
2013-09-26  e06f05a  #34886          [BUGFIX] CF FileBackend unlimited lifetime support (Dominique Feyer)

(taca)

2013-12-05 16:41:07 UTC MAIN commitmail json YAML

Update typo345 to 4.5.31 (TYPO3 4.5.31).

2013-11-26  434ce71                  [RELEASE] Release of TYPO3 4.5.31 (TYPO3 Release Team)
2013-11-19  396534e  #53758          [BUGFIX] Table cache_imagesizes is defined twice (Michiel Roos)
2013-11-19  3f2ed1d  #53750          [BUGFIX] Scheduler extension sql file is invalid (Michiel Roos)
2013-11-15  428baac  #17493          [BUGFIX] Fix broken edit icons on cType HTML (Stefan Neufeind)
2013-11-11  6755f40  #37948          [BUGFIX] Correctly append additionalTreelistUpdateFields (Bart Dubelaar)
2013-11-11  082facd  #31998          [BUGFIX] Faulty check for missing SMTP port (Stefan Neufeind)
2013-11-09  c581f33  #29179          [BUGFIX] Escape title, extension, description of scheduler tasks (Stefan Neufeind)
2013-11-09  7b08aa9  #53195          [BUGFIX] T3editor: Honour fileDenyPattern on saving included TS (Stefan Neufeind)
2013-11-04  d372f5f  #38055          [BUGFIX] Remove declare(encoding=) (Josef Florian Glatz)
2013-10-28  5ae438c  #53075          [BUGFIX] Cannot auto-load SC_* classes (Ernesto Baschny)
2013-10-22  b5d6e9f  #50881          [TASK] Added missing core autoloaded files (Ernesto Baschny)
2013-10-13  5b072ff  #52759          [BUGFIX] Object passed to date() (Philipp Gampe)
2013-10-12  6371e46  #52104          [BUGFIX] Wrong calculation of maximum value for checkbox fields (Nicole Cordes)
2013-10-12  78871e2  #37611          [BUGFIX] Select available page when changing WS (Thorsten Kahler)
2013-10-11  ce02c01  #36573          [BUGFIX] Add workspace overlay for fetched records. (Anja Leichsenring)
2013-10-11  d114ddb  #37065          [BUGFIX] Don't show duplicates in workspace preview (Timo Webler)
2013-10-06  3289c39  #52045          [BUGFIX] EmConfUtility accesses non-arrays (Markus Klein)
2013-09-27  cd1e12b  #52091,#51684  [BUGFIX] Check for string before using strlen (Markus Klein)
2013-09-26  c8d2033  #34886          [BUGFIX] CF FileBackend unlimited lifetime support (Dominique Feyer)
2013-09-18  ef6dc06                  [BUGFIX] Fix cropping of transparent gifs with im6. (Felix Bu��nemann)
2013-09-12  70ce540  #51803          [TASK] Use a 401 header if login is not successful (Georg Ringer)

(taca)

2013-12-05 16:18:30 UTC MAIN commitmail json YAML

Note update of PHP security updates.

lang/php53 5.3.27nb3
lang/php54 5.4.22nb1
lang/php55 5.5.6nb1

(taca)

2013-12-05 16:17:48 UTC MAIN commitmail json YAML

2013-12-05 16:17:15 UTC MAIN commitmail json YAML

2013-12-05 16:16:40 UTC MAIN commitmail json YAML

2013-12-05 16:02:27 UTC MAIN commitmail json YAML

Added mail/opendmarc version 1.1.3

(pettai)

2013-12-05 16:01:43 UTC MAIN commitmail json YAML

2013-12-05 16:00:20 UTC MAIN commitmail json YAML

The OpenDMARC project is a community effort to develop and maintain an open
source package for providing DMARC report generation and policy enforcement
services.  It includes a library for handling DMARC record parsing,
a database schema and tools for aggregating and processing transaction
history to produce DMARC reports, and a filter that ties it all together
with an MTA using the milter protocol.

(pettai)

2013-12-05 15:10:39 UTC MAIN commitmail json YAML

Updated www/nginx to 1.4.4

(imil)

2013-12-05 15:09:58 UTC MAIN commitmail json YAML

Updated to nginx 1.4.4

Changes with nginx 1.4.4                                        19 Nov 2013

    *) Security: a character following an unescaped space in a request line
      was handled incorrectly (CVE-2013-4547); the bug had appeared in
      0.8.41.
      Thanks to Ivan Fratric of the Google Security Team.

Changes with nginx 1.4.3                                        08 Oct 2013

    *) Bugfix: a segmentation fault might occur in a worker process if the
      ngx_http_spdy_module was used with the "client_body_in_file_only"
      directive.

    *) Bugfix: a segmentation fault might occur on start or during
      reconfiguration if the "try_files" directive was used with an empty
      parameter.

    *) Bugfix: the $request_time variable did not work in nginx/Windows.

    *) Bugfix: in the ngx_http_auth_basic_module when using "$apr1$"
      password encryption method.
      Thanks to Markus Linnala.

    *) Bugfix: in the ngx_http_autoindex_module.

    *) Bugfix: in the mail proxy server.

(imil)

2013-12-05 15:04:42 UTC MAIN commitmail json YAML

Updated www/nginx-devel to 1.5.7

(imil)

2013-12-05 15:04:06 UTC MAIN commitmail json YAML

Updated to nginx 1.5.7

Changes with nginx 1.5.7                                        19 Nov 2013

    *) Security: a character following an unescaped space in a request line
      was handled incorrectly (CVE-2013-4547); the bug had appeared in
      0.8.41.
      Thanks to Ivan Fratric of the Google Security Team.

    *) Change: a logging level of auth_basic errors about no user/password
      provided has been lowered from "error" to "info".

    *) Feature: the "proxy_cache_revalidate", "fastcgi_cache_revalidate",
      "scgi_cache_revalidate", and "uwsgi_cache_revalidate" directives.

    *) Feature: the "ssl_session_ticket_key" directive.
      Thanks to Piotr Sikora.

    *) Bugfix: the directive "add_header Cache-Control ''" added a
      "Cache-Control" response header line with an empty value.

    *) Bugfix: the "satisfy any" directive might return 403 error instead of
      401 if auth_request and auth_basic directives were used.
      Thanks to Jan Marc Hoffmann.

    *) Bugfix: the "accept_filter" and "deferred" parameters of the "listen"
      directive were ignored for listen sockets created during binary
      upgrade.
      Thanks to Piotr Sikora.

    *) Bugfix: some data received from a backend with unbufferred proxy
      might not be sent to a client immediately if "gzip" or "gunzip"
      directives were used.
      Thanks to Yichun Zhang.

    *) Bugfix: in error handling in ngx_http_gunzip_filter_module.

    *) Bugfix: responses might hang if the ngx_http_spdy_module was used
      with the "auth_request" directive.

    *) Bugfix: memory leak in nginx/Windows.

Changes with nginx 1.5.6                                        01 Oct 2013

    *) Feature: the "fastcgi_buffering" directive.

    *) Feature: the "proxy_ssl_protocols" and "proxy_ssl_ciphers"
      directives.
      Thanks to Piotr Sikora.

    *) Feature: optimization of SSL handshakes when using long certificate
      chains.

    *) Feature: the mail proxy supports SMTP pipelining.

    *) Bugfix: in the ngx_http_auth_basic_module when using "$apr1$"
      password encryption method.
      Thanks to Markus Linnala.

    *) Bugfix: in MacOSX, Cygwin, and nginx/Windows incorrect location might
      be used to process a request if locations were given using characters
      in different cases.

    *) Bugfix: automatic redirect with appended trailing slash for proxied
      locations might not work.

    *) Bugfix: in the mail proxy server.

    *) Bugfix: in the ngx_http_spdy_module.

Changes with nginx 1.5.5                                        17 Sep 2013

    *) Change: now nginx assumes HTTP/1.0 by default if it is not able to
      detect protocol reliably.

    *) Feature: the "disable_symlinks" directive now uses O_PATH on Linux.

    *) Feature: now nginx uses EPOLLRDHUP events to detect premature
      connection close by clients if the "epoll" method is used.

    *) Bugfix: in the "valid_referers" directive if the "server_names"
      parameter was used.

    *) Bugfix: the $request_time variable did not work in nginx/Windows.

    *) Bugfix: in the "image_filter" directive.
      Thanks to Lanshun Zhou.

    *) Bugfix: OpenSSL 1.0.1f compatibility.
      Thanks to Piotr Sikora.

Changes with nginx 1.5.4                                        27 Aug 2013

    *) Change: the "js" extension MIME type has been changed to
      "application/javascript"; default value of the "charset_types"
      directive was changed accordingly.

    *) Change: now the "image_filter" directive with the "size" parameter
      returns responses with the "application/json" MIME type.

    *) Feature: the ngx_http_auth_request_module.

    *) Bugfix: a segmentation fault might occur on start or during
      reconfiguration if the "try_files" directive was used with an empty
      parameter.

    *) Bugfix: memory leak if relative paths were specified using variables
      in the "root" or "auth_basic_user_file" directives.

    *) Bugfix: the "valid_referers" directive incorrectly executed regular
      expressions if a "Referer" header started with "https://".
      Thanks to Liangbin Li.

    *) Bugfix: responses might hang if subrequests were used and an SSL
      handshake error happened during subrequest processing.
      Thanks to Aviram Cohen.

    *) Bugfix: in the ngx_http_autoindex_module.

    *) Bugfix: in the ngx_http_spdy_module.

(imil)

2013-12-05 14:37:01 UTC MAIN commitmail json YAML

No need to specify -p1 as arguments of patch(1).

(taca)

2013-12-05 14:20:02 UTC MAIN commitmail json YAML

2013-12-05 13:31:05 UTC MAIN commitmail json YAML

Updated devel/userspace-rcu to 0.7.9

(pettai)

2013-12-05 13:30:39 UTC MAIN commitmail json YAML

2013-11-12 Userspace RCU 0.7.9
* tls-compat: fix comment typo
* Keep ABI compatible with already compiled LGPL applications
* Fix: tls-compat multi-lib conflict
* gcc warning fixes: -Wsign-compare and -Wextra
* Fix: urcu-qsbr: reversed logic on RCU_DEBUG
* Fix: urcu-bp segfault in glibc pthread_kill()
* Fix urcu-bp: don't move registry
* Fix: compat futex duplicated lock and completion
* Fix: i386 compat code duplicated mutex instances
* Fix: urcu-bp: Bulletproof RCU arena resize bug
* Fix: test_mutex.c uninitialized mutex

(pettai)

2013-12-05 13:23:09 UTC MAIN commitmail json YAML

mozilla-trace.h and javascript-trace.h are delivered regardless of dtrace option

(richard)

2013-12-05 13:05:59 UTC MAIN commitmail json YAML

Updated security/ykpers to 1.14.1

(pettai)

2013-12-05 13:05:31 UTC MAIN commitmail json YAML

Version 1.14.1 (released 2013-09-16)

* Fix breakage with latest automake.

(pettai)

2013-12-05 12:59:12 UTC MAIN commitmail json YAML

Updated security/opendnssec to 1.4.3

(pettai)

2013-12-05 12:56:14 UTC MAIN commitmail json YAML

OpenDNSSEC 1.4.3:

Updates:
* SUPPORT-72: Improve logging when failed to increment serial in case of
  key rollover and serial value "keep" [OPENDNSSEC-461].
* OPENDNSSEC-106: Add 'ods-enforcerd -p <policy>' option. This prompts
  the enforcer to run once and only process the specified policy
  and associated zones.
* OPENDNSSEC-330: NSEC3PARAM TTL can now be optionally configured in kasp.xml.
  Default value remains PT0S.
* OPENDNSSEC-390: ods-ksmutil: Add an option to the 'ods-ksmutil key ds-seen'
  command so the user can choose not to notify the enforcer.
* OPENDNSSEC-430: ods-ksmutil: Improve 'zone add' - Zone add command could
  warn if a specified zone file or adapter file does not exits.
* OPENDNSSEC-431: ods-ksmutil: Improve 'zone add' - Support default <input>
  and <output> values for DNS adapters.
* OPENDNSSEC-454: ods-ksmutil: Add option for 'ods-ksmutil key import'
  to check if there is a matching key in the repository before import.

Bugfixes:
* OPENDNSSEC-435: Signer Engine: Fix a serious memory leak in signature cleanup.
* OPENDNSSEC-463: Signer Engine: Duration PT0S is now printed correctly.
* OPENDNSSEC-466: Signer Engine: Created bad TSIG signature when falling back
  to AXFR.
* OPENDNSSEC-467: Signer Engine: After ods-signer clear, signer should not use
  inbound serial.

(pettai)

2013-12-05 11:49:13 UTC MAIN commitmail json YAML

note 13.1 for SUSE_PREFER

(obache)

2013-12-05 11:42:17 UTC MAIN commitmail json YAML

2013-12-05 09:53:31 UTC pkgsrc-2013Q3 commitmail json YAML

2013-12-05 09:52:53 UTC pkgsrc-2013Q3 commitmail json YAML

Pullup ticket #4262 - requested by taca
security/openssh: security update

Revisions pulled up:
- security/openssh/Makefile                                    1.214
- security/openssh/distinfo                                    1.85
- security/openssh/options.mk                                  1.26
- security/openssh/patches/patch-Makefile.in                    1.2
- security/openssh/patches/patch-auth.c                        1.2
- security/openssh/patches/patch-auth1.c                        1.2
- security/openssh/patches/patch-auth2.c                        1.2
- security/openssh/patches/patch-config.h.in                    1.2
- security/openssh/patches/patch-configure                      1.2
- security/openssh/patches/patch-configure.ac                  1.2
- security/openssh/patches/patch-includes.h                    1.2
- security/openssh/patches/patch-scp.c                          1.2
- security/openssh/patches/patch-session.c                      1.2
- security/openssh/patches/patch-sftp-common.c                  1.1
- security/openssh/patches/patch-ssh.c                          1.2
- security/openssh/patches/patch-sshd.c                        1.2
- security/openssh/patches/patch-uidswap.c                      1.2

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sun Dec  1 06:11:41 UTC 2013

  Modified Files:
  pkgsrc/security/openssh: Makefile distinfo options.mk
  pkgsrc/security/openssh/patches: patch-Makefile.in patch-auth.c
      patch-auth1.c patch-auth2.c patch-config.h.in patch-configure
      patch-configure.ac patch-includes.h patch-scp.c patch-session.c
      patch-ssh.c patch-sshd.c patch-uidswap.c
  Added Files:
  pkgsrc/security/openssh/patches: patch-sftp-common.c

  Log Message:
  Update openssh to 6.4.1 (OpenSSH 6.4p1).

  Changes since OpenSSH 6.3
  =========================

  This release fixes a security bug:

    * sshd(8): fix a memory corruption problem triggered during rekeying
      when an AES-GCM cipher is selected. Full details of the vulnerability
      are available at: http://www.openssh.com/txt/gcmrekey.adv

  Changes since OpenSSH 6.2 is too many to write here, please refer
  the release note: http://www.openssh.com/txt/release-6.3.

(tron)

2013-12-05 08:50:27 UTC MAIN commitmail json YAML

Added databases/dbfsak version 4.5

(adam)

2013-12-05 08:48:38 UTC MAIN commitmail json YAML

Added databases/dbfsak version 4.5

(adam)

2013-12-05 08:48:02 UTC MAIN commitmail json YAML

DBFSAK is a command line program designed to extract data from DBF (dBase,
FoxPro, Clipper, xBase) files. It can also be used to create DBF files and
populate them from your data. It is written for the Linux/Unix environment,
but relies only on standard C libraries and functions.

(adam)

2013-12-05 07:52:16 UTC MAIN commitmail json YAML

Remove patch after update (hi morr)

(wiz)

2013-12-05 07:51:57 UTC MAIN commitmail json YAML

Remove patch after update (hi drochner)

(wiz)

2013-12-05 07:51:41 UTC MAIN commitmail json YAML

Remove patch after update (hi drochner)

(wiz)

2013-12-05 07:51:23 UTC MAIN commitmail json YAML

Remove patches after update (hi drochner)

(wiz)

2013-12-05 04:12:30 UTC MAIN commitmail json YAML

2013-12-04 21:02:23 UTC MAIN commitmail json YAML

Fix solaris build for icu, namely problems in general with CFLAGS/CXXFLAGS
from typos in configure and acinclude.m4 to needing to add the flags to
properly generate dependency files with gcc.

(richard)

2013-12-04 19:10:16 UTC MAIN commitmail json YAML

Note removal of texlive-tetex

(minskim)

2013-12-04 19:09:30 UTC MAIN commitmail json YAML

Remove texlive-tetex

Scripts installed by texlive-tetex have been moved to tex-fontinst,
tex-pstools, and tex-cyrillic-bin in TeX Live 2013.

(minskim)

2013-12-04 18:58:41 UTC MAIN commitmail json YAML

2013-12-04 18:57:21 UTC MAIN commitmail json YAML

2013-12-04 18:57:01 UTC MAIN commitmail json YAML

2013-12-04 18:38:04 UTC MAIN commitmail json YAML

Correct previous entries (Added vs. Updated)

(minskim)

2013-12-04 18:37:11 UTC MAIN commitmail json YAML

2013-12-04 18:35:16 UTC MAIN commitmail json YAML

2013-12-04 18:34:47 UTC MAIN commitmail json YAML

Import tex-pstools-1.68 as graphics/tex-pstools.

Produce Encapsulated PostScript Files (EPS/EPSF) from a one-
page PostScript document, or any PostScript document. A correct
Bounding Box is calculated for the EPS files and some
PostScript command sequences that can produce errorneous
results on printers are filtered. The input is cropped to
include just the image contained in the PostScript file. The
EPS files can then be included into TeX documents. Other
programs like ps2epsi (a script distributed with ghostscript)
don't always calculate the correct bounding box (because the
values are put on the PostScript stack which may get corrupted
by bad PostScript code) or they round it off, resulting in
clipping the image. Therefore ps2eps uses a resolution of 144
dpi to get the correct bounding box.

(minskim)

2013-12-04 18:04:28 UTC MAIN commitmail json YAML

2013-12-04 17:55:14 UTC MAIN commitmail json YAML

2013-12-04 17:54:02 UTC MAIN commitmail json YAML

2013-12-04 17:53:35 UTC MAIN commitmail json YAML

Import tex-mathdesign-2.31 as fonts/tex-mathdesign.

The Math Design project offers free mathematical fonts, and
"faked" Caps-and-Small-Caps fonts, that fit with existing text
fonts. So far, four font families are available: - the mdput
family, which corresponds to Adobe Utopia text fonts; - the
mdugm family, which corresponds to URW Garamond text fonts; -
the mdfga family, which corresponds to the (commercial)
Fontsite Garamond text fonts; - the mdbch family, which
corresponds to Bitstream Charter text fonts. Each maths font
has a range of extra symbols, and blackboard bold and 'mathcal'
alphabets.

(minskim)

2013-12-04 17:03:02 UTC MAIN commitmail json YAML

Pull in OpenSSL to fix non-builtin case.  Use C99.  Fixes SunOS build.

Patches from Sebastian Wiedenroth.

(jperkin)

2013-12-04 16:59:59 UTC MAIN commitmail json YAML

2013-12-04 16:58:18 UTC MAIN commitmail json YAML

update to 1.3.1
changes:
-database can contain arbitrary attributes now
-Add Opus audio support
-You can now transcode files to any audio format, rather than just MP3
-can guess tags from the filenames during import
-new id3v23 config option, writed tags in old format

(drochner)

2013-12-04 16:48:21 UTC MAIN commitmail json YAML

2013-12-04 16:47:32 UTC MAIN commitmail json YAML

2013-12-04 16:43:47 UTC MAIN commitmail json YAML

update to 0.8.8
change: Fix various .foreach

(drochner)

2013-12-04 16:41:01 UTC MAIN commitmail json YAML

2013-12-04 16:35:31 UTC MAIN commitmail json YAML

2013-12-04 16:34:31 UTC MAIN commitmail json YAML

2013-12-04 15:48:34 UTC MAIN commitmail json YAML

Note update of Ruby on Rails packages to 3.2.16.

devel/ruby-activesupport32
devel/ruby-activemodel32
databases/ruby-activerecord32
www/ruby-activeresource32
www/ruby-actionpack32
mail/ruby-actionmailer32
devel/ruby-railties32
www/ruby-rails32

(taca)

2013-12-04 15:47:17 UTC MAIN commitmail json YAML

Update ruby-rails32 to 3.2.16.
Only version number has updated.

(taca)

2013-12-04 15:46:48 UTC MAIN commitmail json YAML

Update ruby-railties32 to 3.2.16.
Only version number has updated.

(taca)

2013-12-04 15:46:15 UTC MAIN commitmail json YAML

Update ruby-actionmailer32 to 3.2.16.
Only version number has updated.

(taca)

2013-12-04 15:45:38 UTC MAIN commitmail json YAML

Update ruby-actionpack32 to 3.2.16, security update.

* Deep Munge the parameters for GET and POST Fixes CVE-2013-6417
* Stop using i18n's built in HTML error handling.  Fixes: CVE-2013-4491
* Escape the unit value provided to number_to_currency Fixes CVE-2013-6415
* Only use valid mime type symbols as cache keys CVE-2013-6414

(taca)

2013-12-04 15:44:42 UTC MAIN commitmail json YAML

Update ruby-activeresource32 to 3.2.16.
Only version number has updated.

(taca)

2013-12-04 15:44:05 UTC MAIN commitmail json YAML

ruby-activerecord32 to 3.2.16.
Only version number has updated.

(taca)

2013-12-04 15:43:29 UTC MAIN commitmail json YAML

Update ruby-activemodel32 to 3.2.16.
Only version number has updated.

(taca)

2013-12-04 15:42:52 UTC MAIN commitmail json YAML

Update ruby-activesupport32 to 3.2.16.
Only version number has updated.

(taca)

2013-12-04 15:41:48 UTC MAIN commitmail json YAML

Start update of Ruby on Rails 3.2.16.

(taca)

2013-12-04 15:14:36 UTC MAIN commitmail json YAML

Updated mail/spamassassin to 3.3.2nb6

(jperkin)

2013-12-04 15:14:19 UTC MAIN commitmail json YAML

2013-12-04 15:12:56 UTC MAIN commitmail json YAML

Updated time/p5-Time-Piece to 1.24

(wen)

2013-12-04 15:12:04 UTC MAIN commitmail json YAML

Update to 1.24

Upstream changes:
1.24      2013-12-03
        - add repository metadata (thanks, David Steinbrunner)

(wen)

2013-12-04 14:19:01 UTC MAIN commitmail json YAML

Remove to assume that 1.1.4 is treated as 1.1.4nb1.

It is NetBSD specific, and builtin version should not contains nb* level.

(obache)

2013-12-04 14:14:34 UTC MAIN commitmail json YAML

Drop nb1 from API_DEPENDS.

zlib-1.1.4nb1 is just recommended for CAN-2003-0107, not API change.

(obache)

2013-12-04 14:04:52 UTC MAIN commitmail json YAML

Updated devel/p5-Test-Fatal to 0.013

(adam)

2013-12-04 14:03:53 UTC MAIN commitmail json YAML

Changes 0.013:
- rebuild to get a newer compile test that may work on 5.6.x

(adam)

2013-12-04 14:01:36 UTC MAIN commitmail json YAML

Updated textproc/groonga to 3.1.0

(obache)

2013-12-04 14:01:15 UTC MAIN commitmail json YAML

Update groonga to 3.1.0.

Release 3.1.0 - 2013/11/29
--------------------------

Improvements
^^^^^^^^^^^^

* [experimental] Supported an option to skip updating for the same value.
  It is enabled by setting GRN_JA_SKIP_SAME_VALUE_PUT=yes as environment variable.
* Improved to show tokenizer and original text in empty token warning message.
  It shows actual token, so it helps you to investigate token related issue.
* Dropped broken AIO support. [#2054] [Reported by sho MINAGAWA]
* [windows] Supported build with Visual Studio Express 2008. [#1964 the 21th comment]
  It is aimed to promote bundling Mroonga with MariaDB in the future.

Fixes
^^^^^

* Fixed a bug that type of "_value" column is treated as Int32.
  It causes the case that the value of "_value" column is casted unexpectedly.
  [Reported by Genki Takiuchi]
* Fixed to require GLib 2.14.0 or later for benchmark program.
  The benchmark program is changed to use GRegex which requires GLib 2.14.0 or later.
  It affects users who compile Groonga with '--enable-benchmark' configuration.
  [groonga-dev,01890] [Reported by WING]
* Fixed a memory leak on updating an empty column vector with the same value.
* Fixed a memory leak on updating index for column vector.
  It affects the case if you store the value of column which has invalid UTF-8 byte
  sequence.
* [plugin][windows] Fixed the issue that register command fails without
  'lib/groonga/plugins'. [Reported by @yito]

(obache)

2013-12-04 14:00:49 UTC MAIN commitmail json YAML

Updated math/ruby-spreadsheet to 0.9.6

(obache)

2013-12-04 14:00:28 UTC MAIN commitmail json YAML

Update ruby-spreadsheet to 0.9.6.

### 0.9.6 / 02.12.2013

Author: Malcolm Blyth <trashbat@co.ck>
Date:  Mon Dec 2 11:44:25 2013 +0000

* Fixed issue whereby object author being null caused a gross failure.
* Now returns object author as an empty string

(obache)

2013-12-04 13:48:17 UTC MAIN commitmail json YAML

Updated devel/git to 1.8.5.1

(adam)

2013-12-04 13:02:52 UTC MAIN commitmail json YAML

2013-12-04 13:02:08 UTC MAIN commitmail json YAML

2013-12-04 12:57:48 UTC MAIN commitmail json YAML

update to 0.15.1
changes:
Copy and paste color adjustments between photos
Highlights detail adjustment
YouTube plugin now uses OAuth / OpenID
Videos in Missing Files now re-import properly
Improvements when thumbnailing videos
Numerous bug fixes

(drochner)

2013-12-04 12:54:43 UTC MAIN commitmail json YAML

update to 1.19.1
changes:
* Make code compatible with python3
* Separation of python module and resources in source package
  (packagers may need to consult INSTALL)
* Move to v2 of PyQt API
* Remove deprecated numpy API from helpers module
* Allow FITS dataset names to be blank if prefix/suffix are not
* New ast-based code security checker
* Picker uses 1-based index for consistency
* Allow non-text datasets to be used for labels
* Add number->text conversion dataset plugin
* Add binning dataset plugin
* Allow more significant figures in float values
* Intelligent choice of significant figures when interactively
  changing axis range
* Decrease minimum range of axis
* Add notes setting to document, pages and graphs
* Add option to disable scaling of marker border with point scaling
* Implement label at-minimum/at-maximum for ternary plot
* Add border and background fill settings for text label widget
* Enable FITS support with astropy
+bugfixes

(drochner)

2013-12-04 12:51:06 UTC MAIN commitmail json YAML

Changes 1.8.5.1:
* "git submodule init" copied "submodule.$name.update" settings from
  .gitmodules to .git/config without making sure if the suggested
  value was sensible.

(adam)