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 (2m)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-12 19:25:45 UTC Now

2014-02-14 13:11:17 UTC MAIN commitmail json YAML

document _OPSYS_PREFER.<pkg>

(obache)

2014-02-14 12:52:28 UTC MAIN commitmail json YAML

Updated www/firefox-l10n to 27.0

(ryoon)

2014-02-14 12:51:09 UTC MAIN commitmail json YAML

2014-02-14 12:11:10 UTC MAIN commitmail json YAML

no need to buildlink with perl.

(obache)

2014-02-14 12:10:04 UTC MAIN commitmail json YAML

exactly require runtime dependency on perl interpreter.

(obache)

2014-02-14 12:08:34 UTC MAIN commitmail json YAML

define NO_BUILD instead of empty do-build target.

(obache)

2014-02-14 12:05:40 UTC MAIN commitmail json YAML

Updated misc/whohas to 0.29nb3

(obache)

2014-02-14 12:05:28 UTC MAIN commitmail json YAML

since 0.21, wget is not required.

Bump PKGREVISION.

(obache)

2014-02-14 12:03:15 UTC MAIN commitmail json YAML

LICENSE=gnu-gpl-v2 (or later)

(obache)

2014-02-14 11:56:04 UTC MAIN commitmail json YAML

Updated devel/fossil to 1.28

(roy)

2014-02-14 11:55:53 UTC MAIN commitmail json YAML

Update to fossil 1.28. Changes include:

* Enchanced /reports
* If a username is passed during clone, that user is now the local admin
* Tenfold performance increase in annotate and blame rendering
* Fixed handling of passwords embedded in URL
* Sends gzipped HTTP replies to supporting clients

(roy)

2014-02-14 10:25:35 UTC MAIN commitmail json YAML

Updated databases/apache-cassandra to 1.2.15

(fhajny)

2014-02-14 10:25:23 UTC MAIN commitmail json YAML

Update databases/apache-cassandra to 1.2.15.

Notable changes in 1.2.14
- Batchlog replay can be, and is throttled by default now.
  See batchlog_replay_throttle_in_kb setting in cassandra.yaml.

Notable changes in 1.2.11
- Added a new consistency level, LOCAL_ONE, that forces all CL.ONE operations
  to execute only in the local datacenter.
- New replace_address to supplant the (now removed) replace_token and
  replace_node workflows to replace a dead node in place.  Works like the
  old options, but takes the IP address of the node to be replaced.

Notable changes in 1.2.9
- A history of executed nodetool commands is now captured.
  It can be found in ~/.cassandra/nodetool.history. Other tools output files
  (cli and cqlsh history, .cqlshrc) are now centralized in ~/.cassandra,
  as well.
- A new sstablesplit utility allows to split large sstables offline.
- After performance testing for CASSANDRA-5727, the default LCS filesize
  has been changed from 5MB to 160MB.

