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 (24m)  pkgsrc-2024Q1 (9d)  pkgsrc-2023Q4 (56d)  pkgsrc-2023Q2 (88d)  pkgsrc-2023Q3 (167d) 

2024-05-26 16:17:30 UTC Now

2012-05-13 08:44:15 UTC MAIN commitmail json YAML

add & enable conky

(imil)

2012-05-13 08:42:21 UTC MAIN commitmail json YAML

Initial import of conky, version 1.9.0, into the NetBSD Packages Collection.

Conky is a system monitor for X originally based on torsmo. Since
its inception, Conky has changed significantly from its predecessor,
while maintaining simplicity and configurability.  Conky can display
just about anything, either on your root desktop or in its own
window.  Not only does Conky have many built-in objects, it can
also display just about any piece of information by using scripts
and other external programs.

Conky has more than 250 built in objects, including support for a
plethora of OS stats (uname, uptime, CPU usage, mem usage, disk
usage, "top" like process stats, and network monitoring, just to
name a few), built in IMAP and POP3 support, built in support for
many popular music players (MPD, XMMS2, BMPx, Audacious), and much
much more.  Conky can display this info either as text, or using
simple progress bars and graph widgets, with different fonts
and colours.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(imil)

2012-05-13 08:37:03 UTC MAIN commitmail json YAML

To use the options framework bsd.options.mk must be include.

Also only add '--enable-libedit' to the configure args if the builtin
readline is libedit.

Bump PKGREVISION.

(sbd)

2012-05-13 08:22:49 UTC MAIN commitmail json YAML

Fix PLIST.  Spotted by dholland.

(enami)

2012-05-13 08:20:11 UTC MAIN commitmail json YAML

Set LD_TRACE_LOADED_OBJECTS_FMT{1,2} for OpenBSD so that output of ldd will be
expected format.

workaround of PR 38838.

(obache)

2012-05-13 08:10:12 UTC MAIN commitmail json YAML

If the WEBMIN_OSVERSION_cmd output is empty then a pair of quotes must be
used so that copyconfig.pl has the correct number of arguments.

(sbd)

2012-05-13 07:54:43 UTC MAIN commitmail json YAML

Added www/gwt version 2.4.0

(ryoon)

2012-05-13 07:53:27 UTC MAIN commitmail json YAML

2012-05-13 07:51:18 UTC MAIN commitmail json YAML

Import gwt-2.4.0 as www/gwt.

Google Web Toolkit (GWT) is a development toolkit for building and
optimizing complex browser-based applications. GWT is used by many
products at Google, including Google AdWords and Orkut. It's open
source, completely free, and used by thousands of developers around
the world.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(ryoon)

2012-05-13 07:49:25 UTC MAIN commitmail json YAML

2012-05-13 07:00:34 UTC MAIN commitmail json YAML

uemacs (yesterday) and netatalk

(dholland)

2012-05-13 06:10:17 UTC MAIN commitmail json YAML

Updated lang/gauche to 0.9.3.2

(enami)

2012-05-13 06:08:10 UTC MAIN commitmail json YAML

Update to 0.9.3.2.

Here is list of changes:

0.9.3.2:
Fix documentation build problem when configured to use non default
encoding.

0.9.3.1:
Fix build problem on Windows/MinGW.

0.9.3:
* New Features
    o Lazy sequences: An efficient and seamless support of mixing lazy
      evaluation with ordinary list procedures. Forcing delayed
      evaluation is implicit, so you can pass lazy list to normal list
      procedures such as car or fold. See the manual entry for the
      details and examples.
    o gauche.generator: A general utilities for generators, a thunk that
      generates a value every time it is called. Lazy sequences are built
      on top of generators. See the manual entry for the details.
    o Threads are now supported on Windows/MinGW build. It is directly
      based on Win32 thread API instead of pthreads; but Scheme-level
      semantics are almost the same. The cond-expand conditions are
      slightly modified to accomodate both thread models--- see Threads
      for the details.
    o add-load-path macro now accepts an optional argument to make the
      given path relative to the currently loaded file. This is useful to
      distribute a script accompanied with library files; for example,
      specify (add-load-path "." :relative) in the script makes the
      library files searched from the same directory where the script
      exists. Then users can just copy the directory to anywhere and run
      the script.
    o A chained-application macro $: Incorporated the feature which has
      been experimented as gauche.experimental.app. This macro allows (f
      a b (g c d (h i j))) to be written as ($ f a b $ g c d $ h i j).
      Although it is slighly longer, it is sometimes work better with
      indentation of deeply nested function calls. See the manual entry
      for the full explanation.
    o A new gosh option -m module allows the main procedure to be
      searched in the specified module instead of the default user
      module. This allows a Scheme file to work both as a library module
      and an executable scripts (e.g. for running tests or demos); name
      the test program main but not export it, and it won't affect
      ordinary module users, but you can test the module by using -m
      option.

