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


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




switch to index mode

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

2024-05-12 12:36:40 UTC Now

2012-05-05 21:53:57 UTC MAIN commitmail json YAML

Replace python interpreter in a few files. Bump PKGREVISION.

(wiz)

2012-05-05 21:47:22 UTC MAIN commitmail json YAML

Doesn't work with python25. (uses byte-string literals, needs >= 26)

(dholland)

2012-05-05 21:33:55 UTC MAIN commitmail json YAML

Update install rule patch to stop on error.

(dholland)

2012-05-05 19:22:44 UTC MAIN commitmail json YAML

Updated graphics/darktable to 1.0.3

(jakllsch)

2012-05-05 19:20:29 UTC MAIN commitmail json YAML

2012-05-05 19:18:33 UTC MAIN commitmail json YAML

update darktable to 1.0.3

Changes since 1.0:

Usability improvements:
- Filmstrip centers on selected image

Behavioral changes:
- Improved (hierarchical) tag export for flickr and friends

Camera support:
- Improved Sony NEX-7 support
- Initial camera support for Nikon D800 and Sony SLT-A57 (color rendition
  of these cameras might still be suboptimal due to the lack of a proper
  color matrix, and is subject to future change.)
- White balance updates for Canon EOS Rebel T3, Olympus E-5 & Nikon D800

Platform support:
- Fixes for FreeBSD

Various:
- New subtle denoise preset for equalizer
- Various build fixes
- Numerous other fixes

(jakllsch)

2012-05-05 16:03:23 UTC MAIN commitmail json YAML

Add missing krb5.bl3.mk; force use of internal libroken to avoid PLIST
divergence.

XXX: This package still cannot be used with pkgsrc heimdal because
XXX: it conflicts on bin/kpasswd and bin/pagsh. This should be fixed,
XXX: as replacing native kerberos's kpasswd binary on the PATH isn't
XXX: really good either.

(dholland)

2012-05-05 16:00:14 UTC MAIN commitmail json YAML

2012-05-05 15:20:31 UTC MAIN commitmail json YAML

Updated textproc/py-cssutils to 0.9.9

(gls)

2012-05-05 15:20:07 UTC MAIN commitmail json YAML

Update textproc/py-cssutils to 0.9.9.

Pkgsrc changes:
---------------

Deal with /usr/bin/env python

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

0.9.9 final 120131
    - FEATURE: Implemented API for ``MarginRule`` objects inside ``CSSPageRule``, see http://www.w3.org/TR/css3-page/. You can also use e.g. ``CSSPageRule['@top-left']`` to retrieve the MarginRule it it is set etc. All dict like methods should be there. If a margin is set twice or more all properties are merged into a single margin rule. Double set properties are all kept though (see below).

    - FEATURE: ``parseStyle()`` has optional parameter ``validate=False`` now too to disable validation (default is always ``True``).

    - FEATURE: ``CSSStyleDeclaration.setProperty`` has new option ``replace=True``. if True (DEFAULT) the given property will replace a present property. If False a new property will be added always. The difference to `normalize` is that two or more properties with the same name may be set, useful for e.g. stuff like::

            background: red;
            background: rgba(255, 0, 0, 0.5);

      which defines the same property but only capable UAs use the last property value, older ones use the first value.

    + CHANGE: @rules attribute ``atkeyword`` value is now normalized. The actual keyword (example ``@IMPorT``) is kept and is optionally reserialized but in the example ``atkeyword == '@import'``

    - BUGFIX: 'auto' is now an invalid CSSPageRule pagename.
    - BUGFIX: Fixed issue for GoogleAppEngine (GAE) which somehow handles codecs differently. ``parseUrl`` should work now.

