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 (56m)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (41d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (153d) 

2024-05-12 13:38:23 UTC Now

2015-07-26 22:13:17 UTC MAIN commitmail json YAML

Add support for compiling with stack-smashing protection

This is enabled with PKGSRC_USE_SSP in mk.conf(5), as documented there.
Most NetBSD platforms are supported (when compiling with gcc).

After consensus on tech-pkg@.

(khorben)

2015-07-26 22:04:13 UTC MAIN commitmail json YAML

Fix a couple new-to-5.0.8 issues with command completion.
- non-GNU du wouldn't complete filenames (taken from upstream)
- sort completion threw a syntax error on NetBSD (reported upstream)

Bump PKGREVISION to 1.

(snj)

2015-07-26 21:53:38 UTC MAIN commitmail json YAML

+ cmake-3.3.0, dbus-1.8.20, gama-1.16, libvisio-0.1.3, meld-3.14.0,
  mosh-1.2.5, png-1.6.18, py-mock-1.3.0, py-setproctitle-1.1.9,
  talloc-2.1.3, tidy-4.9.30, x264-devel-20150725.

(wiz)

2015-07-26 21:33:56 UTC MAIN commitmail json YAML

Update HOMEPAGE.

(wiz)

2015-07-26 19:58:12 UTC pkgsrc-2015Q2 commitmail json YAML

Pullup tickest #4775, #4781 and #4782.

(tron)

2015-07-26 19:57:43 UTC pkgsrc-2015Q2 commitmail json YAML

Pullup ticket #4782 - requested by bsiegert
net/socat: security update

Revisions pulled up:
- net/socat/Makefile                                            1.35
- net/socat/distinfo                                            1.21
- net/socat/patches/patch-configure                            deleted
- net/socat/patches/patch-mytypes.h                            1.3

---
  Module Name:    pkgsrc
  Committed By:  bsiegert
  Date:          Sat Jul 25 14:43:23 UTC 2015

  Modified Files:
          pkgsrc/net/socat: Makefile distinfo
          pkgsrc/net/socat/patches: patch-mytypes.h
  Removed Files:
          pkgsrc/net/socat/patches: patch-configure

  Log Message:
  Update socat to 1.7.3.0. From Ben Gergely in PR pkg/49996.

  ####################### V 1.7.3.0:

  security:
          (CVE Id pending)
          Fixed problems with signal handling caused by use of not async signal
          safe functions in signal handlers that could freeze socat, allowing
          denial of service attacks.
          Many changes in signal handling and the diagnostic messages system were
          applied to make the code async signal safe but still provide detailled
          logging from signal handlers:
          Coded function vsnprintf_r() as async signal safe incomplete substitute
          of libc vsnprintf()
          Coded function snprinterr() to replace %m in strings with a system error
          message
          Instead of gettimeofday() use clock_gettime() when available
          Pass Diagnostic messages from signal handler per unix socket to the main
          program flow
          Use sigaction() instead of signal() for better control
          Turn off nested signal handler invocations
          Thanks to Peter Lobsinger for reporting and explaining this issue.

          Red Hat issue 1019975: add TLS host name checks
          OpenSSL client checks if the server certificates names in
          extensions/subjectAltName/DNS or in subject/commonName match the name
          used to connect or the value of the openssl-commonname option.
          Test: OPENSSL_CN_CLIENT_SECURITY

          OpenSSL server checks if the client certificates names in
          extensions/subjectAltNames/DNS or subject/commonName match the value of
          the openssl-commonname option when it is used.
          Test: OPENSSL_CN_SERVER_SECURITY

          Red Hat issue 1019964: socat now uses the system certificate store with
          OPENSSL when neither options cafile nor capath are used

          Red Hat issue 1019972: needs to specify OpenSSL cipher suites
          Default cipherlist is now "HIGH:-NULL:-PSK:-aNULL" instead of empty to
          prevent downgrade attacks

  new features:
          OpenSSL addresses set couple of environment variables from values in
          peer certificate, e.g.:
          SOCAT_OPENSSL_X509_SUBJECT, SOCAT_OPENSSL_X509_ISSUER,
          SOCAT_OPENSSL_X509_COMMONNAME,
          SOCAT_OPENSSL_X509V3_SUBJECTALTNAME_DNS
          Tests: ENV_OPENSSL_{CLIENT,SERVER}_X509_*

          Added support for methods TLSv1, TLSv1.1, TLSv1.2, and DTLS1
          Tests: OPENSSL_METHOD_*

          Enabled OpenSSL server side use of ECDHE ciphers. Feature suggested
          by Andrey Arapov.

          Added a new option termios-rawer for ptys.
          Thanks to Christian Vogelgsang for pointing me to this requirement

  corrections:
          Bind with ABSTRACT commands used non-abstract namespace (Linux).
          Test: ABSTRACT_BIND
          Thanks to Denis Shatov for reporting this bug.

          Fixed return value of nestlex()

          Option ignoreeof on the right address hung.
          Test: IGNOREEOF_REV
          Thanks to Franz Fasching for reporting this bug.

          Address SYSTEM, when terminating, shut down its parent addresses,
          e.g. an SSL connection which the parent assumed to still be active.
          Test: SYSTEM_SHUTDOWN

          Passive (listening or receiving) addresses with empty port field bound
          to a random port instead of terminating with error.
          Test: TCP4_NOPORT

          configure with some combination of disable options produced config
          files that failed to compile due to missing IPPROTO_TCP.
          Thanks to Thierry Fournier for report and patch.

          fixed a few minor bugs with OpenSSL in configure and with messages

          Socat did not work in FIPS mode because 1024 instead of 512 bit DH prime
          is required. Thanks to Zhigang Wang for reporting and sending a patch.

          Christophe Leroy provided a patch that fixes memory leaks reported by
          valgrind

          Help for filan -L was bad, is now corrected to:
          "follow symbolic links instead of showing their properties"

          Address options fdin and fdout were silently ignored when not applicable
          due to -u or -U option. Now these combinations are caught as errors.
          Test: FDOUT_ERROR
          Issue reported by Hendrik.

          Added option termios-cfmakeraw that calls cfmakeraw() and is preferred
          over option raw which is now obsolote. On SysV systems this call is
          simulated by appropriate setting.
          Thanks to Youfu Zhang for reporting issue with option raw.

  porting:
          Socat included <sys/poll.h> instead of POSIX <poll.h>
          Thanks to John Spencer for reporting this issue.

          Version 1.7.2.4 changed the check for gcc in configure.ac; this
          broke cross compiling. The particular check gets reverted.
          Thanks to Ross Burton and Danomi Manchego for reporting this issue.

          Debian Bug#764251: Set the build timestamp to a deterministic time:
          support external BUILD_DATE env var to allow to build reproducable
          binaries

          Joachim Fenkes provided an new adapted spec file.

          Type bool and macros Min and Max are defined by socat which led to
          compile errors when they were already provided by build framework.
          Thanks to Liyu Liu for providing a patch.

          David Arnstein contributed a patch for NetBSD 5.1 including stdbool.h
          support and appropriate files in Config/

          Lauri Tirkkonen contributed a patch regarding netinet/if_ether.h
          on Illumos

          Changes for Openindiana: define _XPG4_2, __EXTENSIONS__,
          _POSIX_PTHREAD_SEMANTICS; and minor changes

          Red Hat issue 1182005: socat 1.7.2.4 build failure missing
          linux/errqueue.h
          Socat failed to compile on on PPC due to new requirements for
          including <linux/errqueue.h> and a weakness in the conditional code.
          Thanks to Michel Normand for reporting this issue.

  doc:
          In the man page the PTY example was badly formatted. Thanks to
          J.F.Sebastian for sending a patch.

          Added missing CVE ids to security issues in CHANGES

  testing:
          Do not distribute testcert.conf with socat source but generate it
          (and new testcert6.conf) during test.sh run.

  ####################### V 1.7.2.4:

  corrections:
          LISTEN based addresses applied some address options, e.g. so-keepalive,
          to the listening file descriptor instead of the connected file
          descriptor
          Thanks to Ulises Alonso for reporting this bug

          make failed after configure with non gcc compiler due to missing
          include. Thanks to Horacio Mijail for reporting this problem

          configure checked for --disable-rawsocket but printed
          --disable-genericsocket in the help text. Thanks to Ben Gardiner for
          reporting and patching this bug

          In xioshutdown() a wrong branch was chosen after RECVFROM type
  addresses.
          Probably no impact.
          Thanks to David Binderman for reproting this issue.

          procan could not cleanly format ulimit values longer than 16 decimal
          digits. Thanks to Frank Dana for providing a patch that increases field
          width to 24 digits.

          OPENSSL-CONNECT with bind option failed on some systems,
  eg.FreeBSD, with
          "Invalid argument"
          Thanks to Emile den Tex for reporting this bug.

          Changed some variable definitions to make gcc -O2 aliasing checker happy
          Thanks to Ilya Gordeev for reporting these warnings

          On big endian platforms with type long >32bit the range option applied a
          bad base address. Thanks to hejia hejia for reporting and
  fixing this bug.

          Red Hat issue 1022070: missing length check in xiolog_ancillary_socket()

          Red Hat issue 1022063: out-of-range shifts on net mask bits

          Red Hat issue 1022062: strcpy misuse in xiosetsockaddrenv_ip4()

          Red Hat issue 1022048: strncpy hardening: corrected suspicious strncpy()
          uses

          Red Hat issue 1021958: fixed a bug with faulty buffer/data length
          calculation in xio-ascii.c:_xiodump()

          Red Hat issue 1021972: fixed a missing NUL termination in return string
          of sysutils.c:sockaddr_info() for the AF_UNIX case

          fixed some typos and minor issues, including:
          Red Hat issue 1021967: formatting error in manual page

          UNIX-LISTEN with fork option did not remove the socket file system entry
          when exiting. Other file system based passive address types had similar
          issues or failed to apply options umask, user e.a.
          Thanks to Lorenzo Monti for pointing me to this issue

  porting:
          Red Hat issue 1020203: configure checks fail with some compilers.
          Use case: clang

          Performed changes for Fedora release 19

          Adapted, improved test.sh script

          Red Hat issue 1021429: getgroupent fails with large number of groups;
          use getgrouplist() when available instead of sequence of calls to
          getgrent()

          Red Hat issue 1021948: snprintf API change;
          Implemented xio_snprintf() function as wrapper that tries to emulate C99
          behaviour on old glibc systems, and adapted all affected calls
          appropriately

          Mike Frysinger provided a patch that supports long long for time_t,
          socklen_t and a few other libc types.

          Artem Mygaiev extended Cedril Priscals Android build script
  with pty code

          The check for fips.h required stddef.h
          Thanks to Matt Hilt for reporting this issue and sending a patch

          Check for linux/errqueue.h failed on some systems due to lack of
          linux/types.h inclusion. Thanks to Michael Vastola for sending a patch.

          autoconf now prefers configure.ac over configure.in
          Thanks to Michael Vastola for sending a patch.

          type of struct cmsghdr.cmsg is system dependend, determine it with
          configure; some more print format corrections

  docu:
          libwrap always logs to syslog

          added actual text version of GPLv2

(tron)

2015-07-26 19:53:23 UTC pkgsrc-2015Q2 commitmail json YAML

Pullup ticket #4781 - requested by bsiegert
net/gcloud-golang-metadata: build fix

Revisions pulled up:
- net/gcloud-golang-metadata/Makefile                          1.2

---
  Module Name:    pkgsrc
  Committed By:  bsiegert
  Date:          Sat Jul 25 14:23:58 UTC 2015

  Modified Files:
          pkgsrc/net/gcloud-golang-metadata: Makefile

  Log Message:
  Fix build on NetBSD, PR pkg/49909.

  It turns out that [^a]* matches all files not beginning with a on Darwin
  and all files beginning with a on NetBSD. Work around this by crafting
  a for loop with a case expression.

(tron)

2015-07-26 19:49:47 UTC pkgsrc-2015Q2 commitmail json YAML

Pullup ticket #4775 - requested by sevan
graphics/libwmf: security patch

Revisions pulled up:
- graphics/libwmf/Makefile                                      1.77
- graphics/libwmf/distinfo                                      1.20
- graphics/libwmf/patches/patch-aa                              1.8
- graphics/libwmf/patches/patch-src_extra_gd_gd.c              1.1
- graphics/libwmf/patches/patch-src_extra_gd_gd_gd.c            1.1
- graphics/libwmf/patches/patch-src_extra_gd_gd_png.c          1.1
- graphics/libwmf/patches/patch-src_extra_gd_gdft.c            1.1
- graphics/libwmf/patches/patch-src_extra_gd_gdhelpers.c        1.1
- graphics/libwmf/patches/patch-src_extra_gd_gdhelpers.h        1.1
- graphics/libwmf/patches/patch-src_ipa_ipa.h                  1.1
- graphics/libwmf/patches/patch-src_player_meta.h              1.1

---
  Module Name:    pkgsrc
  Committed By:  sevan
  Date:          Fri Jul 17 12:33:47 UTC 2015

  Modified Files:
          pkgsrc/graphics/libwmf: Makefile distinfo
          pkgsrc/graphics/libwmf/patches: patch-aa
  Added Files:
          pkgsrc/graphics/libwmf/patches: patch-src_extra_gd_gd.c
              patch-src_extra_gd_gd_gd.c patch-src_extra_gd_gd_png.c
              patch-src_extra_gd_gdft.c patch-src_extra_gd_gdhelpers.c
              patch-src_extra_gd_gdhelpers.h patch-src_ipa_ipa.h
              patch-src_player_meta.h

  Log Message:
  Patch the following CVEs
  CVE-2004-0941
  CVE-2007-0455
  CVE-2007-2756
  CVE-2007-3472
  CVE-2007-3473
  CVE-2007-3477
  CVE-2009-3546
  CVE-2015-0848
  CVE-2015-4588
  CVE-2015-4695
  CVE-2015-4696

  Obtained from:
  CentOS libwmf RPM git
  Debian Bug 784205
  Debian Bug 784192
  Red Hat Bug 1227243
  via Jason Unovitch in FreeBSD bug 201513

  Reviewed by bsiegert@

(tron)

2015-07-26 19:09:21 UTC MAIN commitmail json YAML

Updated devel/p5-Moo to 2.000002

(wiz)

2015-07-26 19:09:12 UTC MAIN commitmail json YAML

Update to 2.000002:

2.000002 - 2015-07-24
  - BUILDARGS will now always be called on object creation, even if no
    attributes exist
  - fix required attributes with spaces or other odd characters in init_arg
  - fix (is => 'lazy', required => 1, init_arg => undef), which previously
    didn't think it provided a builder
  - under 'no Moo::sification', prevent automatic Moose metaclass inflation
    from ->meta calls
  - don't load Moo::Role for a ->does check if no roles could exist
  - make global destruction test more robust from outside interference
  - fix false default values satisfying required attributes
  - Fix Moose attribute delegation to a Moo class via a wildcard
  - work around case where Sub::Util is loadable but doesn't provide
    Sub::Util::set_subname
  - skip thread tests on perl 5.8.4 and below where threads are extremely
    unreliable
  - Allow stub methods (e.g. sub foo;) to be overwritten by accessors or other
    generated methods. (RT#103804)

(wiz)

2015-07-26 19:06:38 UTC MAIN commitmail json YAML

Updated www/p5-URI to 1.69

(wiz)

2015-07-26 19:06:28 UTC MAIN commitmail json YAML

Update to 1.69:

2015-07-25  Karen Etheridge <ether@cpan.org>

  Release 1.69

  Karen Etheridge:
    - add $VERSIONs for all modules that lack them

  Olaf Alders:
    - add missing documentation for URI::sftp
    - Clarify use of query_param() method

(wiz)

2015-07-26 18:24:15 UTC MAIN commitmail json YAML

Not compatible with Lua 5.3.

(alnsn)

2015-07-26 18:13:54 UTC MAIN commitmail json YAML

Revbump because of security/libssh2 update.

(nros)

2015-07-26 18:09:45 UTC MAIN commitmail json YAML

Revbump because of security/libssh2 update.

(nros)

2015-07-26 18:07:56 UTC MAIN commitmail json YAML

Revbump because of security/libssh2 update.

(nros)

2015-07-26 18:06:45 UTC MAIN commitmail json YAML

Revbump because of security/libssh2 update.

(nros)

2015-07-26 18:05:45 UTC MAIN commitmail json YAML

Revbump because of security/libssh2 update.

(nros)

2015-07-26 17:19:14 UTC MAIN commitmail json YAML

Note update of www/contao35 package to 3.5.2.

(taca)

2015-07-26 17:18:36 UTC MAIN commitmail json YAML

Update contao35 to 3.5.2.

* Add Serbian language files.

Version 3.5.2 (2015-07-24)
--------------------------

### Fixed
Revert some of the PhpStorm code inspector changes (see #7937).

Version 3.5.1 (2015-07-24)
--------------------------

### Fixed
Add a `StringUtil` class to restore PHP 7 compatibility (see contao/core-bundle#309).

### Fixed
Fix the `Validator::isEmail()` method (see contao/core-bundle#313).

### Fixed
Strip tags before auto-generating aliases (see #7857).

### Fixed
Correctly encode the URLs in the popup file manager (see #7929).

### Fixed
Check for the comments module when compiling the news meta fields (see #7901).

### Fixed
Also sort the newsletter channels alphabetically in the front end (see #7864).

### Fixed
Disable responsive images in the back end preview (see #7875).

### Fixed
Overwrite the request string when generating news/event feeds (see #7756).

### Fixed
Store the static URLs with the cached file (see #7914).

### Fixed
Correctly check the subfolders in the `hasAccess()` method (see #7920).

### Fixed
Updated the countries list (see #7918).

### Fixed
Respect the `notSortable` flag in the parent (see #7902).

### Fixed
Round the maximum upload size to an integer value (see #7880).

### Fixed
Make the markup minification less aggressive (see #7734).

### Fixed
Filter the indices in `Database::getFieldNames()` (see #7869).

### Fixed
Back-ported two fixes from the upstream versions.

(taca)

2015-07-26 17:18:05 UTC MAIN commitmail json YAML

Updated security/libssh2 to 1.6.0

(nros)

2015-07-26 17:15:35 UTC MAIN commitmail json YAML

Updated libssh2 to version 1.6.0.

Changelog:

Changes:

    Added libssh2_userauth_publickey_frommemory()

Bug fixes:

    wait_socket: wrong use of difftime()
    userauth: Fixed prompt text no longer being copied to the prompts struct
    mingw build: allow to pass custom CFLAGS
    Let mansyntax.sh work regardless of where it is called from
    Init HMAC_CTX before using it
    direct_tcpip: Fixed channel write
    WinCNG: fixed backend breakage
    OpenSSL: caused by introducing libssh2_hmac_ctx_init
    userauth.c: fix possible dereferences of a null pointer
    wincng: Added explicit clear memory feature to WinCNG backend
    openssl.c: fix possible segfault in case EVP_DigestInit fails
    wincng: fix return code of libssh2_md5_init()
    kex: do not ignore failure of libssh2_sha1_init()
    scp: fix that scp_send may transmit not initialised memory
    scp.c: improved command length calculation
    nonblocking examples: fix warning about unused tvdiff on Mac OS X
    configure: make clear-memory default but WARN if backend unsupported
    OpenSSL: Enable use of OpenSSL that doesn't have DSA
    OpenSSL: Use correct no-blowfish #define
    kex: fix libgcrypt memory leaks of bignum
    libssh2_channel_open: more detailed error message
    wincng: fixed memleak in (block) cipher destructor

(nros)

2015-07-26 15:58:54 UTC MAIN commitmail json YAML

2015-07-26 15:53:11 UTC MAIN commitmail json YAML

Simplify MESSAGE.NetBSD by removing {start,stop,reload}_cmd, which are
unnecessary to set. From Edgar Fuss in PR pkg/50049.

Bump revision.

(bsiegert)

2015-07-26 15:41:36 UTC pkgsrc-2015Q2 commitmail json YAML

Pullup ticket #4759 - requested by morr
net/haproxy: security fix

Revisions pulled up:
- net/haproxy/Makefile                                          1.21
- net/haproxy/distinfo                                          1.16
- net/haproxy/patches/patch-standard_h                          deleted

---
  Module Name: pkgsrc
  Committed By: morr
  Date: Sat Jul  4 13:13:53 UTC 2015

  Modified Files:
  pkgsrc/net/haproxy: Makefile distinfo
  Removed Files:
  pkgsrc/net/haproxy/patches: patch-standard_h

  Log Message:
  Security update to newest version.

  Changes:

  Released version 1.5.14 with the following main changes :
    - BUILD/MINOR: tools: rename popcount to my_popcountl
    - BUG/MAJOR: buffers: make the buffer_slow_realign() function respect output data

  Released version 1.5.13 with the following main changes :
    - BUG/MINOR: check: fix tcpcheck error message
    - CLEANUP: deinit: remove codes for cleaning p->block_rules
    - DOC: Update doc about weight, act and bck fields in the statistics
    - MINOR: ssl: add a destructor to free allocated SSL ressources
    - BUG/MEDIUM: ssl: fix tune.ssl.default-dh-param value being overwritten
    - MEDIUM: ssl: replace standards DH groups with custom ones
    - BUG/MINOR: debug: display (null) in place of "meth"
    - BUG/MINOR: cfgparse: fix typo in 'option httplog' error message
    - BUG/MEDIUM: cfgparse: segfault when userlist is misused
    - BUG/MEDIUM: stats: properly initialize the scope before dumping stats
    - BUG/MEDIUM: http: don't forward client shutdown without NOLINGER except for tunnels
    - CLEANUP: checks: fix double usage of cur / current_step in tcp-checks
    - BUG/MEDIUM: checks: do not dereference head of a tcp-check at the end
    - CLEANUP: checks: simplify the loop processing of tcp-checks
    - BUG/MAJOR: checks: always check for end of list before proceeding
    - BUG/MEDIUM: checks: do not dereference a list as a tcpcheck struct
    - BUG/MEDIUM: peers: apply a random reconnection timeout
    - BUG/MINOR: ssl: fix smp_fetch_ssl_fc_session_id
    - MEDIUM: init: don't stop proxies in parent process when exiting
    - MINOR: peers: store the pointer to the signal handler
    - MEDIUM: peers: unregister peers that were never started
    - MEDIUM: config: propagate the table's process list to the peers sections
    - MEDIUM: init: stop any peers section not bound to the correct process
    - MEDIUM: config: validate that peers sections are bound to exactly one process
    - MAJOR: peers: allow peers section to be used with nbproc > 1
    - DOC: relax the peers restriction to single-process
    - CLEANUP: config: fix misleading information in error message.
    - MINOR: config: report the number of processes using a peers section in the error case
    - BUG/MEDIUM: config: properly compute the default number of processes for a proxy

  pkgsrc changes:
  Thanks to "rename popcount to my_popcountl" one of patches can be removed.

(bsiegert)

2015-07-26 15:13:06 UTC MAIN commitmail json YAML

Updated graphics/elementary-xfce-icon-theme to 0.6

(youri)

2015-07-26 14:59:47 UTC MAIN commitmail json YAML

2015-07-26 14:01:42 UTC MAIN commitmail json YAML

Change dependencies to use new dict application. Bump.

(youri)

2015-07-26 13:59:24 UTC MAIN commitmail json YAML

2015-07-26 13:58:14 UTC MAIN commitmail json YAML

+ xfce4-dict
- xfce4-dict-plugin

(youri)

2015-07-26 13:55:09 UTC MAIN commitmail json YAML

Added textproc/xfce4-dict version 0.7.1

(youri)

2015-07-26 13:54:43 UTC MAIN commitmail json YAML

2015-07-26 13:53:58 UTC MAIN commitmail json YAML

Import xfce4-dict-0.7.1 as textproc/xfce4-dict.

This program allows you to search different kinds of dictionary services for
words or phrases and shows you the result. Currently you can query a Dict
server(RFC 2229), any online dictionary service by opening a web browser or
search for words using the aspell/ispell program.

(youri)

2015-07-26 13:30:31 UTC MAIN commitmail json YAML

Updated geography/R-countrycode to 0.18

(mef)

2015-07-26 13:30:22 UTC MAIN commitmail json YAML

Update 0.17 to 0.18
Version 0.18 (2014-12-17)
-------------------------
* Nils Enevoldsen did wonderful work refactoring most of the regex in the dictionary.
* Nils also added a bunch of tests. Thanks!
* Added Tokelau

(mef)

2015-07-26 12:19:51 UTC MAIN commitmail json YAML

Updated archivers/lzip to 1.17
Updated archivers/lziprecover to 1.17

(mef)

2015-07-26 12:17:47 UTC MAIN commitmail json YAML

Update 1.16 to 1.17
-------------------
2015-05-28  Antonio Diaz Diaz  <antonio@gnu.org>

* Version 1.17 released.
* New block selection algorithm makes merge up to 100 times faster.
* repair.cc: Repair time has been reduced by 15%.
* Added new option '-y, --debug-delay'.
* Added new option '-z, --debug-repair'.
* Makefile.in: Added new targets 'install*-compress'.
* testsuite/unzcrash.cc: Moved to top directory.
* lziprecover.texi: Added chapter 'File names'.

(mef)

2015-07-26 12:15:30 UTC MAIN commitmail json YAML

Update 1.16 to 1.17
-------------------
2015-07-12  Antonio Diaz Diaz  <antonio@gnu.org>
* Version 1.17 released.
* Reorganization of the compression code.
* lzip.texi: Added chapter 'Quality assurance'.
* Makefile.in: Added new targets 'install*-compress'.

(mef)

2015-07-25 22:15:09 UTC MAIN commitmail json YAML

add missing py-six DEPENDS

(richard)

2015-07-25 21:59:58 UTC MAIN commitmail json YAML

2015-07-25 21:59:26 UTC MAIN commitmail json YAML

Updated devel/hs-unordered-containers to 0.2.5.1

(szptvlfn)

2015-07-25 21:58:56 UTC MAIN commitmail json YAML

2015-07-25 18:29:02 UTC MAIN commitmail json YAML

-gtk-systrace
-systrace-policies

(dholland)

2015-07-25 18:28:42 UTC MAIN commitmail json YAML

Removed security/gtk-systrace too.

(dholland)

2015-07-25 18:27:34 UTC MAIN commitmail json YAML

2015-07-25 18:26:05 UTC MAIN commitmail json YAML

Removed security/systrace-policies.

(dholland)

2015-07-25 18:24:46 UTC MAIN commitmail json YAML

2015-07-25 18:17:42 UTC MAIN commitmail json YAML

2015-07-25 18:15:14 UTC MAIN commitmail json YAML

Update sign to 1.0.7. From Ben Gergely via mail to pkgsrc-users.

* fixed 'test' (-t) mode (kudos to Kai for noticing)
* fixed a bug in error message formatting when the original
  file extension cannot be guessed (--verify mode)
* fixed a bug in key fingerprint formatting routine
* added missing buffer range check in buf_parse_bignum()

(bsiegert)

2015-07-25 16:45:12 UTC MAIN commitmail json YAML

Update ed to 1.12. From Ben Gergely in mail to pkgsrc-users.

        * main_loop.c (exec_command): Return ERR if 'system' can't
          create a shell process.
        * main_loop.c (main_loop): Flush stdout/stderr before reading a
          new command.
        * buffer.c (put_sbuf_line): Added size parameter.
        * ed.1: Man page is now generated with 'help2man'.
        * ed.1: All command-line options are now documented in the man page.
        * Restored copyright notices of Andrew L. Moore. It seems Andrew
          granted some permissions but never assigned copyright to the FSF.
        * buffer.c (append_lines): Fixed 'a', 'c' and 'i' commands.
          (When used in a global command list, the commands following
          them in the list were ignored).
        * main_loop.c (exec_command): Fixed 'e' command.
          (It quitted when invoked a second time with a modified buffer).
        * main.c: Added new option '--restricted'.
        * 'red' has been converted to a script invoking 'ed --restricted'.
        * Description of ed in the manual has been changed.
        * testsuite: Modified some tests and removed obsolete posix tests.
        * main_loop.c: 'ibufp' variable made local to main_loop.
        * Defined type bool to make clear which functions and variables
          are Boolean.
        * Added 'const' to all pointer declarations accepting it.
        * regex.c (replace_matching_text): Make se_max an enum.
        * signal.c: Include termios.h
        * Converted C99 style comments '//' to C89 style comments '/* */'.
        * ed.texinfo: Fixed an erratum.
        * Changed copyright holder from Andrew, Antonio to the FSF.
        * buffer.c, main_loop.c: Undo now restores the modified status.
        * regex.c (search_and_replace): Fixed a race condition with user
          interrupt.
        * signal.c: Added functions resize_line_buffer and
          resize_undo_buffer to definitively fix the aliasing warnings.
        * Some minor corrections have been made to the manual.
        * carg_parser.c (ap_resize_buffer): An aliasing related segfault
          that only occurs when overoptimizing with GCC on some
          architectures (alpha, sparc) has been (hopefully) fixed.
        * signal.c (resize_buffer): Likewise.
        * configure: Locale has been fixed to 'C'.
        * Makefile.in: Man page is now installed by default.
        * 'make install-info' should now work on Debian and OS X.
        * ed.texinfo: License updated to GFDL version 1.3 or later.

(bsiegert)

2015-07-25 16:37:58 UTC MAIN commitmail json YAML

Updated www/trac to 1.0.8

(gdt)

2015-07-25 16:32:30 UTC MAIN commitmail json YAML

Update to 1.0.8.

Upstream changes are almost entirely miscellaneous bugfixes and
performance improvements.

Details at http://trac.edgewall.org/wiki/TracDev/ReleaseNotes/1.0

(gdt)

2015-07-25 15:52:49 UTC MAIN commitmail json YAML

Updated graphics/cogl to 1.20.0

(prlw1)

2015-07-25 15:52:25 UTC MAIN commitmail json YAML

Find native X libGL.so.2 as well as modular X libGL.so.1.

While here, update to cogl to 1.20.0

Cogl 1.20.0                                                        2015-03-23

  List of changes since Cogl 1.18.2

  Support for "quad buffer" based stereo rendering
  Support for Mir window system
  A number of updates for the Wayland support
  Improved vblank sync when using glXWaitForMSC

Many thanks to:

  Marco Trevisan (Trevino)
  Owen W. Taylor
  Robert Bragg
  Rui Matos
  Adel Gadllah
  Chris Wilson
  Necdet Yuel
  Sebastian Rasmussen
  Seong-ho Cho
  Ting-Wei Lan

(prlw1)

2015-07-25 15:14:54 UTC MAIN commitmail json YAML

Use details about variants when applicable instead of common names, this means
that the illumos variants such as SmartOS & OmniOS will be labelled accordingly
rather than being lumped in under the SunOS 5.11 banner.

This was put together with the help of Joerg @ pkgsrcCon 2015

Reviewed by joerg@ bsiegert@

(sevan)

2015-07-25 15:11:09 UTC MAIN commitmail json YAML

Introduce $LOWER_VARIANT_VERSION, this is used to store version info for variant
Operating Systems.
For SmartOS, store the result from running uname -v & trimming the joyent_
prefix.
For OmniOS, store the result from processing /etc/release with awk(1)

Reviewed by joerg@ bsiegert@

(sevan)

2015-07-25 14:44:41 UTC MAIN commitmail json YAML

2015-07-25 14:43:23 UTC MAIN commitmail json YAML

Update socat to 1.7.3.0. From Ben Gergely in PR pkg/49996.

####################### V 1.7.3.0:

security:
(CVE Id pending)
Fixed problems with signal handling caused by use of not async signal
safe functions in signal handlers that could freeze socat, allowing
denial of service attacks.
Many changes in signal handling and the diagnostic messages system were
applied to make the code async signal safe but still provide detailled
logging from signal handlers:
Coded function vsnprintf_r() as async signal safe incomplete substitute
of libc vsnprintf()
Coded function snprinterr() to replace %m in strings with a system error
message
Instead of gettimeofday() use clock_gettime() when available
Pass Diagnostic messages from signal handler per unix socket to the main
program flow
Use sigaction() instead of signal() for better control
Turn off nested signal handler invocations
Thanks to Peter Lobsinger for reporting and explaining this issue.

Red Hat issue 1019975: add TLS host name checks
OpenSSL client checks if the server certificates names in
extensions/subjectAltName/DNS or in subject/commonName match the name
used to connect or the value of the openssl-commonname option.
Test: OPENSSL_CN_CLIENT_SECURITY

OpenSSL server checks if the client certificates names in
extensions/subjectAltNames/DNS or subject/commonName match the value of
the openssl-commonname option when it is used.
Test: OPENSSL_CN_SERVER_SECURITY

Red Hat issue 1019964: socat now uses the system certificate store with
OPENSSL when neither options cafile nor capath are used

Red Hat issue 1019972: needs to specify OpenSSL cipher suites
Default cipherlist is now "HIGH:-NULL:-PSK:-aNULL" instead of empty to
prevent downgrade attacks

new features:
OpenSSL addresses set couple of environment variables from values in
peer certificate, e.g.:
SOCAT_OPENSSL_X509_SUBJECT, SOCAT_OPENSSL_X509_ISSUER,
SOCAT_OPENSSL_X509_COMMONNAME,
SOCAT_OPENSSL_X509V3_SUBJECTALTNAME_DNS
Tests: ENV_OPENSSL_{CLIENT,SERVER}_X509_*

Added support for methods TLSv1, TLSv1.1, TLSv1.2, and DTLS1
Tests: OPENSSL_METHOD_*

Enabled OpenSSL server side use of ECDHE ciphers. Feature suggested
by Andrey Arapov.

Added a new option termios-rawer for ptys.
Thanks to Christian Vogelgsang for pointing me to this requirement

corrections:
Bind with ABSTRACT commands used non-abstract namespace (Linux).
Test: ABSTRACT_BIND
Thanks to Denis Shatov for reporting this bug.

Fixed return value of nestlex()

Option ignoreeof on the right address hung.
Test: IGNOREEOF_REV
Thanks to Franz Fasching for reporting this bug.

Address SYSTEM, when terminating, shut down its parent addresses,
e.g. an SSL connection which the parent assumed to still be active.
Test: SYSTEM_SHUTDOWN

Passive (listening or receiving) addresses with empty port field bound
to a random port instead of terminating with error.
Test: TCP4_NOPORT

configure with some combination of disable options produced config
files that failed to compile due to missing IPPROTO_TCP.
Thanks to Thierry Fournier for report and patch.

fixed a few minor bugs with OpenSSL in configure and with messages

Socat did not work in FIPS mode because 1024 instead of 512 bit DH prime
is required. Thanks to Zhigang Wang for reporting and sending a patch.

Christophe Leroy provided a patch that fixes memory leaks reported by
valgrind

Help for filan -L was bad, is now corrected to:
"follow symbolic links instead of showing their properties"

Address options fdin and fdout were silently ignored when not applicable
due to -u or -U option. Now these combinations are caught as errors.
Test: FDOUT_ERROR
Issue reported by Hendrik.

Added option termios-cfmakeraw that calls cfmakeraw() and is preferred
over option raw which is now obsolote. On SysV systems this call is
simulated by appropriate setting.
Thanks to Youfu Zhang for reporting issue with option raw.

porting:
Socat included <sys/poll.h> instead of POSIX <poll.h>
Thanks to John Spencer for reporting this issue.

Version 1.7.2.4 changed the check for gcc in configure.ac; this
broke cross compiling. The particular check gets reverted.
Thanks to Ross Burton and Danomi Manchego for reporting this issue.

Debian Bug#764251: Set the build timestamp to a deterministic time:
support external BUILD_DATE env var to allow to build reproducable
binaries

Joachim Fenkes provided an new adapted spec file.

Type bool and macros Min and Max are defined by socat which led to
compile errors when they were already provided by build framework.
Thanks to Liyu Liu for providing a patch.

David Arnstein contributed a patch for NetBSD 5.1 including stdbool.h
support and appropriate files in Config/

Lauri Tirkkonen contributed a patch regarding netinet/if_ether.h
on Illumos

Changes for Openindiana: define _XPG4_2, __EXTENSIONS__,
_POSIX_PTHREAD_SEMANTICS; and minor changes

Red Hat issue 1182005: socat 1.7.2.4 build failure missing
linux/errqueue.h
Socat failed to compile on on PPC due to new requirements for
including <linux/errqueue.h> and a weakness in the conditional code.
Thanks to Michel Normand for reporting this issue.

doc:
In the man page the PTY example was badly formatted. Thanks to
J.F.Sebastian for sending a patch.

Added missing CVE ids to security issues in CHANGES

testing:
Do not distribute testcert.conf with socat source but generate it
(and new testcert6.conf) during test.sh run.

####################### V 1.7.2.4:

corrections:
LISTEN based addresses applied some address options, e.g. so-keepalive,
to the listening file descriptor instead of the connected file
descriptor
Thanks to Ulises Alonso for reporting this bug

make failed after configure with non gcc compiler due to missing
include. Thanks to Horacio Mijail for reporting this problem

configure checked for --disable-rawsocket but printed
--disable-genericsocket in the help text. Thanks to Ben Gardiner for
reporting and patching this bug

In xioshutdown() a wrong branch was chosen after RECVFROM type addresses.
Probably no impact.
Thanks to David Binderman for reproting this issue.

procan could not cleanly format ulimit values longer than 16 decimal
digits. Thanks to Frank Dana for providing a patch that increases field
width to 24 digits.

OPENSSL-CONNECT with bind option failed on some systems, eg.FreeBSD, with
"Invalid argument"
Thanks to Emile den Tex for reporting this bug.

Changed some variable definitions to make gcc -O2 aliasing checker happy
Thanks to Ilya Gordeev for reporting these warnings

On big endian platforms with type long >32bit the range option applied a
bad base address. Thanks to hejia hejia for reporting and fixing this bug.

Red Hat issue 1022070: missing length check in xiolog_ancillary_socket()

Red Hat issue 1022063: out-of-range shifts on net mask bits

Red Hat issue 1022062: strcpy misuse in xiosetsockaddrenv_ip4()

Red Hat issue 1022048: strncpy hardening: corrected suspicious strncpy()
uses

Red Hat issue 1021958: fixed a bug with faulty buffer/data length
calculation in xio-ascii.c:_xiodump()

Red Hat issue 1021972: fixed a missing NUL termination in return string
of sysutils.c:sockaddr_info() for the AF_UNIX case

fixed some typos and minor issues, including:
Red Hat issue 1021967: formatting error in manual page

UNIX-LISTEN with fork option did not remove the socket file system entry
when exiting. Other file system based passive address types had similar
issues or failed to apply options umask, user e.a.
Thanks to Lorenzo Monti for pointing me to this issue

porting:
Red Hat issue 1020203: configure checks fail with some compilers.
Use case: clang

Performed changes for Fedora release 19

Adapted, improved test.sh script

Red Hat issue 1021429: getgroupent fails with large number of groups;
use getgrouplist() when available instead of sequence of calls to
getgrent()

Red Hat issue 1021948: snprintf API change;
Implemented xio_snprintf() function as wrapper that tries to emulate C99
behaviour on old glibc systems, and adapted all affected calls
appropriately

Mike Frysinger provided a patch that supports long long for time_t,
socklen_t and a few other libc types.

Artem Mygaiev extended Cedril Priscals Android build script with pty code

The check for fips.h required stddef.h
Thanks to Matt Hilt for reporting this issue and sending a patch

Check for linux/errqueue.h failed on some systems due to lack of
linux/types.h inclusion. Thanks to Michael Vastola for sending a patch.

autoconf now prefers configure.ac over configure.in
Thanks to Michael Vastola for sending a patch.

type of struct cmsghdr.cmsg is system dependend, determine it with
configure; some more print format corrections

docu:
libwrap always logs to syslog

added actual text version of GPLv2

(bsiegert)

2015-07-25 14:36:12 UTC MAIN commitmail json YAML

2015-07-25 14:23:58 UTC MAIN commitmail json YAML

Fix build on NetBSD, PR pkg/49909.

It turns out that [^a]* matches all files not beginning with a on Darwin
and all files beginning with a on NetBSD. Work around this by crafting
a for loop with a case expression.

(bsiegert)

2015-07-25 14:05:15 UTC MAIN commitmail json YAML

Mark p5-Text-Table and p5-Parse-Dia-SQL additions, PR pkg/50054 and
PR pkg/50055.

(bsiegert)

2015-07-25 14:04:16 UTC MAIN commitmail json YAML

Add package for Parse::Dia::SQL. From David Gutteridge in PR pkg/50055.

Parse::Dia::SQL converts Dia class diagrams into SQL. Various SQL
dialects are supported.

(bsiegert)

2015-07-25 13:53:10 UTC MAIN commitmail json YAML

Add a package for Text::Table. From David Gutteridge in PR pkg/50054.

Text::Table can be used to render plaintext/ASCII-art/Unicode-art
tables.

(bsiegert)

2015-07-25 12:13:53 UTC MAIN commitmail json YAML

Add cpu_sup for netbsd also

(abs)

2015-07-25 09:47:13 UTC MAIN commitmail json YAML

Updated devel/xulrunner31 to 31.8.0

(ryoon)

2015-07-25 09:45:54 UTC MAIN commitmail json YAML

Update to 31.8.0

* Sync with firefox31.

(ryoon)

2015-07-25 07:52:46 UTC MAIN commitmail json YAML

Updated devel/p5-CHI to 0.60
Updated devel/p5-B-Hooks-Parser to 0.13
Updated devel/p5-CPAN-FindDependencies to 2.44
Updated devel/p5-CPAN-Meta to 2.150005
Updated devel/p5-CPAN-Meta-Check to 0.012
Updated devel/p5-CPAN-Perl-Releases to 2.28
Updated devel/p5-CPANPLUS to 0.9154

(mef)

2015-07-25 07:51:37 UTC MAIN commitmail json YAML

(pkgsrc)
- Add following line for 'make test'
  +BUILD_DEPENDS+=        p5-Package-Constants-[0-9]*:../../devel/p5-Package-Constants
(upstream)
- Update 0.9152 to 0.9154
----------------------
0.9154      Sat Jul  4 10:39:23 BST 2015
* Fixed an issue with @INC mangling in CPANPLUS process
* POD fixes courtesy of Alexey Molchanov

(mef)

2015-07-25 07:49:46 UTC MAIN commitmail json YAML

Add two lines for 'make test to complete'
  +# for make test
  +BUILD_DEPENDS+=        p5-Log-Message-Simple-[0-9]*:../../devel/p5-Log-Message-Simple
  +BUILD_DEPENDS+=        p5-Log-Message-[0-9]*:../../devel/p5-Log-Message

(mef)

2015-07-25 07:25:20 UTC MAIN commitmail json YAML

Update 2.18 to 2.28
-------------------
version 2.28 at 2015-07-20 20:29:55 +0000
    Updated for v5.23.1

version 2.26 at 2015-06-30 10:37:30 +0000
    Anything greater than v5.21.5 comes with a .xz

version 2.24 at 2015-06-21 10:46:48 +0000
    Updated for v5.23.0

version 2.22 at 2015-06-01 18:19:11 +0000
    Updated for v5.22.0
    Made the version number .22 in salutation

(mef)

2015-07-25 07:21:09 UTC MAIN commitmail json YAML

udate to 0.012
--------------
0.012    2015-06-18 23:20:54+02:00 Europe/Amsterdam
          Drop dependency on Exporter 5.57

(mef)

2015-07-25 07:17:12 UTC MAIN commitmail json YAML

Update 2.150001 to 2.150005
---------------------------
2.150005  2015-06-09 19:08:44-06:00 America/Denver
  [TESTING]
  - Changed some test data from UTF-8 to ASCII

2.150004  2015-05-19 11:25:53-04:00 America/New_York (TRIAL RELEASE)
  [DOCUMENTED]
  - Noted explicitly that historical META spec files are licensed under
      the same terms as Perl

  [TESTING]
  - Added test for 'x_deprecated' field in "provides"

  [META]
  - declared extra developer prereq

2.150003  2015-04-21 19:41:15-04:00 America/New_York (TRIAL RELEASE)
  [CHANGED]
  - Serialized CPAN::Meta objects now include a x_serialization_backend
      entry

2.150002  2015-04-19 01:00:10+02:00 Europe/Berlin (TRIAL RELEASE)
  [CHANGED]
  - Metadata merging now does deep hash merging as long as keys
      don't conflict

(mef)

2015-07-25 07:13:29 UTC MAIN commitmail json YAML

(pkgsrc)
- Add following dependency for make test
    +# for make test
    +BUILD_DEPENDS+=        p5-Test-Pod-Coverage-[0-9]*:../../devel/p5-Test-Pod-Coverage
    +# for Types::Standard
    +BUILD_DEPENDS+=        p5-Type-Tiny-[0-9]*:../../devel/p5-Type-Tiny
    +BUILD_DEPENDS+=        p5-Moo-[0-9]*:../../devel/p5-Moo
(upstream)
- Update 2.43 to 2.44
2.44    2015-07-21      No functional changes, just fixing tests which
                          broke with modern dependencies on old perl

(mef)

2015-07-25 06:46:33 UTC MAIN commitmail json YAML

(pkgsrc)
- Add Following line
  +# for make test
  +BUILD_DEPENDS+=        p5-Test-Exception-[0-9]*:../../devel/p5-Test-Exception
(upstream)
- Update 0.12 to 0.13
-------------------
0.13    2015-06-06 20:54:32Z
  - switch tooling off of Module::Install

(mef)

2015-07-25 06:38:22 UTC MAIN commitmail json YAML

(pkgsrc)
- Convert DEPENDS from p5-JSON to p5-JSON-MaybeXS, see below and check
  by 'make test' if you have question, thanks.
(upstream)
- Update 0.59 to 0.60
-----------------
0.60  Jun 7, 2015
* Fixes
  - Switch JSON backends from JSON.pm to JSON::MaybeXS - https://github.com/jonswar/perl-chi/pull/20 (Karen Etheridge)

(mef)

2015-07-25 04:11:55 UTC MAIN commitmail json YAML

Bump PKGREVISION for Xpoll.h moves.

(markd)

2015-07-25 04:10:53 UTC MAIN commitmail json YAML

2015-07-25 04:05:37 UTC MAIN commitmail json YAML

Regen distinfo for previous 2 commits.

(ryoon)

2015-07-25 04:04:54 UTC MAIN commitmail json YAML

Fix libxul.so link with freetype2 from recent NetBSD current's native Xorg.

(ryoon)

2015-07-25 04:03:33 UTC MAIN commitmail json YAML

Should fix devel/xulrunner31 symlink, bin/xulrunner31.

(ryoon)

2015-07-25 03:46:55 UTC MAIN commitmail json YAML

Updated lang/gcc5 to 5.2.0
Updated lang/gcc5-libs to 5.2.0nb1

(ryoon)

2015-07-25 03:46:02 UTC MAIN commitmail json YAML

Update to 5.2.0

Changelog:
GCC 5.2

  This is the [42]list of problem reports (PRs) from GCC's bug tracking
  system that are known to be fixed in the 5.2 release. This list might
  not be complete (that is, it is possible that some PRs that have been
  fixed are not listed here).

Target Specific Changes

  IA-32/x86-64

    * Support for new AMD instructions monitorx and mwaitx has been
      added. This includes new intrinsic and built-in support. It is
      enabled through option -mmwaitx. The instructions monitorx and
      mwaitx implement the same functionality as the old monitor and
      mwait instructions. In addition mwaitx adds a configurable timer.
      The timer value is received as third argument and stored in
      register %ebx.

    For questions related to the use of GCC, please consult these web
    pages and the [43]GCC manuals. If that fails, the
    [44]gcc-help@gcc.gnu.org mailing list might help. Comments on these
    web pages and the development of GCC are welcome on our developer
    list at [45]gcc@gcc.gnu.org. All of [46]our lists have public
    archives.

  Copyright (C) [47]Free Software Foundation, Inc. Verbatim copying and
  distribution of this entire article is permitted in any medium,
  provided this notice is preserved.

  These pages are [48]maintained by the GCC team. Last modified
  2015-07-16[49].

References

  42. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=5.2.0
  43. https://gcc.gnu.org/onlinedocs/
  44. mailto:gcc-help@gcc.gnu.org
  45. mailto:gcc@gcc.gnu.org
  46. https://gcc.gnu.org/lists.html
  47. http://www.fsf.org/
  48. https://gcc.gnu.org/about.html
  49. http://validator.w3.org/check/referer

(ryoon)

2015-07-25 03:30:37 UTC MAIN commitmail json YAML

2015-07-25 03:29:57 UTC MAIN commitmail json YAML

Update to 4.6.3a

* Update MASTER_SITES.

Changelog:
Version 4.6.3 - 2015-06-17

* new mirror setting mirror:overwrite and options --overwrite/--no-overwrite.
* new mirror option --upload-older.
* new mirror option --recursion={always,never,missing,newer}.
* try to download zero sized files as they may be non-empty.
* torrent: new options --only-new, --only-incomplete.
* torrent: fixed endless loop in FD deallocation.
* fixed a memleak when parsing a directory listing with special files.
* fixed one byte buffer overflow in cls.
* fixed cmd:fail-exit description in the man page.
* fixed large stack usage when parsing fish directory listings.

Version 4.6.2 - 2015-04-16

* new command "edit" instead of the edit alias.
* new setting ssl:priority for disabling selected protocols.
* new settings fish:auto-confirm and sftp:auto-confirm.
* new setting file:use-lock to lock local files before accessing.
* ftp: fixed disconnecting on timeout (broken in 4.6.0).
* http: enclose ipv6 address in brackets in URLs and Host header.
* fixed mirror for http protocol with redirections.
* fixed `bookmark edit' to use correct XDG path if XDG is used.
* fixed a wildcard certificate validation vulnerability (CVE-2014-0139).
* fixed proxy authentication for CONNECT method.
* fixed exit code of `help' command.
* fixed sftp to show file names with slashes.
* fixed pget status display when all chunks are done except the first one.
* Ukrainian translation updated (Yuri Chornoivan).
* Russian translation updated.

Version 4.6.1 - 2014-12-29

* new mirror option --scan-all-first.
* mirror --Remove-source-files now removes files already present at the target.
* added a workaround for FUSE with HadoopFS I/O error during rename(2).
* fixed du to round file size up to block size.
* fixed compilation with libressl.
* fixed OPTS MLST, removed trailing semicolon.
* fixed put to sftp with special files (like /dev/stdin).
* fixed ftp to copy SID properly with GnuTLS (Tim Kosse).
* fixed mirror to follow redirections to files (Tomas Hozza).

Version 4.6.0 - 2014-10-13

* new torrent --share option.
* new setting mirror:require-source.
* new settings xfer:use-temp-file and xfer:temp-file-name.
* ftp: wait for QUIT reply before closing control socket.

Version 4.5.6 - 2014-10-13

* display valid IDN in URLs without percent encoding.
* ftp: shutdown SSL connection before closing control socket.
* ftp: avoid duplication of PROT command.
* fixed debug -o to append to the log file.
* fixed compilation without SSL.
* http: don't uncompress files ending with .gz, .Z or .tgz
* http: fixed inflation of some files.
* minor fixes in torrent protocol.

Version 4.5.5 - 2014-09-04

* added support for internationalized domain names.
* added lftp --norc option.
* added mirror "Finished" message.
* added ftp:catch-size setting.
* fixed net:max-retries setting.
* fixed byte counters in mirror status.
* fixed a segfault in ftps.
* fixed a spurious error message in fxp and ftp.

Version 4.5.4 - 2014-08-07

* new setting mirror:sort-by (name, size, date).
* torrent: reduced cpu and memory usage.
* fixed occasional "BUG:deadlock" message.
* fixed a segfault when a directory contains duplicate file names.
* fixed a memory leak in torrent.
* fixed byte counters in mirror --depth-first.
* fixed timeout checks in FISH.
* translations updated (pl).

Version 4.5.3 - 2014-07-06

* new setting ftp:site.
* don't uncompress http body when Contrent-Type is compressed.
* check source address of DHT replies.
* discard disconnected torrent peers only after a timeout.

Version 4.5.2 - 2014-06-11

* fixed a coredump on startup when compiled with certain gcc versions.
* mkdir -q option for quiet operation.
* glob --exist and --not-exist options.
* improved torrent status, show piece availability statistics.
* remove unconnectable torrent peers on trackerless torrents.

Version 4.5.1 - 2014-06-02

* show piece availabilty in torrent status.
* fixed a coredump in ftp when data connection fails.
* fixed default values of some settings.
* fixed http redirection handling.
* fixed compilation with gcc-4.8.3.

Version 4.5.0 - 2014-05-23

* optimized cpu usage for 10Gb/s transfers by using better data structures
  and algorithms.
* new open option --env-password to take password from LFTP_PASSWORD
  environment variable.
* new `exit parent' subcommand.
* new settings http:accept-encoding, http:decode.
* new setting xfer:max-log-size to limit transfer log size.
* show last disconnect cause for a few seconds in the session status.
* improved mirror status to display real-time aggregated byte count and rate.
* save torrent matadata on disk and load if available when needed.
* improved torrent DHT search.
* fixed exit behavior to flush buffered commands.
* fixed transfer rate reporting for mirror --parallel.

Version 4.4.16 - 2014-05-07

* fixed mirror --loop to re-check base directory contents.
* fixed sftp and fish authentication by password with FreeBSD server.
* fixed directory index parsing for some http servers.
* fixed find command output to avoid extra slash for plain files.
* fixed several bugs which could cause segfault.

Version 4.4.15 - 2014-01-21

* new setting pget:min-chunk-size.
* improved DHT search by preferring responded nodes.
* allow UTC timezone in http timestamps.
* fixed WebDAV rmdir operation.
* fixed torrent hang on shutdown when a tracker is unresposive.
* fixed adding too many slashes to URLs in http.

Version 4.4.14 - 2013-12-13

* fixed HEAD/PROPFIND handling in http.
* a minor memory leak fixed.

Version 4.4.13 - 2013-11-26

* fixed a bug in file size checking code.

Version 4.4.12 - 2013-11-26

* new option -l (--ls) for find command.
* improve workaround for single NL replies from an FTP server.
* Ukrainian translation updated (Yuri Chornoivan).
* fixed spinning in "get" when no remote session is open.
* don't pre-fetch file information in "get" when not needed.
* fixed handling of 400/501 http codes for PROPFIND to switch to HEAD.
* fixed a crash after cls.
* added file size decrease checking.
* used a newer libtool for ppc64le platform.

Version 4.4.11 - 2013-11-11

* fixed a slow down in mirror from http (thanks to OGAWA Hirofumi).
* fixed a coredump in sftp when accessing an inexistent file.

Version 4.4.10 - 2013-10-11

* mirror new option --file/-f to mirror a single file.
* mirror new option -O for get/put similarity.
* WebDAV fixes and improvements.
* new setting ftp:use-utf8 to disable utf-8 activation.
* fixed handling of incorrect encoding of file names.
* fixed compilation without libiconv.
* fixed occasional hang in mirror.
* kill ssh when terminating fish or sftp connection.

Version 4.4.9 - 2013-08-23

* implemented support for mirror -L in sftp.
* pass all 3 std file descriptors when attaching to lftp instance.
* ftp: added a workaround for incorrectly formatted multiline replies.
* sftp: added a workaround for RouterOS v6.
* fixed mirror --no-empty-dirs to skip directories with no included files.
* fixed segfault when there is no TERM environment variable.
* fixed torrent for meta-info files with % in their names.
* fixed compilation when IPV6_V6ONLY if not defined.
* fixed compilation with older zlib.
* fixed FD_CLOEXEC flag on cwd and transfer_log.
* fixed MLSD parsing for semicolons in file names.
* new translation: Ukrainian (thanks to Yuri Chornoivan).
* man page updated.

Version 4.4.8 - 2013-05-29

* add support for redirections in torrent metainfo fetching.
* add support for gzip Content-Encoding in http.
* fixed an endless loop in mirror from sftp.

Version 4.4.7 - 2013-05-23

* translations update (pl, cs).
* fixed "get -c" looping in some cases.
* fixed translations encoding (pl, it, es, pt_BR).
* fixed occasional file corruption and garbage logging in Fish protocol.

(ryoon)

2015-07-25 03:12:02 UTC MAIN commitmail json YAML

Updated security/stunnel to 5.20

(ryoon)

2015-07-25 03:11:18 UTC MAIN commitmail json YAML

Update to 5.20

Changelog:
Version 5.20, 2015.07.09, urgency: HIGH
* Security bugfixes
  - OpenSSL DLLs updated to version 1.0.2d.
    https://www.openssl.org/news/secadv_20150709.txt
* New features
  - poll(2) re-enabled on MacOS X 10.5 and later.
  - Xcode SDK is automatically used on MacOS X if no other
    locally installed OpenSSL directory is found.
  - The SSL library detection algorithm was made a bit smarter.
  - Warnings about insecure authentication were modified to
    include the name of the affected service section.
  - A warning was added to stunnel.init if no pid file was
    specified in the configuration file (thx to Peter Pentchev).
  - Optional debugging symbols are included in the Win32 installer.
  - Documentation updates (closes Debian bug #781669).
* Bugfixes
  - Signal pipe reinitialization added to prevent turning the
    main accepting thread into a busy wait loop when an external
    condition breaks the signal pipe.  This bug was found to
    surface on Win32, but other platforms may also be affected.
  - Fixed removing the disabled taskbar icon.
  - Generated temporary DH parameters are used for configuration
    reload instead of the static defaults.
  - LSB compatibility fixes added to the stunnel.init script (thx
    to Peter Pentchev).
  - Fixed the manual page headers (thx to Gleydson Soares).

Version 5.19, 2015.06.16, urgency: MEDIUM:
* New features
  - OpenSSL DLLs updated to version 1.0.2c.
  - Added a runtime check whether COMP_zlib() method is implemented
    in order to improve compatibility with the Debian OpenSSL build.
* Bugfixes
  - Improved socket error handling.
  - Cron thread priority on Win32 platform changed to
    THREAD_PRIORITY_LOWEST to improve portability.
  - Makefile bugfixes for stunnel 5.18 regressions.
  - Fixed some typos in docs and scripts (thx to Peter Pentchev).
  - Fixed a log level check condition (thx to Peter Pentchev).

Version 5.18, 2015.06.12, urgency: MEDIUM:
* New features
  - OpenSSL DLLs updated to version 1.0.2b.
    https://www.openssl.org/news/secadv_20150611.txt
  - Added "include" configuration file option to include all
    configuration file parts located in a specified directory.
  - Log file is reopened every 24 hours.  With "log = overwrite"
    this feature can be used to prevent filling up disk space.
  - Temporary DH parameters are refreshed every 24 hours, unless
    static DH parameters were provided in the certificate file.
  - Unique initial DH parameters are distributed with each release.
  - Warnings are logged on potentially insecure authentication.
  - Improved compatibility with the current OpenSSL 1.1.0-dev tree:
    removed RLE compression support, etc.
  - Updated stunnel.spec (thx to Bill Quayle).
* Bugfixes
  - Fixed handling of dynamic connect targets.
  - Fixed handling of trailing whitespaces in the Content-Length
    header of the NTLM authentication.
  - Fixed --sysconfdir and --localstatedir handling (thx to
    Dagobert Michelsen).

(ryoon)

2015-07-25 02:11:15 UTC MAIN commitmail json YAML

Added gcolor2 version 0.4 to x11/

(kamil)

2015-07-25 02:09:12 UTC MAIN commitmail json YAML

2015-07-25 02:06:04 UTC MAIN commitmail json YAML

Import gcolor2-0.4 as x11/gcolor2

gcolor2 is a simple color selector that was originally based on gcolor, ported
to use GTK+2, and now has a completely new UI.

Use Gentoo mirror in the place of SourceForge as more reliable.

(kamil)

2015-07-24 17:02:52 UTC MAIN commitmail json YAML

Updated sysutils/coreutils to 8.23nb2

(jperkin)

2015-07-24 17:02:44 UTC MAIN commitmail json YAML

Pass -install_name on Darwin to record install path of libstdbuf.so.  The
default is to use the relative output path which results in broken REQUIRES.

Bump PKGREVISION.

(jperkin)

2015-07-24 13:22:28 UTC MAIN commitmail json YAML

2015-07-24 10:35:33 UTC MAIN commitmail json YAML

Updated www/dillo to 3.0.5; comms/minicom to 2.7

(adam)

2015-07-24 10:33:27 UTC MAIN commitmail json YAML

1.22.2
---
- Fix buffering for funny sample formats (namely, 24 bit), that do not
  fit nicely into 32768 bytes. Effect was a nasty endless loop where
  mpg123 needs to be externally killed.

1.22.1
---
- Fix mpg123-id3dump when writing images with funny (manipulated) MIME type.
  Stupid mistake in length computation of the fallback file extension caused
  junk from memory being appended to the filename if the pointer size
  is less than 64 bit. For 64 bit pointers (or longer) it was correct by
  accident.
- Fix pedantic build by cleaning up out123 source, also now really showing
  the encoding list in --longhelp instead of possibly, again, writing junk
  from memory in there.
- Not linking libmpg123 against libltdl anymore (bug 215).
- Update MSVC++ ports a bit to make them work again.

(adam)

2015-07-24 10:24:37 UTC MAIN commitmail json YAML

Updated sysutils/salt to 2014.7.2nb1

(jperkin)

2015-07-24 10:24:27 UTC MAIN commitmail json YAML

Add SMF manifest, contributed by Jasper Siepkes in joyent/pkgsrc#279.

Bump PKGREVISION.

(jperkin)

2015-07-24 10:23:12 UTC MAIN commitmail json YAML

Changes 3.0.5:
+- Image buffer/cache improvements.
- Fix for segfault when there's no dpid and view source is requested.
- Fix view-source dpi to handle null characters correctly.
- Made view-source dpi use CSS formatting (it's shorter and cleaner).
  Patches: Jorge Arellano Cid
+- Crosscompile/buildroot-friendly fltk-config test.
+- Fix X11 icon name.
- In location bar, tend toward showing beginning of URL instead of end.
- Handle irix's version of vsnprintf().
- INPUT, TEXTAREA placeholder attribute.
- Better notification when user's domainrc settings block page redirection.
- Fix bug with font_factor preference and CSS font-size:(larger|smaller).
- Recognize Menu key in keysrc.
- HTTPS: change cipher list to "ALL:!aNULL:!eNULL:!LOW:!EXPORT40:!RC4",
  disable SSL3, disable TLS compression.
+- Avoid requesting background images if an ancestor has display:none.
- Ignore built-in search url if any are specified in dillorc.

(adam)

2015-07-23 20:54:54 UTC MAIN commitmail json YAML

2015-07-23 15:01:08 UTC MAIN commitmail json YAML

Updated games/wesnoth to 1.12.4

(adam)

2015-07-23 14:56:45 UTC MAIN commitmail json YAML

This is a maintenance release for the stable 1.12.x series, and it is fully compatible with previous releases in the series. This version includes an important fix for a security vulnerability affecting add-on creators, as well as an assortment of other bug fixes, minor improvements, and translation updates.

(adam)

2015-07-23 12:21:42 UTC MAIN commitmail json YAML

Updated textproc/p5-Net-IDN-Encode to 2.300

(wiz)

2015-07-23 12:21:34 UTC MAIN commitmail json YAML

Update to 2.300:

2.300 (2015-06-17)
- update to Unicode 8.0.0

(wiz)

2015-07-23 12:19:48 UTC MAIN commitmail json YAML

Updated www/emacs-w3m-snapshot to 1.4.554.20150609

(mef)

2015-07-23 12:19:10 UTC MAIN commitmail json YAML

Update 1.4.538 (0.20141022) to 1.4.554 (0.20150609)
---------------------------------------------------
2015-06-09  Katsumi Yamaoka  <yamaoka@jpl.org>

* w3m.el (w3m-retrieve-and-render):
Set w3m-current-url (and w3m-current-title) so as to enable moving back
to the past page (in the case w3m-clear-display-while-reading is t).
(w3m-goto-url): Don't move point to the top when it failed to retrieve.
[emacs-w3m:12471]

2015-06-02  Katsumi Yamaoka  <yamaoka@jpl.org>

* w3m.el (w3m-retrieve-and-render):
Don't display progress message for `about:' pages.  [emacs-w3m:12465]

2015-05-22  Katsumi Yamaoka  <yamaoka@jpl.org>

* w3m.el (w3m-refresh-at-time): Remove workaround.  [emacs-w3m:12459]

2015-05-13  Katsumi Yamaoka  <yamaoka@jpl.org>

* w3m.el (w3m-use-refresh): Mention Google looping problem in docstring.
(w3m-refresh-minimum-interval): Default to 5; change the meaning.
(w3m-check-refresh-attribute, w3m-view-previous-page):
Do nothing for w3m-refresh-minimum-interval.
(w3m-refresh-at-time):
Override meta refresh seconds by w3m-refresh-minimum-interval.
(w3m-goto-url-with-timer): Check for buffer's existence correctly.

2015-05-10  Katsumi Yamaoka  <yamaoka@jpl.org>

* w3m.el (w3m-error): Work for XEmacs.  [emacs-w3m:12444]
(w3m-retrieve-and-render): Work for XEmacs.
Note: `get-buffer-window' requires a buffer for the 1st arg in XEmacs.

2015-05-08  Katsumi Yamaoka  <yamaoka@jpl.org>

* w3m.el (w3m-refresh-at-time):
Temporary fix to avoid Google search looping.  [emacs-w3m:12440]

2015-04-27  Katsumi Yamaoka  <yamaoka@jpl.org>

* w3m.el (w3m-error): New face.
(w3m-retrieve-and-render): Denote `failed' if it did so.

2015-04-06  Katsumi Yamaoka  <yamaoka@jpl.org>

* w3m.el (w3m-clear-display-while-reading): New user option.
(w3m-retrieve-and-render): Clear the current display while reading
a new page if w3m-clear-display-while-reading is non-nil.
[emacs-w3m:12428]

2015-04-03  Katsumi Yamaoka  <yamaoka@jpl.org>

* w3m.el (w3m-url-savable-p): New function.
(w3m-toolbar, w3m-menubar): Use it.

* w3m-save.el: Provide the feature.

2015-04-02  Katsumi Yamaoka  <yamaoka@jpl.org>

* w3m.el (w3m-toolbar-buttons, w3m-toolbar): Add `Save' button.

* icons/save-up.png, icons/save-up.xpm
* icons30/save-up.png, icons30/save-up.xpm: New files.

2015-04-01  Katsumi Yamaoka  <yamaoka@jpl.org>

* w3m-save.el: New file.

* w3m.el (w3m-menubar, w3m-lynx-like-map, w3m-info-like-map):
Add w3m-save-buffer and bind `C-x C-s' to it.

2015-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>

* w3m-filter.el (w3m-filter-add-name-anchors):
Don't use ambiguous regexp.  [emacs-w3m:12422]

2015-02-08  Katsumi Yamaoka  <yamaoka@jpl.org>

* w3m.el (w3m-search-name-anchor): Search for both "name" and
(w3m-url-decode-string "name").  [emacs-w3m:12392]

2015-01-28  Katsumi Yamaoka  <yamaoka@jpl.org>

* w3m.el (w3m-extra-numeric-character-reference):
Use #x20 instead of ? .
(w3m-scroll-up-1): Remove obsolete function alias to w3m-scroll-up.

2015-01-22  Katsumi Yamaoka  <yamaoka@jpl.org>

* w3mhack.el (w3mhack-compile-file): New function.
(w3mhack-compile): Use it.

2014-11-24  Andrey Kotlarski  <m00naticus@gmail.com>

* w3m-lnum.el (w3m-lnum-actions-link-alist): Add open in background
bindings.
(w3m-lnum-remove-overlays): Enlarge default region to clean.
(w3m-lnum-set-numbering): Use w3m-lnum-remove-overlays.
(w3m-lnum-next-filter): New function.
(w3m-lnum-read-interactive): Use it to search below and above when
filter has no matches left.
(w3m-with-lnum): Guarantee cleanup of right buffer.
(w3m-lnum-get-action): Fix checkdoc warning.
(w3m-lnum-visit): Make it function.  Enable visiting in background.
(w3m-lnum-follow): Add prefix combinations to visit links in
background.

(mef)

2015-07-23 12:16:58 UTC MAIN commitmail json YAML

Updated devel/p5-File-Which to 1.19

(wiz)

2015-07-23 12:16:48 UTC MAIN commitmail json YAML

Update to 1.19:

1.19      2015-07-21 09:23:54 -0400
  - Relax required Perl back to 5.6.x as this module is upriver to
    a large number of modules
  - No non-core requirements back to 5.6.2

(wiz)

2015-07-23 12:16:01 UTC MAIN commitmail json YAML

Updated www/p5-HTTP-Message to 6.10

(wiz)

2015-07-23 12:15:53 UTC MAIN commitmail json YAML

Update to 6.10:

6.10  2015-07-19

    - fix uses of qr/.../m in tests that do not work in 5.8.x

6.09  2015-07-19

    - converted all uses of Test.pm to Test::More

    - fix uninitialized warning in HTTP::Config (RT#105929)

(wiz)

2015-07-23 12:11:38 UTC MAIN commitmail json YAML

Updated ham/fldigi to 3.22.13

(mef)

2015-07-23 12:11:29 UTC MAIN commitmail json YAML

Update to 3.22.13
-----------------
=Version 3.22.13=
2015-07-18  David Freese  <iam_w1hkj@w1hkj.com>
        7bdf051: FSQ bug fix
        9319676: XMLRPC commands

(mef)

2015-07-23 11:10:49 UTC MAIN commitmail json YAML

2015-07-23 10:55:17 UTC MAIN commitmail json YAML

Needs docbook-xsl to build.

(joerg)

2015-07-23 07:02:02 UTC MAIN commitmail json YAML

add and enable p5-Graph

(jnemeth)

2015-07-23 06:59:02 UTC MAIN commitmail json YAML

2015-07-22 20:16:44 UTC pkgsrc-2015Q2 commitmail json YAML

Pullup ticket #4778, #4779 and #4780.

(tron)

2015-07-22 20:16:13 UTC pkgsrc-2015Q2 commitmail json YAML

Pullup ticket #4780 - requested by taca
mail/postfix: security update

Revisions pulled up:
- mail/postfix/Makefile                                        1.284
- mail/postfix/distinfo                                        1.160
- mail/postfix/patches/patch-ai                                1.33

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed Jul 22 00:25:37 UTC 2015

  Modified Files:
  pkgsrc/mail/postfix: Makefile distinfo
  pkgsrc/mail/postfix/patches: patch-ai

  Log Message:
  Update postfix to 2.11.6, security release.

  With all supported Postfix releases, the default settings have been
  updated so that they no longer enable export-grade ciphers, and no
  longer enable the SSLv2 and SSLv3 protocols. These ciphers and
  protocols have little if any legitimate use today, and have instead
  become a vehicle for downgrade attacks. There are no other code
  changes.

  Postfix documentation has been updated to reflect the new default
  settings and their rationale; the RELEASE_NOTES give suggestions
  for how to enable the old ciphers and protocols if your infrastructure
  requires them.

  Finally, abandoning deprecated ciphers and protocols does not really
  improve TLS security without measures to better authenticate remote
  servers. Secure DNS and TLSA are steps in that direction.

(tron)

2015-07-22 20:12:58 UTC pkgsrc-2015Q2 commitmail json YAML

Pullup ticket #4779 - requested by taca
www/apache24: security update

Revisions pulled up:
- www/apache24/Makefile                                        1.37
- www/apache24/distinfo                                        1.21
- www/apache24/patches/patch-CVE-2015-0228                      deleted
- www/apache24/patches/patch-server_core__filters.c            deleted
- www/apache24/patches/patch-server_protocol.c                  deleted

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Mon Jul 20 00:08:35 UTC 2015

  Modified Files:
  pkgsrc/www/apache24: Makefile distinfo
  Removed Files:
  pkgsrc/www/apache24/patches: patch-CVE-2015-0228
      patch-server_core__filters.c patch-server_protocol.c

  Log Message:
  Update apache24 to 2.4.16 (Apache HTTP Server 2.4.16).

          Apache HTTP Server 2.4.16 Released

  The Apache Software Foundation and the Apache HTTP Server Project
  are pleased to announce the release of version 2.4.16 of the Apache
  HTTP Server ("Apache").  This version of Apache is our latest GA
  release of the new generation 2.4.x branch of Apache HTTPD and
  represents fifteen years of innovation by the project, and is
  recommended over all previous releases. This release of Apache is
  principally a security, feature and bug fix release. NOTE: versions
  2.4.13, 2.4.14 and 2.4.15 were not released.

  CVE-2015-3183 (cve.mitre.org)
  core: Fix chunk header parsing defect.
  Remove apr_brigade_flatten(), buffering and duplicated code from
  the HTTP_IN filter, parse chunks in a single pass with zero copy.
  Limit accepted chunk-size to 2^63-1 and be strict about chunk-ext
  authorized characters.

  CVE-2015-3185 (cve.mitre.org)
  Replacement of ap_some_auth_required (unusable in Apache httpd 2.4)
  with new ap_some_authn_required and ap_force_authn hook.

  CVE-2015-0253 (cve.mitre.org)
  core: Fix a crash with ErrorDocument 400 pointing to a local URL-path
  with the INCLUDES filter active, introduced in 2.4.11. PR 57531.

  CVE-2015-0228 (cve.mitre.org)
  mod_lua: A maliciously crafted websockets PING after a script
  calls r:wsupgrade() can cause a child process crash.

  Also in this release are some exciting new features including:

  *) Better default recommended SSLCipherSuite and SSLProxyCipherSuite
  *) mod_proxy_scgi: ProxySCGIInternalRedirect now allows an alternate
  response header to be used by the application
  *) Event MPM improvements
  *) Various mod_proxy_* improvements
  *) mod_log_config: Add "%{UNIT}T" format to output request duration in
  seconds, milliseconds or microseconds depending on UNIT ("s", "ms",
  "us")

(tron)

2015-07-22 20:07:53 UTC pkgsrc-2015Q2 commitmail json YAML

Pullup ticket #4778 - requested by taca
mail/fml4: bug fix patch

Revisions pulled up:
- mail/fml4/Makefile                                            1.14
- mail/fml4/distinfo                                            1.6
- mail/fml4/patches/patch-ac                                    1.3
- mail/fml4/patches/patch-ag                                    1.3
- mail/fml4/patches/patch-src_jcode.pl                          1.1

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Mon Jul 20 00:06:18 UTC 2015

  Modified Files:
  pkgsrc/mail/fml4: Makefile distinfo
  pkgsrc/mail/fml4/patches: patch-ac patch-ag
  Added Files:
  pkgsrc/mail/fml4/patches: patch-src_jcode.pl

  Log Message:
  Fix runtime problem with perl 5.22.

  Bump PKGREVISION.

(tron)

2015-07-22 19:49:07 UTC MAIN commitmail json YAML

2015-07-22 19:08:13 UTC MAIN commitmail json YAML

Updated pkgtools/x11-links to 0.96

(ryoon)

2015-07-22 19:06:18 UTC MAIN commitmail json YAML

2015-07-22 05:43:06 UTC MAIN commitmail json YAML

+ denemo-1.2.4.

(wiz)

2015-07-22 04:58:14 UTC MAIN commitmail json YAML

2015-07-22 04:54:23 UTC MAIN commitmail json YAML

Requires sqlite3>=3.8.3. PR 50074.

(dholland)

2015-07-22 00:26:51 UTC MAIN commitmail json YAML

+ postfix-3.0.2.

(taca)

2015-07-22 00:26:17 UTC MAIN commitmail json YAML

Note update of mail/postfix package to 2.11.6.

(taca)

2015-07-22 00:25:37 UTC MAIN commitmail json YAML

Update postfix to 2.11.6, security release.

With all supported Postfix releases, the default settings have been
updated so that they no longer enable export-grade ciphers, and no
longer enable the SSLv2 and SSLv3 protocols. These ciphers and
protocols have little if any legitimate use today, and have instead
become a vehicle for downgrade attacks. There are no other code
changes.

Postfix documentation has been updated to reflect the new default
settings and their rationale; the RELEASE_NOTES give suggestions
for how to enable the old ciphers and protocols if your infrastructure
requires them.

Finally, abandoning deprecated ciphers and protocols does not really
improve TLS security without measures to better authenticate remote
servers. Secure DNS and TLSA are steps in that direction.

(taca)

2015-07-21 23:35:41 UTC MAIN commitmail json YAML

+ projectlibre

(asau)

2015-07-21 21:57:00 UTC MAIN commitmail json YAML

fltk13 and tigervnc updates.

(markd)

2015-07-21 21:51:39 UTC MAIN commitmail json YAML

Update tigervnc to 1.5.0

TigerVNC 1.5.0 - Lots of changes have been made since
the last release, but the highlights are:

  - IPv6 support in the servers
  - You can now have two passwords, one for full access and one for
    "view only".
  - syslog support in Xvnc
  - GnuTLS priority configuration
  - Performance fixes
  - You can now easily start more clients on OS X
  - More translations

TigerVNC 1.4.3 - This release addresses the following issues:

  - Upstream patches applied to the underlying Xorg code base to
    mitigate CVE-2015-0255.
  - Fixes for performance regressions introduced in 1.4.0.
  - Character encoding of clipboard text send by Java viewer now
    strictly adheres to the RFB specification.

TigerVNC 1.4.1 - This is release is in response to the recent Xorg
  Security Advisory. There are no known vulnerabilities in TigerVNC itself
  related to this advisory, however some of the changes to the Xorg
  codebase were not compatible with TigerVNC.

TigerVNC 1.4.0 - Lots of changes have been made since
the last release, but the highlights are:

- Colour map (aka indexed, palette) mode is largely removed. TigerVNC
  is still compatible with other VNC implementations, but you can no
  longer run Xvnc in colour map mode.
- Improvements to the keyboard handling both on the server and client
- Support for newer Xorg versions in the server build
- x0vncserver now supports XDamage for instant updates, making it
  slightly less useless
- WinVNC now works in service mode on newer Windows versions
- Better full screen mode for the Java client on OS X
- man pages should now be up to date
- Improved TLS implementation in the Java client
- Lots and lots of cleanups and bug fixes

(markd)

2015-07-21 21:39:27 UTC MAIN commitmail json YAML

Note update of graphics/libjpeg-turbo to 1.4.1.

(rjs)

2015-07-21 21:37:13 UTC MAIN commitmail json YAML

2015-07-21 21:36:41 UTC MAIN commitmail json YAML

Update fltk13 to 1.3.3

New features and extensions

- New class Fl_Copy_Surface allows copying graphical data to the
  clipboard in a cross-platform way
- Support for pasting graphical data from the clipboard to a widget.
- New class Fl_Image_Surface allows drawing into an Fl_Image object.
- Methods Fl::add_clipboard_notify() and Fl::remove_clipboard_notify()
  to get notifications whenever the clipboard changes
- New method Fl_Window::wait_for_expose()
- New bilinear scaling method for RGB images
- New method Fl_Widget::top_window()
- New method Fl_Widget::top_window_offset()
- New Fl_Tree_Item methods label_x(), label_y(), label_w(), label_h().
- New methods Fl::enable_im() and Fl::disable_im() to enable/disable
  system Input Methods (IM).
- New methods Fl::add_system_handler() and Fl::remove_system_handler()
  to intercept low level system events.
- New FLTK scheme "gleam"
- New method Fl::is_scheme() to compare the current scheme name.
- New method to set custom icons for windows
  see Fl_Window::icon() for more info.
- New method to set any custom cursor, based on a Fl_RGB_Image object.
  Also changed fallback cursors to use this method, so that fallback
  cursors are handled in a platform independent manner
- New ability to convert Fl_Pixmap to Fl_RGB_Image
- Support for full screen windows over multiple monitors.
- New optional line numbers in Fl_Text_Display and options to control
  line numbers and word wrapping (on/off) in example test/editor.cxx.
- On Linux/Unix, class Fl_Native_File_Chooser uses file dialogs from
  the Gnome environment (provided by the libgtk dynamic library) if
  available, and falls back to Fl_File_Chooser if not
  Use option Fl::OPTION_FNFC_USES_GTK to enable/disable this feature.
- New support for the Mac OS text input system that deals with character
  composition and input of languages with large character sets (e.g.
  Chinese and Japanese). This implementation has been reported to work
  well for Chinese. Superficial testing suggests it's also operational
  for Japanese. In-depth testing remains needed though.
Other improvements

- Many CMake improvements
- Some autoconf, configure improvements.
- Removed 1024 bytes constraint in labels and browser lines
- Mac OS version of Fl_Native_File_Chooser: when using filters in a
  save file dialog, the output file extension gets changed when the
  user modifies the output file type.
- Many Mac OS X improvements related to Fl_Sys_Menu_Bar.
- Improved Mac OS X keyboard handling of special keys or combinations.
- General Mac OS X improvements, incl. high resolution (Retina)
  displays, and support up to Mac OS X 10.10.
- Documentation improvements and clarifications.
- Printing support improvements, including GL windows.
- Many improvements related to Fl_Tree (some of them only as ABI
  breaking features, see below).
- Some static data has been made 'const' to improve memory usage
  with shared libraries.
- Don't grab navkeys with modifiers (CTRL, ALT), as the application
  may want them
- Check compiler support of -fvisibility, -fvisibility-inlines-hidden,
  and use it, if available. Reduces shared library size.
- Drag'n'drop behaves better now: if text is dropped in the widget it
  comes from, then it works like cut and paste.
- Other improvements of DND handling when dragging text from other
  applications, e.g. Firefox and Thunderbird.
- Windows message WM_QUIT is processed like SIGTERM, i.e. as a
  request to terminate the program.
- Fluid no longer closes the code window when hitting ESC (STR #2997).
- Improved Fl_Widget::when() handling in Fl_Tabs
- Improved support for more recent compilers (clang and gcc) that
  issue more warnings, and fixed some 32-/64-bit compilation issues.
- Added method Fl_Window::clear_modal_states() to make it possible
  to remove the modal or non-modal state from a window
Bug fixes

- Fixed word selection dragging in text input
- Fixed crash if Fl_Window::flush() called while window not shown()
- Fixed segfault in fl_set_fonts_xft.cxx when loading fonts not named
  as expected
- Fixed a memory leak in font loading/allocation
- Fixed OS X fl_read_image() and Fl_Paged_Device::print_window_part()
  when using a Retina display.
- Fixed MinGW build if configure didn't find strcasecmp()
- Fixed access of protected member under Linux/Unix
- Fixed various Mac specific OpenGL issues
- Fixed PostScript printing with non-english locale
- Fixed a regression in Fl_File_Chooser since FLTK 1.1.8: the
  Enter key now selects the file again.
- Fixed a bug in Fl_Native_File_Chooser (Windows) for some file name
  input filters
- Fixed out-of-bounds memory access in Fl_Text_Display

(markd)

2015-07-21 20:41:34 UTC MAIN commitmail json YAML

2015-07-21 20:16:33 UTC MAIN commitmail json YAML

Note p5-Text-Aligner addition, PR pkg/50053.

(bsiegert)

2015-07-21 20:15:00 UTC MAIN commitmail json YAML

Add new package for Text::Aligner. Package from David Gutteridge in
PR pkg/50053. From DESCR:

Text::Aligner provides nicely formatted alignment of text strings.

(bsiegert)

2015-07-21 19:46:36 UTC MAIN commitmail json YAML

Note update of math/py-pandas to 0.16.2.

(bad)

2015-07-21 19:44:45 UTC MAIN commitmail json YAML

Update py-pandas to 0.16.2.

Closes PR pkg/49958 by matthewd.

Changes since 0.14.1 for a full list see
http://pandas.pydata.org/pandas-docs/stable/whatsnew.html:

v 0.16.2

This is a minor bug-fix release from 0.16.1 and includes a a large
number of bug fixes along some new features (pipe() method),
enhancements, and performance improvements.

We recommend that all users upgrade to this version.

Highlights include:

    A new pipe method
    Documentation on how to use numba with pandas,

v 0.16.1
This is a minor bug-fix release from 0.16.0 and includes a a large
number of bug fixes along several new features, enhancements, and
performance improvements. We recommend that all users upgrade to this
version.

Highlights include:

    Support for a CategoricalIndex, a category based index
    New section on how-to-contribute to pandas
    Revised ���Merge, join, and concatenate��� documentation, including
    graphical examples to make it easier to understand each operations
    New method sample for drawing random samples from Series, DataFrames
    and Panels.
    The default Index printing has changed to a more uniform format
    BusinessHour datetime-offset is now supported
    Further enhancement to the .str accessor to make string operations easier

v0.16.0 (March 22, 2015)

This is a major release from 0.15.2 and includes a small number of
API changes, several new features, enhancements, and performance
improvements along with a large number of bug fixes. We recommend that
all users upgrade to this version.

Highlights include:

    DataFrame.assign method
    Series.to_coo/from_coo methods to interact with scipy.sparse
    Backwards incompatible change to Timedelta to conform the .seconds
    attribute with datetime.timedelta
    Changes to the .loc slicing API to conform with the behavior of .ix
    Changes to the default for ordering in the Categorical constructor
    Enhancement to the .str accessor to make string operations easier
    The pandas.tools.rplot, pandas.sandbox.qtpandas and pandas.rpy
    modules are deprecated. We refer users to external packages like
    seaborn, pandas-qt and rpy2 for similar or equivalent functionality,
    see here
v0.15.0 (October 18, 2014)

This is a major release from 0.14.1 and includes a small number of
API changes, several new features, enhancements, and performance
improvements along with a large number of bug fixes. We recommend that
all users upgrade to this version.

Warning

pandas >= 0.15.0 will no longer support compatibility with NumPy
versions < 1.7.0. If you want to use the latest versions of pandas,
please upgrade to NumPy >= 1.7.0 (GH7711)

    Highlights include:
        The Categorical type was integrated as a first-class pandas type
        New scalar type Timedelta, and a new index type TimedeltaIndex
        New datetimelike properties accessor .dt for Series, see
        Datetimelike Properties
        New DataFrame default display for df.info() to include memory
        usage, see Memory Usage
        read_csv will now by default ignore blank lines when parsing
        API change in using Indexes in set operations
        Enhancements in the handling of timezones
        A lot of improvements to the rolling and expanding moment funtions
        Internal refactoring of the Index class to no longer sub-class
        ndarray, see Internal Refactoring
        dropping support for PyTables less than version 3.0.0, and
        numexpr less than version 2.1 (GH7990)
        Split indexing documentation into Indexing and Selecting Data
        and MultiIndex / Advanced Indexing
        Split out string methods documentation into Working with Text Data

(bad)

2015-07-21 19:25:01 UTC MAIN commitmail json YAML

Add missing dependency, ride update.

(wiz)

2015-07-21 19:23:51 UTC MAIN commitmail json YAML

Added devel/py-pkginfo version 1.2.1

(wiz)

2015-07-21 19:23:41 UTC MAIN commitmail json YAML

+ py-pkginfo.

(wiz)

2015-07-21 19:23:12 UTC MAIN commitmail json YAML

Import py34-pkginfo-1.2.1 as devel/py-pkginfo, packaged for wip by
Kamel Ibn Aziz Derouiche.

Query metadatdata from sdists / bdists / installed packages

(wiz)

2015-07-21 19:18:25 UTC MAIN commitmail json YAML

Update comment.

(wiz)

2015-07-21 19:18:01 UTC MAIN commitmail json YAML

Updated misc/khard to 0.4.1

(wiz)

2015-07-21 19:17:51 UTC MAIN commitmail json YAML

Update to 0.4.1:

v0.3.1: 2015.03.26
- Nickname attribute added
- New parameter in config file: show_nicknames = yes / no

v0.3.2: 2015.03.27
- Read-only support for Categories attribute

v0.3.3: 2015.05.07
- twinkle option was renamed to phone: Now it prints all phone numbers like the mutt option does for
  e-mail addresses (more general approach for external phone clients)
- adapted twinkle plugin for use with the new phone option

v0.4.0: 2015.06.15
- new option "add-email": Get full email from stdin, filter senders mail address and add that
  address to an existing contact or create a new one. Feature tested with email client mutt.

v0.4.1: 2015.07.16
- improved search results for phone, mutt and alot

(wiz)

2015-07-21 19:16:02 UTC MAIN commitmail json YAML

Updated time/khal to 0.6.0

(wiz)

2015-07-21 19:15:53 UTC MAIN commitmail json YAML

Update to 0.6.0:

0.6.0
=====
2015-07-15

* BUGFIX Recurrent events with a THISANDFUTURE parameter could affect other
  events. This could lead to events not being found by the normal lookup
  functionality when they should and being found when they shouldn't. As the
  second case should result in an error that nobody reported yet, I hope nobody
  got bitten by this.
* new dependency for running the tests: freezegun
* new dependency for setup from scm: setuptools_scm
* khal now needs to be installed for building the documentation

* ikhal's should now support ctrl-e, ctrl-a, ctrl-k and ctrl-u in editable text
  fields (Thomas Glanzmann)
* ikhal: space and backspace are new (additional) default keybindings for right
  and left (Pierre David)
* when editing descriptions you can now insert new lines (Thomas Glanzmann)
* khal should not choose an arbitrary default calendar anymore (Markus
  Unterwaditzer)
* the zsh completion file has been updated (Hugo Osvaldo Barrera)
* new command `import` lets users import .ics files (Christian Geier)
* khal should accept relative dates on the command line (today, tomorrow and
  weekday names) (Christian Geier)
* keybinding for saving an event from ikhal's event editor (default is `meta +
  enter`) (Christian Geier)

0.5.0
=====
released on 2015-06-01

* fixed several bugs relating to events with unknown timezones but UNTIL, RDATE
  or EXDATE properties that are in Zulu time (thanks to Michele Baldessari for
  reporting those)
* bugfix: on systems with a local time of UTC-X dealing with allday events lead
  to crashes
* bugfix: British summer time is recognized as daylight saving time (Bradley
  Jones)
* compatibility with vdirsyncer 0.5

* new command `search` allows to search for events
* user changeable keybindings in ikhal, with hjkl as default alternatives for
  arrows in calendar browser, see documentation for more details
* new command `at` shows all events scheduled for a specific datetime
* support for reading birthdays from vcard collections (set calendar/collection
  `type` to *birthdays*)
* new command `printformats` prints a fixed date in all configured date-time
  settings
* `new` now supports the `--until`/`-u` flag to specify until when recurring
  events should run (Micah Nordland)
* python 3 (>= 3.3) support (Hugo Osvaldo Barrera)

ikhal
-----
* minimal support for reccurring events in ikhal's editor (Micah Nordland)
* configurable view size in ikhal (Bradley Jones)
* show events organizers (Bradley Jones)
* major reorganisation of ikhal layout (Markus Unterwaditzer)

(wiz)

2015-07-21 17:29:19 UTC MAIN commitmail json YAML

Added devel/p5-Graph-ReadWrite version 2.07

(gson)

2015-07-21 17:28:34 UTC pkgsrc-2015Q2 commitmail json YAML

2015-07-21 17:28:23 UTC pkgsrc-2015Q2 commitmail json YAML

Pullup ticket #4777 - requested by taca
www/squid3: security update

Revisions pulled up:
- www/squid3/Makefile                                          1.49
- www/squid3/PLIST                                              1.11
- www/squid3/distinfo                                          1.35
- www/squid3/patches/patch-configure                            1.8

---
  Module Name: pkgsrc
  Committed By: adam
  Date: Mon Jul  6 09:39:40 UTC 2015

  Modified Files:
  pkgsrc/www/squid3: Makefile PLIST distinfo
  pkgsrc/www/squid3/patches: patch-configure

  Log Message:
  Changes 3.5.6:
  * ext_edirectory_userip_acl: fix uninitialized variable
  * Do not blindly forward cache peer CONNECT responses.
  * Bug 3483: assertion failed store.cc:1866: 'isEmpty()'
  * Use relative-URL in errorpage.css for SN.png
  * Bug 4193: Memory leak on FTP listings
  * Bug 4274: ssl_crtd.8 not being installed
  * Fix CONNECT failover to IPv4 after trying broken IPv6 servers
  * Bug 4183: segfault when freeing https_port clientca on reconfigure or exit.
  * TLS: Disable client-initiated renegotiation
  * Translations: add Spanish US dialect alias
  * Cleanup: replace __DATE__ and __TIME__ macros
  * Fix assertion String.cc:221: "str"
  * Fix assertion comm.cc:759: "Comm::IsConnOpen(conn)" in ConnStateData::getSslContextDone
  * Bug 3875: bad mimeLoadIconFile error handling
  * Support custom OIDs in *_cert ACLs
  * Bug 3329: The server side pinned connection is not closed properly

(tron)

2015-07-21 17:27:47 UTC MAIN commitmail json YAML

Add p5-Graph-ReadWrite

(gson)

2015-07-21 17:25:10 UTC MAIN commitmail json YAML

Initial import of the Graph-ReadWrite-2.07 Perl module into pkgsrc as
devel/p5-Graph-ReadWrite.

This is a perl module for reading and writing directed graphs represented
using the Graph module.

(gson)

2015-07-21 14:33:49 UTC MAIN commitmail json YAML

Remove duplicate line, sorry and thanks

(mef)

2015-07-21 14:33:08 UTC MAIN commitmail json YAML

Updated editors/emacs-snapshot to 25.0.50.2015071614

(mef)

2015-07-21 14:32:19 UTC MAIN commitmail json YAML

Update 20150415(22) to 20150716(14)
Changes are recorded in source tree as ChangeLog.2, and too long
to list here. Thanks.

(mef)

2015-07-21 14:03:11 UTC MAIN commitmail json YAML

+texworks-0.4.6

(mef)

2015-07-21 13:54:30 UTC MAIN commitmail json YAML

Updated ham/fldigi to 3.22.12

(mef)

2015-07-21 13:54:22 UTC MAIN commitmail json YAML

Update 3.22.10 to 3.22.12
-------------------------
=Version 3.22.12=
2015-07-18  David Freese  <iam_w1hkj@w1hkj.com>
        1579ef6: FSQ heard parser
        f61f7d7: fsq modem
        dfb9318: FreqControl focus
        e477621: trx exit

=Version 3.22.11=
        7d881bf: flrig xmlrpc update

2015-06-07  Kamal Mostafa  <kamal@whence.com>
        40a6dcb: BUILD_{DATE,USER,HOST}

(mef)

2015-07-21 13:30:39 UTC MAIN commitmail json YAML

fix typo in package name

I noticed this in the daily "www update.changes log" email.

(reed)

2015-07-21 12:52:36 UTC MAIN commitmail json YAML

Updated pkgtools/x11-links to 0.95

(ryoon)

2015-07-21 12:51:42 UTC MAIN commitmail json YAML

2015-07-21 12:40:45 UTC MAIN commitmail json YAML

Updated x11/xproto to 7.0.28nb1

(wiz)

2015-07-21 12:40:36 UTC MAIN commitmail json YAML

Fix FD_SETSIZE definition.

Move the define of FD_SETSIZE before the include of select.h, so that
is actually does something useful.

Bump PKGREVISION.

(wiz)

2015-07-21 12:16:51 UTC MAIN commitmail json YAML

Updated audio/soundtouch to 1.9.0

(richard)

2015-07-21 12:16:14 UTC MAIN commitmail json YAML

update to soundtouch-1.9.0
from README.html:
1.9:

    Added support for parallel computation support via OpenMP primitives for
    better performance in multicore systems. Benchmarks show that achieved
    parallel processing speedup improvement typically range from +30% (x86
    dual-core) to +180% (ARM quad-core). The OpenMP optimizations are disabled
    by default, see OpenMP notes above in this readme file how to enabled these
    optimizations.

    Android: Added support for Android devices featuring X86 and MIPS CPUs, in
    addition to ARM CPUs.

    Android: More versatile Android example application that processes WAV audio
    files with SoundTouch library

    Replaced Windows-like 'BOOL' types with native 'bool'

    Changed documentation token to "dist_doc_DATA" in Makefile.am file

    Miscellaneous small fixes and improvements

(richard)

2015-07-21 10:40:47 UTC MAIN commitmail json YAML

Remove now unneeded patch (after lua pc file name change).

(wiz)

2015-07-20 23:07:31 UTC MAIN commitmail json YAML

2015-07-20 23:06:36 UTC MAIN commitmail json YAML

Remove old custom www/links options. From PR 50072.

(dholland)

2015-07-20 23:03:24 UTC MAIN commitmail json YAML

Update www/links{,gui} to links-{,gui-}2.10.
>From Leo Taccari in PR 50072.

pkgsrc changes:
o Convert all the old links-xz and links-zlib options to lzma and zlib2.
o Do not include the bzip2, xz and zlib buildlink3.mk files: they are
  handled in www/links/options.mk.
o Add "svg" option for links-gui (disabled by default) to reflect
  upstream change.

Changes:
o Fix "Counld not assing boundary" bug when posting a form
  The bug was found by Greg Cook
o SVG support using the rsvg library
o Attach to existing links instance instead of creating a new instance
o Detect image type based on the first few bytes rather than on
  content-type
o New glyphs taken from Volker's git
o Fixed a bug on Windows where dns lookup got stuck if we closed the
  primary instance (which resulted in fork) while the lookup was in
  progress
o Use OpenMP in the image scaler
o Fixed a bug where the output of font sharpening depended on data read
  from uninitialized memory
o Preallocate downloaded files on Linux
o Support libevent and libev
o Enable SSL SNI, some servers need it
o Test for RAND_* functions in configure because libressl doesn't have
  them
o Support keepalive on https connections

(dholland)

2015-07-20 20:21:11 UTC MAIN commitmail json YAML

2015-07-20 18:39:46 UTC MAIN commitmail json YAML

version 2.7.2:
- imc: use correct position for flcoeffs2 calculation
- hevc: check slice address length
- snow: remove an obsolete av_assert2
- webp: fix infinite loop in webp_decode_frame
- wavpack: limit extra_bits to 32 and use get_bits_long
- ffmpeg: only count got_output/errors in decode_error_stat
- ffmpeg: exit_on_error if decoding a packet failed
- pthread_frame: forward error codes when flushing
- huffyuvdec: validate image size
- wavpack: use get_bits_long to read up to 32 bits
- nutdec: check maxpos in read_sm_data before returning success
- s302m: fix arithmetic exception
- vc1dec: use get_bits_long and limit the read bits to 32
- mpegaudiodec: copy AVFloatDSPContext from first context to all contexts
- avcodec/vp8: Check buffer size in vp8_decode_frame_header()
- avcodec/vp8: Fix null pointer dereference in ff_vp8_decode_free()
- avcodec/diracdec: Check for hpel_base allocation failure
- avcodec/rv34: Clear pointers in ff_rv34_decode_init_thread_copy()
- avfilter/af_aresample: Check ff_all_* for allocation failures
- avcodec/pthread_frame: clear priv_data, avoid stale pointer in error case
- swscale/utils: Clear pix buffers
- avutil/fifo: Fix the case where func() returns less bytes than requested in av_fifo_generic_write()
- ffmpeg: Fix cleanup after failed allocation of output_files
- avformat/mov: Fix deallocation when MOVStreamContext failed to allocate
- ffmpeg: Fix crash with ost->last_frame allocation failure
- ffmpeg: Fix cleanup with ost = NULL
- avcodec/pthread_frame: check avctx on deallocation
- avcodec/sanm: Reset sizes in destroy_buffers()
- avcodec/alac: Clear pointers in allocate_buffers()
- bytestream2: set the reader to the end when reading more than available
- avcodec/utils: use a minimum 32pixel width in  avcodec_align_dimensions2() for H.264
- avcodec/mpegvideo: Clear pointers in ff_mpv_common_init()
- oggparsedirac: check return value of init_get_bits
- wmalosslessdec: reset frame->nb_samples on packet loss
- wmalosslessdec: avoid reading 0 bits with get_bits
- Put a space between string literals and macros.
- avcodec/rawenc: Use ff_alloc_packet() instead of ff_alloc_packet2()
- avcodec/aacsbr: check that the element type matches before applying SBR
- avcodec/h264_slice: Use w/h from the AVFrame instead of mb_w/h
- vp9/update_prob: prevent out of bounds table read
- avfilter/vf_transpose: Fix rounding error
- avcodec/h264_refs: discard mismatching references
- avcodec/mjpegdec: Fix small picture upscale
- avcodec/pngdec: Check values before updating context in decode_fctl_chunk()
- avcodec/pngdec: Copy IHDR & plte state from last thread
- avcodec/pngdec: Require a IHDR chunk before fctl
- avcodec/pngdec: Only allow one IHDR chunk
- wmavoice: limit wmavoice_decode_packet return value to packet size
- swscale/swscale_unscaled: Fix rounding difference with RGBA output between little and big endian
- ffmpeg: Do not use the data/size of a bitstream filter after failure
- swscale/x86/rgb2rgb_template: fix signedness of v in shuffle_bytes_2103_{mmx,mmxext}
- vda: unlock the pixel buffer base address.
- swscale/rgb2rgb_template: Fix signedness of v in shuffle_bytes_2103_c()
- swscale/rgb2rgb_template: Implement shuffle_bytes_0321_c and fix shuffle_bytes_2103_c on BE
- swscale/rgb2rgb_template: Disable shuffle_bytes_2103_c on big endian
- swr: Remember previously set int_sample_format from user
- swresample: soxr implementation for swr_get_out_samples()
- avformat/swfdec: Do not error out on pixel format changes
- ffmpeg_opt: Fix forcing fourccs
- configure: Check for x265_api_get
- swscale/x86/rgb2rgb_template: don't call emms on sse2/avx functions
- swscale/x86/rgb2rgb_template: add missing xmm clobbers
- library.mak: Workaround SDL redefining main and breaking fate tests on mingw
- vaapi_h264: fix RefPicList[] field flags.

(adam)

2015-07-20 18:30:03 UTC MAIN commitmail json YAML

Updated www/apache22 to 2.2.31

(adam)

2015-07-20 18:28:59 UTC MAIN commitmail json YAML

Changes with Apache 2.2.31
  *) Correct win32 build issues for mod_proxy exports, OpenSSL 1.0.x headers.

Changes with Apache 2.2.30 (not released)
  *) SECURITY: CVE-2015-3183 (cve.mitre.org)
    core: Fix chunk header parsing defect.
    Remove apr_brigade_flatten(), buffering and duplicated code from
    the HTTP_IN filter, parse chunks in a single pass with zero copy.
    Limit accepted chunk-size to 2^63-1 and be strict about chunk-ext
    authorized characters.

  *) http: Fix LimitRequestBody checks when there is no more bytes to read.

  *) core: Allow spaces after chunk-size for compatibility with implementations
    using a pre-filled buffer.

  *) mod_ssl: bring SNI behavior into better conformance with RFC 6066:
    no longer send warning-level unrecognized_name(112) alerts.

  *) http: Make ap_die() robust against any HTTP error code and not modify
    response status (finally logged) when nothing is to be done.

  *) core, modules: Avoid error response/document handling by the core if some
    handler or input filter already did it while reading the request (causing
    a double response body).

  *) FreeBSD: Disable IPv4-mapped listening sockets by default for versions
    5+ instead of just for FreeBSD 5.

  *) mod_proxy: use the original (non absolute) form of the request-line's URI
    for requests embedded in CONNECT payloads used to connect SSL backends via
    a ProxyRemote forward-proxy.

  *) mpm_winnt: Accept utf-8 (Unicode) service names and descriptions for
    internationalization.

  *) mod_log_config: Implement logging for sub second timestamps and
    request end time.

  *) mod_log_config: Ensure that time data is consistent if multiple
    duration patterns are used in combination, e.g. %D and %{ms}T.

  *) mod_log_config: Add "%{UNIT}T" format to output request duration in
    seconds, milliseconds or microseconds depending on UNIT ("s", "ms", "us").

  *) In alignment with RFC 7525, the default recommended SSLCipherSuite
    and SSLProxyCipherSuite now exclude RC4 as well as MD5. Also, the
    default recommended SSLProtocol and SSLProxyProtocol directives now
    exclude SSLv3. Existing configurations must be adjusted by the
    administrator.

  *) core: Avoid potential use of uninitialized (NULL) request data in
    request line error path.

  *) mod_proxy_http: Use the "Connection: close" header for requests to
    backends not recycling connections (disablereuse), including the default
    reverse and forward proxies.

  *) mod_proxy: Add ap_connection_reusable() for checking if a connection
    is reusable as of this point in processing.

  *) mod_proxy: Reuse proxy/balancer workers' parameters and scores across
    graceful restarts, even if new workers are added, old ones removed, or
    the order changes.

  *) mod_ssl: 'SSLProtocol ALL' was being ignored in virtual host context.

  *) mod_ssl: Improve handling of ephemeral DH and ECDH keys by
    allowing custom parameters to be configured via SSLCertificateFile,
    and by adding standardized DH parameters for 1024/2048/3072/4096 bits.
    Unless custom parameters are configured, the standardized parameters
    are applied based on the certificate's RSA/DSA key size.

  *) mod_ssl: drop support for export-grade ciphers with ephemeral RSA
    keys, and unconditionally disable aNULL, eNULL and EXP ciphers
    (not overridable via SSLCipherSuite).

  *) mod_ssl: Add support for configuring persistent TLS session ticket
    encryption/decryption keys (useful for clustered environments).

  *) SSLProtocol and SSLCipherSuite recommendations in the example/default
    conf/extra/httpd-ssl.conf file are now global in scope, affecting all
    VirtualHosts (matching 2.4 default configuration).

  *) mod_authn_dbd: Fix lifetime of DB lookup entries independently of the
    selected DB engine.

  *) Turn static function get_server_name_for_url() into public
    ap_get_server_name_for_url() and use it where appropriate. This
    fixes mod_rewrite generating invalid URLs for redirects to IPv6
    literal addresses.

  *) dav_validate_request: avoid validating locks and ETags when there are
    no If headers providing them on a resource we aren't modifying.

  *) mod_ssl: New directive SSLSessionTickets (On|Off).
    The directive controls the use of TLS session tickets (RFC 5077),
    default value is "On" (unchanged behavior).
    Session ticket creation uses a random key created during web
    server startup and recreated during restarts. No other key
    recreation mechanism is available currently. Therefore using session
    tickets without restarting the web server with an appropriate frequency
    (e.g. daily) compromises perfect forward secrecy.

  *) mod_deflate: Define APR_INT32_MAX when it is missing so to be able to
    compile against APR-1.2.x (minimum required version).

  *) mod_reqtimeout: Don't let pipelining checks interfere with the timeouts
    computed for subsequent requests.

(adam)

2015-07-20 18:27:09 UTC MAIN commitmail json YAML

Make the launch script executable, remove extra file.

(asau)

2015-07-20 17:45:27 UTC MAIN commitmail json YAML

2015-07-20 17:44:41 UTC MAIN commitmail json YAML

Changes 1.0.26:
Tinc now forces glibc to reload /etc/resolv.conf for every hostname lookup.
Fixed 窶罵ogfile without a filename on Windows.
Ensure tinc can be compiled when using musl libc.

(adam)

2015-07-20 17:31:37 UTC MAIN commitmail json YAML

Updated audio/mpg123 to 1.22.2

(adam)

2015-07-20 17:30:33 UTC MAIN commitmail json YAML

Changes 1.22.2
- Fix buffering for funny sample formats (namely, 24 bit), that do not
  fit nicely into 32768 bytes. Effect was a nasty endless loop where
  mpg123 needs to be externally killed.

Changes 1.22.1
- Fix mpg123-id3dump when writing images with funny (manipulated) MIME type.
  Stupid mistake in length computation of the fallback file extension caused
  junk from memory being appended to the filename if the pointer size
  is less than 64 bit. For 64 bit pointers (or longer) it was correct by
  accident.
- Fix pedantic build by cleaning up out123 source, also now really showing
  the encoding list in --longhelp instead of possibly, again, writing junk
  from memory in there.
- Not linking libmpg123 against libltdl anymore (bug 215).
- Update MSVC++ ports a bit to make them work again.

(adam)

2015-07-20 13:59:44 UTC MAIN commitmail json YAML

Remove the "-s" option from the usage screen of pkg_add(1)

It is not available anymore (since 1.17).

(khorben)

2015-07-20 11:30:54 UTC MAIN commitmail json YAML

Instead of having only lua.pc, provide both the versioned pkg-config file
and the unversioned one.

As discussed on tech-pkg.

(wiz)

2015-07-20 11:00:29 UTC MAIN commitmail json YAML

2015-07-20 10:43:54 UTC MAIN commitmail json YAML

Updated time/py-vdirsyncer to 0.5.2nb1

(wiz)

2015-07-20 10:43:46 UTC MAIN commitmail json YAML

2015-07-20 10:43:20 UTC MAIN commitmail json YAML

Added devel/py-setuptools_scm version 1.5.5

(wiz)

2015-07-20 10:43:11 UTC MAIN commitmail json YAML

+ py-setuptools_scm.

(wiz)

2015-07-20 10:42:59 UTC MAIN commitmail json YAML

Import py34-setuptools_scm-1.5.5 as devel/py-setuptools_scm.

setuptools_scm handles managing your python package versions in
scm metadata. It also handles file finders for the supperted scms.

(wiz)

2015-07-20 05:50:45 UTC MAIN commitmail json YAML

Updated lang/clang to 3.6.2; lang/libLLVM to 3.6.2

(adam)

2015-07-20 05:49:53 UTC MAIN commitmail json YAML

2015-07-20 00:09:15 UTC MAIN commitmail json YAML

Note update of www/apache24 package to 2.4.16.

(taca)

2015-07-20 00:08:35 UTC MAIN commitmail json YAML

Update apache24 to 2.4.16 (Apache HTTP Server 2.4.16).

        Apache HTTP Server 2.4.16 Released

The Apache Software Foundation and the Apache HTTP Server Project
are pleased to announce the release of version 2.4.16 of the Apache
HTTP Server ("Apache").  This version of Apache is our latest GA
release of the new generation 2.4.x branch of Apache HTTPD and
represents fifteen years of innovation by the project, and is
recommended over all previous releases. This release of Apache is
principally a security, feature and bug fix release. NOTE: versions
2.4.13, 2.4.14 and 2.4.15 were not released.

CVE-2015-3183 (cve.mitre.org)
core: Fix chunk header parsing defect.
Remove apr_brigade_flatten(), buffering and duplicated code from
the HTTP_IN filter, parse chunks in a single pass with zero copy.
Limit accepted chunk-size to 2^63-1 and be strict about chunk-ext
authorized characters.

CVE-2015-3185 (cve.mitre.org)
Replacement of ap_some_auth_required (unusable in Apache httpd 2.4)
with new ap_some_authn_required and ap_force_authn hook.

CVE-2015-0253 (cve.mitre.org)
core: Fix a crash with ErrorDocument 400 pointing to a local URL-path
with the INCLUDES filter active, introduced in 2.4.11. PR 57531.

CVE-2015-0228 (cve.mitre.org)
mod_lua: A maliciously crafted websockets PING after a script
calls r:wsupgrade() can cause a child process crash.

Also in this release are some exciting new features including:

*) Better default recommended SSLCipherSuite and SSLProxyCipherSuite
*) mod_proxy_scgi: ProxySCGIInternalRedirect now allows an alternate
response header to be used by the application
*) Event MPM improvements
*) Various mod_proxy_* improvements
*) mod_log_config: Add "%{UNIT}T" format to output request duration in
seconds, milliseconds or microseconds depending on UNIT ("s", "ms",
"us")

(taca)

2015-07-20 00:06:53 UTC MAIN commitmail json YAML

Note update of mail/fml4 package to 4.0.3.20040215nb9.

(taca)

2015-07-20 00:06:18 UTC MAIN commitmail json YAML

2015-07-19 21:29:44 UTC MAIN commitmail json YAML

Bump PKGREVISION for p5-CGI dependency.

(wiz)

2015-07-19 20:30:28 UTC MAIN commitmail json YAML

2015-07-19 19:19:10 UTC MAIN commitmail json YAML

Do not include $Mdocdate$ in the patch, some versions of cvs will change
it on checkout, breaking the patchsum.

(joerg)

2015-07-19 17:59:02 UTC pkgsrc-2015Q2 commitmail json YAML

2015-07-19 17:58:44 UTC pkgsrc-2015Q2 commitmail json YAML

Pullup ticket #4776 - requested by manu
databases/mysql56-client: bug fix patch
databases/mysql56-server: bug fix patch

Revisions pulled up:
- databases/mysql56-client/Makefile                            1.17
- databases/mysql56-client/distinfo                            1.25
- databases/mysql56-client/patches/patch-include_violite.h      1.1
- databases/mysql56-client/patches/patch-vio_viosslfactories.c  1.1
- databases/mysql56-server/Makefile                            1.25

---
  Module Name:    pkgsrc
  Committed By:  manu
  Date:          Tue Jul 14 12:09:24 UTC 2015

  Modified Files:
          pkgsrc/databases/mysql56-client: Makefile distinfo
  Added Files:
          pkgsrc/databases/mysql56-client/patches: patch-include_violite.h
              patch-vio_viosslfactories.c

  Log Message:
  Restore SSL functionnality with OpenSSL 1.0.1p

  With OpenSSL 1.0.1p upgrade, DH parameters below 1024 bits are now
  refused. MySQL hardcodes 512 bits DH parameters and will therefore
  fail to run SSL connexions with OpenSSL 1.0.1p

  Apply fix from upstream:
  https://github.com/mysql/mysql-server/commit/
  866b988a76e8e7e217017a7883a52a12ec5024b9

---
  Module Name:    pkgsrc
  Committed By:  manu
  Date:          Tue Jul 14 16:38:56 UTC 2015

  Modified Files:
          pkgsrc/databases/mysql56-server: Makefile

  Log Message:
  Restore SSL functionnality with OpenSSL 1.0.1p (revision bump)

  This changes just bumps PKGREVISION after patches were added
  in mysql56-client/patches which impact mysql56-server.

  For the record, the commit log or that patches:
  > With OpenSSL 1.0.1p upgrade, DH parameters below 1024 bits are now
  > refused. MySQL hardcodes 512 bits DH parameters and will therefore
  > fail to run SSL connexions with OpenSSL 1.0.1p
  >
  > Apply fix from upstream:
  > https://github.com/mysql/mysql-server/commit/
  866b988a76e8e7e217017a7883a52a12ec5024b9

(tron)

2015-07-19 16:54:11 UTC MAIN commitmail json YAML

gitweb.cgi needs CGI.pm to run, and lang/perl5 does not provide it anymore.

(nils)

2015-07-19 16:49:41 UTC MAIN commitmail json YAML

Since sslh-1.17, argument to -F can no longer be separated from
the option by a space, e.g. must be -Ffoo.cfg.
Otherwise, /etc/rc.d/sslh start|stop|... will do nothing.

(nils)

2015-07-19 16:48:30 UTC MAIN commitmail json YAML

Updated devel/radare2 to 0.9.9nb1

While there set right authorship of the previous update for devel/capstone

(kamil)