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 (4m)  pkgsrc-2024Q1 (15d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (75d)  pkgsrc-2023Q3 (154d) 

2024-05-13 09:11:15 UTC Now

2013-02-16 11:16:16 UTC MAIN commitmail json YAML

Updated graphics/png to 1.6.0nb1

(wiz)

2013-02-16 11:16:07 UTC MAIN commitmail json YAML

Update to 1.6.0:

This release adds a "simplified API" and removes some features
that have been deprecated since libpng.1.5.x.

Changes to Libpng from version 1.5.x to 1.6.x:

A "simplified API" has been added (see documentation in png.h and a simple
example in contrib/examples/pngtopng.c).  The new publicly visible API
includes the following:

  macros:
    PNG_FORMAT_*
    PNG_IMAGE_*
  structures:
    png_control
    png_image
  read functions
    png_image_begin_read_from_file()
    png_image_begin_read_from_stdio()
    png_image_begin_read_from_memory()
    png_image_finish_read()
    png_image_free()
  write functions
    png_image_write_to_file()
    png_image_write_to_stdio()

Starting with libpng-1.6.0, you can configure libpng to prefix all exported
symbols, using the PNG_PREFIX macro.

We no longer include string.h in png.h.  The include statement has been moved
to pngpriv.h, where it is not accessible by applications.  Applications that
need access to information in string.h must add an '#include "string.h"'
directive.  It does not matter whether this is placed prior to or after
the '"#include png.h"' directive.

The following API are now DEPRECATED:
  png_info_init_3()
  png_convert_to_rfc1123() which has been replaced
    with png_convert_to_rfc1123_buffer()
  png_data_freer()
  png_malloc_default()
  png_free_default()
  png_reset_zstream()

The following has been removed:
  png_get_io_chunk_name(), which has been replaced
    with png_get_io_chunk_type().  The new
    function returns a 32-bit integer instead of
    a string.
  The png_sizeof(), png_strlen(), png_memcpy(), png_memcmp(), and
    png_memset() macros are no longer used in the libpng sources and
    have been removed.  These had already been made invisible to
applications
    (i.e., defined in the private pngpriv.h header file) since
libpng-1.5.0.

The signatures of many exported functions were changed, such that
  png_structp became png_structrp or png_const_structrp
  png_infop became png_inforp or png_const_inforp
where "rp" indicates a "restricted pointer".

Error detection in some chunks has improved; in particular the iCCP chunk
reader now does pretty complete validation of the basic format.  Some bad
profiles that were previously accepted are now rejected, in particular the
very old broken Microsoft/HP sRGB profile.

The library now issues a warning if both background processing and RGB to
gray are used when gamma correction happens. As with previous versions of
the library the results are numerically very incorrect in this case.

There are some minor arithmetic changes in some transforms such as
png_set_background(), that might be detected by certain regression tests.

Unknown chunk handling has been improved internally, without any API change.
This adds more correct option control of the unknown handling, corrects
a pre-existing bug where the per-chunk 'keep' setting is ignored, and makes
it possible to skip IDAT chunks in the sequential reader.

(wiz)

2013-02-16 10:53:51 UTC MAIN commitmail json YAML

Correct path to www/squid3.

(kristerw)

2013-02-16 09:34:39 UTC MAIN commitmail json YAML

LICENSE=original-bsd

(obache)

2013-02-16 09:32:29 UTC MAIN commitmail json YAML

check usability of builtin termcap if FETCH_USING=ftp
to avoid circular dependency with termcap from pkgsrc (devel/ncurses).

(obache)

2013-02-16 09:29:20 UTC MAIN commitmail json YAML

2013-02-16 09:29:00 UTC MAIN commitmail json YAML

2013-02-16 08:57:09 UTC MAIN commitmail json YAML

Updated graphics/cdlabelgen to 4.2.0

(shattered)

2013-02-16 08:56:45 UTC MAIN commitmail json YAML

Update to 4.2.0.  Notable changes:

  * --tray-overlay option added - use this to overlay a EPS file onto the
      tray, for example, a barcode image.
  * cdinsert.pl now used to display initial form, as well as a
    filled-in form to allow for easy corrections/resubmits on the done page.
  * Create covers for double-sided DVD cases that hold 6 DVDs.
  * cdinsert.pl now supports "Omit title/subtitle from Cover" option.
  * Support for double-depth slim DVD cases. --slim-double-case option added.

(shattered)

2013-02-16 07:32:29 UTC MAIN commitmail json YAML

Remove fetched file if fetch command succeeds to fetch but checksum mismatch
with PKG_RESUME_TRANSFERS=YES.

PR 39896.

(obache)

2013-02-16 01:46:27 UTC MAIN commitmail json YAML

2013-02-16 00:03:44 UTC MAIN commitmail json YAML

note update of math/py-pandas to 0.10.1

(bad)

2013-02-16 00:02:19 UTC MAIN commitmail json YAML

Update pandas to 0.10.1.

Release date: 2013-01-22

New features:

        Add data inferface to World Bank WDI pandas.io.wb (GH2592)

API Changes:

        Restored inplace=True behavior returning self (same object) with
  deprecation warning until 0.11 (GH1893)
        HDFStore
            refactored HFDStore to deal with non-table stores as objects, will
      allow future enhancements
            removed keyword compression from put (replaced by keyword complib
      to be consistent across library)
            warn PerformanceWarning if you are attempting to store types that
      will be pickled by PyTables

Improvements to existing features:

        HDFStore
            enables storing of multi-index dataframes (closes GH1277)
            support data column indexing and selection, via data_columns
      keyword in append
            support write chunking to reduce memory footprint, via chunksize
      keyword to append
            support automagic indexing via index keyword to append
            support expectedrows keyword in append to inform PyTables about
      the expected tablesize
            support start and stop keywords in select to limit the row
      selection space
            added get_store context manager to automatically import with pandas
            added column filtering via columns keyword in select
            added methods append_to_multiple/select_as_multiple/
      select_as_coordinates to do multiple-table append/selection
            added support for datetime64 in columns
            added method unique to select the unique values in an indexable
      or data column
            added method copy to copy an existing store (and possibly upgrade)
            show the shape of the data on disk for non-table stores when
      printing the store
            added ability to read PyTables flavor tables (allows compatiblity
      to other HDF5 systems)
        Add logx option to DataFrame/Series.plot (GH2327, GH2565)
        Support reading gzipped data from file-like object
        pivot_table aggfunc can be anything used in GroupBy.aggregate (GH2643)
        Implement DataFrame merges in case where set cardinalities might
  overflow 64-bit integer (GH2690)
        Raise exception in C file parser if integer dtype specified and have
  NA values. (GH2631)
        Attempt to parse ISO8601 format dates when parse_dates=True in read_csv
  for major performance boost in such cases (GH2698)
        Add methods neg and inv to Series
        Implement kind option in ExcelFile to indicate whether it's an XLS
  or XLSX file (GH2613)

Bug fixes:

        Fix read_csv/read_table multithreading issues (GH2608)
        HDFStore
            correctly handle nan elements in string columns; serialize via the
      nan_rep keyword to append
            raise correctly on non-implemented column types (unicode/date)
            handle correctly Term passed types (e.g. index<1000, when index is
      Int64), (closes GH512)
            handle Timestamp correctly in data_columns (closes GH2637)
            contains correctly matches on non-natural names
            correctly store float32 dtypes in tables (if not other float types
      in the same table)
        Fix DataFrame.info bug with UTF8-encoded columns. (GH2576)
        Fix DatetimeIndex handling of FixedOffset tz (GH2604)
        More robust detection of being in IPython session for wide DataFrame
  console formatting (GH2585)
        Fix platform issues with file:/// in unit test (GH2564)
        Fix bug and possible segfault when grouping by hierarchical level that
  contains NA values (GH2616)
        Ensure that MultiIndex tuples can be constructed with NAs (GH2616)
        Fix int64 overflow issue when unstacking MultiIndex with many levels
  (GH2616)
        Exclude non-numeric data from DataFrame.quantile by default (GH2625)
        Fix a Cython C int64 boxing issue causing read_csv to return incorrect
  results (GH2599)
        Fix groupby summing performance issue on boolean data (GH2692)
        Don't bork Series containing datetime64 values with to_datetime (GH2699)
        Fix DataFrame.from_records corner case when passed columns, index
  column, but empty record list (GH2633)
        Fix C parser-tokenizer bug with trailing fields. (GH2668)
        Don't exclude non-numeric data from GroupBy.max/min (GH2700)
        Don't lose time zone when calling DatetimeIndex.drop (GH2621)
        Fix setitem on a Series with a boolean key and a non-scalar as value
  (GH2686)
        Box datetime64 values in Series.apply/map (GH2627, GH2689)
        Upconvert datetime + datetime64 values when concatenating frames
  (GH2624)
        Raise a more helpful error message in merge operations when one
  DataFrame has duplicate columns (GH2649)
        Fix partial date parsing issue occuring only when code is run at EOM
  (GH2618)
        Prevent MemoryError when using counting sort in sortlevel with
  high-cardinality MultiIndex objects (GH2684)
        Fix Period resampling bug when all values fall into a single bin
  (GH2070)
        Fix buggy interaction with usecols argument in read_csv when there is
  an implicit first index column (GH2654)

(bad)

2013-02-15 23:56:39 UTC MAIN commitmail json YAML

Ride previous commit and include the egg-file in the PLIST.

(bad)

2013-02-15 23:55:08 UTC MAIN commitmail json YAML

Don't depend on py-gobject and py-gtk2 directly, use the py-gtk2 buildlink3.mk.
Use python/distutils.mk as it should.
Use shared-mime-info/mimedb.mk as it should and remove file managed by
shared-mime-info from PLIST.

This makes zim not abort when started.

Bump PKGREVISION.

(bad)

2013-02-15 19:17:21 UTC MAIN commitmail json YAML

Update to 0.8.6.  Changes:
- fixed a bug in ezxml_add_child() that can occur when adding tags out of order
- for consistency, ezxml_set_attr() now returns the tag given
- added ezxml_move() and supporting functions ezxml_cut() and ezxml_insert()
- fixed a bug where parsing an empty file could cause a segfault

(shattered)

2013-02-15 15:43:19 UTC MAIN commitmail json YAML

Note update of contao30 packages:

www/contao30 3.0.4
www/contao30-example 3.0.4

(taca)

2013-02-15 15:42:16 UTC MAIN commitmail json YAML

Update contao30 to 3.0.4.
This relase contains fix for CVE-2012-6112(TinyMCE), too.

Version 3.0.4 (2013-02-14)
--------------------------

### Fixed
Correctly split the words when adding to the search index (see #5363).

### Fixed
If an eagerly loaded relation does not exist, return `null` instead of an empty
model in `Model::getRelated()` (see #5356).

### Fixed
Throw an exception if the file system and the database are out of sync and
show a meaningful error message (see #5101).

### Fixed
Return an associative array in `Model_Collection::fetchEach()` if the requested
field is **not** `id` (see #5134).

### Fixed
Make eagerly loaded "pageTree" fields mandatory again (see #4866).

### Fixed
Do not use forward pages as upper page in the book navigation (see #5074).

### Fixed
Correctly show the "empty news list" note (see #5304).

### Fixed
Correctly sort values by an external order field (see #5322).

### Fixed
Define the login status constants in the back end (see #4099, #5279).

### Fixed
Make sure the drag'n'drop hints do not overlay the field labels (see #5338).

### Fixed
Apply the color picker to single fields as well (see #5240).

### Fixed
Correctly close the SimpleModal overlay with the escape key (see #5297).

### Updated
Update TinyMCE to version 3.5.8 (see #5273).

### Fixed
Correctly check for nested arrays in `Widget::isValidOption()` (see #5328).

### Fixed
Preserve the order of multi source fields when exporting a theme (see #5237).

### Fixed
Also check whether the target exists when creating new folders (see #5260).

### Fixed
Load the core `autoload.php` files first (see #5261).

### Fixed
Support `null` as column default value in the DCA (see #5252).

### New
Added the `$blnDoNotCreate` option to the `Files` class, which makes the class
write to a temporary file first and then move it to its destination in one
atomic operation. This fixes some cache issues (see #5307).

### Fixed
Handle `@` blocks when importing style sheets (see #5250).

### Fixed
Show the newsletter list even if there is no jumpTo page configured in the
channel and show the enclosures in the newsletter reader (see #5233).

### Fixed
Added an option to load model relations uncached (see #5248, #5102). Also fixed
the `array_merge()` order so the default options can be overriden.

### Updated
Updated SimplePie to version 1.3.1 (see #5207).

### Updated
Updated SwiftMailer to version 4.3.0 (see #5263).

### Fixed
The jQuery accordion script did not work with minified markup (see #5245).

### Fixed
Removed the "spaceToUnderscore" option from all alias fields (see #5266).

### Fixed
The media content element now supports .ogg files (see #5282).

### Fixed
Do not rewrite requests for .mp3, .mp4, .webm or .ogv files (see #5258, #5284).

### Fixed
Correctly determin the last run of the command scheduler (see #5278).

### Fixed
Make the jQuery accordion behave like the MooTools version (see #5251).

### Fixed
Added support for more advanced media queries (see #5236).

### Fixed
Added the missing `UserGroupModel` class (see #5218).

### Fixed
Handle the case that `glob()` returns `false` (see #5226).

### Fixed
The table sorter did not work if jQuery and MooTools were active (see #5228).

### Fixed
Copy all content elements if pages are duplicated with childs (see #5241).

### Fixed
Added lazy template loading for newsletter mail templates.

(taca)

2013-02-15 14:47:41 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup tickets #4071, #4072, #4073 and #4074.

(tron)

2013-02-15 14:46:47 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4074 - requested by drochner
security/gnutls: security update

Revisions pulled up:
- security/gnutls/Makefile                                      1.123-1.124
- security/gnutls/distinfo                                      1.92

---
  Module Name:    pkgsrc
  Committed By:  drochner
  Date:          Tue Jan 15 11:29:21 UTC 2013

  Modified Files:
          pkgsrc/security/gnutls: Makefile

  Log Message:
  wants to use pkg-config

---
  Module Name:    pkgsrc
  Committed By:  drochner
  Date:          Tue Feb 12 13:16:25 UTC 2013

  Modified Files:
          pkgsrc/security/gnutls: Makefile distinfo

  Log Message:
  update to 3.0.28
  changes: bugfixes

  This prevents the recent TLS CBC padding timing attack (CVE-2013-1619).

(tron)

2013-02-15 14:34:32 UTC MAIN commitmail json YAML

2013-02-15 13:51:53 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4073 - requested by taca
databases/ruby-activerecord3: security patch
devel/ruby-activemodel: security patch

Revisions pulled up:
- databases/ruby-activerecord3/Makefile                        1.9
- databases/ruby-activerecord3/distinfo                        1.19-1.20
- databases/ruby-activerecord3/patches/patch-lib_active__record_attribute__methods_write.rb 1.1-1.2
- devel/ruby-activemodel/Makefile                              1.12
- devel/ruby-activemodel/distinfo                              1.19-1.20
- devel/ruby-activemodel/patches/patch-lib_active__model_attribute__methods.rb 1.1-1.2

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 13:23:20 UTC 2013

  Modified Files:
  pkgsrc/databases/ruby-activerecord3: Makefile distinfo
  Added Files:
  pkgsrc/databases/ruby-activerecord3/patches:
      patch-lib_active__record_attribute__methods_write.rb

  Log Message:
  Add fix for Fix for CVE-2013-0277.

  Bump PKGREVISION.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed Feb 13 14:08:07 UTC 2013

  Modified Files:
  pkgsrc/databases/ruby-activerecord3: distinfo
  pkgsrc/databases/ruby-activerecord3/patches:
      patch-lib_active__record_attribute__methods_write.rb

  Log Message:
  Correct comment in a patch file.

  This change dosen't fix CVE-2013-0276 but give workaround for it.

  No PKGREVISION bump.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 15:30:42 UTC 2013

  Modified Files:
  pkgsrc/devel/ruby-activemodel: Makefile distinfo
  Added Files:
  pkgsrc/devel/ruby-activemodel/patches:
      patch-lib_active__model_attribute__methods.rb

  Log Message:
  Add fix for CVE-2013-0276.

  Bump PKGREVISION.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed Feb 13 14:07:31 UTC 2013

  Modified Files:
  pkgsrc/devel/ruby-activemodel: distinfo
  pkgsrc/devel/ruby-activemodel/patches:
      patch-lib_active__model_attribute__methods.rb

  Log Message:
  Correct comment in a patch file.

  This change dosen't fix CVE-2013-0276 but give workaround for it.

  No PKGREVISION bump.

(tron)

2013-02-15 13:32:28 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4072 - requested by taca
databases/ruby-activerecord32: security update
devel/ruby-activemodel32: security update
devel/ruby-activesupport32: security update
devel/ruby-railties32: security update
mail/ruby-actionmailer32: security update
www/ruby-actionpack32: security update
www/ruby-activeresource32: security update
www/ruby-rails32: security update

Revisions pulled up:
- databases/ruby-activerecord32/distinfo                        1.10
- devel/ruby-activemodel32/distinfo                            1.10
- devel/ruby-activesupport32/distinfo                          1.10
- devel/ruby-railties32/Makefile                                1.4
- devel/ruby-railties32/distinfo                                1.10
- lang/ruby/rails.mk                                            1.40
- mail/ruby-actionmailer32/distinfo                            1.10
- www/ruby-actionpack32/distinfo                                1.10
- www/ruby-activeresource32/distinfo                            1.10
- www/ruby-rails32/distinfo                                    1.10

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 14:28:10 UTC 2013

  Modified Files:
  pkgsrc/lang/ruby: rails.mk

  Log Message:
  Start update of Ruby on Rails 3.2.12.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 14:28:59 UTC 2013

  Modified Files:
  pkgsrc/devel/ruby-activesupport32: distinfo

  Log Message:
  Update ruby-activesupport32 to 3.2.12.

  Change of version only.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 14:29:48 UTC 2013

  Modified Files:
  pkgsrc/devel/ruby-activemodel32: distinfo

  Log Message:
  Update ruby-activemodel32 to 3.2.12.

  Change of version only.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 14:30:48 UTC 2013

  Modified Files:
  pkgsrc/www/ruby-activeresource32: distinfo

  Log Message:
  Update ruby-activeresource32 to 3.2.12.

  Change of version only.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 14:31:19 UTC 2013

  Modified Files:
  pkgsrc/databases/ruby-activerecord32: distinfo

  Log Message:
  Update ruby-activerecord32 to 3.2.12.

  ## Rails 3.2.12 (unreleased) ##

  *  Quote numeric values being compared to non-numeric columns. Otherwise,
      in some database, the string column values will be coerced to a numeric
      allowing 0, 0.0 or false to match any string starting with a non-digit.

      Example:

          App.where(apikey: 0) # => SELECT * FROM users WHERE apikey = '0'

      *Dylan Smith*

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 14:31:52 UTC 2013

  Modified Files:
  pkgsrc/www/ruby-actionpack32: distinfo

  Log Message:
  Update ruby-actionpack32 to 3.2.12.

  Change of version only.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 14:32:32 UTC 2013

  Modified Files:
  pkgsrc/mail/ruby-actionmailer32: distinfo

  Log Message:
  Update of ruby-actionmailer32 to 3.2.12.

  Change of version only.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 14:33:08 UTC 2013

  Modified Files:
  pkgsrc/devel/ruby-railties32: Makefile distinfo

  Log Message:
  Update ruby-railties32 to 3.2.12.

  Change of version only.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 14:33:42 UTC 2013

  Modified Files:
  pkgsrc/www/ruby-rails32: distinfo

  Log Message:
  Update ruby-rails32 to 3.2.12.

  Change of version only.

(tron)

2013-02-15 11:54:10 UTC MAIN commitmail json YAML

2013-02-15 11:23:45 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4071 - requested by taca
databases/ruby-activerecord31: security update
devel/ruby-activemodel31: security update
devel/ruby-activesupport31: security update
devel/ruby-railties31: security update
mail/ruby-actionmailer31: security update
www/ruby-actionpack31: security update
www/ruby-activeresource31: security update
www/ruby-rails31: security update

Revisions pulled up:
- databases/ruby-activerecord31/distinfo                        1.9
- devel/ruby-activemodel31/distinfo                            1.9
- devel/ruby-activesupport31/distinfo                          1.10
- devel/ruby-railties31/Makefile                                1.6
- devel/ruby-railties31/distinfo                                1.9
- lang/ruby/rails.mk                                            1.39
- mail/ruby-actionmailer31/distinfo                            1.9
- www/ruby-actionpack31/distinfo                                1.10
- www/ruby-activeresource31/distinfo                            1.9
- www/ruby-rails31/distinfo                                    1.9

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 14:16:07 UTC 2013

  Modified Files:
  pkgsrc/lang/ruby: rails.mk

  Log Message:
  Start update of Ruby on Rails 3.1.11.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 14:17:07 UTC 2013

  Modified Files:
  pkgsrc/devel/ruby-activesupport31: distinfo

  Log Message:
  Update ruby-activesupport31 to 3.1.11.

  ## Rails 3.1.11 (unreleased) ##

  * Allow `multi_json` version `>= 1.3`, relaxing back to semantic versioning
    2.0.0 (revert of #5861)
    Backport of #5896

    *Alex Riedler*

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 14:18:08 UTC 2013

  Modified Files:
  pkgsrc/devel/ruby-activemodel31: distinfo

  Log Message:
  Update ruby-activemodel31 to 3.1.11.

  Change of version only.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 14:19:10 UTC 2013

  Modified Files:
  pkgsrc/www/ruby-activeresource31: distinfo

  Log Message:
  Update ruby-activeresource31 to 3.1.11.

  Change of version only.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 14:21:05 UTC 2013

  Modified Files:
  pkgsrc/databases/ruby-activerecord31: distinfo

  Log Message:
  Update ruby-activerecord31 to 3.1.11.

  ## Rails 3.1.11 (unreleased) ##

  *  Quote numeric values being compared to non-numeric columns. Otherwise,
      in some database, the string column values will be coerced to a numeric
      allowing 0, 0.0 or false to match any string starting with a non-digit.

      Example:

          App.where(apikey: 0) # => SELECT * FROM users WHERE apikey = '0'

      *Dylan Smith*

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 14:22:03 UTC 2013

  Modified Files:
  pkgsrc/www/ruby-actionpack31: distinfo

  Log Message:
  Update ruby-actionpack31 to 3.1.11.

  ## Rails 3.1.11 (unreleased)

  * Fixed JSON params parsing regression for non-object JSON content.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 14:22:43 UTC 2013

  Modified Files:
  pkgsrc/mail/ruby-actionmailer31: distinfo

  Log Message:
  Update ruby-actionmailer331 to 3.1.11.

  Change of version only.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 14:23:36 UTC 2013

  Modified Files:
  pkgsrc/devel/ruby-railties31: Makefile distinfo

  Log Message:
  Update ruby-railties31 to 3.1.11.

  Change of version only.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 14:24:13 UTC 2013

  Modified Files:
  pkgsrc/www/ruby-rails31: distinfo

  Log Message:
  Update of ruby-rails31 to 3.1.11.

  Change of version only.

(tron)

2013-02-15 09:22:50 UTC MAIN commitmail json YAML

check requirement of uac manifest, it is required for Windows Vista
(aka NT-6.0) and later.

(obache)

2013-02-15 09:19:18 UTC MAIN commitmail json YAML

set Cygwin kernel name to OS_VARIANT for further usage.

(obache)

2013-02-14 19:48:11 UTC MAIN commitmail json YAML

Updated security/knc to 1.7.1

(schmonz)

2013-02-14 19:48:04 UTC MAIN commitmail json YAML

Update to 1.7.1. From the changelog:

  * Fix autoconf issues...

(schmonz)

2013-02-14 18:36:47 UTC MAIN commitmail json YAML

Note update of atf and atf-libs to 0.17.

(jmmv)

2013-02-14 18:36:12 UTC MAIN commitmail json YAML

Update atf and atf-libs to 0.17:

* Added the atf_utils_cat_file, atf_utils_compare_file,
  atf_utils_copy_file, atf_utils_create_file, atf_utils_file_exists,
  atf_utils_fork, atf_utils_grep_file, atf_utils_grep_string,
  atf_utils_readline, atf_utils_redirect and atf_utils_wait utility
  functions to atf-c-api.  Documented the already-public
  atf_utils_free_charpp function.

* Added the cat_file, compare_file, copy_file, create_file, file_exists,
  fork, grep_collection, grep_file, grep_string, redirect and wait
  functions to the atf::utils namespace of atf-c++-api.  These are
  wrappers around the same functions added to the atf-c-api library.

* Added the ATF_CHECK_MATCH, ATF_CHECK_MATCH_MSG, ATF_REQUIRE_MATCH and
  ATF_REQUIRE_MATCH_MSG macros to atf-c to simplify the validation of a
  string against a regular expression.

* Miscellaneous fixes for manpage typos and compilation problems with
  clang.

* Added caching of the results of those configure tests that rely on
  executing a test program.  This should help crossbuild systems by
  providing a mechanism to pre-specify what the results should be.

* PR bin/45690: Make atf-report convert any non-printable characters to
  a plain-text representation (matching their corresponding hexadecimal
  entities) in XML output files.  This is to prevent the output of test
  cases from breaking xsltproc later.

(jmmv)

2013-02-14 16:51:32 UTC MAIN commitmail json YAML

Try to fix a possible buffer overrun (CVE-2012-4428). Didn't find
a patch upstream nor anywhere else, hope this is correct. Someone
please review.
Being here, fix a memcpy() size bug on 64-bit systems.
bump PKGREV

(drochner)

2013-02-14 15:53:06 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup tickets #4069 and #4070.

(tron)

2013-02-14 15:52:15 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4070 - requested by taca
textproc/ruby-json: security update
textproc/ruby-json-pure: security update

Revisions pulled up:
- textproc/ruby-json-pure/Makefile                              1.20-1.21
- textproc/ruby-json-pure/distinfo                              1.19-1.20
- textproc/ruby-json/Makefile                                  1.23-1.24
- textproc/ruby-json/distinfo                                  1.19-1.20

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Mon Feb 11 02:43:26 UTC 2013

  Modified Files:
  pkgsrc/textproc/ruby-json: Makefile distinfo
  pkgsrc/textproc/ruby-json-pure: Makefile distinfo

  Log Message:
  Update ruby-json and ruby-json-pure to 1.7.6.

  2012-11-29 (1.7.6)
    * Add GeneratorState#merge alias for JRuby, fix state accessor methods. Thx to
      jvshahid@github.
    * Increase hash likeness of state objects.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 13:13:08 UTC 2013

  Modified Files:
  pkgsrc/textproc/ruby-json: Makefile distinfo
  pkgsrc/textproc/ruby-json-pure: Makefile distinfo

  Log Message:
  Update ruby-json and ruby-json-pure to 1.7.7.

  2013-02-04 (1.7.7)
    * Security fix for JSON create_additions default value and
      JSON::GenericObject. It should not be possible to create additions unless
      explicitely requested by setting the create_additions argument to true or
      using the JSON.load/dump interface. If JSON::GenericObject is supposed to
      be automatically deserialised, this has to be explicitely enabled by
      setting
        JSON::GenericObject.json_createble = true
      as well.
    * Remove useless assert in fbuffer implementation.
    * Apply patch attached to https://github.com/flori/json/issues#issue/155
      provided by John Shahid <jvshahid@gmail.com>, Thx!
    * Add license information to rubygems spec data, reported by Jordi Massaguer
      Pla <jmassaguerpla@suse.de>.
    * Improve documentation, thx to Zachary Scott <zachary@zacharyscott.net>.

(tron)

2013-02-14 14:58:51 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4069 - requested by taca
lang/ruby193-base: security patch

Revisions pulled up:
- lang/ruby193-base/Makefile                                    1.25 via patch
- lang/ruby193-base/PLIST                                      1.7
- lang/ruby193-base/distinfo                                    1.17
- lang/ruby193-base/patches/patch-ext_json_lib_json_add_core.rb 1.1
- lang/ruby193-base/patches/patch-ext_json_lib_json_common.rb  1.1
- lang/ruby193-base/patches/patch-ext_json_lib_json_version.rb  1.1
- lang/ruby193-base/patches/patch-ext_json_parser_parser.c      1.1
- lang/ruby193-base/patches/patch-ext_json_parser_parser.rl    1.1
- lang/ruby193-base/patches/patch-man_erb.1                    1.2
- lang/ruby193-base/patches/patch-man_irb.1                    1.2
- lang/ruby193-base/patches/patch-man_ri.1                      1.2
- lang/ruby193-base/patches/patch-man_ruby.1                    1.2
- lang/ruby193-base/patches/patch-test_json_test__json.rb      1.1
- lang/ruby193-base/patches/patch-test_json_test__json__addition.rb 1.1
- lang/ruby193-base/patches/patch-test_json_test__json__string__matching.rb 1.1

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Tue Feb 12 13:03:09 UTC 2013

  Modified Files:
  pkgsrc/lang/ruby193-base: Makefile PLIST distinfo
  pkgsrc/lang/ruby193-base/patches: patch-man_erb.1 patch-man_irb.1
      patch-man_ri.1 patch-man_ruby.1
  Added Files:
  pkgsrc/lang/ruby193-base/patches: patch-ext_json_lib_json_add_core.rb
      patch-ext_json_lib_json_common.rb
      patch-ext_json_lib_json_version.rb patch-ext_json_parser_parser.c
      patch-ext_json_parser_parser.rl patch-test_json_test__json.rb
      patch-test_json_test__json__addition.rb
      patch-test_json_test__json__string__matching.rb

  Log Message:
  * Add fix for CVE-2013-0269, json vulnerability.
  * Add comments to patches related to mdoc markup.

  Bump PKGREVISION.

(tron)

2013-02-14 14:56:23 UTC MAIN commitmail json YAML

Now that I understand that py-sqlite2 means sqlite3, adjust comments
about trac/ja-trac database differences (which I now perceive as smaller).

(gdt)

2013-02-14 14:53:31 UTC MAIN commitmail json YAML

Add comment explaining that py-sqlite2 is for sqlite3.

(I'm assuming that if I can't follow this, at least some others will
be confused as well.)

This is a comment-only change.

(gdt)

2013-02-14 12:53:02 UTC MAIN commitmail json YAML

I forget to remove this obsolete patch

(manu)

2013-02-14 10:23:32 UTC MAIN commitmail json YAML

Updated x11/xterm to 290

(wiz)

2013-02-14 10:23:21 UTC MAIN commitmail json YAML

Update to 290:
Fixes an incomplete revert of a change in the previous patch, which
caused incorrect display in the scrollback area.

(wiz)

2013-02-14 09:18:38 UTC pkgsrc-2012Q4 commitmail json YAML

2013-02-14 09:17:11 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4047 - requested by tron
net/wireshark: security update

Revisions pulled up:
- net/wireshark/Makefile                                        1.93
- net/wireshark/distinfo                                        1.62

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: tron
  Date: Thu Jan 31 10:40:38 UTC 2013

  Modified Files:
  pkgsrc/net/wireshark: Makefile distinfo

  Log Message:
  Update "wireshark" package to version 1.8.5. Changes since 1.8.4:
  - Bug Fixes
    The following vulnerabilities have been fixed.
      o wnpa-sec-2013-01
        Infinite and large loops in the Bluetooth HCI, CSN.1, DCP-ETSI
        DOCSIS CM-STAUS, IEEE 802.3 Slow Protocols, MPLS, R3, RTPS,
        SDP, and SIP dissectors. Reported by Laurent Butti. (Bugs
        8036, 8037, 8038, 8040, 8041, 8042, 8043, 8198, 8199, 8222)
        Versions affected: 1.8.0 to 1.8.4, 1.6.0 to 1.6.12.
        GENERIC-MAP-NOMATCH
      o wnpa-sec-2013-02
        The CLNP dissector could crash. Discovered independently by
        Laurent Butti and the Wireshark development team. (Bug 7871)
        Versions affected: 1.8.0 to 1.8.4, 1.6.0 to 1.6.12.
        GENERIC-MAP-NOMATCH
      o wnpa-sec-2013-03
        The DTN dissector could crash. (Bug 7945)
        Versions affected: 1.8.0 to 1.8.4, 1.6.0 to 1.6.12.
        GENERIC-MAP-NOMATCH
      o wnpa-sec-2013-04
        The MS-MMC dissector (and possibly others) could crash. (Bug
        8112)
        Versions affected: 1.8.0 to 1.8.4, 1.6.0 to 1.6.12.
        GENERIC-MAP-NOMATCH
      o wnpa-sec-2013-05
        The DTLS dissector could crash. Discovered by Laurent Butti.
        (Bug 8111)
        Versions affected: 1.8.0 to 1.8.4, 1.6.0 to 1.6.12.
        GENERIC-MAP-NOMATCH
      o wnpa-sec-2013-06
        The ROHC dissector could crash. (Bug 7679)
        Versions affected: 1.8.0 to 1.8.4, 1.6.0 to 1.6.12.
        GENERIC-MAP-NOMATCH
      o wnpa-sec-2013-07
        The DCP-ETSI dissector could corrupt memory. Discovered by
        Laurent Butti. (Bug 8213)
        Versions affected: 1.8.0 to 1.8.4, 1.6.0 to 1.6.12.
        GENERIC-MAP-NOMATCH
      o wnpa-sec-2013-08
        The Wireshark dissection engine could crash. Discovered by
        Laurent Butti. (Bug 8197)
        Versions affected: 1.8.0 to 1.8.4, 1.6.0 to 1.6.12.
        GENERIC-MAP-NOMATCH
      o wnpa-sec-2013-09
        The NTLMSSP dissector could overflow a buffer. Discovered by
        Ulf H=E4rnhammar. (Bug X)
        Versions affected: 1.8.0 to 1.8.4, 1.6.0 to 1.6.12.
        GENERIC-MAP-NOMATCH
  - The following bugs have been fixed:
      o SNMPv3 Engine ID registration. (Bug 2426)
      o Wrong decoding of gtp.target identification. (Bug 3974)
      o Reassemble.c leaks memory for GLIB > 2.8. (Bug 4141)
      o Wireshark crashes when starting due to out-of-date plugin left
        behind from earlier installation. (Bug 7401)
      o Failed to dissect TLS handshake packets. (Bug 7435)
      o ISUP dissector problem with empty Generic Number. (Bug 7632)
      o Illegal character is used in temporary capture file name. (Bug
        7877)
      o Lua code crashes wireshark after update to 1.8.3. (Bug 7976)
      o Timestamp info is not saved correctly when writing DOS Sniffer
        files. (Bug 7998)
      o 1.8.3 Wireshark User's Guide version is 1.6. (Bug 8009)
      o Core dumped when the file is closed. (Bug 8022)
      o LPP is misspelled in APDU parameter in
        e-CIDMeasurementInitiation request for LPPA message. (Bug
        8023)
      o Wrong packet bytes are selected for ISUP CUG binary code. (Bug
        8035)
      o Decodes FCoE Group Multicast MAC address as Broadcom MAC
        address. (Bug 8046)
      o The SSL dissector stops decrypting the SSL conversation with
        Malformed Packet:SSL error messages. (Bug 8075)
      o Unable to Save/Apply [Unistim Port] in Preferences. (Bug 8078)
      o Some Information Elements in GTPv2 are not dissected
        correctly. (Bug 8079)
      o Wrong bytes highlighted with "Find Packet...". (Bug 8085)
      o 3GPP ULI AVP. SAI is not correctly decoded. (Bug 8098)
      o Wireshark does not show "Start and End Time" information for
        Cisco Netflow/IPFIX with type 154 to 157. (Bug 8105)
      o GPRS Tunnel Protocoll GTP Version 1 does not decode DAF flag
        in Common Flags IE. (Bug 8193)
      o Wrong parcing of ULI of gtpv2 messages - errors in SAC, RAC &
        ECI. (Bug 8208)
      o Version Number in EtherIP dissector. (Bug 8211)
      o Warn Dissector bug, protocol JXTA. (Bug 8212)
      o Electromagnetic Emission Parser parses field Event Id as
        Entity Id. (Bug 8227)
  - Updated Protocol Support
    ANSI IS-637-A, ASN.1 PER, AX.25, Bluetooth HCI, CLNP, CSN.1,
    DCP-ETSI, DIAMETER, DIS PDU, DOCSIS CM-STATUS, DTLS, DTN, EtherIP,
    Fibre Channel, GPRS, GTP, GTPv2, HomePlug AV, IEEE 802.3 Slow,
    IEEE 802.15.4, ISUP, JXTA, LAPD, LPPa, MPLS, MS-MMC, NAS-EPS,
    NTLMSSP, ROHC, RSL, RTPS, SDP, SIP, SNMP, SSL
  - New and Updated Capture File Support
    DOS Sniffer

  To generate a diff of this commit:
  cvs rdiff -u -r1.92 -r1.93 pkgsrc/net/wireshark/Makefile
  cvs rdiff -u -r1.61 -r1.62 pkgsrc/net/wireshark/distinfo

(spz)

2013-02-14 09:13:42 UTC MAIN commitmail json YAML

Fix OPSYS for Cygwin (formerly using CYGWIN before importing Cygwin support).

(obache)

2013-02-14 06:14:37 UTC MAIN commitmail json YAML

2013-02-14 02:54:04 UTC MAIN commitmail json YAML

Updated devel/mr to 1.14

(schmonz)

2013-02-14 02:53:23 UTC MAIN commitmail json YAML

Update to 1.14. From the changelog:

  * Added a fetch command. Closes: #480580
  * status: Now includes information about unpushed changes,
    for git, git-svn, hg, and bzr. Closes: #693021
  * Added lib/vis, an add-on to visualise repo history.
    Closes: #693022 Thanks, Paul Wise
  * Drop an extra -m from various commit/record commands.
    Closes: #695478 Thanks, Paul Wise

(schmonz)

2013-02-13 21:33:33 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4044 - requested by tron
mk/checksum/checksum: build fix for MacOS

Revisions pulled up:
- mk/checksum/checksum                                          1.14

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: tron
  Date: Mon Jan 28 11:29:30 UTC 2013

  Modified Files:
  pkgsrc/mk/checksum: checksum

  Log Message:
  Also fix the "patch" target for patch files with broken UTF-8 sequences
  in them under Mac OS X Mountain Lion.

  The previous change only fixed the "makedistinfo" target.

  To generate a diff of this commit:
  cvs rdiff -u -r1.13 -r1.14 pkgsrc/mk/checksum/checksum

(spz)

2013-02-13 21:02:49 UTC MAIN commitmail json YAML

Added databases/mysql56-{client,server} version 5.6.10

(adam)

2013-02-13 21:00:11 UTC MAIN commitmail json YAML

2013-02-13 20:59:36 UTC MAIN commitmail json YAML

Added databases/mysql56-{client,server} version 5.6.10

(adam)

2013-02-13 19:19:59 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup tickets #4062, #4063, #4064, #4065, #4066 and #4067.

(tron)

2013-02-13 19:14:00 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4068 - requested by obache
multimedia/adobe-flash-plugin11: security update

Revisions pulled up:
- multimedia/adobe-flash-plugin11/Makefile                      1.12
- multimedia/adobe-flash-plugin11/distinfo                      1.11

---
  Module Name: pkgsrc
  Committed By: obache
  Date: Wed Feb 13 11:24:21 UTC 2013

  Modified Files:
  pkgsrc/multimedia/adobe-flash-plugin11: Makefile distinfo

  Log Message:
  Update adobe-flash-plugin11 to 11.2.202.270 for APSB-13-05.

(tron)

2013-02-13 19:11:55 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4067 - requested by obache
multimedia/adobe-flash-plugin10.1: security update

Revisions pulled up:
- multimedia/adobe-flash-plugin10.1/Makefile                    1.24
- multimedia/adobe-flash-plugin10.1/distinfo                    1.15

---
  Module Name: pkgsrc
  Committed By: obache
  Date: Wed Feb 13 11:23:10 UTC 2013

  Modified Files:
  pkgsrc/multimedia/adobe-flash-plugin10.1: Makefile distinfo

  Log Message:
  Update adobe-flash-plugin10.1 to 10.3.183.61 for APSB-13-04 and APSB-13-05.

(tron)

2013-02-13 19:09:07 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4066 - requested by drochner
www/curl: security patch

Revisions pulled up:
- www/curl/Makefile                                            1.123 via patch
- www/curl/distinfo                                            1.81
- www/curl/patches/patch-CVE-2013-0249                          1.1

---
  Module Name:    pkgsrc
  Committed By:  drochner
  Date:          Fri Feb  8 15:45:42 UTC 2013

  Modified Files:
          pkgsrc/www/curl: Makefile distinfo
  Added Files:
          pkgsrc/www/curl/patches: patch-CVE-2013-0249

  Log Message:
  add patch from upstream to fix SASL buffer overflow vulnerability
  (CVE-2013-0249), bump PKGREV

(tron)

2013-02-13 19:04:07 UTC MAIN commitmail json YAML

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

(tron)

2013-02-13 19:03:57 UTC MAIN commitmail json YAML

Update "phpmyadmin" package to version 3.5.6. Changes since 3.5.5:
- bug #3593604 [status] Erroneous advisor rule
- bug #3596070 [status] localStorage broken in server status monitor
- bug #3598736 [routines] Editing a procedure with special characters
- bug #3600322 [core] Visualize GIS data throws Fatal Error
- bug #3599362 [core] Double-escaped error message
- bug #3776 [cookies] Login without auth on second server

(tron)

2013-02-13 18:52:58 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4065 - requested by drochner
devel/boost-headers: security patch

Revisions pulled up:
- devel/boost-headers/Makefile                                  1.24
- meta-pkgs/boost/distinfo                                      1.56
- meta-pkgs/boost/patches/patch-CVE-2013-0252_1                1.1
- meta-pkgs/boost/patches/patch-CVE-2013-0252_2                1.1

---
  Module Name:    pkgsrc
  Committed By:  drochner
  Date:          Tue Feb  5 18:49:06 UTC 2013

  Modified Files:
          pkgsrc/devel/boost-headers: Makefile
          pkgsrc/meta-pkgs/boost: distinfo
  Added Files:
          pkgsrc/meta-pkgs/boost/patches: patch-CVE-2013-0252_1
              patch-CVE-2013-0252_2

  Log Message:
  add patch from upstream to fix insuficcient validation of UTF-8 strings
  which is considered a security problem
  bump PKGREV for the affected header, didn't check yet where this
  header is compiled into
  (boost-1.53 is out, just added the patch for a possible pullup)

(tron)

2013-02-13 18:46:02 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4064 - requested by he
audio/pulseaudio: build fix

Revisions pulled up:
- audio/pulseaudio/distinfo                                    1.35
- audio/pulseaudio/options.mk                                  1.5
- audio/pulseaudio/patches/patch-configure                      1.2
- audio/pulseaudio/patches/patch-src_Makefile.in                1.2

---
  Module Name: pkgsrc
  Committed By: tsutsui
  Date: Tue Jan 29 15:02:24 UTC 2013

  Modified Files:
  pkgsrc/audio/pulseaudio/patches: patch-configure

  Log Message:
  Always use atomic_ops(3) on NetBSD even on arm, i.e. kill Linux-ARM'ism.
  Fixes configure failure on NetBSD/arm 6.0.

  Also add patch comment.

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Tue Jan 29 15:34:47 UTC 2013

  Modified Files:
  pkgsrc/audio/pulseaudio/patches: patch-src_Makefile.in

  Log Message:
  Add comment.

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Tue Jan 29 15:34:55 UTC 2013

  Modified Files:
  pkgsrc/audio/pulseaudio: distinfo

  Log Message:
  regen

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Tue Jan 29 15:35:04 UTC 2013

  Modified Files:
  pkgsrc/audio/pulseaudio: options.mk

  Log Message:
  Whitespace cleanup for pkglint.

(tron)

2013-02-13 18:43:16 UTC MAIN commitmail json YAML

Updated x11/gtk2 to 2.24.15

(adam)

2013-02-13 18:39:39 UTC MAIN commitmail json YAML

Changes 2.24.15:
* Bug fixes:
626499 GtkClipboard unnotified on change of OS X pasteboard owner
656565 Signalify (already existing) GtkMenuShell.insert()
664640 CUPS authentication does not work
669808 fullscreen/unscreen was broken for Quartz on OS X earli...
674556 File chooser dialog does not save its sizes
679883 When printing Custom paper sizes GTK Print Dialog does ...
683511 spinbutton: fix xthickness bug when resizing the text a...
689810 Include guard optimization
689982 Make GChecksum more fully introspectable
690788 Critical in gtknotebook dnd with rgba colormap
692099 autogen.sh doesn't recognize automake 1.13
692554 entry: never use GTK_STATE_ACTIVE to paint the background
692810 Fails to build with the gold linker due to missing refe...
        Fix scrolling in insensitive modal dialogs
* Translation updates
Norwegian bokm奪l

(adam)

2013-02-13 18:23:59 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4063 - requested by he
pkgsrc/multimedia/gmplayer: build fix
pkgsrc/multimedia/mencoder: build fix
pkgsrc/multimedia/mplayer: build fix

Revisions pulled up:
- multimedia/gmplayer/distinfo                                  1.80
- multimedia/mplayer-share/Makefile.common                      1.52
- multimedia/mplayer-share/distinfo                            1.80
- multimedia/mplayer-share/patches/patch-aa                    1.31

---
  Module Name: pkgsrc
  Committed By: jmcneill
  Date: Thu Jan 10 23:30:53 UTC 2013

  Modified Files:
  pkgsrc/multimedia/mplayer-share: Makefile.common

  Log Message:
  libavutil moved to ffmpeg/libavutil, fix for arm build

---
  Module Name: pkgsrc
  Committed By: jmcneill
  Date: Sat Jan 12 11:55:35 UTC 2013

  Modified Files:
  pkgsrc/multimedia/gmplayer: distinfo
  pkgsrc/multimedia/mplayer-share: distinfo
  pkgsrc/multimedia/mplayer-share/patches: patch-aa

  Log Message:
  Fix configure script to correctly identify the host architecture on
  NetBSD/evbarm.

(tron)

2013-02-13 18:20:45 UTC MAIN commitmail json YAML

PLIST fix for LDAP option enabled

(adam)

2013-02-13 17:11:02 UTC MAIN commitmail json YAML

Updated www/trac to 1.0

(gdt)

2013-02-13 17:10:45 UTC MAIN commitmail json YAML

Update to 1.0.

The only significant packaging change is to drop the dependency on
py-subversion.  It's still needed to use subversion repositories, but
use of svn is now optional.

Update provided by Martin Resnick of BBN, with minor tweaks by me.

Trac 1.0 'Cell' (September 7, 2012)
http://svn.edgewall.org/repos/trac/tags/trac-1.0

Trac 1.0 is a major release adding refreshed user interface and
improved DVCS repository support as the most visible changes.

The following list contains only a few highlights:

- The default theme looks more modern, especially on recent browsers
  (no effort has been made to make it look better on older browsers
  like IE6 or 7)
- The TracHacks GitPlugin has been donated by Herbert Valerio Riedel
  to the Trac project (many thanks!) and is now maintained here as an
  optional component
- As a consequence, the Subversion support has been moved below
  `tracopt.versioncontrol` as well
- The Git and Mercurial log view feature a visualization of the
  branching structure
- Usability improvements for the tickets, with a better support for
  conflict detection and resolution
- Integration of the TracHacks BatchModifyPlugin, contributed by
  Brian Meeker (many thanks!) and is now maintained there as a
  default component
- jQuery/UI integration, featuring a date picker for date fields
- Improved integration with Pygments syntax highlighting
- ... and numerous smaller features added and bugs fixed since 0.12!

(gdt)

2013-02-13 16:18:36 UTC MAIN commitmail json YAML

Note update of textproc/ruby-multi_json package to 1.6.0.

(taca)

2013-02-13 16:17:51 UTC MAIN commitmail json YAML

Update ruby-multi_json to 1.6.0.

1.6.0
-----
* [Add gson.rb support](https://github.com/intridea/multi_json/pull/71)
* [Add MultiJson.default_options](https://github.com/intridea/multi_json/pull/70)
* [Add MultiJson.with_adapter](https://github.com/intridea/multi_json/pull/67)
* [Stringify all possible keys for ok_json](https://github.com/intridea/multi_json/pull/66)
* [Alias `MultiJson::DecodeError` to `MultiJson::LoadError`](https://github.com/intridea/multi_json/pull/79)

(taca)

2013-02-13 15:46:15 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4062 - requested by he
textproc/icu: build fix

Revisions pulled up:
- textproc/icu/hacks.mk                                        1.1

---
  Module Name: pkgsrc
  Committed By: jmcneill
  Date: Fri Feb  1 03:44:22 UTC 2013

  Added Files:
  pkgsrc/textproc/icu: hacks.mk

  Log Message:
  Fix NetBSD build with gcc <= 4.5 on arm (missing builtin atomics).

(tron)

2013-02-13 15:43:18 UTC MAIN commitmail json YAML

Note update of www/heel package to 3.0.1.

(taca)

2013-02-13 15:42:54 UTC MAIN commitmail json YAML

Update heel to 3.0.1.

= Changelog
== Version 3.0.1 - 2013-02-06

* Switch to using puma for the webserver
* Switch to using simplecov for coverage testing
* Update all gem dependencies
* Update to fixme project template
* Convert to minitest

== Version 2.1.0 - 2011-03-17

* Update to Launchy 1.0.0
* Update to Thin 1.2.8

(taca)

2013-02-13 15:42:03 UTC MAIN commitmail json YAML

Note addition of www/ruby-puma package version 1.6.3.

(taca)

2013-02-13 15:41:38 UTC MAIN commitmail json YAML

Add and enable ruby-puma.

(taca)

2013-02-13 15:41:00 UTC MAIN commitmail json YAML

Update ruby-puma to 1.6.3.

Puma: A Ruby Web Server Built For Concurrency

Puma is a simple, fast, and highly concurrent HTTP 1.1 server for Ruby web
applications.  It can be used with any application that supports Rack, and is
considered the replacement for Webrick and Mongrel.  It was designed to be the
go-to server for Rubinius, but also works well with JRuby and MRI.  Puma is
intended for use in both development and production environments.

(taca)

2013-02-13 15:37:55 UTC MAIN commitmail json YAML

Note update of misc/ruby-launchy package to 2.2.0.

(taca)

2013-02-13 15:37:05 UTC MAIN commitmail json YAML

Update ruby-launchy to 2.2.0.

= Launchy Changlog
== Version 2.2.0 - 2013-02-06

* Change XFCE detection to not depend on grep (copiousfreetime/launchy#52 -
  thanks bogdan)
* Suppress forked process output (copiousfreetime/launchy#51)
* Display help/usage if no url is given (copiousfreetime/launchy#54)
* Detect the fluxbox environment (copiousfreetime/launchy#53)
* Automatically detect 'http' url's if they are missing the 'http://'
  (copiousfreetime/launchy#55)
* Update to latest project management rake tasks

(taca)

2013-02-13 15:26:47 UTC MAIN commitmail json YAML

Note update of print/ruby-pdf-reader package to 1.3.1.

(taca)

2013-02-13 15:26:12 UTC MAIN commitmail json YAML

Update ruby-pdf-reader to 1.3.1.

v1.3.1 (12th February 2013)
- various bug fixes

(taca)

2013-02-13 15:24:42 UTC MAIN commitmail json YAML

Note addition of www/ruby-padrino-contrib package version 0.1.13.

(taca)

2013-02-13 15:23:56 UTC MAIN commitmail json YAML

Add and enable ruby-padrino-contrib.

(taca)

2013-02-13 15:23:06 UTC MAIN commitmail json YAML

Note update of devel/ruby-backports package to 2.8.2.

(taca)

2013-02-13 15:22:12 UTC MAIN commitmail json YAML

Add ruby-padrino-contrib package version 0.1.13.

= Contributed Plugins and Utilities

This package includes a variety of add-on components for Padrino Framework:

* exception_notifier - Send errors through mail or/and to redmine
* auto_locale - Switch for you automatically the I18n.locale
* flash_session - Middleware that help you in passing your
  session in the URI, when it should be in the
  cookie.
* orm_ar_permalink - Generate permalink for a specified column on
  ActiveRecord
* orm_ar_permalink_i18n - Generate permalink for a specified multi
  language column(s) on ActiveRecord
* orm_ar_translate - Translate for you your ActiveRecord columns
* orm_mm_permalink - Generate permalink for a specified column on
  MongoMapper
* orm_mm_search - Full text search in MongoMapper in specified
  columns
* helpers_assets_compressor - Joins and compress your js/css with
  yui-compressor

(taca)

2013-02-13 15:19:47 UTC MAIN commitmail json YAML

Update ruby-backports to 2.8.2.

== Version 2.8.0 - February 3rd, 2013

* Added some features of 2.0.0 (must be required explicitly until official
  release):
  * Array#bsearch
  * Range#bsearch

(taca)

2013-02-13 15:15:38 UTC MAIN commitmail json YAML

Note update of Ruby Data Object packages:

databases/ruby-data_objects 0.10.12
databases/ruby-do_mysql 0.10.12
databases/ruby-do_postgres 0.10.12
databases/ruby-do_sqlite3 0.10.12

(taca)

2013-02-13 15:14:59 UTC MAIN commitmail json YAML

Update ruby-do_sqlite3 to 0.10.12.

## 0.10.12 2013-01-21

* jdbc-sqlite3 driver loading fix
* Improve handling of floats / doubles in sqlite3 on JRuby

(taca)

2013-02-13 15:14:05 UTC MAIN commitmail json YAML

Update ruby-do_postgres to 0.10.12.

## 0.10.12 2013-01-21

* jdbc-postgres driver loading fix

(taca)

2013-02-13 15:13:37 UTC MAIN commitmail json YAML

Update ruby-do_mysql to 0.10.12.

## 0.10.12 2013-01-21

* jdbc-mysql driver loading fix
* Improve compatibility for anscient MySQL versions

(taca)

2013-02-13 15:12:42 UTC MAIN commitmail json YAML

Update ruby-data_objects to 0.10.12.

## 0.10.12 2013-01-21

* Fix JRuby driver loading for newer jdbc-\* gems
* Compatibility change for anscient MySQL versions

(taca)

2013-02-13 15:09:48 UTC MAIN commitmail json YAML

Oops, forgot to "cvs rm" an obsolete patch file.

Thanks to wiz@ noted via mail.

(taca)

2013-02-13 14:58:55 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4060 - requested by taca
www/ruby-rack: security update
www/ruby-rack12: security update
www/ruby-rack13: security update

Revisions pulled up:
- www/ruby-rack/Makefile                                        1.14-1.15
- www/ruby-rack/distinfo                                        1.14
- www/ruby-rack12/Makefile                                      1.5
- www/ruby-rack12/distinfo                                      1.4
- www/ruby-rack13/Makefile                                      1.4
- www/ruby-rack13/distinfo                                      1.3

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Thu Jan 31 16:03:34 UTC 2013

  Modified Files:
  pkgsrc/www/ruby-rack: Makefile
  pkgsrc/www/ruby-rack-cache: Makefile
  pkgsrc/www/ruby-rack12: Makefile
  pkgsrc/www/ruby-rack13: Makefile

  Log Message:
  Update HOMEPAGE to github's one.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Fri Feb  8 13:19:13 UTC 2013

  Modified Files:
  pkgsrc/www/ruby-rack12: Makefile distinfo

  Log Message:
  Update ruby-rack12 to 1.2.8.

  * February 7th, Thirty fifth public release 1.1.6, 1.2.8, 1.3.10
    * Fix CVE-2013-0263, timing attack against Rack::Session::Cookie

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Fri Feb  8 13:19:57 UTC 2013

  Modified Files:
  pkgsrc/www/ruby-rack13: Makefile distinfo

  Log Message:
  Update ruby-rack13 to 1.3.10.

  February 7th, Thirty fifth public release 1.1.6, 1.2.8, 1.3.10
    * Fix CVE-2013-0263, timing attack against Rack::Session::Cookie

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Fri Feb  8 13:22:00 UTC 2013

  Modified Files:
  pkgsrc/www/ruby-rack: Makefile distinfo

  Log Message:
  Update ruby-rack to 1.4.5.

  * February 7th, Thirty fifth public release 1.4.5
    * Fix CVE-2013-0263, timing attack against Rack::Session::Cookie
    * Fix CVE-2013-0262, symlink path traversal in Rack::File

(tron)

2013-02-13 14:36:12 UTC MAIN commitmail json YAML

Note update of security/openssl package to 1.0.1e.

(taca)

2013-02-13 14:35:19 UTC MAIN commitmail json YAML

Update OpenSSL to 1.0.1e.  ("Corrected fix" was already incorporated in pkgsrc.)

OpenSSL version 1.0.1e released
===============================

OpenSSL - The Open Source toolkit for SSL/TLS
http://www.openssl.org/

The OpenSSL project team is pleased to announce the release of
version 1.0.1e of our open source toolkit for SSL/TLS. This new
OpenSSL version is a new feature release. For a complete
list of changes, please see

    http://www.openssl.org/source/exp/CHANGES.

The most significant changes are:

  o Corrected fix for CVE-2013-0169

(taca)

2013-02-13 14:32:30 UTC MAIN commitmail json YAML

- postfix-2.9.5.

(taca)

2013-02-13 14:32:13 UTC MAIN commitmail json YAML

Note update of mail/postfix package to 2.9.6.

(taca)

2013-02-13 14:31:31 UTC MAIN commitmail json YAML

Update Postfix to 2.9.6.

Changes from 2.8.14 are too many to write here, please refer RELEASE_NOTES.

(taca)

2013-02-13 14:08:07 UTC MAIN commitmail json YAML

Correct comment in a patch file.

This change dosen't fix CVE-2013-0276 but give workaround for it.

No PKGREVISION bump.

(taca)

2013-02-13 14:07:31 UTC MAIN commitmail json YAML

Correct comment in a patch file.

This change dosen't fix CVE-2013-0276 but give workaround for it.

No PKGREVISION bump.

(taca)

2013-02-13 12:01:32 UTC MAIN commitmail json YAML

2013-02-13 12:01:05 UTC MAIN commitmail json YAML

Update opera to 12.14.

Opera 12.14 is a recommended upgrade offering security and stability enhancements.

Fixes and Stability Enhancements since Opera 12.13
General and User Interface
* Update addresses a re-occuring crash, allowing users to update two or more
  extensions at one time.

(obache)

2013-02-13 11:57:47 UTC MAIN commitmail json YAML

drop detailed features, almost obsolete, and even if updated, it will be
obsolete soon.

(obache)

2013-02-13 11:24:33 UTC MAIN commitmail json YAML

Updated multimedia/adobe-flash-plugin11 to 11.2.202.270

(obache)

2013-02-13 11:24:21 UTC MAIN commitmail json YAML

2013-02-13 11:23:29 UTC MAIN commitmail json YAML

Updated multimedia/adobe-flash-plugin10.1 to 10.3.183.61

(obache)

2013-02-13 11:23:10 UTC MAIN commitmail json YAML

Update adobe-flash-plugin10.1 to 10.3.183.61 for APSB-13-04 and APSB-13-05.

(obache)

2013-02-13 10:16:21 UTC MAIN commitmail json YAML

Updated www/ikiwiki to 3.20130212

(schmonz)

2013-02-13 10:16:15 UTC MAIN commitmail json YAML

Update to 3.20130212. From the changelog:

  * htmlscrubber: Allow the bitcoin URI scheme.
  * htmlscrubber: Allow the URI schemes of major VCS's.
  * aggregate: When run with --aggregate, if an aggregation is already
    running, don't go on and --refresh.
  * trail: Avoid excess dependencies between pages in the trail
    and the page defining the trail. Thanks, smcv.
  * opendiscussion: Don't allow editing discussion pages if discussion pages
    are disabled. (smcv)
  * poll: Add expandable option to allow users to easily add new choices to
    a poll.
  * trail: Avoid massive slowdown caused by pagetemplate hook when displaying
    dynamic cgi pages, which cannot use trail anyway.
  * Deal with empty diffurl in configuration.
  * cvs: Various fixes. (schmonz)
  * highlight: Now adds a span with class highlight-<extension> around
    highlighted content, allowing for language-specific css styling.

(schmonz)

2013-02-12 23:31:41 UTC MAIN commitmail json YAML

2013-02-12 23:27:24 UTC MAIN commitmail json YAML

shells/bash2: disable job control on Minix

OK by wiz

(tcort)

2013-02-12 23:26:28 UTC MAIN commitmail json YAML

Added wm/i3 version 4.4

(tonnerre)

2013-02-12 23:26:10 UTC MAIN commitmail json YAML

Add i3 to the makefile so it is built.

(tonnerre)

2013-02-12 23:25:35 UTC MAIN commitmail json YAML

Initial import of the i3 window manager, version 4.4.

This package contains the i3 window manager, a small tiling window
manager aimed at providing helpful modern features like Xinerama
multi-screen support while still being completely keyboard
controlled. It is mainly aimed at engineers and people who
love to get their work done without switching between keyboard and
mouse.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(tonnerre)

2013-02-12 22:45:07 UTC MAIN commitmail json YAML

Updated x11/xrandr to 1.4.0

(wiz)

2013-02-12 22:44:58 UTC MAIN commitmail json YAML

Update to 1.4.0:

New features:
* Support for RandR 1.4's provider objects.  See the --listproviders,
  --setprovideroutputsource, and --setprovideroffloadsink options for more
  information.
* --set now allows a comma-separated list of values.  This is useful with the
  Border property to configure different border adjustments for different edges
  of the screen.
* --scale-from, which specifies a scaling transform based on the desired
  desktop size.
* --query now indicates which output, if any, is primary.

It also contains a number of bug fixes.

One notable behavior change is that the --gamma option now takes the actual
gamma value rather than the reciprocal of the gamma value.  This matches the
behavior of other programs such as xgamma and the gamma configuration options in
xorg.conf.

Aaron Plattner (12):
      Add a --scale-from option
      xrandr: Fix string constness bugs
      man: document provider options
      xrandr: make providers a first-class citizen
      xrandr: look for providers by name or xid
      xrandr: Fix variable declaration warnings
      Bug #11397: check that numeric --orientation arguments are in range
      Bug #14118: print usage() to stdout, proper errors for bad arguments
      Bug #29603: document that there might be multiple preferred modes
      Bug #37043: adjust refresh rates for doublescan and interlace
      Cast XID to unsigned int to suppress a printf warning
      xrandr 1.4.0

Adam Jackson (2):
      Document the rarer --newmode flags in --help output
      configure: Drop AM_MAINTAINER_MODE

Alan Coopersmith (3):
      config: Add missing AC_CONFIG_SRCDIR
      Mark fatal() and warning() as taking printf-style arguments
      Fix -Wformat warnings about passing longs where ints were expected

Andy Ritger (5):
      xrandr: use 1/gamma to compute gamma-correction
      xrandr: fix gamma == 1.0 && sigbits != 8
      xrandr: compute gamma-correction in [0,2^sigbits)
      xrandr: extend '--set' syntax to allow a comma-separated list of values
      xrandr: generalize output property printing

Colin Walters (1):
      autogen.sh: Honor NOCONFIGURE=1

Dave Airlie (1):
      xrandr: add provider interfaces

Eric S. Raymond (1):
      Running text interspersed with options prevents DocBook translation; remove.

Jeremy Huddleston (1):
      Include strings.h for strcasecmp

Keith Packard (3):
      xrandr: Preserve current mode when switching crtcs
      Update keystone program to run with new nichrome bits
      keystone.5c: cairo-5 box semantics changed default layout

Pierre-Loup A. Griffais (2):
      xrandr: move transform limit checking after scaling
      xrandr: print primary output

(wiz)

2013-02-12 21:10:28 UTC MAIN commitmail json YAML

Updated mysql55 to 5.5.30; boost to 1.53.0

(adam)

2013-02-12 21:07:22 UTC MAIN commitmail json YAML

Changes 1.53.0:
New Libraries:
Atomic:
C++11-style atomic<>, from Helge Bahmann, maintained by Tim Blechmann.
Coroutine:
Coroutine library, from Oliver Kowalke.
Lockfree:
Lockfree data structures, from Tim Blechmann.
Multiprecision:
Extended precision arithmetic types for floating point, integer and rational arithmetic from John Maddock and Christopher Kormanyos.
Odeint:
Solving ordinary differential equations, from Karsten Ahnert and Mario Mulansky.

News
This release contains a fix for ticket 7743, in Boost.Locale. For more details, see the security notice.

More info http://www.boost.org/users/history/version_1_53_0.html

(adam)

2013-02-12 21:01:24 UTC MAIN commitmail json YAML

Explicitly disable numpy support

(adam)

2013-02-12 20:36:29 UTC MAIN commitmail json YAML

2013-02-12 20:08:53 UTC MAIN commitmail json YAML

Updated graphics/cairo-gobject to 1.12.14

(wiz)

2013-02-12 20:08:29 UTC MAIN commitmail json YAML

Update cairo* to 1.12.14:

Release 1.12.14 (2013-02-10 Chris Wilson <chris@chris-wilson.co.uk>)
====================================================================
In the last week we had a few more bugs reported and promptly resolved.
As these are a combination of regressions and stability issues, it is
time for a prompt update and release. Many thanks to everyone for
testing and reporting issues, and helping to make Cairo better.

Bug fixes
---------

  Prevent user callbacks accessing user-data during destroy to prevent
  use-after-free bugs.
  https://bugzilla.mozilla.org/show_bug.cgi?id=722975

  Use standard names for glyphs in subset fonts (PDF).
  https://bugs.freedesktop.org/show_bug.cgi?id=60248

  Fix detection of Win98. The logic for detecting Win98 (and its broken
  AlphaBlend()) was inverted, disabling AlphaBlend() for everyone.

  Prevent numeric overflow from extrapolating polygon edges to the clip
  boundary and causing severe render artifacts.
  https://bugs.freedesktop.org/show_bug.cgi?id=60489

  Fix computation of glyph string coordinates when breaking up runs
  for xlib.

  Fix an assertion in the win32 backend for failing to clear its
  similar-images.
  https://bugs.freedesktop.org/show_bug.cgi?id=60519

(wiz)

2013-02-12 17:50:05 UTC pkgsrc-2012Q4 commitmail json YAML

2013-02-12 17:40:15 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4057 - requested by taca
devel/ruby-rdoc: security update

Revisions pulled up:
- devel/ruby-rdoc/PLIST                                        1.7
- devel/ruby-rdoc/distinfo                                      1.9
- lang/ruby/rdoc.mk                                            1.12

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed Feb  6 15:53:15 UTC 2013

  Modified Files:
  pkgsrc/devel/ruby-rdoc: PLIST distinfo
  pkgsrc/lang/ruby: rdoc.mk

  Log Message:
  Update ruby-rdoc to 3.12.1.

  === 3.12.1 / 2013-02-05

  * Bug fixes
    * Fixed an XSS exploit in darkfish.js.  This could lead to cookie disclosure
      to third parties.  See CVE-2013-0256[rdoc-ref:CVE-2013-0256.rdoc] for full
      details including a patch you can apply to generated RDoc documentation.
    * Ensured that rd parser files are generated before checking the manifest.

(tron)

2013-02-12 15:31:09 UTC MAIN commitmail json YAML

Note update of devel/ruby-activemodel package to 3.0.20nb1.

(taca)

2013-02-12 15:30:42 UTC MAIN commitmail json YAML

2013-02-12 15:08:56 UTC MAIN commitmail json YAML

Note update of textproc/ruby-multi_json package to 1.5.1.

(taca)

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

Don't use GNU tar as bsdtar, it isn't fully compatible and fails with
the OpenJDK distfiles.

(jperkin)

2013-02-12 15:08:30 UTC MAIN commitmail json YAML

Update ruby-multi_json to 1.5.1.

Various fixes and workaround for JSON#parse.

(taca)

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

Note update of Ruby on Rails 3.2.12.

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

(taca)

2013-02-12 14:33:42 UTC MAIN commitmail json YAML

Update ruby-rails32 to 3.2.12.

Change of version only.

(taca)

2013-02-12 14:33:08 UTC MAIN commitmail json YAML

Update ruby-railties32 to 3.2.12.

Change of version only.

(taca)

2013-02-12 14:32:32 UTC MAIN commitmail json YAML

Update of ruby-actionmailer32 to 3.2.12.

Change of version only.

(taca)

2013-02-12 14:31:52 UTC MAIN commitmail json YAML

Update ruby-actionpack32 to 3.2.12.

Change of version only.

(taca)

2013-02-12 14:31:19 UTC MAIN commitmail json YAML

Update ruby-activerecord32 to 3.2.12.

## Rails 3.2.12 (unreleased) ##

*  Quote numeric values being compared to non-numeric columns. Otherwise,
    in some database, the string column values will be coerced to a numeric
    allowing 0, 0.0 or false to match any string starting with a non-digit.

    Example:

        App.where(apikey: 0) # => SELECT * FROM users WHERE apikey = '0'

    *Dylan Smith*

(taca)

2013-02-12 14:30:48 UTC MAIN commitmail json YAML

Update ruby-activeresource32 to 3.2.12.

Change of version only.

(taca)

2013-02-12 14:29:48 UTC MAIN commitmail json YAML

Update ruby-activemodel32 to 3.2.12.

Change of version only.

(taca)

2013-02-12 14:28:59 UTC MAIN commitmail json YAML

Update ruby-activesupport32 to 3.2.12.

Change of version only.

(taca)

2013-02-12 14:28:10 UTC MAIN commitmail json YAML

Start update of Ruby on Rails 3.2.12.

(taca)

2013-02-12 14:25:10 UTC MAIN commitmail json YAML

Note update of Ruby on Rails 3.1.11.

devel/ruby-activesupport31 3.1.11
devel/ruby-activemodel31 3.1.11
www/ruby-activeresource31 3.1.11
databases/ruby-activerecord31 3.1.11
www/ruby-actionpack31 3.1.11
mail/ruby-actionmailer31 3.1.11
devel/ruby-railties31 3.1.11
www/ruby-rails31 3.1.11

(taca)

2013-02-12 14:24:13 UTC MAIN commitmail json YAML

Update of ruby-rails31 to 3.1.11.

Change of version only.

(taca)

2013-02-12 14:23:36 UTC MAIN commitmail json YAML

Update ruby-railties31 to 3.1.11.

Change of version only.

(taca)

2013-02-12 14:22:43 UTC MAIN commitmail json YAML

Update ruby-actionmailer331 to 3.1.11.

Change of version only.

(taca)

2013-02-12 14:22:03 UTC MAIN commitmail json YAML

Update ruby-actionpack31 to 3.1.11.

## Rails 3.1.11 (unreleased)

* Fixed JSON params parsing regression for non-object JSON content.

(taca)

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

Update ruby-activerecord31 to 3.1.11.

## Rails 3.1.11 (unreleased) ##

*  Quote numeric values being compared to non-numeric columns. Otherwise,
    in some database, the string column values will be coerced to a numeric
    allowing 0, 0.0 or false to match any string starting with a non-digit.

    Example:

        App.where(apikey: 0) # => SELECT * FROM users WHERE apikey = '0'

    *Dylan Smith*

(taca)

2013-02-12 14:19:10 UTC MAIN commitmail json YAML

Update ruby-activeresource31 to 3.1.11.

Change of version only.

(taca)

2013-02-12 14:18:08 UTC MAIN commitmail json YAML

Update ruby-activemodel31 to 3.1.11.

Change of version only.

(taca)

2013-02-12 14:17:07 UTC MAIN commitmail json YAML

Update ruby-activesupport31 to 3.1.11.

## Rails 3.1.11 (unreleased) ##

* Allow `multi_json` version `>= 1.3`, relaxing back to semantic versioning
  2.0.0 (revert of #5861)
  Backport of #5896

  *Alex Riedler*

(taca)

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

Start update of Ruby on Rails 3.1.11.

(taca)

2013-02-12 14:12:19 UTC MAIN commitmail json YAML

Don't pull in sys/ucred.h on Solaris as it results in procfs.h being
included and conflicts between _FILE_OFFSET_BITS=64 and 32-bit procfs.

(jperkin)

2013-02-12 13:55:49 UTC MAIN commitmail json YAML

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

Note update of databases/ruby-activerecord3 package to 3.0.20nb1.

(taca)

2013-02-12 13:23:20 UTC MAIN commitmail json YAML

2013-02-12 13:17:28 UTC MAIN commitmail json YAML

2013-02-12 13:16:25 UTC MAIN commitmail json YAML

update to 3.0.28
changes: bugfixes

This prevents the recent TLS CBC padding timing attack (CVE-2013-1619).

(drochner)

2013-02-12 13:14:38 UTC MAIN commitmail json YAML

Note update of textproc/ruby-json-pure and textproc/ruby-json
packages to 1.7.7.

(taca)

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

Update ruby-json and ruby-json-pure to 1.7.7.

2013-02-04 (1.7.7)
  * Security fix for JSON create_additions default value and
    JSON::GenericObject. It should not be possible to create additions unless
    explicitely requested by setting the create_additions argument to true or
    using the JSON.load/dump interface. If JSON::GenericObject is supposed to
    be automatically deserialised, this has to be explicitely enabled by
    setting
      JSON::GenericObject.json_createble = true
    as well.
  * Remove useless assert in fbuffer implementation.
  * Apply patch attached to https://github.com/flori/json/issues#issue/155
    provided by John Shahid <jvshahid@gmail.com>, Thx!
  * Add license information to rubygems spec data, reported by Jordi Massaguer
    Pla <jmassaguerpla@suse.de>.
  * Improve documentation, thx to Zachary Scott <zachary@zacharyscott.net>.

(taca)

2013-02-12 13:03:46 UTC MAIN commitmail json YAML

Note update of lang/ruby193-base package to 1.9.3p385nb2.

(taca)

2013-02-12 13:03:09 UTC MAIN commitmail json YAML

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

Define RUBY193_BASE_HACKS_MK instead of RUBY19_BASE_HACKS_MK.

(taca)

2013-02-12 12:37:15 UTC MAIN commitmail json YAML

deal with hicolor-icon-theme

(drochner)

2013-02-12 12:35:36 UTC MAIN commitmail json YAML

2013-02-12 12:16:25 UTC MAIN commitmail json YAML

2013-02-12 10:13:50 UTC MAIN commitmail json YAML

Updated textproc/diffstat to 1.56

(wiz)

2013-02-12 10:13:42 UTC MAIN commitmail json YAML

Update to 1.56:

2013/02/11 (diffstat 1.56)
+ add -K option which attempts to improve the annotation of "only"
  files by looking for a match in the resulting set of files and
  inferring whether the file was added or removed (request by Marc
  Haber).

+ add check of command-line options for valid numbers.

+ improve merging of patches for the same filename (report/testcase by
  Paul E McKenney).

+ document -d option in manpage.

+ document -b, -C, -s option in usage (patch by Tim Waugh, Red Hat
  #852770)

+ modify configure script as done for byacc in 2012/10/03, making the
  2.52-patches the prerequisite and adding support for --datarootdir
  option.

+ update config.guess, config.sub

+ add logic to handle SVN diffs when the pathnames contain spaces
  (patch by Stuart Prescott, Debian #675475).

+ fix typo in package/debian/control

2012/01/03 (diffstat 1.55)
+ add -R option, like patch's, to reverse the order of the comparison.

+ FreeBSD ports/148604, ports/149500 reported that lzcat may not
  support extracting files compressed in xz format (patch by Frederic
  Culot, FreeBSD #149500).

+ address documentation issue raised in Novell #739210

+ correct typo s/Solaris/Solar/.

+ updated configure script macros:
  CF_ANSI_CC_CHECK CF_DISABLE_LEAKS CF_GCC_ATTRIBUTES CF_GCC_WARNINGS
  CF_MAKE_TAGS CF_MSG_LOG CF_PATH_PROG CF_WITH_INSTALL_PREFIX
  CF_XOPEN_SOURCE

+ update config.guess, config.sub

2010/10/10 (diffstat 1.54)
+ change Debian package script to use native format.

+ correct counts used for new files when -S/-D options are used.

+ minor typography improvement to manpage (patch by Solar Designer)

+ remove the temporary directory on error, introduced in 1.48+ (patch
  by Solar Designer).

2010/07/19 (diffstat 1.53)

+ add missing "break" statement which left "-c" option falling-through
  into "-C".

2010/07/16 (diffstat 1.52)

+ add "-C" option to show the histogram using SGR colors.

+ add "-s" option to show only the summary line.

+ add configure check for "xz", using this in preference to "lzcat"
  (FreeBSD #148604).

+ also escape literal dashes used as part of the histogram in the
  manpage.

+ modify hyphens vs dashes in manpage per
http://lintian.debian.org/tags/hyphen-used-as-minus-sign.html
  (patch by Francois Marier).

+ drop mkdirs.sh, use "mkdir -p"

+ add configure checks for ctags and lint.

+ updated configure macros

+ reformat CHANGES to work with metrics script.

+ fix strict gcc warnings, e.g., using const.

+ improve a case where filenames have embedded blanks (patch by Reinier
  Post).

+ update config.guess, config.sub

(wiz)

2013-02-12 09:58:25 UTC MAIN commitmail json YAML

Updated sysutils/cdrtools to 3.01alpha12

(wiz)

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

Update to 3.01a12:

All:

- The Schily makefilesystem now supports CC++_COM for all platforms to
allow to overwrite the low level command for the C++-compiler.

Libschily:

- libschily::fexecv() now allows to use the parameter "ac" with the
value -1 to indicate that the arg count is to be determined by the
NULL pointer at the end of the arg list.

Cdda2wav (Maintained/enhanced by J�rg Schilling, originated by Heiko Ei゚feldt heiko@hexco.de):

- cdda2wav now only prints "load cdrom please and press enter" once
per line and does not repeat the text for garbage characters that
have been in stdin. Thanks to Phi Tran from Oracle for reporting.

Readcd:

- avoid a GCC warning when compiling readcd.c

Mkisofs (Maintained/enhanced by J�rg Schilling since 1997, originated by Eric Youngdale):

- mkisofs now reserves more space for the file names to avoid a
path buffer overrun

- Fixed a bug that caused to put more than one UDF direcory entry for a file
in case that the file is a ISO-0660 multi-segment file.

- Fixed a bug that caused the wrong start sector address to be used for UDF
in case that the file is a ISO-9660 multi-segment file and the -sort option
was used.

(wiz)

2013-02-12 09:52:27 UTC MAIN commitmail json YAML

+ dd_rescue-1.32, dgen-1.32, diffstat-1.56, dvdstyler-2.4,
  galculator-2.1.

(wiz)

2013-02-12 09:51:05 UTC MAIN commitmail json YAML

Updated emulators/yabause to 0.9.12

(wiz)

2013-02-12 09:50:57 UTC MAIN commitmail json YAML

Update to 0.9.12 based on PR 47558 by diro@nixsyspaus.org.

0.9.11 -> 0.9.12
general:
  - Fixes to the dynamic recompiler (Ari64)
  - Added ARMv5 support to the dynarec (Ari64)
  - New OSD system (Guillaume)
  - Added "built-in" DDK to make it easier to compile on Windows (Guillaume)
sound:
  - Improvements / Fixes in both SCSP and SCSP2 (Cwiiis)
video:
  - Major improvements to the OpenGL renderer (Devmiyax)
  - Major improvements to the software renderer (Guillaume)
  - Some fixes to register emulation (Guillaume)
  - Improvements to line drawing functions in the software renderer (Cwiiis)
  - Fixed endianess bugs (Guillaume)
cocoa port:
  - Added "load image" feature (BlueCrab)
  - Fixed the resize bug (BlueCrab)
qt port:
  - Added shortcuts to toggle vdp2 layers (Benjamin Siskoo)
  - Fixed the "mute sound" feature (Guillaume)
  - It's now possible to compile the Qt port in "full software" mode (Guillaume)
  - Added an autostart option, disabled by default (Guillaume)
  - Now using a XDG compliant location for config file (Guillaume)
  - Added a debugger to the Qt port (CyberWarriorX)
  - DirectX cores can now be used in Qt port (CyberWarriorX)
  - Cheat search function (CyberWarriorX)
  - Option to show/hide menu and toolbar (Guillaume)
  - Close button in pad settings (guillaume)

(wiz)

2013-02-12 09:16:29 UTC MAIN commitmail json YAML

Updated devel/gmp to 5.1.1

(adam)

2013-02-12 09:15:37 UTC MAIN commitmail json YAML

Changes 5.1.1:
BUGS FIXED
On Windows 64-bit, an error causing link errors about __gmp_binvert_limb_table has been fixed.
Aarch64 alias ARM64 support now works.
A possible buffer overrun in mpz_ior has been fixed.
A rare sign flip in mpz_remove has been fixed.
A bug causing problems with mpf numbers with absolute value ≥ 231 has been fixed.
Several bugs in mini-gmp have been fixed.
A bug caused by automake, related to the 'distcheck' target, has been fixed by upgrading the automake used for GMP release engineering.

FEATURES
Preliminary support for the x32 ABI under x86-64.

MISC
The mini-gmp testsuite now tests the entire set of functions.
Various improvements of the GMP testsuite.

(adam)

2013-02-12 04:48:28 UTC MAIN commitmail json YAML

Note update of emacs-snapshot.

(minskim)

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

Update emacs-snapshot to 24.3.50.20130207.

Patches provided by Makoto Fujiwara in PR 47552 and modified by me.

Notable changes since 24.3:
** `apropos-variable' is now `apropos-user-option'
** `eval-defun' on an already defined defcustom calls the :set function,
  if there is one.
** The option `set-mark-default-inactive' has been deleted.
  This unfinished feature was introduced by accident in Emacs 23.1;
  simply disabling Transient Mark mode does the same thing.
** `initial-buffer-choice' can now specify a function to set up the
  initial buffer.
** ACL support has been added.
** New option `scroll-bar-adjust-thumb-portion'.
** Improved fullscreen support for Nextstep (Mac OS X).
** New commands `toggle-frame-fullscreen' and `toggle-frame-maximized',
  bound to <f11> and M-<f10>, respectively.
** Delphi mode is now called OPascal mode.
** jit-lock-debug-mode lets you use the debuggers on code run via jit-lock.
** completing-read-multiple's separator can now be a regexp.  The
  default separator is changed to allow surrounding spaces around the
  comma.

See share/emacs/24.3.50/etc/NEWS for the complete list of changes.

(minskim)

2013-02-12 04:36:49 UTC MAIN commitmail json YAML

Updated databases/libpqxx and databases/libpqxx-doc to 4.0.1.

(hiramatsu)

2013-02-12 04:35:24 UTC MAIN commitmail json YAML

Update libpqxx from 2.5.5 to 4.0.1.

Changes from previous
=====================
4.0.1
- Support for REPEATABLE READ isolation level.
- Build fix for OS X.
- Build fixes for clang++ 3.2.
- Build fixes for clang++ 3.0.
- Build fix for MinGW.
- Build fix for BSD (and possibly other grep flavours).
- Compatibility typedefs: pqxx::result::tuple & pqxx::result::field.
- Supports C++11.
- Fixed failure to detect some integer overflows during conversion.
4.0
- API change: noticers are gone!  Use errorhandlers to capture error output.
- API change: tablereaders and tablewriters are gone; they weren't safe.
- API change: prepared statements are now weakly-typed, and much simpler.
- API change: fields and tuples are now stand-alone classes in ::pqxx.
- API change: thread-safety field have_strerror_r is now have_safe_strerror.
- API change: notify_listener has been replaced with notification_receiver.
- notification_receiver takes a payload parameter.
- Easier Visual C++ setup.
- Absolutely requires a libpq version with PQescapeStringConn.
- Absolutely requires libpq 8.0 or better.
- Changes for C++0x.
- Supports clang++.
- Visual C++ makefiles now support new-style unit tests.
- Sample headers for more recent Visual Studio versions.
- Fixes binary-data escaping problems with postgres 9.0.
- Fixes problems with binary-string handling and escaping.
- Fixes compatibility problems between 9.x libpq and 7.x backend.
- quote_name to escape SQL identifiers for use in queries.
- syntax_error reports error's approximate location in the query.
- On Windows, now uses ws2_32 instead of wsock32.
- Various Windows build fixes.
- Updated for gcc 4.6.0.
- configure script supports --enable-documentation/--disable-documentation.
- Streamlined test/release toolchain.
3.1
- Shared libraries are now versioned by ABI: 3.1 instead of 3.1.0 etc.
- Threading behaviour is now documented, and can be queried.
- Version information available at compile time.
- Supports parameterized statements.
- Result tuples now support slicing.
- Configure with --with-tr1=boost to use BOOST shared_ptr.
- String conversion now has its own header file.
- Supports read-only transactions.
- Fixed breakage with Solaris "make".
- Uses shared_ptr if available.
- binarystring::str() is no longer cached; no longer returns reference.
- Fixed problems in Visual C++ Makefile for test suite.
- Fixed problems with RPM packaging.
- Fixed build problem on RedHat/CentOS 5.
- Lets you check whether a prepared statement has been defined.
- "Varargs" prepared statements.
- Unnamed prepared statements now supported.
- Results have iterator as well as const_iterator.
- Rewrite of robusttransaction logic; may actually do its job now.
- Connections support async query cancel from signal handler or thread.
- More documentation for performance features.
3.0
- Website is now at http://pqxx.org/ (no redirects)
- Completely replaced cursor classes
- More helpful error messages on failed connections
- More detailed hierarchy of constraint-violation exception classes
- trigger is now called notify_listener, trigger header is now notify-listen
- New mixin base class pqxx_exception distinguishes libpqxx exception types
- Quoting is back!  transaction_base::quote() & connection_base::quote()
- Several build & documentation problems with Visual C++ fixed
- Compile fixes for gcc 4.2, 4.3
- Compile fixes for Sun Studio Express 5.9
- Uses strlcpy() where available, instead of strncpy()
- Keeps better track of applicable text encodings
- Fixed bug with prepared statement parameters in separate C++ statements
- robusttransaction now works for multiple users
- Pipeline lets you cancel ongoing queries, e.g. because they run for too long
- Fixed broken escaping of binary values in tablewriter
- Floating-point types now represented with full precision
- Proper unit tests for new functionality
- New traits-based system for adding data types
- Floating-point infinities now supported
- Flushing/completing a pipeline now frees up the transaction for other use
- Completely reworked test suite, builds and runs much faster
- tablewriter supports writing of raw lines
2.6.9
- Removed old 1.x API (that means all identifiers with capital letters!)
- Tested with all current libpq versions and oldest/newest supported backends
- No longer have old OnCommit()/OnAbort()/OnDoubt() callbacks in transactor!
- Fixes failure when closing cursors with upper-case letters in their names
- Fixes bug when adding triggers to connections that aren't open yet
- Fixes bug when removing triggers
- Fixes small memory leak when preparing statements
- Fixes many problems with older backends
- Fixes bug in result::swap(): protocol versions were not swapped
- Some errors went undetected when using certain libpq versions
- Fixes prepared statements on new libpq versions talking to old backends
- Can estimate server version if libpq does not know how to obtain it
- Greatly reduced memory usage while escaping strings
- With Visual C++, creates lib/ directory if not already present
- Useful error messages when preparing statements
- Allows prepared statements to be registered explicitly
- Support for "long long" types; enable with PQXX_ALLOW_LONG_LONG macro
- Compilation errors for older libpq versions fixed
- Some new small utility classes for disabling notice processing etc.
- Result sets remember the queries that yielded them
- New test script, pqxx-fulltest, tests against all current postgres versions
- Connections can simulate failure
- Adds password encryption function
2.6.8
- Fixes bug: binary parameters to prepared statements truncated at nul bytes
- New, more specific exception types to distinguish errors from server
- Resolved serious problems with generated reference documentation
- Automatically detect Windows socket library with MinGW
- Windows "make" fixed to run from main directory, not win32
- Fixes "mktemp" problems on some BSD-based platforms
- pqxx-config is deprecated; use pkg-config instead
- On GNU/Linux, uses poll() instead of select() to avoid file descriptor limit
- Will provide server and protocol version information where available
- New cursor class, absolute_cursor
2.6.7
- New escape functions for binary data: transaction_base::esc_raw()
- Improved detection of socket libraries, especially for MinGW
- Works around bug in some versions of GNU grep 2.5.1
- Fixes problem with configuration headers
- Fixes PQprepare() detection
- Fixes incomplete Visual C++ Makefile
- Fixes compile error in workaround for older libpq versions
- Removes "rpath" link option
2.6.6
- New, encoding-safe string-escaping functions
- Upper-case letters now allowed in prepared-statement names
- Fixes crash in test005
- More Visual C++ improvements
- Removed collaboration diagrams from reference docs
- New templating system for generating Windows Makefiles etc.
2.6.5
- Visual C++ users: copy win32/common-sample to win32/common before editing it
- Should fix problems finding socket library on MinGW
- Even more work on Visual C++ problems
- Updated documentation for Visual C++ users
- Fixed bug in prepared statements (mostly visible on Visual C++)
- Nested transactions work harder to detect backend support
2.6.4
- Massively improved compatibility with Windows and Visual C++
- Fixed late initialization of "direct" connection state
- Fixed problem with initialization of connection capabilities
- Fixed configuration bug for libpq in nonstandard locations
- Sample configuration header for libpq found in PostgreSQL 8.1
2.6.3
- Radical rework of prepared statements; INCOMPATIBLE INTERFACE CHANGE!
- Dropped support for g++ 2.95
- Emulate prepared statements support on old libpq or old backend
- Bug fix: missing tutorial (release script now tests for this)
- Automatically links in socket library on Windows or Solaris, if needed
- Bug fix: check for std namespace didn't work
- Fixes for Cygwin/MSYS/MinGW
2.6.2
- Bug fix: connection state was not set up properly in some common cases
- Bug fix: headers were installed in "include" instead of "include/pqxx"
- Bug fix: sqlesc(string) broke with multibyte or multiple encodings
- namedclass is now used as a virtual base; affects all subclass constructors
- Initial implementation of subtransactions
- Detect more connection capabilities
- Standard library namespace can be set from configure script's command line
- Completely reworked connection hierarchy, with separate policy objects
- Clients can now define their own connection policies
- Paved the way for client-defined thread synchronization
- Now lives at http://thaiopensource.org/development/libpqxx/
2.6.1
- Hugely improved recognition of different strerror_r() versions
- Resolved link problems with gcc 4.0 and shared library
2.6.0
- New macro PQXX_SHARED defines whether to use/build libpqxx as shared library
- Robusttransaction compatible with PostgreSQL 8.1
- Infrastructure for querying connection/backend capabilities at runtime
- Greatly improved cursor support
- Connection reactivation can be inhibited explicitly
- Tries even harder to make sense of conflicting strerror_r() definitions
- Detects connection failures that libpq glosses over
- Reference documentation grouped into more coherent sections
- Assumes strerror() is threadsafe on systems that have no strerror_r()
- Now allows connection's socket number to be queried
- New internal_error class for libpqxx-internal errors
- With Visual C++, doesn't redefine NOMINMAX if it is defined already
- Several compatibility improvements for Visual C++
- Fixes and workarounds for HP-UX and HP aCC compiler
- Phased old cursor interface out of test suite; tests ported to new interface
- Added documentation on thread safety
- New thread safety model
- Large objects have functions to tell current position
- Minor updates to tutorial (somebody pay me and I'll do more :)
- No longer needs libpq-fs.h header
- Meaningful error messages for ambiguous string conversions fixed
2.5.6
- Support null parameters to prepared statements (use C-style char pointers)

(hiramatsu)

2013-02-11 21:30:55 UTC MAIN commitmail json YAML

Updated mail/dovecot2 to 2.1.15

(adam)

2013-02-11 21:30:01 UTC MAIN commitmail json YAML

2013-02-11 17:39:56 UTC pkgsrc-2012Q4 commitmail json YAML

2013-02-11 17:39:32 UTC MAIN commitmail json YAML

Previous commit changed PKGNAME and broke dependencies.  Revert back to
original PKGNAME.

(jperkin)

2013-02-11 17:39:08 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4056 - requested by taca
lang/ruby193-base: security update

Revisions pulled up:
- lang/ruby/rubyversion.mk                                      1.93-1.94
- lang/ruby193-base/Makefile                                    1.21-1.23
- lang/ruby193-base/PLIST                                      1.5-1.6
- lang/ruby193-base/distinfo                                    1.14-1.16
- lang/ruby193-base/patches/patch-configure                    1.5-1.6
- lang/ruby193-base/patches/patch-configure.in                  1.5
- lang/ruby193-base/patches/patch-lib_rubygems.rb              1.2
- lang/ruby193-base/patches/patch-lib_rubygems_specification.rb 1.3
- lang/ruby193-base/patches/patch-lib_rubygems_version.rb      1.1
- lang/ruby193-base/patches/patch-random.c                      deleted
- lang/ruby193-base/patches/patch-test_rubygems_test__gem.rb    1.2

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Thu Jan 31 15:56:14 UTC 2013

  Modified Files:
  pkgsrc/lang/ruby: rubyversion.mk
  pkgsrc/lang/ruby193-base: Makefile PLIST distinfo
  pkgsrc/lang/ruby193-base/patches: patch-configure patch-configure.in
      patch-lib_rubygems.rb patch-test_rubygems_test__gem.rb
  Removed Files:
  pkgsrc/lang/ruby193-base/patches: patch-random.c

  Log Message:
  Update ruby193 to 1.9.3p374 (Ruby 1.9.3-p374).

  These releasess don't include any security fixes.

  Ruby 1.9.3-p362:

  This release includes other many bug fixes.

      Resolved build problems on Solaris.
      Windows 8 support (hopefully).
      other many bug fixes.

  Ruby 1.9.3-p374:

  This release includes many bug fixes. Especially,

      Fixed randomly SEGV problem (often reported with Rails)
      Windows 8 support (maybe, hopefully)
      other many bug fixes.

  See tickets and ChangeLog for details.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sat Feb  2 08:11:54 UTC 2013

  Modified Files:
  pkgsrc/lang/ruby193-base: Makefile distinfo
  pkgsrc/lang/ruby193-base/patches: patch-lib_rubygems_specification.rb
  Added Files:
  pkgsrc/lang/ruby193-base/patches: patch-lib_rubygems_version.rb

  Log Message:
  Add a two fixes from ruby-2.0.0/rubygems 1.8.25.

  * Allow multiple conditions for requirement of gem's specification since
    some newer gem already use this feature.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed Feb  6 15:48:31 UTC 2013

  Modified Files:
  pkgsrc/lang/ruby: rubyversion.mk
  pkgsrc/lang/ruby193-base: Makefile PLIST distinfo
  pkgsrc/lang/ruby193-base/patches: patch-configure

  Log Message:
  Update ruby193 pacakges to 1.9.3p385.

  This release includes a security fix about bundled RDoc.
  Full changes are too may to write here, please refer ChangeLog.

(tron)

2013-02-11 14:52:23 UTC MAIN commitmail json YAML

Note update of www/ruby-sass-rails32 package to 3.2.6.

(taca)

2013-02-11 14:51:28 UTC MAIN commitmail json YAML

Update ruby-sass-rails32 to 3.2.6.

* Allowing railtie and compressor to honor config settings for sass.style and
  assets.css_compressor with default values if not otherwise set. This allows
  assets.css_compressor = :yui to actually work!

(taca)

2013-02-11 14:47:28 UTC MAIN commitmail json YAML

Note update of www/ruby-sass package to 3.2.5.

(taca)

2013-02-11 14:47:00 UTC MAIN commitmail json YAML

Update ruby-sass to 3.2.5.

3.2.5

* Fix a bug where bogus @extend warnings were being generated.
* Fix an @import bug on Windows. Thanks to Darryl Miles.
* Ruby 2.0.0-preview compatibility. Thanks to Eric Saxby.
* Fix incorrect line numbering when using DOS line endings with the indented
  syntax.

3.2.4

* Fix imports from .jar files in JRuby. Thanks to Alex Hvostov.
*  Allow comments within @import statements in SCSS.
*  Fix a parsing performance bug where long decimals would occasionally take
  many minutes to parse.

(taca)

2013-02-11 14:43:59 UTC MAIN commitmail json YAML

Note update of www/ruby-jquery-rails package to 2.2.1.

(taca)

2013-02-11 14:43:37 UTC MAIN commitmail json YAML

Update ruby-jquery-rails to 2.2.1.

## 2.2.1 (08 February 2013)

  - Updated to jQuery 1.9.1
  - Updated to latest jquery-ujs

## 2.2.0 (19 January 2012)

  - Updated to jQuery 1.9.0
  - Updated to latest jquery-ujs

(taca)

2013-02-11 14:40:10 UTC MAIN commitmail json YAML

Note addition of www/ruby-padrino-helpers package version 0.10.7.

(taca)

2013-02-11 14:39:48 UTC MAIN commitmail json YAML

Add and enable ruby-padrino-helpers.

(taca)

2013-02-11 14:39:09 UTC MAIN commitmail json YAML

Add ruby-padrino-helpers package version 0.10.7.

= Application Extensions and Helpers (padrino-helpers)

=== Overview

This component provides a great deal of view helpers related to html markup
generation.

There are helpers for generating tags, forms, links, images, and more. Most of
the basic methods should be very familiar to anyone who has used rails view
helpers.

(taca)

2013-02-11 14:37:30 UTC MAIN commitmail json YAML

Note addtion ot ruby-padrino packages:

www/ruby-padrino-core 0.10.7
www/ruby-padrino-cache 0.10.7
www/ruby-padrino-gen 0.10.7
www/ruby-padrino-admin 0.10.7
www/ruby-padrino-mailer 0.10.7
www/ruby-padrino 0.10.7

(taca)

2013-02-11 14:36:07 UTC MAIN commitmail json YAML

Add and enable ruby-padrino related packages:

ruby-padrino
ruby-padrino-admin
ruby-padrino-cache
ruby-padrino-core
ruby-padrino-gen
ruby-padrino-mailer

(taca)

2013-02-11 14:34:54 UTC MAIN commitmail json YAML

Add ruby-padrino package version 0.10.7.

Ruby-padrino is a set of Padrino Ruby Web Framework meta-packages.

(taca)

2013-02-11 14:33:57 UTC MAIN commitmail json YAML

Add ruby-padrino-mailer package version 0.10.7.

= Simple Mailer Support (padrino-mailer)

=== Overview

This component creates an easy and intuitive interface for delivering email
within a Sinatra application. The mail library is utilized to do the bulk of
the work. There is full support for rendering email templates, using an html
content type and for file attachments.

The Padrino Mailer uses a familiar Sinatra syntax similar to that of defining
routes for a controller.

(taca)

2013-02-11 14:32:42 UTC MAIN commitmail json YAML

Add ruby-padrino-admin package version 0.10.7.

= Admin Dashboard and Authentication (padrino-admin)

=== Overview

Padrino has a beautiful Admin management dashboard with these features:

Orm Agnostic::Data Adapters for Datamapper, Activerecord, Sequel, Mongomapper,
Mongoid, Couchrest.

Template Agnostic:: Erb, Erubis and Haml Renderer.

Authentication:: Support for Account authentication, Account Permission
managment.

Scaffold:: You can simply create a new "admin interface" by providing a Model.

Access Control:: Supports authentication and role permissions for your
application.

(taca)

2013-02-11 14:31:55 UTC MAIN commitmail json YAML

Add ruby-padrino-gen package version 0.10.7.

= Agnostic Application Generators (padrino-gen)

=== Overview

Padrino comes preloaded with flexible code generators powered in part by the
excellent Thor gem (incidentally also used in the Rails 3 generators).

These generators are intended to allow for easy code generation both in
creating new applications and building on existing ones.

The generators have been built to be as library agnostic as possible,
supporting a myriad of test frameworks, js libraries, mocking libraries, etc.

(taca)

2013-02-11 14:30:57 UTC MAIN commitmail json YAML

Add ruby-padrino-cache package version 0.10.7.

= Painless Page and Fragment Caching (padrino-cache)

== Overview

This component enables caching of an application's response contents on
both page- and fragment-levels. Output cached in this manner is persisted,
until it expires or is actively expired, in a configurable store of your
choosing. Several common caching stores are supported out of the box.

(taca)

2013-02-11 14:29:37 UTC MAIN commitmail json YAML

Add ruby-padrino-core package version 0.10.7.

= Padrino (padrino-core)

Padrino is the godfather of Sinatra.

== Preface

Padrino is a ruby framework built upon the excellent Sinatra Microframework
[http://www.sinatrarb.com].

Sinatra is a DSL for creating simple web applications in Ruby with speed and
minimal effort.

This framework tries hard to make it as fun and easy as possible to code much
more advanced web applications by building upon the Sinatra philosophies and
foundation.

(taca)

2013-02-11 14:27:56 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup tickets #4058, #4059 and #4061.

(tron)

2013-02-11 14:25:59 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4061 - requested by taca
mail/roundcube: security update

Revisions pulled up:
- mail/roundcube/Makefile                                      1.50-1.51
- mail/roundcube/PLIST                                          1.26
- mail/roundcube/distinfo                                      1.28
- mail/roundcube/files/roundcube.conf                          1.5

---
  Module Name: pkgsrc
  Committed By: jym
  Date: Tue Jan  8 23:27:55 UTC 2013

  Modified Files:
  pkgsrc/mail/roundcube/files: roundcube.conf

  Log Message:
  roundcube defines its default configuration in .htaccess files and this
  will take precedence over any parameter specified in the <Directory>
  section.

  So remove the php blocks and add a comment to explain this.

---
  Module Name: pkgsrc
  Committed By: jym
  Date: Thu Jan 10 00:15:55 UTC 2013

  Modified Files:
  pkgsrc/mail/roundcube: Makefile

  Log Message:
  Bump revision, as noted by wiz@ and gdt@. Thanks!

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Fri Feb  8 14:01:03 UTC 2013

  Modified Files:
  pkgsrc/mail/roundcube: Makefile PLIST distinfo

  Log Message:
  Update roundcube to 0.8.5.

  CHANGELOG Roundcube Webmail
  ===========================

  - Fix #countcontrols issue in IE<=8 when text is very long (#1488890)
  - Fix unwanted horizontal scrollbar in message preview header (#1488866)
  - Add workaround for IE<=8 bug where Content-Disposition:inline was ignored
    (#1488844)
  - Fix XSS vulnerability in vbscript: and data:text links handling (#1488850)
  - Fix absolute positioning in HTML messages (#1488819)
  - Fix keybord events on messages list in opera browser (#1488823)
  - Fix cache (in)validation after setting \Deleted flag
  - Fix selection of collapsed thread rows (#1488772)
  - Fix wrapping of quoted text with format=flowed (#1488177)

(tron)

2013-02-11 14:07:24 UTC MAIN commitmail json YAML

Note addition of www/ruby-url_mount package version 0.2.1.

(taca)

2013-02-11 14:07:04 UTC pkgsrc-2012Q4 commitmail json YAML

Pullup ticket #4058 - requested by obache
multimedia/adobe-flash-plugin11: security update

Revisions pulled up:
- multimedia/adobe-flash-plugin11/Makefile                      1.11
- multimedia/adobe-flash-plugin11/distinfo                      1.10

---
  Module Name: pkgsrc
  Committed By: obache
  Date: Sat Feb  9 09:24:37 UTC 2013

  Modified Files:
  pkgsrc/multimedia/adobe-flash-plugin11: Makefile distinfo

  Log Message:
  Update adobe-flash-plugin11 to 11.2.202.262 for APSB13-04.

(tron)

2013-02-11 14:06:57 UTC MAIN commitmail json YAML

Add and enable ruby-url_mount.

(taca)

2013-02-11 14:06:00 UTC MAIN commitmail json YAML

Add ruby-url_mount package version 0.2.1.

UrlMount is a universal mount point designed for use in rack applications.

It provides a simple way to pass a url mounting point to the mounted
application.

This means that when you mount an application in the url space, it's a simple
call to url to get the mount point of where the application is.

(taca)

2013-02-11 13:32:39 UTC MAIN commitmail json YAML

Note addtion of www/ruby-rack-contrib package version 1.1.0 and
www/ruby-rack-rewrite package version 1.3.3.

(taca)