Notable changes in 1.2.5
- Custom secondary index support has been added to CQL3. Refer to
  CQL3 documentation (http://cassandra.apache.org/doc/cql3/CQL.html)
  for details and examples.

Full release notes and changelogs:

https://git-wip-us.apache.org/repos/asf?p=cassandra.git;f=NEWS.txt;hb=refs/tags/cassandra-1.2.15
https://git-wip-us.apache.org/repos/asf?p=cassandra.git;f=CHANGES.txt;hb=refs/tags/cassandra-1.2.15

(fhajny)

2014-02-14 09:27:07 UTC MAIN commitmail json YAML

Updated devel/hdf5 to 1.8.12; math/glpk to 4.53

(adam)

2014-02-14 09:25:49 UTC MAIN commitmail json YAML

Changes 4.53:
* The API routine glp_read_mps was changed to remove free rows.
* A bug was fixed in the API routine glp_read_lp.
* The zlib compression library used by some GLPK routines and
  included in the package was downgraded from 1.2.7 to 1.2.5 (as
  in GLPK 4.50) because of addressability bugs on some 64-bit
  platforms.
* A bug was fixed in a routine that reads gzipped files.
* Two API routines glp_get_it_cnt and glp_set_it_cnt were added.
* All obsolete GLPK API routines (prefixed with lpx) were removed
  from the package.
* A set of routines that simulate the old GLPK API (as defined
  in 4.48) were added; see examples/oldapi/api/lpx.c.
* A namespace bug was fixed in the SQL table drive module.

(adam)

2014-02-14 09:09:40 UTC MAIN commitmail json YAML

Changes 1.18.12:
Configuration
    -------------
    - Added a configuration option to change the default plugin path.
      The configure option is --with-default-plugindir=location.
      The cmake option is -DH5_DEFAULT_PLUGINDIR:PATH=location.
      HDFFV-8513.  (ADB 2013/09/04)
    - Renamed FFLAGS to FCFLAGS in configure. (ADB 2013/08/13)
    - CMake can now package a compressed examples file, the default for
      Windows binaries from HDF Group.  (ADB  - 2013/07/22)
Tools
    -----
    - h5repack: Added the ability to use plugin filters to read and write
              files. The option uses the filter number. HDFFV-8345
              (ADB - 2013/09/04).
    - h5dump: Added the option -N --any_path, which searches the file for
              paths that match the search path. HDFFV-7989 (ADB - 2013/08/12).
    - h5dump: Added the optional arg 0 to -A, which excludes attributes
              from display. HDFFV-8134 (ADB - 2013/08/01).
C++ API
    -------
    - Added tutorial examples to C++/examples.  They can be installed by
      "make install-examples" and, in the installed directory, they can be
      executed by running the script file run-c++-ex.sh. (BMR - 2013/09/28)
    - A new class, H5::H5Location, is added to represent the location concept
      in the C library.  It is a base class to H5::H5File and H5::H5Ojbect,
      whose member functions are moved into H5::H5Location.  H5::H5File can
      now inherent those functions.  As a result, an H5::H5File object can have
      an attribute. (BMR - 2013/09/27)
    - Added wrappers for H5Rget_obj_type2 to retrieve the type of the object
      that an object reference points to. (BMR - 2013/09/27)
H5O_type_t H5Location::getRefObjType(void *ref, H5R_type_t ref_type)
    - Added wrappers for H5Aexist to check whether an attribute exists given
      a name. (BMR - 2013/09/27)
bool H5::H5Location::attrExists(const char* name)
bool H5::H5Location::attrExists(const H5std_string& name)
    - Added a number of overloaded functions for convenience. (BMR - 2013/09/27)

(adam)

2014-02-14 07:43:46 UTC MAIN commitmail json YAML

2014-02-14 07:14:23 UTC MAIN commitmail json YAML

fixes last commit, delete too aggressively :(

(obache)

2014-02-14 06:47:24 UTC MAIN commitmail json YAML

Prevent to force creation binary package in ${PACKAGES} for the case installing
dependency with USE_DESTDIR=yes unless creating binary packages.

(obache)

2014-02-14 06:39:32 UTC MAIN commitmail json YAML

Prevent to force creating binary package in ${PACKAGES} for the case installing
dependency with USE_DESTDIR=yes unless creating binary packages.

(obache)

2014-02-14 05:54:51 UTC MAIN commitmail json YAML

Fixes detection of builtin editline after automatic conversion from
devel/readline/buillink3.mk to mk/readline.buildlink.mk.
Resolve "No usable termcap library found on the system." error without
builtin termcap.

(obache)

2014-02-14 05:11:31 UTC MAIN commitmail json YAML

get rid of SuSE-release from PLIST too.

(obache)

2014-02-14 04:15:03 UTC MAIN commitmail json YAML

Updated security/apg to 2.3.0b

(rodent)

2014-02-14 04:14:41 UTC MAIN commitmail json YAML

Updated to apg-2.3.0b, released 09/08/2003. From CHANGES:
    Added support for cracklib
    Improved Makefile structure

(rodent)

2014-02-13 21:00:06 UTC MAIN commitmail json YAML

add and enable p5-Catalyst-Engine-HTTP-Prefork

(jnemeth)

2014-02-13 20:57:08 UTC MAIN commitmail json YAML

Updated mail/dovecot2 to 2.2.11; graphics/ImageMagick to 6.8.8.5

(adam)

2014-02-13 20:31:08 UTC MAIN commitmail json YAML

Fix for Darwin version higher that 10

(adam)

2014-02-13 20:18:14 UTC MAIN commitmail json YAML

Add missing return value. Fixes compilation with clang.

(wiz)

2014-02-13 20:14:15 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup ticket #4323 - requested by taca
www/contao32: security update

Revisions pulled up:
- www/contao/Makefile.common                                    1.59
- www/contao32/distinfo                                        1.7

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Thu Feb 13 00:38:14 UTC 2014

  Modified Files:
  pkgsrc/www/contao: Makefile.common
  pkgsrc/www/contao32: distinfo

  Log Message:
  Update contao32 to 3.2.6.

  Version 3.2.6 (2014-02-12)
  --------------------------

  ### Fixed
  Further harden the `deserialize()` function and the `Input` class (see #6724).

(tron)

2014-02-13 20:01:13 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup tickets #4322 and #4323.

(tron)

2014-02-13 19:58:04 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup ticket #4322 - requested by taca
www/contao211: security update

Revisions pulled up:
- www/contao/Makefile.common                                    1.58
- www/contao211/distinfo                                        1.20

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Thu Feb 13 00:36:38 UTC 2014

  Modified Files:
  pkgsrc/www/contao211: distinfo

  Log Message:
  Update contao211 to 2.11.15.

  Version 2.11.15 (2014-02-12)
  ----------------------------

  ### Fixed
  Further harden the `deserialize()` function and the `Input` class (see #6724).

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Thu Feb 13 00:37:27 UTC 2014

  Modified Files:
  pkgsrc/www/contao: Makefile.common

  Log Message:
  Update contao211 to Contao 2.11.15.

  Version 2.11.15 (2014-02-12)
  ----------------------------

  ### Fixed
  Further harden the `deserialize()` function and the `Input` class (see #6724).

(tron)

2014-02-13 19:54:55 UTC MAIN commitmail json YAML

Changes 2.2.11:
+ acl plugin: Added an alternative global ACL file that can contain
  mailbox patterns. See http://wiki2.dovecot.org/ACL for details.
+ imap proxy: Added proxy_nopipelining passdb setting to work around
  other IMAP servers' bugs (MS Exchange 2013 especially).
+ Added %{auth_user}, %{auth_username} and %{auth_domain} variables.
  See http://wiki2.dovecot.org/Variables for details.
+ Added support for LZ4 compression.
+ stats: Track also wall clock time for commands.
+ pop3_migration plugin improvements to try harder to match the UIDLs
  correctly.
- imap: SEARCH/SORT PARTIAL reponses may have been too large.
- doveadm backup: Fixed assert-crash when syncing mailbox deletion.

(adam)

2014-02-13 19:53:43 UTC MAIN commitmail json YAML

Changes 6.8.8.5:
* Fix case where an image moment might have a mass of 0 or a Hu moment might
  be 0.
* Enhance the TXT coder to read RGB percent values (e.g. 10.008%).
* Fixed new "-define png:swap-bytes" option (reference
  http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=24818).

(adam)

2014-02-13 18:52:10 UTC MAIN commitmail json YAML

Note update of the "thunderbird" package to version 24.3.0.

(tron)

2014-02-13 18:51:54 UTC MAIN commitmail json YAML

Update "thunderbird" package to version 24.3.0. Changes since 24.2.0:
- MFSA 2014-13 Inconsistent JavaScript handling of access to Window objects
- MFSA 2014-12 NSS ticket handling issues
- MFSA 2014-09 Cross-origin information leak through web workers
- MFSA 2014-08 Use-after-free with imgRequestProxy and image proccessing
- MFSA 2014-04 Incorrect use of discarded images by RasterImage
- MFSA 2014-02 Clone protected content with XBL scopes
- MFSA 2014-01 Miscellaneous memory safety hazards (rv:27.0 / rv:24.3)
- Improved handling of reply-to (bug 933555)

(tron)

2014-02-13 18:12:36 UTC MAIN commitmail json YAML

Note that EasyPG is built into emacs23 and later.

Therefore, also drop emacs23 as an acceptable version of emacs for this package.
(xemacs versions need review.)

(gdt)

2014-02-13 17:35:44 UTC MAIN commitmail json YAML

2014-02-13 16:12:50 UTC MAIN commitmail json YAML

Note addition of devel/py-spwd.

(jperkin)

2014-02-13 16:11:39 UTC MAIN commitmail json YAML

2014-02-13 16:10:50 UTC MAIN commitmail json YAML

Add py-spwd, the spwd module from the Python distribution.

Packaged by Naham Shalman in joyent/pkgsrc#173.

(jperkin)

2014-02-13 15:47:16 UTC MAIN commitmail json YAML

2014-02-13 14:38:08 UTC MAIN commitmail json YAML

2014-02-13 14:14:30 UTC MAIN commitmail json YAML

Note update of contao211 and contao32 releated packages:

www/contao211 2.11.16
www/contao211-example 2.11.16
www/contao32 3.2.7
www/contao32-example 3.2.7

(taca)

2014-02-13 14:12:20 UTC MAIN commitmail json YAML

Update contao32 to 3.2.7.

Version 3.2.7 (2014-02-13)
--------------------------

### Fixed
Fix another weakness in the `Input` class and further harden the `deserialize()`
function. Thanks to Martin Ausw旦ger for his input.

(taca)

2014-02-13 14:09:47 UTC MAIN commitmail json YAML

Update contao211 to 2.11.16.

Version 2.11.16 (2014-02-13)
----------------------------

### Fixed
Fix another weakness in the `Input` class and further harden the `deserialize()`
function. Thanks to Martin Ausw旦ger for his input.

(taca)

2014-02-13 12:44:47 UTC MAIN commitmail json YAML

2014-02-13 12:25:19 UTC MAIN commitmail json YAML

Fix MASTER_SITES.

(wiz)

2014-02-13 11:45:19 UTC MAIN commitmail json YAML

2014-02-13 11:39:05 UTC MAIN commitmail json YAML

The database backends are not mutually exclusive. For the sake of binary
packages, use PKG_OPTIONS_NONEMPTY_SETS instead. Bump PKGREVISION.

(fhajny)

2014-02-13 11:12:58 UTC MAIN commitmail json YAML

add patch from upstream to fix use-after-free under memory pressure
(CVE-2014-1950)
bump PKGREV

(drochner)

2014-02-13 10:22:49 UTC MAIN commitmail json YAML

note csound5 and csound5-manual updates.

(mrg)

2014-02-13 10:21:50 UTC MAIN commitmail json YAML

2014-02-13 10:10:06 UTC MAIN commitmail json YAML

2014-02-13 09:46:41 UTC MAIN commitmail json YAML

Updated net/rabbitmq-c to 0.5.0

(fhajny)

2014-02-13 09:46:27 UTC MAIN commitmail json YAML

2014-02-13 09:46:00 UTC MAIN commitmail json YAML

Update net/rabbitmq-c to 0.5.0. Add bl3.

- Add amqp_get_broker_properties() function
- Remove distro-specific packaging
- Add -x flag to amqp-consume utility
- Add amqp_basic_nack() public API
- Add delivery mode constants to amqp.h
- Add support for connection.blocked/connection.unblocked methods
- Examples: Destroy amqp_envelope_t in consumer example
- CMake: fix generation of librabbitmq.pc
- CMake: fix missing POPT_INCLUDE_DIRS variable in tools/
- build: provide independent locations for x64 libs
- Doc: documentation fixes
- Lib: Correct OpenSSL initialization under threaded conditions
- Examples: Handle unexpected frames in amqp_consumer.c
- CMake: Use GnuInstallDirs to generate install dirs
- Lib: correctly handle amqp_get_monotonic_timestamp on win32
- Tools: honor --persistent flag in publish utility
- Doc: improve documentation in amqp_ssl_socket functions
- autoconf: correct librabbitmq.pc generation
- Doc: improve documentation in amqp_tcp_socket functions

(fhajny)

2014-02-13 07:56:36 UTC MAIN commitmail json YAML

Remove support for pre-beta snapshot of OpenSSL 1.0.1.

(tron)

2014-02-13 07:51:01 UTC MAIN commitmail json YAML

Updated databases/mysql56 to 5.6.16

(adam)

2014-02-13 07:49:56 UTC MAIN commitmail json YAML

Changes 5.6.16:
Functionality Added or Changed
* InnoDB: New global configuration parameters, innodb_status_output and innodb_status_output_locks, allow you to dynamically enable and disable the standard InnoDB Monitor and InnoDB Lock Monitor for periodic output. Enabling and disabling monitors for periodic output by creating and dropping specially named tables is deprecated and may be removed in a future release.
* Previously, ALTER TABLE in MySQL 5.6 could alter a table such that the result had temporal columns in both 5.5 and 5.6 format. Now ALTER TABLE upgrades old temporal columns to 5.6 format for ADD COLUMN, CHANGE COLUMN, MODIFY COLUMN, ADD INDEX, and FORCE operations. This conversion cannot be done using the INPLACE algorithm, so specifying ALGORITHM=INPLACE in these cases results in an error.
* CMake now supports a -DTMPDIR=dir_name option to specify the default tmpdir value. If unspecified, the value defaults to P_tmpdir in <stdio.h>.

Bugs Fixed
* InnoDB; Replication: Using the InnoDB memcached plugin (see InnoDB Integration with memcached) with innodb_api_enable_binlog set to 1 caused the server to leak memory.
* InnoDB: A boolean mode full-text search query would result in a memory access violation during parsing.
* InnoDB: When new indexes are added by an ALTER TABLE operation, instead of only saving table-level statistics and statistics for the new indexes, InnoDB would save statistics for the entire table, including the table's other indexes. This behavior slowed ALTER TABLE performance.
* InnoDB: Due to a parser error, full-text search queries that include a sub-expression could return the wrong result.
* InnoDB: The innochecksum tool did not use a Windows-specific API to retrieve file size information, which resulted in an incorrect error message (Error: ibdata1 cannot be found) when the MySQL 5.6 innochecksum 2GB file size limit was exceeded. innochecksum now provides support for files larger than 2GB in both MySQL 5.6 and MySQL 5.7.
* InnoDB: Due to a regression introduced by the fix for Bug17371537, memory was not allocated for the default memcached engine when using the default memcached engine as the backstore for data instead of InnoDB.
* InnoDB: InnoDB would report an incorrect operating system error code after failing to initialize.
* InnoDB: Manipulating a table after discarding its tablespace using ALTER TABLE ... DISCARD TABLESPACE could result in a serious error.
* InnoDB: Persistent optimizer statistics would cause stalls due to latch contention.
* InnoDB: MATCH() ... AGAINST queries that use a long string as an argument for AGAINST() could result in an error when run on an InnoDB table with a full-text search index.
* InnoDB: An InnoDB full-text search failure would occur due to an ���unended��� token. The string and string length should be passed for string comparison.
* InnoDB: In debug builds, a merge insert buffer during a page read would cause a memory access violation.
* InnoDB: Truncating a memcached InnoDB table while memcached is performing DML operations would result in a serious error.
* InnoDB: In sync0rw.ic, rw_lock_x_lock_func_nowait would needlessly call os_thread_get_curr_id.
* InnoDB: Attempting to rename a table to a missing database would result in a serious error.
more...

(adam)

2014-02-13 07:31:27 UTC MAIN commitmail json YAML

Updated databases/sqlite3 to 3.8.3.1

(adam)

2014-02-13 07:30:31 UTC MAIN commitmail json YAML

Changes 3.8.3.1:
Fix a bug (ticket 4c86b126f2) that causes rows to go missing on some queries with OR clauses and IS NOT NULL operators in the WHERE clause, when the SQLITE_ENABLE_STAT3 or SQLITE_ENABLE_STAT4 compile-time options are used.
Fix a harmless compiler warning that was causing problems for VS2013.

(adam)

2014-02-13 06:24:36 UTC MAIN commitmail json YAML

2014-02-13 00:59:17 UTC MAIN commitmail json YAML

Note PKGREVISION bump of mendexk

(minskim)

2014-02-13 00:58:22 UTC MAIN commitmail json YAML

Fix Debian Bug #534641. Patch from TeX Live repo.

Suggested by Makoto Fujiwara.

(minskim)

2014-02-13 00:51:06 UTC MAIN commitmail json YAML

2014-02-13 00:50:24 UTC MAIN commitmail json YAML

Added textproc/py-acora version 1.8

(rodent)

2014-02-13 00:50:13 UTC MAIN commitmail json YAML

Import py27-acora-1.8 as textproc/py-acora.

Acora is 'fgrep' for Python, a fast multi-keyword text search engine.

Based on a set of keywords, it generates a search automaton (DFA) and runs it
over string input, either unicode or bytes.

It is based on the Aho-Corasick algorithm and an NFA-to-DFA powerset
construction.

Acora comes with both a pure Python implementation and a fast binary module
written in Cython. However, note that the current construction algorithm is not
suitable for really large sets of keywords (i.e. more than a couple of
thousand).

(rodent)

2014-02-13 00:39:29 UTC MAIN commitmail json YAML

Note update of Contao packages:

www/contao211 2.11.15
www/contao211-example 2.11.15
www/contao32 3.2.6
www/contao32-example 3.2.6

(taca)

2014-02-13 00:38:14 UTC MAIN commitmail json YAML

Update contao32 to 3.2.6.

Version 3.2.6 (2014-02-12)
--------------------------

### Fixed
Further harden the `deserialize()` function and the `Input` class (see #6724).

(taca)

2014-02-13 00:37:27 UTC MAIN commitmail json YAML

Update contao211 to Contao 2.11.15.

Version 2.11.15 (2014-02-12)
----------------------------

### Fixed
Further harden the `deserialize()` function and the `Input` class (see #6724).

(taca)

2014-02-13 00:36:38 UTC MAIN commitmail json YAML

Update contao211 to 2.11.15.

Version 2.11.15 (2014-02-12)
----------------------------

### Fixed
Further harden the `deserialize()` function and the `Input` class (see #6724).

(taca)

2014-02-12 23:28:17 UTC MAIN commitmail json YAML

2014-02-12 23:23:17 UTC MAIN commitmail json YAML

Undo undesired ABI version bump done by "blbump" script.

(tron)

2014-02-12 23:19:49 UTC MAIN commitmail json YAML

Remove work-around for OpenSSL 0.9.9 snapshot distributed with NetBSD 5.*.

(tron)

2014-02-12 23:18:57 UTC MAIN commitmail json YAML

2014-02-12 23:16:21 UTC MAIN commitmail json YAML

Set minimum required API version of OpenSSL to 1.0.1c:
1.) OpenSSL 0.9.8* doesn't support TLS 1.2, Elliptic curve cryptography
    and other modern TLS features.
2.) Supporting OpenSSL 0.9.8* causes extra maintenance overhead.

As a result NetBSD 5.*, all versions of Mac OS X and possibly other
platforms will now use OpenSSL from "pkgsrc".

(tron)

2014-02-12 20:55:49 UTC MAIN commitmail json YAML

Updated x11/gtk3 to 3.10.7

(prlw1)

2014-02-12 20:55:20 UTC MAIN commitmail json YAML

Update gtk3 to 3.10.7

Overview of Changes in GTK+ 3.10.6 to 3.10.7
============================================

* Bugs fixed:
386569 GtkFileChooser enters first file name into the entry...
709491 dark theme setting not propagated to vertical spinbu...
711298 "Edit Scheduled Transaction" window way too modal
719314 gdk_property_change segfault on multiple X protocol...
719970 Fails to build: gdkevents-quartz.c:1692:58: error: ...
719977 Can not use GtkFileChooserDialog: assertion failure
721700 invalid callback prototypes leads to test issues
        win32: add more width to the slider to not cut it w...
        win32: add margin to scale trough
        win32: set color for scale marks
        win32: scale slider with marks was off by 2 pixels
        win32: handle again gtk-font-name

* Translation updates:
Czech
German
Greek
Hungarian
Punjabi
Russian
Simplified Chinese
Slovenian

(prlw1)

2014-02-12 19:45:18 UTC MAIN commitmail json YAML

Note update of www/wordpress

(morr)

2014-02-12 19:43:56 UTC MAIN commitmail json YAML

Update to version 3.8.1

Changes:

Addressed 31 bugs in 3.8, including various fixes and improvements for the new
dashboard design and new themes admin screen.

More info at http://codex.wordpress.org/Version_3.8.1

(morr)

2014-02-12 18:11:27 UTC MAIN commitmail json YAML

-move PYTHON_VERSIONS_INCOMPATIBLE before first use of "pyversion.mk",
otherwise it has no effect
-in buildlink3.mk, also add PYTHON_VERSIONS_INCOMPATIBLE to avoid
picking up the default Python version (XXX we need a way to express
major version restrictions, otherwise this doesn't scale)

(drochner)

2014-02-12 18:06:05 UTC MAIN commitmail json YAML

py-gobject3-common is thought to be Python version independent, so it
should not keep a runtime dependency on a specific Python version.
Make Python a build-time dependency for py-gobject3-common (not really
needed, just to satisfy the "configure" script) and move some
dependencies into py-gobject3/Makefile

(drochner)

2014-02-12 17:53:02 UTC MAIN commitmail json YAML

kick out Python stuff -- I don't see any use (and there was one,
it should go into a separate pkg)
ride on today's update

(drochner)

2014-02-12 15:21:07 UTC MAIN commitmail json YAML

2014-02-12 15:20:59 UTC MAIN commitmail json YAML

Update to 1.3.4:

Serf 1.3.4 [2014-02-08, from /tags/1.3.4, rxxxx]
  Fix issue #119: Endless loop during ssl tunnel setup with Negotiate authn
  Fix issue #123: Can't setup ssl tunnel which sends Connection close header
  Fix a race condition when initializing OpenSSL from multiple threads (r2263)
  Fix issue #138: Incorrect pkg-config file when GSSAPI isn't configured

(wiz)

2014-02-12 15:19:42 UTC MAIN commitmail json YAML

Updated databases/py-sqlparse to 0.1.11

(wiz)

2014-02-12 15:19:33 UTC MAIN commitmail json YAML

Update to 0.1.11:

Release 0.1.11 (Feb 07, 2014)
-----------------------------

Bug Fixes
* Fix incorrect parsing of string literals containing line breaks (issue118).
* Fix typo in keywords, add MERGE, COLLECT keywords (issue122/124,
  by Cristian Orellana).
* Improve parsing of string literals in columns.
* Fix parsing and formatting of statements containing EXCEPT keyword.
* Fix Function.get_parameters() (issue126/127, by spigwitmer).

Enhancements
* Classify DML keywords (issue116, by Victor Hahn).
* Add missing FOREACH keyword.
* Grouping of BEGIN/END blocks.

Other
* Python 2.5 isn't automatically tested anymore, neither Travis nor Tox
  still support it out of the box.

(wiz)

2014-02-12 15:18:58 UTC MAIN commitmail json YAML

Updated devel/py-setuptools to 2.2

(wiz)

2014-02-12 15:18:49 UTC MAIN commitmail json YAML

Update to 2.2:

---
2.2
---

* Issue #141: Restored fix for allowing setup_requires dependencies to
  override installed dependencies during setup.
* Issue #128: Fixed issue where only the first dependency link was honored
  in a distribution where multiple dependency links were supplied.

(wiz)

2014-02-12 15:18:00 UTC MAIN commitmail json YAML

Updated devel/py-doctor to 0.5

(wiz)

2014-02-12 15:17:52 UTC MAIN commitmail json YAML

2014-02-12 15:15:30 UTC MAIN commitmail json YAML

Updated net/gupnp-igd to 0.2.3

(wiz)

2014-02-12 15:15:21 UTC MAIN commitmail json YAML

Update to 0.2.3. Remove patch-ac, all the header files it added are now
included by default.

*******************
* GUPnP IGD 0.2.3 *
*******************

- Emit errors as boxed types
- Various build improvements
- Make tests less racy

(wiz)

2014-02-12 14:35:11 UTC MAIN commitmail json YAML

Pass in additional libraries and use full path to krb5-config.

Fixes build on SunOS when using builtin mit-krb5.

(jperkin)

2014-02-12 12:53:56 UTC MAIN commitmail json YAML

2014-02-12 11:48:17 UTC MAIN commitmail json YAML

2014-02-12 11:44:58 UTC MAIN commitmail json YAML

Remove conflict with devel/ossp-uuid, now that the former installs under
a different name. Bump PKGREVISION.

(fhajny)

2014-02-12 11:43:53 UTC MAIN commitmail json YAML

2014-02-12 11:31:50 UTC MAIN commitmail json YAML

2014-02-12 11:07:18 UTC MAIN commitmail json YAML

don't DISABLE_DEPRECATED, fixes build (at least with gtk3+-3.10.7)

(drochner)

2014-02-12 02:14:00 UTC MAIN commitmail json YAML

Updated audio/rhythmbox-gtk3 to 3.0.1

(prlw1)

2014-02-12 02:13:39 UTC MAIN commitmail json YAML

Update rhythmbox-gtk3 to 3.0.1

Highlights:
* Plugins now use Python 3
* New task progress display below the track list
  (used for various things including track transfers and
  import jobs)
* Support for composer tags
* Restyled playback controls
* Restyled source list using symbolic icons
* Better introspection of everything
* Separate CBR and VBR encoding styles with different sets
  of exposed properties
* Playlist settings (browser visibility etc.) saved in
  playlists.xml
* Better use of RTL icons where appropriate

For full release notes see:
https://git.gnome.org/browse/rhythmbox/tree/NEWS?id=v3.0.1

(prlw1)

2014-02-12 02:06:03 UTC MAIN commitmail json YAML

Updated graphics/eog3 to 3.10.2

(prlw1)

2014-02-12 02:05:36 UTC MAIN commitmail json YAML

Update eog3 to 3.10.2

Highlights:
* Fix detail widget expansion in properties dialog
#702523, Eog crashes deleting removed photo (Felix Riemann)
#704074, eog-jobs.h includes non-installed header eog-uri-converter.h
          (Dominique Leuenberger)
#704359, svg images displaced since gtk 3.9.2 (Sebastian Keller)
* Integrate more modern job system from Evince with proper cancellation
  support in preparation for further refactoring (Javier S叩nchez)
#695818, Disable color management support on !X (Matthias Clasen)
* Use XDG_DATA_DIRS and XDG_DATA_HOME as plugin search paths
#690931, Any combination of the `1` key is bound to "Normal Size" (F. Riemann)
#691517, missing check against null in handle_image_selection_changed_cb
#691552, Use <control>q shortcut to quit the application (Florian M端llner)
#684179, switching images by next/prev mouse buttons (like in browsers)
          (Felix Riemann)
#684581, Drop TotemScrSaver (Felix Riemann)

For full release notes see:
https://git.gnome.org/browse/eog/tree/NEWS?id=3.10.2

(prlw1)

2014-02-12 01:49:44 UTC MAIN commitmail json YAML

Updated editors/gedit3 to 3.10.4

(prlw1)

2014-02-12 01:49:10 UTC MAIN commitmail json YAML

Update gedit3 to 3.10.4

Highlights:
- Implement regular expression search (S辿bastien Wilmet)
- Use the GtkSourceView search and replace API (S辿bastien Wilmet)
- Deprecate the gedit search and replace API (S辿bastien Wilmet)
- Display the number of search occurrences and the current occurrence position
  in the search entry (Ignacio Casal Quinteiro, S辿bastien Wilmet)
- Fix tab groups (Garrett Regier)
- Fix clicking on replace dialog buttons (S辿bastien Wilmet)
- Add new Highlight Mode dialog (Ignacio Casal Quinteiro)
- Allow shell quotes in commands from Run Command tool (Adam Dingle)
- Use widget templates (Ignacio Casal Quinteiro, Paolo Borelli)
- Use revealer to animate the search bar and the notification bars (Ignacio Casal Quinteiro)
- Port to GtkApplication (Paolo Borelli, Ryan Lortie, Ignacio Casal Quinteiro)
- Port to python 3 (Ignacio Casal Quinteiro)
- Translation updates

For full release notes see:
https://git.gnome.org/browse/gedit/tree/NEWS?id=3.10.4

(prlw1)

2014-02-12 01:36:26 UTC MAIN commitmail json YAML

Updated devel/libpeas to 1.8.1

(prlw1)

2014-02-12 01:35:43 UTC MAIN commitmail json YAML

Update libpeas to 1.8.1

Switch to use python3. Now to update its consumers gedit, eog and rhythmbox.

Overview of Changes in libpeas 1.8.1
====================================
* Misc bugfixes

Overview of Changes in libpeas 1.8.0
====================================

* Misc bugfixes

* Translation updates:
  - Aragonese
  - Portuguese
  - Tadjik
  - Uyghur

Overview of Changes in libpeas 1.7.0
====================================

* Add python3 loader

* Translation updates:
  - Friulan
  - Kannada
  - Odia

(prlw1)

2014-02-12 01:23:55 UTC MAIN commitmail json YAML

Updated x11/gnome-desktop3 to 3.10.2

(prlw1)

2014-02-12 01:23:33 UTC MAIN commitmail json YAML

Update gnome-desktop3 to 3.10.2

===============
Version  3.10.1
===============

- gnome-bg: Fix memory leaks (#709271)
- gnome-bg: set error when parsing XML file that's not a slide show (#708877)
- languages: Obtain supported locales from "locale -a" output (#698383)
- thumbnailer: Bail if no pixbuf loader could be created (#709819)
- thumbnailer: Support loading thumbnails from remote locations (#708824)
- Translation updates

===============
Version  3.10.0
===============

- libsystem: Update from master ($708435)
- gnome-rr: refresh when mutter restarts (#708284)
- Translation updates

===============
Version  3.9.92
===============

- IdleMonitor: protect watches from being freed while in flight (#707396)
- thumbnailer: Always print errors from gs_file_read_noatime() (#699252)
- thumbnailer: Correctly check for errors (#699252)
- thumbnailer: Check gdk_pixbuf_loader_close()'s retval (#699252)
- Correct the transposed bits of the red chromacity in the EDID parser
- Translation updates

===============
Version  3.9.91
===============

- gnome-rr: don't assume 'default' means built-in (#706738)
- gnome-rr: Read back new backlight value after changes (#706729)
- idle: Use mutter api instead of direct X clals (#706006)
- Translation updates

===============
Version  3.9.90
===============

- gnome-rr: Add api to get physical size
- gnome-rr: Add async constructor
- gnome-rr: Port to mutter dbus api (#705510)
- xkb: Prevent a crash (#705885)
- Translation updates

==============
Version  3.9.5
==============

- xkb: Ensure strings are UTF-8
- gnome-rr: Fix a crash
- gnome-rr: Be more careful when parsing EDID
- wall-clock: Initialize gettext
- gnome-bg: Objects without a filename are not slideshows
- gnome-xkb-info: Fix memory leaks
- Translation updates

==============
Version  3.9.1
==============

- gnome-xkb-info: Don't store duplicated layouts in locale tables
- idle-monitor: Make per-device monitor fallible
- wall-clock: Move ratio from msg id's to translations
- idle-monitor: Allow multiple watches per alarm
- Translation updates

==============
Version 3.7.90
==============

- Fix introspection generation for Vala
- Fix introspectability of GnomeBg

* GnomeIdleMonitor:
- Break ABI and API to fix reliance of the API on an Xorg bug
- use standard GObject boilerplate
- generate gtk-doc documentation

* GnomeWallClock:
- generate gtk-doc documentation
- add timezone property which can be monitored
- Add conventional gnome_wall_clock_new()

* GnomeXkbInfo:
- generate gtk-doc documentation
- Use the correct methods to get language/country
- Handle duplicated layouts
- Add API to get layouts for language and country

* gnome-languages:
- generate gtk-doc documentation
- Add methods to get language/country from ISO codes
- Add default input sources per locale

* GnomeRR:
- Make GnomeRRConfig use the detected display name
- use standard GObject boilerplate
- Improve gtk-doc documentation

* GnomeBg:
- Split slide show API to be usable from gnome-shell
- Add asynchronous version of slideshow loading

=============
Version 3.7.5
=============

languages: Don't g_warning if there's no locale archive
languages: Extracted from gnome-control-center
languages: Fix a memory leak
xkb-info: Group layouts by country and language
xkb-info: Add a get_layout_info_for_locale method

Translation updates: Norwegian, Slovenian, Polish, Hebrew, Serbian

=============
Version 3.7.4
=============

690703 wallclock: Fix AM/PM detection
691701 GnomeRR: make DPMS take effect immediately
wallclock: return a proper error when idle-counter unavailable

Translation updates: Spanish, Polish, Norwegian bokm奪l, Arabic,
Greek, Galician, Hebrew, Assamese, Friulian, Bulgarian, Slovenian,
Uyghur

=============
Version 3.7.3
=============

rr-labeler has been moved into gnome-control-center
We use nice Unicode for date formatting now
688227 idle-monitor: Reset the alarm so it can be triggered again

Translation updates: Kannada, Odia, Tamil

=============
Version 3.7.2
=============

Bug fixes:
682224 Fix a memory leak in GnomeIdleMonitor
682224 Support device-specific counters
688189 Fix compiler warnings
687913 Only use 12h mode when am/pm is available

Translation updates: Japanese
=============
Version 3.7.1
=============

Bug fixes:
684814 rr-labeler: Improve drawing of monitor label
684803 gnome-xkb-info: Add public api to get XKB option descriptions
682224 Add GnomeIdleMonitor
686792 Don't use gvfs-copy in autogen.sh

Translation updates: Aragonese, Catalan, Catalan (Valencian), Japanese,
Ukrainian, Uzbek

(prlw1)

2014-02-12 01:16:47 UTC MAIN commitmail json YAML

Updated sysutils/gsettings-desktop-schemas to 3.10.1

(prlw1)

2014-02-12 01:16:24 UTC MAIN commitmail json YAML

Update gsettings-desktop-schemas to 3.10.1

Major changes in 3.10.1
=======================
* New default lock screen background. Please update gnome-backgrounds
  to 3.10.1 as well
* Translation updates

Major changes in 3.10.0
=======================
* Translation updates

Major changes in 3.9.91
=======================
* Add datetime schema
* Set a different lock screen background by default
* Translation updates

Major changes in 3.9.90
=======================
* Add settings for focus/caret tracking

Major changes in 3.9.5
======================
* Remove settings for deprecated gtk-settings
* Remove application-based option, deprecated in mutter

Major changes in 3.9.3
======================
* Translation updates

Major changes in 3.9.2
======================
* Add remember-app-usage key to privacy schema
* Add alternative shortcut for toggling the overview
* Add always-show-universal-access-status key to a11y schema
* Translation updates

Major changes in 3.8.2
======================
* Fix description of "sort-order" key in the search providers schema
* Don't migrate metacity themes from GNOME 2.
* Translation updates

Major changes in 3.8.0
======================
* Translation updates

Major changes in 3.7.92
=======================
* Translation updates

Major changes in 3.7.91
=======================
* Add keys for the screensaver wallpaper
* Remove the obsolete draw-background key
* Translation updates

Major changes in 3.7.90
=======================
* Add the IPv6 localhost to the default ignored hosts for proxy
* Make Alt-Tab be synonymous with the default shell switcher
* Lower default idle delay to 300 seconds

Major changes in 3.7.5
======================
* Rename resident-in-lock-screen key
* Use the Super key for workspace and application switcher shortcuts
* Translation updates

Major changes in 3.7.4
======================

* Clarify definition of resident-in-lock-screen
* Add a 'per-window' key to the input sources schema
* Use Super+H (for hide) as the default value for minimise
* Add show-full-name-in-top-bar to privacy schemas
* Rename show-full-name lock screen key to show-full-name-in-top-bar
* Mark a number of keys as deprecated and obsolete

Major changes in 3.7.3
======================

* Add lockdown mode key for user-accounts
* Add trash, temp files and recent files related settings
* Add schemas for notification filtering
* Add new "switch-application" keybinding, so that
  the "switch-windows" keybinding can be kept for the legacy mode
* Add new switch-input-source keybinding

Major changes in 3.7.2
======================

* Add a schema for desktop search providers (#687489)
* Add a schema for privacy settings (#688578)
* Add a show-full-name setting for the lock screen
* Quote a11y feature names (#687292)
* Remove unneeded XML escaping (#687291)
* Fix a typo (#686861)
* Translation updates

(prlw1)

2014-02-12 01:07:26 UTC MAIN commitmail json YAML

Updated x11/gtksourceview3 to 3.10.2

(prlw1)

2014-02-12 01:07:01 UTC MAIN commitmail json YAML

Update gtksourceview3 to 3.10.2

News in 3.10.0
--------------
* Small bugfix
* Updated translations

News in 3.9.92
--------------
* SearchSettings: change default value of wrap-around to FALSE
* Misc bugfixes
* Updated translations

News in 3.9.91
--------------
* Improvements to the completion
* API break for the search and replace
* Deprecate the GtkSourceMarkAttributes:stock-id property
* Misc bugfixes
* Updated translations

News in 3.9.90
--------------
* Modify the search and replace API: SearchContext and SearchSettings classes
* Regular expression search
* Misc bugfixes
* Updated translations

News in 3.9.4
-------------
* Warning: the search and replace API is unstable
* Misc bugfixes
* Updated translations

News in 3.9.3
-------------
* Add a higher-level asynchronous search and replace API
* Deprecate gtk_source_completion_item_new_from_stock()
* Deprecate the GtkSourceGutterRendererPixbuf:stock-id property
* Updated translations

News in 3.9.2
-------------
* Add syntax highlighting for the Julia, mediawiki and Scala languages
* Improvements to the word completion provider
* Add the GtkSourceCompletionWords:activation property
* More compact completion popup window
* Misc bugfixes
* Updated translations

News in 3.9.1
-------------
* Deprecate the GtkSourceCompletionInfo::before-show signal
* Hide CompletionInfo when focus-out-event on the attached-to widget
* Improvements to the main completion window
* Some code improvements to the words completion provider
* Improvements to the C++ and Perl language specs
* Documentation improvements
* Misc bugfixes
* Updated translations

News in 3.8.1
-------------
* Improvements to the LaTeX and Perl language specs
* Update to gtk-mac-integration 2.0 API
* More unit tests
* Misc bugfixes
* Updated translations

News in 3.8.0
-------------
* Add Libtool versioning. There was an ABI break during this development
  cycle, because some private functions were accidentally exported. So
  the Libtool's -version-info is bumped from 0:0:0 to 1:0:0. On
  GNU/Linux, this results in a version bump of the soname.
* Updated translations

News in 3.7.92
--------------
* New style id for warnings
* Improvements to the completion code and documentation
* Misc bugfixes
* Updated translations

News in 3.7.91
--------------
* Simplify code for the completion
* Improvements of the Perl, R and Ruby language specs
* Misc bugfixes
* Updated translations

News in 3.7.90
--------------
* Improvements in completion
* Add Modelica language spec
* Misc bugfixes
* Updated translations

News in 3.7.3
-------------
* Deprecate gtk_source_completion_move_window()
* Deprecate gtk_source_completion_info_get_widget()
* Deprecate gtk_source_completion_info_set_widget()
* CompletionInfo: always a natural size
* Simplify internal code for the completion (new CompletionModel)
* Fixes for the style schemes and GtkSourceMark
* Other misc bugfixes
* Updated translations

News in 3.7.2
-------------
* Improved unit tests and code coverage support
* Misc bugfixes
* Updated translations

News in 3.7.1
-------------
* Add Bluespec SystemVerilog syntax highlighter
* Improvements in completion
* Add language spec for IDL
* Lots of fixes in gtk doc
* Misc bugfixes
* Updated translations

(prlw1)

2014-02-12 01:00:18 UTC MAIN commitmail json YAML

Added devel/py-gobject3-common version 3.10.2

(prlw1)

2014-02-12 00:57:25 UTC MAIN commitmail json YAML

2014-02-12 00:30:03 UTC MAIN commitmail json YAML

Python 2.6 and 2.7 versions of py-cairo conflict, but they don't conflict
with the python 3.3 version, so remove PYTHON_SELF_CONFLICT and leave
it up to PLIST conflict detection.

(prlw1)

2014-02-11 20:54:25 UTC MAIN commitmail json YAML

Note update of devel/reposurgeon to 3.2

(agc)

2014-02-11 20:53:25 UTC MAIN commitmail json YAML

Update reposurgeon from 3.1 to 3.2

Changes:
3.2: 2014-02-03
    New path rename command.
    List and inspect now take either a leading or following selection.
    Text search selections can now have a B suffix to search blobs.
    Now possible to transplant fileops between commits using remove .. to.
    A date of the form <YYYY-mm-dd> selects all commits and tags that day.
    Macros can now be multiline.

(agc)

2014-02-11 20:51:34 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup tickets #4320 and #4321.

(tron)

2014-02-11 20:50:43 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup ticket #4321 - requested by pettai
security/py-denyhosts: security patch

Revisions pulled up:
- security/py-denyhosts/Makefile                                1.11
- security/py-denyhosts/distinfo                                1.6
- security/py-denyhosts/patches/patch-af                        1.3

---
  Module Name: pkgsrc
  Committed By: pettai
  Date: Tue Feb  4 15:38:16 UTC 2014

  Modified Files:
  pkgsrc/security/py-denyhosts: Makefile distinfo
  pkgsrc/security/py-denyhosts/patches: patch-af

  Log Message:
  Added DSA-2826-2 fix

(tron)

2014-02-11 20:42:37 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup ticket #4320 - requested by obache
lang/python33: security patch

Revisions pulled up:
- lang/python33/Makefile                                        1.14
- lang/python33/distinfo                                        1.8
- lang/python33/patches/patch-Modules_socketmodule.c            1.1

---
  Module Name: pkgsrc
  Committed By: obache
  Date: Tue Feb 11 05:52:56 UTC 2014

  Modified Files:
  pkgsrc/lang/python33: Makefile distinfo
  Added Files:
  pkgsrc/lang/python33/patches: patch-Modules_socketmodule.c

  Log Message:
  Fixes SA56624, taken from upstream.

  Bump PKGREVISION.

(tron)

2014-02-11 17:57:26 UTC MAIN commitmail json YAML

Updated lang/python33 to 3.3.4

(adam)

2014-02-11 17:56:16 UTC MAIN commitmail json YAML

Changed 3.3.4:
PEP 380, syntax for delegating to a subgenerator (yield from)
PEP 393, flexible string representation (doing away with the distinction between "wide" and "narrow" Unicode builds)
A C implementation of the "decimal" module, with up to 120x speedup for decimal-heavy applications
The import system (__import__) is based on importlib by default
The new "lzma" module with LZMA/XZ support
PEP 397, a Python launcher for Windows
PEP 405, virtual environment support in core
PEP 420, namespace package support
PEP 3151, reworking the OS and IO exception hierarchy
PEP 3155, qualified name for classes and functions
PEP 409, suppressing exception context
PEP 414, explicit Unicode literals to help with porting
PEP 418, extended platform-independent clocks in the "time" module
PEP 412, a new key-sharing dictionary implementation that significantly saves memory for object-oriented code
PEP 362, the function-signature object
The new "faulthandler" module that helps diagnosing crashes
The new "unittest.mock" module
The new "ipaddress" module
The "sys.implementation" attribute
A policy framework for the email package, with a provisional (see PEP 411) policy that adds much improved unicode support for email header parsing
A "collections.ChainMap" class for linking mappings to a single unit
Wrappers for many more POSIX functions in the "os" and "signal" modules, as well as other useful functions such as "sendfile()"
Hash randomization, introduced in earlier bugfix releases, is now switched on by default

(adam)

2014-02-11 16:21:01 UTC MAIN commitmail json YAML

Specify build time dependency with RUBY_JSON_REQD.

(taca)

2014-02-11 16:20:03 UTC MAIN commitmail json YAML

Make RUBY_JSON_REQD support build time dependency adding ":build" after
minimum version.

(taca)

2014-02-11 15:54:46 UTC MAIN commitmail json YAML

+ bluefish-2.2.5, coccigrep-2.13, eric5-5.4.1, gaupol-0.25,
  libmemcached-1.0.18, phpmyadmin-4.1.7, weechat-0.4.3.

(wiz)

2014-02-11 14:15:36 UTC MAIN commitmail json YAML

Added databases/mysql-connector-c++ version 1.1.3

(wiz)

2014-02-11 14:15:24 UTC MAIN commitmail json YAML

+ mysql-connector-c++

(wiz)

2014-02-11 14:13:38 UTC MAIN commitmail json YAML

Import mysql-connector-c++-1.1.3 as databases/mysql-connector-c++.

MySQL Connector/C++ is a MySQL database connector for C++. It lets
you develop C++ applications that connect to the MySQL Server.

MySQL Connector/C++ offers the following benefits for C++ users
compared to the MySQL C API (MySQL client library):

* Convenience of pure C++; no C function calls required
* Supports JDBC 4.0, an industry standard API
* Supports the object-oriented programming paradigm
* Reduces development time

(wiz)

2014-02-11 09:12:54 UTC MAIN commitmail json YAML

Updated lang/sun-jdk7 to 7.0.51

(obache)

2014-02-11 09:12:35 UTC MAIN commitmail json YAML

Updated lang/sun-jre7 to 7.0.51

(obache)

2014-02-11 09:12:12 UTC MAIN commitmail json YAML

Java SE Development Kit 7, Update 51 (JDK 7u51)

Olson Data 2013h

JavaFX Release Notes
* JavaFX is now part of JDK. JDK 7u51 release includes JavaFX version 2.2.51.

New Features and Changes
* Jarsigner updated to encourage timestamping
* Changes to Security Slider
* Prompt users to clear previously remembered decisions
* Exception Site List

Bug Fixes
This release contains fixes for security vulnerabilities. For more information:
  http://www.oracle.com/technetwork/topics/security/cpujan2014-1972949.html#AppendixJAVA

(obache)

2014-02-11 07:21:28 UTC MAIN commitmail json YAML

Fixes for IRIX from Staffan Thom駭 in PR 48587.
This is all of it except for one bit pertaining to libtool, which is
going to require some additional flailing.

(dholland)

2014-02-11 05:53:39 UTC MAIN commitmail json YAML

Updated lang/python33 to 3.3.3nb1

(obache)

2014-02-11 05:52:56 UTC MAIN commitmail json YAML

2014-02-10 20:18:04 UTC MAIN commitmail json YAML

2014-02-10 18:14:48 UTC pkgsrc-2013Q4 commitmail json YAML

2014-02-10 18:13:44 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup ticket #4319 - requested by tron
lang/python27: security fix

Revisions pulled up:
- lang/python27/Makefile                                        1.34
- lang/python27/distinfo                                        1.30
- lang/python27/patches/patch-Modules_socketmodule.c            1.1

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: tron
  Date: Sun Feb  9 09:02:50 UTC 2014

  Modified Files:
  pkgsrc/lang/python27: Makefile distinfo
  Added Files:
  pkgsrc/lang/python27/patches: patch-Modules_socketmodule.c

  Log Message:
  Add fix for security vulnerability reported in SA56624.
  Patch taken from Python Mercurial repository.

  To generate a diff of this commit:
  cvs rdiff -u -r1.33 -r1.34 pkgsrc/lang/python27/Makefile
  cvs rdiff -u -r1.29 -r1.30 pkgsrc/lang/python27/distinfo
  cvs rdiff -u -r0 -r1.1 \
      pkgsrc/lang/python27/patches/patch-Modules_socketmodule.c

(spz)

2014-02-10 14:00:20 UTC MAIN commitmail json YAML

Updated devel/p5-Dist-Zilla to 5.013

(wen)

2014-02-10 13:59:06 UTC MAIN commitmail json YAML

Update to 5.013
Update DEPENDS

Upstream changes:
5.013    2014-02-08 17:08:16-05:00 America/New_York
        - META.json is now a UTF-8 file, rather than ASCII
        - document the use of filefinders in [PkgVersion], and remove
          filtering out of .t, .pod files; do skip non-text files, though
        - always load modules in "extra tests" like pod-coverage.t
        - PruneCruft also prunes ./fatlib
        - avoid being tricked by statements in __END__ section when looking for
          variable assignments
        - if "dzil install" fails due to exception, it is now propagated
        - provide a better error when terminal encoding can't be determined

5.012    2014-01-15 09:58:00-05:00 America/New_York
        - when handling a multi-line abstract, fold the lines on whitespace;
          previously, the newlines had been left in, which caused downstream
          warnings

5.011    2014-01-12 16:09:29-05:00 America/New_York
        - ->VERSION is again defined in the tester forms of Builder and Minter
        - remove a small obsolete code path from PkgVersion

5.010    2014-01-11 22:06:04-05:00 America/New_York
        - stop sharing a reference to cached PPI docs, which led to spooky
          action at a distance
        - PkgVersion no longer surrounds the new $VERSION assignment with a
          bare block
        - if there's a blank line after the package statement (and any number
          of comment-only lines), PkgVersion will use that for a $VERSION
          assignment, rather than insert a new line; this can be made mandatory
          with die_on_line_insertion

5.009    2014-01-07 20:21:17-05:00 America/New_York
        - include time offset by default in NextRelease
        - always pass PPI octets, not text

5.008    2013-12-27 21:57:02 America/New_York
        - fix utterly broken `dzil run`

5.007    2013-12-27 20:50:45-05:00 America/New_York
        - add the ability to say "dzil run --no-build" to run a command without
          building inside the dist dir
          (in other words, no `perl Makefile.PL && make`)
        - Archive::Tar::Wrapper added as a recommended prereq
        - fix :ShareFiles (thanks, Christopher J. Madsen and Karen Etheridge)
        - new :AllFiles and :NoFiles filefinders (thanks, Karen Etheridge)
        - most files generated by dzil plugins now self-identify with comments

5.006    2013-11-06 09:21:12 America/New_York
        - add ->is_bytes to files; shortcut for ->encoding eq 'bytes'
          (thanks, David Golden)
        - AutoPrereqs will not try scanning binary files (thanks, David Golden)

5.005    2013-11-02 16:32:04 America/New_York
        - add --keep-build-dir to "dzil test" and "dzil install"

5.004    2013-11-02 09:59:18 America/New_York
        [THIS RELEASE MIGHT BREAK YOUR BUILD]
        - stable release of all the v5 changes below; READ THEM!
        - by default, NextRelease now adds a trial release marker on trial
          releases
        - dzil setup will not echo password during setup

5.003    2013-10-30 08:02:59 America/New_York
        [THIS RELEASE MIGHT BREAK YOUR BUILD]
        - add "dzil --version" support (thanks, Upasana Shukla)
        - fix boneheaded mistake that broke listdeps in 5.002 (thanks, Karen
          Etheridge)

5.002    2013-10-29 10:35:54 America/New_York
        [THIS RELEASE MIGHT BREAK YOUR BUILD]
        - perform encoding steps during listdeps

5.001    2013-10-23 17:40:09 America/New_York
        [THIS RELEASE MIGHT BREAK YOUR BUILD]
        - typo fixes (thanks, David Steinbrunner)

5.000    2013-10-20 08:10:02 America/New_York
        [THIS RELEASE MIGHT BREAK YOUR BUILD]
        - all files now have content, encoded_content, and encoding attributes
        - the Encoding plugin and EncodingProvider role have been added to
          allow you to set the encoding on files; the default is UTF-8
        - config.ini is assumed to be in UTF-8
        - Data::Section sections are assumed to be UTF-8
        - the Term chrome should encode input and output

4.300039  2013-09-20 06:05:10 Asia/Tokyo
        - tweak metafile generator to keep CPAN::Meta validator happy (thanks,
          David Golden)

4.300038  2013-09-08 09:18:34 America/New_York
        - add horrible hack to avoid generating non-UTF-8 META.yml; seriously,
          don't look at the code!  Thanks, David Golden, whose code was simple
          and probably much, much saner, but didn't cover as many cases as rjbs
          wanted to cover.

4.300037  2013-08-28 21:43:36 America/New_York
        - update repo and bugtacker URLs

4.300036  2013-08-25 21:41:21 America/New_York
        - read CPAN::Uploader config with CPAN::Uploader, to work with new
          trial releases supporting encrypted credential (thanks, Mike Doherty)

        - improve tester tests (thanks, Dave O'Neill!)

        - use Class::Load instead of Class::MOP

        - better error messages when a bundle can't be loaded by @Filter

        - make dynamic_config distmeta sticky; once one plugin sets it, it
          stays stuck

        - add a die_on_existing_version option to PkgVersion

        - switch (for now?) "dzil install" to use cpanm

        - PkgVersion won't rewrite file contents if nothing was changed
          (thanks, Mike Doherty!)

(wen)

2014-02-10 13:36:34 UTC MAIN commitmail json YAML

Add p5-Term-Encoding

(wen)

2014-02-10 13:34:42 UTC MAIN commitmail json YAML

Added devel/p5-Term-Encoding version 0.02

(wen)

2014-02-10 13:33:17 UTC MAIN commitmail json YAML

Import Term-Encoding-0.02 as devel/p5-Term-Encoding.
(Based on pkgsrc-wip)

Term::Encoding is a simple module to detect an encoding the current
terminal expects, in various ways.

(wen)

2014-02-10 12:21:44 UTC MAIN commitmail json YAML

support oss4 compatible boomer on OpenSolaris/Illumos platforms

(richard)

2014-02-10 12:01:20 UTC MAIN commitmail json YAML

2014-02-10 11:46:58 UTC MAIN commitmail json YAML

Updated net/miniupnpd to 1.8.20140203

(adam)

2014-02-10 11:46:55 UTC MAIN commitmail json YAML

2014-02-10 11:45:52 UTC MAIN commitmail json YAML

Changes 1.8.20140203:
PCP : Add support for ANNOUNCE requests

(adam)

2014-02-10 11:43:09 UTC MAIN commitmail json YAML

2014-02-10 11:14:06 UTC MAIN commitmail json YAML

Updated print/apsfilter to 7.2.8

(obache)

2014-02-10 11:13:03 UTC MAIN commitmail json YAML

Update apsfilter to 7.2.8, with some dependency clean up and packaging easier.

New in Apsfilter 7.2.8 (BUGFIX Release)
=======================================

3. New Features

- make it possible to use the lineprinter scheduler as jukebox
- network jukebox (untested)
  should also work with a remote printer queue
  So your remote server has a soundcard and your print clients
  send audio files to the remote printer to play audio files
  one after the other.
  Hint:
  For this purposes a new parameter from SETUP needed to be
  saved into the apsfilterrc file (INTERFACES).
  In every sound play routine in apsfilter
  we test if this is a network printer.
  Then we need to send the data stream (i.e. mp3) unprocessed.
  On the print server with the soundcard the tanslation needs to
  take place.

New in Apsfilter 7.2.7 (BUGFIX Release)
=======================================

7. BUG FIXES

- make spaces possible in samba printer name
  from Roman Kurakin <rik at FreeBSD dot org>

(obache)

2014-02-10 10:43:02 UTC MAIN commitmail json YAML

Fix usage of build_package

(ryoon)

2014-02-10 09:48:06 UTC pkgsrc-2013Q4 commitmail json YAML

Update again to force another build now that the changes to the
"squid3" package were really committed.

(tron)

2014-02-10 09:47:25 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup ticket #4318 - requested by sborrill
www/squid3: bug fix update

Revisions pulled up:
- www/squid3/Makefile                                          1.25-1.27
- www/squid3/PLIST                                              1.8
- www/squid3/distinfo                                          1.18-1.19
- www/squid3/patches/patch-compat_os_hpux.h                    deleted
- www/squid3/patches/patch-include_SquidNew.h                  deleted
- www/squid3/patches/patch-src_base_Vector.h                    deleted

---
  Module Name: pkgsrc
  Committed By: adam
  Date: Tue Dec 31 11:54:32 UTC 2013

  Modified Files:
  pkgsrc/www/squid3: Makefile distinfo

  Log Message:
  Changes 3.4.2:
  * Added missing header in client_side_reply.cc for clang
  * Bug 3498: FTP PUT assertion Server.cc:246: 'r->body_pipe != NULL'
  * Bug 3985: 60s limit introduced by balance_on_multiple_ip breaks bad IP recovery
  * Fix \-unescaping in quoted strings from helpers
  * WCCPv2: fix assertion 'Cannot convert non-IPv4 to IPv4' on FreeBSD
  * Fix missing cast in rev.13162
  * Bug 3980: FATAL ERROR due to max_user_ip -s option
  * Fix linker errors "relocation R_X86_64_32 against .rodata"
  * Regression in URL helper API
  * Bug 3806: Caching responses with Vary header
  * Set sslcrtvalidator_children concurrency option default value to 1
  * Release notes: update HTML version

---
  Module Name: pkgsrc
  Committed By: adam
  Date: Tue Feb  4 14:23:01 UTC 2014

  Modified Files:
  pkgsrc/www/squid3: Makefile distinfo
  Removed Files:
  pkgsrc/www/squid3/patches: patch-compat_os_hpux.h
      patch-include_SquidNew.h patch-src_base_Vector.h

  Log Message:
  Changes 3.4.3:
  * Update CONTRIBUTORS
  * Fix peerSelectDnsResults() IP address cycling
  * Comm job callbacks need job's cbdata pointer, not a job pointer.
  * Bug 3975: atomic detection cross-compilation failure
  * Bug 3954: compile failure in CpuAffinity.cc
  * Bug 3971: "cannot aggregate mgr:client_list: cmd->profile != NULL" in SMP mode
  * Initialize asyncLoopDepth_ in constructor
  * Fix external_acl_type async loop failures
  * Bug 4008: HttpHeader warnOnError should be an int not a bool
  * Fix memory leak in peer cache Digest exchange
  * Bug 3927: tests/testRock fatal.cc required
  * Bug 4002: clang 3.4 unable to compile
  * Document and enforce invariant on Format::Token.divisor
  * Bug 4002: clang 3.4 unable to compile
  * Bug 3996: Malformed DNS reply leads to crash
  * Disable error page translation by default in builds
  * Bug 3995: compile error on CentOS 5 with GCC 4.1.2
  * Centrally destroy all ACLs to avoid destruction segfaults

---
  Module Name: pkgsrc
  Committed By: obache
  Date: Fri Feb  7 05:28:19 UTC 2014

  Modified Files:
  pkgsrc/www/squid3: Makefile PLIST

  Log Message:
  Remove tons of unwanted dir in INSTALLATION_DIRS, and remove last backslash,
  it will concat to next line "SPECIAL_PERMS", then it result in creating unwanted
  directory and let "pinger" to install into wrong directry, and permission is not
  set correctly.

  Bump PKGREVISION.

(tron)

2014-02-10 07:46:44 UTC MAIN commitmail json YAML

Update the example ssh-key-signed input file, so that there's no embedded
RCS Id in it. Re-sign (both embedded and detached) signatures on this data.

No functional change, so no version bumps.

(agc)

2014-02-10 01:43:25 UTC MAIN commitmail json YAML

Just a bit too late, add i586 Linux JDK distribution hashes too.

(dsainty)

2014-02-10 01:37:13 UTC MAIN commitmail json YAML

Just a bit too late, add i586 Linux JRE distribution hashes too.

(dsainty)

2014-02-10 00:20:41 UTC MAIN commitmail json YAML

Updated devel/py-py2app to 0.8nb1

(rodent)

2014-02-10 00:20:27 UTC MAIN commitmail json YAML

Move bin/* to bin/*${PYVERSSUFFIX} in post-install, to allow parallel
installation of this package for different python versions. Bump
PKGREVISION.

(rodent)

2014-02-10 00:17:31 UTC MAIN commitmail json YAML

Updated devel/py-macholib to 1.6nb1

(rodent)

2014-02-10 00:17:14 UTC MAIN commitmail json YAML

Updated devel/py-modulegraph to 0.11nb1

(rodent)

2014-02-10 00:16:58 UTC MAIN commitmail json YAML

Move bin/* to bin/*${PYVERSSUFFIX} in post-install, to allow parallel
installation of this package for different python versions. Bump
PKGREVISION.

(rodent)

2014-02-10 00:12:10 UTC MAIN commitmail json YAML

Use PYVERSUFFIX in PLIST to allow parallel installation of this package for
different python versions. Bump PKGREVISION.

(rodent)

2014-02-09 23:56:59 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup tickets #4317 and #4318.

(tron)

2014-02-09 23:19:22 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup ticket #4317 - requested by drochner
textproc/libyaml: security update

Revisions pulled up:
- textproc/libyaml/Makefile                                    1.6
- textproc/libyaml/distinfo                                    1.4

---
  Module Name:    pkgsrc
  Committed By:  drochner
  Date:          Wed Feb  5 11:14:07 UTC 2014

  Modified Files:
          pkgsrc/textproc/libyaml: Makefile distinfo

  Log Message:
  update to 0.1.5
  changes:
  -fix buffer overflow (CVE-2013-6393)
  -more hardening and minor fixes

  pkgsrc change: added "test" target

(tron)

2014-02-09 18:08:44 UTC MAIN commitmail json YAML

fix freeciv-client on SunOS by using c99

(wiedi)

2014-02-09 17:23:54 UTC MAIN commitmail json YAML

2014-02-09 17:19:14 UTC MAIN commitmail json YAML

2014-02-09 17:12:33 UTC MAIN commitmail json YAML

2014-02-09 17:09:03 UTC MAIN commitmail json YAML

2014-02-09 17:03:38 UTC MAIN commitmail json YAML

+ alsa-lib-1.0.27.2, gupnp-igd-0.2.3, libchamplain08-0.12.7,
  nginx-1.5.10, py-doctor-0.5, py-setuptools-2.2, py-sqlparse-0.1.11,
  serf-1.3.4, wine-devel-1.7.12, x264-devel-20140208.

(wiz)

2014-02-09 16:54:12 UTC MAIN commitmail json YAML

2014-02-09 16:51:06 UTC MAIN commitmail json YAML

Remove unnecessary comment.

(wiz)

2014-02-09 16:50:45 UTC MAIN commitmail json YAML

2014-02-09 16:48:42 UTC MAIN commitmail json YAML

2014-02-09 15:32:20 UTC MAIN commitmail json YAML

DEPENDS+=devel/py2app if OPSYS == Darwin.

(rodent)

2014-02-09 15:28:14 UTC MAIN commitmail json YAML

+py-{macholib,modulegraph,py2app}

(rodent)

2014-02-09 15:25:56 UTC MAIN commitmail json YAML

Added devel/py-py2app version 0.8

(rodent)

2014-02-09 15:25:46 UTC MAIN commitmail json YAML

Import py27-py2app-0.8 as devel/py-py2app.

py2app is a Python setuptools command which will allow you to make standalone
Mac OS X application bundles and plugins from Python scripts.

py2app is similar in purpose and design to py2exe for Windows.

NOTE: py2app must be used on OSX to build applications, it cannot create Mac
applications on other platforms.

(rodent)

2014-02-09 15:17:53 UTC MAIN commitmail json YAML

Added devel/py-macholib version 1.6

(rodent)

2014-02-09 15:17:42 UTC MAIN commitmail json YAML

Import py27-macholib-1.6 as devel/py-macholib.

macholib can be used to analyze and edit Mach-O headers, the executable format
used by Mac OS X.

It's typically used as a dependency analysis tool, and also to rewrite dylib
references in Mach-O headers to be @executable_path relative.

Though this tool targets a platform specific file format, it is pure python code
that is platform and endian independent.

(rodent)

2014-02-09 15:11:00 UTC MAIN commitmail json YAML

Added devel/py-modulegraph version 0.11

(rodent)

2014-02-09 15:09:46 UTC MAIN commitmail json YAML

Import py27-modulegraph-0.11 as devel/py-modulegraph.

modulegraph determines a dependency graph between Python modules primarily by
bytecode analysis for import statements.

modulegraph uses similar methods to modulefinder from the standard library, but
uses a more flexible internal representation, has more extensive knowledge of
special cases, and is extensible.

(rodent)

2014-02-09 15:02:34 UTC MAIN commitmail json YAML

+py-altgraph; Packaged originally in pkgsrc-wip by:
jihbed@users.sourceforge.net

(rodent)

2014-02-09 15:01:31 UTC MAIN commitmail json YAML

Added graphics/py-altgraph version 0.11

(rodent)

2014-02-09 15:01:18 UTC MAIN commitmail json YAML

Import py27-altgraph-0.11 as graphics/py-altgraph.

altgraph is a fork of graphlib: a graph (network) package for constructing
graphs, BFS and DFS traversals, topological sort, shortest paths, etc. with
graphviz output.

(rodent)

2014-02-09 14:42:34 UTC MAIN commitmail json YAML

Updated devel/p5-Data-Section to 0.200005

(wen)

2014-02-09 14:41:05 UTC MAIN commitmail json YAML

Update to 0.200005

Upstream changes:
0.200005  2013-12-11 08:03:08 America/New_York
        - open DATA handles both :raw and :bytes to avoid content munging on
          Win32 (thanks, Kenichi Ishigaki!)
        - This is not yet a perfect solution for Win32.

0.200004  2013-12-01 21:31:02 America/New_York
        - avoid confusion between \n, \x0d\x0a, and Win32 (thanks, Kenichi
          Ishigaki!)

0.200003  2013-11-02 07:57:52 America/New_York
          [THIS MIGHT BREAK STUFF]
        - stable release of 0.200002, no functional changes

0.200002  2013-10-19 22:11:32 America/New_York (TRIAL RELEASE)
          [THIS MIGHT BREAK STUFF]
        - add an "encoding" parameter to set encoding of data section contents;
          this defaults to UTF-8 (thanks, David Golden!)

0.101622  2013-06-19 21:48:02 America/New_York
          add a link to an Advent article about Data-Section

          update bugtracker, repo, etc.

(wen)

2014-02-09 13:47:10 UTC MAIN commitmail json YAML

adopt the socket.recvfrom_into() security fix from Python-2.7
bump PKGREV

(drochner)

2014-02-09 12:23:35 UTC MAIN commitmail json YAML

COMMENT should not include package name, PR pkg/48197

(obache)

2014-02-09 11:57:46 UTC MAIN commitmail json YAML

fixes MASTER_SITES and HOMEPAGE.
noticed by wiz@.

(obache)

2014-02-09 09:26:33 UTC MAIN commitmail json YAML

Add frink-license, used by devel/frink.

(obache)

2014-02-09 09:25:51 UTC MAIN commitmail json YAML

2014-02-09 09:25:13 UTC MAIN commitmail json YAML

Added devel/frink version 2.2.2p4

(obache)

2014-02-09 09:24:22 UTC MAIN commitmail json YAML

Import frink-2.2.2p4 as devel/frink.
Based on packaged in pkgsrc-wip and reqested via PR pkg/48197 by Edgar Fuss.

Frink is a tcl formatting and static check program. It can prettify your
program, minimise, obfuscate or just sanity check it. It can also do some
rewriting.

(obache)

2014-02-09 09:02:50 UTC MAIN commitmail json YAML

Add fix for security vulnerability reported in SA56624.
Patch taken from Python Mercurial repository.

(tron)

2014-02-09 08:21:59 UTC MAIN commitmail json YAML

Updated graphics/pngcrush to 1.7.71; www/py-django to 1.6.2; www/py-django-south to 0.8.3; www/py-django-reversion to 1.8.0

(adam)

2014-02-09 08:20:00 UTC MAIN commitmail json YAML

Changes 1.8.0:
- Django 1.6 compatibility
- Using bulk_create to speed up revision creation.
- Including docs in source distribution
- Spanish translation
- Fixing edge-case bugs in revision middleware

(adam)

2014-02-09 08:16:34 UTC MAIN commitmail json YAML

Changes 0.8.3:
* A couple of issues with Django 1.6 have been fixed (including bad error handling and a loaddata incompatability)
* Migrations now import datetime from a special South module which provides the correct tz-aware or tz-naive version.
* A couple of issues fixed, including double-indexing errors, and correct persistence of non-unique indexes across ALTERs.
* The new localflavor fields are automatically accepted by the introspector.

(adam)