0.9.8
-----
0.9.8 final 111210
    - FEATURE: Feature Request (#4) to be able to disable validation of a stylesheet has been implemented. Add Parameter ``validate=False`` for parsing.

    + BUGFIX: Fixed #5 Unicode escaping inside strings. Thanks to Simon Sapin
    + BUGFIX: The integer is optional in counter-reset and counter-increment, and not only on the first counter. Thanks to Simon Sapin
    + BUGFIX: Fix for unicode replacements by Denis Bilenko, thanks!  https://bitbucket.org/cthedot/cssutils/pull-request/1/fix-a-bug-in-regex-which-accidentally

    - IMPROVEMENT: ``parseStyle`` moved to CSSParser, thanks to Simon Sapin

0.9.8a3 110727
    + BUGFIX: Fixed validation of ``size`` property (thanks to Simon Sapin)
+ BUGFIX: Fixed Issue #55 (thanks to Simon Sapin): `outline-color` property was missing from validation.
    + BUGFIX: Fixed resolution of encoding detection of a stylesheet which did not use @charset in certain circumstances (mainly when imported sheets use different encoding than importing one which should be quite rare actually).

    - FEATURE: Added ``URIValue.absoluteUri`` (thanks to Simon Sapin)
    - FEATURE: Issue #53 feature request: Added new Preference option ``cssutils.ser.prefs.indentClosingBrace``. Defines if closing brace of block is indented to match indentation of the block (default) oder match indentation of selector.
    - FEATURE: Feature request: Added new Preference option ``cssutils.ser.prefs.omitLeadingZero``. Defines if values between -1 and 1 should omit the 0, like ``.5px``. Minified settings do this, else 0 is kept by default.

    + CHANGE (minor): Some error messages have slightly changed due to a simpler compatibility to Python 3. Problem are any ``u'...'`` texts inside error messages which now are simplified, some without and quotes. Changed are e.g. error messages by ``Property``.

    - **IMPROVEMENT**: Python 3 support. At least the unittests run in Python 2.5, 2.6, 2.7, 3.2 and Jython 2.5.1 now. Both encutils (with support by Fredrik Hedman, thanks!) and cssutils (thanks to Jaraco) and the CSS codec (thanks to Walter D�rwald) seem to work with Python 3 (tested on Python 3.2.1 Win64). Tests use Mock instead of MiniMock now as former is available for Python 2.x and 3.x.

    - **IMPROVEMENT**: Parsing of longer (and probably invalid) ``font`` or ``font-family`` values was *extremely* slow due to a very complex regex. This has been changed and parsing of specific stylesheets using these values should be much faster now. (``macros[Profiles.CSS_LEVEL_2]['font-family']`` is gone so if you used this in your own validation modules you need to check the source in `profiles.py`.)

    - IMPROVEMENT: Fixed Issue #54 (thanks to Simon Sapin): Short hand like `#f80` color value object have correct red, green and blue property values now. Also ``hsl()`` and ``hsla()`` colors report (almost) correct values (due to rounding problems).

    - **Source control has moved to bitbucket https://bitbucket.org/cthedot/cssutils**. Older Issues are currently still at Google Code, newer at Bitbucket. Please do not use Google Code for new issue reports anymore!

0.9.8a2 110611
    - BUGFIX: Fixed Issue #59 which showed a rather strange problem with longer space separated lists of font-family values being so slow to actually stop parsing.

    - BUGFIX/IMPROVEMENT: Fixed Issue #48. ``CSSParser.parseUrl()`` uses the defined fetcher of this parser *for the initial stylesheet* at url too and not just the imported sheets *from* this sheet.

    - BUGFIX: Fixed Issue #50 which prevented cssutils parsing the acid2.css file correctly. Problem were selectors starting directly with ``[class]`` (an attribute selector).

    + **API CHANGE (major)**
        (Known) named colors are parsed as ColorValue objects now. These are the 16 simple colors (black, white, etc) and `transparent` but not all Extended color keywords yet. Also changed ``ColorValue.type`` to ``Value.COLOR_VALUE``. ColorValue has additional properties ``red, green, blue, alpha`` and ``colorType`` which is one of IDENT, HASH or FUNCTION for now.

    + API CHANGE (minor)
        Removed already DEPRECATED ``cssutils.parse`` and ``CSSParser.parse``. Use the more specific functions/methods ``parseFile parseString parseUrl`` instead.

        Removed already DEPRECATED  ``cssutils.log.setlog`` and ``.setloglevel``. Use ``.setLog`` and ``.setLevel`` instead.

        Removed already DEPRECATED  ``cssutils.ser.keepUnkownAtRules`` (note the typo). Use ``.keepUnknownAtRules`` instead.

    - IMPROVEMENT: Added validation profiles for some properties from `CSS Backgrounds and Borders Module Level 3 <http://www.w3.org/TR/css3-background/>`__, `CSS3 Basic User Interface Module <http://www.w3.org/TR/css3-ui/#resize>`__, `CSS Text Level 3 <http://www.w3.org/TR/css3-text/>`__
        mainly  `cursor`, `outline`, `resize`, `box-shadow`, `text-shadow`

0.9.8a1 101212
    + **API CHANGE (major)**
        replace CSSValue with PropertyValue, Value and other classes.

        NEW CLASSES:
            :class:`cssutils.css.PropertyValue`
                replaces CSSValue and CSSValueList

                - is iterable (iterates over all single Value objects which in soruce CSS might be separated by "," "/" or " "
                - a comma separated list of IDENT values is no longer handled as a single String (e.g. ``Arial, sans-serif``)

            :class:`cssutils.css.Value`
                replaces CSSPrimitiveValue with separate ``value`` and ``type`` info (value is typed, so e.g. string for e.g. STRING, IDENT or URI values, int or float) and is base class for more specific values like:

            :class:`cssutils.css.URIValue`
                replaces CSSPrimitiveValue, additional attribute ``uri``

            :class:`cssutils.css.DimensionValue`
                replaces CSSPrimitiveValue, additional attribute ``dimension``

            :class:`cssutils.css.ColorValue`
                replaces CSSPrimitiveValue, additional attribute ``red``, ``green``, ``blue`` and ``alpha``

                **TODO: Not yet complete, only rgb, rgba, hsl, hsla and has values use this object and color and alpha information no done yet!**

            :class:`cssutils.css.CSSFunction`
                replaces CSSPrimitiveValue function, not complete yet

            also renamed ``ExpressionValue`` to :class:`cssutils.css.MSValue` with new API

    - IMPROVEMENT/CHANGE: Validation of color values is tighter now. Values like ``hsl(1, 2, 3)`` do not validate as it must be ``hsl(1, 2%, 3%)``. This mostly effects HSL/A and RGB/A notation.

    - **IMPROVEMENT**: New Value parsing and API accelerate parsing of style declarations which take about 20-30% less time now. Of course this depends on the complexity of your styles.

    + BUGFIX: fixes issue #41, #42, #45, #46
        PropertyValue.value returns value without any comments now, else use PropertyValue.cssText

    - FEATURE: ``cssutils.replaceUrls()`` accepts as first argument a `cssutils.css.CSSStyleSheet` but now also a
        :class:`cssutils.css.CSSStyleDeclaration` object, so may be used like the following which is useful when you work with HTML style attributes::

                >>> style = cssutils.parseStyle("background-image: url(1.png), url('2.png')")
                >>> cssutils.replaceUrls(style, lambda url: 'prefix/'+url)
                >>> print style.cssText
                background-image: url(prefix/1.png), url(prefix/2.png)

        (I omitted the validation error message as more than one background-image is not yet defined in the cssutils validator but does parse through without problems)

    + CHANGE: explicit `+` of any dimension, percentage of number value is kept now instead of being stripped as if put explicitly in the author SHOULD have meant something ;)

(gls)

2012-05-05 15:00:49 UTC MAIN commitmail json YAML

2012-05-05 14:15:11 UTC MAIN commitmail json YAML

Note update of www/contao211-translations package to 201205050.

(taca)

2012-05-05 14:14:35 UTC MAIN commitmail json YAML

Update contao211-translations to 201205050.

Update Bulgarian, Persian, Japanese, Swedish and Ukrainian language files.
These language support Contao 2.11.3 except Bulgarian.

(taca)

2012-05-05 13:53:58 UTC MAIN commitmail json YAML

2012-05-05 13:44:58 UTC MAIN commitmail json YAML

2012-05-05 13:41:13 UTC MAIN commitmail json YAML

Updated devel/p5-Config-IniFiles to 2.71

(gls)

2012-05-05 13:40:48 UTC MAIN commitmail json YAML

Update devel/p5-Config-IniFiles to 2.71
Fixes CVE-2012-2451.

pkgsrc changes:
---------------

- p5-List-MoreUtils is required

Upstream Changes:
-----------------

Version 2.71:  ( Wed May  2 10:59:04 IDT 2012 )
------------------------------------------------

* SECURITY BUG FIX: Config::IniFiles used to write to a temporary filename
with a predictable name ("${filename}-new") which opens the door for potential
exploits.

* Now requiring List::MoreUtils (for any() and other functions), File::Temp
and File::Basename .

* Add "use warnings;" to lib/Config/IniFiles.pm .

* More refactoring.

Version 2.70:  ( Fri Apr  6 12:47:25 IDT 2012 )
------------------------------------------------

* Fix the test dependency (in the new t/31comments_with_spaces.t test)
on IO::stringy (now writing it to a file).
    - This caused some CPAN Testers failures such as:
        - http://www.cpantesters.org/cpan/report/c16b9978-7f40-11e1-9d6f-f6dbfa7543f5

* Modernized some of the open() calls in the test files.
    - three args open, lexcial file handles, etc.

Version 2.69:  ( Thu Apr  5 12:05:46 IDT 2012 )
------------------------------------------------

* Fix https://sourceforge.net/tracker/?func=detail&aid=3388382&group_id=6926&atid=106926
    - "Trailing comments with whitespace are not recognised"
    - Thanks to briconaut for the report and to rbowen for the patch and test.

* Add the method ->OutputConfigToFileHandle which is a more explicit and
safer version of ->OutputConfig.
    - ->OutputConfig now uses it.
    - all existing tests pass, and a new test was added to
    t/15store-and-retrieve-here-doc-terminator.t .

* Started refactoring the code.
    - Expand tabs to spaces.
    - many other small changes.

(gls)

2012-05-05 12:44:44 UTC MAIN commitmail json YAML

Note update of www/contao211 package to 2.11.3.

(taca)

2012-05-05 12:44:08 UTC MAIN commitmail json YAML

Update contao211 to 2.11.3 (Contao 2.11.3).

pkgsrc change: install .htaccess as configuration file with .htaccess.default
as an example.

* Fix permission checking problem of Task center.
* Provide improved .htaccess.default.
* Several bug fixes and improvements.

(taca)

2012-05-05 00:55:47 UTC MAIN commitmail json YAML

2012-05-05 00:03:36 UTC MAIN commitmail json YAML

Added devel/p5-Test-Command-Simple version 0.03

(pettai)

2012-05-05 00:03:05 UTC MAIN commitmail json YAML

Added security/validns version 0.4

(pettai)

2012-05-05 00:01:25 UTC MAIN commitmail json YAML

2012-05-04 23:57:46 UTC MAIN commitmail json YAML

Validns is a standalone command line RFC 1034/1035 zone file validation
tool that, in addition to basic syntactic and semantic zone checks,
includes DNSSEC signature verification and NSEC/NSEC3 chain validation,
as well a number of optional policy checks on the zone.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(pettai)

2012-05-04 23:41:13 UTC MAIN commitmail json YAML

Added p5-Test-Command-Simple

(pettai)

2012-05-04 23:34:24 UTC MAIN commitmail json YAML

This test module is intended to simplify testing of external commands.
It does so by running the command under IPC::Open3, closing the stdin
immediately, and reading everything from the command's stdout and stderr.
It then makes the output available to be tested.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(pettai)

2012-05-04 20:13:48 UTC MAIN commitmail json YAML

2012-05-04 16:51:19 UTC MAIN commitmail json YAML

Mark as broken, it just hangs around.

(joerg)

2012-05-04 16:40:01 UTC MAIN commitmail json YAML

2012-05-04 16:38:44 UTC MAIN commitmail json YAML

2012-05-04 16:37:19 UTC MAIN commitmail json YAML

2012-05-04 16:36:11 UTC MAIN commitmail json YAML

2012-05-04 16:34:48 UTC MAIN commitmail json YAML

2012-05-04 16:31:59 UTC MAIN commitmail json YAML

2012-05-04 16:30:28 UTC MAIN commitmail json YAML

Match function return type with actual usage.

(joerg)

2012-05-04 16:29:14 UTC MAIN commitmail json YAML

Don't use the integrated assembler with LLVM for now, too much ambigious
assembler usage on x86.

(joerg)

2012-05-04 16:27:59 UTC MAIN commitmail json YAML

2012-05-04 16:25:59 UTC MAIN commitmail json YAML

Restore status quo for clang breakge by disabling another bunch of
warnings.

(joerg)

2012-05-04 16:23:20 UTC MAIN commitmail json YAML

Make sure the TLS variables are emitted by the compiler, clang is smart
enough to recognize the lack of references to drop them otherwise.

(joerg)

2012-05-04 16:19:37 UTC MAIN commitmail json YAML

2012-05-04 16:17:39 UTC MAIN commitmail json YAML

2012-05-04 16:16:42 UTC MAIN commitmail json YAML

2012-05-04 16:15:33 UTC MAIN commitmail json YAML

2012-05-04 16:12:30 UTC MAIN commitmail json YAML

Testing for a working C++ compiler is more likely to succeed, if the
test program is valid C++.

(joerg)

2012-05-04 16:11:03 UTC MAIN commitmail json YAML

2012-05-04 16:08:50 UTC MAIN commitmail json YAML

2012-05-04 16:08:09 UTC MAIN commitmail json YAML

2012-05-04 16:07:51 UTC MAIN commitmail json YAML

Correct default value in description of PHP_VERSION_DEFAULT.

(taca)

2012-05-04 16:07:02 UTC MAIN commitmail json YAML

2012-05-04 16:06:14 UTC MAIN commitmail json YAML

2012-05-04 16:03:13 UTC MAIN commitmail json YAML

2012-05-04 16:01:53 UTC MAIN commitmail json YAML

2012-05-04 16:01:04 UTC MAIN commitmail json YAML

2012-05-04 16:00:01 UTC MAIN commitmail json YAML

2012-05-04 13:57:53 UTC MAIN commitmail json YAML

2012-05-04 13:27:23 UTC MAIN commitmail json YAML

2012-05-04 13:15:18 UTC MAIN commitmail json YAML

2012-05-04 13:07:23 UTC MAIN commitmail json YAML

Updated emulators/simh to 3.9.0

(hans)

2012-05-04 11:53:27 UTC MAIN commitmail json YAML

Added lang/clojure version 1.4.0

(ryoon)

2012-05-04 11:52:17 UTC MAIN commitmail json YAML

2012-05-04 11:51:30 UTC MAIN commitmail json YAML

Import clojure-1.4.0 as lang/clojure.

Clojure is a dynamic programming language that targets the Java
Virtual Machine (and the CLR, and JavaScript). It is designed to
be a general-purpose language, combining the approachability and
interactive development of a scripting language with an efficient
and robust infrastructure for multithreaded programming. Clojure
is a compiled language - it compiles directly to JVM bytecode, yet
remains completely dynamic. Every feature supported by Clojure is
supported at runtime. Clojure provides easy access to the Java
frameworks, with optional type hints and type inference, to ensure
that calls to Java can avoid reflection.

Clojure is a dialect of Lisp, and shares with Lisp the code-as-data
philosophy and a powerful macro system. Clojure is predominantly
a functional programming language, and features a rich set of
immutable, persistent data structures. When mutable state is needed,
Clojure offers a software transactional memory system and reactive
Agent system that ensure clean, correct, multithreaded designs.

I hope you find Clojure's combination of facilities elegant,
powerful, practical and fun to use.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(ryoon)

2012-05-04 11:46:02 UTC MAIN commitmail json YAML

It is possible to check shlibs on OpenBSD now.

(obache)

2012-05-04 11:38:20 UTC MAIN commitmail json YAML

2012-05-04 11:23:34 UTC MAIN commitmail json YAML

Updated textproc/xmlrpc-c to 1.16.41

(adam)

2012-05-04 11:18:22 UTC MAIN commitmail json YAML

Changes 1.16.41:
* xmlrpc, xmlrpc_pstream client programs: fix bug in display of unprintable
  ASCII as \xHH: shows \xff where it should be something else.

(adam)

2012-05-04 11:00:43 UTC MAIN commitmail json YAML

Reset JAVA_HOME and CLASSPATH that defined by user.
Fix build when JAVA_HOME and/or CLASSPATH are defined by user.

(ryoon)

2012-05-04 10:33:45 UTC MAIN commitmail json YAML

Add salt and seed target file.

(ryoon)

2012-05-04 10:22:27 UTC MAIN commitmail json YAML

Updated devel/glib2 to 2.32.2nb1

(obache)

2012-05-04 10:22:08 UTC MAIN commitmail json YAML

* Update PKGCONFIG_OVERRIDE list to reflect reality.
* Restore pthread flag settings in configure script.
  It still in the last hunk of patch-ak (for configure.ac),
  but lost at updated to 2.32.1.
* Fixes missing pthread linkage of libglib-2.0 on OpenBSD.

Bump PKGREVISION.

(obache)

2012-05-04 10:01:39 UTC MAIN commitmail json YAML

Add PHP_PKG_PREFIX to PKGNAME.

(ryoon)

2012-05-04 09:45:29 UTC MAIN commitmail json YAML

Add sencha-sns

(ryoon)

2012-05-04 09:44:51 UTC MAIN commitmail json YAML

Added www/sencha-sns version 1.0.3

(ryoon)

2012-05-04 09:42:06 UTC MAIN commitmail json YAML

Import sencha-sns-1.0.3 as www/sencha-sns.

Sencha SNS is Social Networking Service (SNS) software for intranet
and the Internet SNS.  This software has Japanese UI only.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(ryoon)

2012-05-04 09:38:23 UTC MAIN commitmail json YAML

2012-05-04 08:52:21 UTC pkgsrc-2012Q1 commitmail json YAML

2012-05-04 08:43:29 UTC MAIN commitmail json YAML

Add a http site to MASTER_SITES to avoid dependency on curl.

(obache)

2012-05-04 08:39:30 UTC pkgsrc-2012Q1 commitmail json YAML

Pullup ticket #3769 - requested by taca
lang/php53: security update

Revisions pulled up:
- lang/php53/Makefile                                          1.25
- lang/php53/Makefile.common                                    1.11-1.12
- lang/php53/Makefile.php                                      1.14-1.15
- lang/php53/distinfo                                          1.37-1.38
- lang/php53/patches/patch-main_SAPI.c                          deleted

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: taca
  Date: Thu Apr 26 14:26:33 UTC 2012

  Modified Files:
  pkgsrc/lang/php53: Makefile Makefile.common Makefile.php distinfo
  Removed Files:
  pkgsrc/lang/php53/patches: patch-main_SAPI.c

  Log Message:
  Update php53 package to 5.3.11.

  For full changes, please refer <http://www.php.net/ChangeLog-5.php#5.3.11>.

  Security Enhancements:

  * Fixed bug #54374 (Insufficient validating of upload name leading to
    corrupted $_FILES indices). (CVE-2012-1172).
  * Add open_basedir checks to readline_write_history and readline_read_history.
  * Fixed bug #61043 (Regression in magic_quotes_gpc fix for CVE-2012-0831).

  Key enhancements in these releases include:

  * Added debug info handler to DOM objects.
  * Fixed bug #61172 (Add Apache 2.4 support).

  To generate a diff of this commit:
  cvs rdiff -u -r1.24 -r1.25 pkgsrc/lang/php53/Makefile
  cvs rdiff -u -r1.10 -r1.11 pkgsrc/lang/php53/Makefile.common
  cvs rdiff -u -r1.13 -r1.14 pkgsrc/lang/php53/Makefile.php
  cvs rdiff -u -r1.36 -r1.37 pkgsrc/lang/php53/distinfo
  cvs rdiff -u -r1.1 -r0 pkgsrc/lang/php53/patches/patch-main_SAPI.c

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: taca
  Date: Fri May  4 01:48:41 UTC 2012

  Modified Files:
  pkgsrc/lang/php53: Makefile.common Makefile.php distinfo

  Log Message:
  Update php53 package to 5.3.12.

  03 Mar 2012, PHP 5.3.12
  - Fix PHP-CGI query string parameter vulnerability, CVE-2012-1823. (Rasmus)

  To generate a diff of this commit:
  cvs rdiff -u -r1.11 -r1.12 pkgsrc/lang/php53/Makefile.common
  cvs rdiff -u -r1.14 -r1.15 pkgsrc/lang/php53/Makefile.php
  cvs rdiff -u -r1.37 -r1.38 pkgsrc/lang/php53/distinfo

