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 (3h)  pkgsrc-2024Q1 (15d)  pkgsrc-2023Q4 (43d)  pkgsrc-2023Q2 (75d)  pkgsrc-2023Q3 (155d) 

2024-05-13 19:25:11 UTC Now

2011-05-09 12:39:38 UTC MAIN commitmail json YAML

Updated databases/p5-DBD-mysql to 4.019

(adam)

2011-05-09 12:37:25 UTC MAIN commitmail json YAML

Changes 4.019:
* Asynchronous support.
* Enable environment variables for installation options, add docs to POD.
* Fix to change sv_undef to PL_sv_undef from 4.018.

Changes 4.018:
* Added client and server info.
* Added documentation and tests for new features.
* More code cleanup.

(adam)

2011-05-09 12:02:59 UTC MAIN commitmail json YAML

exactly disable tcl detection, for PR#44945.
Tcl is just required for Web Alpine Support, but not installed now.

(obache)

2011-05-09 11:17:22 UTC MAIN commitmail json YAML

make patch 2.5.4 happy (on 64bit Linux in case it matters)

(alnsn)

2011-05-09 11:11:11 UTC MAIN commitmail json YAML

Fix least privileges support on recent (snv_140+) OpenSolaris versions.
Bump PKGREVISION

(fhajny)

2011-05-09 09:55:14 UTC MAIN commitmail json YAML

Update perfuse to 20110511. We now have locking support, provided that
the kernel sends lock operation throuh PUFFS. It does in -current,
patch is pending in netbsd-5

(manu)

2011-05-09 09:38:26 UTC MAIN commitmail json YAML

Fix log directroy creation location
Have glusterfsd store its pid in startup script

(manu)

2011-05-09 07:48:57 UTC MAIN commitmail json YAML

Closes PR pkg/44501.
Pass pkgsrc's MACHINE_ARCH to bmake's configure script. Oked by wiz@

(cheusov)

2011-05-09 05:00:26 UTC pkgsrc-2011Q1 commitmail json YAML

2011-05-09 04:59:08 UTC pkgsrc-2011Q1 commitmail json YAML

Pullup ticket #3425 - requested by morr
www/wordpress security update.

Revisions pulled up:
- www/wordpress/Makefile                                        1.18
- www/wordpress/distinfo                                        1.14

---
  Module Name: pkgsrc
  Committed By: morr
  Date: Sun May  8 20:43:36 UTC 2011

  Modified Files:
  pkgsrc/www/wordpress: Makefile distinfo

  Log Message:
  Security update to 3.1.2.

  * Fix a vulnerability that allowed Contributor-level users to improperly
    publish posts.
  * Fix user queries ordered by post count.
  * Fix multiple tag queries.
  * Prevent over-escaping of post titles when using Quick Edit for pages.

(sbd)

2011-05-09 03:12:07 UTC MAIN commitmail json YAML

include bsd.prefs.mk before consulting MACHINE_ARCH so it picks up manually set ABI

(dbj)

2011-05-09 01:21:34 UTC MAIN commitmail json YAML

Updated emulators/suse113_libtiff to 11.3nb2

(chs)

2011-05-09 01:21:09 UTC MAIN commitmail json YAML

update to libtiff3-3.9.2-5.10.1.  fixes CVE-2010-4665, CVE-2009-5022,
CVE-2011-1167, CVE-2011-0192, CVE-2011-0191.

(chs)

2011-05-08 23:29:15 UTC MAIN commitmail json YAML

Note update of emacs-snapshot.

(minskim)

2011-05-08 23:28:44 UTC MAIN commitmail json YAML

Update emacs-snapshot to 24.0.50.20110505.

Patches provided by Makoto Fujiwara in PR 44871.