* Incompatibile Changes
    o util.queue: Thread-safe queue can now be created with zero
      max-length, which is handy as a synchronization device. This is an
      incompatible change---previously, specyfing zero to :max-length
      means unlimited queue length. (Cf: Queue of zero length
      http://blog.practical-scheme.net/gauche/20110107-zero-length-queue ).
    o Fixed a regexp bug in treatment of BOL/EOL assertions (^, $) within
      the assetion blocks such as (?=...). Regarding BOL/EOL assertions,
      these assertion blocks are treated as if they're stand-alone. The
      fixed behavior is now compatible with Perl and Oniguruma. The code
      that counted on the previous (buggy) behavior may break by this
      change.
    o Removed gauche.auxsys module. This module contained several
      less-used system procedures; now they are in the core. The module
      was autoloaded, so not many code should be affected by this change.
      Only the code that explicitly refer to this module needs to be
      changed.

* Improvements
    o Many frequently-used list procedures (all of util.list, and some of
      srfi-1) are now included in the core. The module util.list is no
      longer needed, although it is kept just for the backward
      compatibility. From srfi-1, the following procedures are now in the
      core: null-list?, cons*, last, member (extended one), take, drop,
      take-right, drop-right, take!, drop-right!, delete, delete!,
      delete-duplicates, delete-duplicates!, assoc (extended one),
      alist-copy, alist-delete, alist-delete!, any, every, filter,
      filter!, remove, remove!, filter-map, fold, fold-right, find,
      find-tail, split-at, split-at!, iota.
    o New macros and procedures: values->list, fold-left,
      regexp-num-groups, regexp-named-groups.
    o New procedure applicable? can be used to check object's
      applicability finer than procedure?. Related, a special class
      <bottom> is added, which behaves as a subtype of any classes.
    o Build process is overhauled to allow out-of-source-tree build.
    o Regular expression engine is slightly improved. For example, it now
      calculates the set of characters that can be a beginning of a part
      of regexp, and uses it to skip the input efficiently.
    o thread-terminate! now attempts to terminate the target thread
      gracefully, and only tries the forceful means when the gracefull
      termination fails.
    o open-input-file now accepts :encoding #t argument, which tells the
      procedure to use a coding-aware port. That is, it can recognize
      coding: ... specification in the beginning of the file. Useful to
      process source files.
    o map is now restart-safe, that is, saving continuations in middle of
      mapping and restarting it doesn't affect previous results. This is
      required in R6RS.
    o Various small improvements in the compiler and VM stack layout.
    o gauche.test: test-module now checks the number of arguments given
      to the global procedures. This is useful to catch careless
      mistakes. In rare cases that you do intend to pass number of
      arguments incompatible to the normal usage of the procedures, list
      such procedures in :bypass-arity-check keyword argument (It is
      possible because of the dynamic nature of the language---methods of
      a different signature may be added later, for example).
    o gauche.test: test-end has a keyword argument to exit with non-zero
      status if test failed. New function test-summary-check exits with
      non-zero status when the test record file indicates there have been
      failures. Both are useful to propagate test failure to upper levels
      such as continuous integration server.
    o srfi-42: Support :generator qualifier to allow using generator
      procedures in a sense of gauche.generator.
    o file.util: touch-file and touch-files takes various keyword
      arguments similar to touch(1) command.
    o rfc.http: A new parameter http-proxy allows to set the default http
      proxy. The https connection now uses a library bundled to Gauche,
      no longer requires external stunnel command.
    o GC is bumped to bdwgc 7.2-alpha6.

* Bux fixes
    o Fixed an incorrect rounding bug when inexact numbers were given to
      div and mod.
    o Fixed another division bug in /., when both dividend and divisor
      are too big to be represented by floating-point numbers.
    o In quasiquote expander, unquote and unquote-splicing are recognized
      hygienically.
    o force is now thread-safe.
    o Fixed some MT-hazards in file loading/requiring. Thanks to Kirill
      Zorin for tracking those hard-to-find bugs.
    o Fixed a bug that made (regexp-compile '(alt)) Bus Error.
    o Fixed another regexp bug that didn't handle case-folding match
      beyond ASCII range. Patch from OOHASHI Daichi.
    o gauche.parameter: Accessing parameters created in unrelated threads
      used to raise an error. It was annoying, since such situation could
      occur inadvertently when autoload is involved. Now the parameters
      work regardless of where they are created.
    o rfc.json: Fixed a bug that produced incorrect JSON.
    o rfc.http: Fixed the behavior of redirection for 3xx responses. You
      can also customize the behavior.
    o gauche.threads: Fixed a bug in thread-sleep! when passed an exact
      rational number.
    o util.stream: stream-count didn't work.

(enami)

2012-05-13 05:36:28 UTC MAIN commitmail json YAML

Update section on icc from PR 38398. This update is probably itself
substantially out of date, but it's what we've got...

(dholland)

2012-05-13 05:33:25 UTC MAIN commitmail json YAML

2012-05-12 23:10:30 UTC MAIN commitmail json YAML

2012-05-12 22:08:24 UTC MAIN commitmail json YAML

Mark this as NOT_FOR_PLATFORM on netbsd-6 and up. It is based on the
historical quota API and has no internal abstractions, so it would
require pretty much a total rewrite for the new quota API. This could
be done, of course. Contact me if there's any interest.

(dholland)

2012-05-12 21:53:20 UTC MAIN commitmail json YAML

PR 46072: netatalk broken with netbsd-6 quotas

Add support for the new libquota. Drop support for the proplib
libquota; it's not worth the configure-time hassle.

Fix some moderately serious bugs in the original/previous libquota
patches; it's clear for example they were never tested with group
quotas.

(dholland)

2012-05-12 21:07:28 UTC MAIN commitmail json YAML

mk/java-vm.mk: Set DragonFly for openjdk7

(marino)

2012-05-12 21:01:47 UTC MAIN commitmail json YAML

lang/openjdk7: Add support for DragonFly x86_64

* Update bootstrap for i386-DragonFly
* Add bootstrap for x86_64-DragonFly
* Update patch-aa to handle missing EM_ALPHA definition (not used anyway)
* Add patch for hotspot to handle x86_64 in uname
* Update Makefile for parallel building of hotspot
* Allow platform DragonFly 3.x

Thanks for all the hard work building the bootstraps and testing:
Francois Tigeot
Chris Turner

(marino)

2012-05-12 20:16:31 UTC MAIN commitmail json YAML

Updated www/p5-HTML-Template to 2.9.1

(wiz)

2012-05-12 20:16:22 UTC MAIN commitmail json YAML

Update to 2.91 and call it 2.9.1 because previous was 2.9 and I don't trust
perl module version numbers :)

Changes:
2.91 Fri Mar 30 2012

  - Feature: RT #18901 - Added new utf8 option to make it really simple
    to use UTF-8 encoded templates [Michael Peters]

  - Feature: RT #30586 - Added new open_mode option to allow for
    Perl IO layers to interact when using open() on the template files
    [moritz@faui2k3.org and Michael Peters]

  - Feature: RT #38189 - Allow clean XML style tags "<tmpl_var foo />"
    to be used as well. [allard@byte.nl]

  - Feature: RT #46285 - Added support for lazily-evaluated coderefs
    for TMPL_LOOPs. [Justin DeVuyst and Michael Peters]

  - Feature: RT #64797 - Added new option die_on_missing_include (defaults
    to true) that allows users to turn off the behavior of dieing when an
    include can't be found [Zdenek Styblik and Michael Peters]

  - Feature: Add new cache_lazy_vars option so that the values from coderefs
    used for TMPL_VARs can be cached and the coderef not run multiple times
    [Michael Peters]

  - Feature: Add new cache_lazy_loops option so that the values from coderefs
    used for TMPL_LOOPs can be cached and the coderef not run multiple times
    [Michael Peters]

  - Feature: Added __even__, __outer__ and __index__ loop context vars.
    [Michael Peters]

  - Bug Fix: RT #26456 - force_untaint can't work in Perl < 5.8.0
    [admin@photoresearchers.com]

  - Bug Fix: RT #67663 - remove warning under Perl > 5.14.0 about using tied
    with a file handle without "*" [RENEEB, TODDR and Michael Peters]

  - Bug Fix: RT #35534 - Using the same loop multiple times with
    different vars will no longer cause an error if die_on_bad_params
    is set. [Ron Savage & Michael Peters]

  - Bug Fix: RT #38325 - Give a better error message if param() is set
    with a reference to a reference. [Mark Stosberg & Michael Peters]

  - Test Fix: RT #26103 - t/05-blind-cache.t no longer modifies the
    distribution during the tests but instead uses temp files [Jan
    Dubois and Michael Peters]

  - Test Fix: Tests that create and modify files now use temp files
    and file_cache_dir is always a temp directory [Michael Peters]

  - Doc Fix: Using more POD formatting [Michael Peters]

  - Doc Fix: RT #46244 - fix broken link to tutorial [Michael Peters]

  - Doc Fix: RT #60282 - fix various mispellings [Florian Ernst]

  - Doc Fix: RT #60283 - fix broken HTML example [Florian Ernst]

  - Doc Fix: RT #60284 - fix broken POD [Florian Ernst and Michael Peters]

  - Development: Moved development to GitHub
    (https://github.com/mpeters/html-template)

  - Development: Switched to using Dist::Zilla internally for release management

  - Development: Added Michael Peters as co-maintainer

(wiz)

2012-05-12 18:10:39 UTC MAIN commitmail json YAML

Add back enigmail distinfo

(abs)

2012-05-12 17:54:30 UTC MAIN commitmail json YAML

Added security/ocaml-cryptokit version 1.5

(wiz)

2012-05-12 17:54:16 UTC MAIN commitmail json YAML

+ ocaml-cryptokit

(wiz)

2012-05-12 17:53:40 UTC MAIN commitmail json YAML

Initial import of ocaml-cryptokit-1.5. Packaged byJaap Boender in PR 41691.

The Cryptokit library for Objective Caml provides a variety of
cryptographic primitives that can be used to implement cryptographic
protocols in security-sensitive applications. The primitives provided
include:

Symmetric-key cryptography: AES, DES, Triple-DES, ARCfour, in ECB,
CBC, CFB and OFB modes. Public-key cryptography: RSA encryption and
signature; Diffie-Hellman key agreement. Hash functions and MACs:
SHA-1, MD5, and MACs based on AES and DES. Random number generation.
Encodings and compression: base 64, hexadecimal, Zlib compression.

Additional ciphers and hashes can easily be used in conjunction
with the library. In particular, basic mechanisms such as chaining
modes, output buffering, and padding are provided by generic classes
that can easily be composed with user-provided ciphers. More
generally, the library promotes a "Lego"-like style of constructing
and composing transformations over character streams.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-20120512

(wiz)

2012-05-12 17:38:42 UTC MAIN commitmail json YAML

Updated x11/pixman to 0.24.4

(wiz)

2012-05-12 17:38:32 UTC MAIN commitmail json YAML

Update to 0.24.4, provided by Francois Tigeot in private mail:

0.23.2:

Check for working mmap()
test: Fix compilation on win32
Add a "noop" fast path for operations which require no or almost no data
processing
Fix a few typos in pixman-combine.c.template
Move many operations from various files into the new noop one.
Delete some unused variables in examples, mmx and sse2 functions
Replace arguments to composite functions
Silence autoconf warnings
blitters-test: Make common formats more likely to be tested
ARM: Fix two bugs in neon_composite_over_n_8888_0565_ca()
Replace boolean arguments with flags for bilinear fast path template
REPEAT_NORMAL support for bilinear fast path template
sse2: Declare bilinear src_8888_8888 REPEAT_NORMAL composite function
ARM: Add REPEAT_NORMAL functions to bilinear BIND macros
Enable REPEAT_NORMAL bilinear fast path entries
Bilinear REPEAT_NORMAL source line extension for too short src_width

0.23.4:

radial: Improve documentation and naming
C fast path for scaled src_x888_8888 with nearest filter
ARM: workaround binutils bug #12931 (code sections alignment)
radial: Fix typos and trailing whitespace
ARM NEON: Standard fast path out_reverse_8_8888
Fix lcg_rand_u32() to return 32 random bits
New test of pixman_region_contains_{rectangle,point}
Speed up pixman_region{,32}_contains_rectangle()
Use find_box_for_y() in pixman_region_contains_point() too
In pixman_image_create_bits() allow images larger than 2GB
win32: Build benchmarks
Workaround bug in llvm-gcc
ARM: better NEON instruction scheduling of over_n_8888 and over_n_8_8888
bits: optimise fetching width==1 repeats

0.23.6:

test: New function to save a pixman image to .png
Use pkg-config to determine the flags to use with libpng
Various build system fixes and improvements
test: Use smaller boxes in region_contains_test()
Add a generic unorm_to_unorm() conversion utility
Add general pixel converter
Add initial version of the MAKE_ACCESSORS() macro
Use MAKE_ACCESSORS() to generate accessors for various image formats
Remove x and y coordinates from analyze_extents() and compute_sample_extents()
Split computation of sample area into own function
Eliminate compute_sample_extents() function
test: Occasionally use a BILINEAR filter in blitters-test
test: better coverage for BILINEAR->NEAREST filter optimization
Strength-reduce BILINEAR filter to NEAREST filter for identity transforms
BILINEAR->NEAREST filter optimization for simple rotation and translation
lowlevel-blt: add over_x888_8_8888
Various MMX fixes
mmx: rename USE_MMX to USE_X86_MMX
mmx: prepare pixman-mmx.c to be compiled for ARM/iwmmxt
mmx: compile on ARM for iwmmxt optimizations
mmx: optimize unaligned 64-bit ARM/iwmmxt loads
Make sure iwMMXt is only detected on ARM
sse2: Macros for assembling bilinear interpolation code fractions
sse2: Bilinear scaled over_8888_8888 and over_8888_8_8888
init/fini functions for pixman_image_t
Add new fast path flag FAST_PATH_BITS_IMAGE
Add src, mask, and dest flags to the composite args struct
Simple repeat fast path

0.23.8:

Add stable release / development snapshot to draft release notes
gradient walker: Correct types and fix formatting
Use sentinels instead of special casing first and last stops
Simplify gradient_walker_reset()
ARM: NEON: Some cleanup of bilinear scanline functions
ARM: NEON: Bilinear macro template for instruction scheduling
ARM: NEON: Replace old bilinear scanline generator with new template
ARM: NEON: Instruction scheduling of bilinear over_8888_8888 and over_8888_8_8888
ARM: NEON: Standard fast path src_n_8_8888 and src_n_8_8
ARM: NEON: Fix assembly typo error in src_n_8_8888
Fix use of uninitialized fields reported by valgrind

0.24.0:

Add definitions of INT64_MIN and INT64_MAX
Change MMX ldq_u to return _m64 instead of forcing all callers to cast

0.24.2:

Don't use non-POSIX test
Android Runtime Detection Support For ARM NEON
gradient-walker: For NONE repeats, when x < 0 or x > 1, set both colors to 0
autogen.sh: Support GNOME Build API
pixman-image.c: Fix typo in pixman_image_set_transform()
Fix some signed overflow bugs
Reject trapezoids where top (botttom) is above (below) the edges
Make mmx code compatible with Solaris Studio 12.3 compilers
Fix bugs with alpha maps

0.24.4:

iOS Runtime Detection Support For ARM NEON
Revert "Reject trapezoids where top (botttom) is above (below) the edges"

(wiz)

2012-05-12 17:20:47 UTC MAIN commitmail json YAML

fix PLIST issue caused by CVS directory

(cheusov)

2012-05-12 15:43:47 UTC MAIN commitmail json YAML

Fix in colorit_funcs (use ${var:=val} for initializing variables)

(cheusov)

2012-05-12 15:18:24 UTC MAIN commitmail json YAML

2012-05-12 15:17:03 UTC MAIN commitmail json YAML

2012-05-12 15:15:48 UTC MAIN commitmail json YAML

Added textproc/colorit version 1.12.0

(cheusov)

2012-05-12 15:15:35 UTC MAIN commitmail json YAML

2012-05-12 11:40:06 UTC MAIN commitmail json YAML

* pass strict PERL location to configure
* restore version scheme for php-5.2, missing treatment at introduced
  PECL_LEGACY_VERSION_SCHEME.
* add an patch to fix build on php>=5.3.

(obache)

2012-05-12 11:32:39 UTC MAIN commitmail json YAML

treat for the case PKG_PHP_VERSION=52

(obache)

2012-05-12 11:27:47 UTC MAIN commitmail json YAML

2012-05-12 10:12:32 UTC MAIN commitmail json YAML

Set DISTNAME and DIST_SUBDIR only for !defined(PECL_VERSION).

(obache)

2012-05-12 09:59:13 UTC MAIN commitmail json YAML

Updated emulators/qemu to 0.15.1nb5

(gson)

2012-05-12 09:56:51 UTC MAIN commitmail json YAML

When setting up an outgoing user mode networking TCP connection,
disable the Nagle algorithm in the host-side connection.  Either
the VM is already doing Nagle, in which case there is no point
in doing it twice, or it has chosen to disable it, in which case
we should respect that choice.  This change speeds up GDB remote
debugging over TCP over user mode networking by multiple orders
of magnitude.

(gson)

2012-05-12 08:58:43 UTC MAIN commitmail json YAML

2012-05-12 08:58:30 UTC MAIN commitmail json YAML

2012-05-12 08:49:54 UTC MAIN commitmail json YAML

Updated multimedia/php-ming to 0.4.4

(obache)

2012-05-12 08:49:26 UTC MAIN commitmail json YAML

Switch to use ming distribution's one, instead of PHP distribution bundled one.

This extension is no longer bundled with PHP as of PHP 5.3.0,
so this change let to allow php53.
For php5(52), set PECL_LEGACY_VERSION_SCHEME=yes to avoid version downgrade.

(obache)

2012-05-12 08:27:17 UTC MAIN commitmail json YAML

Bring back patch-RULES_rules.man as the fix in it is still needed.

(sbd)

2012-05-12 08:24:43 UTC MAIN commitmail json YAML

define MING_VERSION and EXTRACT_SUFX here for upcomming php-ming update.

(obache)

2012-05-12 08:23:35 UTC MAIN commitmail json YAML

* allow to specify phpize sub directory with PHPSETUPSUBDIR.
* allow to override DIST_SUBDIR

(obache)

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

+ autogen-5.16, calibre-0.8.51, elm-me-2.5plalpha29, gauche-0.9.3,
  glade-3.12.1, gtkwave-3.3.36, hypermail-2.3.0 [pkg/46440],
  imp-5.0.21, libdrm-2.4.34, mathomatic-15.8.4, mined-2012.22,
  mpg123-1.14.1, mu-0.9.8.4, nut-17.8, opengrok-0.11.1, openoffice-3.4,
  openssl-1.0.1c, p5-Search-Xapian-1.2.10.0, pulseaudio-2.0,
  sympa-6.1.10, tig-1.0, vttest-20120506, xapian-1.2.10, xterm-279.

(wiz)

2012-05-12 07:50:06 UTC MAIN commitmail json YAML

man-pages is a new package, correct entry.

(wiz)

2012-05-12 07:37:52 UTC MAIN commitmail json YAML

2012-05-12 07:18:43 UTC MAIN commitmail json YAML

Updated databases/postgresql90-client to 9.0.7nb1
Updated databases/postgresql91-client to 9.1.3nb1

(sbd)

2012-05-12 07:17:34 UTC MAIN commitmail json YAML

Fix the path to mkdir in the installed Makefile.global.

Bump PKGREVISION

(sbd)

2012-05-12 07:17:31 UTC MAIN commitmail json YAML

Updated devel/man-pages to 3.41

(wiz)

2012-05-12 07:17:21 UTC MAIN commitmail json YAML

2012-05-12 07:16:47 UTC MAIN commitmail json YAML

Initial import of man-pages-3.41.

This package contains Linux man pages for sections 2, 3, 4, 5, and 7.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-20120512

(wiz)

2012-05-12 06:37:39 UTC MAIN commitmail json YAML

Updated multimedia/py-ming to 0.4.4

(obache)

2012-05-12 06:37:28 UTC MAIN commitmail json YAML

reset PKGREVISION from base pkg update.

(obache)

2012-05-12 06:36:52 UTC MAIN commitmail json YAML

Updated multimedia/ming to 0.4.4

(obache)

2012-05-12 06:36:40 UTC MAIN commitmail json YAML

Update ming to 0.4.4.

0.4.4 - 2011-10-26

* Generally improve swftoscript and decompiler
* Change makefdb to name output files by font ID, to play nicer
  with swftoscript.
* Add support for 'class A extends B' syntax in actioncompiler
* Fix bug in 'makeswf' failing to catch some compile errors
  (bugzilla #94) and being too silent in swf embedding errors
* Fix bug in action compiler dealing with class methods (bugzilla #94)
* Add support for libpng > 1.4 (bugzilla #96)
* Add font kernings support (bugzilla #95)
* Add button characters export capabilities
* Add support for 'swfAction <code>' syntax in asm blocks

(obache)

2012-05-12 05:46:27 UTC MAIN commitmail json YAML

Updated net/udns to 0.2; chat/jabberd2 to 2.2.16

(adam)

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

Changes 2.2.16:
* Implemented --enable-tests configure option
* Fixed 'make dist' packaging
* Fixed domain name in punycode resolution
* Expand @package@ in etc/*.xml.dist.in
* storage_ldapvcard compilation fixes
* Implement debug logging into file
* Fix invalid default router.xml (Unterminated XML comment tag)
* Fixed libstorage_la_SOURCES
* Implemented support for fake (PBX) sessions in SM
* PBX integration priority setting support
* Fix a crash that occurs when c2s connecting clients passed the defined
  connection limit
* Log S2S retry timeout to main log
* Do not log messages when not enabled or empty logfile configured

(adam)

2012-05-12 05:38:00 UTC MAIN commitmail json YAML

Changes 0.2:
* bugfix: SRV RR handling: fix domain name parsing and crash in case
  if no port is specified on input for SRV record query
* (trivial api) dns_set_opts() now returns number of unrecognized
  options instead of always returning 0
* dnsget: combine -f and -o options in dnsget (and stop documenting -f),
  and report unknown/invalid -o options (and error out)
* dnsget: pretty-print SSHFP RRs

(adam)

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

Made building docs an option; now tex and friends are not required for buildlink.

(adam)

2012-05-11 14:08:59 UTC MAIN commitmail json YAML

update to 5.0.5
changes: bugfixes, in particular for glitches with newer CPUs

(drochner)

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

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

Note update of security/openssl package to 0.9.8x.

(taca)

2012-05-11 13:27:27 UTC MAIN commitmail json YAML

Update openssl to 0.9.8x.

OpenSSL CHANGES
_______________

Changes between 0.9.8w and 0.9.8x [10 May 2012]

  *) Sanity check record length before skipping explicit IV in DTLS
    to fix DoS attack.

    Thanks to Codenomicon for discovering this issue using Fuzz-o-Matic
    fuzzing as a service testing platform.
    (CVE-2012-2333)
    [Steve Henson]

  *) Initialise tkeylen properly when encrypting CMS messages.
    Thanks to Solar Designer of Openwall for reporting this issue.
    [Steve Henson]

(taca)

2012-05-11 13:26:25 UTC MAIN commitmail json YAML

Updated devel/p5-Perl-Critic to 1.117

(sno)

2012-05-11 13:26:14 UTC MAIN commitmail json YAML

Update package for CPAN distribution Perl::Critic in devel/p5-Perl-Critic
from 1.116 to 1.117.

pkgsrc changes:
- mark requirement update of p5-PPIx-Regexp to 0.022

Upstream changes:
[1.117] Released on 2011-12-21

    HAPPY HOLIDAYS!

    New Policies:
    * Variables::ProhibitAugmentedAssignmentInDeclaration reports
      constructs like 'my $x += 1'. Contributed by Mike O'Regan

    Policy Changes:
    * BuiltinFunctions::ProhibitLvalueSubstr: Add explicit 'use version'.
      RT #68498.
    * CodeLayout::ProhibitHardTabs: Add 'pbp' to the default_themes list.
      RT #71093.
    * ControlStructures::ProhibitMutatingListFunctions now understands that
      tr///r (introduced in 5.13.7) does not change its operand.
    * ControlStructures::ProhibitMutatingListFunctions now understands that
      '//=', '<<=', and '>>=' are assignment operators. RT #70901.
    * ErrorHandling::RequireCheckingReturnValueOfEval now allows things
      like grep { eval $_ }. RT #69489.
    * Modules::RequireExplicitPackage now has configuraion option
      allow_import_of, to allow the import of specified modules before
      the package statement. RT #72660.
    * RegularExpressions::ProhibitEnumeratedClasses no longer thinks
      that [A-Za-z_] matches \w. RT #69322.
    * RegularExpressions::ProhibitUnusedCaptures now skips the first
      block of an 'if' or 'elsif' if the regular expression is bound to
      its operand with the '!~' operator. RT #69867.
    * RegularExpressions::ProhibitUnusedCaptures now looks into lists
      and blocks in the replacement portion of the regular expression if
      /e is asserted. RT #72086.
    * RegularExpressions::RequireDotMatchAnything,
      RegularExpressions::RequireExtendedFormatting and
      RegularExpressions::RequireLineBoundaryMatching now honor defaults
      set with 'use re "/modifiers"'. RT #72151.
    * Subroutines::ProhibitManyArgs now recognizes '+' as a prototype
      character.
    * Variables::ProhibitPunctuationVars now recognizes bracketed
      variables embedded in interpolated strings (e.g. "${$}"). For the
      purpose of the 'allow' configuration, these are considered
      equivalent to the unbracketed form. RT #72910.
    Other Changes:
    * Corrected POD in Perl::Critic::PPI::Utils. RT #68898.
    * Perl::Critic::Violation source() method now returns the line
      containing the violation (not the first line) when the statement
      containing the violation spans multiple lines.

(sno)

2012-05-11 13:10:01 UTC MAIN commitmail json YAML

Updated lang/sun-jre6 to 6.0.32
Updated lang/sun-jdk6 to 6.0.32

(abs)

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

Updated devel/p5-PPIx-Regexp to 0.026

(sno)

2012-05-11 13:04:35 UTC MAIN commitmail json YAML

Updating package for Perl5 distribution PPIx::Regexp in devel/p5-PPIx-Regexp
from 0.021 to 0.026.

Upstream changes (keep in mind versions with underscores marking developer releases):
0.026 2012-02-24 T. R. Wyant
  Add support for \F (fold case), added in 5.15.8.

0.025 2012-01-04 T. R. Wyant
  Tolerate leading and trailing white space around the regular
    expression.  These are still round-trip safe, since the white space
    is tokenized.
  Make Changes file conform to CPAN::Changes, and add
    xt/author/changes.t to ensure continued compliance.

0.024 2011-12-17 T. R. Wyant
  Reinstate author test xt/author/manifest.t, which was clobbered
    shortly before the release of 0.021_10.

0.023 2011-12-08 T. R. Wyant
  Correct address of FSF in the version of the GPL distributed in
    LICENSES/Copying. Thanks to Petr Pisar for picking this up.

0.022 2011-11-24 T. R. Wyant
  Correct various documentation errors.
  The default-modifier functionality is no longer considered
    experimental.
  No code changes since 0.021_11.

0.021_11 2011-11-15 T. R. Wyant
  Don't initialize effective modifiers with '^', since that wrongly
    asserts that /d has been seen somewhere along the line.
  Implement negation of match-semantic modifiers (e.g. 'no re /u;') by
    setting the relevant datum to undef.
  THE DEFAULT-MODIFIER FUNCTIONALITY IS EXPERIMENTAL, AND MAY BE CHANGED
    WITHOUT NOTICE until the next production release.

0.021_10 2011-11-14 T. R. Wyant
  Support for default modifiers. This includes:
    * default_modifiers argument to new() in PPIx::Regexp,
      PPIx::Regexp::Tokenizer, and PPIx::Regexp::Dumper
    * Public method modifier_asserted() on PPIx::Regexp, to return
      whether a given modifier is actually in effect. The results of the
      modifier() method are unchanged.
    THIS FUNCTIONALITY IS EXPERIMENTAL, AND MAY BE CHANGED OR REVOKED
    WITHOUT WARNING.
  Require Test::More 0.88 for installation. Eliminate all the 'eval
    { require ... }' logic in favor of 'use Test::More 0.88'.
  Have Makefile.PL make use of {BUILD_REQUIRES} if it is available.
  Fix PPIx::Regexp::Token::Whitespace->can_be_quantified() to return
    false.

(sno)

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

Updated lang/sun-jdk6 to 6.0.32

Changes since sun-jdk6-6.0.31
- samples & demo directoryes dropped
- 3DNow Prefetch Instruction Support
- Adjust allocation prefetching for T4
- assert(VM_Version::supports_sse2()) failed: must support
- Remove hotspot assertion due to Solaris 8 kstat "unimplemented".
- ARM: SEGV on panda with linaro 3.1.1 running specjvm2008
- make the string table size configurable
- Parallel CMS fails to properly mark reference objects
- GarbageCollectorMXBean#getLastGcInfo leaks native memory
- C-heap growth issue in ThreadService::find_deadlocks_at_safepoint
- Memory leak in inferencing verifier (libverify.so)
- SA cannot open core files larger than 2GB on Linux 32-bit
- Introspector.getBeanInfo() should release some resources in timely manner
- File.setWritable() / File.canWrite() not behaving as expected
- CookieManager does not store cookies if url is read before setting cookie manager
- (so) Socket adapter need to implement sendUrgentData
- (so) Socket adpator is not synchronized on channel state
- (so) Suppress creation of SocketImpl in SocketAdaptor's constructor
- Cannot decode PublicKey (Provider SunPKCS11, curve prime256v1)
- Gervill for 6uXX (2): make Gervill the default synthesizer
- Problem with timezone in a SimpleDateFormat
- Properties.loadFromXML fails with ClassCastException
- compiler generates bad code when translating conditional expressions
- IncompatibleClassChangeError with unreferenced local class with subclass
- 32-bit JRE silent install fails on WINDOWS 2008 SERVER 64-bit under System account
- installation fails by SMS under System Account
- Separate demos from the bundles on Windows, Solaris and Linux
- DT fails to register with Chrome
- uninstall of JRE 7 with JRE 6 on the machine left 10.0.0 deployment registry key behind
- IE9 prompts to disable Java plugin because of slow start up
- Redirection of registry keys not happening correctly with old plugin
- old-plugin liveconnect missing SecureCookiePermission
- Java Plugin does not evaluate automatic proxy files correctly on Linux: always picks first proxy
- 20ms latency always observed for LiveConnect round-trip in IE
- revisit IE LiveConnect performance fix to address applet hang issue found by Citigroup
- Java Web Start 10.1.* is considerably slower than Web Start 1.4.2, using getresource() repeatedly
- Compilation of StarOffice wordml XSLT filter via XSLTC throws exception
- JDK6u18 XSLT regression: xsl:copy-of failing to copy generated attributes
- Cipher.doFinal(ByteBuffer,ByteBuffer) fails to process when in.remaining() == 0
- (was 7011759 Bug Cloned - 6u16: Recovering buffer manager read stream underflow from protocols are
- Regular unexplained npe's from corba libs after system has been running for days
- GSSAPI/SPNEGO does not work with server using MIT Kerberos library
- Incorrect SSLEngine debug output
- Npe occurs in abstractprocessor.readfromnextstructure
- SAAJ does not set correct namespace prefix and namespace URI for attributes in some circumstances.

(abs)

2012-05-11 13:02:37 UTC MAIN commitmail json YAML

Updated lang/sun-jre6 to 6.0.32

Changes since sun-jre6-6.0.31
- 3DNow Prefetch Instruction Support
- Adjust allocation prefetching for T4
- assert(VM_Version::supports_sse2()) failed: must support
- Remove hotspot assertion due to Solaris 8 kstat "unimplemented".
- ARM: SEGV on panda with linaro 3.1.1 running specjvm2008
- make the string table size configurable
- Parallel CMS fails to properly mark reference objects
- GarbageCollectorMXBean#getLastGcInfo leaks native memory
- C-heap growth issue in ThreadService::find_deadlocks_at_safepoint
- Memory leak in inferencing verifier (libverify.so)
- SA cannot open core files larger than 2GB on Linux 32-bit
- Introspector.getBeanInfo() should release some resources in timely manner
- File.setWritable() / File.canWrite() not behaving as expected
- CookieManager does not store cookies if url is read before setting cookie manager
- (so) Socket adapter need to implement sendUrgentData
- (so) Socket adpator is not synchronized on channel state
- (so) Suppress creation of SocketImpl in SocketAdaptor's constructor
- Cannot decode PublicKey (Provider SunPKCS11, curve prime256v1)
- Gervill for 6uXX (2): make Gervill the default synthesizer
- Problem with timezone in a SimpleDateFormat
- Properties.loadFromXML fails with ClassCastException
- compiler generates bad code when translating conditional expressions
- IncompatibleClassChangeError with unreferenced local class with subclass
- 32-bit JRE silent install fails on WINDOWS 2008 SERVER 64-bit under System account
- installation fails by SMS under System Account
- Separate demos from the bundles on Windows, Solaris and Linux
- DT fails to register with Chrome
- uninstall of JRE 7 with JRE 6 on the machine left 10.0.0 deployment registry key behind
- IE9 prompts to disable Java plugin because of slow start up
- Redirection of registry keys not happening correctly with old plugin
- old-plugin liveconnect missing SecureCookiePermission
- Java Plugin does not evaluate automatic proxy files correctly on Linux: always picks first proxy
- 20ms latency always observed for LiveConnect round-trip in IE
- revisit IE LiveConnect performance fix to address applet hang issue found by Citigroup
- Java Web Start 10.1.* is considerably slower than Web Start 1.4.2, using getresource() repeatedly
- Compilation of StarOffice wordml XSLT filter via XSLTC throws exception
- JDK6u18 XSLT regression: xsl:copy-of failing to copy generated attributes
- Cipher.doFinal(ByteBuffer,ByteBuffer) fails to process when in.remaining() == 0
- (was 7011759 Bug Cloned - 6u16: Recovering buffer manager read stream underflow from protocols are
- Regular unexplained npe's from corba libs after system has been running for days
- GSSAPI/SPNEGO does not work with server using MIT Kerberos library
- Incorrect SSLEngine debug output
- Npe occurs in abstractprocessor.readfromnextstructure
- SAAJ does not set correct namespace prefix and namespace URI for attributes in some circumstances.

(abs)

2012-05-11 12:55:45 UTC MAIN commitmail json YAML

Updated devel/p5-Capture-Tiny to 0.18

(sno)

2012-05-11 12:55:35 UTC MAIN commitmail json YAML

Updating package for CPAN module Capture::Tiny in devel/p5-Capture-Tiny
from 0.17 to 0.18.

Upstream changes since 0.17:
0.18      2012-05-04 16:31:53 America/New_York

  Added

  - When capture or tee are called in void context, Capture::Tiny
    skips reading back from the capture handles if it can do so safely

0.17_52  2012-03-09 11:45:19 EST5EDT

  Fixed:

  - Tied STDIN is always localized before redirections to avoid tees
    hanging on MSWin32

  - Copying and reopening STDIN is necessary to avoid tees hanging on MSWin32.

0.17_51  2012-03-07 18:22:34 EST5EDT

  Fixed:

  - Avoids reopening STDIN while setting up a capture, which avoids
    some problems with pathological tied filehandle implementations
    such as in FCGI

  Tested:

  - Re-enabled tied STDIN testing for MSWin32 to see if changes above
    avoid crashes seen historically

(sno)

2012-05-11 12:51:39 UTC MAIN commitmail json YAML

Updated devel/p5-App-Cmd to 0.318

(sno)

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

Updating package for CPAN distribution App::Cmd in devel/p5-App-Cmd
from 0.317 to 0.318

Upstream changes:
0.318    2012-05-04 22:00:34 America/New_York
          App::Cmd::Tester treats undef code as 0 now (thanks, David Golden)

          piles of documentation improvement also by David Golden

(sno)

2012-05-11 11:31:55 UTC MAIN commitmail json YAML

Updated devel/p5-IO-AIO to 4.15

(sno)

2012-05-11 11:31:44 UTC MAIN commitmail json YAML

Updating package for CPAN distribution IO::AIO in devel/p5-IO-AIO from
4.11 to 4.15.

Upstream changes:
4.15  Tue Apr 10 06:59:00 CEST 2012
- always include linux/types.h for fiemap, for compatibility to
          ancient systems (Paul Howarth).
        - experimental support for IO::AIO::splice and ::tee (no aio_...).
        - provide SEEK_HOLE and SEEK_DATA, if available.
        - work around (again!) an immensely stupid bug in RHEL, defining
          autoconf macros in linux system headers (analysed by Paul Howarth).

4.14 Sat Apr  7 02:45:18 CEST 2012
- fix stat structure usage on windows, which caused bogus stat results.
        - (libeio) make readahead emulation behave more like actual readahead by never failing.
        - new request aio_seek.
        - new request aio_fiemap.
        - autogenerate the #ifdef/#define 0 blocks for symbols we export.

4.12 Fri Dec 30 08:51:25 CET 2011
- realpath would return a random value if the name was too long,
          instead of -1.
        - port to c89.

(sno)

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

Updated rabbitmq to 2.8.2.

Fixes in 2.8.2:
- Performance improvements
- Disc space monitoring

Fixed in 2.8.1
- Fixes a bug in 2.8.0 which prevented RAM nodes from being upgraded.

(fhajny)

2012-05-11 11:12:41 UTC MAIN commitmail json YAML

Kill a bunch of work directory references in rpath. Bump revision.

(joerg)

2012-05-11 11:09:42 UTC MAIN commitmail json YAML

Apply user transformation earlier to make it possible to drop
to-be-mangled entries like rpath using BUILDLINK_TRANSFORM.

(joerg)

2012-05-11 10:42:57 UTC MAIN commitmail json YAML

Updated misc/php-orangehrm to 2.7

(ryoon)

2012-05-11 10:41:27 UTC MAIN commitmail json YAML

Update to 2.7

* Add dependency to php-mysqli

Changelog:
2.7
* Language translation and date format support for all modules.
* Ability to switch on/off modules.
* Upgraders up to version 2.6.5.
* Removal of Benefits module.
* bugfixes

2.7-rc.1
* Language translation and date format support for all modules except
  Benefits module.
* Ability to switch on/off modules.
* bugfixes

2.6.12.1
* bugfixes

In detail, see new_changed_features.txt, but no security bug information
is provided.

(ryoon)

2012-05-11 10:01:58 UTC MAIN commitmail json YAML

Use gzip in stdout mode so that the output file is created even with the
'unexpected end of file' error.

(sbd)

2012-05-11 09:40:35 UTC MAIN commitmail json YAML

Updated www/opera to 11.64

(obache)

2012-05-11 09:40:12 UTC MAIN commitmail json YAML

Update Opera to 11.64.

Release date: 2012-05-10

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

Fixes and Stability Enhancements since Opera 11.62

General and User Interface
* Stability improvements
* Resolved a handshake failure on https://autoupdate.opera.com
Network and Site-Specific
* Fixed an error where an on-demand-plugin placeholder could lower the security
  status of a secure site to insecure
* Fixed an issue with some secure pages not loading - PayPal, Ebay
* dojotoolkit.org: Errors when using the dojo amd loader have been resolved
* rts.rs: A JavaScript error has been resolved
Security
* Fixed an issue where certain URL constructs could allow arbitrary code
  execution, as reported by Andrey Stroganov; see our advisory:
    http://www.opera.com/support/kb/view/1016/

(obache)

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

Updated mail/thunderbird to 12.0.1

(ryoon)

2012-05-11 08:20:36 UTC MAIN commitmail json YAML

Update to 12.0.1

Fix PR pkg/46427

Changelog:
* Fix various issues relating to new mail notifications and filtering
  on POP3 based accounts
* Fixes an occasional startup crash seen in TB 12.0
* Fixes an issue with corrrupted message bodies when using movemail

(ryoon)

2012-05-10 22:16:55 UTC MAIN commitmail json YAML

2012-05-10 22:11:20 UTC MAIN commitmail json YAML

Add a cast to some indescribably horrible code to fix a build failure seen
in the last Linux bulk build.

(dholland)

2012-05-10 21:58:38 UTC MAIN commitmail json YAML

fix PLIST for an optionally installed file when picking option snmp

(spz)

2012-05-10 21:45:05 UTC MAIN commitmail json YAML

2012-05-10 20:59:41 UTC MAIN commitmail json YAML

Use SUBST to insert PREFIX instead of a handrolled sed, and be (much) less
indiscriminate about it.

(dholland)

2012-05-10 20:54:54 UTC MAIN commitmail json YAML

2012-05-10 20:53:30 UTC MAIN commitmail json YAML

2012-05-10 19:01:09 UTC MAIN commitmail json YAML

2012-05-10 17:46:34 UTC MAIN commitmail json YAML

Apply partial half-baked update to 0.8.2 to fix longtime problem with
missing Mono DLLs at config time.

This fixes that problem but fails because it needs gnome-keyring-sharp,
which we don't yet have in pkgsrc. I'm committing anyway in the hopes
someone else will deal with that because the package hasn't been
buildable in a long time and this does constitute a step forward.

Upstream changes:

f-spot 0.8.2 - Dec 19 2010 - Error!
-----------------------------------
- A small error slipped through while releasing 0.8.1, this release fixes
  that one.

f-spot 0.8.1 - Dec 19 2010 - Winter Fixes!
------------------------------------------
- Bug fix release for the 0.8.x series.
- Critical bug fixes and translation updates. Upgrading highly recommended.
- Infobox crasher fixed (Paul Wellner Bou)
- CRW crasher (Christian Krause)
- XMP sidecar file naming now uses file.jpg.xmp, falls back to old file.xmp
  if present (Ruben Vermeersch)
- French Mallard Documentation (Bruno Brouard)
- Slovenian Mallard Documentation (Matej Urban�ト絞�ト�)
- Tons of translations
- Loads of obsolete code fixed (Tim Howard)
- DateTime.DaysInMonth crasher fix (Tim Howard)
- Mono.Data.Sqlite removed (Tim Howard)
- Switch to official Taglib# repository.
- Lots of Taglib# fixes.
- Rotation crasher (Nuno Ferreira)
- Gallery export crasher for Unicode characters (Martin Slota)
- A fix for the very annoying Int32.MaxValue bug.
- Around 20 bugs closed (http://bit.ly/hCAwkd)

f-spot 0.8.0 - Sep 15 2010 - Stabilized
---------------------------------------
- First long-term stable release of the 0.8.x series.
- Contains everything from the 0.7.x series as well as some critical extra
  fixes that were added during the past week.
- Some regressions in terms of support for obscure RAW formats, but lots of
  improvements overall, definitely in terms of stability.
- Nearly 300 bugs closed since 0.6.2 (http://bit.ly/bqXLLt)
- This series will continue to be maintained and released, but only with
  improvements and fixes. New development will happen on the master branch
  and result in 0.9.x releases.

f-spot 0.7.3 - Sep  9 2010 - Release Candidate
----------------------------------------------
- Release candidate for the 0.8.0 release.
- Completely replaced Glade usage by GtkBuilder (Paul Lange)
- Cleanups and refactorings all accross (Ruben Vermeersch)
- Correctly decide when to make the library location sensitive (Iain Lane)
- Fixes in Taglib#.
- IconView has been split up and made much more modular (Mike Gem�テ⊂nde)
- More Hyenafication (Mike Gem�テ⊂nde)
- Copy to Clipboard fixed (Mike Gem�テ⊂nde)
- Another 20 bugs closed (http://bit.ly/a9FWVh)

f-spot 0.7.2 - Aug 11 2010 - Retooled
-------------------------------------
- Third release of the unstable 0.7 development series. Features a fully
  restructured source tree with full Monodevelop build support. Solves some of
  the regressions introduced in 0.7.1.
- Reorganized source tree for clarity, builds with Monodevelop.
- Switched from QueuedSqliteDatabase to HyenaSqliteConnection (Mike Gem�テ⊂nde)
- Build tweaks (Christian Krause)
- More GtkBuilder transition (Eric Faehnrich)
- Reliability improvements (lots of them) for metadata handling (Mike Gem�テ⊂nde,
  Ruben Vermeersch)
- Prune empty directories when deleting photos, import usability enhancements
  (Mike Wallick)
- Big race-condition fix in import (Paul Wellner Bou)
- Loads of improvements to Taglib#, in terms of handling broken files, extra
  format support (Pentax, Panasonic, Leica), stability and correctness (Ruben
  Vermeersch)
- Reporting of import errors.
- Speedups to repeated imports of the same directory.
- Piles of cleanups and general stability improvements.
- Over 50 bugs closed (http://bit.ly/cqpC3y)

f-spot 0.7.1 - Jul 14 2010 - The Big Switch
-------------------------------------------
- Second release of the unstable 0.7 development series. Most notably
  including a switch to Taglib#. Regressions in the amount of RAW
  types supported, will be fixed before releasing 0.8.
- Switched to a new Taglib#-backed metadata layer. This is a huge change
  which should bring us increased stability (in the long run) and a much
  easier to maintain metadata layer than the one we previously had. Also
  enables some funky new features like XMP sidecars. (Ruben Vermeersch,
  Mike Gem�テ⊂nde)
- Add support for XMP sidecars (Ruben Vermeersch)
- Add "remove from camera after import"-option (Ruben Vermeersch)
- Start of a massive backend cleanup (Mike Gem�テ⊂nde)
- Upstreaming of a lot of Debian/Ubuntu patches (Iain Lane)
- Several dialogs converted from glade to GtkBuilder (Ademir Mendoza,
  Nick Van Eeckhout, Peter Goetz, Trevor Buchanan)
- Code refactorings and cleanups, increased Hyena adoption (Evan Briones,
  Paul Lange, Paul Wellner Bou)
- Small usability improvements (Alex Launi, Anton Keks, Iain Churcher,
  Tomas Kovacik)
- More build retooling (Bertrand Lorentz, Christian Krause, Gabriel Burt)
- Many bugs fixed and improvements in stability: Over 85 bugs closed
  (http://bit.ly/aKyQOd)

f-spot 0.7.0 - Jun 16 2010 - Full Steam Ahead!
----------------------------------------------
- First release of the unstable 0.7 development series. Massive changes.
- Reparenting and detaching support (Anton Keks)
- A new Mallard-based documentation (Harold Schreckengost)
- No longer embeds flickrnet, uses distribution copy (Iain Lane)
- Adoption of a large amount of Hyena functionality (Paul Lange, Peter Goetz)
- No longer embeds gnome-keyring-sharp
- Completely rewritten import, much faster and less memory hungry (Ruben Vermeersch)
- No longer use gphoto2-sharp, now uses gvfs which is less crash-pron (Ruben Vermeersch)
- Fix Facebook support (Ruben Vermeersch)
- Modernized unit tests
- Revamped build (Mike Gem�テ⊂nde)
- Much improved duplicate detection (much faster too) (Ruben Vermeersch)
- Mouse selection in Iconview (Vincent Pomey)
- Image panning support using middle mouse button (Wojciech Dzier�ナ⊂anowski)
- Timeline slider now restricted to the size of the window (Iain Churcher)
- Over 100 bugs closed (http://bit.ly/cyVjnD)

(dholland)

2012-05-10 16:36:51 UTC MAIN commitmail json YAML

Explicitly disable udev if not on Linux. Fixes my build; no clue why this
apparently didn't affect Joerg's.

(dholland)

2012-05-10 16:07:36 UTC MAIN commitmail json YAML

2012-05-10 13:26:19 UTC MAIN commitmail json YAML

Updated mail/dovecot2 to 2.1.6

(ghen)

2012-05-10 13:25:38 UTC MAIN commitmail json YAML

Update to Dovecot 2.1.6

* Session ID is now included by default in auth and login process log lines. It
  can be added to mail processes also by adding %{session} to mail_log_prefix.
+ Added ssl_require_crl setting, which specifies if CRL check must be successful
  when verifying client certificates.
+ Added mail_shared_explicit_inbox setting to specify if a shared INBOX should
  be accessible as "shared/$user" or "shared/$user/INBOX".
- v2.1.5: Using "~/" as mail_location or elsewhere failed to actually expand it
  to home directory.
- dbox: Fixed potential assert-crash when reading dbox files.
- trash plugin: Fixed behavior when quota is already over limit.
- mail_log plugin: Logging "copy" event didn't work.
- Proxying to backend server with SSL: Verifying server certificate name always
  failed, because it was compared to an IP address.

(ghen)

2012-05-10 12:12:45 UTC MAIN commitmail json YAML

Updated security/ruby-simple_oauth to 0.1.8

(obache)

2012-05-10 12:12:29 UTC MAIN commitmail json YAML

Update ruby-simple_oauth to 0.1.8.

contains OAuth spec compatible fixes.

(obache)

2012-05-10 10:55:44 UTC MAIN commitmail json YAML

pkglint cleanup while here.

(wiz)

2012-05-10 10:55:39 UTC MAIN commitmail json YAML

2012-05-10 10:49:49 UTC MAIN commitmail json YAML

Fix build with automake-1.2.
While here, add missing INSTALLATION_DIRS line (or perhaps it's a
Makefile dependency issue, but this fixes it).

(wiz)

2012-05-10 09:44:58 UTC MAIN commitmail json YAML

2012-05-10 09:07:19 UTC MAIN commitmail json YAML

"sys.platform is now always 'linux2' on Linux", so set PY_PLATNAME to it.

(sbd)

2012-05-10 08:54:12 UTC MAIN commitmail json YAML

2012-05-10 08:39:33 UTC MAIN commitmail json YAML

2012-05-10 08:38:26 UTC MAIN commitmail json YAML

Kill SOABI addition to SO suffix for Linux, let to be PLIST maintainance easier.

(obache)

2012-05-10 08:10:00 UTC MAIN commitmail json YAML

"sys.platform is now always 'linux2' on Linux", so revert the linux3 handling
and always set PY_PLATNAME to 'linux2'.

(sbd)

2012-05-10 07:50:11 UTC MAIN commitmail json YAML

2012-05-10 07:43:40 UTC MAIN commitmail json YAML

2012-05-10 07:43:19 UTC MAIN commitmail json YAML

Needs desktopdb.mk. PKGREVISION -> 20

(dholland)

2012-05-10 07:42:22 UTC MAIN commitmail json YAML

2012-05-10 07:31:02 UTC MAIN commitmail json YAML

2012-05-10 07:28:17 UTC MAIN commitmail json YAML

2012-05-10 07:17:36 UTC MAIN commitmail json YAML

goffice0.6, gpsim, gpsim-devel

(dholland)

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

2012-05-10 07:10:43 UTC MAIN commitmail json YAML

Add missing direct dependence on glib2. PKGREVISION -> 15

(dholland)

2012-05-10 06:52:52 UTC MAIN commitmail json YAML

2012-05-10 06:52:45 UTC MAIN commitmail json YAML

Add missing direct dependence on glib2. PKGREVISION -> 11.

(dholland)

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

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

2012-05-10 04:43:53 UTC MAIN commitmail json YAML

Merge wiz's build fixes for goffice0.8. Add pcre's bl3 to Makefile
(was previously only in the bl3 file, which pkglint justifiably
considers broken) and bump PKGREVISION to 16.

(dholland)

2012-05-10 04:32:38 UTC MAIN commitmail json YAML

2012-05-10 04:32:19 UTC MAIN commitmail json YAML

2012-05-10 02:47:06 UTC MAIN commitmail json YAML

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

2012-05-10 02:18:13 UTC MAIN commitmail json YAML

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

Add more missing includes. I think these are the last; should finally
fix the build with gcc 4.5.

(dholland)

2012-05-10 01:58:16 UTC MAIN commitmail json YAML

oe2mbx, from a day or two ago

(dholland)

2012-05-09 22:44:06 UTC MAIN commitmail json YAML

Updated fscd from 1.0 to 1.0.1
1.0.1 fixes a bug that made fscd segfault when removing a killed process and
being in debug mode.

(jdf)

2012-05-09 21:11:52 UTC MAIN commitmail json YAML

Note PKGREVISION bump of tex-bbold-type1.

(minskim)

2012-05-09 21:02:04 UTC MAIN commitmail json YAML

2012-05-09 19:21:39 UTC MAIN commitmail json YAML

Updated textproc/p5-CAM-PDF

(rhaen)

2012-05-09 19:18:54 UTC MAIN commitmail json YAML

Changes:
1.57  17 Dec 2011
      [FIXES]
      - Test for undef streams instead of truth, to allow streams like '' or '0'
        Thanks to Thorsten Schwander for the patch
      - Failed to parse PDF 1.5 cross reference streams where a
        1024-byte boundary happened to fall between "endstream" and
        "endobj" do to a logic error.
        Thanks to Thorsten Schwander for the report and fix suggestion

1.56  13 Dec 2011
      [FIXES]
      - Workaround for corrupt PDFs that have 'n' records in their index that point to byte zero
        of the file. Silently treat those as 'f' records. Yet another case of Acrobat supporting
        broken PDFs, so the rest of us have to support them too...
        Thanks to Mark Hunnibell for a sample PDF that demonstrated the problem

(rhaen)

2012-05-09 18:39:36 UTC MAIN commitmail json YAML

Explicitly disable TWAIN support for Mac OS X:
1.) It doesn't seem to get detected under Mac OS X Lion.
2.) It doesn't compile under Mac OS X Snow Leopard,
    see <https://bugzilla.gnome.org/show_bug.cgi?id=675510>.
While here really remove the conditional package list handling related
to TWAIN support.

No package revision bump necessary as the binary package doesn't change
on the one Mac OS X version where the package actually built.

(tron)

2012-05-09 11:58:30 UTC MAIN commitmail json YAML

p5-DBD-mysq -> p5-DBD-mysql in CHANGES

(mspo)

2012-05-09 11:54:31 UTC MAIN commitmail json YAML

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

(obache)

2012-05-09 11:54:15 UTC MAIN commitmail json YAML

Update adobe-flash-plugin10.1 to 10.3.183.19, to resolve APSB12-09.

(obache)

2012-05-09 11:45:12 UTC MAIN commitmail json YAML

Updated multimedia/adobe-flash-plugin11 to 11.2.202.235

(obache)

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

Update adobe-flash-plugin11 to 11.2.202.235, for resolve APSB12-09.

(obache)

2012-05-09 11:36:53 UTC MAIN commitmail json YAML

Updated devel/zlib to 1.2.7

(adam)

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

Changes in 1.2.7:
- Replace use of memmove() with a simple copy for portability
- Test for existence of strerror
- Restore gzgetc_ for backward compatibility with 1.2.6
- Fix build with non-GNU make on Solaris
- Require gcc 4.0 or later on Mac OS X to use the hidden attribute
- Include unistd.h for Watcom C
- Use __WATCOMC__ instead of __WATCOM__
- Do not use the visibility attribute if NO_VIZ defined
- Improve the detection of no hidden visibility attribute
- Avoid using __int64 for gcc or solo compilation
- Cast to char * in gzprintf to avoid warnings
- Fix make_vms.com for VAX
- Don't use library or built-in byte swaps
- Simplify test and use of gcc hidden attribute
- Fix bug in gzclose_w() when gzwrite() fails to allocate memory
- Add "x" (O_EXCL) and "e" (O_CLOEXEC) modes support to gzopen()
- Fix bug in test/minigzip.c for configure --solo
- Fix contrib/vstudio project link errors
- Add ability to choose the builder in make_vms.com
- Add DESTDIR support to mingw32 win32/Makefile.gcc
- Fix comments in win32/Makefile.gcc for proper usage
- Allow overriding the default install locations for cmake
- Generate and install the pkg-config file with cmake
- Build both a static and a shared version of zlib with cmake
- Include version symbols for cmake builds
- If using cmake with MSVC, add the source directory to the includes
- Remove unneeded EXTRA_CFLAGS from win32/Makefile.gcc
- Move obsolete emx makefile to old
- Allow the use of -Wundef when compiling or using zlib
- Avoid the use of the -u option with mktemp
- Improve inflate() documentation on the use of Z_FINISH
- Recognize clang as gcc
- Add gzopen_w() in Windows for wide character path names
- Rename zconf.h in CMakeLists.txt to move it out of the way
- Add source directory in CMakeLists.txt for building examples
- Look in build directory for zlib.pc in CMakeLists.txt
- Remove gzflags from zlibvc.def in vc9 and vc10
- Fix contrib/minizip compilation in the MinGW environment
- Update ./configure for Solaris, support --64
- Remove -R. from Solaris shared build (possible security issue)
- Avoid race condition for parallel make (-j) running example
- Fix type mismatch between get_crc_table() and crc_table
- Fix parsing of version with "-" in CMakeLists.txt
- Fix the path to zlib.map in CMakeLists.txt
- Force the native libtool in Mac OS X to avoid GNU libtool
- Add instructions to win32/Makefile.gcc for shared install

(adam)

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

Updated editors/emacs to 23.4nb2

(wiz)

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

Fix accepting keys in text mode; breakage caused by glib2 update.
Patch from Debian, found for OpenBSD by Antoine Jacoutot and
mentioned on current-users by Matthieu Herrb.

Bump PKGREVISION.

(wiz)

2012-05-09 09:28:32 UTC MAIN commitmail json YAML

update to 1.4.1
changes:
-Addition of the GiveLife Color System(R) swatch palettes
-Addition of undo steps for path operations and page moving
-Enhancements to scripter
-Translation updates
-Relocation of profiles and swatches to the share directory
-bugfixes

pkgsrc note: switched from lcms1 to lcms2 -- this was not necessary
technically, but it is harder to keep cmake from picking up lcms2
if both versions are present

(drochner)

2012-05-09 07:53:04 UTC MAIN commitmail json YAML

Move libpciaccess to dri option section.

(wiz)

2012-05-09 07:47:31 UTC MAIN commitmail json YAML

Fix typo in CONFIGURE_ARGS, from Noud de Brouwer in PR 46431

(dholland)

2012-05-09 06:53:22 UTC MAIN commitmail json YAML

Note update of lang/php53 package to 5.3.13.

(taca)

2012-05-09 06:52:52 UTC MAIN commitmail json YAML

Update php53 pacakge to 5.3.13 (PHP 5.3.13).

08 May 2012, PHP 5.3.13
- CGI
  . Improve fix for PHP-CGI query string parameter vulnerability, CVE-2012-2311.
    (Stas)

(taca)

2012-05-09 06:27:05 UTC MAIN commitmail json YAML

Another missing header. These are only failing on some of my boxes...

(dholland)

2012-05-09 06:22:13 UTC MAIN commitmail json YAML

Updated mail/p5-Mail-DKIM to 0.38nb2

(wiz)

2012-05-09 06:21:56 UTC MAIN commitmail json YAML

Updated security/p5-Net-DNS-SEC to 0.16nb3

(wiz)

2012-05-09 06:21:39 UTC MAIN commitmail json YAML

Since p5-Crypt-OpenSSL-RSA versions before 0.27 are broken with
perl-5.14, and perl-5.14 is pkgsrc's default, depend on at least that
version. Bump PKGREVISION.

(wiz)

2012-05-09 06:13:33 UTC MAIN commitmail json YAML

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

Oops, apparently forgot to commit this.

(dholland)

2012-05-09 05:38:18 UTC MAIN commitmail json YAML

2012-05-09 05:31:28 UTC MAIN commitmail json YAML

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

require msgfmt to build.

(obache)

2012-05-09 05:11:41 UTC MAIN commitmail json YAML

Updated devel/p5-Want

(rhaen)

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

Changes:
0.19  Sat 30 Jul 2011 17:07:16 BST
    - Change tests to avoid the new warning 'Useless assignment to a temporary' added in 5.15.

0.20  Sun  5 Feb 2012 17:43:22 GMT
    - Remove a test that was testing the behaviour of perl, rather than of this module,
      and was testing an aspect of perl’s behaviour that has changed (bf8fb5ebd) in
      in such a way that the test was failing with bleadperl.

0.21  Wed 29 Feb 2012 16:47:58 GMT
    - Avoid leaking the RHS of an lnoreturn lvalue sub, thanks to Father Chrysostomos
      https://rt.cpan.org/Public/Bug/Display.html?id=72083

(rhaen)

2012-05-09 03:57:45 UTC MAIN commitmail json YAML

2012-05-08 23:44:31 UTC MAIN commitmail json YAML

2012-05-08 23:13:38 UTC MAIN commitmail json YAML

Updated pkgtools/lintpkgsrc to 4.83

(sbd)

2012-05-08 23:11:48 UTC MAIN commitmail json YAML

In parse_makefile_vars() inprove the pattern used to remove comments so
that it doesn't match on backslash quoted hash characters. PR/46422

Bump PKGVERSION.

(sbd)

2012-05-08 22:43:39 UTC MAIN commitmail json YAML

Added net/dnscheck version 1.2.6

(pettai)

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

Added dnscheck pkg

(pettai)

2012-05-08 22:39:39 UTC MAIN commitmail json YAML

DNSCheck is a program that was designed to help people check, measure and
hopefully also understand the workings of the Domain Name System, DNS.
When a domain (aka zone) is submitted to DNSCheck it will investigate
the domain's general health by traversing the DNS from root (.) to
the TLD (Top Level Domain, like .SE) to eventually the nameserver(s)
that holds the information about the specified domain (like iis.se).
Some other sanity checks, for example measuring host connectivity,
validity of IP-addresses and control of DNSSEC signatures
will also be performed.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(pettai)

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

Updated databases/p5-DBD-mysq to 4.021

(rhaen)

2012-05-08 21:47:37 UTC MAIN commitmail json YAML

- updated to 4.021

Changes:
2011-08-15 Patrick Galbraith (work of others) <patg at patg dot net> (4.021)
* Fix to enable PERL_NO_GET_CONTEXT to spee up DBD on thread Perls
(Dave Mitchell <davem at iabyn dot com>) Thank you!
* Fix to is_prefix not being exported by mysql Aran Deltax <bluefeet at gmail dot com> Thank you!
* Eliminate DBIS usage Dagfinn Ilmari Manns奪ker <ilmari at ilmari dot org> Thank you!
* Enhanced / Fixed server side prepared statement checks (Steven Hartland) Thank you!
* Fix missprint in doc of DBD::mysql of mysql_bind_type_guessing (Perlover http://blog.perloever.com) Thank you!
* Misprint in lib/DBD/mysql.pm (Perlover) Thank you!

(rhaen)

2012-05-08 21:39:18 UTC MAIN commitmail json YAML

Updated security/p5-Crypt-OpenSSL-RSA to 0.28

(pettai)

2012-05-08 21:17:17 UTC MAIN commitmail json YAML

0.28  Thu Aug 25 2011 - Moritz Onken (PERLER)
        - RT 56454 - Win32 compatibility patch (kmx@cpan.org)

0.27  Wed Jun 29 2011 - Todd Rinaldo (TODDR)
        - RT 65947 - Fix RSA.pm break with perl 5.14+

(pettai)

2012-05-08 20:58:30 UTC MAIN commitmail json YAML

Updated sysutils/shelldap to 0.5

(imil)

2012-05-08 20:57:03 UTC MAIN commitmail json YAML

Updated to 0.5

* Fix bug introduced in rev:a3a710f720dd with passwd arguments.
* Backout the additional objectClasses patch for mkdir: same behavior can
  be acheived with 'touch', less complex to leave it as is.
* Add a --version flag.
* Small documentation fixes, add better verbosity when saving connection
  cache data.
* Make sure the hasSubordinates attribute is defined before checking its
  value.
* fix 'ls -R' output, minor style cleanup
* Repair broken path behavior, remove unneeded #path_to_dn 'relative' flag.

(imil)

2012-05-08 20:57:00 UTC MAIN commitmail json YAML

Updated databases/p5-DBI

(rhaen)

2012-05-08 20:53:53 UTC MAIN commitmail json YAML

- Updated to 1.620

Changes:
=head2 Changes in DBI 1.620 (svn r15300) 25th April 2012

  Modified column renaming in fetchall_arrayref, added in 1.619,
    to work on column index numbers not names (an incompatible change).
  Reworked the fetchall_arrayref documentation.
  Hash slices in fetchall_arrayref now detect invalid column names.

=head2 Changes in DBI 1.619 (svn r15294) 23rd April 2012

  Fixed the connected method to stop showing the password in
    trace file (Martin J. Evans).
  Fixed _install_method to set CvFILE correctly
    thanks to sprout RT#76296
  Fixed SqlEngine "list_tables" thanks to David McMath
    and Norbert Gruener. RT#67223 RT#69260

  Optimized DBI method dispatch thanks to Dave Mitchell.
  Optimized driver access to DBI internal state thanks to Dave Mitchell.
  Optimized driver access to handle data thanks to Dave Mitchell.
  Optimized fetchall_arrayref with hash slice thanks
    to Dagfinn Ilmari Manns奪ker. RT#76520
  Allow renaming columns in fetchall_arrayref hash slices
    thanks to Dagfinn Ilmari Manns奪ker. RT#76572
  Reserved snmp_ and tree_ for DBD::SNMP and DBD::TreeData

(rhaen)

2012-05-08 20:33:24 UTC MAIN commitmail json YAML

Updated graphics/MesaLib to 7.4.4nb5

(wiz)

2012-05-08 20:33:15 UTC MAIN commitmail json YAML

Needs libpciaccess now when pulling in libdrm. Bump PKGREVISION.

(wiz)

2012-05-08 20:32:58 UTC MAIN commitmail json YAML

Updated x11/libdrm to 2.4.33

(wiz)

2012-05-08 20:32:47 UTC MAIN commitmail json YAML

Update to 2.4.33, provided by Francois Tigeot in PR 46384.
Enable nouveau support.

2.4.33:

radeon: add TN surface support
intel: Add some PCI IDs for Haswell
omap: add omapdrm support

2.4.32:

radeon_cs_setup_bo: Fix accounting if caller specified write and read domains
intel: Mark up with valgrind intrinsics to reduce false positives
configure: Fix pkg-config test in absence of valgrind
radeon: fix pitch alignment for scanout buffer
intel: Detect cache domain inconsistency with valgrind
intel: Fix a typo in decode error message
intel: Add decode for gen7 3DSTATE_WM
intel: Add decode for gen7 HIER_DEPTH_BUFFER
intel: Import a new batchbuffer for the gen7 test
Don't require pciaccess if Intel is disabled
Make drm/drm_fourcc.h portable to non-linux platforms
xf86drmMode.h: Add header protection
intel: Add support for overriding the PCI ID via an environment variable
intel: Add .aub file output support
intel: Bump the copyright dates on the bufmgr files
intel: Fix error check for I915_PARAM_HAS_LLC
intel: Add support for (possibly) unsynchronized maps
intel: Move the gen4-6 3DPRIMITIVE handling out of the switch statement
intel: Add per-dword decode of gen7 3DPRIMITIVE
intel: Quiet two more valgrind complaints with recent changes

2.4.31:

intel: add sprite ioctl defines and struct for i915 sprite code
intel: Add a regression test for 2D decode, which I'm about to refactor
intel: Track the current packet location in the decode context
intel: Drop the code for counting parsing failures
intel: Plumb the context through the decode callchain
intel: Use the context to simplify BR00 and BR01 decode
intel: Make instr_out take the decode context
intel: Avoid the need for most overflow checks by using a scratch page
intel: Put the "gen" shorthand chipset identifier in the context
intel: Parse the correct length for gen7 3DSTATE_MULTISAMPLE
intel: Add support for parsing 965 3d packets using helper functions
intel: Move the logic for getting 965 3d packet length to the packet table
intel: Make most of the logic for 965 3d packet length checks table-driven
intel: Add support for parsing gen7 URB packets
intel: Add decode for gen7 state pointers
intel: Add decode for gen7 constant buffer packets
intel: Add minimal decode for remaining gen7 packets in use
intel: Fix bufmgr_gem->gen for gen > 4
Don't build Intel DRM if $CHOST is not i?86-* or x86_64-*
intel: Fix build of Intel DRM on x86 systems
intel: query for LLC support
radeon: add surface allocator helper v10
drmModeFreeResources() always leaked some memory
Using sizeof() on a function parameter with an array type does not work
radeon: surface fix macro -> micro tile fallback
radeon: fix surface API for good before anyone start relying on it
radeon: add r600_pci_ids.h to header file

2.4.30:

libdrm: update drm headers from kernel, including new overlay ioctls & structs
intel: Reset vma list upon purge
tests/gem_flink: Check for MASTER before proceeding
intel: Import intel_decode.c from intel-gpu-tools
intel: Make intel_chipset handle devid directly
intel: Add IS_GEN[567] macros
intel: Reformat intel_decode.c from intel-gpu-tools using Lindent
intel: Get intel_decode.c minimally building
intel: Fix Wsigned-compare warnings (soon to be enabled)
intel: Fix a ton of signed vs unsigned and const char *warnings
intel: Add printflike warnings for instr_out
intel: Fix printf format warnings for intel_decode
intel: Remove c99ish variable declarations
intel: Turn on normal warnings for intel_decode.c build
intel: Disable unused decode_logic_op()
intel/intel_decode.c: Remove #include "intel_decode.h"
intel: Add an interface for setting the output file for decode
intel: Add a regression test program for intel_decode.c
intel: Add regression tests for batch decode
intel: Update for new i915_drm.h defines

2.4.29:

intel: Clean up mmaps on freeing the buffer
test/radeon: add missing files for dist
intel: Add an interface to limit vma caching
intel: Evict cached VMA in order to make room for new mappings
intel: Update map-count for an early error return during mapping
intel: Remove the fresh assertions used to debug the vma cacheing

2.4.28:

Fix compilation with -Werror=int-to-pointer-cast -Werror=pointer-to-int-cast
tests/radeon: radeon specific test
nouveau: Mark nouveau subchannel unbound nouveau_grobj_free
intel: limit aperture space to mappable area on gen3
intel: Unmap buffers during drm_intel_gem_bo_unmap

2.4.27:

Specify the return type explicitly
intel: fix the wrong method check for bo_get_subdata
intel: shared header for shader debugging
drm mode: fix drmIoctl wrapper
nouveau: assert argument cannot have side effects
modeprint.c: use PRIu64 for printing uint64_t
drm/intel: don't clobber bufmgr->pci_device
drm/i915: y tiling on i915G/i915GM is different
xf86drm.h : wrap C code for C++ compilation/linking
drm/test: handle usub being empty
drmtest: make check should fail so hard on unable to open device
modetest: use 24 bit depth on the framebuffer
tests: Add vmwgfx driver to probed drivers in tests
vbltest: Check error codes returned from libdrm
modetest: Check error message from pageflip ioctl
modetest: Print extra info if we fail to create a framebuffer
modetest: Call dirty fb on modeset
nouveau: free in error path if drmAvailable fails
intel: Use stdbool.h for dealing with boolean values
intel: Add an interface for removing relocs after they're added
intel: Don't call the SW_FINISH ioctl unless a CPU-mapped write was done
intel: Share the implementation of BO unmap between CPU and GTT mappings

2.4.26:

libkms: All current BO_TYPE are 32bpp
intel: Add interface to query aperture sizes

2.4.25:

don't try to build modetest without libkms
Build modetest for all chipsets, always build modeprint
drm: add dumb interface
Implement drmGetCap() to query device/driver capabilities
libkms: add dumb support
libdrm: oops fix get cap return value
build: Update autotools configuration
Cleanup gen2 tiling confusion
drm_mode: fix types on recently added ioctls
intel: Also handle mrb_exec fallback with ring == I915_EXEC_RENDER
libdrm: (revised) vblank wait on crtc > 1

2.4.24:

intel: Export CONSTANT_BUFFER addressing mode
nouveau: nvc0 drm has no concept of "notifier block"
nouveau: split pushbuf macros specific to nv04-nv50 out, and add nvc0
nouveau: fix up reloc_emit() to accept NULL target buffer
intel: Fallback to old exec if no mrb_exec is available
intel: compile fix for previous commit after rebasing
intel: Set the public handle after opening by name
intel: Remember named bo
libkms/radeon: Add backend
configure.ac: ac_define HAVE_RADEON
modetest: Create buffers using libkms
tests/modeprint: Remove needless dependency on drm_intel
tests/modeprint: Output masks as hex numbers
modetest: Do no flip twice to a current front buffer
intel: fix relaxed tiling on gen2
intel: Add I915_PARAM_HAS_RELAXED_DELTA

2.4.23:

intel: Downgrade error warnings to debug
nouveau: Define buffer object usage flags
nouveau: Let the user choose the push buffer size
nouveau: Define the HAS_PAGEFLIP getparam
intel: Prepare for BLT ring split
s/drmStrdup/strdup/
intel: enable relaxed fence allocation for i915
nouveau: Avoid unnecessary call to CPU_FINI
intel: Remove stale comment
intel: Shove the fake bufmgr subdata implementation into the fake bufmgr
intel: Remove gratuitous assert on bo_reference
intel: Drop silly asserts on mappings present at unmap time
intel: initialize bufmgr.bo_mrb_exec unconditionally
intel: Fix drm_intel_gem_bo_wait_rendering to wait for read-only usage too
nouveau: Add implicit pushbuf flush before gpuobj destruction
intel: Compute in-aperture size for relaxed fenced objects
intel: Add a forward declaration of struct drm_clip_rect
radeon: silence valgrind warnings by zeroing memory
intel: If the command is fenced inform the kernel
drm: don't do the create the node ourselves if we have udev
intel: Reorder need_fence vs fenced_command to avoid fences on gen4
tests: Update for ENOENT returns from unknown handles

2.4.22:

intel: Track tiling stride
intel: Defer tiling change to allocation
intel: Force stride to be 0 for I915_TILING_NONE
intel: Scan the cache for old bo once every second
intel: Print out debugging message following ENOSPC
intel: Sanitise strides for linear buffers and SET_TILING
intel: '===' != '=='
intel: Restore SET_TILING for non-flinked bo
intel: Only adjust the local stride used for SET_TILING in tiled alloc
intel: Limit tiled pitches to 8192 on pre-i965
intel: Suppress the error return from setting domains after mapping
Purge macro NEED_REPLIES
drm mode: Return -errno on drmIoctl() failure
Copy headers from kernel drm-core-next
libdrm: Fix PCI domain domain support
nouveau: accept both 0.0.16 and 1.x.x
Free the property blob along the error path
Avoid use of c++ reserved keyword "virtual" when using a C++ compiler
modetest: add edp and TV connector names to the connector name array
modetest: align fb pitch to 64 bytes
modetest: Fix drawing routines to use stride
nouveau: fix thinko in drm version check
nouveau: fix drm version check some more
intel: Replace open-coded drmIoctl with calls to drmIoctl()

2.4.21:

drm/radeon: add new cs command stream dumping facilities
nouveau: stop shipping nouveau_class.h
intel: Use the correct size when allocating reloc_target_info array
Make libkms build default OS-dependent
Correct the Solaris definitions of atomic_add & atomic_dec
radeon: use the const qualifier in radeon_cs_write_table
tests: add new vblank test
vbltest: Doesn't need intel stuff
intel: query whether a buffer is reusable
Pull in new kernel headers
Only build tests in make check
intel: Don't change tiling mode unless the kernel reports success
intel_bufmgr_fake: fix compile warning
Enable silent automake rules
libkms: Fix include paths
intel: Add support for kernel multi-ringbuffer API
Allow a buffer to point at itself and still get relocs
intel: Convert to untiled pitches if surface is too large for tiling
intel: Add more intermediate sizes of cache buckets between powers of 2
intel: Fix several other paths for buffers pointing at themselves
Fix radeon distcheck

(wiz)

2012-05-08 19:29:37 UTC MAIN commitmail json YAML

pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_Makefile.in@1.2 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_chromium-config.mk@1.3 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_src_base_base__paths.h@1.2 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_src_base_debug__util__posic.cc@1.4 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_src_base_file__util.h@1.3 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_src_base_file__util__bsd.cc@1.2 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_src_base_file__util__posix.cc@1.3 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_src_base_message__loop.cc@1.2 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_src_base_platform__file__posix.cc@1.2 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_src_base_platform__thread.h@1.2 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_src_base_platform__thread__posix.cc@1.5 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_src_base_process__util.h@1.2 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_src_base_process__util__bsd.cc@1.5 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_src_base_process__util__posix.cc@1.2 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_src_base_sys__info__posix.cc@1.3 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_src_base_third__party_nspr_prcpucfg.h@1.3 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_src_base_third__party_nspr_prtime.cc@1.2 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_src_build_build__config.h@1.5 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_src_chrome_common_ipc__channel__posix.h@1.2 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_src_chrome_common_ipc__message__utils.h@1.2 / diff
pkgsrc/devel/xulrunner/patches/patch-ipc_chromium_src_chrome_common_transport__dib.h@1.2 / diff

Note upstream bug report

(martin)

2012-05-08 18:44:11 UTC MAIN commitmail json YAML

Note PKGREVISION bump of teTeX-texmf.

(minskim)

2012-05-08 18:43:46 UTC MAIN commitmail json YAML

Resolve conflicts between tex-bbold, tex-extsizes, and teTeX-texmf.

(minskim)

2012-05-08 18:42:52 UTC MAIN commitmail json YAML

2012-05-08 18:41:28 UTC MAIN commitmail json YAML

Import tex-extsizes-doc-1.4a as print/tex-extsizes-doc.

This is documentation for tex-extsizes.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2012-05-08 18:41:18 UTC MAIN commitmail json YAML

Import tex-extsizes-1.4a as print/tex-extsizes.

Provides classes extarticle and extreport, extletter, extbook,
extproc which allow for documents with a base font of size 8-
20pt.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2012-05-08 18:29:45 UTC MAIN commitmail json YAML

2012-05-08 18:28:51 UTC MAIN commitmail json YAML

Import tex-bbold-doc-1.01 as fonts/tex-bbold-doc.

This is documentation for tex-bbold.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2012-05-08 18:28:38 UTC MAIN commitmail json YAML

Import tex-bbold-1.01 as fonts/tex-bbold.

A geometric sans serif blackboard bold font, for use in
mathematics; MetaFont sources are provided, as well as macros
for use with LaTeX. The Sauter font package has MetaFont
parameter source files for building the fonts at more sizes
than you could reasonably imagine. See the blackboard sampler
for a feel for the font's appearance.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2012-05-08 18:25:08 UTC MAIN commitmail json YAML

2012-05-08 18:23:29 UTC MAIN commitmail json YAML

2012-05-08 18:01:27 UTC MAIN commitmail json YAML

2012-05-08 18:00:16 UTC MAIN commitmail json YAML

Import tex-bbold-type1-doc-2011 as fonts/tex-bbold-type1-doc.

This is documentation for tex-bbold-type1.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

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

Import tex-bbold-type1-2011 as fonts/tex-bbold-type1.

The files offer an Adobe Type 1 format version of the 5pt, 7pt
and 10pt versions of the bbold fonts. The distribution also
includes a map file, for use when incorporating the fonts into
TeX documents, but no macro sets are provided (the fonts will
not provide the correct results using macros designed for use
with the MetaFont versions of the fonts. The fonts were
produced to be part of the TeX distribution from Y&Y; they were
generously donated to the TeX Users' Group when Y&Y closed its
doors as a business.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2012-05-08 16:55:45 UTC MAIN commitmail json YAML