(spz)

2012-05-04 08:31:15 UTC MAIN commitmail json YAML

dlopen require pthread on OpenBSD too.

(obache)

2012-05-04 07:24:50 UTC MAIN commitmail json YAML

OpenBSD also knows -pthread CFLAGS/LDFLAGS.

(obache)

2012-05-04 06:58:04 UTC MAIN commitmail json YAML

Honor ${PKGMANDIR}

(sbd)

2012-05-04 01:49:12 UTC MAIN commitmail json YAML

Note update of lang/php53 package to 5.3.12.

(taca)

2012-05-04 01:48:41 UTC MAIN commitmail json YAML

Update php53 package to 5.3.12.

03 Mar 2012, PHP 5.3.12
- Fix PHP-CGI query string parameter vulnerability, CVE-2012-1823. (Rasmus)

(taca)

2012-05-04 01:28:54 UTC MAIN commitmail json YAML

Updated www/php-concrete5 to 5.5.2.1

(ryoon)

2012-05-04 01:28:00 UTC MAIN commitmail json YAML

Update to 5.5.2.1

Changelog:
5.5.2.1
Behavioral Improvements
* Better update checking for new versions of concrete5.
* Attribute types have friendlier names (Checkbox instead of Boolean, etc...)
* When a fixed footprint isn't set, the image cropper in the file manager now defaults to the full size of the image.
* Improved performance of intelligent search
* Fixed http://www.concrete5.org/developers/bugs/5-5-2/login-and-error-pages-dont-use-the-menu-logo-settings/

And bugfixes

