pkgsrcv2.git
13 years agoPullup ticket #3452.
tron [Thu, 9 Jun 2011 18:44:51 +0000 (18:44 +0000)]
Pullup ticket #3452.

13 years agoPullup ticket #3452 - requested by obache
tron [Thu, 9 Jun 2011 18:44:13 +0000 (18:44 +0000)]
Pullup ticket #3452 - requested by obache
lang/sun-jdk6: security update
lang/sun-jre6: security update

Revisions pulled up:
- lang/sun-jdk6/Makefile                                        1.22
- lang/sun-jdk6/PLIST                                           1.12
- lang/sun-jdk6/distinfo                                        1.13
- lang/sun-jdk6/files/common                                    1.3
- lang/sun-jre6/Makefile                                        1.29
- lang/sun-jre6/PLIST.linux-i386                                1.22
- lang/sun-jre6/distinfo                                        1.16
- lang/sun-jre6/sfiles-i386.mk                                  1.5

---
   Module Name: pkgsrc
   Committed By: obache
   Date: Thu Jun  9 09:08:18 UTC 2011

   Modified Files:
    pkgsrc/lang/sun-jdk6: Makefile PLIST distinfo
    pkgsrc/lang/sun-jdk6/files: common
    pkgsrc/lang/sun-jre6: Makefile PLIST.linux-i386 distinfo sfiles-i386.mk

   Log Message:
   Update sun-{jre,jdk}6 to 6.0.26, aka 6u26.

   Java SE 6 Update 26
   * Olson Data 2011g
   * Bug fixes
      This release contains fixes for security vulnerabilities. For more
      information, please see Oracle Java SE Critical Patch Update advisory:
      http://www.oracle.com/technetwork/topics/security/javacpujune2011-313339.html

   Java SE 6 Update 25
   * Olson Data 2011b
   * Java Hotspot VM 20
   * Performance Improvement to BigDecimal
   * Performance Improvement to java.util.logging.LogRecord
   * Bug Fixes

13 years agoPullup ticket 3449
sbd [Wed, 8 Jun 2011 09:51:26 +0000 (09:51 +0000)]
Pullup ticket 3449

13 years agoPullup ticket #3449 - requested by wiz
sbd [Wed, 8 Jun 2011 09:49:24 +0000 (09:49 +0000)]
Pullup ticket #3449 - requested by wiz
graphics/png security update.

Revisions pulled up:
- graphics/png/Makefile                                         1.132-1.137
- graphics/png/distinfo                                         1.78-1.84
- graphics/png/patches/patch-pngconf.h                          0

