Commit graph

255959 commits

Author SHA1 Message Date
ryoon
6e9fdcd0a5 Recycle h8300-elf-gcc entry 2016-10-19 12:41:43 +00:00
ryoon
1df84f9b24 Remove older H8/300 cross GCC package 2016-10-19 12:40:56 +00:00
ryoon
5801f4cdb4 Added cross/h8300-elf-gcc version 6.2.0 2016-10-19 12:39:15 +00:00
ryoon
68d3b5b30f Import cross-h8300-elf-gcc-6.2.0 as cross/h8300-elf-gcc.
gcc for Hitachi/Renesas H8/300 ELF cross-compile environment.
2016-10-19 12:38:41 +00:00
ryoon
64bfd8c845 Updated cross/h8300-elf-binutils to 2.27 2016-10-19 12:33:05 +00:00
ryoon
1e74060b18 Update to 2.27
* Update to the latest release
2016-10-19 12:31:25 +00:00
manu
d589089eec Updated filesystems/glusterfs to 3.8.5 2016-10-19 12:26:50 +00:00
manu
7037561ee9 Update glusterfs to 3.8.5
This is a maintenance release
2016-10-19 12:25:41 +00:00
wiz
395a500e0a Updated devel/py-cparser to 2.15 2016-10-19 12:24:24 +00:00
wiz
27dc69b8ee Updated py-cparser to 2.15.
+ Version 2.15 (18.10.2016)

  - PR #121: Update bundled PLY version to 3.8
  - Issue #117: Fix parsing of extra semi-colons inside structure declarations.
  - PR #109: Update c_generator to add {} around nested named initializers.
  - PR #101: Added support for parsing pragmas into the AST.
  - Additional fake headers and typedefs, manifest fixes (#97, #106, #111).
  - Testing with Python 3.5 instead of 3.3 now (3.4 and 3.5 are the 3.x versions
    tested).
  - PR #145: More complete support for offsetof()
  - Issue #116: Fix line numbers recorded for empty and compound statements.
  - Minor performance improvement to the invalid string literal regex.
2016-10-19 12:24:14 +00:00
wiz
3dd6aed493 Updated graphics/jpegoptim to 1.4.4 2016-10-19 12:17:52 +00:00
wiz
27f027da77 Updated jpegoptim to 1.4.4.
v1.4.4 - more detailed error messages (thanks to Denis Fateyev),
                 CMake support (thanks to Ghostkeeper),
                 other minor fixes
2016-10-19 12:17:42 +00:00
wiz
2de7c7b3e9 Updated devel/py-protobuf to 3.1.0 2016-10-19 12:16:44 +00:00
wiz
5880b3d6f1 Updated py-protobuf to 3.1.0.
2016-09-23 version 3.1.0 (C++/Java/Python/PHP/Ruby/Objective-C/C#/JavaScript/Lite)
  Python
  * JSON support
    * Fixed some conformance issues.
2016-10-19 12:16:34 +00:00
wiz
a7b1c9e852 Updated devel/libcerf to 1.5 2016-10-19 12:14:18 +00:00
wiz
8933b60590 Updated libcerf to 1.5.
libcerf-1.5, released 12oct16:
   - rm unused inline function (detected by clang-1.3., reported by Luke Benes)
2016-10-19 12:14:08 +00:00
wiz
7605073454 Updated devel/protobuf to 3.1.0 2016-10-19 12:13:10 +00:00
wiz
4e599e5d83 Updated protobuf to 3.1.0.
2016-09-23 version 3.1.0 (C++/Java/Python/PHP/Ruby/Objective-C/C#/JavaScript/Lite)
  General
  * Proto3 support in PHP (alpha).
  * Various bug fixes.

  C++
  * Added MessageLite::ByteSizeLong() that’s equivalent to
    MessageLite::ByteSize() but returns the value in size_t. Useful to check
    whether a message is over the 2G size limit that protobuf can support.
  * Moved default_instances to global variables. This allows default_instance
    addresses to be known at compile time.
  * Adding missing generic gcc 64-bit atomicops.
  * Restore New*Callback into google::protobuf namespace since these are used
    by the service stubs code
  * JSON support.
    * Fixed some conformance issues.
  * Fixed a JSON serialization bug for bytes fields.

  Java
  * Fixed a bug in TextFormat that doesn’t accept empty repeated fields (i.e.,
    “field: [ ]”).
  * JSON support
    * Fixed JsonFormat to do correct snake_case-to-camelCase conversion for
      non-style-conforming field names.
    * Fixed JsonFormat to parse empty Any message correctly.
    * Added an option to JsonFormat.Parser to ignore unknown fields.
  * Experimental API
    * Added UnsafeByteOperations.unsafeWrap(byte[]) to wrap a byte array into
      ByteString without copy.

  Python
  * JSON support
    * Fixed some conformance issues.

  PHP (Alpha)
  * We have added the proto3 support for PHP via both a pure PHP package and a
    native c extension. The pure PHP package is intended to provide usability
    to wider range of PHP platforms, while the c extension is intended to
    provide higher performance. Both implementations provide the same runtime
    APIs and share the same generated code. Users don’t need to re-generate
    code for the same proto definition when they want to switch the
    implementation later. The pure PHP package is included in the php/src
    directory, and the c extension is included in the php/ext directory.

    Both implementations provide idiomatic PHP APIs:
    * All messages and enums are defined as PHP classes.
    * All message fields can only be accessed via getter/setter.
    * Both repeated field elements and map elements are stored in containers
      that act like a normal PHP array.

    Unlike several existing third-party PHP implementations for protobuf, our
    implementations are built on a "strongly-typed" philosophy: message fields
    and array/map containers will throw exceptions eagerly when values of the
    incorrect type (not including those that can be type converted, e.g.,
    double <-> integer <-> numeric string) are inserted.

    Currently, pure PHP runtime supports php5.5, 5.6 and 7 on linux. C
    extension runtime supports php5.5 and 5.6 on linux.

    See php/README.md for more details about installment. See
    https://developers.google.com/protocol-buffers/docs/phptutorial for more
    details about APIs.

  Objective-C
  * Helpers are now provided for working the the Any well known type (see
    GPBWellKnownTypes.h for the api additions).
  * Some improvements in startup code (especially when extensions aren’t used).

  Javascript
  * Fixed missing import of jspb.Map
  * Fixed valueWriterFn variable name

  Ruby
  * Fixed hash computation for JRuby's RubyMessage
  * Make sure map parsing frames are GC-rooted.
  * Added API support for well-known types.

  C#
  * Removed check on dependency in the C# reflection API.

2016-09-06 version 3.0.2 (C++/Java/Python/Ruby/Objective-C/C#/JavaScript/Lite)
  General
  * Various bug fixes.

  Objective C
  * Fix for oneofs in proto3 syntax files where fields were set to the zero
    value.
  * Fix for embedded null character in strings.
  * CocoaDocs support

  Ruby
  * Fixed memory corruption bug in parsing that could occur under GC pressure.

  Javascript
  * jspb.Map is now properly exported to CommonJS modules.

  C#
  * Removed legacy_enum_values flag.
2016-10-19 12:13:00 +00:00
wiz
0b7646c7a4 Updated misc/calibre to 2.70.0 2016-10-19 12:08:26 +00:00
wiz
a3c820e85b Updated calibre to 2.70.0.
New Features

    Edit Book: Add a tool to download external resources (images/stylesheets/etc.) that are not included in the book.
    Make custom columns available in the Alter Tag Browser->Manage categories sub menu

Bug Fixes

    Conversion: Fix incorrect resolution of references to resources in HTML files that exist in a folder level above the OPF file. This could lead to styles being incorrectly processed in such HTML files.
    Get Books: Update the amazon store plugins for website changes
    Update ozon.ru metadata download plugin to fix searching for books by ISBN
    Edit Book: Fix a regression in the previous release that broke the preferences dialog for changing color schemes.
    Edit Book: Better error message when user tries to open a Check Book item that refers to a file that has been deleted since the last time Check Book was run.
2016-10-19 12:08:15 +00:00
fhajny
577d6938ef Updated net/GeoIP to 1.6.9 2016-10-19 11:59:48 +00:00
fhajny
c855e76b3b Update net/GeoIP to 1.6.9.
Based on a PR by Jussi Sallinen.

1.6.9 2016-01-11

- Fix a regression introduced in version 1.6.8, which caused
  GeoIP_database_info to erroneously return NULL.

1.6.8 2016-01-11

- Allow compilation on older systems by relaxing the autoconf and automake
  minimum versions. Thank you, Jose Rubio!
- Avoid potential problems in multi-threaded environments by consistently using
  pread() rather than read().
- Fix various small issues reported by clang's static analyser.

1.6.7 2015-10-30

- Fixed a MSVC parser stack overflow when parsing `regionName.c` and
 `timeZone.c`. Fix by elliotlo. GitHub #64.
- Updated region codes and timezones.
- When using `GEOIP_MEMORY_CACHE` with an invalid database file, the search
  tree traversal could attempt to read memory outside of the memory allocated
  for the memory cache, resulting in a segmentation fault. A check was added
  to ensure that the traversal code does not try to read beyond the end of the
  file, whether in memory, memory mapped, or on disk.
- Previously the return values from file reads were ignored. We now check
  these values to ensure that there were no errors.


1.6.6 2015-07-28

- Replaced usage of deprecated fileno, read, and lseek on Visual Studio 2005+
  with their ISO C++ conformant replacements.
- A warning about using a double as a float was fixed.
- Fixed segfault when doing a lookup on an empty database.
- Fixed a memcheck error from valgrind in the `_check_mtime`
  function.
- Fixed `_check_mtime` to check the return value of `gettimeofday` rather than
  just assuming it worked.


1.6.5 2015-02-25

- A segmentation fault in `geoiplookup` was fixed when the utility was passed
  an invalid database.
- Additional validation was added for validation of the size used in the
  creation of the index cache.
- Changed the code to only look up country codes by using functions which
  ensure that we do not try to look past the end of an array.


1.6.4 2015-01-12

- Update Fips codes
- Several issues with the MinGW build were fixed.
- Use a constructor in pread.c to ensure the critical section is always
  initialized.
- Added missing include of `io.h` on Windows.
- Fixed `configure` warning that `'missing' script is too old or missing`.
- Previously `nmake /f Makefile.vc clean` would fail on Windows. This was
  fixed.
- Obsolete win32 and NetWare make files were removed.
- Numerous documentation updates.


1.6.3 2014-10-29

- Added a GEOIP_SILENCE flag. Include this flag when calling GeoIP_open to
  prevent any messages from being written to stderr.
- Mitigate a possible race condition when running under threads in the
  GeoIP_cleanup function.
- Added some recommendations to the docs on using this library in a
  threaded application.
- Fixed some bugs discovered by coverity, including failure to check some
  system call return values and making sure all strings are
  null-terminated.


1.6.2 2014-07-08

- Two files required for building on Win32 were missing from the 1.6.1
  release. These files were added. There are no changes affecting other
  platforms.


1.6.1 2014-06-26

- Improve Win32 support
- Update FIPS codes


1.6.0 2013-10-29

- Remove geoipupdate


1.5.2 2013-10-29

- Update region and time zones
- Fix benchmark script
- Remove autogenerated files ltmain.sh, man/geoip*.1
- Explain how to download free geolite databases in the README.md and
  GeoIP.conf.default
- geoipupdate returns 1 on error 0 on success instead of the error code
- README is replaced by README.md
- Add support for OS X Mavericks


1.5.1 2013-05-14

- Update time_zone for Ontario, Canada
- geoiplookup and geoiplookup6 exit code is 0 when user asked for help
- Added -h option to geoiplookup6
- Do not load the database file if nodes and file size do not make
  sense.
- Keep README and man pages in pure ascii.
- It doesn't make sense to use GEOIP_INDEX_MODE with small databases
  like GEOIP_COUNTRY_EDITION. Instead of undefined behaviour we handle
  it silently as GEOIP_MEMORY_MODE
- Update FIPS codes for Greece


1.5.0 2013-02-21

- Rename custom_directory to GeoIP_custom_directory.
- Make sure the database match the requested type. This is helpful for
  Databases with the same default name and the general geoiplookup form
  (geoiplookup without a specific database)
- apps/geoiplookup6.c use the ipnum instead of the hostname for lookups.
- Use configure.ac instead of configure.in
- Region lookup is a bit faster
- Add pkg-config file
- Updates required to build a Windows DLL under MinGW
- Make API thread safe
- geoiplookup's default charset is UTF8
  -l change the charset back to iso8859-1
- geoipupdate skips \r otherwise it might be part of the last
  product_id
- Update time zones
- Update Region codes
- Remove the unused CITYCONFIDENCE* database types
- bootstrap rebuilds ltmain.sh
- Update README.OSX for Lion
- Change Macedonia to Macedonia, The Former Yugoslav Republic of
- Add region_name to geoiplookup GEOIP_CITY_EDITION_REV1
- Add region_name to geoiplookup GEOIP_CITY_EDITION_REV0
- Add a --disable-data-files option. This allows you to build and install
  the library without having a data/GeoIP.dat file. This is useful when
  building the library from a checkout of the source tree, rather than a
  tarball
- Add GEOIP_ACCURACYRADIUS_EDITION and GEOIP_ACCURACYRADIUS_EDITION_V6
- Add more database types GEOIP_COUNTRYCONF_EDITION,
  GEOIP_CITYCONF_EDITION, GEOIP_REGIONCONF_EDITION and
  GEOIP_POSTALCONF_EDITION
- Fix default filenames for GEOIP_NETSPEED_EDITION_REV1 and
  GEOIP_NETSPEED_EDITION_REV1_V6
2016-10-19 11:59:25 +00:00
wiz
50161ee89e Updated devel/waf to 1.9.5 2016-10-19 11:20:51 +00:00
wiz
18bbaf73ef Updated waf to 1.9.5.
NEW IN WAF 1.9.5
----------------
* Fix the command-line option for the python executable (--python -> --pythondir) #1812
* Add support for older PyQt4 bindings #1813
* Expand properly `--xyz=${VAR}` when `shell=False` #1814
* Add qt5 5.7.x new libraries to qt5 tool #1815
* Add install_user and install_group to bld.install/bld.install_as/bld.symlink_as
* Reduce unnecesary build outputs verbosity #1819 #1828
* Prevent broken console encoding settings from causing additional failures #1823
* Let "waf --zones=argfile" display @argfile contents
2016-10-19 11:20:41 +00:00
wiz
1558499b9b Updated net/tor to 0.2.8.9 2016-10-19 10:58:52 +00:00
wiz
64fd7d5456 Updated tor to 0.2.8.9.
Changes in version 0.2.8.9 - 2016-10-17
  Tor 0.2.8.9 backports a fix for a security hole in previous versions
  of Tor that would allow a remote attacker to crash a Tor client,
  hidden service, relay, or authority. All Tor users should upgrade to
  this version, or to 0.2.9.4-alpha. Patches will be released for older
  versions of Tor.

  o Major features (security fixes, also in 0.2.9.4-alpha):
    - Prevent a class of security bugs caused by treating the contents
      of a buffer chunk as if they were a NUL-terminated string. At
      least one such bug seems to be present in all currently used
      versions of Tor, and would allow an attacker to remotely crash
      most Tor instances, especially those compiled with extra compiler
      hardening. With this defense in place, such bugs can't crash Tor,
      though we should still fix them as they occur. Closes ticket
      20384 (TROVE-2016-10-001).

  o Minor features (geoip):
    - Update geoip and geoip6 to the October 4 2016 Maxmind GeoLite2
      Country database.
2016-10-19 10:58:14 +00:00
maya
c11cd8d8fd Change HOMEPAGE to a working link
Forgot to change this part from livestreamer package.
2016-10-19 09:07:25 +00:00
wiz
911519ba87 + font-adobe-100dpi-1.0.4, go-grpc-1.0.3, guile20-2.0.13,
http-parser-2.7.1, jpegoptim-1.4.4, libcerf-1.5, libmicrohttpd-0.9.52,
  mcookie-2.28.2, protobuf-3.0.2, py-acme-0.9.3, py-certbot-0.9.3,
  py-cparser-2.15, py-google-api-python-client-1.5.4, py-numpy-1.11.2,
  py-oauth2client-4.0.0, py-requests-oauthlib-0.7.0, py-setuptools-28.6.0,
  py-setuptools_scm-1.14.0, py-sqlparse-0.2.0, py-test-cov-2.4.0,
  syncthing-0.14.9, syncthing-gtk-0.9.2.3, vim-8.0.0044,
  vim-share-8.0.0044, waf-1.9.5, x264-devel-20161017, xscreensaver-5.36.
2016-10-18 21:38:15 +00:00
he
4fd1b921e6 Note update of databases/rrdtool to 1.6.0nb3. 2016-10-18 21:23:14 +00:00
he
f2a8b475fd Fix a signedness/unsigned conversion bug causing overflow in rrd_dump.c.
Bump PKGREVISION.
2016-10-18 21:22:12 +00:00
mef
2a638b7e81 Add BUILD_DEPENDS+= p5-Test-RequiresInternet for make test, but still t/live/encoding.t fails 2016-10-18 21:16:22 +00:00
fhajny
84ccbcee91 Updated lang/nodejs to 6.9.0 2016-10-18 20:44:48 +00:00
fhajny
46cce6bcb7 Update lang/nodejs to 6.9.0.
- crypto: Don't automatically attempt to load an OpenSSL
  configuration file, from the OPENSSL_CONF environment variable
  or from the default location for the current platform. Always
  triggering a configuration file load attempt may allow an attacker
  to load compromised OpenSSL configuration into a Node.js process
  if they are able to place a file in a default location.
- node: Introduce the process.release.lts property, set to "Boron".
  This value is "Argon" for v4 LTS releases and undefined for all
  other releases.
- V8: Backport fix for CVE-2016-5172, an arbitrary memory read.
- v8_inspector: Generate a UUID for each execution of the
  inspector. This provides additional security to prevent
  unauthorized clients from connecting to the Node.js process via
  the v8_inspector port when running with --inspect.
2016-10-18 20:44:34 +00:00
fhajny
ab2eda2d7a Updated lang/nodejs4 to 4.6.1 2016-10-18 20:38:08 +00:00
fhajny
02543da9cb Update lang/nodejs4 to 4.6.1.
- c-ares: fix for single-byte buffer overwrite, CVE-2016-5180, more
  information at https://c-ares.haxx.se/adv_20160929.html
2016-10-18 20:37:55 +00:00
jdolecek
ac4eee8ee0 rename EXT_CONF_DIR to PHP_EXT_CONF_DIR, adjust it so that it's overridable
in mk.conf, and adjust working in MESSAGE.module to say more clearly
what is happening

PR pkg/51456 by Joern Clausen
2016-10-18 19:09:10 +00:00
maya
ee266e847d Note addition of streamlink-0.0.2 2016-10-18 17:14:48 +00:00
maya
779260c887 Makefile: +streamlink 2016-10-18 17:13:43 +00:00
maya
3859eb900a Add package streamlink v0.0.2
Streamlink is a command-line utility that pipes video streams from various
services into a video player, such as VLC. The main purpose of Streamlink
is to allow the user to avoid buggy and CPU heavy flash plugins but still
be able to enjoy various streamed content.

Streamlink is a fork of Livestreamer
2016-10-18 16:39:43 +00:00
taca
86c66706a4 Note update of www/ruby-net-http-persistent package to 3.0.0. 2016-10-18 16:35:09 +00:00
taca
73788e3bf7 Update ruby-net-http-persistent to 3.0.0.
=== 3.0

Breaking changes:

* No longer supports ruby 2.0 and earlier
* Net::HTTP::Persistent::new now uses keyword arguments for +name+ and
  +proxy+.
* Removed #max_age, use #expired?

New features:

* Uses connection_pool to manage all connections for a Net::HTTP::Persistent
  instance.

Bug fixes:

* Add missing SSL options ca_path, ciphers, ssl_timeout, verify_depth.
  Issue #63 by Johnneylee Jack Rollins.
2016-10-18 16:34:44 +00:00
taca
80c18fe050 Note update of www/thin package to 1.7.0. 2016-10-18 16:30:35 +00:00
taca
fda89955e4 Update thin to 1.7.0.
== 1.7.0 Dunder Mifflin
 * Rack 2 support
 * Ensure Response body.close is called in the same thread
   Fixes issues with ActiveRecord connection management [#307]
 * Fix TCP/IP Backend reports incorrect port when asked to bind to 0 [meschbach]
 * Work with ruby 2.3's --enable-frozen-string-literal [jeremyevans]
2016-10-18 16:30:10 +00:00
taca
4c2dc070af Note update of www/ruby-websocket package to 1.2.3. 2016-10-18 16:29:25 +00:00
taca
f0bb7f4d71 Update ruby-websocket to 1.2.3.
## 1.2.3

- fix for draft 76 when challenge might sometimes fail
- multiple small optimizations
2016-10-18 16:28:46 +00:00
taca
f41269c649 Note update of www/ruby-sinatra-contrib package to 1.4.7. 2016-10-18 16:27:31 +00:00
taca
1d8ca548df Update ruby-sinatra-contrib to 1.4.7.
* Fix ERB typo in documentation.
* Use Mutex#synchronize instead of Thread.exclusive to prevent deprecation
  warning
2016-10-18 16:27:05 +00:00
taca
2277e4d046 Note update of www/ruby-sass package to 3.4.22. 2016-10-18 16:19:08 +00:00
taca
16adbb1039 Update ruby-sass to 3.4.22.
3.4.22 (28 March 2016)

    * Sass now runs without warnings when running ruby with code style
      warnings enabled.

    * Sass no longer watches the current working directory unless it is on
      the load path or the files being compiled are in the current working
      directory. This was causing performance issues for users with large
      numbers of files in their project directory. Issue #1562, Issue #1966,
      Issue #2006.

    * sass-convert now accepts a -q and --quiet option to disable ouput
      while it is running.

    * Fixed a bug in sass-convert when recursively processing CSS files into
      Sass files which caused the process to crash without processing any
      files. Issue #1827,

Deprecation – Must Read!

    * Support for Ruby 1.8.7 and 1.9.3 is deprecated. See this blog post for
      details.

    * The current handling of CSS variables is deprecated. In order to
      support the CSS spec as fully as possible, no Sass-specific constructs
      other than #{} will be supported in CSS variable values. For
      forwards-compatibility, any SassScript being used in CSS variables
      must be moved into #{}.
2016-10-18 16:18:36 +00:00
taca
7c66f483c9 Note update of www/ruby-rouge package to 1.11.1. 2016-10-18 16:15:22 +00:00