5.5.2
Feature Updates
* Replaced Picnik with built-in crop, rotate and zoom functionality. Crop+Zoom provided by jQuery Cropzoom by Gaston Robledo (http://www.cropzoom.com.ar/)
* Added ability to specify a file set on a form block for files uploaded through form. (Thanks danklassen!)
* Prettier edit/add experience for image block.
* Image block can now automatically resize thumbnails (previous default) or accept a fixed size, which can be passed to the image editor directly as a fixed width/height
* Ability to receive an email when new users register (Thanks Mnkras.)

Behavioral Improvements
* Made better use of space on dashboard home and system & settings
* Newsflow arrows are more prominent
* Moved sessions into filers/tmp/ on each site for better security.
* Download File script now redirects to files instead of forcing all files to download (to allow PDFs, images to display in browser)
* Fixed: http://www.concrete5.org/developers/bugs/5-5-1/cant-open-sitemap-visit-links-in-new-tab-5.5/
* Improved installation will remove user-created configuration files if something goes wrong in installation, removing an infinite installation loop unless the files were removed by hand.
* More robust UI handling when concrete5 is used with themes with greedy center styles.
* Adding wmode=transparent to youtube videos for better display
* File blocks now are searchable through the site-wide search block.

And bugfixes

5.5.1
Feature Updates
* New Interface Settings page in Systems & Settings that lets you control your dashboard background image, and the behavior of the quick nav.
* Newsflow One is now located at /dashboard/news. /dashboard now houses a table of contents for the dashboard. You can navigate to this by clicking the dashboard button.
* Page attributes that are setup to be viewed by default will now show when adding pages of that type. Better add page experience (more page types, etc...)
* Improved the marketplace browsing experience by simplifying and increasing the number of results in a given request. Now able to filter by compatible marketplace packages.

Behavioral Improvements
* Better Edit Bar Interaction
* ccm.app.js is now minified
* Content Importer library now reindexes pages after content is imported.
* Move the content down when edit bar appears (this used to work so just figure out what got lost and bring it back)
* Add multiple files window now closes after using multiple file uploader
* The language name should always be displayed in that language when editing a user's record in the dashboard on a multilingual site.
* Brought back enter key event when adding values to select attribute

And bugfixes

5.5.0
Feature Updates
* Completely revampled, overhauled and refined interface in the front-end and in the dashboard. Too many improvements to list here.
* No more scrapbook! Simpler, streamlined, faster clipboard for copy and paste, and "Stacks" for managing global areas, with support for version control and block reordering.
* Improved Installation that lets you specify your admin password, an installation language, gives you more access to sample content.
* Comprehensive white-labeling support, including the ability to specify alternate install packages, an alternate logo.
* Deleted pages now go into the trash for easy restore or bulk deletion.
* Better Page Attributes, including the ability to define attribute sets for page attributes, including reordering. Attributes can also be used with page defaults. Much better interface for choosing page attributes.
* Better marketplace integration, including the ability to read full descriptions, better search, a more attractive and fully informative informative, and the ability to purchase items directly from your website.
* Beautiful new "Greek Yogurt" Theme, installed with the sample content.
* New bulk commands in page search, including bulk delete, bulk move/copy, bulk design, and bulk speed settings
* Page Search and User Search now have fully customizable columns
* Better Anti-Spam Controls. Easy installation of new captcha libraries like reCAPTCHA (available for free download from concrete5.org) and anti-spam libraries like Akismet.

Performance Improvements
* Extensive CSS and JavaScript Minification and Combination. Far fewer files and code loaded.
* UI now uses sprites for better performance.
* Much JavaScript is now loaded in the footer to prevent blocking.
* Make Config values use one database query at startup to load, or one cache call. (Integrated and modified pull request from christiaan)
* More optimized dynamic PHP function calls (thanks christiaan)
* Page List is lighter weight with system pages no longer cached or calculated on the fly.
* Included an optimization job that can remove all but the most recent 10 versions of pages.
* Page reindexing no longer happens every time we set attribute or exit edit mode. Now instead it happens when running the index search job, or when visiting a page you have edit access to (through a silent, non-blocked reindex AJAX request.) (Note: this behavior can be modified by defining ENABLE_PROGRESSIVE_PAGE_REINDEX to false.)
* Much improved performance on the better designed Form Results page.
* Removed the Database class. Instead just go directly to ADODB and add our functions as stubs

Additional Features and behavioral Improvements
* Updated TinyMCE to 3.4.6, fixing bugs, improving stability, and enabling editing on iOS devices.
* Dialog windows should no longer be larger than the container browser window.
* Cleaner page list block template (thanks jordanlev)
* Departments of France are now included when checking France as an active country (thanks marcandre)
* Default mod_rewrite rules now make it so that pages like "jobs" that match directory names can be created (thanks christiaan)
* Included iPhone home screen thumbnail in the site icons dashboard page.

and bugfixes and Developer Updates

(ryoon)

2012-05-04 01:23:37 UTC MAIN commitmail json YAML

pax target directories must be prepared.

(obache)

2012-05-04 01:15:55 UTC MAIN commitmail json YAML

Fix typo in database name.

(ryoon)

2012-05-04 01:06:04 UTC MAIN commitmail json YAML

Add step to start apache httpd.

(ryoon)

2012-05-04 00:08:07 UTC MAIN commitmail json YAML

Add MASTER_SITE_MOZILLA_ESR, for Extended Support Release version of
mozilla.org products (firefox and thunderbird).
Suggested by obache on pkgsrc-changes@.

(ryoon)

2012-05-03 22:58:13 UTC MAIN commitmail json YAML

Updated devel/meld to 1.6.0

(wiz)

2012-05-03 22:58:02 UTC MAIN commitmail json YAML

Update to 1.6.0:

2012-4-28 meld 1.6.0
====================

  Fixes:

    * Fix cursor location handling when our tree models change (Kai Willadsen)

  Translation updates:

    * Bruno Brouard (fr)
    * Daniel Mustieles (es)
    * Daniel Șerbănescu (ro)
    * Fran Diéguez (gl)
    * Marek Černocký (cs)
    * Matej Urbančič (sl)
    * Piotr Drąg (pl)

(wiz)

2012-05-03 21:37:42 UTC MAIN commitmail json YAML

Added entries for sysutils/fscd in Makefile and CHANGES.

(jdf)

2012-05-03 21:21:58 UTC MAIN commitmail json YAML

Added the freebsd service check daemon.
Originally developed by Tom Rhodes for FreeBSD, it's ported to NetBSD now
and maintained by me.
https://vcs.in-berlin.de/schrank21_fscd

(jdf)

2012-05-03 19:56:36 UTC pkgsrc-2012Q1 commitmail json YAML

Pullup tickets #3760, #3761, #3762, #3763, #3764, #3765, #3766, #3767 and #3768.

(tron)

2012-05-03 19:55:10 UTC pkgsrc-2012Q1 commitmail json YAML

Pullup ticket #3768 - requested by taca
www/drupal7: security update

Revisions pulled up:
- www/drupal7/Makefile                                          1.6
- www/drupal7/distinfo                                          1.4

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Thu May  3 03:31:00 UTC 2012

  Modified Files:
  pkgsrc/www/drupal7: Makefile distinfo

  Log Message:
  Update dupal7 to 7.13.

  Drupal 7.13 2012-05-02
  ----------------------
  - Fixed security issues (Multiple vulnerabilities), see SA-CORE-2012-002.

(tron)

2012-05-03 19:48:50 UTC pkgsrc-2012Q1 commitmail json YAML

Pullup ticket #3767 - requested by taca
net/samba35: security update

Revisions pulled up:
- net/samba35/Makefile                                          1.20
- net/samba35/distinfo                                          1.12

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed May  2 14:50:19 UTC 2012

  Modified Files:
  pkgsrc/net/samba35: Makefile distinfo

  Log Message:
  Update samba35 package to 3.5.15.

                      ==============================
                      Release Notes for Samba 3.5.15
    April 30, 2012
                      ==============================

  This is a security release in order to address
  CVE-2012-2111 (Incorrect permission checks when granting/removing
  privileges can compromise file server security).

  o  CVE-2012-2111:
      Samba 3.4.x to 3.6.4 are affected by a
      vulnerability that allows arbitrary users
      to modify privileges on a file server.

(tron)

2012-05-03 19:35:43 UTC pkgsrc-2012Q1 commitmail json YAML

Pullup ticket #3766 - requested by taca
net/samba: security update

Revisions pulled up:
- net/samba/Makefile                                            1.219
- net/samba/distinfo                                            1.85

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed May  2 14:48:00 UTC 2012

  Modified Files:
  pkgsrc/net/samba: Makefile distinfo

  Log Message:
  Update samba to 3.6.5.

                      =============================
                      Release Notes for Samba 3.6.5
                            April 30, 2012
                      =============================

  This is a security release in order to address
  CVE-2012-2111 (Incorrect permission checks when granting/removing
  privileges can compromise file server security).

  o  CVE-2012-2111:
      Samba 3.4.x to 3.6.4 are affected by a
      vulnerability that allows arbitrary users
      to modify privileges on a file server.

(tron)

2012-05-03 19:15:51 UTC pkgsrc-2012Q1 commitmail json YAML

Pullup ticket #3765 - requested by taca
net/bind96: security patch

Revisions pulled up:
- net/bind96/Makefile                                          1.24
- net/bind96/distinfo                                          1.16
- net/bind96/patches/patch-lib_dns_resolver.c                  1.1

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue May  1 02:49:27 UTC 2012

  Modified Files:
  pkgsrc/net/bind96: Makefile distinfo
  Added Files:
  pkgsrc/net/bind96/patches: patch-lib_dns_resolver.c

  Log Message:
  Add fix to a race condition in the resolver code that can cause a recursive
  nameserver: <https://kb.isc.org/article/AA-00664>.

  Bump PKGREVISION.

(tron)

2012-05-03 18:32:02 UTC pkgsrc-2012Q1 commitmail json YAML

Pullup ticket #3764 - requested by taca
net/bind97: security patch

Revisions pulled up:
- net/bind97/Makefile                                          1.13
- net/bind97/distinfo                                          1.12
- net/bind97/patches/patch-lib_dns_resolver.c                  1.1

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue May  1 02:48:58 UTC 2012

  Modified Files:
  pkgsrc/net/bind97: Makefile distinfo
  Added Files:
  pkgsrc/net/bind97/patches: patch-lib_dns_resolver.c

  Log Message:
  Add fix to a race condition in the resolver code that can cause a recursive
  nameserver: <https://kb.isc.org/article/AA-00664>.

  Bump PKGREVISION.

(tron)

2012-05-03 18:24:57 UTC pkgsrc-2012Q1 commitmail json YAML

Pullup ticket #3763 - requested by taca
net/bind98: security patch

Revisions pulled up:
- net/bind98/Makefile                                          1.9
- net/bind98/distinfo                                          1.9
- net/bind98/patches/patch-lib_dns_resolver.c                  1.1

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue May  1 02:48:20 UTC 2012

  Modified Files:
  pkgsrc/net/bind98: Makefile distinfo
  Added Files:
  pkgsrc/net/bind98/patches: patch-lib_dns_resolver.c

  Log Message:
  Add fix to a race condition in the resolver code that can cause a recursive
  nameserver: <https://kb.isc.org/article/AA-00664>.

  Bump PKGREVISION.

(tron)

2012-05-03 18:13:43 UTC pkgsrc-2012Q1 commitmail json YAML

Pullup ticket #3762 - requested by taca
net/bind99: security patch

Revisions pulled up:
- net/bind99/Makefile                                          1.2
- net/bind99/distinfo                                          1.3
- net/bind99/patches/patch-lib_dns_resolver.c                  1.1

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue May  1 02:47:52 UTC 2012

  Modified Files:
  pkgsrc/net/bind99: Makefile distinfo
  Added Files:
  pkgsrc/net/bind99/patches: patch-lib_dns_resolver.c

  Log Message:
  Add fix to a race condition in the resolver code that can cause a recursive
  nameserver: <https://kb.isc.org/article/AA-00664>.

  Bump PKGREVISION.

(tron)

2012-05-03 18:01:43 UTC pkgsrc-2012Q1 commitmail json YAML

Pullup ticket #3761 - requested by dholland
lang/objc: build fix

Revisions pulled up:
- lang/objc/hacks.mk                                            1.1

---
  Module Name: pkgsrc
  Committed By: dholland
  Date: Mon Apr 30 02:51:40 UTC 2012

  Added Files:
  pkgsrc/lang/objc: hacks.mk

  Log Message:
  Fix build on NetBSD.

(tron)

2012-05-03 17:54:54 UTC pkgsrc-2012Q1 commitmail json YAML

Pullup ticket #3760 - requested by dholland
graphics/aqsis: build fix update

Revisions pulled up:
- graphics/aqsis/Makefile                                      1.37
- graphics/aqsis/PLIST                                          1.4
- graphics/aqsis/distinfo                                      1.8
- graphics/aqsis/options.mk                                    1.1-1.2
- graphics/aqsis/patches/patch-aa                              deleted
- graphics/aqsis/patches/patch-ab                              deleted
- graphics/aqsis/patches/patch-ac                              deleted
- graphics/aqsis/patches/patch-ad                              deleted
- graphics/aqsis/patches/patch-ae                              deleted
- graphics/aqsis/patches/patch-af                              deleted
- graphics/aqsis/patches/patch-ag                              deleted
- graphics/aqsis/patches/patch-ah                              deleted
- graphics/aqsis/patches/patch-ai                              deleted
- graphics/aqsis/patches/patch-aj                              deleted
- graphics/aqsis/patches/patch-ak                              deleted
- graphics/aqsis/patches/patch-al                              deleted
- graphics/aqsis/patches/patch-am                              deleted
- graphics/aqsis/patches/patch-an                              deleted
- graphics/aqsis/patches/patch-ao                              deleted
- graphics/aqsis/patches/patch-ap                              deleted
- graphics/aqsis/patches/patch-aq                              deleted
- graphics/aqsis/patches/patch-cmake_modules_FindPNG_cmake      1.1

---
  Module Name: pkgsrc
  Committed By: dholland
  Date: Mon Apr 30 01:59:14 UTC 2012

  Modified Files:
  pkgsrc/graphics/aqsis: Makefile PLIST distinfo
  Added Files:
  pkgsrc/graphics/aqsis: options.mk
  pkgsrc/graphics/aqsis/patches: patch-cmake_modules_FindPNG_cmake
  Removed Files:
  pkgsrc/graphics/aqsis/patches: patch-aa patch-ab patch-ac patch-ad
      patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-ak
      patch-al patch-am patch-an patch-ao patch-ap patch-aq

  Log Message:
  Update to 1.8.1. Changes: 10 years of development.
  Add missing DESTDIR support.

  Restriction: so far the GUI parts, which require qt4, are not built
  by default, and probably won't build yet if enabled.

---
  Module Name: pkgsrc
  Committed By: dholland
  Date: Mon Apr 30 02:54:29 UTC 2012

  Modified Files:
  pkgsrc/graphics/aqsis: options.mk

  Log Message:
  Switch the qt4 option on by default, as it turns out it works and (to
  my surprise) doesn't require PLIST additions. Ride the update as it was
  less than an hour ago.

(tron)

2012-05-03 16:17:01 UTC MAIN commitmail json YAML

Updated devel/mercurial to 2.2

(wiz)

2012-05-03 16:16:52 UTC MAIN commitmail json YAML

Update to 2.2:

1. Mercurial 2.2 (2012-05-01)

This is a regularly-scheduled feature release. The most notable
feature is a new safe '--amend' option for commit using our new
phases infrastructure. There are also a number of signficant
performance improvements for large repositories and improvements
for case-folding filesystems. See UpgradeNotes for minor compatibility
notes.

1.1. Core features

    commit: add --amend option
    fileset: add "subrepo" fileset symbol
    graft: add --dry-run support (issue3362)
    hgweb: add support for branch width and color settings
    hgweb: add block numbers to diff regions and related links
    hgweb: support multi-level repository indexes by enabling descend and collapse
    merge: improve performance with lots of unknown files
    parsers: incrementally parse the revlog index in C
    plan9: add support for plan9
    push/pull: improve performance for partial transfers
    push: decompress in larger chunks for better performance on the server
    clone: add server config option to prefer uncompressed clone
    revert: add support for reverting subrepos
    revset: add "matching" keyword
    store: speed up read and write of large fncache files
    ui: optionally quiesce ssl verification warnings on python 2.5

1.2. Extension features

    bugzilla: add xmlrpcemail submission for Bugzilla 3.6 email interface
    bugzilla: allow change comment to mark bugs fixed
    bugzilla: extract optional hours from commit message and update bug time
    bugzilla: modify access interface to include new bug states
    graphlog: add all log options to glog command
    patchbomb: add --body flag to send patches as inline message body text
    record: allow splitting of hunks by manually editing patches
    transplant: permit merge changesets via --parent

1.3. Fixes

    alias: fix shell alias documentation (issue3374)
    archive: make it work with svn subrepos (issue3308)
    branchmap: server should not advertise secret changeset in branchmap (Issue3303)
    clone: always close source repository (issue2491)
    commit: abort on merge with missing files (BC)
    config: discard UTF-8 BOM if found
    convert/bzr: convert all branches (issue3229) (BC)
    convert/bzr: expect unicode metadata, encode in UTF-8 (issue3232)
    convert/bzr: handle empty bzr repositories (issue3233)
    convert/bzr: ignore nested repos when listing branches (issue3254)
    convert/svn: do not try converting empty head revisions (issue3347)
    convert/svn: make svn sink work with svn 1.7
    convert: support non-annotated tags in git backend
    dirstate: preserve path components case on renames (issue3402)
    export: catch exporting empty revsets (issue3353)
    icasefs: make case-folding collision detection rename aware (issue3370)
    inotify: catch SignalInterrupt during shutdown (issue3351)
    journal: use tryread helper to backup files (issue3375)
    largefiles: fix cat for largefiles (issue3352)
    largefiles: fix status -S reporting of subrepos (issue3231)
    largefiles: hide .hglf/ prefix for largefiles in hgweb
    largefiles: notice dirty large files in a subrepo
    largefiles: only update changed largefiles when transplanting
    largefiles: optimize update speed by only updating changed largefiles
    localrepo: add setparents() to adjust dirstate copies (issue3407)
    mdiff: fix diff header generation for files with spaces (issue3357)
    merge: check for untracked files more precisely (issue3400)
    merge: fix unknown file merge detection for case-folding systems
    patch: be more tolerant with "Parent" header (issue3356)
    patch: be more tolerant with EOLs in binary diffs (issue2870)
    patch: fix patch hunk/metdata synchronization (issue3384)
    phase: when phase cannot be reduced, hint at --force and return 1 (BC)
    posix: disable cygwin's symlink emulation (BC)
    posix: ignore execution bit in cygwin (issue3301)
    pure/osutil: use Python's msvcrt module (issue3380)
    rebase: preserve mq series order, guarded patches (issue2849)
    rebase: skip resolved but emptied revisions
    revset: fix O(n**2) behaviour of bisect() (issue3381)
    revset: fix adds/modifies/removes and patterns (issue3403)
    revset: fix alias substitution recursion (issue3240)
    subrepo/svn: abort on commit with missing file (issue3029)
    subrepo/svn: fix checked out rev number retrieval (issue2968)
    subrepo: fix default implementation of forget() (issue3404)
    subrepo: rewrite handling of subrepo state at commit (issue2403)
    templates/filters: extracting the user portion of an email address (BC)
    transplant: do not rollback on patching error (issue3379)
    update: fix case-collision with a clean wd and no --clean
    update: make --check abort with dirty subrepos
    update: use normal update path with --check (issue2450)
    wireprotocol: use visibleheads as reference while unbundling (issue 3303)

(wiz)

2012-05-03 13:56:04 UTC MAIN commitmail json YAML

Updated pkgtools/x11-links to 0.70

(obache)

2012-05-03 13:55:45 UTC MAIN commitmail json YAML

2012-05-03 12:20:19 UTC MAIN commitmail json YAML

2012-05-03 11:55:36 UTC MAIN commitmail json YAML

Use the .tar.bz2 distfile to avoid the xzcat dependency and issues when
building this inside of gcc.

(hans)

2012-05-03 11:52:33 UTC MAIN commitmail json YAML

Reduce mimimal requirement of libdrm from 2.4.20 to 2.4.15, allow OpenBSD-5.1
builtin one, or failed to buildlink with MesaLib, because buitin MesaLib is
allowed but depending libdrm not.

* Previous pkgsrc version is 2.4.13
* NetBSD-5.1's one is 2.4.11
* NetBSD-6.0_BETA's one is 2.4.23

So actual dependency should not be changed.

(obache)

2012-05-03 09:55:33 UTC MAIN commitmail json YAML

Drop dependency on libXp (from Imake)

* libXp was used by Xaw8, but it had been obsolated, and in pkgsrc,
  x11/libXaw/buildlink3.mk had been switched to pick up Xaw7 by default.
* With x11/xorg-cf-files, libXp was offered with XawClientLibs,
  but updated to 1.0.4, it was removed.
* And pkgsrc had been switched to use always xorg-cf-files and imake from pkgsrc,
  so all platforms should not require libXp from libXaw with Imake.

Bump PKGREVISION.

(obache)

2012-05-03 09:08:11 UTC MAIN commitmail json YAML

fixes build with fiex<2.5.20, yylineno is required condifionally.

(obache)

2012-05-03 09:08:03 UTC MAIN commitmail json YAML

Added math/p5-Math-Permute-List version 1.004

(wiz)

2012-05-03 09:07:52 UTC MAIN commitmail json YAML

+ p5-Math-Permute-List.

(wiz)

2012-05-03 09:07:30 UTC MAIN commitmail json YAML

Initial import of p5-Math-Permute-List-1.004:

Generate and process all the all the permutations of a list using
the standard Perl metaphor.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-20120503

(wiz)

2012-05-03 08:44:43 UTC MAIN commitmail json YAML

+ ImageMagick-6.7.6.8, anjuta-3.4.1, ap2-perl-2.0.6, cacti-0.8.8a
  [pkg/46399], cairo-1.12.2, clutter-1.10.4, cmake-2.8.8, dnsmasq-2.61,
  eric4-4.5.3, eric5-5.2.2, highlight-3.9, jabberd2-2.2.15,
  kile-2.1.2, knights-2.4.2, ktorrent-4.2.0, libXi-1.6.1,
  libaudiofile-0.3.4, libmemcached-1.0.7, mathomatic-15.8.3,
  meld-1.6.0, mercurial-2.2, mp3diags-1.1.19, mpg123-1.14.0,
  mpop-1.0.27, msmtp-1.4.28, mupdf-1.0, pan-0.137, py-gdata-2.0.17,
  strace-4.7, xf86-video-intel-2.19.0, xfce-4.10.

(wiz)

2012-05-03 08:31:05 UTC MAIN commitmail json YAML

Let the compiler handle the alignement for cached passwd entries, fixes
a bus error on sparc (since 64 bit time_t).

(martin)

2012-05-03 08:29:40 UTC MAIN commitmail json YAML

Updated multimedia/mkvtoolnix to 5.0.1

(adam)

2012-05-03 08:28:40 UTC MAIN commitmail json YAML

Changes 5.0.1:
* build system: Updated the Debian/Ubuntu files to debhelper
  v7/quilt 3.0 format.
* mkvmerge: enhancement: Implemented support for yet another way
  of storing EAC3 and DTS in MPEG transport streams.
* mkvinfo: bug fix: Track information was not reset when opening
  more than one file in the GUI.
* mkvmerge: bug fix: The PGS subtitle output module was not
  outputting any packet in certain cases due to uninitialized variables.
* mkvmerge: bug fix: Fixed mkvmerge not finding any track in TS
  streams whose first PMT packet could not be parsed (e.g. invalid CRC).
* mkvmerge: bug fix: Fixed detection of TS streams that only
  contain one PAT or PMT packet within the first few KB but no
  others within the first 10 MB.

(adam)

2012-05-03 07:34:42 UTC MAIN commitmail json YAML

Updated misc/goffice0.8 to 0.8.17nb5

(wiz)

2012-05-03 07:34:33 UTC MAIN commitmail json YAML

2012-05-03 07:20:16 UTC MAIN commitmail json YAML

Added devel/p5-Algorithm-Permute version 0.12

(wiz)

2012-05-03 07:19:37 UTC MAIN commitmail json YAML

+ p5-Algorithm-Permute

(wiz)

2012-05-03 07:18:59 UTC MAIN commitmail json YAML

Initial import of p5-Algorithm-Permute-0.12:

This handy module makes performing permutation in Perl easy and
fast, although perhaps its algorithm is not the fastest on the
earth. Currently it only supports permutation n of n objects.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-20120503

(wiz)

2012-05-03 07:03:49 UTC MAIN commitmail json YAML

Note update of drupal6 and drupal7 packages:

www/drupal6 6.26
www/drupal7 7.14

(taca)

2012-05-03 07:02:58 UTC MAIN commitmail json YAML

Update drupal7 to 7.14.

Drupal 7.14 2012-05-02
----------------------
- Fixed "integrity constraint" fatal errors when rebuilding registry.
- Fixed custom logo and favicon functionality referencing incorrect paths.
- Fixed DB Case Sensitivity: Allow BINARY attribute in MySQL.
- Split field_bundle_settings out per bundle.
- Improve UX for machine names for fields (UI change).
- Fixed User pictures are not removed properly.
- Fixed HTTPS sessions not working in all cases.
- Fixed Regression: Required radios throw illegal choice error when none
  selected.
- Fixed allow autocompletion requests to include slashes.
- Eliminate $user->cache and {session}.cache in favor of
  $_SESSION['cache_expiration'][$bin] (Performance).
- Fixed focus jumps to tab when pressing enter on a form element within tab.
- Fixed race condition in locale() - duplicates in {locales_source}.
- Fixed Missing "Default image" per field instance.
- Quit clobbering people's work when they click the filter tips link
- Form API #states: Fix conditionals to allow OR and XOR constructions.
- Fixed Focus jumps to tab when pressing enter on a form element within tab.
  (Accessibility)
- Improved performance of node_access queries.
- Fixed Fieldsets inside vertical tabs have no title and can't be collapsed.
- Reduce size of cache_menu table (Performance).
- Fixed unnecessary aggregation of CSS/JS (Performance).
- Fixed taxonomy_autocomplete() produces SQL error for nonexistent field.
- Fixed HTML filter is not run first by default, despite default weight.
- Fixed Overlay does not work with prefixed URL paths.
- Better debug info for field errors (string change).
- Fixed Data corruption in comment IDs (results in broken threading on
  PostgreSQL).
- Fixed machine name not editable if every character is replaced.
- Fixed user picture not appearing in comment preview (Markup change).
- Added optional vid argument for taxonomy_get_term_by_name().
- Fixed Invalid Unicode code range in PREG_CLASS_UNICODE_WORD_BOUNDARY fails
  with PCRE 8.30.
- Fixed {trigger_assignments()}.hook has only 32 characters, is too short.
- Numerous fixes to run-tests.sh.
- Fixed Tests in profiles/[name]/modules cannot be run and cannot use a
  different profile for running tests.
- Numerous JavaScript performance fixes.
- Numerous documentation fixes.
- Fixed All pager links have an 'active' CSS class.
- Numerous upgrade path fixes; notably:
  - system_update_7061() fails on inserting files with same name but different
    case.
  - system_update_7061() converts filepaths too aggressively.
  - Trigger upgrade path: Node triggers removed when upgrading to 7-x from 6.25.

(taca)

2012-05-03 07:02:12 UTC MAIN commitmail json YAML

Update drupal6 package to 6.26.

Drupal 6.26, 2012-05-02
----------------------
- Fixed a small number of bugs.
- Made code documentation improvements.

(taca)

2012-05-03 06:52:02 UTC MAIN commitmail json YAML

OpenBSD has builtin pax tool.

(obache)

2012-05-03 06:23:47 UTC MAIN commitmail json YAML

Updated comms/asterisk10 to 10.4.0

(jnemeth)

2012-05-03 06:23:37 UTC MAIN commitmail json YAML

Update to Asterisk 10.4.0:  this is a bug fix release.

The Asterisk Development Team has announced the release of Asterisk 10.4.0.

The release of Asterisk 10.4.0 resolves several issues reported by the
community and would have not been possible without your participation.
Thank you!

The following are the issues resolved in this release:

* --- Prevent chanspy from binding to zombie channels

* --- Fix Dial m and r options and forked calls generating warnings
      for voice frames.

* --- Remove ISDN hold restriction for non-bridged calls.

* --- Fix copying of CDR(accountcode) to local channels.

* --- Ensure Asterisk acknowledges ACKs to 4xx on Replaces errors

* --- Eliminate double close of file descriptor in manager.c

For a full list of changes in this release, please see the ChangeLog:

http://downloads.asterisk.org/pub/telephony/asterisk/ChangeLog-10.4.0

Thank you for your continued support of Asterisk!

(jnemeth)

2012-05-03 06:16:42 UTC MAIN commitmail json YAML

2012-05-03 06:09:55 UTC MAIN commitmail json YAML

2012-05-03 06:06:13 UTC MAIN commitmail json YAML

2012-05-03 06:03:30 UTC MAIN commitmail json YAML

2012-05-03 06:01:35 UTC MAIN commitmail json YAML

2012-05-03 05:55:48 UTC MAIN commitmail json YAML

* tabify
* reorder entries, especially, PKG_DESTDIR_SUPPORT must be defined before
  includion of bsd.prefs.mk.

(obache)

2012-05-03 03:35:32 UTC MAIN commitmail json YAML

Note update of www/drupal7 package to 7.13.

(taca)

2012-05-03 03:31:00 UTC MAIN commitmail json YAML

Update dupal7 to 7.13.

Drupal 7.13 2012-05-02
----------------------
- Fixed security issues (Multiple vulnerabilities), see SA-CORE-2012-002.

(taca)

2012-05-02 23:21:21 UTC MAIN commitmail json YAML

Update openafs to the latest dev

(christos)

2012-05-02 23:19:26 UTC MAIN commitmail json YAML

2012-05-02 22:08:42 UTC MAIN commitmail json YAML

s/tiki/concrete5/g, fix pasto

(ryoon)

2012-05-02 22:02:38 UTC MAIN commitmail json YAML

Updated fonts/ricty-ttf to 3.2.0

(ryoon)

2012-05-02 22:02:00 UTC MAIN commitmail json YAML

Update to 3.2.0

This update is provided by Miwa Susumu on pkgsrc-users@.

* Use os2version_reviser.sh in post-build, for adjusting spacing of Zenkaku
  characters.

Changelog:
Version 3.2.0 (16 Apr. 2012)
* Adjust character spacing
* Add command line options

(ryoon)

2012-05-02 19:51:22 UTC MAIN commitmail json YAML

2012-05-02 14:50:45 UTC MAIN commitmail json YAML

Note update of net/samba35 package to 3.5.15.

(taca)

2012-05-02 14:50:19 UTC MAIN commitmail json YAML

Update samba35 package to 3.5.15.

                  ==============================
                  Release Notes for Samba 3.5.15
  April 30, 2012
                  ==============================

This is a security release in order to address
CVE-2012-2111 (Incorrect permission checks when granting/removing
privileges can compromise file server security).

o  CVE-2012-2111:
  Samba 3.4.x to 3.6.4 are affected by a
  vulnerability that allows arbitrary users
  to modify privileges on a file server.

(taca)

2012-05-02 14:49:12 UTC MAIN commitmail json YAML

+ openssl-1.0.1b, postfix-2.9.2.

(taca)

2012-05-02 14:48:43 UTC MAIN commitmail json YAML

Note update of net/samba package to 3.6.5.

(taca)

2012-05-02 14:48:00 UTC MAIN commitmail json YAML

Update samba to 3.6.5.

                  =============================
                  Release Notes for Samba 3.6.5
                          April 30, 2012
                  =============================

This is a security release in order to address
CVE-2012-2111 (Incorrect permission checks when granting/removing
privileges can compromise file server security).

o  CVE-2012-2111:
  Samba 3.4.x to 3.6.4 are affected by a
  vulnerability that allows arbitrary users
  to modify privileges on a file server.

(taca)

2012-05-02 13:44:27 UTC MAIN commitmail json YAML

As described in comments, export ${TEST_ENV} instead of ${MAKE_ENV} to test
make process.

(obache)

2012-05-02 12:35:10 UTC MAIN commitmail json YAML

Updated net/ruby-tweetstream to 1.1.5

(obache)

2012-05-02 12:34:56 UTC MAIN commitmail json YAML

Update ruby-tweetstream to 1.1.5.

Version 1.1.5
=============

* Fix an incompatibility with Ruby < 1.9
* Added support for scrub_geo notice

(obache)

2012-05-02 12:20:19 UTC MAIN commitmail json YAML

Added archivers/lhasa version 0.0.4

(wiz)

2012-05-02 12:19:59 UTC MAIN commitmail json YAML

2012-05-02 12:19:44 UTC MAIN commitmail json YAML

Initial import of lhasa-0.0.4, an ISC licensed lha uncompressor.

Lhasa is a library for parsing LHA (.lzh) archives and a free
replacement for the Unix LHA tool.

Currently it is only possible to read from (i.e., decompress)
archives; generating (compressing) LHA archives may be an enhancement
for future versions. The aim is to be compatible with as many
different variants of the LHA file format as possible, including
LArc (.lzs) and PMarc (.pma).

The command line tool aims to be interface-compatible with the
non-free Unix LHA tool (command line syntax and output), for
backwards compatibility with tools that expect particular output.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-20120502

(wiz)

2012-05-02 09:12:14 UTC MAIN commitmail json YAML

Updated inputmethod/ibus to 1.4.1nb1

(obache)

2012-05-02 09:11:44 UTC MAIN commitmail json YAML

2012-05-02 08:26:21 UTC MAIN commitmail json YAML

2012-05-02 06:46:02 UTC MAIN commitmail json YAML

Updated archivers/upx to 3.08

(adam)

2012-05-02 06:45:14 UTC MAIN commitmail json YAML

Changes 3.08:
* Fix allocation in runtime stub for darwin.macho-entry (i386 and amd64).
* Compress shared library on ELF i386 only [ld.so threatens even this case].
* Attempt to suport ELF on QNX 6.3.0 for armel (experimental).
* Better diangostic when ELF -fPIC is needed.
* PT_NOTE improvements for *BSD.
* Preserve more ELF .e_flags on ARM.
* Minor code improvements for ELF stubs
* Defend against another flavor of corrupt PE header.
* bug fixes

(adam)

2012-05-02 04:49:38 UTC MAIN commitmail json YAML

Note addition of net/chimera version 1.20

(agc)

2012-05-02 04:48:49 UTC MAIN commitmail json YAML

Add and enable chimera

(agc)

2012-05-02 04:48:04 UTC MAIN commitmail json YAML

Initial import of chimera-1.20 into the packages collection

Structured peer-to-peer overlays, sometimes also referred to as
Distributed Hash Tables (DHTs), are scalable network infrastructures
that support Internet-scale network applications utilizing a
decentralized resource model.  At their core, these overlays provide
Key-Based Routing (KBR), where messages addressed to any Key will
incrementally route towards an overlay node responsible for that key.
On top of the KBR layer, these overlays can support distributed
storage using a DHT layer or data location using a DOLR layer.

On top of these overlays, researchers have proposed numerous
distributed applications, including distributed storage and backup
systems, multicast systems, resilient routing networks, distributed
spam filters, mobility support and anonymous routing networks.

Chimera is a light-weight C implementation of a "next-generation"
structured overlay that provides similar functionality as
prefix-routing protocols Tapestry and Pastry.  Chimera gains
simplicity and robustness from its use of Pastry's leafsets, and
efficient routing from Tapestry's locality algorithms.  In addition to
these properties, Chimera also provides efficient detection of node
and network failures, and reroutes messages around them to maintain
connectivity and throughput.


Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(agc)

2012-05-02 04:45:11 UTC MAIN commitmail json YAML

Note addition of devel/mad-flute-1.7

(agc)

2012-05-02 04:44:10 UTC MAIN commitmail json YAML

Add and enable mad-flute

(agc)

2012-05-02 04:43:11 UTC MAIN commitmail json YAML

Initial import of mad-flute-1.7 into the packages collection

MAD project implemented two protocols designed for reliable content
delivery.  File Delivery over Unidirectional Transport (FLUTE) is a
protocol for the unidirectional delivery of files over the Internet,
which is particularly suited to multicast networks.  FLUTE builds on
Asyncronous Layered Coding (ALC), the base protocol designed for
massively scalable multicast distribution.  Asynchronous Layered
Coding combines the Layered Coding Transport (LCT) building block, a
multiple rate congestion control building block and the Forward Error
Correction (FEC) building block to provide congestion controlled
reliable asynchronous delivery of content to an unlimited number of
concurrent receivers from a single sender.

MAD-ALCLIB library is an implementation of the ALC/LCT protocol, along
with the RLC congestion control protocol and Compact No-Code, Simple
XOR and Reed-Solomon FEC schemes.  Session Description Protocol (SDP)
can be used to describe FLUTE sessions.  MAD-SDPLIB library is an
implementation of "SDP Descriptors for FLUTE" Internet-Draft.
MAD-FLUTELIB is an implementation of the FLUTE protocol, and it builds
on MAD-ALCLIB and MAD-SDPLIB libraries.  MAD-FLUTE is a multicast file
transfer tool build on the above mentioned libraries.


Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(agc)

2012-05-02 02:11:33 UTC MAIN commitmail json YAML

Pass --enable-Bsymbolic=auto, or default value is "yes" and result in
configure faiure if -Bsymbolic-functions is not supported by `ld'.

(obache)

2012-05-01 22:27:30 UTC MAIN commitmail json YAML

2012-05-01 22:22:02 UTC MAIN commitmail json YAML

Update to Scala 2.9.2.

Scala 2.9.2 addresses several bugs, and introduces additional improvements. Here's a list of the issues that have been fixed since 2.9.1-1:

c9e254ec27 Backport fix for SI-4545, SI-5633.
11cb359863 Document regex replacement strings behavior.
125b5037c8 Fix for a bug in CharArrayReader which made tri...
a26dd939b8 Revert attempt to limit private types in lubs.
3cfbfa3d0e Fixes SI-5380: non-local return of try expression (cherry picked from commit 02e260a8e67e2b2b6f876aafe76cd61248a89374)
1864e6d1c1 Add test case for SI-4835 (https://issues.scala-lang.org/browse/SI-4835)
841f074e2b Fixed SI-4835 (https://issues.scala-lang.org/browse/SI-4835).
da794bb4ee Fixes NPE using iterator with an XML attribute ...
b783e17319 Fix various InnerClasses bugs.
28be69e263 Close file descriptor leak in sys.process.
2e66a13e26 fixes SI-5506. better cps type propagation for polymorphic and multi-argument list methods.
9c3cbde0fd Fix for error printing regression.
e1810d1e88 Migration message and version cleanup
b57f68f34e Improve description of flatten, flatMap
0fcc5ce9c5 Explain Function1 vs PartialFunction
634382969a Fixes SI-4507.
d1870c2162 Fixes to javascript in Scaladoc, contributed by...
f4dec8a8af Scaladoc now hides members with @bridge annotat...
4f6cd102de Improves the usability of Scaladoc when images ...
1fb3760f96 Minor changes to the Scaladoc stylesheets, as s...
be067ac8de Scaladoc shouldn't drop type arguments to alias...
e54aa8c7bf Fixes SI-4641 again.
2701d7fa47 Backported commit 7a99c03da1d31ac5950eecb30f422f43c5e3d04e from master

Scala 2.9.1-1 fixes a critical Java-Scala interoperability issue that arose in 2.9.1. Here is the change list:

Don't mark mixed-in methods as bridges.
Add SYNTHETIC flag for BRIDGE methods.
Update build for publishing to sonatype OSSRH

(yyamano)

2012-05-01 19:04:07 UTC MAIN commitmail json YAML

Pass OBJC to configure script

(adam)

2012-05-01 18:57:12 UTC MAIN commitmail json YAML

Updated devel/glib2;sysutils/gio-fam to 2.32.2

(adam)

2012-05-01 18:47:01 UTC MAIN commitmail json YAML

2012-05-01 18:45:53 UTC MAIN commitmail json YAML

Changes 2.32.2:
* GApplication: can now have a NULL application ID
* g_clear_object: fix warnings when using it on C++ (due to lack of
  ability to implicitly cast void*)
* GDBus:
- add our own implementation of the message bus for use on Windows only
- fix up a few bugs that use of this bus uncovered in GDBus
- escape nonce files in dbus addressess (think 'c:\')
- support initial underscores in dbus codegen namespace (for private)
* Fix misdetection of GNUstep as Cocoa (for the MacOS GSettings backend)
* make sure configure fails if AC_CHECK_ALIGNOF cannot detect the alignment
* GAppInfo: overwrite the DISPLAY only if it is set in the launch context
* glib/tests/date: force US locale running the GDateTime tests
* GSocketControlMessage: Don't warn about unknown messages
* Resources:
- fix broken use of GVDB on big endian machines
- set a 'display name' so that pretty file names appear in Gtk CSS
  warning messages
* GMainContext:
- block child sources when blocking the parent
- introduce more testcases for child sources
* Translations updates:
Brazilian Portuguese
French
Galician
Italian
Lithuanian
Polish
Polish
Serbian
Simplified Chinese
Spanish
* Bug fixed:
619026 avoid warning in gutils.h when using gcc with -Wconversion
669260 Open/Save dialog hangs waiting for data with libsoup
671249 GApplication: Allow a null application_id?
672786 goa-daemon: action in notification doesn't work
673409 g_resource_lookup_data may return stale data pointer
674172 glib-2.32.1 misdetects GNUstep as Cocoa
674345 cssprovider: Make sure to print out file name in css warnings
674483 broken configure results when cross-compiling with gcc >= 4.5

(adam)

2012-05-01 14:59:30 UTC MAIN commitmail json YAML

Updated graphics/feh to 2.5

(gls)

2012-05-01 14:58:47 UTC MAIN commitmail json YAML

Update graphics/feh to 2.5.

pkgsrc changes
--------------

Don't mess with CFLAGS. I can't remember why that was even necessary, and it
breaks the Linux build.

Should fix PR pkg/46390.

upstream changes
----------------

* Add R, * and / bindings for keypad begin, keypad * and keypad /
* Try to convert unloadable files with imagemagick for up to 5 seconds
* Add --magick-timeout option to set imagemagick conversion timeout or disable
it altogether
* Clean up temporary / to-delete files when receiving SIG{INT,TERM,QUIT}
* Do not scroll past image borders when using key bindings
* --loadable / --unloadable: indicate result in exit status

(gls)

2012-05-01 07:13:37 UTC MAIN commitmail json YAML

Fix build under Mac OS X.

(tron)

2012-05-01 07:06:20 UTC MAIN commitmail json YAML

Note update of the "glib2" package to version 2.32.1nb1.

(tron)

2012-05-01 07:05:59 UTC MAIN commitmail json YAML

Only depend on "libelf" on platforms that actually use ELF as their
binary format. Bump package revision because of this dependence change.

(tron)

2012-05-01 06:51:21 UTC MAIN commitmail json YAML

Updated net/mikutter to 0.1.0.772

(obache)

2012-05-01 06:50:53 UTC MAIN commitmail json YAML

Update mikutter to 0.1.0.772.
(switched to use system oauth module again).

bug fixes.

(obache)

2012-05-01 05:35:04 UTC MAIN commitmail json YAML

disable-more-warnings for gcc<4.2, or gcc>=4.2 specific -Werr=XXX flags will be
used unconditionally and result in build failure.

(obache)

2012-05-01 04:54:03 UTC MAIN commitmail json YAML

disable-more-warnings for gcc<4.2, or gcc>=4.2 specific -Werr=XXX flags will be
used uncoditionally and result in build failure.

(obache)

2012-05-01 02:51:14 UTC MAIN commitmail json YAML

Note update of bind packages:

net/bind99 9.9.0nb1
net/bind98 9.8.2nb1
net/bind97 9.7.5nb1
net/bind96 9.6.3.1.ESV.6nb1

(taca)

2012-05-01 02:49:27 UTC MAIN commitmail json YAML

Add fix to a race condition in the resolver code that can cause a recursive
nameserver: <https://kb.isc.org/article/AA-00664>.

Bump PKGREVISION.

(taca)

2012-05-01 02:48:58 UTC MAIN commitmail json YAML

Add fix to a race condition in the resolver code that can cause a recursive
nameserver: <https://kb.isc.org/article/AA-00664>.

Bump PKGREVISION.

(taca)

2012-05-01 02:48:20 UTC MAIN commitmail json YAML

Add fix to a race condition in the resolver code that can cause a recursive
nameserver: <https://kb.isc.org/article/AA-00664>.

Bump PKGREVISION.

(taca)

2012-05-01 02:47:52 UTC MAIN commitmail json YAML

Add fix to a race condition in the resolver code that can cause a recursive
nameserver: <https://kb.isc.org/article/AA-00664>.

Bump PKGREVISION.

(taca)

2012-04-30 22:11:19 UTC MAIN commitmail json YAML

Add note pointing to emulators/b-em/hacks.mk for next time.

(dholland)

2012-04-30 21:54:59 UTC MAIN commitmail json YAML

Update hack for new automake version.

(dholland)

2012-04-30 14:32:31 UTC MAIN commitmail json YAML

2012-04-30 14:28:58 UTC MAIN commitmail json YAML

2012-04-30 14:26:38 UTC MAIN commitmail json YAML

2012-04-30 14:25:06 UTC MAIN commitmail json YAML

2012-04-30 14:22:36 UTC MAIN commitmail json YAML

2012-04-30 14:21:04 UTC MAIN commitmail json YAML

2012-04-30 14:17:12 UTC MAIN commitmail json YAML

2012-04-30 14:13:39 UTC MAIN commitmail json YAML

2012-04-30 14:12:05 UTC MAIN commitmail json YAML

2012-04-30 14:06:02 UTC MAIN commitmail json YAML

2012-04-30 14:00:00 UTC MAIN commitmail json YAML

Updated pkgtools/pkg_rolling-replace to 0.24.1

(gdt)

2012-04-30 13:59:39 UTC MAIN commitmail json YAML

Use " for PKGNAME_REQUIRED, so that ${pkg} is expanded.

Resolves at least some issues with finding the right pyNN-foo, when
replacing packages that don't match PYTHON_VERSION_DEFAULT.

(This was a stray change in my tree not committed for a while, but
it's been working ok.)

Now 0.24.1.

(gdt)