---
   Module Name: pkgsrc
   Committed By: wiz
   Date: Tue Apr  5 12:47:56 UTC 2011

   Modified Files:
    pkgsrc/graphics/png: Makefile distinfo
   Removed Files:
    pkgsrc/graphics/png/patches: patch-pngconf.h

   Log Message:
   Update to 1.5.2:

   Version 1.5.2beta01 [February 13, 2011]
     More -Wshadow fixes for older gcc compilers.  Older gcc versions apparently
       check formal parameters names in function declarations (as well as
       definitions) to see if they match a name in the global namespace.
     Revised PNG_EXPORTA macro to not use an empty parameter, to accommodate the
       old VisualC++ preprocessor.
     Turned on interlace handling in png_read_png().
     Fixed gcc pendantic warnings.
     Handle longjmp in Cygwin.
     Fixed png_get_current_row_number() in the interlaced case.
     Cleaned up ALPHA flags and transformations.
     Implemented expansion to 16 bits.

   Version 1.5.2beta02 [February 19, 2011]
     Fixed mistake in the descriptions of user read_transform and write_transform
       function prototypes in the manual.  The row_info struct is png_row_infop.
     Reverted png_get_current_row_number() to previous (1.5.2beta01) behavior.
     Corrected png_get_current_row_number documentation
     Fixed the read/write row callback documentation.
       This documents the current behavior, where the callback is called after
       every row with information pertaining to the next row.

   Version 1.5.2beta03 [March 3, 2011]
     Fixed scripts/makefile.vcwin32
     Updated contrib/pngsuite/README to add the word "modify".
     Define PNG_ALLOCATED to blank when _MSC_VER<1300.

   Version 1.5.2rc01 [March 19, 2011]
     Define remaining attributes to blank when MSC_VER<1300.
     ifdef out mask arrays in pngread.c when interlacing is not supported.

   Version 1.5.2rc02 [March 22, 2011]
     Added a hint to try CPP=/bin/cpp if "cpp -E" fails in scripts/pnglibconf.mak
       and in contrib/pngminim/*/makefile, eg., on SunOS 5.10, and removed "strip"
       from the makefiles.
     Fixed a bug (present since libpng-1.0.7) that makes png_handle_sPLT() fail
       to compile when PNG_NO_POINTER_INDEXING is defined (Chubanov Kirill)

   Version 1.5.2rc03 [March 24, 2011]
     Don't include standard header files in png.h while building the symbol table,
       to avoid cpp failure on SunOS (introduced PNG_BUILDING_SYMBOL_TABLE macro).

   Version 1.5.2 [March 31, 2011]

---
   Module Name: pkgsrc
   Committed By: wiz
   Date: Tue May  3 09:07:35 UTC 2011

   Modified Files:
    pkgsrc/graphics/png: Makefile distinfo

   Log Message:
   Update to 1.5.3beta04 to fix a regression reported on tech-pkg (see beta03,
   last entry).

   Version 1.5.3beta01 [April 1, 2011]
     Re-initialize the zlib compressor before compressing non-IDAT chunks.
     Added API functions to set parameters for zlib compression of non-IDAT
       chunks.

   Version 1.5.3beta02 [April 3, 2011]
     Updated scripts/symbols.def with new API functions.
     Only compile the new zlib re-initializing code when text or iCCP is
       supported, using PNG_WRITE_COMPRESSED_TEXT_SUPPORTED macro.
     Improved the optimization of the zlib CMF byte (see libpng-1.2.6beta03).
     Optimize the zlib CMF byte in non-IDAT compressed chunks

   Version 1.5.3beta03 [April 16, 2011]
     Fixed gcc -ansi -pedantic compile. A strict ANSI system does not have
       snprintf, and the "__STRICT_ANSI__" detects that condition more reliably
       than __STDC__ (John Bowler).
     Removed the PNG_PTR_NORETURN attribute because it too dangerous. It tells
       the compiler that a user supplied callback (the error handler) does not
       return, yet there is no guarantee in practice that the application code
       will correctly implement the error handler because the compiler only
       issues a warning if there is a mistake (John Bowler).
     Removed the no-longer-used PNG_DEPSTRUCT macro.
     Updated the zlib version to 1.2.5 in the VStudio project.
     Fixed 64-bit builds where png_uint_32 is smaller than png_size_t in
       pngwutil.c (John Bowler).
     Fixed bug with stripping the filler or alpha channel when writing, that
       was introduced in libpng-1.5.2beta01 (bug report by Andrew Church).

   Version 1.5.3beta04 [April 27, 2011]
     Updated pngtest.png with the new zlib CMF optimization.
     Cleaned up conditional compilation code and of background/gamma handling
       Internal changes only except a new option to avoid compiling the
       png_build_grayscale_palette API (which is not used at all internally.)
       The main change is to move the transform tests (READ_TRANSFORMS,
       WRITE_TRANSFORMS) up one level to the caller of the APIs.  This avoids
       calls to spurious functions if all transforms are disabled and slightly
       simplifies those functions.  Pngvalid modified to handle this.
       A minor change is to stop the strip_16 and expand_16 interfaces from
       disabling each other; this allows the future alpha premultiplication
       code to use 16-bit intermediate values while still producing 8-bit output.
       png_do_background and png_do_gamma have been simplified to take a single
       pointer to the png_struct rather than pointers to every item required
       from the png_struct. This makes no practical difference to the internal
       code.
     A serious bug in the pngvalid internal routine 'standard_display_init' has
       been fixed - this failed to initialize the red channel and accidentally
       initialized the alpha channel twice.
     Changed png_struct jmp_buf member name from png_jmpbuf to tmp_jmpbuf to
       avoid a clash with the png_jmpbuf macro on some platforms.

---
   Module Name: pkgsrc
   Committed By: adam
   Date: Fri May  6 07:19:23 UTC 2011

   Modified Files:
    pkgsrc/graphics/png: Makefile distinfo

   Log Message:
   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.

---
   Module Name: pkgsrc
   Committed By: obache
   Date: Sun May  8 06:02:43 UTC 2011

   Modified Files:
    pkgsrc/graphics/png: Makefile distinfo

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

---
   Module Name: pkgsrc
   Committed By: wiz
   Date: Sun May  8 09:09:20 UTC 2011

   Modified Files:
    pkgsrc/graphics/png: Makefile distinfo

   Log Message:
   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

---
   Module Name: pkgsrc
   Committed By: wiz
   Date: Sun May  8 09:11:08 UTC 2011

   Modified Files:
    pkgsrc/graphics/png: distinfo

   Log Message:
   regen for targz change

---
   Module Name: pkgsrc
   Committed By: wiz
   Date: Wed Jun  8 06:58:59 UTC 2011

   Modified Files:
    pkgsrc/graphics/png: Makefile distinfo

   Log Message:
   Update to 1.5.3rc02 for a security fix.

   Version 1.5.3beta07 [May 11, 2011]
     Added expand_16 support to the high level interface.
     Added named value and 'flag' gamma support to png_set_gamma.  Made a minor
       change from the previous (unreleased) ABI/API to hide the exact value used
       for Macs - it's not a good idea to embed this in the ABI!
     Moved macro definitions for PNG_HAVE_IHDR, PNG_HAVE_PLTE, and PNG_AFTER_IDAT
       from pngpriv.h to png.h because they must be visible to applications
       that call png_set_unknown_chunks().
     Check for up->location !PNG_AFTER_IDAT when writing unknown chunks
       before IDAT.

   Version 1.5.3beta08 [May 16, 2011]
     Improved "pngvalid --speed" to exclude more of pngvalid from the time.
     Documented png_set_alpha_mode(), other changes in libpng.3/libpng-manual.txt
     The cHRM chunk now sets the defaults for png_set_rgb_to_gray() (when negative
       parameters are supplied by the caller), while in the absence of cHRM
       sRGB/Rec 709 values are still used.
     The bKGD chunk no longer overwrites the background value set by
       png_set_background(), allowing the latter to be used before the file
       header is read. It never performed any useful function to override
       the default anyway.
     Added memory overwrite and palette image checks to pngvalid.c
       Previously palette image code was poorly checked. Since the transformation
       code has a special palette path in most cases this was a severe weakness.
     Minor cleanup and some extra checking in pngrutil.c and pngrtran.c. When
       expanding an indexed image, always expand to RGBA if transparency is
       present.

   Version 1.5.3beta09 [May 17, 2011]
     Reversed earlier 1.5.3 change of transformation order; move png_expand_16
       back where it was.  The change doesn't work because it requires 16-bit
       gamma tables when the code only generates 8-bit ones.  This fails
       silently; the libpng code just doesn't do any gamma correction.  Moving
       the tests back leaves the old, inaccurate, 8-bit gamma calculations, but
       these are clearly better than none!

   Version 1.5.3beta10 [May 20, 2011]

     png_set_background() and png_expand_16() did not work together correctly.
       This problem is present in 1.5.2; if png_set_background is called with
       need_expand false and the matching 16 bit color libpng erroneously just
       treats it as an 8-bit color because of where png_do_expand_16 is in the
       transform list.  This simple fix reduces the supplied colour to 8-bits,
       so it gets smashed, but this is better than the current behavior.
     Added tests for expand16, more fixes for palette image tests to pngvalid.
       Corrects the code for palette image tests and disables attempts to
       validate palette colors.

   Version 1.5.3rc01 [June 3, 2011]
     No changes.

   Version 1.5.3rc02 [June 7, 2011]
     Fixed 1-byte uninitialized memory reference in png_format_buffer() (Bug
       report by Frank Busse, related to CVE-2004-0421).

13 years agoFixup fromcvs/togit conversion
pkgsrc fixup [Tue, 7 Jun 2011 02:40:37 +0000 (19:40 -0700)]
Fixup fromcvs/togit conversion

13 years agoPullup ticket #3448.
tron [Mon, 6 Jun 2011 19:52:11 +0000 (19:52 +0000)]
Pullup ticket #3448.

13 years agoFixup fromcvs/togit conversion
pkgsrc fixup [Sat, 4 Jun 2011 14:45:30 +0000 (07:45 -0700)]
Fixup fromcvs/togit conversion

13 years agoPullup ticket 3444
sbd [Thu, 2 Jun 2011 05:38:01 +0000 (05:38 +0000)]
Pullup ticket 3444

13 years agoPullup ticket #3444 - requested by tron
sbd [Thu, 2 Jun 2011 05:36:13 +0000 (05:36 +0000)]
Pullup ticket #3444 - requested by tron
net/wireshark security update

Revisions pulled up:
- net/wireshark/Makefile                                        1.64
- net/wireshark/distinfo                                        1.45

---
   Module Name: pkgsrc
   Committed By: tron
   Date: Wed Jun  1 07:21:53 UTC 2011

   Modified Files:
    pkgsrc/net/wireshark: Makefile distinfo

   Log Message:
   Update "wireshark" package to version 1.4.7. Changes since version 1.4.6:
   - Bug Fixes
     The following vulnerabilities have been fixed. See the security
     advisory for details and a workaround.
     o Large/infinite loop in the DICOM dissector. (Bug 5876)
       Versions affected: 1.2.0 to 1.2.16 and 1.4.0 to 1.4.6.
     o Huzaifa Sidhpurwala of the Red Hat Security Response Team
       discovered that a corrupted Diameter dictionary file could
       crash Wireshark.
       Versions affected: 1.2.0 to 1.2.16 and 1.4.0 to 1.4.6.
     o Huzaifa Sidhpurwala of the Red Hat Security Response Team
       discovered that a corrupted snoop file could crash Wireshark.
       (Bug 5912)
       Versions affected: 1.2.0 to 1.2.16 and 1.4.0 to 1.4.6.
      o David Maciejak of Fortinet's FortiGuard Labs discovered that
        malformed compressed capture data could crash Wireshark. (Bug
        5908)
        Versions affected: 1.2.0 to 1.2.16 and 1.4.0 to 1.4.6.
      o Huzaifa Sidhpurwala of the Red Hat Security Response Team
        discovered that a corrupted Visual Networks file could crash
        Wireshark. (Bug 5934)
        Versions affected: 1.2.0 to 1.2.16 and 1.4.0 to 1.4.6.
   - The following bugs have been fixed:
     o AIM dissector has some endian issues. (Bug 5464)
     o Telephony?MTP3?MSUS doesn't display window. (Bug 5605)
     o Support for MS NetMon 3.x traces containing raw IPv6 ("Type
       7") packets. (Bug 5817)
     o Service Indicator in M3UA protocol data. (Bug 5834)
     o IEC60870-5-104 protocol, incorrect decoding of timestamp type
       CP56Time2a. (Bug 5889)
     o DNP3 dissector incorrect constants AL_OBJ_FCTR_16NF
       _FDCTR_32NF _FDCTR_16NF. (Bug 5920)
     o 3GPP QoS: Traffic class is not decoded properly. (Bug 5928)
     o Wireshark crashes when creating ProtoField.framenum in Lua.
       (Bug 5930)
     o Fix a wrong mask to extract FMID from DECT packets dissector.
       (Bug 5947)
     o Incorrect DHCPv6 remote identifier option parsing. (Bug 5962)
   - Updated Protocol Support
     DICOM, IEC104, M3UA, TCP,
   - New and Updated Capture File Support
     Network Monitor.

13 years agoPullup ticket 3443
sbd [Tue, 31 May 2011 11:05:40 +0000 (11:05 +0000)]
Pullup ticket 3443

13 years agoPullup ticket #3443 - requested by taca
sbd [Tue, 31 May 2011 11:04:23 +0000 (11:04 +0000)]
Pullup ticket #3443 - requested by taca
lang/ruby18-base security update

Revisions pulled up:
- lang/ruby18-base/Makefile                                     1.60-1.61
- lang/ruby18-base/distinfo                                     1.49
- lang/ruby18-base/patches/patch-ext_bigdecimal_bigdecimal.c    1.1

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Sun May 29 01:36:24 UTC 2011

   Modified Files:
    pkgsrc/lang/ruby18-base: Makefile
   Added Files:
    pkgsrc/lang/ruby18-base/patches: patch-ext_bigdecimal_bigdecimal.c

   Log Message:
   Add a patch for CVE-2011-0188 from repository as ruby19-base.

   Bump PKGREVISION.

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Mon May 30 04:21:38 UTC 2011

   Modified Files:
    pkgsrc/lang/ruby18-base: Makefile distinfo

   Log Message:
   It seems that I forgot update distinfo file.

   Since it cause creating binary package which isn't up to date,
   bump PKGREVISION, again.

13 years agoPullup ticket #3442.
tron [Sat, 28 May 2011 17:52:19 +0000 (17:52 +0000)]
Pullup ticket #3442.

13 years agoPullup ticket #3442 - requested by taca
tron [Sat, 28 May 2011 17:51:46 +0000 (17:51 +0000)]
Pullup ticket #3442 - requested by taca
www/drupal6: security update

Revisions pulled up:
- www/drupal6/Makefile                                          1.27
- www/drupal6/distinfo                                          1.20

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Sat May 28 11:45:51 UTC 2011

   Modified Files:
    pkgsrc/www/drupal6: Makefile distinfo

   Log Message:
   Update drupal6 pacakge to 6.21.

   Drupal 6.21, 2011-05-25
   ----------------------
   - Fixed security issues (Cross site scripting), see SA-CORE-2011-001.
     http://drupal.org/node/1168756

13 years agoPullup tickets 3439, 3440 and 3441
sbd [Fri, 27 May 2011 11:08:29 +0000 (11:08 +0000)]
Pullup tickets 3439, 3440 and 3441

13 years agoPullup ticket #3441 - requested by morr
sbd [Fri, 27 May 2011 11:07:01 +0000 (11:07 +0000)]
Pullup ticket #3441 - requested by morr
www/wordpress security update

Revisions pulled up:
- www/wordpress/Makefile                                        1.19
- www/wordpress/distinfo                                        1.15

---
   Module Name: pkgsrc
   Committed By: morr
   Date: Thu May 26 22:59:38 UTC 2011

   Modified Files:
    pkgsrc/www/wordpress: Makefile distinfo

   Log Message:
   Security update to 3.1.3.

   * Various security hardening by Alexander Concha.
   * Taxonomy query hardening by John Lamansky.
   * Prevent sniffing out user names of non-authors by using canonical
     redirects. Props VerĂ³nica Valeros.
   * Media security fixes by Richard Lundeen of Microsoft, Jesse Ou of
     Microsoft, and Microsoft Vulnerability Research.
   * Improves file upload security on hosts with dangerous security
     settings.
   * Cleans up old WordPress import files if the import does not finish.
   * Introduce "clickjacking" protection in modern browsers on admin and
     login pages.

13 years agoPullup ticket #3440 - requested by taca
sbd [Fri, 27 May 2011 11:06:49 +0000 (11:06 +0000)]
Pullup ticket #3440 - requested by taca
net/bind97 security update

Revisions pulled up:
- net/bind97/Makefile                                           1.7
- net/bind97/distinfo                                           1.7

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Fri May 27 06:46:26 UTC 2011

   Modified Files:
    pkgsrc/net/bind97: Makefile distinfo

   Log Message:
   Update bind97 package to 9.7.3pl1 (9.7.3-P1).

    --- 9.7.3-P1 released ---

   3121.   [security]      An authoritative name server sending a negative
                           response containing a very large RRset could
                           trigger an off-by-one error in the ncache code
                           and crash named. [RT #24650]

   3120. [bug] Named could fail to validate zones listed in a DLV
    that validated insecure without using DLV and had
    DS records in the parent zone. [RT #24631]

13 years agoPullup ticket #3439 - requested by taca
sbd [Fri, 27 May 2011 11:06:38 +0000 (11:06 +0000)]
Pullup ticket #3439 - requested by taca
net/bind98 security update

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

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Fri May 27 06:45:31 UTC 2011

   Modified Files:
    pkgsrc/net/bind98: Makefile distinfo

   Log Message:
   Update bind98 package to 9.8.0pl2(9.8.0-P2)

    --- 9.8.0-P2 released ---

   3121.   [security]      An authoritative name server sending a negative
                           response containing a very large RRset could
                           trigger an off-by-one error in the ncache code
                           and crash named. [RT #24650]

   3120. [bug] Named could fail to validate zones listed in a DLV
    that validated insecure without using DLV and had
    DS records in the parent zone. [RT #24631]

13 years agoPullup ticket #3437.
tron [Wed, 25 May 2011 17:49:27 +0000 (17:49 +0000)]
Pullup ticket #3437.

13 years agoPullup ticket #3437 - requested by mspo
tron [Wed, 25 May 2011 17:47:41 +0000 (17:47 +0000)]
Pullup ticket #3437 - requested by mspo
net/tinyfugue: build fix

Revisions pulled up:
- net/tinyfugue/distinfo                                        1.11
- net/tinyfugue/patches/patch-ab                                1.7

---
   Module Name:    pkgsrc
   Committed By:   mspo
   Date:           Tue May 24 23:54:59 UTC 2011

   Modified Files:
           pkgsrc/net/tinyfugue: distinfo
           pkgsrc/net/tinyfugue/patches: patch-ab

   Log Message:
   fix issue with double dollar-sign in patch-ab

13 years agoUse consistent formatting. This makes gathering stats easier.
tron [Sat, 21 May 2011 09:10:22 +0000 (09:10 +0000)]
Use consistent formatting. This makes gathering stats easier.

13 years agoPullup ticket #3436.
tron [Sat, 21 May 2011 09:03:56 +0000 (09:03 +0000)]
Pullup ticket #3436.

13 years agoPullup ticket #3436 - requested by drochner
tron [Sat, 21 May 2011 09:02:08 +0000 (09:02 +0000)]
Pullup ticket #3436 - requested by drochner
devel/apr: security patch

Revisions pulled up:
- devel/apr/Makefile                                            1.63
- devel/apr/distinfo                                            1.31
- devel/apr/patches/patch-aa                                    1.5

---
   Module Name:    pkgsrc
   Committed By:   drochner
   Date:           Fri May 20 09:23:16 UTC 2011

   Modified Files:
           pkgsrc/devel/apr: Makefile distinfo
   Added Files:
           pkgsrc/devel/apr/patches: patch-aa

   Log Message:
   add patch from upstream tp fix a regression in the last release
   which could cause hangs
   bump PKGREV

13 years agoPullup ticket #3431.
tron [Fri, 20 May 2011 07:54:42 +0000 (07:54 +0000)]
Pullup ticket #3431.

13 years agoPullup ticket #3431 - requested by taca
tron [Fri, 20 May 2011 07:53:58 +0000 (07:53 +0000)]
Pullup ticket #3431 - requested by taca
security/openssh: bug fix update

Revisions pulled up:
- security/openssh/Makefile                                     1.201-1.202
- security/openssh/files/sshd.sh                                1.12-1.13

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Mon May 16 05:06:49 UTC 2011

   Modified Files:
    pkgsrc/security/openssh: Makefile
    pkgsrc/security/openssh/files: sshd.sh

   Log Message:
   Maintenance of openssh pacakge:

   1. Add support for check and create ECDSA host key for SSH protocol
      version 2.

   2. Disable use of strnvis(3) on NetBSD.  NetBSD current after 2011/03/12
      has strnvis(3), but it has different argument from OpenBSD (and other
      system).

   Bump PKGREVISION.

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Tue May 17 03:26:52 UTC 2011

   Modified Files:
    pkgsrc/security/openssh: Makefile
    pkgsrc/security/openssh/files: sshd.sh

   Log Message:
   Don't always try to create ecdsa key which depends on OpenSSL's version.

   Bump PKGREVISION.

13 years agoPullup ticket 3434
sbd [Wed, 18 May 2011 09:58:57 +0000 (09:58 +0000)]
Pullup ticket 3434

13 years agoPullup ticket #3434 - requested by bouyer
sbd [Wed, 18 May 2011 09:57:30 +0000 (09:57 +0000)]
Pullup ticket #3434 - requested by bouyer
net/isc-dhcp4 build fix

Revisions pulled up:
- net/isc-dhcp4/Makefile.common                                 1.10

---
   Module Name: pkgsrc
   Committed By: bouyer
   Date: Tue May 17 15:12:29 UTC 2011

   Modified Files:
    pkgsrc/net/isc-dhcp4: Makefile.common

   Log Message:
   isc-dhcp*4 wants gmake to build; add it to USE_TOOLS

13 years agoPullup tickets 3432 and 3433
sbd [Tue, 17 May 2011 08:19:23 +0000 (08:19 +0000)]
Pullup tickets 3432 and 3433

13 years agoPullup ticket #3433 - requested by taca
sbd [Tue, 17 May 2011 08:18:06 +0000 (08:18 +0000)]
Pullup ticket #3433 - requested by taca
lang/pear security update

Revisions pulled up:
- lang/pear/Makefile                                            1.17
- lang/pear/distinfo                                            1.9
- lang/pear/patches/patch-PEAR_REST.php                         1.1

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Mon May 16 13:05:01 UTC 2011

   Modified Files:
    pkgsrc/lang/pear: Makefile distinfo
   Added Files:
    pkgsrc/lang/pear/patches: patch-PEAR_REST.php

   Log Message:
   Add a patch to fix CVE-2011-1144 (and a few bug fixes).

   Bump PKGREVISION.

13 years agoPullup ticket #3432 - requested by taca
sbd [Tue, 17 May 2011 08:17:07 +0000 (08:17 +0000)]
Pullup ticket #3432 - requested by taca
lang/php53 security update

Revisions pulled up:
- lang/php53/Makefile                                           1.9
- lang/php53/distinfo                                           1.14
- lang/php53/patches/patch-ext_standard_string.c                1.1

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Mon May 16 13:08:45 UTC 2011

   Modified Files:
    pkgsrc/lang/php53: Makefile distinfo
   Added Files:
    pkgsrc/lang/php53/patches: patch-ext_standard_string.c

   Log Message:
   Add a patch to fix for CVE-2011-1148 (and more bugfix) from PHP's repository.

   Bump PKGREVISION.

13 years agoPullup tickets 3427 and 3430
sbd [Sun, 15 May 2011 09:34:35 +0000 (09:34 +0000)]
Pullup tickets 3427 and 3430

13 years agoPullup ticket #3430 - requested by taca
sbd [Sun, 15 May 2011 09:33:30 +0000 (09:33 +0000)]
Pullup ticket #3430 - requested by taca
security/openssh security update

Revisions pulled up:
- security/openssh/Makefile                                     1.200
- security/openssh/distinfo                                     1.80

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Sun May 15 04:17:15 UTC 2011

   Modified Files:
    pkgsrc/security/openssh: Makefile distinfo

   Log Message:
   Update openssh package to 5.8.2 (5.8p2).

   20110403
    - (djm) [README contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
      [contrib/suse/openssh.spec] Prepare for 5.8p2 release.
    - (djm) [version.h] crank version
    - Release 5.8p2

   20110329
    - (djm) [entropy.c] closefrom() before running ssh-rand-helper; leftover fds
      noticed by tmraz AT redhat.com

   20110221
    - (dtucker) [contrib/cygwin/ssh-host-config] From Corinna: revamp of the
      Cygwin-specific service installer script ssh-host-config.  The actual
      functionality is the same, the revisited version is just more
      exact when it comes to check for problems which disallow to run
      certain aspects of the script.  So, part of this script and the also
      rearranged service helper script library "csih" is to check if all
      the tools required to run the script are available on the system.
      The new script also is more thorough to inform the user why the
      script failed.  Patch from vinschen at redhat com.

   20110206
    - (dtucker) [openbsd-compat/port-linux.c] Bug #1851: fix syntax error in
      selinux code.  Patch from Leonardo Chiquitto
    - (dtucker) [contrib/cygwin/ssh-{host,user}-config]  Add ECDSA key
      generation and simplify.  Patch from Corinna Vinschen.

13 years agoPullup ticket #3427 - requested by tron
sbd [Sun, 15 May 2011 09:32:37 +0000 (09:32 +0000)]
Pullup ticket #3427 - requested by tron
devel/apr security update

Revisions pulled up:
- devel/apr/Makefile                                            1.62
- devel/apr/distinfo                                            1.30

---
   Module Name: pkgsrc
   Committed By: tron
   Date: Wed May 11 18:07:16 UTC 2011

   Modified Files:
    pkgsrc/devel/apr: Makefile distinfo

   Log Message:
   Update "apr" package to version 1.4.2. Changes since version 1.4.4:
   - Reimplement apr_fnmatch() from scratch using a non-recursive
     algorithm; now has improved compliance with the fnmatch() spec.
     [William Rowe]
   - Fix environment-related crash using some non-standard builds on
     Windows 7/Server 2008.  [Steve Hay <SteveHay planit.com>]
   - poll, pollset, pollcb on Windows: Handle calls with no file/socket
     descriptors.  Bug 49882.  [Stefan Ruppert <sr myarm.com>, Jeff Trawick]
   - Fix APR_IPV6_V6ONLY issues on Windows related to run-time behavior
     on Windows older than Vista and SDK/MinGW levels without IPV6_V6ONLY.
     Bug 45321.  [Sob <sob hisoftware.cz>]
   - Fix address handling when accepting an AF_INET socket from a socket
     bound as AF_INET6.   Bug 49678.  [Joe Orton]
   - Fix error return values from apr_sockaddr_info_get() on Windows for
     IPv6 builds.  [Ivan Zhakov <ivan visualsvn.com>]
   - Add new experimental configure option --enable-allocator-uses-mmap to
     use mmap instead of malloc in apr_allocator_alloc(). This greatly reduces
     memory fragmentation with malloc implementations (e.g. glibc) that
     don't handle allocationss of a page-size-multiples in an efficient way.
     It also makes apr_allocator_max_free_set() actually have some effect
     on such platforms. [Stefan Fritsch]
   - configure: Support 64 and 32 bit universal builds for Darwin/
     OS X 10.6+. [Jim Jagielski]
   - apr_sockaddr_info_get() on AIX: Fix a problem which could set
     the port field in the native socket address to 1 when 0 was
     specified.  Bug 46964.  [Jeff Trawick]
   - configure: Make definition of apr_ino_t independent of
     _FILE_OFFSET_BITS even on platforms where ino_t is 'unsigned int'.
     [Stefan Fritsch]
   - apr_ring: Workaround for aliasing problem that causes gcc 4.5 to
     miscompile some brigade related code. Bug 50190. [Stefan Fritsch]
   - apr_file_flush_locked(): Handle short writes. [Stefan Fritsch]
   - apr_pollset_create_ex(): Trap errors from pollset providers.
     Bug 49094.  [Sami Tolvanen <sami.tolvanen mywot.com>]
   - apr_pollset_create*(): Fix memory lifetime problem with the wakeup
     pipe when the pollset was created with APR_POLLSET_NOCOPY.
     [Neil Conway <nrc cs.berkeley.edu>]
   - Fix detection of some Linux variants when configure is built with
     recent GNU tools.  [Eric Covener]
   - Avoid a redundant fcntl() call in apr_file_open() where O_CLOEXEC
     is supported.  Bug 46297.  [Joe Orton]
   - Improve platform detection by updating config.guess and config.sub.
     [Rainer Jung]

13 years agoPullup tickets #3428 and #3429.
tron [Fri, 13 May 2011 17:09:10 +0000 (17:09 +0000)]
Pullup tickets #3428 and #3429.

13 years agoPullup ticket #3429 - requested by bouyer
tron [Fri, 13 May 2011 13:31:42 +0000 (13:31 +0000)]
Pullup ticket #3429 - requested by bouyer
sysutils/xentools33: security patch

Revisions pulled up:
- sysutils/xentools33/Makefile                                  1.25
- sysutils/xentools33/distinfo                                  1.23
- sysutils/xentools33/patches/patch-CVE-2011-1583               1.1

---
   Module Name: pkgsrc
   Committed By: bouyer
   Date: Thu May 12 15:39:05 UTC 2011

   Modified Files:
    pkgsrc/sysutils/xentools33: Makefile distinfo
   Added Files:
    pkgsrc/sysutils/xentools33/patches: patch-CVE-2011-1583

   Log Message:
   Add patch from the xen-dev mailing list to fix CVE-2011-1583
   Bump PKGREVISION

13 years agoPullup ticket #3428 - requested by bouyer
tron [Fri, 13 May 2011 13:10:45 +0000 (13:10 +0000)]
Pullup ticket #3428 - requested by bouyer
mail/turba: fix incomplete installation

Revisions pulled up:
- mail/turba/Makefile                                           1.34
- mail/turba/PLIST                                              1.17

---
   Module Name: pkgsrc
   Committed By: bouyer
   Date: Wed May 11 21:28:36 UTC 2011

   Modified Files:
    pkgsrc/mail/turba: Makefile PLIST

   Log Message:
   Also install the content of the addressbooks subdirectory. This is needed
   for the "My Address Books" link.
   Bump PKGREVISION.

13 years agoPullup ticket #3426
sbd [Wed, 11 May 2011 03:15:52 +0000 (03:15 +0000)]
Pullup ticket #3426

13 years agoPullup ticket #3426 - requested by taca
sbd [Wed, 11 May 2011 03:14:38 +0000 (03:14 +0000)]
Pullup ticket #3426 - requested by taca
mail/postfix security update

Revisions pulled up:
- mail/postfix/Makefile                                         1.239
- mail/postfix/distinfo                                         1.135
- mail/postfix/options.mk                                       1.36

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Tue May 10 13:38:24 UTC 2011

   Modified Files:
    pkgsrc/mail/postfix: Makefile distinfo options.mk

   Log Message:
   Update postfix package to 2.8.3.

   * pkgsrc change: remoe mysql4 from PKG_OPTIONS.

   Securiy release for Memory corruption in Postfix SMTP server Cyrus SASL
   support: http://www.postfix.org/CVE-2011-1720.html

   20110411

    Cleanup: postscreen(8) and verify(8) daemons now lock their
    respective cache file exclusively upon open, to avoid massive
    cache corruption by unsupported sharing. Files: util/dict.h,
    util/dict_open.c, verify/verify.c, postscreen/postscreen.c.

   20110414

    Bugfix (introduced with Postfix SASL patch 20000314): don't
    reuse a server SASL handle after authentication failure.
    Problem reported by Thomas Jarosch of Intra2net AG. File:
    smtpd/smtpd_proto.c.

13 years agoPullup ticket #3425
sbd [Mon, 9 May 2011 05:00:25 +0000 (05:00 +0000)]
Pullup ticket #3425

13 years agoPullup ticket #3425 - requested by morr
sbd [Mon, 9 May 2011 04:59:08 +0000 (04:59 +0000)]
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.

13 years agoPullup tickets #3422, #3423 and #3424.
tron [Sat, 7 May 2011 10:48:14 +0000 (10:48 +0000)]
Pullup tickets #3422, #3423 and #3424.

13 years agoPullup ticket #3424 - requested by obache
tron [Sat, 7 May 2011 10:47:32 +0000 (10:47 +0000)]
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)

13 years agoPullup ticket #3423 - requested by taca
tron [Sat, 7 May 2011 10:44:31 +0000 (10:44 +0000)]
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]

13 years agoPullup ticket #3422 - requested by obache
tron [Sat, 7 May 2011 10:30:37 +0000 (10:30 +0000)]
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

13 years agoPullup ticket #3421.
tron [Wed, 4 May 2011 17:23:30 +0000 (17:23 +0000)]
Pullup ticket #3421.

13 years agoPullup ticket #3421 - requested by obache
tron [Wed, 4 May 2011 17:21:25 +0000 (17:21 +0000)]
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

13 years agoUn-note update of viking in stable CHANGES-file.
gdt [Tue, 3 May 2011 12:27:07 +0000 (12:27 +0000)]
Un-note update of viking in stable CHANGES-file.

13 years agoUpdated geography/viking to 1.1
gdt [Tue, 3 May 2011 00:42:31 +0000 (00:42 +0000)]
Updated geography/viking to 1.1

13 years agoPullup ticket #3420.
tron [Fri, 29 Apr 2011 16:34:37 +0000 (16:34 +0000)]
Pullup ticket #3420.

13 years agoPullup ticket #3420 - requested by obache
tron [Fri, 29 Apr 2011 16:33:38 +0000 (16:33 +0000)]
Pullup ticket #3420 - requested by obache
www/p5-Mojolicious: security update

Revisions pulled up:
- www/p5-Mojolicious/Makefile                                   1.4
- www/p5-Mojolicious/distinfo                                   1.4

---
   Module Name: pkgsrc
   Committed By: obache
   Date: Wed Apr 27 12:11:17 UTC 2011

   Modified Files:
    pkgsrc/www/p5-Mojolicious: Makefile distinfo

   Log Message:
   Update p5-Mojolicious to 1.16.
   Based on PR#44869 by Christian Sturm.
   additionaly fixes shebang for scriptse.

   1.16 2011-04-15 00:00:00
            - Emergency release for a critical security issue that can expose
              files on your system, everybody should update!

13 years agoFixup fromcvs/togit conversion
pkgsrc fixup [Mon, 25 Apr 2011 20:27:23 +0000 (13:27 -0700)]
Fixup fromcvs/togit conversion

13 years agopullup #3418
spz [Sun, 24 Apr 2011 14:05:31 +0000 (14:05 +0000)]
pullup #3418

13 years agoPullup ticket #3418 - requested by tron
spz [Sun, 24 Apr 2011 14:04:07 +0000 (14:04 +0000)]
Pullup ticket #3418 - requested by tron
net/wireshark: security update

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

----------------------------------------------------------------------------
   Module Name: pkgsrc
   Committed By: tron
   Date: Tue Apr 19 21:52:56 UTC 2011

   Modified Files:
    pkgsrc/net/wireshark: Makefile distinfo

   Log Message:
   Update "wireshark" package to version 1.4.6. Changes since 1.4.5:
   - Bug Fixes
     o Wireshark and TShark can crash while analyzing TCP packets.
       (Bug 5837)

13 years agoPullup ticket #3417.
tron [Wed, 20 Apr 2011 18:40:40 +0000 (18:40 +0000)]
Pullup ticket #3417.

13 years agoPullup ticket #3417 - requested by drochner
tron [Wed, 20 Apr 2011 18:39:44 +0000 (18:39 +0000)]
Pullup ticket #3417 - requested by drochner
graphics/gimp: security patch

Revisions pulled up:
- graphics/gimp/Makefile                                        1.204
- graphics/gimp/distinfo                                        1.62
- graphics/gimp/patches/patch-ba                                1.1
- graphics/gimp/patches/patch-bb                                1.1
- graphics/gimp/patches/patch-bc                                1.1
- graphics/gimp/patches/patch-bd                                1.1

---
   Module Name:    pkgsrc
   Committed By:   drochner
   Date:           Fri Apr 15 16:39:10 UTC 2011

   Modified Files:
           pkgsrc/graphics/gimp: Makefile distinfo
   Added Files:
           pkgsrc/graphics/gimp/patches: patch-ba patch-bb patch-bc patch-bd

   Log Message:
   add patches from upstream, via Debian/Ubuntu:
   -possible buffer overflows when parsing config files of plugins
    (CVE-2010-4540, CVE-2010-4541, CVE-2010-4542)
   -possible buffer overflow in PSP image parser plugin (CVE-2010-4543)
   bump PKGREV

13 years agopullups 3410, 3412, 3416
spz [Sat, 16 Apr 2011 21:52:17 +0000 (21:52 +0000)]
pullups 3410, 3412, 3416

13 years agoPullup ticket #3416 - requested by tron
spz [Sat, 16 Apr 2011 21:49:17 +0000 (21:49 +0000)]
Pullup ticket #3416 - requested by tron
net/wireshark: security update

Revisions pulled up:
- net/wireshark/Makefile                                        1.61
- net/wireshark/distinfo                                        1.43

---------------------------------------------------------------------------
   Module Name: pkgsrc
   Committed By: tron
   Date: Sat Apr 16 14:30:16 UTC 2011

   Modified Files:
    pkgsrc/net/wireshark: Makefile distinfo

   Log Message:
   Update "wireshark" package to version 1.4.5. Changes since 1.4.4:
   - Bug Fixes
     The following vulnerabilities have been fixed. See the security
     advisory for details and a workaround.
     o The NFS dissector could crash on Windows. (Bug 5209)
       Versions affected: 1.4.0 to 1.4.4.
     o The X.509if dissector could crash. (Bug 5754, Bug 5793)
       Versions affected: 1.2.0 to 1.2.15 and 1.4.0 to 1.4.4.
     o Paul Makowski from SEI/CERT discovered that the DECT dissector
       could overflow a buffer. He verified that this could allow
       remote code execution on many platforms.
       Versions affected: 1.4.0 to 1.4.4.
     The following bugs have been fixed:
     o Export HTTP > All - System Appears Hung (but isn't). (Bug 1671)
     o Some HTTP responses don't decode with TCP reassembly on. (Bug 3785)
     o Wireshark crashes when cancelling a large sort operation. (Bug 5189)
     o Wireshark crashes if SSL preferences RSA key is actually a DSA key.
       (Bug 5662)
     o tshark incorrectly calculates TCP stream for some syn packets.
       (Bug 5743)
     o Wireshark not able to decode the PPP frame in a sflow
       (RFC3176) flow sample packet because Wireshark incorrectly
       read the protocol in PPP frame header. (Bug 5746)
     o Mysql protocol dissector: all fields should be little endian.
       (Bug 5759)
     o Error when opening snoop from Juniper SSG-140. (Bug 5762)
     o svnversion: command not found. (Bug 5798)
     o capinfos: #ifdef HAVE_LIBGCRYPT block includes a line too
       many. (Bug 5803)
     o Value of TCP segment data cannot be copied. (Bug 5811)
     o proto_field_is_referenced() is not exported in
       libwireshark.dll. (Bug 5816)
     o Wireshark ver. 1.4.4 not displayed "Granted QoS" field in a
       A11 packet. (Bug 5822)
   - Updated Protocol Support
     HTTP, LDAP, MySQL, NFS, sFlow, SSL, TCP

   To generate a diff of this commit:
   cvs rdiff -u -r1.60 -r1.61 pkgsrc/net/wireshark/Makefile
   cvs rdiff -u -r1.42 -r1.43 pkgsrc/net/wireshark/distinfo

13 years agoPullup ticket #3412 - requested by tron
spz [Sat, 16 Apr 2011 21:27:47 +0000 (21:27 +0000)]
Pullup ticket #3412 - requested by tron
pkgtools/rpm2pkg: build fix

Revisions pulled up:
- pkgtools/rpm2pkg/Makefile                                     1.58
- pkgtools/rpm2pkg/files/rpm2pkg.c                              1.21

---------------------------------------------------------------------------
   Module Name: pkgsrc
   Committed By: tron
   Date: Tue Apr 12 22:12:42 UTC 2011

   Modified Files:
    pkgsrc/pkgtools/rpm2pkg: Makefile
    pkgsrc/pkgtools/rpm2pkg/files: rpm2pkg.c

   Log Message:
   Update "rpm2pkg" package to version 3.2.2:
   - Remove unused CheckSymLinks() function to fix build problems under
     DragonFly BSD.

   This fixes PR pkg/44862 by Francois Tigeot.

   To generate a diff of this commit:
   cvs rdiff -u -r1.57 -r1.58 pkgsrc/pkgtools/rpm2pkg/Makefile
   cvs rdiff -u -r1.20 -r1.21 pkgsrc/pkgtools/rpm2pkg/files/rpm2pkg.c

13 years agoPullup ticket #3410 - requested by wiz
spz [Sat, 16 Apr 2011 21:27:34 +0000 (21:27 +0000)]
Pullup ticket #3410 - requested by wiz
emulators/vice: build fix for NetBSD 5

Revisions pulled up:
- emulators/vice/DESCR                                          1.2
- emulators/vice/Makefile                                       1.89-1.90
- emulators/vice/PLIST                                          1.23
- emulators/vice/PLIST.sdl                                      1.1
- emulators/vice/PLIST.x11                                      1.1
- emulators/vice/distinfo                                       1.38
- emulators/vice/options.mk                                     1.6
- emulators/vice/patches/patch-aa                               1.11
- emulators/vice/patches/patch-ab                               1.11
- emulators/vice/patches/patch-ac                               deleted
- emulators/vice/patches/patch-ad                               deleted

-----------------------------------------------------------------------------
   Module Name: pkgsrc
   Committed By: wiz
   Date: Mon Apr  4 13:42:08 UTC 2011

   Modified Files:
    pkgsrc/emulators/vice: DESCR Makefile PLIST distinfo options.mk
    pkgsrc/emulators/vice/patches: patch-aa patch-ab
   Added Files:
    pkgsrc/emulators/vice: PLIST.sdl PLIST.x11
   Removed Files:
    pkgsrc/emulators/vice/patches: patch-ac patch-ad

   Log Message:
   Update to 2.3, provided by Olaf 'Rhialto' Seibert in PR 44820, with a
   slight fix.

   * Changes in VICE 2.3
   ======================

   ** General
   ----------

   - Added x64sc, the accurate C64 emulator:

     * VIC-II emulation rewritten from scratch using results from extensive
       testing with newly written test programs on real hardware.

     * Emulation is done on a cycle by cycle basis combined with pixel exact
       dot clock domain handling.

     * Accurate handling of all possible in-line splits of VIC-II registers
       and graphics data.

     * C64 model and even individual chip revisions can be selected for very
       detailed emulation of their differences.

     * Equally accurate PAL, NTSC and PAL-N emulation.

     We believe x64sc is one of the most accurate C64 emulators at the
     moment.

   - Drive improvements, including weak bit emulation.

   - Major reSID overhaul:

     * Emulation of all known pipeline delays for full cycle accuracy.
     * New shift register model based on revectorized die photograps.
     * Accurate DAC models based on revectorized die photograps.
     * Emulation of floating waveform DAC input for waveform 0.
     * Advanced 6581 transistor level filter model based on revectorized
       die photograps, yielding unprecedented accuracy.

   - CRT Emulation (former "PAL emulation") is now available regardless of
     video mode or -chip and works in all emulators.

     NOTE: Color gamma range changed. You may need to set to 2.200 manually.
     (ColorGamma=2200)

   - Added "True aspect ratio" option.

   - Sound buffer overflows reduced and the error replaced with a warning.

   - Various monitor improvements (io details, expansion port status ...)

   - Removed little used Emulator ID feature.

   - VIA wrap handling rewritten to fix problems with timer 2.

   - Added autostart option to do LOAD ,8 instead of ,8,1.

   - RESTORE key presses are now distributed randomly across a frame.

   - Improved accuracy of CIA interrupts. (6526/6526A selectable)

   ** C64/C128 changes
   -------------------

   - Cartridge emulation improvements. Many broken cartridges fixed, and the
     following ones added:

     * Action Replay 2
     * Action Replay 3
     * Capture
     * Diashow Maker
     * EXOS
     * Final Cartridge Plus
     * Freeze Frame
     * Freeze Machine
     * Game Killer
     * MACH 5
     * Magic Voice
     * MMC Replay
     * Prophet 64
     * Snapshot 64
     * Super Explode V5
     * Super Snapshot

   - Added emulation of the passthrough port of MMC64, Magic Voice and IEEE488
     cartridges.

   - CIA TOD 50/60 Hz toggle emulation fixed.

   - Improved 1351/paddles port MUX emulation.

   ** C64 changes
   --------------

   - Added Drean (PAL-N) emulation.

   - Fixed bug with autostart mode Inject-to-RAM.  It now writes to RAM under
     I/O correctly.

   ** C128 changes
   ---------------

   - Fixed a bug with autostarting t64 images.

   ** VIC20 changes
   ----------------

   - Added Vic Flash Plugin cartridge emulation.

   - Fixed video cache & reverse bug.

   - Fixed bug in attaching 4kB cartridges.

   - Fixed autostarting bug, mostly seen with tape images.

   ** PLUS4 changes
   ----------------

   - Fixed crashes in NTSC mode.

   - Added v364 speech emulation.

   ** PET changes
   --------------

   - Added DWW emulation.

   - Added userport DAC emulation.

   ** CBM2 changes
   ---------------

   - Split 5x0 and 6x0/7x0 settings in the configuration file.

   ** Unix changes
   ---------------

   - (Xaw) The menus can now be operated without holding the
     mouse button down. Keyboard control is also available
     (Shift-Alt-Z for left menu, Shift-Alt-X for right menu).

   - (Xaw) Lightpen/gun support added.

   - (GTK+) Fixed aspect ratio option added.

   ** SDL UI changes
   -----------------

   - Added vsid UI, FFMPEG and printer menus. The UI is complete.

   To generate a diff of this commit:
   cvs rdiff -u -r1.1 -r1.2 pkgsrc/emulators/vice/DESCR
   cvs rdiff -u -r1.88 -r1.89 pkgsrc/emulators/vice/Makefile
   cvs rdiff -u -r1.22 -r1.23 pkgsrc/emulators/vice/PLIST
   cvs rdiff -u -r0 -r1.1 pkgsrc/emulators/vice/PLIST.sdl \
       pkgsrc/emulators/vice/PLIST.x11
   cvs rdiff -u -r1.37 -r1.38 pkgsrc/emulators/vice/distinfo
   cvs rdiff -u -r1.5 -r1.6 pkgsrc/emulators/vice/options.mk
   cvs rdiff -u -r1.10 -r1.11 pkgsrc/emulators/vice/patches/patch-aa \
       pkgsrc/emulators/vice/patches/patch-ab
   cvs rdiff -u -r1.19 -r0 pkgsrc/emulators/vice/patches/patch-ac
   cvs rdiff -u -r1.14 -r0 pkgsrc/emulators/vice/patches/patch-ad

-----------------------------------------------------------------------------
   Module Name: pkgsrc
   Committed By: tron
   Date: Sat Apr 16 11:05:33 UTC 2011

   Modified Files:
    pkgsrc/emulators/vice: Makefile

   Log Message:
   Fix build problem under NetBSD/i386 current.

   To generate a diff of this commit:
   cvs rdiff -u -r1.89 -r1.90 pkgsrc/emulators/vice/Makefile

13 years agoPullup ticket #3415.
tron [Sat, 16 Apr 2011 09:45:39 +0000 (09:45 +0000)]
Pullup ticket #3415.

13 years agoPullup ticket #3415 - requested by tez
tron [Sat, 16 Apr 2011 09:43:47 +0000 (09:43 +0000)]
Pullup ticket #3415 - requested by tez
security/mit-krb5: security patch

Revisions pulled up:
- security/mit-krb5/Makefile                                    1.52-1.53
- security/mit-krb5/buildlink3.mk                               1.11
- security/mit-krb5/builtin.mk                                  1.7
- security/mit-krb5/distinfo                                    1.28-1.29
- security/mit-krb5/patches/patch-ck                            1.1

---
   Module Name:    pkgsrc
   Committed By:   tez
   Date:           Fri Apr  8 17:30:35 UTC 2011

   Modified Files:
           pkgsrc/security/mit-krb5: builtin.mk

   Log Message:
   Add builtin support for SunOS per PR#44597

---
   Module Name:    pkgsrc
   Committed By:   tez
   Date:           Sat Apr  9 00:16:18 UTC 2011

   Modified Files:
           pkgsrc/security/mit-krb5: Makefile buildlink3.mk distinfo
   Added Files:
           pkgsrc/security/mit-krb5/patches: patch-ck

   Log Message:
   correct openssl dependency (it needs >=0.9.8)
   correct BUILDLINK_API_DEPENDS.mit-krb5
   fix building where libtool chokes on "--version-info : " (at least OS X)

---
   Module Name:    pkgsrc
   Committed By:   tez
   Date:           Thu Apr 14 19:37:26 UTC 2011

   Modified Files:
           pkgsrc/security/mit-krb5: Makefile distinfo

   Log Message:
   fix MITKRB5-SA-2011-004 (CVE-2011-0285) DOS in kadmind

13 years agoFixup fromcvs/togit conversion
pkgsrc fixup [Thu, 14 Apr 2011 02:37:03 +0000 (19:37 -0700)]
Fixup fromcvs/togit conversion

13 years agoPullup tickets #3411 and #3413.
tron [Wed, 13 Apr 2011 18:29:32 +0000 (18:29 +0000)]
Pullup tickets #3411 and #3413.

13 years agoPullup ticket #3413 - requested by drochner
tron [Wed, 13 Apr 2011 18:28:42 +0000 (18:28 +0000)]
Pullup ticket #3413 - requested by drochner
x11/xrdb: security update

Revisions pulled up:
- x11/xrdb/Makefile                                             1.7
- x11/xrdb/distinfo                                             1.6

---
   Module Name:    pkgsrc
   Committed By:   drochner
   Date:           Fri Apr  8 12:26:04 UTC 2011

   Modified Files:
           pkgsrc/x11/xrdb: Makefile distinfo

   Log Message:
   update to 1.0.9
   changes:
   Create shell-escape-safe cpp options in the non-pathetic-cpp case.
   Fixes CVE-2011-0465.

13 years agoPullup ticket #3411 - requested by wiz
tron [Wed, 13 Apr 2011 18:25:25 +0000 (18:25 +0000)]
Pullup ticket #3411 - requested by wiz
misc/calibre: build fix

Revisions pulled up:
- misc/calibre/distinfo                                         1.3
- misc/calibre/patches/patch-src_calibre_ebooks_pdf_images.cpp  1.1

---
   Module Name: pkgsrc
   Committed By: wiz
   Date: Tue Apr 12 21:48:01 UTC 2011

   Modified Files:
    pkgsrc/misc/calibre: distinfo
   Added Files:
    pkgsrc/misc/calibre/patches: patch-src_calibre_ebooks_pdf_images.cpp

   Log Message:
   Fix build with png-1.5.

13 years agoPullup ticket #3409.
tron [Tue, 12 Apr 2011 06:17:37 +0000 (06:17 +0000)]
Pullup ticket #3409.

13 years agoPullup ticket #3409 - requested by markd
tron [Tue, 12 Apr 2011 06:15:24 +0000 (06:15 +0000)]
Pullup ticket #3409 - requested by markd
x11/kdelibs4: security patch

Revisions pulled up:
- x11/kdelibs4/Makefile                                         1.24
- x11/kdelibs4/distinfo                                         1.17
- x11/kdelibs4/patches/patch-khtml_khtml_part.cpp               1.1

---
   Module Name: pkgsrc
   Committed By: markd
   Date: Mon Apr 11 10:11:42 UTC 2011

   Modified Files:
    pkgsrc/x11/kdelibs4: Makefile distinfo
   Added Files:
    pkgsrc/x11/kdelibs4/patches: patch-khtml_khtml_part.cpp

   Log Message:
   Fix for CVE-2011-1168.

13 years agoFixup fromcvs/togit conversion
pkgsrc fixup [Mon, 11 Apr 2011 20:36:56 +0000 (13:36 -0700)]
Fixup fromcvs/togit conversion

13 years agoPullup tickets #3405, #3406, #3407 and #3408.
tron [Mon, 11 Apr 2011 14:20:23 +0000 (14:20 +0000)]
Pullup tickets #3405, #3406, #3407 and #3408.

13 years agoPullup ticket #3408 - requested by morr
tron [Mon, 11 Apr 2011 14:20:16 +0000 (14:20 +0000)]
Pullup ticket #3408 - requested by morr
www/wordpress security update

Revisions pulled up:
- www/wordpress/Makefile                                        1.17
- www/wordpress/distinfo                                        1.13

---
   Module Name: pkgsrc
   Committed By: morr
   Date: Sat Apr  9 00:57:43 UTC 2011

   Modified Files:
    pkgsrc/www/wordpress: Makefile distinfo

   Log Message:
   Update to wordpress 3.1.1.

   This maintenance and security release fixes almost thirty issues in 3.1,
   including:

   * Some security hardening to media uploads
   * Performance improvements
   * Fixes for IIS6 support
   * Fixes for taxonomy and PATHINFO (/index.php/) permalinks
   * Fixes for various query and taxonomy edge cases that caused some plugin
   compatibility issues

   Version 3.1.1 also addresses three security issues discovered by
   WordPress core developers Jon Cave and Peter Westwood, of wordpress's security
   team. The first hardens CSRF prevention in the media uploader. The
   second avoids a PHP crash in certain environments when handling
   devilishly devised links in comments, and the third addresses an XSS
   flaw.

13 years agoPullup ticket #3407 - requested by taca
tron [Mon, 11 Apr 2011 14:02:09 +0000 (14:02 +0000)]
Pullup ticket #3407 - requested by taca
net/isc-dhclient4: security update
net/isc-dhcp4: security update
net/isc-dhcpd4: security update
net/isc-dhcrelay4: security update

Revisions pulled up:
- net/isc-dhclient4/Makefile                                    1.5
- net/isc-dhcp4/Makefile                                        1.7
- net/isc-dhcp4/Makefile.common                                 1.9
- net/isc-dhcp4/PLIST                                           1.4
- net/isc-dhcp4/distinfo                                        1.6
- net/isc-dhcp4/patches/patch-aa                                1.4
- net/isc-dhcp4/patches/patch-ab                                1.4
- net/isc-dhcp4/patches/patch-ac                                1.2
- net/isc-dhcp4/patches/patch-includes_Makefile.in              1.1
- net/isc-dhcpd4/Makefile                                       1.5
- net/isc-dhcrelay4/Makefile                                    1.5

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Fri Apr  8 14:09:24 UTC 2011

   Modified Files:
    pkgsrc/net/isc-dhclient4: Makefile
    pkgsrc/net/isc-dhcp4: Makefile Makefile.common PLIST distinfo
    pkgsrc/net/isc-dhcp4/patches: patch-aa patch-ab patch-ac
    pkgsrc/net/isc-dhcpd4: Makefile
    pkgsrc/net/isc-dhcrelay4: Makefile
   Added Files:
    pkgsrc/net/isc-dhcp4/patches: patch-includes_Makefile.in

   Log Message:
   Update ISC DHCP package to 4.2.1p1 (4.2.1-P1), fixes a few security
   problems.  For more detail, please refer:

    http://ftp.isc.org/isc/dhcp/dhcp-4.2.1-P1-RELNOTES

13 years agoPullup ticket #3404.
tron [Thu, 7 Apr 2011 08:06:03 +0000 (08:06 +0000)]
Pullup ticket #3404.

13 years agoPullup ticket #3404 - requested by taca
tron [Thu, 7 Apr 2011 08:05:11 +0000 (08:05 +0000)]
Pullup ticket #3404 - requested by taca
lang/perl5: security patch

Revisions pulled up:
- lang/perl5/Makefile                                           1.171
- lang/perl5/distinfo                                           1.74
- lang/perl5/patches/patch-pp.c                                 1.1

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Thu Apr  7 04:03:58 UTC 2011

   Modified Files:
    pkgsrc/lang/perl5: Makefile distinfo
   Added Files:
    pkgsrc/lang/perl5/patches: patch-pp.c

   Log Message:
   Add a patch to fix for http://secunia.com/advisories/43921/ from perl's
   git repository (539689e74a).

   Bump PKGREVISION.

13 years agoPullup tickets #3398, #3400, #3401, #3402 and #3403.
tron [Wed, 6 Apr 2011 23:10:25 +0000 (23:10 +0000)]
Pullup tickets #3398, #3400, #3401, #3402 and #3403.

13 years agoPullup ticket #3403 - requested by joerg
tron [Wed, 6 Apr 2011 23:09:19 +0000 (23:09 +0000)]
Pullup ticket #3403 - requested by joerg
py-django-cms: build fix

Revisions pulled up:
- www/py-django-cms/Makefile                                    1.6

---
   Module Name: pkgsrc
   Committed By: joerg
   Date: Wed Apr  6 21:42:41 UTC 2011

   Modified Files:
    pkgsrc/www/py-django-cms: Makefile

   Log Message:
   Dependency requires Python 2.5

13 years agoPullup ticket #3402 - requested by joerg
tron [Wed, 6 Apr 2011 23:00:07 +0000 (23:00 +0000)]
Pullup ticket #3402 - requested by joerg
chat/gloox: build fix

Revisions pulled up:
- chat/gloox/Makefile                                           1.2

---
   Module Name: pkgsrc
   Committed By: joerg
   Date: Wed Apr  6 22:00:10 UTC 2011

   Modified Files:
    pkgsrc/chat/gloox: Makefile

   Log Message:
   Needs pkg-config

13 years agoPullup ticket #3401 - requested by taca
tron [Wed, 6 Apr 2011 22:49:42 +0000 (22:49 +0000)]
Pullup ticket #3401 - requested by taca
databases/ruby-activerecord3: security update
devel/ruby-activemodel: security update
devel/ruby-activesupport3: security update
devel/ruby-railties: security update
lang/ruby: security update
mail/ruby-actionmailer3: security update
www/ruby-actionpack3: security update
www/ruby-activeresource3: security update
www/ruby-rails3: security update

Revisions pulled up:
- databases/ruby-activerecord3/distinfo                         1.5
- devel/ruby-activemodel/distinfo                               1.5
- devel/ruby-activemodel/patches/patch-.._activemodel.gemspec   1.2
- devel/ruby-activesupport3/distinfo                            1.5
- devel/ruby-railties/distinfo                                  1.5
- lang/ruby/rails.mk                                            1.3
- mail/ruby-actionmailer3/distinfo                              1.5
- www/ruby-actionpack3/distinfo                                 1.5
- www/ruby-actionpack3/patches/patch-.._actionpack.gemspec      1.2
- www/ruby-activeresource3/distinfo                             1.5
- www/ruby-rails3/distinfo                                      1.6

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Wed Apr  6 13:23:03 UTC 2011

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

   Log Message:
   Start update of Ruby on Rails 3.0.6.

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Wed Apr  6 13:23:30 UTC 2011

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

   Log Message:
   Update ruby-activesupport3 package to 3.0.6.

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Wed Apr  6 13:24:48 UTC 2011

   Modified Files:
    pkgsrc/devel/ruby-activemodel: distinfo
    pkgsrc/devel/ruby-activemodel/patches: patch-.._activemodel.gemspec

   Log Message:
   Update ruby-activemodel package to 3.0.6.

   *Rails 3.0.6 (April 5, 2011)

   * Fix when database column name has some symbolic characters
     (e.g. Oracle CASE# VARCHAR2(20)) #5818 #6850 [Robert Pankowecki,
     Santiago Pastorino]

   * Fix length validation for fixnums #6556 [Andriy Tyurnikov]

   * Fix i18n key collision with namespaced models #6448 [yves.senn]

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Wed Apr  6 13:26:04 UTC 2011

   Modified Files:
    pkgsrc/www/ruby-actionpack3: distinfo
    pkgsrc/www/ruby-actionpack3/patches: patch-.._actionpack.gemspec

   Log Message:
   Update ruby-actionpack3 pacakge to 3.0.6.

   *Rails 3.0.6 (April 5, 2011)

   * Fixed XSS vulnerability in `auto_link`.  `auto_link` no longer marks input as
     html safe.  Please make sure that calls to auto_link() are wrapped in a
     sanitize(), or a raw() depending on the type of input passed to auto_link().
     For example:

       <%= sanitize(auto_link(some_user_input)) %>

     Thanks to Torben Schulz for reporting this.  The fix can be found here:
     61ee3449674c591747db95f9b3472c5c3bd9e84d

   * Fixes the output of `rake routes` to be correctly match to the
     behavior of the application, as the regular expression used to match
     the path is greedy and won't capture the format part by default
     [Prem Sichanugrist]

   * Fixes an issue with number_to_human when converting values which are
     less than 1 but greater than -1 [Josh Kalderimis]

   * Sensitive query string parameters (specified in
     config.filter_parameters) will now be filtered out from the request
     paths in the log file. [Prem Sichanugrist, fxn]

   * URL parameters which return nil for to_param are now removed from
     the query string [Andrew White]

   * Don't allow i18n to change the minor version, version now set to ~>
     0.5.0 [Santiago Pastorino]

   * Make TranslationHelper#translate use the :rescue_format option in
     I18n 0.5.0 [Sven Fuchs]

   * Fix regression: javascript_include_tag shouldn't raise if you
     register an expansion key with nil or [] value [Santiago Pastorino]

   * Fix Action caching bug where an action that has a non-cacheable
     response always renders a nil response body. It now correctly
     renders the response body. [Cheah Chu Yeow]

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Wed Apr  6 13:27:01 UTC 2011

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

   Log Message:
   Update ruby-activerecord3 package to 3.0.6.

   *Rails 3.0.6 (April 5, 2011)

   * Un-deprecate reorder method [Sebastian Martinez]

   * Extensions are applied when calling +except+ or +only+ on relations.
     Thanks to Iain Hecker.

   * Schemas set in set_table_name are respected by the mysql adapter. LH #5322

   * Fixed a bug when empty? was called on a grouped Relation that wasn't loaded.
     LH #5829

   * Reapply extensions when using except and only. Thanks Iain Hecker.

   * Binary data is escaped when being inserted to SQLite3 Databases. Thanks
     Naruse!

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Wed Apr  6 13:27:56 UTC 2011

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

   Log Message:
   Update ruby-activeresource3 pacakge to 3.0.6.

   No changes but version.

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Wed Apr  6 13:28:53 UTC 2011

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

   Log Message:
   Update ruby-actionmailer3 package to 3.0.6.

   *Rails 3.0.6 (April 5, 2011)

   * Don't allow i18n to change the minor version, version now set to ~>
     0.5.0 [Santiago Pastorino]

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Wed Apr  6 13:29:48 UTC 2011

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

   Log Message:
   Update ruby-railties package to 3.0.6.

   No chagne but version.

---
   Module Name: pkgsrc
   Committed By: taca
   Date: Wed Apr  6 13:31:02 UTC 2011

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

   Log Message:
   Update ruby-rails3 package to 3.0.6.

   (Ruby on Rails meta pacakge, no change but version.)

13 years agoPullup ticket #3400 - requested by wiz
tron [Wed, 6 Apr 2011 22:17:44 +0000 (22:17 +0000)]
Pullup ticket #3400 - requested by wiz
audio/gqmpeg-devel: build fix
devel/teem: build fix
games/ufoai: build fix
graphics/tuxpaint: build fix
lang/kaffe: build fix
sysutils/xnc: build fix
wm/afterstep: build fix
www/chimera: build fix
www/mMosaic: build fix
x11/xcursorgen: build fix

Revisions pulled up:
- audio/gqmpeg-devel/distinfo                                   1.5
- audio/gqmpeg-devel/patches/patch-src_ui__pixbuf__save.c       1.1
- devel/teem/distinfo                                           1.6
- devel/teem/patches/patch-ad                                   1.2
- games/ufoai/distinfo                                          1.5
- games/ufoai/patches/patch-ab                                  1.3
- graphics/tuxpaint/distinfo                                    1.21
- graphics/tuxpaint/patches/patch-ab                            1.5
- lang/kaffe/distinfo                                           1.30
- lang/kaffe/patches/patch-libraries_clib_awt_X_imgpng.c        1.1
- sysutils/xnc/distinfo                                         1.8
- sysutils/xnc/patches/patch-src_lib_image2_sdl__image_IMG__png.c 1.1
- wm/afterstep/distinfo                                         1.13
- wm/afterstep/patches/patch-libAfterImage_export.c             1.1
- wm/afterstep/patches/patch-libAfterImage_import.c             1.1
- www/chimera/distinfo                                          1.9
- www/chimera/patches/patch-ad                                  1.5
- www/mMosaic/distinfo                                          1.11
- www/mMosaic/patches/patch-ai                                  1.2
- www/mMosaic/patches/patch-src_MIME.c                          1.1
- x11/xcursorgen/distinfo                                       1.3
- x11/xcursorgen/patches/patch-xcursorgen.c                     1.1

---
   Module Name: pkgsrc
   Committed By: wiz
   Date: Tue Apr  5 08:09:47 UTC 2011

   Modified Files:
    pkgsrc/audio/gqmpeg-devel: distinfo
   Added Files:
    pkgsrc/audio/gqmpeg-devel/patches: patch-src_ui__pixbuf__save.c

   Log Message:
   Fix build with png-1.5.

---
   Module Name: pkgsrc
   Committed By: wiz
   Date: Tue Apr  5 11:04:40 UTC 2011

   Modified Files:
    pkgsrc/graphics/tuxpaint: distinfo
    pkgsrc/graphics/tuxpaint/patches: patch-ab

   Log Message:
   Fix build with png-1.5.

---
   Module Name: pkgsrc
   Committed By: wiz
   Date: Tue Apr  5 11:07:00 UTC 2011

   Modified Files:
    pkgsrc/x11/xcursorgen: distinfo
   Added Files:
    pkgsrc/x11/xcursorgen/patches: patch-xcursorgen.c

   Log Message:
   Fix build with png-1.5.

---
   Module Name: pkgsrc
   Committed By: wiz
   Date: Tue Apr  5 11:27:29 UTC 2011

   Modified Files:
    pkgsrc/devel/teem: distinfo
    pkgsrc/devel/teem/patches: patch-ad

   Log Message:
   Fix build with png-1.5.

---
   Module Name: pkgsrc
   Committed By: wiz
   Date: Tue Apr  5 11:32:46 UTC 2011

   Modified Files:
    pkgsrc/games/ufoai: distinfo
    pkgsrc/games/ufoai/patches: patch-ab

   Log Message:
   Fix build with png-1.5.

---
   Module Name: pkgsrc
   Committed By: wiz
   Date: Tue Apr  5 11:49:51 UTC 2011

   Modified Files:
    pkgsrc/lang/kaffe: distinfo
   Added Files:
    pkgsrc/lang/kaffe/patches: patch-libraries_clib_awt_X_imgpng.c

   Log Message:
   Fix build with png-1.5.

---
   Module Name: pkgsrc
   Committed By: wiz
   Date: Tue Apr  5 11:56:30 UTC 2011

   Modified Files:
    pkgsrc/sysutils/xnc: distinfo
   Added Files:
    pkgsrc/sysutils/xnc/patches: patch-src_lib_image2_sdl__image_IMG__png.c

   Log Message:
   Fix build with png-1.5.

---
   Module Name: pkgsrc
   Committed By: wiz
   Date: Tue Apr  5 12:02:00 UTC 2011

   Modified Files:
    pkgsrc/wm/afterstep: distinfo
   Added Files:
    pkgsrc/wm/afterstep/patches: patch-libAfterImage_export.c
        patch-libAfterImage_import.c

   Log Message:
   Fix build with png-1.5.

---
   Module Name: pkgsrc
   Committed By: wiz
   Date: Tue Apr  5 12:16:39 UTC 2011

   Modified Files:
    pkgsrc/www/chimera: distinfo
    pkgsrc/www/chimera/patches: patch-ad

   Log Message:
   Fix build with png-1.5.

---
   Module Name: pkgsrc
   Committed By: wiz
   Date: Tue Apr  5 12:27:06 UTC 2011

   Modified Files:
    pkgsrc/www/mMosaic: distinfo
    pkgsrc/www/mMosaic/patches: patch-ai
   Added Files:
    pkgsrc/www/mMosaic/patches: patch-src_MIME.c

   Log Message:
   Fix build with png-1.5 and avoid conflict with getline() on NetBSD.

13 years agoRevert "chmod +w files copied into WRKDIR from sources" mistakenly
gdt [Wed, 6 Apr 2011 18:37:04 +0000 (18:37 +0000)]
Revert "chmod +w files copied into WRKDIR from sources" mistakenly
applied to release branch.

13 years agoPullup ticket #3398 - requested by wiz
tron [Wed, 6 Apr 2011 18:12:35 +0000 (18:12 +0000)]
Pullup ticket #3398 - requested by wiz
lang/vala: Downgrade package as it breaks package depending on it.

Revisions pulled up:
- doc/CHANGES-2011                                              patch
- lang/vala/Makefile                                            1.16
- lang/vala/PLIST                                               1.9
- lang/vala/PLIST.vapigen                                       1.5
- lang/vala/distinfo                                            1.11

---
   Module Name: pkgsrc
   Committed By: ahoka
   Date: Tue Apr  5 12:17:06 UTC 2011

   Modified Files:
    pkgsrc/lang/vala: Makefile PLIST PLIST.vapigen distinfo

   Log Message:
   revert update

13 years agochmod +w files copied into WRKDIR from sources.
gdt [Tue, 5 Apr 2011 23:45:47 +0000 (23:45 +0000)]
chmod +w files copied into WRKDIR from sources.

Avoids failure when source tree is 444, as it is with CVSREAD=t.

13 years agoAdd CHANGES file to branch.
wiz [Sun, 3 Apr 2011 23:01:21 +0000 (23:01 +0000)]
Add CHANGES file to branch.

13 years agoRemoving files not present on branch pkgsrc-2011Q1:
branch-fixup [Sun, 3 Apr 2011 22:48:56 +0000 (22:48 +0000)]
Removing files not present on branch pkgsrc-2011Q1:
print/ted/files/README.ind
print/ted/files/md5
print/ted/patches/patch-aa
print/ted/pkg/COMMENT
print/ted/pkg/DESCR
print/ted/pkg/MESSAGE
print/ted/pkg/PLIST

13 years agoremove zope*-Silva. The asterisk breaks pkglint and I can't find the package anyway.
zafer [Sun, 3 Apr 2011 22:31:37 +0000 (22:31 +0000)]
remove zope*-Silva. The asterisk breaks pkglint and I can't find the package anyway.

13 years agoadd LICENSE, update HOMEPAGE
zafer [Sun, 3 Apr 2011 22:23:47 +0000 (22:23 +0000)]
add LICENSE, update HOMEPAGE

13 years agowhitespace cosmetics
zafer [Sun, 3 Apr 2011 22:10:35 +0000 (22:10 +0000)]
whitespace cosmetics

13 years agoRepo copy files
repo-copy [Sun, 3 Apr 2011 20:03:20 +0000 (20:03 +0000)]
Repo copy files

13 years agoFixup fromcvs/togit conversion
pkgsrc fixup [Sun, 3 Apr 2011 20:03:19 +0000 (13:03 -0700)]
Fixup fromcvs/togit conversion

13 years agoFix build with png-1.5.
wiz [Sun, 3 Apr 2011 16:38:41 +0000 (16:38 +0000)]
Fix build with png-1.5.

13 years agoStart fixing for png-1.5, incomplete.
wiz [Sun, 3 Apr 2011 15:26:36 +0000 (15:26 +0000)]
Start fixing for png-1.5, incomplete.

13 years agoSet LICENSE.
wiz [Sun, 3 Apr 2011 15:26:26 +0000 (15:26 +0000)]
Set LICENSE.

13 years agoUpdated emulators/suse113_libxml2 to 11.3nb2
chs [Sun, 3 Apr 2011 14:03:06 +0000 (14:03 +0000)]
Updated emulators/suse113_libxml2 to 11.3nb2

13 years agoupdate to libxml2-2.7.7-4.5.1, fixes CVE-2010-4494.
chs [Sun, 3 Apr 2011 14:02:51 +0000 (14:02 +0000)]
update to libxml2-2.7.7-4.5.1, fixes CVE-2010-4494.

13 years agoUpdated emulators/suse113_openssl to 11.3nb3
chs [Sun, 3 Apr 2011 14:02:19 +0000 (14:02 +0000)]
Updated emulators/suse113_openssl to 11.3nb3

13 years agoupdate to libopenssl1_0_0-1.0.0-6.7.1, fixes CVE-2011-0014.
chs [Sun, 3 Apr 2011 14:01:36 +0000 (14:01 +0000)]
update to libopenssl1_0_0-1.0.0-6.7.1, fixes CVE-2011-0014.

13 years agoFix build with png-1.5.
wiz [Sun, 3 Apr 2011 13:47:01 +0000 (13:47 +0000)]
Fix build with png-1.5.

13 years ago* MAKE_JOBS_SAFE=no
obache [Sun, 3 Apr 2011 13:43:18 +0000 (13:43 +0000)]
* MAKE_JOBS_SAFE=no
* marked as destdir installation suuport.

13 years ago+ ImageMagick-6.6.9.4, calibre-0.7.53, eric4-4.4.13, eric5-5.1.1,
wiz [Sun, 3 Apr 2011 13:31:42 +0000 (13:31 +0000)]
+ ImageMagick-6.6.9.4, calibre-0.7.53, eric4-4.4.13, eric5-5.1.1,
  glib2-2.28.5, gnutls-2.12.1, gtk2-2.24.4, gtk3-3.0.7,
  kanjistrokeorders-ttf-2.016, kdbg-2.5.0, mdds-0.5.2, mercurial-1.8.2,
  nginx-0.9.6, openldap-client-2.4.25, openttd-1.1.0, ortp-0.16.5,
  p5-PerlMagick-6.6.9.4, puzzles-9140, py-gtk2-2.24.0, scmgit-base-1.7.4.3,
  scmgit-docs-1.7.4.3, tea-29.0.0, webmin-1.540, wine-devel-1.3.17,
  x264-devel-20110402.

13 years agoFix build with png-1.5.
wiz [Sun, 3 Apr 2011 11:58:22 +0000 (11:58 +0000)]
Fix build with png-1.5.

13 years agoUpdate PLIST for extra files found on NetBSD/5.1 amd64 from 3.2.6.1
abs [Sun, 3 Apr 2011 11:47:34 +0000 (11:47 +0000)]
Update PLIST for extra files found on NetBSD/5.1 amd64 from 3.2.6.1

13 years agoLink against libgif now that default has changed, and fix build with png-1.5.
wiz [Sun, 3 Apr 2011 11:40:08 +0000 (11:40 +0000)]
Link against libgif now that default has changed, and fix build with png-1.5.