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


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




switch to index mode

recent branches: MAIN (1h)  pkgsrc-2024Q1 (15d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (75d)  pkgsrc-2023Q3 (154d) 

2024-05-13 13:15:07 UTC Now

2013-06-04 21:24:02 UTC MAIN commitmail json YAML

Updated textproc/xapian to 1.2.15

(schmonz)

2013-06-04 21:17:17 UTC MAIN commitmail json YAML

2013-06-04 18:52:08 UTC MAIN commitmail json YAML

Updated devel/meld to 1.7.3

(wiz)

2013-06-04 18:51:59 UTC MAIN commitmail json YAML

Update to 1.7.3:

2013-5-4 meld 1.7.3
====================

  Features:

    * Support launching conflict comparisons from Subversion (Louis des
      Landes)
    * The external text editor setting now supports opening files at a
      particular line number (Konstantin Starojitski)

    * A host of minor improvements to the version control UI, including:
      * Add a new Push action for VC modules, currently supported in Git (Kai
        Willadsen)
      * Show a summary of unpushed commits, currently supported in Git (Kai
        Willadsen)
      * Reworked commit dialog, including more details about files to be
        committed and more useful previous-log selection (Kai Willadsen)
      * Console output for VC comparisons is now formatted to better
        distinguish commands, output and errors (Kai Willadsen)
      * Support better sensitivity handling in VC comparisons, currently
        implemented by Git (Kai Willadsen)

    * Sundry minor UI improvements:
      * Much HIG-ification and better wording for actions, dialogs and
        labels (Kai Willadsen, with diligent bug reporting from Adam Dingle)
      * Make columns user-resizable in version control and folder comparisons
        (Kai Willadsen)
      * There is now a Save All action, to save all modified files in the
        current comparison (Kai Willadsen)
      * Rather than giving up on long inline-highlighting comparisons, Meld
        now prompts to continue the comparison (Kai Willadsen)
      * F5 is now a additional shortcut for Refresh (Kai Willadsen)
      * Reload has been renamed to Revert and its UI has been improved for
        file comparisons (Kai Willadsen)

  Fixes:

    * Version control updates and miscellaneous fixes (Dominique Leuenberger,
      Louis des Landes, Timothy Babych, Kai Willadsen)
    * When guessing file types for syntax highlighting, we now use file
      contents as well as extension (Kai Willadsen)
    * Prev/Next Change navigation now centres changes slightly more
      aggressively (Kai Willadsen)

  Translations:
    * Daniel Mustieles (es)
    * Gabor Kelemen (hu)
    * Inaki Larranaga Murgoitio (eu)
    * Jiro Matsuzawa (ja)
    * Marek Černocký (cs)
    * Martin Srebotnjak (sl)
    * Matej Urbančič (sl)
    * Pere Orga (ca)
    * Piotr Drąg (pl)
    * Rafael Ferreira (pt_BR)
    * Мирослав Николић (sr, sr@latin)

(wiz)

2013-06-04 18:48:48 UTC MAIN commitmail json YAML

Fixed build with perl-5.18's pod2man, and sent patch upstream.

Addresses PR 47887 by David A. Holland.

(wiz)

2013-06-04 18:18:44 UTC MAIN commitmail json YAML

Updated databases/mysql56 to 5.6.12

(adam)

2013-06-04 18:17:25 UTC MAIN commitmail json YAML

Changes 5.6.12:
* mysql_upgrade now verifies that the server version matches the version against which it was compiled, and exits if there is a mismatch. In addiion, a --version-check option permits specifying whether to enable version checking (the default), or disable checking if given as --skip-version-checking.
* Bugs Fixed

(adam)

2013-06-04 18:04:19 UTC MAIN commitmail json YAML

Note update of the "x11-links" package to version 0.76.

(tron)

2013-06-04 18:03:56 UTC MAIN commitmail json YAML

Try to fix the fallout caused by the fix for PR pkg/47882. Part 2:

Bump version number and minimum require version again to make sure that
the correct "freetype2" library is used for builds.

(tron)

2013-06-04 18:02:58 UTC MAIN commitmail json YAML

Try to fix the fallout caused by the fix for PR pkg/47882. Part 1:

Reduce "freetype2" API dependence to version 2.4.5 which is what
NetBSD 6.1 and NetBSD-current ship with. This version is new enough
even for the latest "pango" package.

This fixes problems under NetBSD-current where pkgsrc tried to use
the native "fontconfig" and pkgsrc "freetype2" which doesn't work
very well.

(tron)

2013-06-04 15:16:42 UTC MAIN commitmail json YAML

Override broken "configure" test that doesn't work with Perl 5.18.0
to fix the build of one of the helper scripts.

Bump the package revision because the binary package would have been
incomplete previously.

(tron)

2013-06-04 14:58:46 UTC MAIN commitmail json YAML

Control the dependency on p5-GSSAPI via the 'gssapi' option. Still
on by default, so no PKGREVISION bump.

(schmonz)

2013-06-04 14:55:03 UTC MAIN commitmail json YAML

Add instruction to README at pkg_add or installation time.

(mef)

2013-06-04 13:51:32 UTC MAIN commitmail json YAML

Updated databases/mysql55 to 5.5.32; www/ap2-perl to 2.0.8

(adam)

2013-06-04 13:48:40 UTC MAIN commitmail json YAML

Changes 2.0.8:

Perl 5.16.3's fix for a rehash-based DoS makes it more difficult to invoke
the workaround for the old hash collision attack, which breaks mod_perl's
t/perl/hash_attack.t. Patch from rt.cpan.org 83916 improves the fix
previously applied as revision 1455340.

On Perl 5.17.6 and above, hash seeding has changed, and HvREHASH has
disappeared. Patch to update mod_perl accordingly from rt.cpan.org 83921.

Restore build with Perl 5.8.1, 5.8.2 etc: take care to use
$Config{useithreads} rather than $Config{usethreads}, and supply definitions
of Newx and Newxz as necessary.

On Perl 5.17.9, t/apache/read2.t fails because an "uninitialized value"
warning is generated for the buffer being autovivified. This is because
the sv_setpvn() that's meant to vivify the buffer doesn't perform set
magic; the warning is generated by the immediately following SvPV_force().
Patch to fix this from rt.cpan.org 83922.

Fix t/perl/hash_attack.t to work with Perl 5.14.4, 5.16.3 etc, which
contain a fix for CVE-2013-1667 (memory exhaustion with arbitrary hash
keys). This resolves rt.perl.org 116863, from where the patch was taken.

use APR::Finfo instead of Perl's stat() in ModPerl::RegistryCooker to
generate HTTP code 404 even if the requested filename contains newlines

Remove all uses of deprecated core perl symbols.

Add branch release tag to 'make tag' target

(adam)

2013-06-04 13:31:21 UTC MAIN commitmail json YAML

Changes 5.5.32:
* mysql_upgrade now verifies that the server version matches the version against which it was compiled, and exits if there is a mismatch. In addiion, a --version-check option permits specifying whether to enable version checking (the default), or disable checking if given as --skip-version-checking.
* Bugs Fixed

(adam)

2013-06-04 13:05:22 UTC MAIN commitmail json YAML

Updated x11/gtk2 to 2.24.17nb3

(obache)

2013-06-04 13:04:40 UTC MAIN commitmail json YAML

enable introspection support for upcoming introspection support for webkit-gtk.

Bump PKGREVISION.

(obache)

2013-06-04 10:16:00 UTC MAIN commitmail json YAML

2013-06-04 09:40:40 UTC MAIN commitmail json YAML

Updated devel/p5-Test-BDD-Cucumber to 0.15

(schmonz)

2013-06-04 09:40:33 UTC MAIN commitmail json YAML

Update to 0.15. From the changelog:

- pherkin now accepts an output type via -o, eg:
    pherkin -o TestBuilder ; pherkin -o TermColor
  This is a partial solution to:
    https://github.com/sheriff/test-bdd-cucumber-perl/issues/8

- Use the original verb that the test file used
  https://github.com/sheriff/test-bdd-cucumber-perl/issues/9

- Actually apply the Test::Builder 1.5 stuff

- Command-line options for pherkin thanks to cursork

- Reintroduced the "auto_corpus" tests, and made them work

(schmonz)

2013-06-04 09:32:36 UTC MAIN commitmail json YAML

Updated net/openresolv to 3.5.5

(roy)

2013-06-04 09:32:03 UTC MAIN commitmail json YAML

Update to openresolv-3.5.5

Highlights include:
* IPv6 support
* Sending IPv6 namesevers to dnsmasq through DBus
* Slackware supported
* systemd support
* Many fixes

(roy)

2013-06-04 09:21:42 UTC MAIN commitmail json YAML

Updated devel/lua-filesystem to 1.6.2

(fhajny)

2013-06-04 09:21:26 UTC MAIN commitmail json YAML

Update lua-filesystem to 1.6.2.

Version 1.6.2 [??/Oct/2012]
        * Full Lua 5.2 compatibility (with Lua 5.1 fallbacks)

Version 1.6.1 [01/Oct/2012]
        * fix build for Lua 5.2

Version 1.6.0 [26/Sep/2012]
        * getcwd fix for Android
        * support for Lua 5.2
        * add lfs.link
        * other bug fixes

(fhajny)

2013-06-04 08:04:21 UTC MAIN commitmail json YAML

The API dependency shouldn't contain a package revision.

(tron)

2013-06-04 07:57:21 UTC MAIN commitmail json YAML

Updated x11/libX11 to 1.6.0

(wiz)

2013-06-04 07:57:13 UTC MAIN commitmail json YAML

Update to 1.6.0:

Changes since libX11 1.5 (found in the release candidates) include fixes
for the recently announced security issues CVE-2013-1981, CVE-2013-1997,
and CVE-2013-2004; the addition of the _XEatDataWords API for use by
Xlib-based extension libraries, to help them avoid integer overflows when
it is necessary to discard data; removal of ancient, unused, incomplete
support for the Cray Unicos OS, and the DECnet and TLI transport types;
numerous improvements to compose files and locale data; man page macro
cleanups to improve compatibility with doclifter; and various other
code cleanups and compiler warning fixes.

Alan Coopersmith (1):
      libX11 1.6.0

Thomas Klausner (2):
      XCreateGC man page: Avoid .TS H and .TH macros
      cmsMath.c: Add missing stdio header for printf(3) in DEBUG build.

(wiz)

2013-06-04 07:50:06 UTC MAIN commitmail json YAML

Remove unused file.
(The package only installs a loadable module, so it should never be necessary.)

(wiz)

2013-06-04 07:45:01 UTC MAIN commitmail json YAML

2013-06-04 07:38:50 UTC MAIN commitmail json YAML

2013-06-04 07:35:15 UTC MAIN commitmail json YAML

Replace py-readline/buildlink3.mk with DEPENDS.

There are no buildlink3-relevant files here, just a loadable module.

(wiz)

2013-06-04 07:13:13 UTC MAIN commitmail json YAML

Updated x11/xterm to 293nb2

(wiz)

2013-06-04 07:13:04 UTC MAIN commitmail json YAML

desktop-file-utils dependency is not needed, since the installed
desktop file has no MimeType key, says obache.

Bump PKGREVISION.

(wiz)

2013-06-04 06:40:44 UTC MAIN commitmail json YAML

Updated textproc/icu to 51.2

(adam)

2013-06-04 06:39:45 UTC MAIN commitmail json YAML

Changes 51.2:
Bug fixes:
* fix for enumset.h not being installed on Windows
* zOS pkgdata fix
* Test fixes
* Region enumeration fix
* make stable sort faster
* host failures for DateFormatTest
* LayoutEngine security patches (see above)
* ubrk fix for word_POSIX infinite loop
* fix memory leak/crash in LayoutEngine
* fix header guard typo in layout/TibetanReordering.h

(adam)

2013-06-04 04:46:12 UTC MAIN commitmail json YAML

-xf86-video-suncg3 -xf86-video-suncg14 -xf86-video-sunffb; imported to x11/

(rodent)

2013-06-04 04:43:58 UTC MAIN commitmail json YAML

Updated meta-pkgs/modular-xorg-drivers to 1.14

(rodent)

2013-06-04 04:43:38 UTC MAIN commitmail json YAML

+xf86-video-suncg3 +xf86-video-suncg14 +xf86-video-sunffb; Bump PKGVERSION;
CATEGORIES+=-drivers (not a category);

(rodent)

2013-06-04 03:35:29 UTC MAIN commitmail json YAML

+xf86-video-sunffb

(rodent)

2013-06-04 03:34:44 UTC MAIN commitmail json YAML

Added x11/xf86-video-sunffb version 1.2.2

(rodent)

2013-06-04 03:34:23 UTC MAIN commitmail json YAML

2013-06-04 03:25:01 UTC MAIN commitmail json YAML

+xf86-video-suncg14

(rodent)

2013-06-04 03:24:10 UTC MAIN commitmail json YAML

Added x11/xf86-video-suncg14 version 1.1.2

(rodent)

2013-06-04 03:23:56 UTC MAIN commitmail json YAML

2013-06-04 02:25:07 UTC MAIN commitmail json YAML

+xf86-video-suncg3

(rodent)

2013-06-04 02:22:50 UTC MAIN commitmail json YAML

Added x11/xf86-video-suncg3 version 1.1.2

(rodent)

2013-06-04 02:21:44 UTC MAIN commitmail json YAML

Import xf86-video-suncg3-1.1.2 as x11/xf86-video-suncg3.

CG3 video driver for the Xorg X server.

(rodent)

2013-06-04 00:55:14 UTC MAIN commitmail json YAML

Updated sysutils/dd_rescue to 1.33

(mef)

2013-06-04 00:47:47 UTC MAIN commitmail json YAML

Bump dd_rescue Version 1.23 to 1.33
-------------------------
Version 1.33, released 2013-03-30.
  It brings long options, a new double overwrite mode (-2) and
  a man page.

Version 1.32
  has a new option -x to append to the output file
  and you can specify -Y (multiple times if you wish so) to
  write the same data to secondary output files.

Version 1.31 (2013-02-03)
  brought a few tiny improvements in the output (such as
  displaying the total elapsed time in the summary as opposed to
  ETA of 0, and the amount of data really written with option
  -W). But importantly, it has the new mode of triple
  overwriting of data (options -3 and -4), with random numbers,
  inverse random numbers, new random numbers (only for -4) and
  zeros, this way allowing paranoia-safe deletion of
  information.

Version 1.30 (2013-01-25)
  brought a fix for outputting data to stdout and a fix for a
  possible double free operation (introduced in 1.29). The
  message formatting has been streamlined a bit. The PRNG can
  now be initialized from a file (e.g. -Z /dev/urandom). The
  program now can also avoid writing to a target block if the
  target block already has the same data (option -W). Think of
  SSDs or other devices where you want to avoid writes.

In Version 1.29 (2013-01-22)
  a bug was fixed, where the last bytes where not copied
  corrected if hardbs == softbs. 1.29 also brings a number of
  new features; the ability to write the same (softbs sized)
  block again and again (option -R, automatically set if infile
  is /dev/zero), the ability to limit transfer size such that
  the outfile won't be enlarged (-M) and the possibility to use
  userspace random numbers (libc/frandom) to fill files with
  random data (options -z and -Z). Last not least, OBS also
  builds .deb binaries for Ubu12.04 / Deb6 now.

Version is 1.28 (released 2012-05-19)
  uses better defaults for hard and softblock sizes (4k/64k
  for buffered I/O, 512/1M for direct IO), as suggested by Jan
  Kara. Also the copying of access times with the option -p
  was fixed.

Version 1.27
  allowed to do 512b direct IO (which is possible in latest
  Linux kernels) -- idea and patch from Jan Kara. Change
  posix_memalign() variable assignment. It has a number of
  fixes from Valentin Lab; most importantly, when exiting
  because of an error, it updates the variables that are
  output. dd_rescue now avoid specal characters in the
  logfile. It handles situations gracefully, where wrong
  positions resulted in the progress graph causing
  faults. Some come from illegal input (negative offset ...),
  which is nw detected.

Version 1.25
  contains a fix for spurious "Success" messages that resulted
  from overwritten (cleared) errno. Bad blocks are formatted
  in a way that they are not overwritten on screen and block
  numbers are output as unsigned.

Version 1.24
  contains a compile fix for Linux versions that contain the
  splice syscall but not the other definitions. I also allows
  for specifying a directory (such as ".") as output filename
  in which case dd_rescue just appends the input file basename
  to it, just like cp does. Maybe most importantly, the RPM
  now contains the latest version of dd_rhelp (0.1.2).
VS: ----------------------------------------------------------------------

(mef)

2013-06-03 23:27:14 UTC MAIN commitmail json YAML

Make PKGSRC_SETENV sanitize the environment.

(riastradh)

2013-06-03 21:22:33 UTC MAIN commitmail json YAML

Added devel/openrcs version 20110824192219

(asau)

2013-06-03 21:21:40 UTC MAIN commitmail json YAML

2013-06-03 21:18:29 UTC MAIN commitmail json YAML

2013-06-03 15:41:34 UTC MAIN commitmail json YAML

Note update of the "x11-links" package to version 0.75.

(tron)

2013-06-03 15:41:14 UTC MAIN commitmail json YAML

Bump version to 0.75 and require at least this version to make sure that
this package picks up the new minimum versions of the "freetype2"
and "fontconfig" packages.

(tron)

2013-06-03 15:23:44 UTC MAIN commitmail json YAML

Bump the required API version as well to enforce the new version
at build time.

(tron)

2013-06-03 15:23:14 UTC MAIN commitmail json YAML

Update PHP53_VERSION and PHP54_VERSION.  It should be updated with
last update of php53/php54.

(taca)

2013-06-03 15:18:40 UTC MAIN commitmail json YAML

Bump the required API version as well to enforce the new version
at build time.

(tron)

2013-06-03 14:19:47 UTC MAIN commitmail json YAML

Updated sysutils/libpciaccess to 0.13.1nb3

(wiz)

2013-06-03 14:19:38 UTC MAIN commitmail json YAML

Fixes from Chuck Silvers <chuq@chuq.com> based on openbsd_pci.c.
Bump PKGREVISION.

(wiz)

2013-06-03 11:54:42 UTC MAIN commitmail json YAML

2013-06-03 11:50:29 UTC MAIN commitmail json YAML

Added entries for my updates to the meta-pkgs/modular-xorg-* packages.

(rodent)

2013-06-03 11:22:12 UTC MAIN commitmail json YAML

2013-06-03 11:21:18 UTC MAIN commitmail json YAML

Added sysutils/spice-protocol version 0.12.5

(rodent)

2013-06-03 11:21:03 UTC MAIN commitmail json YAML

2013-06-03 11:17:15 UTC MAIN commitmail json YAML

Set as BROKEN on Linux due to non-ASCII PLIST and thus problem with
libarchive on glibc systems.

(rodent)

2013-06-03 11:16:16 UTC MAIN commitmail json YAML

Set as BROKEN on Linux due to non-ASCII PLIST and thus a problem with
libarchive on glibc systems.

(rodent)

2013-06-03 10:23:33 UTC MAIN commitmail json YAML

2013-06-03 10:06:28 UTC MAIN commitmail json YAML

2013-06-03 10:05:17 UTC MAIN commitmail json YAML

revert unintended commit

(wiz)

2013-06-03 08:45:28 UTC MAIN commitmail json YAML

2013-06-03 08:22:59 UTC MAIN commitmail json YAML

This packages needs a Fortran 95 compiler to build, Fortran 77 is not
good enough.

(tron)

2013-06-03 08:13:22 UTC MAIN commitmail json YAML

Updated sysutils/cdrtools to 3.01alpha15

(wiz)

2013-06-03 08:13:13 UTC MAIN commitmail json YAML

Update to 3.01a15:

All:

- Due to an incorrect message from last release, here is corrected
information on when a Linux installation is potentially dangerous:

New autoconf tests for sys/capability.h and cap_*() functions
from Linux -lcap

WARNING: If you do not see this:

checking for sys/capability.h... yes

...

checking for cap_get_proc in -lcap... yes
checking for cap_get_proc... yes
checking for cap_set_proc... yes
checking for cap_set_flag... yes
checking for cap_clear_flag... yes

your Linux installation is insecure in case you ever use the
command "setcap" to set up file capabilities for executable commands.

Note that cdrtools (as any other command) need to be capabylity aware
in order to avoid security leaks with enhanced privileges. In most
cases, privileges are only needed for a very limited set of operations.
If cdrtools (cdrecord, cdda2wav, readcd) are installed suid-root, the
functions to control privileges are in the basic set of supported
functions and thus there is no problem for any program to control it's
privileges - if they have been obtained via suid root, you are on a
secure system.

If you are however on an incomplete installation, that supports to
raise privileges via fcaps but that does not include developer support
for caps, the programs get the privileges without being able to know
about the additional privileges and thus keep them because they cannot
control them.

WARNING: If you are on a Linux system that includes support for
fcaps (this is seems to be true for all newer systems with
Linux >= 2.6.24) and there is no development support for capabilities
in the base system, you are on an inherently insecure system that allows
to compile and set up programs with enhanced privileges that cannot
control them.

In such a case, try to educate the security manager for the related
Linux distribution. Note that you may turn your private installation
into a secure installation by installing development support for libcap.

- WARNING: the include structure of include/schily/*.h and several sources
has been restructured to cause less warnings with older OS platforms.
If you see any new problem on your personal platform, please report.

- New includefiles:

schily/poll.h Support poll()
schily/stdarg.h An alias to schily/varargs.h (but using the std name)
schily/sunos4_proto.h Missing prototypes for SunOS-4.x to make gcc quiet
schily/timeb.h Needed for users of ftime()

- Many minor bug-fixes for the files include/schily/*.h

- include/schily/archconf.h now defines __SUNOS5 for easier coding

- include/schily/priv.h now defines platform independent fine grained privileges

- Updated README.compile:

Some typo patches from Jan Engelhardt <jengelh@inai.de>

Documented the "LINKMODE=" macro to explain how to create dynamically
linked bynaries.

Libschily:

- Added #include <schily/libport.h> to libschily/fnmatch.c

Libedc (Optimized by J�rg Schilling, originated by Heiko Ei゚feldt heiko@hexco.de):

- Added #include <schily/libport.h>

Libdeflt:

- Added #include <schily/libport.h>

Libfind:

- dirname -> dir_name to avoid a gcc warning

Libhfs_iso:

- Rename variable "utime" to "uxtime" to avoid a compiler warning

Libscg:

- Repositioned #ifdefs to avoid unused variable definitions in
libscg/scsi-sun.c

- libscg/scsi-linux-ata.c now aborts early if errno == EPERM. This now
makes it behave like libscg/scsi-linux-sg.c

- A new scg flag SCGF_PERM_PRINT tells libscg to print a more verbose error
in case that a SCSI comand was aborted with errno == EPERM.

Cdrecord:

- Allow to compile without Linux libcap using "smake COPTX=-DNO_LINUX_CAPS LIB_CAP="

- Cdrecord now checks whether there are sufficient fine grained privileges.

- Cdrecord now uses the new flag SCGF_PERM_PRINT to get better warnings if the
permissions granted by the OS are not sufficient.

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

- Include file reordering to avoid warnings on older platforms

- Allow to compile without Linux libcap using "smake COPTX=-DNO_LINUX_CAPS LIB_CAP="

- Repositioned #ifdefs to avoid unused variable definitions in
cdda2wav/sndconfig.c

- Cdda2wav now checks whether there are sufficient fine grained privileges.

- Work around a bug in sys/param.h FreeBSD-9.1, that #define's __FreeBSD_kernel__
instead of #define __FreeBSD_kernel__ 9 that would be needed for Debian
k-FreeBSD compatibility.
The bug affects cdda2wav/mycdrom.h

Readcd:

- Allow to compile without Linux libcap using "smake COPTX=-DNO_LINUX_CAPS LIB_CAP="

- Readcd now checks whether there are sufficient fine grained privileges.

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

- Make mkisofs compile without -DUDF and without -DDVD_VIDEO
Thanks to a hint from rmd4work@mail.ru

(wiz)

2013-06-03 08:04:56 UTC MAIN commitmail json YAML

This packages needs a Fortran 95 compiler to build, Fortran 77 is not
good enough.

(tron)

2013-06-03 02:35:50 UTC MAIN commitmail json YAML

-xf86-input-acecad -xf86-input-penmount -xf86-video-fbdev
-xf86-video-newport; imported to HEAD.

(rodent)

2013-06-03 02:28:18 UTC MAIN commitmail json YAML

+xf86-input-acecad +xf86-input-penmount +xf86-video-fbdev
+xf86-video-newport; Bump PKGVERSION;

(rodent)

2013-06-03 01:36:12 UTC MAIN commitmail json YAML

+xf86-video-newport

(rodent)

2013-06-03 01:35:40 UTC MAIN commitmail json YAML

Added x11/xf86-video-newport version 0.2.4

(rodent)

2013-06-03 01:35:22 UTC MAIN commitmail json YAML

Import xf86-video-newport-0.2.4 as x11/xf86-video-newport.

This is an unaccelerated driver for the SGI newport cards (a.k.a. XL) as found
in the SGI Indy and Indigo2. Both the 8bit and 24bit versions are tested and
working.

(rodent)

2013-06-03 00:49:22 UTC MAIN commitmail json YAML

2013-06-03 00:48:38 UTC MAIN commitmail json YAML

Added x11/xf86-video-fbdev version 0.4.3

(rodent)

2013-06-03 00:48:23 UTC MAIN commitmail json YAML

2013-06-03 00:23:48 UTC MAIN commitmail json YAML

+xf86-input-penmount

(rodent)

2013-06-03 00:22:35 UTC MAIN commitmail json YAML

Added x11/xf86-input-penmount version 1.5.0

(rodent)

2013-06-03 00:22:18 UTC MAIN commitmail json YAML

Import xf86-input-penmount-1.5.0 as x11/xf86-input-penmount.

PenMount input driver for the Xorg X server.

(rodent)

2013-06-02 22:52:15 UTC MAIN commitmail json YAML

Back out all of the C++11 related patches. They don't only break the
build under Mac OS X but also under NetBSD/amd64 6.1 with the default
G++ compiler.

This fixes PR pkg/47873 by myself.

(tron)

2013-06-02 21:58:01 UTC MAIN commitmail json YAML

+xf86-input-acecad

(rodent)

2013-06-02 21:57:02 UTC MAIN commitmail json YAML

Added x11/xf86-input-acecad version 1.5.0

(rodent)

2013-06-02 21:56:42 UTC MAIN commitmail json YAML

Import xf86-input-acecad-1.5.0 as x11/xf86-input-acecad.

Acecad Flair input driver for the Xorg X server.

(rodent)

2013-06-02 18:17:05 UTC MAIN commitmail json YAML

Updated lang/gcc48 to 4.8.1; games/scummvm to 1.6.0

(adam)

2013-06-02 18:13:24 UTC MAIN commitmail json YAML

Changes 1.6.0:
New Games:
  - Added support for 3 Skulls of the Toltecs.
  - Added support for Eye of the Beholder.
  - Added support for Eye of the Beholder II: The Legend of Darkmoon.
  - Added support for Hopkins FBI.
  - Added support for Tony Tough and the Night of Roasted Moths.
  - Added support for The Journeyman Project: Pegasus Prime.
  - Added support for the Macintosh version of Discworld 1.

General:
  - Added a new save/load chooser based on a grid of thumbnails. This is only
    supported for resolutions bigger than 640x400. The old chooser is still
    available and used for games without thumbnail support. It is possible to
    select the old one as default too.
  - Rewrote VideoDecoder subsystem.
  - Added Galician translation.
  - Added Finnish translation.
  - Added Belarusian translation.
  - Using the mouse wheel on a slider widget now changes the value by the
    smallest possible amount. This is more predictable than the old behaviour,
    which was to change the value by "one pixel" which would sometimes not
    change it at all.
  - Updated MT-32 emulation code to latest munt project snapshot.
  - Added FluidSynth settings dialog, mainly for reverb and chorus settings.
  - Fixed crash on certain Smacker movies.

(adam)

2013-06-02 18:12:22 UTC MAIN commitmail json YAML

Changes 4.8.1:
This release is a bug-fix release, containing fixes for regressions in GCC 4.8.0 relative to previous releases of GCC.

(adam)

2013-06-02 17:35:07 UTC MAIN commitmail json YAML

Update misc/rump to 20130602

(stacktic)

2013-06-02 17:33:58 UTC MAIN commitmail json YAML

Update misc/rump to 20130602 - Fix for Solaris

(stacktic)

2013-06-02 15:32:03 UTC MAIN commitmail json YAML

Fix sun-jre-jce option.

Pointed out by taca@, thank you.

(ryoon)

2013-06-02 14:28:56 UTC MAIN commitmail json YAML

+ ImageMagick-6.8.5.9, Mesa-9.1.3, akonadi-1.9.2, cdrtools-3.01a15,
  efax-gtk-3.2.12, gcc48-4.8.1, gimp-docs-en-2.8.0, gnutls-3.2.1,
  harfbuzz-0.9.18, nspr-4.10, openttd-1.3.1, pinentry-0.8.3,
  py-dateutil-2.0, scummvm-1.6.0, subversion-base-1.7.10,
  x264-devel-20130601, xine-1.2.3.

(wiz)

2013-06-02 14:23:29 UTC MAIN commitmail json YAML

Updated devel/py-distribute to 0.6.45

(wiz)

2013-06-02 14:23:20 UTC MAIN commitmail json YAML

Update to 0.6.45:

------
0.6.45
------

* Issue #379: ``distribute_setup.py`` now traps VersionConflict as well,
  restoring ability to upgrade from an older setuptools version.

------
0.6.44
------

* ``distribute_setup.py`` has been updated to allow Setuptools 0.7 to
  satisfy use_setuptools.

(wiz)

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

Updated textproc/mdoclint to 1.21

(wiz)

2013-06-02 11:58:36 UTC MAIN commitmail json YAML

Remove "my" before $_, since perl 5.18 complains about it.

(wiz)

2013-06-02 11:27:33 UTC MAIN commitmail json YAML

Remove cvsps3-3.10.

(ryoon)

2013-06-02 11:25:26 UTC MAIN commitmail json YAML

Updated lang/newlisp to 10.5.0

(ryoon)

2013-06-02 11:24:56 UTC MAIN commitmail json YAML

Update to 10.5.0

Changelog:
10.4.7
    Eliminate unused JSON error message.

    Elminated usage of $0 in replace on lists (no regular expressions). The count
    of replacements now is contained in the new $count system var, not $0. The usage
    of $0 - $15 now is strictly for regular expressions. This also speeds up replace.

    read-expr now uses $count instead of $0 for the number of characters processed.

    Eliminated undocumented usage of $0 for found elements in find-all on lists.
    Only $it is used. $0 only on find-all on strings with regular expressions.
    The system variable $count is updated for all forms of find-all, ref-all and
    set-ref-all.

    Link feature now built in with comandline flag -x for all OS flavors:
        newlisp -x <source-file> <executable-file>
    The file util/link.lsp is not required anymore but has been included and
    adapted to changes for the -x linkage. The file illustrates the internals
    of the linkage process when using the -x option.

    An additional true flag in the real-path function allows finding the executable
    path of executables - similar to the "which" utility on UNIX. This is a by-
    product of fixing the link.lsp feature for UNIX. The additional flag works
    on all platforms. 'real-path' on Windows and BSD now also veryfies that path
    and file are valid, as it already did on non-BSD Unix (OSX, Linux).

    Enforce MAX_SYMBOL for tags in xml-parse and symbol creation using sym.

    Security fixes for strncpy and strncat.

    Windows CGI server mode was broken in development version 10.4.6 (isDir()).

    Preparation for 64-bit Windows (in early summer).

10.4.8
    Cleanup of the factor function.

    Like date-parse, date-value will produce negative values for dates before 1970-1-1
    til 1901-12-14.

    The function 'flat' now can take an optioal depth parameter to limit flattening
    a list up to certain level: (flat <list> [<level>])

        (flat '(1 2 (3 4 (5 6)) (7 8 (9 10)))  ) => (1 2 3 4 5 6 7 8 9 10)
        (flat '(1 2 (3 4 (5 6)) (7 8 (9 10))) 1) => (1 2 3 4 (5 6) 7 8 (9 10))
        (flat '(1 2 (3 4 (5 6)) (7 8 (9 10))) 2) => (1 2 3 4 5 6 7 8 9 10)

    A fix for 'extend' when passing wrong type to unitialized symbol.

    A fix in the parser to accept -.9 as -0.9 or +.9 as +0.9

    =, +, -, *, /, %, ++, --, >, <, <=, >=, !=  operators and the functions 'abs',
    'even?', 'odd?', 'length', 'number?' and 'zero?' are all working on big-integers
    of unlimited size. 'float' and 'int' convert bigints into double floats and
    64-bit integers and the function 'bigint' converts integers and floats to big
    integers. See the section "Big integer, unlimited precision arithmetik" in
    chapter 8. of the Users Manual for more information.

    Extended commandline buffer to 1024 bytes.

    The "debug" option in: (get-url "http://newlisp.org" "header debug") will now also
    output the status header line of the server response in the console.

10.5.0 Stable Release May 21st, 2013
    Further speed improvements on big integer multiplication and division/modulus.

    Check for division by zero in big integer division/modulus.

    Memory fix for ++, -- on big integers.

    The OSX Intel version is now 64-bit by default.

(ryoon)

2013-06-02 11:08:29 UTC pkgsrc-2013Q1 commitmail json YAML

2013-06-02 11:07:36 UTC pkgsrc-2013Q1 commitmail json YAML

Pullup ticket #4148 - requested by tron
www/apache22: security patch

Revisions pulled up:
- www/apache22/Makefile                                        1.88
- www/apache22/distinfo                                        1.55
- www/apache22/patches/patch-modules_mappers_mod_rewrite.c      1.3

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: tron
  Date: Thu May 30 22:58:15 UTC 2013

  Modified Files:
  pkgsrc/www/apache22: Makefile distinfo
  Added Files:
  pkgsrc/www/apache22/patches: patch-modules_mappers_mod_rewrite.c

  Log Message:
  Add Apache developer fix for security vulnerability reported
  in CVE-2013-1862.

  To generate a diff of this commit:
  cvs rdiff -u -r1.87 -r1.88 pkgsrc/www/apache22/Makefile
  cvs rdiff -u -r1.54 -r1.55 pkgsrc/www/apache22/distinfo
  cvs rdiff -u -r0 -r1.3 \
      pkgsrc/www/apache22/patches/patch-modules_mappers_mod_rewrite.c

(spz)

2013-06-02 08:29:06 UTC MAIN commitmail json YAML

seamonkey configure wants higher versions for nspr and nss

(spz)

2013-06-02 08:01:44 UTC MAIN commitmail json YAML

Updated devel/mercurial to 2.6.2

(wiz)

2013-06-02 08:01:34 UTC MAIN commitmail json YAML

Update to 2.6.2:

This is a regularly-scheduled bugfix release.

    amend: complain more comprehensibly about subrepos
    blackbox: fix blackbox causing exceptions in tests
    blackbox: fix recording exit codes (issue3938)
    dirstate: don't overnormalize for ui.slash
    graft: refuse to commit an interrupted graft (issue3667)
    help: fix role/option confusion in RST
    help: stop documentation markup appearing in generated help

(wiz)

2013-06-02 06:51:08 UTC MAIN commitmail json YAML

more update for R1Alpha4, and let /boot/common/bin as optionlfy.

(obache)

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

Fix build on DragonFly.

The problem is mensioned in PR pkg/47734.

* Disable WebRTC support on DragonFly.
* Add dependency to libv4l on supported platforms.

(ryoon)

2013-06-02 06:16:31 UTC MAIN commitmail json YAML

Updated www/icedtea-web to 1.5pre

(ryoon)

2013-06-02 06:15:44 UTC MAIN commitmail json YAML

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

Updated lang/openjdk7 to 1.7.21

(ryoon)

2013-06-02 06:12:28 UTC MAIN commitmail json YAML

2013-06-02 04:41:39 UTC MAIN commitmail json YAML

Add the ability for a package to disable pbulk multi-package handling.

(sbd)

2013-06-02 03:06:44 UTC MAIN commitmail json YAML

hacked `file' command is not required anymore.

(obache)

2013-06-02 03:04:22 UTC MAIN commitmail json YAML

gmake is not in /bin on Haiku R1Alpha4.

(obache)

2013-06-02 01:48:57 UTC MAIN commitmail json YAML

2013-06-02 01:48:09 UTC MAIN commitmail json YAML

2013-06-02 01:47:54 UTC MAIN commitmail json YAML

Import Python module "tabular" version 0.1 as py-tabular.

Tabular data can be easily represented in Python using the language's
native objects. These representations typically do not support
important tabular data manipulations, like efficient column selection,
matrix mathematics, or spreadsheet-style operations.

Tabular is a package of Python modules for working with tabular
data. Its main object is the tabarray class, a data structure for
holding and manipulating tabular data. By putting data into a tabarray
object, you'll get a representation of the data that is more flexible
and powerful than a native Python representation. Tabarray provides:

. ultra-fast filtering, selection, and numerical analysis methods,
  using convenient Matlab-style matrix operation syntax

. spreadsheet-style operations, including row & column operations,
  'sort', 'replace', 'aggregate', 'pivot', and 'join'

. flexible load and save methods for a variety of file formats,
  including delimited text (CSV), binary, and HTML

. sophisticated inference algorithms for determining formatting
  parameters and data types of input files

(dholland)

2013-06-02 00:10:29 UTC MAIN commitmail json YAML

Add mysql to pbulk multi-package support.

(sbd)

2013-06-01 23:15:54 UTC MAIN commitmail json YAML

Updated games/wesnoth to 1.10.5nb4

(wiz)

2013-06-01 23:15:42 UTC MAIN commitmail json YAML

For some reason, translation files started getting installed (at least
on NetBSD 6.99.20/amd64). Bump PKGREVISION and add them to the PLIST

While here, remove obsolete REPLACE_RUBY line, the script was convert
to python, it seems.

(wiz)

2013-06-01 22:42:49 UTC MAIN commitmail json YAML

Mark this unavailable on NetBSD 6.0+ until such time as someone ports
it to the new module system.

(dholland)

2013-06-01 21:42:55 UTC MAIN commitmail json YAML

Fix install stage error, PR pkg/47734.

* Wrong, noexistrent file is removed and DragonFly's install
  try to overwrite it and failed.

(ryoon)

2013-06-01 19:44:53 UTC MAIN commitmail json YAML

Fixed typo in documentation.

(rillig)

2013-06-01 19:31:52 UTC MAIN commitmail json YAML

2013-06-01 15:58:01 UTC MAIN commitmail json YAML

2013-06-01 15:45:21 UTC MAIN commitmail json YAML

Update misc/rump and filesystems/fs-utils to 20130601

(stacktic)

2013-06-01 15:43:47 UTC MAIN commitmail json YAML

2013-06-01 15:42:03 UTC MAIN commitmail json YAML

Update misc/rump to 20130601 - non-NetBSD sockin compatibility

(stacktic)

2013-06-01 14:44:22 UTC MAIN commitmail json YAML

Note update of the "g95" package to version 0.93nb2.

(tron)

2013-06-01 14:44:02 UTC MAIN commitmail json YAML

Create Mac OS X specific package list to ensure that all files get
packaged. Bump package revision because of this fix.

(tron)

2013-06-01 14:32:22 UTC MAIN commitmail json YAML

2013-06-01 14:29:23 UTC MAIN commitmail json YAML

Import paperkey-1.3 as security/paperkey.

Paperkey extracts secret bytes from GnuPG key and prints them. To
reconstruct, you re-enter those bytes (whether by hand or via OCR)
and paperkey can use them to transform your existing public key
into a secret key.

(shattered)

2013-06-01 14:23:06 UTC MAIN commitmail json YAML

Updated net/bftpd to 3.7
Updated sysutils/tpb to 0.6.4
Updated security/avcheck to 0.9.1
Updated cad/dinotrace to 9.4c
Updated cad/dinotrace-mode to 9.4c

(shattered)

2013-06-01 14:05:13 UTC MAIN commitmail json YAML

Update to 9.4c. Changes:

Dinotrace is now distributed under GPL v3 (previously GPL 2).

Fix signal radix being lost when trace is reread.
Fix core dump when verilog trace has single timestamp.
Fix core dump when no hostname in /etc/hosts.
Fix message trashing stack and make cppcheck clean.

(shattered)

2013-06-01 14:04:12 UTC MAIN commitmail json YAML

Updated devel/rcs to 5.9.0nb1

(ryoon)

2013-06-01 14:03:33 UTC MAIN commitmail json YAML

Bump PKGREVISION.

Fix build on Solaris 10, PR pkg/47865.

* Do not make man pages, use shipped version.
  Generating man pages required groff's soelim and pic.
* Use pdksh for build-aux/extract-help script.
  Solaris's /bin/sh does not work properly with it.

(ryoon)

2013-06-01 12:50:41 UTC MAIN commitmail json YAML

Note update of the "p5-NetAddr-IP" package to version 4.069.

(tron)

2013-06-01 12:48:26 UTC MAIN commitmail json YAML

Update "p5-NetAddr-IP" package to version 4.069. Changes since 4.066:
- IN Lite.pm v1.50, add =encoding UTF-8
- In Util.pm v1.50
  changed Makefile.PL to check for config.h when building for XS
  with 'gcc', try building with 'cc', and check again.
- If config.h is not found, force Pure Perl mode.
- update Makefile.PL in Util.pm v 1.49 to better detect 'winduhs'
- Improved diagnostic message for "die" with bad mask for
- hostenum, hostenumref, split, splitref, rsplit, rsplitref
- Thanks to GENSYM@cpan.org for pointing out the need.

This also fixes the build with Perl 5.18.0

(tron)

2013-06-01 12:19:30 UTC MAIN commitmail json YAML

2013-06-01 12:18:23 UTC MAIN commitmail json YAML

Update to 0.6.4 (released in 2005). Changes:

add: new supported ThinkPad X40
chg: adjusted poll interval to 200ms, which has a acceptable responsiveness
add: support for udev filesystem
and many bug fixes.

(shattered)

2013-06-01 12:15:54 UTC MAIN commitmail json YAML

Under Mac OS X (Mountain) Lion "packagemaker" is part of the
"PackageMaker" application which resides in "/Applications".

(tron)

2013-06-01 12:13:04 UTC MAIN commitmail json YAML

Update to 3.7. Notable changes:

Default config disables anonymous login.
Directory listing no longer hangs if the directory contains a named pipe.

(shattered)

2013-06-01 11:49:07 UTC MAIN commitmail json YAML

2013-06-01 08:21:58 UTC MAIN commitmail json YAML

Use devel/xulrunner17/xpi.mk instead.
For potential changes.
Now they are same.

(ryoon)

2013-06-01 08:14:33 UTC MAIN commitmail json YAML

catch up to move of xpi.mk.

(obache)

2013-06-01 08:10:43 UTC MAIN commitmail json YAML

Also needs newer fontconfig, says ryoon.

(wiz)

2013-06-01 08:03:55 UTC MAIN commitmail json YAML

pkgsrc/security/openssl/distinfo@1.96 / diff
pkgsrc/security/openssl/patches/patch-doc_apps_cms.pod@1.1 / diff
pkgsrc/security/openssl/patches/patch-doc_apps_smine.pod@1.1 / diff
pkgsrc/security/openssl/patches/patch-doc_crypto_X509__STORE__CTX__get__error.pod@1.1 / diff
pkgsrc/security/openssl/patches/patch-doc_ssl_SSL__COMP__add__compression__method.pod@1.1 / diff
pkgsrc/security/openssl/patches/patch-doc_ssl_SSL__CTX__add__session.pod@1.1 / diff
pkgsrc/security/openssl/patches/patch-doc_ssl_SSL__CTX__load__verify__locations.pod@1.1 / diff
pkgsrc/security/openssl/patches/patch-doc_ssl_SSL__CTX__set__client__CA__list.pod@1.1 / diff
pkgsrc/security/openssl/patches/patch-doc_ssl_SSL__CTX__set__session__id__context.pod@1.1 / diff
pkgsrc/security/openssl/patches/patch-doc_ssl_SSL__CTX__set__ssl__version.pod@1.1 / diff
pkgsrc/security/openssl/patches/patch-doc_ssl_SSL__CTX__use__psk__identity__hint.pod@1.1 / diff
pkgsrc/security/openssl/patches/patch-doc_ssl_SSL__accept.pod@1.1 / diff
pkgsrc/security/openssl/patches/patch-doc_ssl_SSL__clear.pod@1.1 / diff
pkgsrc/security/openssl/patches/patch-doc_ssl_SSL__connect.pod@1.1 / diff
pkgsrc/security/openssl/patches/patch-doc_ssl_SSL__do__handshake.pod@1.1 / diff
pkgsrc/security/openssl/patches/patch-doc_ssl_SSL__read.pod@1.1 / diff
pkgsrc/security/openssl/patches/patch-doc_ssl_SSL__session__reused.pod@1.1 / diff
pkgsrc/security/openssl/patches/patch-doc_ssl_SSL__set__fd.pod@1.1 / diff
pkgsrc/security/openssl/patches/patch-doc_ssl_SSL__set__session.pod@1.1 / diff
pkgsrc/security/openssl/patches/patch-doc_ssl_SSL__shutdown.pod@1.1 / diff
pkgsrc/security/openssl/patches/patch-doc_ssl_SSL__write.pod@1.1 / diff

Fix openssl pod docs to work with the very picky pod2man from perl-5.18.0.

(sbd)

2013-06-01 07:46:43 UTC MAIN commitmail json YAML

Remove characters that perl-5.18's pod2man doesn't like
(the AUTHORS file is included verbatim in the docs).

(wiz)

2013-06-01 07:38:17 UTC MAIN commitmail json YAML

Needs cairo-1.12.10, says prlw1.

(wiz)

2013-06-01 07:35:07 UTC MAIN commitmail json YAML

Updated security/p5-GnuPG-Interface to 0.46

(wiz)

2013-06-01 07:34:58 UTC MAIN commitmail json YAML

Update to 0.46:

0.46 Thu Oct 25 14:04:17 EDT 2012

Add a ->search_keys method
Add a ->version method
Remove dead code for finding gnupg2 binary

(wiz)

2013-06-01 07:24:05 UTC MAIN commitmail json YAML

Updated devel/pango to 1.34.1

(wiz)

2013-06-01 07:23:56 UTC MAIN commitmail json YAML

Update to 1.34.1:

Overview of changes between 1.34.0 and 1.34.1
=============================================
- 96238 - PangoAttrFilterFunc vs pango_attr_list_filter docs
- Update win32/CoreText shaper signature
- Fix CoreText scaling (again)
- Align word breaking with newer Unicode specs

Overview of changes between 1.33.9 and 1.34.0
=============================================
No changes

Overview of changes between 1.33.8 and 1.33.9
=============================================
- Port PangoWin32 to use GWeakRef
- 682846 - Use G_DEFINE_TYPE in pangowin32-fontmap
- Fix scale in pangocairo-threads test
- Misc Win32 build fixes

Overview of changes between 1.33.7 and 1.33.8
=============================================
- 694095 - Fails make check: -pango_cairo_win32_font_map_get_type
- 668154 - GTK+ Crashes on Non BMP utf-8 charpoints
- 694626 - Add pango_font_map_changed
- 694626 - PangoFc: change FontMap in pango_fc_font_map_clear_cache
- 694830 - Fails make check: +pango_font_map_change
- 694918 - Pango layout is misrendered with non-identity transformation
- 694882 - build broken - introspection of pangoxft2 and pangoxft

Overview of changes between 1.32.6 and 1.33.7
=============================================
- Allow enabling font features through fontconfig snipplets
- Fix an infinite loop when starting Inkscape

(wiz)

2013-06-01 07:22:51 UTC MAIN commitmail json YAML

2013-06-01 07:16:53 UTC MAIN commitmail json YAML

Update to 1.0.8:

This release delivers the fixes for the recently announced security issues
CVE-2013-1989 & CVE-2013-2066, plus a couple build configuration changes
and man page fixes.

Adam Jackson (1):
      configure: Remove AM_MAINTAINER_MODE

Alan Coopersmith (6):
      Use _XEatDataWords to avoid overflow of rep.length shifting
      integer overflow in XvQueryPortAttributes() [CVE-2013-1989 1/3]
      buffer overflow in XvQueryPortAttributes() [CVE-2013-2066]
      integer overflow in XvListImageFormats() [CVE-2013-1989 2/3]
      integer overflow in XvCreateImage() [CVE-2013-1989 3/3]
      libXv 1.0.8

Colin Walters (1):
      autogen.sh: Implement GNOME Build API

Thomas Klausner (1):
      Uppercase SH arguments.

(wiz)

2013-06-01 07:16:00 UTC MAIN commitmail json YAML

Updated x11/libXrandr to 1.4.1

(wiz)

2013-06-01 07:15:52 UTC MAIN commitmail json YAML

Update to 1.4.1:

This release brings the fixes for the recently announced security issue
CVE-2013-1986, with some related hardening to avoid other issues, alongside
a couple small build configuration & compiler warning fixes.

Adam Jackson (1):
      configure: Remove AM_MAINTAINER_MODE

Alan Coopersmith (9):
      Constify a couple string arguments that are just copied, not modified
      Replace deprecated Automake INCLUDES variable with AM_CPPFLAGS
      Use _XEatDataWords to avoid overflow of rep.length bit shifting
      integer overflow in XRRQueryOutputProperty() [CVE-2013-1986 1/4]
      integer overflow in XRRQueryProviderProperty() [CVE-2013-1986 2/4]
      integer overflow in XRRGetOutputProperty() [CVE-2013-1986 3/4]
      integer overflow in XRRGetProviderProperty() [CVE-2013-1986 4/4]
      Make XRRGet*Property() always initialize returned values
      libXrandr 1.4.1

Colin Walters (1):
      autogen.sh: Implement GNOME Build API

(wiz)

2013-06-01 06:50:36 UTC MAIN commitmail json YAML

Updated x11/libXext to 1.3.2

(wiz)

2013-06-01 06:50:27 UTC MAIN commitmail json YAML

Update to 1.3.2:

This release provides fixes for the recently announced security issue
CVE-2013-1982, as well as build configuration improvements, man page
macro cleanups to work better with doclifter, and several other small
fixes.

Adam Jackson (1):
      configure: Remove AM_MAINTAINER_MODE

Alan Coopersmith (8):
      Use _XEatDataWords to avoid overflow of rep.length bit shifting
      integer overflow in XcupGetReservedColormapEntries() [CVE-2013-1982 1/6]
      integer overflow in XcupStoreColors() [CVE-2013-1982 2/6]
      several integer overflows in XdbeGetVisualInfo() [CVE-2013-1982 3/6]
      integer overflow in XeviGetVisualInfo() [CVE-2013-1982 4/6]
      integer overflow in XShapeGetRectangles() [CVE-2013-1982 5/6]
      integer overflow in XSyncListSystemCounters() [CVE-2013-1982 6/6]
      libXext 1.3.2

Chase Douglas (1):
      Destroy generic event extension after last display is removed

Colin Walters (1):
      autogen.sh: Implement GNOME Build API

Eric S. Raymond (2):
      Replace various unsafe presentation-level requests with .RS/.RE and .EX/EE.
      Replace presentationm-level requests with .RS/RE.

Peter Hutterer (1):
      sync: fix copy/paste error in comment

Thomas Klausner (1):
      Avoid having macros expand code to be: ((f) ? (f)->m1 : NULL)->m2

(wiz)

2013-06-01 04:47:03 UTC MAIN commitmail json YAML

2013-06-01 03:47:11 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-Size to 0.79

(obache)

2013-06-01 03:46:58 UTC MAIN commitmail json YAML

Update p5-Devel-Size to 0.79, compatibility fix  for perl-5.18.

Revision history for Perl extension Devel::Size.

0.79 2013-05-12 nicholas
[no changes]

0.78_52 2013-05-10 nicholas
* Fix the bug in the previous fix. Oops :-)

0.78_51 2013-05-10 nicholas
* v5.17.1 and later handle CopSTASH differently under ithreads

0.78_50 2013-05-10 nicholas
* Alternative test for CvOUTSIDE, and one for CvPADLIST
* v5.17 changes the type of PADLIST [CPAN #83904]
* stubbed subs no longer have CvOUTSIDE set [CPAN #77913]
* Fix for v5.17.2's OP slab allocator [CPAN #83903]
* Spelling fix to docs from gregor herrmann [CPAN #78766]

(obache)

2013-06-01 02:26:14 UTC MAIN commitmail json YAML

Updated security/p5-Crypt-Twofish to 2.17

(obache)

2013-06-01 02:25:59 UTC MAIN commitmail json YAML

Update p5-Crypt-Twofish to 2.17 for perl-5.18 compatibility fix.

2.16    2013-04-10      Abhijit Menon-Sen <ams@toroid.org>

    * Another attempt to silence cpantesters. No functional changes.

(obache)

2013-05-31 23:25:00 UTC MAIN commitmail json YAML

Note update of emacs-snapshot.

(minskim)

2013-05-31 23:20:18 UTC MAIN commitmail json YAML

2013-05-31 22:53:49 UTC MAIN commitmail json YAML

Updated devel/glib2 to 2.36.2

(prlw1)

2013-05-31 22:53:23 UTC MAIN commitmail json YAML

Update glib2 to 2.36.2

gdbus-codegen has grown a --xml-files option for introspection XML files.

* Bug fixes:
697887 GVariant: fix transfer annotation
699485 tests/mappedfile: Also handle ENOMEM
699493 SOCKS5 proxy code crashes if it cannot authenticate
699500 gbitlock: fix this to not unconditionally use futex emu...
        Fix a hang in pidgin

* Translation updates:
Indonesian
Italian
Lithuanian
Norwegian bokm奪l
Polish
Serbian
Slovenian

(prlw1)

2013-05-31 21:39:39 UTC MAIN commitmail json YAML

Fix xpi.mk inclusion.

Pointed out by wiz@, thank you.

(ryoon)

2013-05-31 20:18:06 UTC MAIN commitmail json YAML

2013-05-31 20:17:55 UTC MAIN commitmail json YAML

Updated lang/tcl to 8.5.14; x11/tk to 8.5.14; x11/p5-Tk to 804.031

(adam)

2013-05-31 20:15:32 UTC MAIN commitmail json YAML

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

2013-05-31 20:14:24 UTC MAIN commitmail json YAML

Also adjust Perl version requirements.
XXX should be killed

(joerg)

2013-05-31 20:13:24 UTC MAIN commitmail json YAML

2013-05-31 20:01:44 UTC MAIN commitmail json YAML

Updated chat/ejabberd to 2.1.12

(fhajny)

2013-05-31 20:01:30 UTC MAIN commitmail json YAML

Update ejabberd to 2.1.12

Changes since 2.1.10:

* Core ejabberd
- Make terms serialization faster
- Reduce size of XML stream state

* Administration
- Add SCRAM and remove MD5 support to ejabberd commands auth verification
- Added command to list all the vhosts registered in an ejabberd node
- Added export2odbc command, copied from mod_admin_extra.erl
- Fix ejabberdctl number of arguments error report with R15
- Check node name is available before starting ejabberd (EJAB-1572)
- Fix ejabberd_xmlrpc commands authentication with SCRAM
- Fix mod_offline:store_offline_msg argument (EJAB-1581)
- Log IP address when auth attempt fails
- Make sure update_info returns atoms only (EJAB-1595)
- On shutdown, first stop listeners, then modules

* Encryption
- Detect OpenSSL version at runtime, not at compile time
- Fixed signedness issue in tls_drv GET_DESCRYPTED_INPUT (EJAB-1591)
- Enable DHE key exchange in TLS driver
- Enable ECDHE key exchange in TSL driver
- Disable old and unsecure ciphers in TLS driver
- Disable SSL 2.0 in TLS driver

* HTTP-Bind
- Do not trigger item-not-found errors in mod_http_bind
- Repeated http-bind request should abort only requests with same rid
- Receiving missing request shouldn't close waiting out-ouf-order request

* XMPP
- Allow multiple fqdn values in configuration (EJAB-1578)
- Fix get_subscription_lists/4
- Fix account registration
- Send announce Message stanzas as Headline type instead of Normal

* Other
- Guide: Fix file name of Name Service Switch
- Guide: Document the db_type modules option (EJAB-1560)
- LDAP: Fix broken JPEG photo (EJAB-1526)
- LDAP: Fix compatibility with Erlang R16A (EJAB-1612)
- MUC: Fix angle brackets handle in plaintext log (EJAB-1610)
- MUC: Fix MUC start when Mnesia tables don't exist yet
- MUC: New mod_muc_log option file_permissions (EJAB-1588)
- ODBC: Merge SQL and Mnesia code into one module (EJAB-1560)
- Translation: New Hebrew
- Translation: Update Slovak

(fhajny)

2013-05-31 15:00:00 UTC MAIN commitmail json YAML

Updated devel/p5-Class-ErrorHandler to 0.02

(schmonz)

2013-05-31 14:59:52 UTC MAIN commitmail json YAML

Update to 0.02. From the changelog:

- Re-packaging without auto_install(). (ANDK)

(schmonz)

2013-05-31 14:42:58 UTC MAIN commitmail json YAML

+ gramps-4.0.0, john-1.8.0, scmgit-1.8.3, telepathy-gabble-0.16.6.
- php-owncloud-5.0.4, tmux-1.8, windowmaker-0.95.2

(wiz)

2013-05-31 14:33:25 UTC MAIN commitmail json YAML

Updated net/rabbitmq to 3.1.1

(fhajny)

2013-05-31 14:32:55 UTC MAIN commitmail json YAML

2013-05-31 12:56:42 UTC MAIN commitmail json YAML

Only use the email address for MAINTAINER, bump PKGREVISION.

(mbalmer)

2013-05-31 12:42:58 UTC MAIN commitmail json YAML

2013-05-31 12:39:56 UTC MAIN commitmail json YAML

Add missing change entries

(fhajny)

2013-05-31 12:19:30 UTC MAIN commitmail json YAML

Updated lang/nodejs to 0.10.9

(fhajny)

2013-05-31 12:19:18 UTC MAIN commitmail json YAML

2013.05.30, Version 0.10.9 (Stable)
* npm: Upgrade to 1.2.24
* uv: Upgrade to v0.10.9
* repl: fix JSON.parse error check (Brian White)
* tls: proper .destroySoon (Fedor Indutny)
* tls: invoke write cb only after opposite read end (Fedor Indutny)
* tls: ignore .shutdown() syscall error (Fedor Indutny)

(fhajny)

2013-05-31 11:37:25 UTC MAIN commitmail json YAML

Bumping to 1.14 for the last three additions that I forgot to bump.

(rodent)

2013-05-31 10:58:41 UTC MAIN commitmail json YAML

2013-05-31 10:56:31 UTC MAIN commitmail json YAML

Updated lang/perl5 to 5.18.0

(adam)

2013-05-31 10:55:15 UTC MAIN commitmail json YAML

We are excited to announce perl v5.18.0, the first stable release of version
18 of Perl 5.

You can find a full list of changes in the file "perldelta.pod" located in
the "pod" directory inside the release and on the web.

Perl v5.18.0 represents approximately 12 months of development since Perl
v5.16.0 and contains approximately 400,000 lines of changes across 2,100
files from 113 authors.

(adam)

2013-05-31 09:45:55 UTC MAIN commitmail json YAML

Fix previous. From J旦rn Clausen.

(wiz)

2013-05-31 08:41:55 UTC MAIN commitmail json YAML

Try fixing build on Solaris. PR pkg/47868.

(wiz)

2013-05-31 08:30:33 UTC MAIN commitmail json YAML

Updated x11/libXtst to 1.2.2

(wiz)

2013-05-31 08:30:24 UTC MAIN commitmail json YAML

Update to 1.2.2:

This release provides the fix for the recently announced security issue
CVE-2013-2063, along with a number of fixes to the build configuration.

Adam Jackson (1):
      configure: Remove AM_MAINTAINER_MODE

Alan Coopersmith (5):
      Move -I flags from AM_CFLAGS to AM_CPPFLAGS
      Add xextproto & xi to Requires.private
      Use _XEatDataWords to eat data in error cases
      integer overflow in XRecordGetContext() [CVE-2013-2063]
      libXtst 1.2.2

Colin Walters (1):
      autogen.sh: Implement GNOME Build API

Julien Cristau (1):
      COPYING: add copyright notices and licenses from the manpages and specs

(wiz)