Changes:
- keep config.log (Bug#765) and delete config.log~.
- Fix bug with --enable-checking=stringoverrun to have no effect.
- Suppress unnecessary checks for size_t for configure.
- Add strtoumax for GNULIB_MODULES.
- Check for GnuTLS certificate verify callbacks.
- Don't erase config.status in case of error.

  (See ChangeLog for the complete list of changes.)

(minskim)

2011-05-08 21:53:13 UTC MAIN commitmail json YAML

Added misc/epm version 4.2

(cheusov)

2011-05-08 21:52:00 UTC MAIN commitmail json YAML

+epm, oked by sponsors

(cheusov)

2011-05-08 21:50:48 UTC MAIN commitmail json YAML


EPM is an open source UNIX software and file packaging program that
generates distribution archives from a list of files. EPM provides a
complete, cross-platform software distribution solution for your
applications.

ESP generates both native and "portable" script-based distribution packages
complete with installation and removal scripts and standard
install/uninstall GUIs. The installers can be customized with product logos,
"readme" files, and click-wrap licenses as desired.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(cheusov)

2011-05-08 21:07:03 UTC MAIN commitmail json YAML

Updated math/mpfr to 3.0.1.3

(asau)

2011-05-08 21:06:51 UTC MAIN commitmail json YAML

Update MPFR to version 3.0.1 patch level 3.

Patch 3 fixes the following bug:

  The mpfr_atan function calls mpfr_check_range on the unrounded
  result (no longer allocated) instead of the rounded result.
  Consequence of this bug: possible incorrect or invalid result and/or
  incorrect flags if the unrounded result or rounded result is not in
  the current exponent range. Or possibly worse if the memory used by
  the unrounded result is modified before the return of the function.
  This bug has been present since MPFR 2.1.0 (exceptions were not
  supported before).

Patch 2 fixes the following bug:

  The mpfr_rec_sqrt function can have undefined behavior due to the
  call of mpn_add_1 or mpn_sub_1 (from GMP) with a null size, which is
  not allowed. The fourth argument of mpn_add_1 or mpn_sub_1 (i.e. the
  value that should have been added or subtracted) is here also 0, so
  that the consequences are limited. In practice, with the current GMP
  version, this yields a small buffer overflow (1 limb, i.e. 32 bits
  or 64 bits), as shown by valgrind, with the possible consequences:
  a crash, or memory corruption (very unlikely) if another process or
  thread modifies the limb at the same time (as in this context, the
  value is first read then written back by GMP). This bug has always
  been present since the introduction of the mpfr_rec_sqrt function
  in MPFR 2.4.0.

Patch 1 fixes the following bug:

  If the exponent range has been reduced such that emax = 1 or 2,
  mpfr_asin may give an incorrect result on +1 and -1.

which should probably never occur in practical codes.

(asau)

2011-05-08 20:50:22 UTC MAIN commitmail json YAML

2011-05-08 20:50:09 UTC MAIN commitmail json YAML

Update GMP to version 5.0.2

Changes between GMP version 5.0.1 and 5.0.2

  BUGS FIXED
  * Many minor bugs related to portability fixed.

  * The support for HPPA 2.0N now works, after an assembly bug fix.

  * A test case type error has been fixed.  The symptom of this bug
    was spurious 'make check' failures.

  SPEEDUPS
  * None, except indirectly through recognition of new CPUs.

  FEATURES
  * Fat builds are now supported for 64-bit x86 processors also under Darwin.

  MISC
  * None.

(asau)

2011-05-08 20:46:31 UTC MAIN commitmail json YAML

Note update of www/wordpress

(morr)

2011-05-08 20:43:36 UTC MAIN commitmail json YAML

Security update to 3.1.2.

* Fix a vulnerability that allowed Contributor-level users to improperly
  publish posts.
* Fix user queries ordered by post count.
* Fix multiple tag queries.
* Prevent over-escaping of post titles when using Quick Edit for pages.

(morr)

2011-05-08 20:35:48 UTC MAIN commitmail json YAML

2011-05-08 20:35:25 UTC MAIN commitmail json YAML

Update GSL to version 1.15

New in gsl-1.15:

** Added Tuomo Keskitalo's new ode branch ode-initval2 with a
  gsl_odeiv2 prefix. This provides proper support for implicit
  solvers.  It is intended to be the new default for differential
  equations.  The existing gsl_odeiv routines will be retained for
  binary compatibility but their interface will be deprecated.

** Added new gsl_integrate_cquad routines for robust integration of
  difficult functions using the doubly-adaptive CQUAD algorithm
  (Pedro Gonnet).

** Added error checking to CBLAS functions (Jose Luis Garcia Pallero)

** Added a new function gsl_integration_glfixed_point to return
  ordered Gauss-Legendre points and weights contained within a
  gsl_integration_glfixed_table [bug #32237].

** Added a new function gsl_interp_type_min_size to return the size of
  an interpolation type.

** Added a function gsl_pow_uint(x,n) to compute x^n for unsigned
  exponents (needed when n exceeds the range of signed integers).

** Added new routine gsl_linalg_complex_cholesky_invert to handle the
  matrix inversion for complex Cholesky decompositions (Huan Wu).

** Added the functions gsl_vector_equal(x,y) and gsl_matrix_equal(x,y)
  for testing equality of two vectors or matrices.

** Added function gsl_eigen_nonsymmv_params to control the balancing
  transformation for eigenvector calculations. Balancing is now
  turned off by default for gsl_eigen_nonsymmv.

** It is now possible to choose an alternative cblas library via
  pkg-config using the GSL_CBLAS_LIB environment variable or
  the pkg-config --define-variable option.

** The jacobi method gsl_eigen_jacobi now uses the norm of the
  off-diagonal elements for its convergence criterion, as in
  algorithm 8.4.3 of Golub and van Loan.

** The newton multiroot solvers now return an error when a singular
  jacobian is detected.

** The interpolation functions now return NaN and when x is out of range,
  instead of extrapolating.

** The gsl_multimin_fdfsolver multidimensional minimisers now return
  GSL_ENOPROG immediately if the generated trial point does not
  differ from the initial point (to machine precision), avoiding
  unnecessary further iterations.

** Extended the range of gsl_sf_bessel_lnKnu_e by rescaling
  intermediate results to avoid internal overflows [bug #31528].

** Improved the result of gsl_sf_atanint_e for large arguments by
  adding the first order 1/x correction term. [bug #29562]

** Fixed the gsl_rng_ranlxs generators to enforce a maximum seed value
  of 2^31-1.  Larger seed values caused out of range values to be
  returned.

** Fixed gsl_ran_chisq_pdf(x,nu) to return correct result of 1/2
  instead of 0 when x=0 and nu=2, and +inf when x=0 and nu<2.

** Fixed gsl_pow_int(x,n) to avoid an infinite loop when n=INT_MIN due
  to wrapping of signed integers.

** Fixed gsl_sf_hyperg_2F1(a,b,c,x) to avoid returning NaN for
  arguments |a|>10. [bug #24812]

** Avoid spurious underflow return code in gsl_sf_beta_inc_e when
  intermediate underflow does not affect the result. [bug #30933]

** Avoid segfault in Chebyshev series derivatives gsl_cheb_calc_deriv
  for n=1. [bug #29139]

(asau)

2011-05-08 19:29:02 UTC MAIN commitmail json YAML

Adjust installed version auto-detection

(adam)

2011-05-08 18:56:35 UTC MAIN commitmail json YAML

+ ImageMagick-6.6.9.8, akonadi-1.5.3, calibre-0.8, drivel-3.0.3,
  farsight2-0.0.27, gmp-5.0.2, gnutls-2.12.4, graphviz-2.28.0,
  gsl-1.15, gupnp-igd-0.1.11, libXext-1.3.0, neon-0.29.6,
  p5-PerlMagick-6.6.9.8, puzzles-9170, qemu-0.14.1,
  startup-notification-0.11, x264-devel-20110507, xchm-1.20.

(wiz)

2011-05-08 18:49:26 UTC MAIN commitmail json YAML

Added textproc/zoem version 10.265

(cheusov)

2011-05-08 18:48:54 UTC MAIN commitmail json YAML

+zoem, oked by sponsors

(cheusov)

2011-05-08 18:47:44 UTC MAIN commitmail json YAML


Zoem is an interpretive macro language with substantial facilities for
programming. It supports a two-stage process, consisting of macro
interpretation (featuring inside-out evaluation if needed), followed
by a simple and powerful application of stream character filtering.

Its syntax is remindful of \it{TeX}'s, it has dictionary stacks like
\it{PostScript}, and various resemblances to \it{m4} and \it{info}.
It has interfaces to modules making life easy \- counters, references,
arithmetic, multi-dimensional data storage, input/output operations,
regular expressions, and system commands.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(cheusov)

2011-05-08 18:35:12 UTC MAIN commitmail json YAML

Added devel/lmdbg version 0.16.0nb1

(cheusov)

2011-05-08 18:33:57 UTC MAIN commitmail json YAML

+lmdbg, oked by sponsors

(cheusov)

2011-05-08 18:32:16 UTC MAIN commitmail json YAML


LMDBG is a collection of small tools for collecting and analyzing logs
of malloc/realloc/memalign/free etc. function calls. Unlike many
others, LMDBG does not provide any way to detect overruns of the
boundaries of malloc() memory allocations, as this is not the
goal. Like most other malloc debuggers, LMDBG allows detecting memory
leaks. Unlike some others LMDBG generates full stacktraces and
separates the logging process from analysis, thus allowing you to
analyze application on a per-module basis. Simple but powerful tools
for analisis are also provided.

lmdbg-run    - Creates malloc/realloc/free/memalign/... logs
lmdbg-sym    - Converts addresses to 'file.c:NUM func_name'
lmdbg-leak  - Checks for memory leaks
lmdbg-stat  - Gathers statistical information about memory allocations
lmdbg-grep  - Greps the stackframes
lmdbg-strip  - Strips the stackframes
lmdbg-module - Enrichs the stackframes with a module name
lmdbg-sort  - Sorts the stackframes by e.g. total allocated bytes,
              a number of memory allocations etc.
lmdbg-sysleaks - Filters out system memory leaks e.g. libc's

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(cheusov)

2011-05-08 18:22:34 UTC MAIN commitmail json YAML

Added textproc/dict-mueller7 version 1.2

(cheusov)

2011-05-08 18:21:58 UTC MAIN commitmail json YAML

+ dict-mueller7, oked by sponsors

(cheusov)

2011-05-08 18:19:54 UTC MAIN commitmail json YAML


This is the GPL'd 7th edition of the very well known English-Russian
dictionary by V.K.Mueller compiled for dictd (dictionary protocol server).

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(cheusov)

2011-05-08 18:15:04 UTC MAIN commitmail json YAML

fix sysutils/user_irix entry

(cheusov)

2011-05-08 17:43:26 UTC MAIN commitmail json YAML

lang/mawk, sysutils/user_irix and devel/libmaa

(cheusov)

2011-05-08 17:07:25 UTC MAIN commitmail json YAML

2011-05-08 16:25:09 UTC MAIN commitmail json YAML

Note update of www/contao29-translations package to 20110508.

(taca)

2011-05-08 16:24:13 UTC MAIN commitmail json YAML

Update contao29-translations pacakge to 20110508.

Update Hungarian, Japanese and Lithuanian language files.

(taca)

2011-05-08 16:03:35 UTC MAIN commitmail json YAML

Note update of these pacakges (MySQL 5.1.57):

databases/mysql51-client 5.1.57
databases/mysql51-server 5.1.57

(taca)

2011-05-08 16:01:58 UTC MAIN commitmail json YAML

2011-05-08 15:12:22 UTC MAIN commitmail json YAML

PR pkg/37952. Minor clean-ups. Use only one line USE_TOOLS+=...

(cheusov)

2011-05-08 11:52:40 UTC MAIN commitmail json YAML

Add buildlink3.mk file.

(wiz)

2011-05-08 11:12:12 UTC MAIN commitmail json YAML

Added fonts/konatu-ttf version 26

(ryoon)

2011-05-08 11:11:33 UTC MAIN commitmail json YAML

Add konatu-ttf

(ryoon)

2011-05-08 11:10:14 UTC MAIN commitmail json YAML

Import konatu-ttf-26 as fonts/konatu-ttf from wip/konatu-ttf.

This package contains sans-serif Konatu fonts, Konatu (proportional)
and KonatuTohaba (monospace). The kanji characters in these fonts are
based on JIS X 0208.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(ryoon)

2011-05-08 11:07:44 UTC MAIN commitmail json YAML

Added fonts/ricty-ttf version 2.0.1

(ryoon)

2011-05-08 11:06:20 UTC MAIN commitmail json YAML

2011-05-08 11:05:31 UTC MAIN commitmail json YAML

Import ricty-ttf-2.0.1 as fonts/ricty-ttf from wip/ricty-ttf.

Ricty font is developed for research and programming use.
Ricty is free TrueType font and based on Inconsolata and
Migu 1M (based on M+ 1M and IPA Gothic).

* Latin characters are Inconsolata.
* Non-Latin characters are Migu 1M.
* 2-byte characters have double width of 1-byte ones.
* 2-byte white space is visible.
* 2-byte comma and period are different look.
* An en dash has broken-line look.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(ryoon)

2011-05-08 11:00:18 UTC MAIN commitmail json YAML

Set LICENSE as mplusfont

(ryoon)

2011-05-08 10:56:43 UTC MAIN commitmail json YAML

Set LICENSE as mplusfont.

(ryoon)

2011-05-08 10:53:22 UTC MAIN commitmail json YAML

Add mplusfont and cc-by-sa-v3.0 to the default list.

(ryoon)

2011-05-08 10:44:04 UTC MAIN commitmail json YAML

* Add M+ Font License as mplusfont.
* Add Creative Commons Attribution-ShareAlike 3.0 Unported as cc-by-sa-v3.0.

(ryoon)

2011-05-08 10:37:54 UTC MAIN commitmail json YAML

Fix bug in .include directive. This fixes mipspro support on IRIX.
Oked by wiz@

(cheusov)

2011-05-08 09:11:08 UTC MAIN commitmail json YAML

regen for targz change

(wiz)

2011-05-08 09:09:31 UTC MAIN commitmail json YAML

Updated graphics/png to 1.5.3beta06

(wiz)

2011-05-08 09:09:20 UTC MAIN commitmail json YAML

Update to 1.5.3beta06:
Version 1.5.3beta06 [May 8, 2011]
  Removed the -D_ALL_SOURCE from definitions for AIX in CMakeLists.txt
  Implemented premultiplied alpha support: png_set_alpha_mode API

(wiz)

2011-05-08 08:26:43 UTC MAIN commitmail json YAML

2011-05-08 06:02:43 UTC MAIN commitmail json YAML

Switch to use default EXTRACT_SUFX for distfile, .tar.gz is the only long term
provided archive for libpng beta release.

(obache)

2011-05-07 22:25:09 UTC MAIN commitmail json YAML

KGet does not properly sanitise the "name" attribute of the "file" element
of metalink files before using it to download files.
http://secunia.com/advisories/44124/

(markd)

2011-05-07 22:16:16 UTC MAIN commitmail json YAML

Use useradd/groupadd scripts from sysutils/user_irix package on IRIX
Closes PR pkg/44564

(cheusov)

2011-05-07 20:03:45 UTC MAIN commitmail json YAML

Added editors/nts version 77

(ryoon)

2011-05-07 20:02:42 UTC MAIN commitmail json YAML

2011-05-07 20:02:23 UTC MAIN commitmail json YAML

Import nts-77 as editors/nts from pkgsrc/wip/nts.

nts is an acronym for Note Taking Simplified. It provides a simple,
intuitive format for using plain text files to store notes, a
command line interface for viewing notes in a variety of convenient
ways and a cross-platform, wx(python)-based GUI for creating and
modifying notes as well as viewing them. Displayed items can be
grouped by path or tag and can be filtered in various ways.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(ryoon)

2011-05-07 18:39:06 UTC MAIN commitmail json YAML

2011-05-07 17:02:40 UTC MAIN commitmail json YAML

sort PLIST, add two missing ocaml files

(tnn)

2011-05-07 16:56:03 UTC MAIN commitmail json YAML

Updated lang/clang to 2.9nb1

(adam)

2011-05-07 16:55:58 UTC MAIN commitmail json YAML

Override texi2html & pod2man detection so that manpages belonging to
emulators/qemu don't get spuriously overwritten during install.

(tnn)

2011-05-07 16:54:56 UTC MAIN commitmail json YAML

2011-05-07 15:49:37 UTC MAIN commitmail json YAML

fix build failure caused by #!/usr/bin/env. revied by wiz@
(libexec/mc/extfs.d/s3+ script is not checked for interpreter correctness)

(cheusov)

2011-05-07 15:45:46 UTC MAIN commitmail json YAML

+user_irix (package oked by wiz@ and reed@)

(cheusov)

2011-05-07 15:43:13 UTC MAIN commitmail json YAML

2011-05-07 14:32:02 UTC MAIN commitmail json YAML

add patch from upstream to fix format string vulnerability (CVE-2011-1764)
bump PKGREV

(drochner)

2011-05-07 13:57:51 UTC MAIN commitmail json YAML

Updated net/mikutter to 0.0.3.3

(obache)

2011-05-07 13:57:35 UTC MAIN commitmail json YAML

Update mikutter to 0.0.3.3.

* Add HTTP proxy support.
* Support notify with Growl.
* Support sound with SDL.
* Fix to get tweet from keyed account.
* Some bug fixes and performance improvements.

(obache)

2011-05-07 10:48:14 UTC pkgsrc-2011Q1 commitmail json YAML

Pullup tickets #3422, #3423 and #3424.

(tron)

2011-05-07 10:47:32 UTC pkgsrc-2011Q1 commitmail json YAML

Pullup ticket #3424 - requested by obache
net/maradns: security update

Revisions pulled up:
- net/maradns/Makefile                                          1.23
- net/maradns/distinfo                                          1.12
- net/maradns/patches/patch-ad                                  1.4

---
  Module Name: pkgsrc
  Committed By: obache
  Date: Fri May  6 11:36:24 UTC 2011

  Modified Files:
  pkgsrc/net/maradns: Makefile distinfo
  pkgsrc/net/maradns/patches: patch-ad

  Log Message:
  Update maradns to 1.4.06.

      maradns-1.4.06:

      This is the stable branch of MaraDNS.

          * Fix for CVE-2011-0520
          * Deadwood updated to 3.0.02

        (2011.01.28)

      maradns-1.4.05:

      This is a stable branch of MaraDNS.

          * Deadwood updated to the stable 3.0.01 release.
          * MicroDNS now returns "not implemented" when given an EDNS packet
          * FAQ updated.

        (2010.09.25)

      maradns-1.4.04:

      This is the stable branch of MaraDNS.

          * Bugfix: NAPTR records now work when ~ is used to separate
            records
          * NAPTR records now documented
          * Bugfix: ANY queries now correctly work with NS referrals
          * Example IPv6 addresses now use RFC-4193 compliant IPs
          * Website updated to point out that Deadwood is now feature
            complete and ready for beta-testing
          * Some updates to the SQA regressions
          * Deadwood updated to Deadwood 2.9.02
          * Windows-only mkSecretTxt program added (*NIX users can
            just type in "dd if=/dev/urandom of=secret.txt bs=64
            count=1"; this gives Windows the same ability).

        (2010.07.31)

(tron)

2011-05-07 10:44:31 UTC pkgsrc-2011Q1 commitmail json YAML

Pullup ticket #3423 - requested by taca
net/bind98: security update

Revisions pulled up:
- net/bind98/Makefile                                          1.2
- net/bind98/distinfo                                          1.2

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Fri May  6 00:34:32 UTC 2011

  Modified Files:
  pkgsrc/net/bind98: Makefile distinfo

  Log Message:
  Update bind98 pacakge to 9.8.0p1 (9.8.0-P1).

  Fixes https://www.isc.org/CVE-2011-1907.

  --- 9.8.0-P1 released ---

  3100. [security] Certain response policy zone configurations could
  trigger an INSIST when receiving a query of type
  RRSIG. [RT #24280]

(tron)

2011-05-07 10:30:37 UTC pkgsrc-2011Q1 commitmail json YAML

Pullup ticket #3422 - requested by obache
databases/p5-Jifty-DBI: security update

Revisions pulled up:
- databases/p5-Jifty-DBI/Makefile                              1.7
- databases/p5-Jifty-DBI/distinfo                              1.5

---
  Module Name: pkgsrc
  Committed By: obache
  Date: Thu May  5 11:36:40 UTC 2011

  Modified Files:
  pkgsrc/databases/p5-Jifty-DBI: Makefile distinfo

  Log Message:
  Update p5-Jifty-DBI to 0.68.

  0.68 2011-04-14
  - Security:
        * Prevent SQL injection in column names, operators, order and group by
          (Alex Vandiver)
        * Fix distinct_query to catch injection and correctly rewrite to
          function => '' (Alex Vandiver)
        * Prevent SQL injection via IS

  - Fixes:
        * There is no need to check $args{column} around our LIKE adjustments
          (Alex Vandiver)
        * Slightly unify nigh-identical codepaths between Pg and Oracle
          (Alex Vandiver)

  0.67 2011-02-28
  - Features:
        * Make ->distinct_column_values use ->simple_query, thus going through our
          SQL logging infrastructure (Alex Vandiver)

  - Fixes:
        * Set raw_values in load_by_hash so the __raw_value method works when the
          record is loaded by a collection (Thomas Sibley)

  - Tests:
        * Author tests for no tabs (Shawn M Moore)

  0.66 2011-02-14
  - Features:
        * Provide a sane way to wrap a function around an aliased column in order_by
        * Pass old_value to triggers on column update

  - Fixes:
        * Respect the 'by' attribute for refers_to columns in create and set
        * Use the right FK when using a record object in load_by_cols or
          limit [rt.cpan.org #64779]
        * Don't encode fields when attempting to limit with IS
        * Fix since/till by refactoring columns to use an updated all_columns

  - Installation:
        * Only run these URI filter tests if we have URI [rt.cpan.org #65047]

  0.64 Wed Dec  8 15:21:17 EST 2010
  - Installation:
        * Minor distribution fixes

  0.63 Wed Dec  8 15:14:17 EST 2010
  - Features:
        * distinct_column_values method, docs and tests

  - Fixes:
        * Warn about load(arg => value)
        * Include column_name in the value passed to reader warning
        * It is a rare but possible case that 0 is a valid id
        * Ensure encode_base64 doesn't choke on utf8

  0.62 Thu May 20 13:58:53 EST 2010
  - Features:
        * Computed columns let you have the Jifty-DBI scaffolding but without
          touching the database
        * Column->is_boolean

  - Fixes:
        * Don't attempt to store undef values in memcached
        * Avoid undef warnings

  0.61 Mon Jan  4 13:04:20 EST 2010
  - Installation:
        * Minor distribution fixes

  0.60 Mon Jan  4 13:02:17 EST 2010
  - Features:
        * Allow passing of extra parameters to canonicalizers
        * Add an attribute which controls placeholder use for load_by_cols

  - Fixes:
        * Don't add LOWER() on <= or >= operators, only = and !=
        * Better case sensitivity tests
        * Expose quote_value() on Jifty::DBI::Handle
        * When generating COUT, don't add a DISTINCT unless needed
        * Fix t/12prefetch.t's assumptions on row ordering

(tron)

2011-05-07 10:07:12 UTC MAIN commitmail json YAML

Fix build on NetBSD 4

(shattered)

2011-05-07 10:06:34 UTC MAIN commitmail json YAML

2011-05-07 10:06:02 UTC MAIN commitmail json YAML

2011-05-07 09:59:16 UTC MAIN commitmail json YAML

Closes PR pkg/44851, oked by wiz@ and reed@
Add LICENCE
Update to 1.0.5
  Major changes in Judy-1.0.5:
  1.0.5  Version by (twh)
  o added proper clean targets to enable multiple builds
  o added examples directory
  o Correctly Detects 32/64-bit build environment
  o Allow explicit configure for 32/64-bit environment

(cheusov)

2011-05-07 09:43:05 UTC MAIN commitmail json YAML

Closes PR pkg/44852, oked by wiz@ and reed@
Update mawk to 1.3.4.20100625
Major changes in this release of mawk:
    20100625
        + correct translation of octal and hex escapes for system regular
          expression library.
        + modify configure script to support --program-suffix, etc.
        + add Debian package scripts, for "mawk-cur".
        + add RPM spec-file.
        + move release- and patch-level values from version.c to patchlev.h
          to simplify packaging scripts.

    20100618
        + correct translation of "^{" pattern for system regular expression
          library  (report by Elias Pipping).
        + fix sentence fragment in README (report by Elias Pipping).

    20100507
        + cleanup gcc warnings for 64-bit platform, e.g., use size_t rather
          than unsigned, etc.
        + fix warnings from clang --analyze
        + update/improve configure script
          + modify CF_GCC_VERSION to ignore stderr, e.g., from c89 alias
          + modify CF_GCC_WARNINGS, moving -W and -Wall into the list to check,
            since c89 alias for gcc complains about these options.
          + add --disable-leaks and related options, for testing.
          + add lint rule to makefile.
          + add configure-check for ctags to work with pkgsrc.
        + amend change of array.w, fixes a regression in "delete" (report by
          Heiner Marxen).

    20100419
        + modify split() to handle embedded nulls in the string to split, e.g.,
                BEGIN{s="a\0b"; print length(s); n = split(s,f,""); print n}
          (report by Morris Lee).
        + modify array.w to update table pointers in the special case where
          an array is known to have string-indices, but is later indexed via
          integers.  The problem occurs when the array grows large enough to
          rehash it, e.g.,
                BEGIN{a["n"];for(i=1;i<1000;++i)printf "%d\n", a[i]; }
          (report by Morris Lee).
        + increase size of reference-count for strings to unsigned.  It was an
          unsigned short, which prevented using arrays larger than 64k, e.g.,
                BEGIN{for(i = 1; i <= 65550; ++i){if(i >= 65534 && i<=65537) print i; s[i] = "a"}; delete s;}
          (report by Morris Lee).
        + add special case for Solaris 10 (and up) to configure check
          CF_XOPEN_SOURCE
        + refactored configure check CF_REGEX

    20100224
        + add a configure check for large files (report by Sean Kumar).
        + modify check in collect_RE() to show the actual limit value, e.g.,
          MIN_SPRINTF-2 used for built-in regular expressions.
        + increase MIN_SPRINTF, used as limit on regular-expression size, to
          match the MAX_SPLIT value, i.e., slightly more than doubling the size
          (report by Markus Gnam).
        + further modify makefile to build outside the source-tree.
        + modify makefile and mawktest to use relative path again, since the
          existing script did not work with openSUSE's build (patch by Guido
          Berhoerster).
        + fix makefile's .c.i rule, which lacked CPP definition.
        + update mawktest.bat script to more/less correspond with mawktest,
          for Win32 console except where echo command does not handle the
          required quoting syntax.
        + add vs6.mak, for Visual Studio 6.
        + modify mawktest script to report results from all tests, rather than
          halting on the first failure.
        + add limit-check after processing match(test, "[^0-9A-Za-z]") to
          ensure the internal trailing null of the test-string is not mistaken
          for part of the string, i.e., RSTART, RLENGTH are computed correctly
          (report by Markus Gnam).
        + modify parsing of -W option to use comma-separated values, e.g.,
          "-Wi,e" for "-Winteractive" and "-Werror".
        + add timestamp to scancode.c, to help manage revisions.
        + improve configure macro CF_XOPEN_SOURCE, making it remove possibly
          conflicting definitions before adding new ones.
        + update config.guess and config.sub

        > patches by Jan Psota:

        + improve buffering for -Winteractive option.
        + allow multiple single-character flags after -W, e.g., "-Wie" for
          "-Winteractive" and "-Werror" to permit these to be passed on a
          "#"-line of a shell script, e.g.,
                #!/usr/bin/mawk -Wie

        > patches by Jonathan Nieder:

        + add new M_SAVE_POS and M_2JC operation codes (states) to the
          built-in regular expression engine.  Use these to reimplement
          m* (closure), to provide a way to avoid infinite looping on
          matches against empty strings.  This change requires
          reimplementing
          the workaround for gawk's noloop1 testcase from 20090726.
        + improve buffer-overflow check for string_buff.
        + fix collect_RE to treat "[^]]" as a character class (meaning "not a
          closing bracket") but "[^^]]" not as one.  This also requires
          initializing the local "start of character class" variable to NULL
          rather than the beginning of the string, to avoid an invalid array
          access when collecting expressions such as "^text".
        + within a character class and not followed by a :, ., or ~, a "[" is
          just like any other character.  This way, you can tell mawk to scan
          for a literal [ character with "mawk /[[]/", and you can scan for a [
          or ] with "mawk /[][]/".  Also clean up the relevant loop in
          do_class() to make it a bit more readable.
        + outside a character class, a "]" is just like any other character.
        + prevent do_class() from scanning past the end, e.g., if the
          terminating zero byte was escaped.
        + fix regular-expression parsing when a right parenthesis ")" is
          found without a preceding left parenthesis.
        + fix resetting of position stack when backtracking.
        + modify regular-expression engine to avoid exponential running time
          for some regular expression matches in which the first match mawk
          finds extends to the end of the string.  This is a new fix for the
          gawk noloop2 test, added here for regression testing.

(cheusov)

2011-05-07 07:11:22 UTC MAIN commitmail json YAML

xenkernel41 didn't build on current/amd64.
It uses -nostdinc and tries to use #include <stdarg.h> through
a local copy of stdarg.h, which can't work.
Fixed this by putting the relevant builtin stdarg definitions for
NetBSD in the local copy.

(tnn)

2011-05-07 06:39:16 UTC MAIN commitmail json YAML

drop superflous item in CHECK_PORTABILITY_SKIP

(tnn)

2011-05-07 05:15:21 UTC MAIN commitmail json YAML

Unbreak SP initiated SLO with lasso >= 2.3.5 (patch backported from upstream)

(manu)

2011-05-07 04:05:04 UTC MAIN commitmail json YAML

Updated databases/mysql55-{client,server} to 5.5.12

(adam)

2011-05-07 04:03:08 UTC MAIN commitmail json YAML

Changes 5.5.12:
* Fixed bugs: Illegal mix of collations
* Problem: comparison of a DATETIME sp variable and NOW() led to Illegal mix of
  collations error when character_set_connection=utf8.
* Error happened in Arg_comparator::set_compare_func(), because the first
  argument was errouneously converted to utf8, while the second argument was
  not.
* Fix: separate agg_arg_charsets_for_comparison() into two functions:
  - agg_arg_charsets_for_comparison() - for pure comparison, when we don't need
    to return any string result and therefore don't need to convert arguments
    to @@character_set_connection:
          SELECT a = b;
  - agg_arg_charsets_for_string_results_with_comparison() - when we need to
    return a string result, but we also need to do comparison internally:
          SELECT REPLACE(a,b,c)
    If all arguments are numbers:
          SELECT REPLACE(123,2,3) -> 133
    we convert arguments to @@character_set_connection.

(adam)

2011-05-07 03:01:53 UTC MAIN commitmail json YAML

Updated security/ruby-simple_oauth to 0.1.5

(obache)

2011-05-07 03:01:35 UTC MAIN commitmail json YAML

Update ruby-simple_oauth to 0.1.5.

* Rakefiles are executables, and rake loads rake, not rakefile code
* Replace rcov with simplecov
* Convert README to Markdown
* Convert LICENSE to Markdown
* Replace rdoc with yard
* Add turn in development for more verbose test output
* Trust the load path
* Remove vestigial VERSION file
* Add Travis configuration file
* Bundle setup before running tests
* Require rubygems
* Add bundler as a development dependency
* Apparently, Object#tap was added in 1.8.7, not 1.9
* Add jruby-openssl dependency
* Add link to Travis CI
* Remove vestigial rdoc options from gem specification
* Bump version to 0.1.5

(obache)

2011-05-07 00:19:06 UTC MAIN commitmail json YAML

2011-05-07 00:18:49 UTC MAIN commitmail json YAML

Bump PKGREVISION for previous (to 6) -- while the build was failing, it
only started failing after the /usr/bin/env change, and the installed
package is now different, so it should be a new version.

(dholland)

2011-05-06 20:28:08 UTC MAIN commitmail json YAML

+ kde4-4.6.3, puzzles-9167.

(wiz)

2011-05-06 19:42:48 UTC MAIN commitmail json YAML

Add LIBnn=lib to ./configure environment. This fixes a build failure on 64bit linux.

Briefly discussed with wiz@

(alnsn)

2011-05-06 19:30:14 UTC MAIN commitmail json YAML

pass --libdir to ./configure to fix lib64 vs lib confusion on linux

(alnsn)

2011-05-06 18:02:06 UTC MAIN commitmail json YAML

2011-05-06 16:27:04 UTC MAIN commitmail json YAML

Fix build on (at least RHEL 5.6). Tested (and no change) on NetBSD 5.99.51

(abs)

2011-05-06 16:21:25 UTC MAIN commitmail json YAML

Fix build on (at least RHEL 5.6). Tested (and no change) on NetBSD 5.99.51

(abs)

2011-05-06 16:21:16 UTC MAIN commitmail json YAML

Fix build on (at least RHEL 5.6). Tested (and no change) on NetBSD 5.99.51

(abs)

2011-05-06 13:12:48 UTC MAIN commitmail json YAML

PR pkg/44894

* Improve patch for Makefile.in. No functional change.

Thank you, Rhialto.

(ryoon)

2011-05-06 11:36:59 UTC MAIN commitmail json YAML

Updated net/maradns to 1.4.06

(obache)

2011-05-06 11:36:24 UTC MAIN commitmail json YAML

Update maradns to 1.4.06.

  maradns-1.4.06:

  This is the stable branch of MaraDNS.

      * Fix for CVE-2011-0520
      * Deadwood updated to 3.0.02

    (2011.01.28)

  maradns-1.4.05:

  This is a stable branch of MaraDNS.

      * Deadwood updated to the stable 3.0.01 release.
      * MicroDNS now returns "not implemented" when given an EDNS packet
      * FAQ updated.

    (2010.09.25)

  maradns-1.4.04:

  This is the stable branch of MaraDNS.

      * Bugfix: NAPTR records now work when ~ is used to separate
        records
      * NAPTR records now documented
      * Bugfix: ANY queries now correctly work with NS referrals
      * Example IPv6 addresses now use RFC-4193 compliant IPs
      * Website updated to point out that Deadwood is now feature
        complete and ready for beta-testing
      * Some updates to the SQA regressions
      * Deadwood updated to Deadwood 2.9.02
      * Windows-only mkSecretTxt program added (*NIX users can
        just type in "dd if=/dev/urandom of=secret.txt bs=64
        count=1"; this gives Windows the same ability).

    (2010.07.31)

(obache)

2011-05-06 09:32:50 UTC MAIN commitmail json YAML

make Python extensions work (adds Python dependency), add some
CHECK_INTERP_SKIPs to quell false warnings
bump PKGREV

(drochner)

2011-05-06 08:27:07 UTC MAIN commitmail json YAML

2011-05-06 07:20:17 UTC MAIN commitmail json YAML

Updated graphics/png to 1.5.3beta05

(adam)

2011-05-06 07:19:23 UTC MAIN commitmail json YAML

Changes 1.5.3beta05:
* Added the "_POSIX_SOURCE" feature test macro to ensure libpng sees the
  correct API. _POSIX_SOURCE is defined in pngpriv.h, pngtest.c and
  pngvalid.c to ensure that POSIX conformant systems disable non-POSIX APIs.
* Removed png_snprintf and added formatted warning messages.  This change adds
  internal APIs to allow png_warning messages to have parameters without
  requiring the host OS to implement snprintf.  As a side effect the
  dependency of the tIME-supporting RFC1132 code on stdio is removed and
  PNG_NO_WARNINGS does actually work now.
* Added PNG_WRITE_OPTIMIZE_CMF_SUPPORTED macro to make the zlib "CMF" byte
  optimization configureable.
* IDAT compression failed if preceded by a compressed text chunk (bug
  introduced in libpng-1.5.3beta01-02).  This was because the attempt to
  reset the zlib stream in png_write_IDAT happened after the first IDAT
  chunk had been deflated - much too late.  In this change internal
  functions were added to claim/release the z_stream and, hopefully, make
  the code more robust.  Also deflateEnd checking is added - previously
  libpng would ignore an error at the end of the stream.

(adam)

2011-05-06 05:54:12 UTC MAIN commitmail json YAML

2011-05-06 05:48:24 UTC MAIN commitmail json YAML

Updated devel/msgpack to 0.5.6

(obache)

2011-05-06 05:48:11 UTC MAIN commitmail json YAML

Update msgpack to 0.5.6.

2011-04-24 version 0.5.6:

  * #42 fixes double-free problem on msgpack_unpacker_release_zone

(obache)

2011-05-06 05:30:49 UTC MAIN commitmail json YAML

Updated net/zeromq to 2.1.6

(obache)

2011-05-06 05:30:34 UTC MAIN commitmail json YAML

Update zeromq to 2.1.6.

0MQ version 2.1.6 (Stable), released on 2011/04/26
==================================================

Bug fixes
---------

* Fixed memory leak with threads on Windows.

* Assert during SUB socket termination fixed.

Changes
-------

* Checks zmq_msg_t validity at each operation.

* Inproc performance tests now work on Windows.

* PGM wire format specification improved in zmq_pgm(7)

* Added thread latency/throughput performance examples.

* Added "--with-system-pgm" configure option to use already installed
  OpenPGM.

0MQ version 2.1.5 (Broken), released on 2011/04/20
==================================================

Note that this version contained a malformed patch and is not usable.
It is not available for download, but is available in the git via the
2.1.5 tag.

0MQ version 2.1.4 (Stable), released on 2011/03/30
==================================================

Bug fixes
---------

* Fix to OpenPGM which was asserting on small messages (Steven McCoy).

Changes
-------

* Upgraded OpenPGM to version 5.1.115 (Pieter Hintjens).

* OpenPGM build changed to not install OpenPGM artifacts.

0MQ version 2.1.3 (Stable), released on 2011/03/21
==================================================

Bug fixes
---------

* Fix to PUSH sockets, which would sometimes deliver tail frames of a
  multipart message to new subscribers (Martin Sustrik).

* Fix to PUB sockets, which would sometimes deliver tail frames of a
  multipart message to new subscribers (Martin Sustrik).

* Windows build was broken due to EPROTONOSUPPORT not being defined. This
  has now been fixed (Martin Sustrik).

* Various fixes to make OpenVMS port work (Brett Cameron).

* Corrected Reference Manual to note that ZMQ_LINGER socket option may be
  set at any time, not just before connecting/binding (Pieter Hintjens).

* Fix to C++ binding to properly close sockets (Guido Goldstein).

* Removed obsolete assert from pgm_socket.cpp (Martin Sustrik).

Changes
-------

* Removed stand-alone devices (/devices subdirectory) from distribution.
  These undocumented programs remain available in older packages (Pieter
  Hintjens).

* OpenPGM default rate raised to 40mbps by default (Steven McCoy).

* ZMQ_DEALER and ZMQ_ROUTER macros provided to ease upgrade to 0MQ/3.0.
  These are scheduled to replace ZMQ_XREQ and ZMQ_XREP (Pieter Hintjens).

* Added man page for zmq_device(3) which was hereto undocumented (Pieter
  Hintjens).

* Removed zmq_queue(3), zmq_forwarder(3), zmq_streamer(3) man pages
  (Pieter Hintjens).

OpenPGM Integration
-------------------

* Upgraded OpenPGM to version 5.1.114 (Steven McCoy, Mikko Koppanen).

* Build system now calls OpenPGM build process directly, allowing easier
  future upgrades of OpenPGM (Mikko Koppanen).

* Build system allows configuration with arbitrary versions of OpenPGM
  (./configure --with-pgm=libpgm-x.y.z) (Mikko Koppanen).

* OpenPGM uses new PGM_ODATA_MAX_RTE controlling original data instead of
  PGM_TXW_MAX_RTE covering entire channel (Steven McCoy).

Building
--------

* 0MQ builds properly on FreeBSD (Mikko Koppanen).

0MQ version 2.1.2 (rc2), released on 2011/03/06
===============================================

Bug fixes
---------

* 0MQ now correctly handles durable inproc sockets; previously it ignored
  explicit identities on inproc sockets.

* Various memory leaks were fixed.

* OpenPGM sender/receiver creation fixed.

0MQ version 2.1.1 (rc1), released on 2011/02/23
===============================================

New functionality
-----------------

* New socket option ZMQ_RECONNECT_IVL_MAX added, allows for exponential
  back-off strategy when reconnecting.

* New socket option ZMQ_RECOVERY_IVL_MSEC added, as a fine-grained
  counterpart to ZMQ_RECOVERY_IVL (for multicast transports).

* If memory is exhausted, 0MQ warns with an explicit message before
  aborting the process.

* Size of inproc HWM and SWAP is sum of peers' HWMs and SWAPs (Douglas
  Greager, Martin Sustrik).

Bug fixes
---------

* 0MQ no longer asserts in mailbox.cpp when multiple peers connect with
  the same identity.

* 0MQ no longer asserts when rejecting an oversized message.

* 0MQ no longer asserts in pipe.cpp when the swap fills up.

* zmq_poll now works correctly with an empty poll set.

* Many more.

Building
--------

* 0MQ now builds correctly on CentOS, Debian 6, and SunOS/gcc3.

* Added WithOpenPGM configuration into MSVC builds.

Known issues
------------

* OpenPGM integration is still not fully stable.

0MQ version 2.1.0 (Beta), released on 2010/12/01
================================================

New functionality
-----------------

* New semantics for zmq_close () and zmq_term () ensure that all messages
  are sent before the application terminates. This behaviour may be
  modified using the new ZMQ_LINGER socket option; for further details
  refer to the reference manual.

* The new socket options ZMQ_FD and ZMQ_EVENTS provide a way to integrate
  0MQ sockets into existing poll/event loops.

* Sockets may now be migrated between OS threads, as long as the
  application ensures that a full memory barrier is issued.

* The 0MQ ABI exported by libzmq.so has been formalised; DSO symbol
  visibility is used on supported platforms to ensure that only public ABI
  symbols are exported. The library ABI version has been set to 1.0.0 for
  this release.

* OpenPGM has been updated to version 5.0.92. This version no longer
  depends on GLIB, and integration with 0MQ should be much improved.

* zmq_poll() now honors timeouts precisely, and no longer returns if no
  events are signaled.

* Blocking calls now return EINTR if interrupted by the delivery of a
  signal; this also means that language bindings which previously had
  problems with handling SIGINT/^C should now work correctly.

* The ZMQ_TYPE socket option was added; this allows retrieval of the socket
  type after creation.

* Added a ZMQ_VERSION macro to zmq.h for compile-time API version
  detection.

* The ZMQ_RECONNECT_IVL and ZMQ_BACKLOG socket options have been added.

Bug fixes
---------

* Forwarder and streamer devices now handle multi-part messages correctly.

* 0MQ no longer asserts when malformed data is received on the wire.

* 0MQ internal timers now work correctly if the TSC jumps backwards.

* The internal signalling functionality (mailbox) has been improved
  to automatically resize socket buffers on POSIX systems.

* Many more.

Building
--------

* 0MQ now builds correctly with many more non-GCC compilers (Sun Studio,
  Intel ICC, CLang).

* AIX and HP-UX builds should work now.

* FD_SETSIZE has been set to 1024 by default for MSVC builds.

* Windows builds using GCC (MinGW) now work out of the box.

Distribution
------------

* A simple framework for regression tests has been added, along with a few
  basic self-tests. The tests can be run using "make check".

(obache)

2011-05-06 05:29:13 UTC MAIN commitmail json YAML

2011-05-06 05:28:39 UTC MAIN commitmail json YAML

Put the scorefile in ${VARBASE}/games instead of under ${PREFIX}/share.
It is still mode 666, which is wrong (XXX), but this way:
  - the package will actually install again;
  - the score file is not overwritten every time you recompile/reinstall.

There's also an .if 0 block in the makefile that can be turned on to
install the game setgid so the score file can be mode 664. I'm not
comfortable turning this on without doing at least a basic audit, and
I don't have energy for that at the moment; but it's there and it
works if anyone feels inclined to make that tradeoff locally.

An alternative approach would be to write and install a setgid
scorefile helper program, but that's not really any improvement over
making the scores world writeable

PKGREVISION -> 8.

(dholland)

2011-05-06 04:34:50 UTC MAIN commitmail json YAML

MASTER_SITES <=> HOMEPAGE.

(obache)

2011-05-06 04:33:31 UTC MAIN commitmail json YAML

2011-05-06 04:32:04 UTC MAIN commitmail json YAML

MASTER_SITES <=> HOMEPAGE.

(obache)

2011-05-06 04:13:10 UTC MAIN commitmail json YAML

fix HOMEPAGE url.

(obache)

2011-05-06 04:10:00 UTC MAIN commitmail json YAML

2011-05-06 00:35:17 UTC MAIN commitmail json YAML

Note update of net/bind98 package to 9.8.0pl1.

(taca)

2011-05-06 00:34:32 UTC MAIN commitmail json YAML

Update bind98 pacakge to 9.8.0p1 (9.8.0-P1).

Fixes https://www.isc.org/CVE-2011-1907.

--- 9.8.0-P1 released ---

3100. [security] Certain response policy zone configurations could
trigger an INSIST when receiving a query of type
RRSIG. [RT #24280]

(taca)

2011-05-05 23:39:37 UTC MAIN commitmail json YAML

Updated print/gutenprint-lib to 5.2.7

(gdt)

2011-05-05 23:39:24 UTC MAIN commitmail json YAML

Update to 5.2.7.  Notable changes from 5.2.6 (see release announcement
for full details):

  1) New printers supported in this release:

    - Canon inkjet printers (many):

    - Epson inkjet printers (many):

    - Dye sublimation printers:

      Kodak EasyShare G600 Printer Dock
      Kodak PD-4000
      Kodak PD-6000
      Kodak Photo Printer
      Kodak Photo Printer 500
      Kodak Printer Dock Plus
      Kodak Printer Dock Plus S3

  2) Corrected color matching profile used for Mac OS X 10.5.x.
    sRGB will now be used instead of Generic RGB.  Users with work-
    flows dependant on the previously used Generic RGB can select
    this color profile in the print window by using ColorSync to
    choose the profile rather than using VendorMatching.

  9) Corrected base density for Photo Paper on printers using Claria
    ink (use 20% less ink).  The default results in heavy ink
    puddling in some cases.

12) A problem whereby certain malformed PPD files would cause the
    PostScript driver to crash has been fixed.  In addition, the
    PostScript driver now runs considerably faster.

(gdt)

2011-05-05 21:49:17 UTC MAIN commitmail json YAML

+ aspell-faroese-0.4.0, chrony-1.25, clive-2.3.0.3, diffutils-3.0,
  dri2proto-2.4, gcc44-4.4.6, glproto-1.4.13, gutenprint-5.2.7,
  horde-4.0.2, imp-5.0.2, kronolith-3.0.2, libdvbpsi-0.2.0,
  mousetweaks-3.0.1, puzzles-9166, py-gdata-2.0.14, stunnel-4.36,
  turba-3.0.2, vino-2.32.2, vino-3.0.2, xf86-input-void-1.4.0,
  zile-2.4.0.50.

(wiz)

2011-05-05 21:44:41 UTC MAIN commitmail json YAML

Fix version number in old entry.

(wiz)

2011-05-05 19:36:10 UTC MAIN commitmail json YAML

update to 1.1.0
changes:
-bugfixes
-select improvements
-other minor improvements

(tested with osmarender)

(drochner)

2011-05-05 16:54:55 UTC MAIN commitmail json YAML

In the logic to maybe install a config file, or to install it as
config.new, check within $(DESTDIR) rather than the host system.

Resolves DESTDIR-mode build when privoxy is also installed, common in
make replace.

(No revbump because this change only affects a case where the package
failed to build.)

(gdt)

2011-05-05 12:54:04 UTC MAIN commitmail json YAML

Add tex-parskip{,-doc}

(markd)

2011-05-05 12:51:49 UTC MAIN commitmail json YAML

Add tex-parskip{,-doc}

(markd)

2011-05-05 12:49:44 UTC MAIN commitmail json YAML

Initial import tex-parskip-doc 2.0

documentation for tex-parskip

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(markd)

2011-05-05 12:48:45 UTC MAIN commitmail json YAML

Initial import tex-parskip 2.0

Simply changing \parskip and \parindent leaves a layout that is
untidy; this package (though it is no substitute for a
properly-designed class) helps alleviate this untidiness

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(markd)

2011-05-05 12:40:26 UTC MAIN commitmail json YAML

Updated x11/qt4 to 4.7.3

(adam)

2011-05-05 12:38:40 UTC MAIN commitmail json YAML

Changes 4.7.3:
QtNetwork
- SSL
* [QTBUG-18338] blacklist fraudulent SSL certificates

Qt for Symbian
- Bearer Management
* [QTBUG-15108] Deadlock between SymbianEngine mutex and
QNetworkConfigurationPrivate mutex in the symbian bearer code
* [QTBUG-17627] qnetworksession.h Q_DECLARE_METATYPE breaks building
QtMobility QtBearer depending applications

- GraphicsView
* [QTBUG-17966] Major regression in QGraphicsView OpenVG backend
- Declarative
* [QTBUG-17503] Export qml debugging symbols on Symbian
- Widgets
* [QTBUG-17786] BC between Qt 4.7.3 and 4.6.3 QTreeView::indexRowSizeHint
doesn't return correct value on Symbian for row when QPushButton widget is
inserted in the treeview
* [QTBUG-4953] QMessageBox can not be closed/dismissed on touch phones if any
widget is fullscreen
- Painting
* [QTBUG-17907] tst_QGraphicsTransform::rotation3d test case from
tests/auto/qgraphicstransfor is failed for some rotation angle on
Symbian^3 devices
* [QTBUG-18154] Symbian's QPixmap::logicalDpi[X\Y]() incorrectly
returns MAXINT

(adam)

2011-05-05 12:38:05 UTC MAIN commitmail json YAML

Changes 4.7.3:
QtNetwork
- SSL
* [QTBUG-18338] blacklist fraudulent SSL certificates

Qt for Symbian
- Bearer Management
* [QTBUG-15108] Deadlock between SymbianEngine mutex and
QNetworkConfigurationPrivate mutex in the symbian bearer code
* [QTBUG-17627] qnetworksession.h Q_DECLARE_METATYPE breaks building
QtMobility QtBearer depending applications

- GraphicsView
* [QTBUG-17966] Major regression in QGraphicsView OpenVG backend
- Declarative
* [QTBUG-17503] Export qml debugging symbols on Symbian
- Widgets
* [QTBUG-17786] BC between Qt 4.7.3 and 4.6.3 QTreeView::indexRowSizeHint
doesn't return correct value on Symbian for row when QPushButton widget is
inserted in the treeview
* [QTBUG-4953] QMessageBox can not be closed/dismissed on touch phones if any
widget is fullscreen
- Painting
* [QTBUG-17907] tst_QGraphicsTransform::rotation3d test case from
tests/auto/qgraphicstransfor is failed for some rotation angle on
Symbian^3 devices
* [QTBUG-18154] Symbian's QPixmap::logicalDpi[X\Y]() incorrectly
returns MAXINT

(adam)

2011-05-05 12:37:08 UTC MAIN commitmail json YAML

Changes 4.7.3:
QtNetwork
- SSL
* [QTBUG-18338] blacklist fraudulent SSL certificates

Qt for Symbian
- Bearer Management
* [QTBUG-15108] Deadlock between SymbianEngine mutex and
QNetworkConfigurationPrivate mutex in the symbian bearer code
* [QTBUG-17627] qnetworksession.h Q_DECLARE_METATYPE breaks building
QtMobility QtBearer depending applications

- GraphicsView
* [QTBUG-17966] Major regression in QGraphicsView OpenVG backend
- Declarative
* [QTBUG-17503] Export qml debugging symbols on Symbian
- Widgets
* [QTBUG-17786] BC between Qt 4.7.3 and 4.6.3 QTreeView::indexRowSizeHint
doesn't return correct value on Symbian for row when QPushButton widget is
inserted in the treeview
* [QTBUG-4953] QMessageBox can not be closed/dismissed on touch phones if any
widget is fullscreen
- Painting
* [QTBUG-17907] tst_QGraphicsTransform::rotation3d test case from
tests/auto/qgraphicstransfor is failed for some rotation angle on
Symbian^3 devices
* [QTBUG-18154] Symbian's QPixmap::logicalDpi[X\Y]() incorrectly
returns MAXINT

(adam)

2011-05-05 11:50:56 UTC MAIN commitmail json YAML

Correct mysql 5.5 library path; fix detection on Darwin

(adam)

2011-05-05 11:36:57 UTC MAIN commitmail json YAML

Updated databases/p5-Jifty-DBI to 0.68

(obache)

2011-05-05 11:36:40 UTC MAIN commitmail json YAML

Update p5-Jifty-DBI to 0.68.

0.68 2011-04-14
- Security:
    * Prevent SQL injection in column names, operators, order and group by
      (Alex Vandiver)
    * Fix distinct_query to catch injection and correctly rewrite to
      function => '' (Alex Vandiver)
    * Prevent SQL injection via IS

- Fixes:
    * There is no need to check $args{column} around our LIKE adjustments
      (Alex Vandiver)
    * Slightly unify nigh-identical codepaths between Pg and Oracle
      (Alex Vandiver)

0.67 2011-02-28
- Features:
    * Make ->distinct_column_values use ->simple_query, thus going through our
      SQL logging infrastructure (Alex Vandiver)

- Fixes:
    * Set raw_values in load_by_hash so the __raw_value method works when the
      record is loaded by a collection (Thomas Sibley)

- Tests:
    * Author tests for no tabs (Shawn M Moore)

0.66 2011-02-14
- Features:
    * Provide a sane way to wrap a function around an aliased column in order_by
    * Pass old_value to triggers on column update

- Fixes:
    * Respect the 'by' attribute for refers_to columns in create and set
    * Use the right FK when using a record object in load_by_cols or
      limit [rt.cpan.org #64779]
    * Don't encode fields when attempting to limit with IS
    * Fix since/till by refactoring columns to use an updated all_columns

- Installation:
    * Only run these URI filter tests if we have URI [rt.cpan.org #65047]

0.64 Wed Dec  8 15:21:17 EST 2010
- Installation:
    * Minor distribution fixes

0.63 Wed Dec  8 15:14:17 EST 2010
- Features:
    * distinct_column_values method, docs and tests

- Fixes:
    * Warn about load(arg => value)
    * Include column_name in the value passed to reader warning
    * It is a rare but possible case that 0 is a valid id
    * Ensure encode_base64 doesn't choke on utf8

0.62 Thu May 20 13:58:53 EST 2010
- Features:
    * Computed columns let you have the Jifty-DBI scaffolding but without
      touching the database
    * Column->is_boolean

- Fixes:
    * Don't attempt to store undef values in memcached
    * Avoid undef warnings

0.61 Mon Jan  4 13:04:20 EST 2010
- Installation:
    * Minor distribution fixes

0.60 Mon Jan  4 13:02:17 EST 2010
- Features:
    * Allow passing of extra parameters to canonicalizers
    * Add an attribute which controls placeholder use for load_by_cols

- Fixes:
    * Don't add LOWER() on <= or >= operators, only = and !=
    * Better case sensitivity tests
    * Expose quote_value() on Jifty::DBI::Handle
    * When generating COUT, don't add a DISTINCT unless needed
    * Fix t/12prefetch.t's assumptions on row ordering

(obache)

2011-05-05 10:59:01 UTC MAIN commitmail json YAML

Updated devel/libidn to 1.22; devel/scmgit to 1.7.5.1

(adam)

2011-05-05 10:57:07 UTC MAIN commitmail json YAML

Changes 1.7.5.1:
* When an object "$tree:$path" does not exist, if $path does exist in the
  subtree of $tree that corresponds to the subdirectory the user is in,
  git now suggests using "$tree:./$path" in addition to the advice to use
  the full path from the root of the working tree.
* The "--date=relative" output format used to say "X years, 12 months"
  when it should have said "X+1 years".
* The smart-HTTP transfer was broken in 1.7.5 when the client needs
  to issue a small POST (which uses content-length) and then a large
  POST (which uses chunked) back to back.
* "git clean" used to fail on an empty directory that is not readable,
  even though rmdir(2) could remove such a directory.  Now we attempt it
  as the last resort.
* The "--dirstat" option of "diff" family of commands used to totally
  ignore a change that only rearranged lines within a file.  Such a
  change now counts as at least a minimum but non zero change.
* The "--dirstat" option of "diff" family of commands used to use the
  pathname in the original, instead of the pathname in the result,
  when renames are involved.
* "git pack-object" did not take core.bigfilethreashold into account
  (unlike fast-import); now it does.
* "git reflog" ignored options like "--format=.." on the command line.
* "git stash apply" used to refuse to work if there was any change in
  the working tree, even when the change did not overlap with the change
  the stash recorded.
* "git stash apply @{99999}" was not diagnosed as an error, even when you
  did not have that many stash entries.
* An error message from "git send-email" to diagnose a broken SMTP
  connection configuration lacked a space between "hello=<smtp-domain>"
  and "port=<smtp-server-port>".

(adam)

2011-05-05 08:55:23 UTC MAIN commitmail json YAML

2011-05-05 08:54:47 UTC MAIN commitmail json YAML

Bump PKGREVISION from libmodplug shlib bump.

(obache)

2011-05-05 08:53:17 UTC MAIN commitmail json YAML

Updated audio/libmodplug to 0.8.8.2

(obache)

2011-05-05 08:52:43 UTC MAIN commitmail json YAML

Update libmodplug to 0.8.8.2.
While here, set LICENSE=public-domain.

* 2 April 2011: libmodplug 0.8.8.2
* Improve compatibility with MSVC 2010
* Improve PTM playback (Fix byteswapping)
* Improve S3M support (ignore corrupted data)
* Improve AMF support (bounds checking)
* See git checkins for more information
* 27 May 2010: libmodplug 0.8.8.1
* Add check to make sure Stereo Separation/MixChannels cannot be 0.
* Increment soname due to structure change (addition of new config options)
* 5 April 2010: libmodplug 0.8.8
* Fix 32 to 32 bit "downsampling" on 64bit platforms.
* Fix usage of bigendian in include files
* Fix PSM files on bigendian computers
* Allow configuration of Stereo Separation and MaxMixChannels
* Fix possible problem with misaligned data structure when converting to int32
  (load_669)
(Developer only) update to new automake/autoconf.

(obache)

2011-05-05 07:46:44 UTC MAIN commitmail json YAML

Changes 1.22:
* Add -liconv as static library requirement in libidn.pc, for MinGW.
* Fix memory leak in idna_to_ascii_4z when idna_to_ascii_4i fails.
* Ran clang-analyze on the code. Fixed some dead assignments/initializations.
* Really distribute win32/libidn4win.mk.
* API and ABI is backwards compatible with the previous version.

(adam)

2011-05-05 06:55:20 UTC MAIN commitmail json YAML

Note addition of sysutils/mkmemstick version 20110801

(agc)

2011-05-05 06:54:18 UTC MAIN commitmail json YAML

add and enable mkmemstick

(agc)

2011-05-05 06:53:28 UTC MAIN commitmail json YAML

Initial import of Jared Mcneill's script to create a memory stick from a
NetBSD installation ISO.

Further information can be found here:

http://genericzero.wordpress.com/2009/08/01/install-netbsd-from-a-usb-memory-stick-the-easy-way/

memory stick the easy way

I got tired of having to jump through hoops to install NetBSD on my
Eee PC, so I wrote a simple script to take a NetBSD release ISO and
convert it to an image that can be written to a USB memory stick.

To use the script, simply feed it an ISO and tell it where to write
the resulting image:

$ sh mkmemstick.sh i386cd-5.0.1.iso i386memstick-5.0.1.img

The resulting image can be written to a memory stick using dd(1):

$ dd if=i386memstick-5.0.1.img of=/dev/sd0d

Please note that this script depends on the sysutils/cdrtools package
for extracting the contents of the release ISO.

Hopefully this will be integrated with the build process so these
images are available for those who cannot prepare an image due to lack
of access to a NetBSD machine.



Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(agc)

2011-05-05 05:42:55 UTC MAIN commitmail json YAML

2011-05-05 04:15:02 UTC MAIN commitmail json YAML

Updated emulators/wine to 1.2.3

(adam)

2011-05-05 04:09:30 UTC MAIN commitmail json YAML

2011-05-04 23:35:01 UTC MAIN commitmail json YAML

Remove aria2

(ryoon)

2011-05-04 23:34:37 UTC MAIN commitmail json YAML

Updated net/aria2 to 1.11.1

(ryoon)

2011-05-04 23:33:11 UTC MAIN commitmail json YAML

Update to 1.11.1

* aria2-metalink option is removed. This is enabled by default already.

Changelog:
aria2 1.11.1
============

Release Note
------------

This release fixes the bug that aria2 does not work on platforms which
have kqueue() system call due to invalid timeout parameter. The
--show-console-readout option was added. This option toggles the
appearance of console readout.

Changes
-------

* Added --show-console-readout option. This option toggles
  appearance of console readout.

* Fixed the bug that microsecond part of timeval overwlows in
  waitData(). This bug affects platforms which have kqueue() system
  call. Those systems are FreeBSD, OpenBSD, NetBSD and Darwin (Mac OS
  X).

aria2 1.11.0
============

Release Note
------------

This release adds JSON-RPC interface. The JSON-RPC and XML-RPC shares
same APIs. The JSON-RPC also supports JSONP. 2 new options were added:
--retry-wait and --async-dns-server. The downloads added by
aria2.addTorrent and aria2.addMetalink RPC method are now saved to the
file specified in --save-session option. The proxy options and related
environment variables now accept https:// and ftp:// scheme. This
release fixes the bug that causes segmentation fault when unpausing
downloads in some situations.  MinGW32 build now looks for USERPROFILE
and the combination of HOMEDRIVE and HOMEPATH to get user's home
directory and doesn't check permission of .netrc file.

Changes
-------

* Updated gettext to 0.18

* Added JSON-RPC support. --enable-xml-rpc was deprecated and
  --enable-rpc should be used instead.  Similarly, --xml-rpc-*
  options were replaced with --rpc-* options.  We are implementing
  JSON-RPC based on JSON-RPC 2.0 draft spec.

* Fixed rounding error in DownloadEngine::run(). This fixes the bug
  that executeCommand() with Command::STATUS_ALL is not called in
  every interval correctly because of rounding error in timer.

* Refresh buckets at DHT initialization without checking serialized
  time. Checking serialized time does not work if you stop aria2 as
  soon as it started DHT. The serialized time in dht.dat will be
  updated, but buckets are not updated and still old. When you
  restart aria2 again soon, it does not refresh buckets because
  serialized time is recent.

* Save downloads added by aria2.addTorrent or aria2.addMetalink in
  --save-session file.  Uploaded data are saved as file named hex
  string of sha1 hash of uploaded data plus extension(".torrent" for
  torrent and ".meta4" for metalink). For example,
  0a3893293e27ac0490424c06de4d09242215f0a6.torrent. The directory
  where these files are saved is specified by --dir option. These
  file paths are written in --save-session file.

* Fixed the bug that causes segmentation fault when unpause
  RequestGroup which has resolved BtDependency.

* Look for USERPROFILE and the combination of HOMEDRIVE and HOMEPATH
  to get user's home directory in MinGW32 build.  Usually HOME
  environment variable is defined in *nix like OSes, but not in
  Windows. So in MinGW32 build, if HOME is not defined, we also look
  for USERPROFILE and the combination of HOMEDRIVE and HOMEPATH.

* Fixed the bug that DownloadContext::basePath_ is not escaped.

* Added Date, Expires and Cache-Control response header field to RPC
  response.

* Added --async-dns-server option. This option accepts comma
  separated list of DNS server addresses used in asynchronous DNS
  resolver. Usually asynchronous DNS resolver reads DNS server
  addresses from /etc/resolv.conf. When this option is used, it uses
  DNS servers specified in this option instead of ones in
  /etc/resolv.conf. You can specify both IPv4 and IPv6 address. This
  option is useful when the system does not have /etc/resolv.conf and
  user does not have the permission to create it.

* Accept https:// and ftp:// in proxy options and environment variables.

* Fixed overflow in the calculation of progress percentage for file
  allocation and hash check when off_t is 32bit.

* Accept HTTP 304 reply as success when If-None-Match request-header
  field is specified using --header option.  When --conditional-get
  is used, --allow-overwrite is now required to overwrite existing
  file.

* Added aria2.removeDownloadResult RPC method.  The method signature
  is aria2.removeDownloadResult(gid).  This method removes
  completed/error/removed download denoted by gid from memory. This
  method returns "OK" for success.

* Use IP address of control connection to connect to the remote server in
  FTP passive mode.

* Don't check permission of .netrc file in MinGW32 build.

* Added --retry-wait option. This option was once existed in aria2
  but erased on 2009-09-20.  Now it is resurrected once again.  We
  choose 0 as default value for backward compatibility.  Now we retry
  HTTP download when remote server returns "503 Service Unavailable"
  if --retry-wait > 0. We also added error code 29:
  HTTP_SERVICE_UNAVAILABLE.

* Don't show metadata download and paused download in "Download Results".

(ryoon)

2011-05-04 22:27:26 UTC MAIN commitmail json YAML

Updated sysutils/ir-account to 0.2

(gdt)

2011-05-04 22:26:56 UTC MAIN commitmail json YAML

Update to 0.2. (Changes are due to Richard Hansen of BBN.)

New in Version 0.2 (released 2011-04-15):

    * Bug fixes:
      + extract-account:
        - account extraction left temp files if authorized_keys had
          the uchg flag set
        - if the user didn't actually exist, a bogus tarball would be
          created anyway
      + install-account:
        - the home directory was assumed to be /home/${USER}, which
          meant that root's files weren't installed properly
        - If the user already existed, the order of entries in the
          passwd database wasn't preserved.  This caused problems with
          root accounts because getpwuid(0) started returning the
          passwd entry for the 'toor' user (breaking "are you root?"
          tests in various scripts).
      + sudo-add:
        - if sudo-add couldn't find the sudoers file or couldn't read
          it, it didn't remove existing entries when adding or
          removing a user (adding duplicate entries if adding a user
          that was already there, and silently failing when removing a
          user)
        - if sudo-add could find and read the sudoers file:
          * it would remove the wrong existing entry if the username
            of the user being added/removed started with the same
            characters as another user higher in the sudoers file
            (e.g., adding or removing foo would remove user foobar if
            foobar was higher in the sudoers file)
          * 'sudo-add -r' would only remove the first instance of a
            user from sudoers (a particular problem given the above
            bug)
        - sudo-add wasn't preserving order if the user was already in
          sudoers (order can be significant in sudoers)
    * Less verbose output.

(gdt)

2011-05-04 20:32:40 UTC MAIN commitmail json YAML

Updated emulators/wine to 1.2.3

(adam)

2011-05-04 20:31:40 UTC MAIN commitmail json YAML

2011-05-04 19:23:08 UTC MAIN commitmail json YAML

Add comment to patch. regen checksum.
Remove unnecessary PKGREVISION=0 line, pkglint doesn't like it.

(wiz)

2011-05-04 17:46:22 UTC MAIN commitmail json YAML

update to 2.28.3
changes:
-Avoid out-of-bounds memory accesses (might qualify as DOS possibility)
-translation updates

(drochner)

2011-05-04 17:41:16 UTC MAIN commitmail json YAML

these programs are known to suffer from incompatible changes
in gnutls-2.12 -- add constraint and URL reference (from gls)

(drochner)

2011-05-04 17:23:30 UTC pkgsrc-2011Q1 commitmail json YAML

2011-05-04 17:21:25 UTC pkgsrc-2011Q1 commitmail json YAML

Pullup ticket #3421 - requested by obache
net/rdesktop: security update

Revisions pulled up:
- net/rdesktop/Makefile                                        1.38
- net/rdesktop/distinfo                                        1.20
- net/rdesktop/options.mk                                      1.3-1.4

---
  Module Name: pkgsrc
  Committed By: schnoebe
  Date: Fri Apr  8 16:49:32 UTC 2011

  Modified Files:
  pkgsrc/net/rdesktop: options.mk

  Log Message:
  Correct typo on inet6 CONFIGURE_ARGS.

---
  Module Name: pkgsrc
  Committed By: obache
  Date: Wed May  4 14:47:18 UTC 2011

  Modified Files:
  pkgsrc/net/rdesktop: Makefile distinfo options.mk

  Log Message:
  Update rdesktop to 1.7.0.

  This fixes some important bugs and is therefore recommended for all users.

  Key changes:

      * Security: Directory traversal vulnerability with disk redirection (disallow /.. requests)
      * New maintainer: Peter ��strand <astrand@...>
      * Brush cache support
      * Removed the hardcoded limit of the username length
      * Increased domain name length to 255 chars
      * Improved compatibility with PulseAudio/padsp
      * Cleaned up and documented the return values
      * Keyboard fix: avoid stuck keys in certain cases
      * Support for new pointers
      * License has been changed to GPLv3
      * EWMH fixes for 64-bit machines
      * RandR support: automatically resize session if using relative screen size
      * Improved support for Windows 2008 Session Broker
      * Japanese keyboard map has been improved
      * New keyboard map: fr-bepo
      * Many stability fixes regarding smart card redirection
      * Windows 2008 R2 / 7: Fix sound playback when not using other redirections
      * Windows 2008 R2 / 7: Solve disk redirection read-only issues
      * Windows 2008 R2 / 7: Solve issue with recursive deletion
      * Avoid exit when printing, if lpr command terminates early

(tron)

2011-05-04 16:59:06 UTC MAIN commitmail json YAML

2011-05-04 16:27:42 UTC MAIN commitmail json YAML

Fix patch breakage when not using links as viewer.

Instead of patching the URL for rfc-index.txt, define it in the Makefile
and use the existing sed command in do-extract.

Bump revision to 6.

(hans)

2011-05-04 14:47:35 UTC MAIN commitmail json YAML

Updated net/rdesktop to 1.7.0

(obache)

2011-05-04 14:47:18 UTC MAIN commitmail json YAML

Update rdesktop to 1.7.0.

This fixes some important bugs and is therefore recommended for all users.

Key changes:

  * Security: Directory traversal vulnerability with disk redirection (disallow /.. requests)
  * New maintainer: Peter ��strand <astrand@...>
  * Brush cache support
  * Removed the hardcoded limit of the username length
  * Increased domain name length to 255 chars
  * Improved compatibility with PulseAudio/padsp
  * Cleaned up and documented the return values
  * Keyboard fix: avoid stuck keys in certain cases
  * Support for new pointers
  * License has been changed to GPLv3
  * EWMH fixes for 64-bit machines
  * RandR support: automatically resize session if using relative screen size
  * Improved support for Windows 2008 Session Broker
  * Japanese keyboard map has been improved
  * New keyboard map: fr-bepo
  * Many stability fixes regarding smart card redirection
  * Windows 2008 R2 / 7: Fix sound playback when not using other redirections
  * Windows 2008 R2 / 7: Solve disk redirection read-only issues
  * Windows 2008 R2 / 7: Solve issue with recursive deletion
  * Avoid exit when printing, if lpr command terminates early

(obache)

2011-05-04 13:53:45 UTC MAIN commitmail json YAML

commit missing bits of firefox36 update. Noted by Snader_LB on #pkgsrc.

Security and stability update of firefox36 to 3.6.17.

MFSA 2011-18 XSLT generate-id() function heap address leak
MFSA 2011-16 Directory traversal in resource: protocol
MFSA 2011-15 Escalation of privilege through Java Embedding Plugin
MFSA 2011-14 Information stealing via form history
MFSA 2011-13 Multiple dangling pointer vulnerabilities
MFSA 2011-12 Miscellaneous memory safety hazards (rv:2.0.1/ 1.9.2.17/ 1.9.1.19)

(tnn)

2011-05-04 13:28:10 UTC MAIN commitmail json YAML

Updated databases/py-bsddb3 to 5.1.2

(adam)

2011-05-04 13:09:57 UTC MAIN commitmail json YAML

Updated databases/py-bsddb3 to 5.1.2

(adam)

2011-05-04 13:09:01 UTC MAIN commitmail json YAML

Changes 5.1.2:
* 5.1.1 install fails if the bsddb in the standard library is not installed,
  under Python 2.7.
* Since 5.0.0, we can't find 4.x libraries unless we specify a
  "--berkeley-db=/path/to/bsddb" option.
* Support "DB_ENV->get_open_flags()", "DB_ENV->set_intermediate_dir_mode()",
  "DB_ENV->get_intermediate_dir_mode()".
* Support "DB->get_dbname()", "DB->get_open_flags()".
* Support "db_full_version()".
* Document "version()". This top-level function has been supported forever.
* Bugfix when calling "DB->get_size()" on a zero length record.
* 'assertEquals()' is deprecated in Python 3.2.
* 'assert_()' is deprecated in Python 3.2.
* Solved 'ResourceWarning' under Python 3.2.

(adam)

2011-05-04 11:40:53 UTC MAIN commitmail json YAML

Note revision bump of python standard module packages.

(obache)

2011-05-04 11:38:06 UTC MAIN commitmail json YAML

2011-05-04 11:17:41 UTC MAIN commitmail json YAML

Updated graphics/mypaint to 0.9.1nb2

(ryoon)

2011-05-04 11:16:23 UTC MAIN commitmail json YAML

* Replace '#!.../env python' with PYTHONBIN, fix build.
* Bump PKGREVISION.

(ryoon)

2011-05-04 10:11:52 UTC MAIN commitmail json YAML

Updated security/softhsm to 1.2.1

(pettai)

2011-05-04 10:10:18 UTC MAIN commitmail json YAML

SoftHSM 1.2.1 - 2011-05-03

* Backport mutex handling from v2 for increased multithreaded
  performance.
* Remove signature verification used for debugging purposes.
  (was enabled with ./configure --enable-sigver)
* Added an index to the attribute table in the database.
* Optimization of the database handling.

(pettai)

2011-05-04 10:01:02 UTC MAIN commitmail json YAML

also put PYLIB in PLIST_SUBST, a part of PR#44826.

(obache)

2011-05-04 10:00:58 UTC MAIN commitmail json YAML

Updated graphics/p5-GD; databases/p5-DBD-postgresql to 2.18.0

(adam)

2011-05-04 09:49:35 UTC MAIN commitmail json YAML

Also set `package-install' to UPDATE_TARGET/DEPENDS_TARGET if current target is
`package-install', to indirect dependency also create binary package with
`make package' or `make package-install'.

should fix PR#44857.

(obache)

2011-05-04 09:46:37 UTC MAIN commitmail json YAML

Changes 2.18.0:
* Fix memory leak when binding arrays
* Fix memory leak with ParamValues
* New cancel() method per DBI spec
* Fix memory leak in handle_old_async (missing PQclear)
* Fix memory leak in pg_db_cancel (missing PQclear)
* Mark pg_getcopydata strings as UTF8 as needed
* Function dequote_bytea returning void should not try to return something
* Fix the number of tests to skip in t/01connect.t when the $DBI_DSN
  environment variable lacks a database specification
* Fix algorithm for skipping tests in t/06bytea.t when running on a version
  of PostgreSQL lower than 9.0
* Small tweaks to get tests working when compiled against Postgres 7.4
* Fix failing test when run as non-superuser

(adam)

2011-05-04 09:43:40 UTC MAIN commitmail json YAML

Changes 2.46:
* Added a basic "use" test for GD::Simple

(adam)

2011-05-04 08:31:28 UTC MAIN commitmail json YAML

Updated mail/sylpheed to 3.1.0

(tnn)

2011-05-04 08:30:40 UTC MAIN commitmail json YAML

Update to sylpheed-3.1.0.

>From homepage:
  "This release contains many improvements for usability. The features
  requested by many users, such as combining partial messages, removal of
  attachments, automatic address completion, etc., were added. The feature
  to assist the migration from Outlook Express has been added. Various
  bugfixes have been also made."

(tnn)

2011-05-04 05:44:57 UTC MAIN commitmail json YAML

Add kiloji-ttf

(ryoon)

2011-05-04 05:44:20 UTC MAIN commitmail json YAML

Added fonts/kiloji-ttf version 2.1.0

(ryoon)

2011-05-04 05:41:34 UTC MAIN commitmail json YAML

Import kiloji-ttf-2.1.0 as fonts/kiloji-ttf

The Kiloji fonts is Japanese script (written by hand) TrueType font
family. This family contains 4 fonts (fixed-width, proportional,
light-weight, and bold).

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(ryoon)

2011-05-04 02:00:02 UTC MAIN commitmail json YAML

exactly disable MMX/AMD64 optimization if pkg option is off.
part of PR#44931.

(obache)

2011-05-03 17:54:06 UTC MAIN commitmail json YAML

Note liboauth update to 0.9.4

(agc)

2011-05-03 14:23:57 UTC MAIN commitmail json YAML

Update liboauth from 0.8.9 to 0.9.4.

Changes since previous version:

version 0.9.4
  - fixed possible memory corrution in oauth_curl_get
  thanks to Bruce Rosen for reporting this issue

version 0.9.3
- yet more build-system fixes:
  - allow to override HASH_LIBS and CURL_LIBS using envoronment variables
  - include them in .pc and tests/Makefile.am

version 0.9.2
- fixed typo in build-system (LDFLAGS, -Wl,--as-needed detection)

version 0.9.1
- fixed typo in API:
  oauth_time_indepenent_equals[_n] is now deprecated in favor of
oauth_time_independent_equals[_n]
- added check for 'Wl,--as-needed' linker flag.

version 0.9.0
- fixed typo in pkg-config file.

With thanks to Brad Harder for the nudge.

(agc)

2011-05-03 13:17:41 UTC MAIN commitmail json YAML

Updated mail/thunderbird to 3.1.10

(tnn)

2011-05-03 13:17:11 UTC MAIN commitmail json YAML

Security and stability update of thunderbird to 3.1.10.

MFSA 2011-16 Directory traversal in resource: protocol
MFSA 2011-12 Miscellaneous memory safety hazards (rv:2.0.1/ 1.9.2.17/ 1.9.1.19)

(tnn)

2011-05-03 12:44:44 UTC MAIN commitmail json YAML

2011-05-03 12:32:40 UTC MAIN commitmail json YAML

2011-05-03 12:29:05 UTC MAIN commitmail json YAML

Re-note update of viking in correct place.

(Apologies for the noise, and thanks to obache@ for pointing this
out.)

(gdt)

2011-05-03 12:27:07 UTC pkgsrc-2011Q1 commitmail json YAML

Un-note update of viking in stable CHANGES-file.

(gdt)

2011-05-03 12:17:50 UTC MAIN commitmail json YAML