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 (0m)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (41d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (153d) 

2024-05-12 15:00:35 UTC Now

2010-08-27 05:37:25 UTC MAIN commitmail json YAML

Updated databases/p5-gdbm to 5.12.1

(sno)

2010-08-27 05:32:59 UTC MAIN commitmail json YAML

Updating databases/p5-gdbm to be in sync with lang/perl5 (5.12.1)

- add license

(sno)

2010-08-27 05:31:16 UTC MAIN commitmail json YAML

Updated lang/perl5 to 5.12.1nb1

(sno)

2010-08-27 05:27:37 UTC MAIN commitmail json YAML

Updating lang/perl5 from 5.12.1 to 5.12.1nb1

pkgsrc changes:
- preparing for databases/p5-gdbm (using Makefile.common)
- supporting external access to perl install dirs (dirs.mk)
- fixing some errors/warnings from pkglint
- adding conflict to packages of CPAN modules which are in Perl5 code
  on the one hand and are broken with perl-5.10+

Bumping PKGREVISION (dependencies changed, rebuild highly recommended).
Recursive rebuild is not required.

(sno)

2010-08-27 05:15:46 UTC MAIN commitmail json YAML

Updated graphics/ruby-rcairo to 1.8.4

(obache)

2010-08-27 05:15:33 UTC MAIN commitmail json YAML

Update rcairo to 1.8.4.

Release 1.8.4 (2010-08-27) Kouhei Sutou <kou@cozmixng.org>)
===========================================================

Fixes
-----
  * Fix build system. (patch by kimura watasu and suggested by OBATA Akio)
  * Fix Windows gem. (reported by Dominic Sisneros)

Thanks
------
  * Dominic Sisneros
  * kimura wataru
  * OBATA Akio

(obache)

2010-08-27 05:06:48 UTC MAIN commitmail json YAML

Updated textproc/ruby-hikidoc to 0.0.5

(obache)

2010-08-27 05:06:18 UTC MAIN commitmail json YAML

Update hikidoc to 0.0.5.

!! Changes 0.0.5 from 0.0.4: 2010-08-26

* fix a bug: strings after non-WikiName expression are ignored
* new text decoration ``monospaced text``
* fix rake failure with Hoe 1.9.0 or later
* add syntax highlighting with google-code-prettify

(obache)

2010-08-27 03:43:20 UTC MAIN commitmail json YAML

Updated databases/p5-DBM-Deep to 2.0001

(seb)

2010-08-27 03:43:06 UTC MAIN commitmail json YAML

Update p5-DBM-Deep from version 2.0000 to version 2.0001.

Upstream changes:
2.0001 Aug 22 12:03:00 2010 PDT
    - Simply reading a hash or array element no longer causes autoviv-
      ification. (Dereferencing it does still.) This makes DBM::Deep
      comply with Perl's behaviour (RT#60391).

(seb)

2010-08-27 03:10:42 UTC MAIN commitmail json YAML

Mention math/py-networkx update to 1.2

(gls)

2010-08-27 03:09:18 UTC MAIN commitmail json YAML

Update math/py-networkx to 1.2.
>From PR pkg/43790 by Kamel Derouiche

pkgsrc changes:
- re-set LICENSE (modified-bsd).

upstream changes:

Networkx-1.2

Release date: 28 July 2010

See: https://networkx.lanl.gov/trac/timeline
New features

        * Ford-Fulkerson max flow and min cut
        * Closness vitality
        * Eulerian circuits
        * Functions for isolates
        * Simpler s_max generator
        * Compatible with IronPython-2.6
        * Improved testing functionality: import networkx; networkx.test() tests
entire package and skips tests with missing optional packages
        * All tests work with Python-2.4
        * and more, see
https://networkx.lanl.gov/trac/query?status=closed&group=milestone&milestone=networkx-1.2

Networkx-1.1

Release date: 21 April 2010

See: https://networkx.lanl.gov/trac/timeline
New features

        * Algorithm for finding a basis for graph cycles
        * Blockmodeling
        * Assortativity and mixing matrices
        * in-degree and out-degree centrality
        * Attracting components and condensation.
        * Weakly connected components
        * Simpler interface to shortest path algorithms
        * Edgelist format to read and write data with attributes
        * Attribute matrices
        * GML reader for nested attributes
        * Current-flow (random walk) betweenness and closeness.
        * Directed configuration model, and directed random graph model.
        * Improved documentation of drawing, shortest paths, and other
algorithms
        * Many more tests, can be run with ?import networkx; networkx.test()?
        * and much more, see
https://networkx.lanl.gov/trac/query?status=closed&group=milestone&milestone=networkx-1.1

API Changes
Returning dictionaries

Several of the algorithms and the degree() method now return dictionaries keyed
by node instead of lists. In some cases there was a with_labels keyword which is
no longer necessary. For example,

>>> G=nx.Graph()
>>> G.add_edge('a','b')
>>> G.degree() # returns dictionary of degree keyed by node
{'a': 1, 'b': 1}

Asking for the degree of a single node still returns a single number

>>> G.degree('a')
1

The following now return dictionaries by default (instead of lists) and the
with_labels keyword has been removed:

        * Graph.degree(), MultiGraph.degree(), DiGraph.degree(),
DiGraph.in_degree(), DiGraph.out_degree(), MultiDiGraph.degree(),
MultiDiGraph.in_degree(), MultiDiGraph.out_degree().
        * clustering(), triangles()
        * node_clique_number(), number_of_cliques(), cliques_containing_node()
        * eccentricity()

The following now return dictionaries by default (instead of lists)

        * pagerank()
        * hits()

Adding nodes

add_nodes_from now accepts (node,attrdict) two-tuples

>>> G=nx.Graph()
>>> G.add_nodes_from([(1,{'color':'red'})])

Examples

        * Mayvi2 drawing
        * Blockmodel
        * Sampson?s monastery
        * Ego graph

Bug fixes

        * Support graph attributes with union, intersection, and other graph
operations
        * Improve subgraph speed (and related algorithms such as
connected_components_subgraphs())
        * Handle multigraphs in more operators (e.g. union)
        * Handle double-quoted labels with pydot
        * Normalize betweeness_centrality for undirected graphs correctly
        * Normalize eigenvector_centrality by l2 norm
        * read_gml() now returns multigraphs

(gls)

2010-08-27 02:11:14 UTC MAIN commitmail json YAML

2010-08-27 02:07:33 UTC MAIN commitmail json YAML

Updated graphics/ruby-rcairo to 1.8.3

(obache)

2010-08-27 02:06:50 UTC MAIN commitmail json YAML

Update rcairo to 1.8.3.

Release 1.8.3 (2010-08-26) Kouhei Sutou <kou@cozmixng.org>)
===========================================================

Features
--------
  * Support cairo 1.8.10.
  * Support Ruby 1.9.2. (reported by Tasuku SUENAGA and kimura wataru)
  * Fix RGV -> HSV conversion. (patch by Yuta Taniguchi)
  * Support Cairo::Color as Hash key.

Thanks
------
  * Yuta Taniguchi
  * Tasuku SUENAGA
  * kimura wataru

(obache)

2010-08-26 19:16:05 UTC MAIN commitmail json YAML

Fix filesystems/glusterfs entry

(seb)

2010-08-26 17:42:37 UTC MAIN commitmail json YAML

Updated boost to 1.44.0

(adam)

2010-08-26 17:40:59 UTC MAIN commitmail json YAML

Changes 1.44.0:
New Libraries
* Meta State Machine: High-performance expressive UML2 finite state machines,
  from Christophe Henry
* Polygon: Booleans/clipping, resizing/offsetting and more for planar polygons
  with integral coordinates, from Lucanus Simonson.
Updated Libraries
* Accumulators
* Asio
* Config
* Filesystem
* Foreach
* Hash
* Iostreams
* Math
* MPL
* Multi-index Containers
* Proto
* Regex
* Thread
* TR1
* Type Traits
* uBLAS
* Utility
* Uuid
* Xpressive

(adam)

2010-08-26 14:29:38 UTC MAIN commitmail json YAML

2010-08-26 14:26:19 UTC MAIN commitmail json YAML

2010-08-26 14:18:08 UTC MAIN commitmail json YAML

2010-08-26 13:15:11 UTC MAIN commitmail json YAML

Added graphics/osg version 2.8.3

(adam)

2010-08-26 13:12:04 UTC MAIN commitmail json YAML

Added graphics/osg version 2.8.3

(adam)

2010-08-26 13:08:49 UTC MAIN commitmail json YAML

The OpenSceneGraph is an open source high performance 3D graphics toolkit, used
by application developers in fields such as visual simulation, games, virtual
reality, scientific visualization and modelling. Written entirely in Standard
C++ and OpenGL it runs on all Windows platforms, OSX, GNU/Linux, IRIX, Solaris,
HP-Ux, AIX and FreeBSD operating systems. The OpenSceneGraph is now well
established as the world leading scene graph technology, used widely in the
vis-sim, space, scientific, oil-gas, games and virtual reality industries.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(adam)

2010-08-26 11:57:19 UTC MAIN commitmail json YAML

+ python-2.6.6

(obache)

2010-08-26 11:53:54 UTC MAIN commitmail json YAML

- python-2.5.5, updated sevral months ago.

(obache)

2010-08-26 10:54:54 UTC MAIN commitmail json YAML

Updated math/maxima to 5.22.1

(asau)

2010-08-26 10:21:12 UTC MAIN commitmail json YAML

Update to Maxima 5.22.1

Changes in Maxima 5.22.1

  New items in core:

* function gensym: new
* function makelist: extensions

  Other revisions in core:

* improvements in specint (Laplace transform)
* improvements in Xmaxima user interface
* inverse properties for erf and friends
* function transpose: faster algorithm

  Other revisions in share:

* package graphs: new graph definitions, tutte and flow polynomials, bug fixes, other updates
* package draw: new object geomap, rename mesh to elevation_grid, other updates
* package descriptive: new functions smin, smax; functions mini, maxi now deprecated
* package simplify_sum: try to detect telescoping sums
* package ezunits: additional conversions, faster conversion algorithm
* package lapack: new function dgesv
* package colnew: improved interface functions
* package dynamics: bug fix
* package mnewton: bug fix
* package finance: update

  Bug fixes:

  3035313 - some array references translated incorrectly
  3029610 - integrate and %e_to_numlog
  3025038 - gruntz needs logexpand:true
  3024797 - @POSIX_SHELL@ always substitued by /bin/sh in configure.lisp
  3014545 - submatrix does not work as expected
  3012427 - tex2ooo.lisp invalid output
  3010829 - numerical evaluation of elliptic_ec fails for argument > 1
  3010525 - abs documentation doesn't explain mapping behavior
  3009011 - plot3d syntax
  3007061 - log(x^2) simplifies to 2 log(x) for all x
  3005820 - full_listify
  3002971 - limit fails where rat+subst works
  2999635 - trigrat(sin(1)) makes mess
  2998621 - conjugate(atan(x+%i*y)) wrong
  2997276 - zeta(3),numer; gives Lisp error
  2996542 - log(x) integration is incorrect.
  2996106 - at(diff(f(x,y),x,1,y,1),[x=a,y=b]) is wrong
  2996065 - Unevaluated numerical hypergeometric() call
  2992398 - sort doesn't give error for invalid comparison
  2991924 - Incorrect integration of rational functions
  2990307 - error for solve_rat_ineq
  2988544 - integrate(signum(abs(x)),x,-2,2);
  2988190 - atan2(1b20,-1b0); badly wrong
  2985866 - derivatives of functions of taylor polys
  2933097 - polyfactor not documented
  2905526 - lcm(0,6,0) --> divide by zero
  2806446 - ev_diff in vect.mac
  2805600 - depends() partially prevents diff() to work
  2789110 - solve, tan and atan depend on order of variables
  2784283 - psi[0](negative float)
  2781127 - bfpsi0 of complex
  2556133 - "at" should do parallel substitutions
  2036462 - Very long calculation time, normal ?
  2014941 - compositions of 'at'
  2011228 - vect redefines "." as commutative, was:Matrix multiplication
  1994295 - errormsg
  1961494 - translated functions & values list
  1959214 - integrate() and array having lisp style name
  1928142 - keepfloat breaks ratsubst() in some cases
  1758005 - compiler warning for rat3c
  1677217 - composistions of 'at'
  1663385 - declare multiplicative - wrong simplification
  1281740 - declare/featurep - strange behaviour
  1212598 - bug in the VECT.MAK - VECTORSIMP cross product
  1117533 - letsimp complains about assignment to %pi
  1114128 - 2nd argument in permanent
  1078046 - Alias atoms displayed after unorder()
  1046653 - input prompt appearing when it should not
  1003494 - scalefactors broken Maxima 5.9.0 (win)
    947808 - logcontract and ratfac
    838301  - vect negate cross product simplification
    754220 - Featurep and Declare inconsistent /FIX
    742909 - trigrat(sin(x/2)) makes a mess
  unnumbered - is(f("x")>0) causes an error.

(asau)

2010-08-26 06:52:07 UTC MAIN commitmail json YAML

Updated net/p5-IO-Socket-Multicast to 1.12

(sno)

2010-08-26 06:50:59 UTC MAIN commitmail json YAML

Updating net/p5-IO-Socket-Multicast from 1.11nb1 to 1.12

pkgsrc changes:
- fixing homepage

Upstream changes:
1.12    - Wed Apr 28 20:38:53 EST 2010
Test adjustments thankyou Christian W. (BRAMBLE)
Documentation updates and corrections (BRAMBLE)

(sno)

2010-08-26 06:46:30 UTC MAIN commitmail json YAML

Updated security/p5-Text-Password-Pronounceable to 0.30

(sno)

2010-08-26 06:46:00 UTC MAIN commitmail json YAML

Updating security/p5-Text-Password-Pronounceable from 0.28nb1 to 0.30

Upstream changes:
[Changes for 0.30 - 16 Aug 2010]
* Updated dist metadata and M::I

[Changes for 0.29 (unreleased) - 11 Sep, 2007]
* T::P::P->generate($len) works
* Fix behavior:
      T::P::P->new(2,10)->generate(6)
  was equivalent to
      T::P::P->generate(6,10)
  which is too subtle. Now it works just as
      T::P::P->generate(6,6)
* Improved warnings on bad arguments

(sno)

2010-08-26 06:42:16 UTC MAIN commitmail json YAML

Updated textproc/p5-String-ShellQuote to 1.04

(sno)

2010-08-26 06:41:44 UTC MAIN commitmail json YAML

Updating textproc/p5-String-ShellQuote from 1.03nb2 to 1.04

pkgsrc changes:
- add license definition
- make no compiler languages are used

Upstream changes:
1.04 Mon Jun  7 09:09:36 EDT 2010
    - Don't escape "=" unless it's in command position.  Thanks to Chip
      for the inspiration.
    - Use "#!perl" in test.t (closes #38072).
    - Don't try to test or install the shell-quote script on Windows
      (closes #46445).

1.03  Tue May  3 06:47:39 EDT 2005
    - Add shell-quote script.

(sno)

2010-08-26 06:37:30 UTC MAIN commitmail json YAML

Updated security/p5-Crypt-SSLeay to 0.58

(sno)

2010-08-26 06:37:10 UTC MAIN commitmail json YAML

Upating security/p5-Crypt-SSLeay from 0.57nb4 to 0.58

Upstream changes:
0.58 2010-08-25 14:06:30 UTC

- Bump version number for Crypt::SSLeay to 0.58 and Net::SSL to 2.85 in
  preparation for release.
- Fix typo in POD is SSLeay.pm s/PEM0encoded/PEM encoded/ (checked
  http://github.com/gitpan/Crypt-SSLeay/blob/9a1582ee1e4d132ae7cf9497bb83144786425d73/SSLeay.pm)
- Update Changes and TODO. Regenerate README and META.yml. Update package
  author. Minor POD fixes.

0.57_05 2010-08-15 17:41:21 UTC

- Fix for NO_PROXY support in Net::SSL (bug #57836)
- Bump Net::SSL version number to 2.84_02 after changes
- Fix file/dir permissions (bug #60338)
- Review warnings when compiling SSLeay.xs against older versions of OpenSSL.
  Warnings are due to OpenSSL.
- Add clarification regarding $ENV{HTTPS_CA_FILE} and $ENV{HTTPS_CA_DIR} to the
  POD.
- Other POD related changes:
    * Remove historic information in README about platforms where the package
      was successfully built.
    * Reformat acknowledgements. TODO: Add more people.
    * Fix link to Net-SSLeay.
    * Add note about the --live-tests command line option
    * Generate README from POD.
    * Formatting fixes.
    * Update copyright notice.

0.57_04 2010-08-11 00:22:33 UTC

- Reorganize Makefile.PL to break individual steps in to subroutines so as to
  facilitate localized future modifications. Whether there was any point to
  this remains to be seen.
- In Makefile.PL, accommodate ActiveState+MingW configuration.
- Pick the correct lib location for Strawberry Perl (bug #60230).
- Apply fixes in bug reports #59312 and #33954 to Net/SSL.pm.
- Bump version number in Net/SSL.pm to indicate development release.

0.57_03 2010-08-09 20:12:30 UTC

- If the last component of $inc_dir is 'openssl', set $inc_dir to its parent
  and set $prefix to 'openssl'. Otherwise, leave $inc_dir as is and set $prefix
  to '' (I hope this fixes bugs #28431, #28680, #32084, #43084, #54103 without
  breaking anything).
- Improved OpenSSL detection on Win32/Strawberry Perl (bug #49285).
- Add MIME::Base64 as a prerequisite as Net::SSL needs it.
- exit 0 if OpenSSL can't be found to avoid superfluous reports from CPAN
  Testers.
- Add \ to $opt_bench in eg/net-ssl-test (bugs #30931, #39363).

0.57_02 2010-08-08 18:27:40 UTC

- Refactor the version detection algorithm in Makefile.PL to handle all known
  variations of version number encoding. Should fix bug #52408.

0.57_01 2008-02-18 14:42:32 UTC

- use #include <..> rather than #include "..." in
  crypt_ssleay_version.h.
- add command-line switch to avoid live tests (bug #30268).
- skip tests in t/01-connect.t if 443 is already in use (bug #30985).
- make code gcc -Wwrite-strings compatible (bug #31926).

(sno)

2010-08-26 06:32:42 UTC MAIN commitmail json YAML

Updated time/p5-DateTime-TimeZone to 1.21

(sno)

2010-08-26 06:32:06 UTC MAIN commitmail json YAML

Updating time/p5-DateTime-TimeZone from 1.20nb1 to 1.21

Upstream changes:
1.21    2010-08-20
- This release is based on version 2010l of the Olson database. This release
  includes updates for Egypt and Palestine.

(sno)

2010-08-26 06:02:07 UTC MAIN commitmail json YAML

patch-ac has been changed

(adam)

2010-08-26 05:51:08 UTC MAIN commitmail json YAML

Updated mail/clamav to 0.96.2

(adam)

2010-08-26 05:49:30 UTC MAIN commitmail json YAML

Changes 0.96.2:
* contrib: add safe_clamd from Luca
* freshclam: uses private symbol which changed proto, change name to prevent
  crash
* libclamav: fix callback_sigload
* clamdscan: fix parsing of virus names in extended mode and --stream
* libclamav/c++/detect.cpp: Mac OS X can run 64-bit apps on 32-bit kernel
* libclamav/others.h: bump f-level
* sigtool/sigtool.c: fix handling of --datadir
* libclamav/matcher-ac.c: improve offset handling
* libclamav/7z/Archive/7z/7zDecode.c: shut up a warning
* libclamav/autoit.c: properly resume from empty files regression introduced
  in ac867aad
* libclamav/elf.c: fix zero mem alloc warning
* win32: fix libclamav's triple and fix GetVersion
* libclamav/bytecode.c: save lsig counts/offsets
* libclamav/{bytecode,matcher}.c: matchicon API
* libclamav/pe_icons.c: BE fixes
* more...

(adam)

2010-08-26 05:22:55 UTC MAIN commitmail json YAML

Updated devel/p5-Class-Accessor-Grouped to 0.09004

(sno)

2010-08-26 05:22:15 UTC MAIN commitmail json YAML

Updating devel/p5-Class-Accessor-Grouped from 0.09003nb1 to 0.09004

Upstream changes:
0.09004 Wed Aug 11 04:23:15 2010
    - Changed the way Class::XSAccessor is invoked if available
      (recommended by C::XSA author)
    - Modified internal cache names to avoid real accessor clashes
    - Some micro-optimizations for get_inherited
    - Fixed field names with a single quote in them (patch from Jason Plum)

(sno)

2010-08-26 05:21:29 UTC MAIN commitmail json YAML

Updated devel/p5-Class-XSAccessor to 1.07

(sno)

2010-08-26 05:21:08 UTC MAIN commitmail json YAML

Updating devel/p5-Class-XSAccessor from 1.05nb1 to 1.07

Upstream changes:
1.07  Sun Aug 15 14:41 2010
  - Include two new test files for the fix in 1.06.
  - Define PERL_CORE, but *only* while including XSUB.h to get
    a significant speed-up (see XSAccessor.xs for an explanation).
    Idea from Chocolateboy. Complaints from rightfully annoyed
    perl5-porters (in particular but not limited to Nicholas)
    go to Steffen.

1.06  Sat Aug 14 20:21 2010
  - Add sanity checks to make sure we don't segfault on
    invalid invocants (chocolateboy)

(sno)

2010-08-26 05:12:17 UTC MAIN commitmail json YAML

Updated devel/p5-Config-General to 2.49

(sno)

2010-08-26 05:11:24 UTC MAIN commitmail json YAML

Updating devel/p5-Config-General from 2.48 to 2.49

Upstream changes:
2.49
- fixed rt.cpan.org#56532, '#' missed during fix for
  56370 in 2.45.

- added test case for this too

(sno)

2010-08-26 00:14:36 UTC MAIN commitmail json YAML

reverted recent tex-pdftex update

(jnemeth)

2010-08-26 00:13:49 UTC MAIN commitmail json YAML

Revert previous.  It is actually web2c which depends libpng.  Not
sure why I had build problems, possibly the dependency chain got
messed up somewhere.

(jnemeth)

2010-08-25 23:07:28 UTC MAIN commitmail json YAML

Updated www/p5-Starlet to 0.10

(seb)

2010-08-25 23:07:00 UTC MAIN commitmail json YAML

Update p5-Starlet from version 0.08nb1 to version 0.10.

Pkgsrc changes:
- adjust dependencies

Upstream changes:
0.10
- switch from alarm-based polling to select-based
- use TCP_DEFER_ACCEPT on linux
- performance tweaks

0.09
- [bugfix] enable keepalive when --max-keepalive-reqs=n (n>1) is set
- accept --max-workers=n option (for better interoperability w. Starman)

(seb)

2010-08-25 22:59:39 UTC MAIN commitmail json YAML

Updated sysutils/brasero to 2.30.2nb1

(jnemeth)

2010-08-25 22:57:15 UTC MAIN commitmail json YAML

this package uses libsoup24

(jnemeth)

2010-08-25 22:54:55 UTC MAIN commitmail json YAML

Updated www/p5-Plack to 0.9945

(seb)

2010-08-25 22:54:25 UTC MAIN commitmail json YAML

Update p5-Plack from version 0.9943nb1 to version 0.9945.

Pkgsrc changes:
- adjust dependencies

Upstream changes:
0.9945  Thu Aug 19 16:24:30 PDT 2010
        - Support executing (non-perl) CGI scripts in CGIBin and WrapCGI
        - Fixed tests for win32

0.9944  Sun Aug  8 23:35:52 PDT 2010
        - Fixed Restarter for Starlet where SIGTERM doesn't quit the process (chiba)

(seb)

2010-08-25 22:50:13 UTC MAIN commitmail json YAML

Cater to compilers too stupid to interpret a bitwise OR in a template
argument as a constant.  From https://svn.boost.org/trac/boost/ticket/4146
This fixes building boost-libs with lang/gcc34.

(tez)

2010-08-25 22:44:45 UTC MAIN commitmail json YAML

Updated devel/p5-App-perlbrew to 0.10

(seb)

2010-08-25 22:44:30 UTC MAIN commitmail json YAML

Update p5-App-perlbrew from version 0.09nb1 to version 0.10.

Pkgsrc changes:
- adjust dependencies

Upstream changes:
0.10:
- Use File::Path::Tiny to avoid the api incompatibility of File::Path.
- yanick++ and castaway++ fixes docmentation
- gfx++ made it accept -Dopt style flags as Perl Configurate does.
- (Danijel Tasov)++ added '-n' option -- no test!
- xsawyerx++ fixes RT #57672, #60123, and GH #9
- Fixes #59729

(seb)

2010-08-25 22:36:22 UTC MAIN commitmail json YAML

Note initial addition of p5-File-Path-Tiny version 0.1 as
devel/p5-File-Path-Tiny into The NetBSD Packages Collection.

The Perl 5 module File::Path::Tiny provides recursive versions of
mkdir() and rmdir() with as little code and overhead as possible.

(seb)

2010-08-25 22:35:52 UTC MAIN commitmail json YAML

Add & enable p5-File-Path-Tiny

(seb)

2010-08-25 22:35:39 UTC MAIN commitmail json YAML

Initial import of p5-File-Path-Tiny version 0.1 in the NetBSD
Packages Collection.

The Perl 5 module File::Path::Tiny provides recursive versions of
mkdir() and rmdir() with as little code and overhead as possible.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(seb)

2010-08-25 22:09:15 UTC MAIN commitmail json YAML

Updated devel/p5-Moose to 1.10

(seb)

2010-08-25 22:09:05 UTC MAIN commitmail json YAML

Update p5-Moose from version 1.09nb1 to version 1.10.

Pkgsrc changes:
- adjust dependencies

Upstream changes:
1.10 Sun, Aug 22, 2010

  [API CHANGES]

  * The long-deprecated alias and excludes options for role applications now
    issue a deprecation warning. Use -alias and -excludes instead. (Dave
    Rolsky)

  [BUG FIXES]

  * Inlined code no longer stringifies numeric attribute defaults. (vg, doy)

  * default => undef now works properly. (doy)

  * Enum type constraints now throw errors if their values are nonsensical.
    (Sartak)

  [ENHANCEMENTS]

  * Optimizations that should help speed up compilation time (Dave Rolsky).

(seb)

2010-08-25 22:08:55 UTC MAIN commitmail json YAML

Updated devel/p5-Class-MOP to 1.07

(seb)

2010-08-25 22:08:45 UTC MAIN commitmail json YAML

Update p5-Class-MOP from version 1.04nb1 to version 1.07.

Upstream changes:
1.07 Tue, Aug 25, 2010

  [BUG FIXES]

  * Fix a mysterious error reported by Piers Cawley. The error showed up as
    "Can't use an undefined value as a symbol reference at
    /usr/local/lib/perl/5.10.1/Class/MOP/Mixin/HasMethods.pm line 167." (Dave
    Rolsky)

1.06 Sun, Aug 23, 2010

  [BUG FIXES]

  * Version 1.05 no longer reported constants as methods, except with Perl
    5.8.x, and doing so in 5.8.x caused test failures. Constants are now
    _expected_ to be reported as methods, and we explicitly test this. (Dave
    Rolsky)

1.05 Sun, Aug 22, 2010

  [ENHANCEMENTS]

  * Refactorings and improvements to how defaults are handled, particularly
    for inlined code (doy).

  * Optimizations that should help speed up compilation time (Dave Rolsky).

(seb)

2010-08-25 21:30:43 UTC MAIN commitmail json YAML

Updated devel/p5-Module-CoreList to 2.37

(seb)

2010-08-25 21:30:18 UTC MAIN commitmail json YAML

Update p5-Module-CoreList from version 2.36 to version 2.37.

Upstream changes:
2.37    Tue Jul 20 2010
  - Updated for 5.13.4
  - Remove 'Filespec' module. It never existed in the core and is supposed to be
    'VMS::Filespec' instead.

(seb)

2010-08-25 21:28:29 UTC MAIN commitmail json YAML

tweak a bit more perfuse's entry

(seb)

2010-08-25 21:13:08 UTC MAIN commitmail json YAML

Use proper form for new perfuse package.

(darcy)

2010-08-25 19:53:58 UTC MAIN commitmail json YAML

Updated devel/p5-IPC-Run3 to 0.044

(sno)

2010-08-25 19:53:29 UTC MAIN commitmail json YAML

Updating devel/p5-IPC-Run3 from 0.043nb1 to 0.044

pkgsrc changes:
- add license definition

Upstream changes:
0.044 2010-08-22
  ignore user-defined __DIE__ handler in _type (Jeff Lavallee)
  Added test for __DIE__ handler behavior

(sno)

2010-08-25 19:47:42 UTC MAIN commitmail json YAML

Updated devel/p5-PAR to 1.002

(sno)

2010-08-25 19:47:19 UTC MAIN commitmail json YAML

Updating devel/p5-PAR from 0.994nb1 to 1.002

pkgsrc changes:
- adjusting module type
- adjusting depends to catch core module AutoLoader right

Upstream changes:
[Changes for 1.002 - Jul 25, 2010]
  - Fixes to VERSIONs of PAR::Setup*.
  - No change in behaviour since 1.001

[Changes for 1.001 - Jul 25, 2010]
  - RT #57399: extract everything (including DLLs) in File::ShareDir
    directories. Module::ScanDeps classifies everything in
    File::ShareDir directories as "data", but PAR uses it's own
    heuristics what to extract from a .par.
  - Previous release was missing META.yml.
  - Upgrade Module::Install to 1.00

[Changes for 1.000 - Apr 10, 2010]
  - Fix defined(%hash) deprecation warning in PAR::Heavy

(sno)

2010-08-25 19:33:59 UTC MAIN commitmail json YAML

Updated converters/p5-JSON-XS to 2.300

(sno)

2010-08-25 19:33:35 UTC MAIN commitmail json YAML

Updating converters/p5-JSON-XS from 2.290nb1 to 2.300

Upstream changes:
2.3  Wed Aug 18 01:26:47 CEST 2010
- make sure decoder doesn't change the decoding in the incremental
          parser (testcase provided by Hendrik Schumacher).
- applied patch by DaTa for Data::Dumper support in json_xs.
        - added -t dump support to json_xs, using Data::Dump.
        - added -f eval support to json_xs.

(sno)

2010-08-25 19:30:55 UTC MAIN commitmail json YAML

Updated converters/p5-JSON to 2.22

(sno)

2010-08-25 19:30:23 UTC MAIN commitmail json YAML

Updating converters/p5-JSON from 2.21nb1 to 2.22

Upstream changes:
2.22  Wed Aug 25 12:46:13 2010
[JSON]
- added JSON::XS installing feature in Makefile.PL
    with cpan or cpanm (some points suggested by gfx)
- check that to_json and from_json are not called as methods (CHORNY)
[JSON::PP]
- modified for -Duse64bitall -Duselongdouble compiled perl.
    11_pc_expo.t too. (these are patched by H.Merijn Brand)

(sno)

2010-08-25 19:26:58 UTC MAIN commitmail json YAML

Updated devel/p5-AnyEvent to 5.271

(sno)

2010-08-25 19:26:18 UTC MAIN commitmail json YAML

Updating devel/p5-AnyEvent from 5.251nb1 to 5.271

Upstream changes:
5.271  Tue Jun  8 12:05:46 CEST 2010
- backport to perl 5.8.x.

5.27  Sun Jun  6 12:12:05 CEST 2010
- postpone differently in AnyEvent::Socket now, as
          when not, canceling the connection attempt might fail
          (found by Felix Antonius Wilhelm Ostmann).
- explicitly check for non-stream sockets in AE::Handle, too many
          clueless people fell into the trap of this somehow working.
- simplified and reworked the "OTHER MODULES" section.
        - better/more condvar examples.

5.261 Wed Apr 28 16:13:36 CEST 2010
- AF_INET6 was not properly used from Socket6 during configuration
          time (found by Andy Grundman).

5.26  Mon Apr 12 04:49:35 CEST 2010
- don't generate spurious readyness notifications when select
          returns EINTR in the pure perl backend (analysed and testcase
          by Bas Denissen).
        - give same examples in SYNOPSIS sections of AnyEvent and AE.
        - provider faster implementations for AE::time/now/now_update for
          EV and Perl backends.
        - provide faster AE::cv and AE::time implementations for all
          backends.
        - no longer support lower/mixed-case signal names (this was
          never documented nor universally supported).
        - some more memory ??-optimisations, and somewhat less messy
          code to cope with both AnyEvent and AE APIs.

(sno)

2010-08-25 17:54:05 UTC MAIN commitmail json YAML

Note update of the "squid31" package to version 3.1.7.

(tron)

2010-08-25 17:53:44 UTC MAIN commitmail json YAML

Update "squid31" package to version 3.1.7. Change since 3.1.6:
- Regression Bug 3021: Large DNS reply causes crash
- Regression Bug 3011: ICAP, HTTPS, cache_peer probe IPv4-only port fixes
- Regression Bug 2997: visible_hostname directive no longer matches docs
- Bug 3012: deprecate sslBump and support ssl-bump spelling in http_port
- Bug 3006: handle IPV6_V6ONLY definition missing
- Bug 3004: Solaris 9 SunStudio 12 build failure
- Bug 3003: inconsistent concepts in documentation of cache_dir
- Bug 3001: dnsserver link issues
- HTTP/1.1: default keep-alive for 1.1 clients (bug 3016)
- HTTP/1.1: Improved Range header field validation
- HTTP/1.1: Forward multiple unknown Cache-Control directives
- HTTP/1.1: Stop sending Proxy-Connection header
- Fix 32-bit wrap in refresh_pattern min/max values
- ... and several documentation corrections.

(tron)

2010-08-25 17:52:36 UTC MAIN commitmail json YAML

Updated net/quagga-devel to 0.99.17

(gdt)

2010-08-25 17:52:24 UTC MAIN commitmail json YAML

Update to 0.99.17.

The most important change is in correcting handling of malformed data
in BGP sessions.

bgpd:
    fix handling of AS path data
    tighten bounds checking in RR ORF msg reader

ospfd:
    Only refresh external default route once.
    Make sure ospf_distribute_list_update_timer() eventually runs.
    Make sure all external routes are updated.

zebra:
    fix infinite loop when deleting an interface

ospf6d:
    Fix crash when '[no] ipv6 ospf6 advertise prefix-list' is in startup-config

isisd:
    change ISIS_METHOD to use C preprocessor

other:
    build: ignore mkinstalldirs and texinfo.tex
    build: Add QuaggaId to README.NetBSD
    build/extra: Enhance README.NetBSD make/gmake decision.
    git: add pointers to out-of-tree work
    git: add (generated) m4 files to .gitignore
    Update for git and emphasize asking for good reports.
    doc: fixed spelling in bgpd.texi

(gdt)

2010-08-25 13:22:34 UTC MAIN commitmail json YAML

Remove example packages that don't exist anymore.

(reed)

2010-08-25 10:44:40 UTC MAIN commitmail json YAML

Add builtin support for xz.

(obache)

2010-08-25 10:43:34 UTC MAIN commitmail json YAML

Add builtin lzcat and xzcat.

(obache)

2010-08-25 09:59:52 UTC MAIN commitmail json YAML

Use bash to run configure script

(jmcneill)

2010-08-25 09:07:25 UTC pkgsrc-2010Q2 commitmail json YAML

2010-08-25 09:06:10 UTC pkgsrc-2010Q2 commitmail json YAML

Pullup ticket #3213 - requested by obache
graphics/pear-Image_Color: build fix

Revisions pulled up:
- lang/php/pear.mk 1.19
---
Module Name: pkgsrc
Committed By: obache
Date: Wed Aug 25 06:37:20 UTC 2010

Modified Files:
pkgsrc/lang/php: pear.mk

Log Message:
Always install pear with `-n', or failed to install if extension is required
but not loaded in php.ini.

(tron)

2010-08-25 09:01:17 UTC MAIN commitmail json YAML

Updated print/tex-pdftex to 1.40.10nb1

(jnemeth)

2010-08-25 09:01:02 UTC MAIN commitmail json YAML

this package uses libpng

(jnemeth)

2010-08-25 08:04:27 UTC MAIN commitmail json YAML

Update fuse to 2.8.4, add NetBSD support through perfuse.

(manu)

2010-08-25 08:02:22 UTC MAIN commitmail json YAML

Update FUSE to 2.8.4 and add NetBSD support through filesystems/perfuse

Changes since previous verion, from the NEWS file

2.8.x:
- More scalable directory tree locking
- Atomic open(O_TRUNC) support
- Support big write requests on kernels 2.6.26 and newer
- Out-of-tree fuse module removed
- Better NFS exporting support
- New ioctl and poll requests
- New CUSE (Character Device in Userspace) interface
- Allow umask processing in userspace
- Added cache invalidation notifications
- Bugfixes and small improvements
2.7.x:
- Stacking support for the high level API
- Add filename charset conversion module
- Improved mounting
2.6.x!
- Improved read characteristics (asynchronous reads)
- Support for aborting filesystem connection
- POSIX file locking support
- Request interruption support
- Building module for Linux kernels earlier than 2.6.9 not supported
- Allow block device based filesystems to support swap files
- Several bugs fixed, including a rare system hang on SMP

(manu)

2010-08-25 07:36:18 UTC MAIN commitmail json YAML

Add perfuse-20100825
This is exactly the code in-tree for NetBS-current. The package is there
to help using that code on NetBSD-5.x

(manu)

2010-08-25 07:34:11 UTC MAIN commitmail json YAML

perfuse brings full FUSE support to NetBSD It has two components:
- a daemon that creates a /dev/fuse socket and that performs PUFFS
relay to FUSE.
- a library and a header file to use in filesystems and libraries that
open /dev/fuse, so that they are directed to the socket.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(manu)

2010-08-25 06:37:20 UTC MAIN commitmail json YAML

Always install pear with `-n', or failed to install if extension is required
but not loaded in php.ini.

(obache)

2010-08-25 06:26:35 UTC MAIN commitmail json YAML

Add a note about bootstrapping on Interix 3.5, and the requirement for
setting the LD_LIBRARY_PATH accordingly before bootstrapping. With thanks
to John Kelly for the information.

(agc)

2010-08-25 02:21:09 UTC MAIN commitmail json YAML

Mention textproc/asciidoc update to 8.6.1

(gls)

2010-08-25 02:19:50 UTC MAIN commitmail json YAML

2010-08-25 02:17:27 UTC MAIN commitmail json YAML

options.mk was left aside the previous commit

(gls)

2010-08-25 02:16:24 UTC MAIN commitmail json YAML

Update asciidoc to 8.6.1.

pkgsrc changes:
- set license
- Install more docs. Note html docs is no longer part of the upstream tarball.
- Add options pdf and epub to ensure the proper tools are installed.
  Both are off by default.

Upstream changes:

Version 8.6.1 (2010-08-22)
--------------------------
.Additions and changes
- 'a2x': `--resource-dir` option renamed to `--resource`.
- 'a2x': `--resource` option accepts both file and directory names.
- 'a2x': Added `-m,--resource-manifest` option.
- Added Vim syntax highlighting for quote attribute lists.
- Load 'asciidoc.conf' from all configuration directories before any
  other configuration files. This ensures that attributes used for
  conditional inclusion are set before backend configuration files are
  processed. Previously if you wanted to control global conf file
  inclusion your only choice was to modify the global 'asciidoc.conf'
  file.
- AsciiDoc 'Quote element' attributes have been simplified and
  generalized -- positional color and size attributes and named 'role'
  attribute have been replaced by a single positional attribute.

.Bug fixes
- 'FIXED': 'testasciidoc.py': `BACKEND` command argument was being
  ignored.
- 'FIXED': Broken 'docinfo' file functionality in 'html4' and
  'xhtml11' backends (previously the docinfo file was included in
  the 'body' instead of the 'header').

Regression issues
~~~~~~~~~~~~~~~~~
This release breaks compatibility with quoted element positional color
and size attributes (HTML backends). To revert to the deprecated quote
behavior define the 'deprecated-quotes' attribute in the global
`asciidoc.conf` file or on the command-line.  For a more detailed
explanation of the rationale behind this change see
http://groups.google.com/group/asciidoc/browse_thread/thread/b22603bfb879418c.

Version 8.6.0 (2010-08-16)
--------------------------
.Additions and changes
- The AsciiDoc distribution can now be built ``out of the box''
  from the distribution tarball or the Mercurial repository
  (provided you have the requisite build applications installed).
- The global configuration files directory is ignored by both
  'asciidoc' and 'a2x' if AsciiDoc configuration files are installed
  in the same directory as the asciidoc executable.  This change
  allows both a system wide copy and multiple local copies of AsciiDoc
  to coexist on the same host PC.
- CSS 'quirks' mode is no longer the default 'xhtml11' output
  (http://groups.google.com/group/asciidoc/browse_thread/thread/1c02d27d49221aa2).
- Relaxed anchor ID name syntax
  (http://groups.google.com/group/asciidoc/browse_thread/thread/5f3e825c74ed30c).
- Added document files: `doc/epub-notes.txt`,
  `doc/publishing-ebooks-with-asciidoc.txt`.
- 'a2x': If all other resource locations are exhausted then recursively
  search directories named 'images' and 'stylesheets' in the
  'asciidoc' configuration files directory.
- 'a2x': options can also be set in the AsciiDoc source file. If the
  source file contains a line beginning with '// a2x:' then the
  remainder of the line will be treated as a2x command-line options.
- Added dblatex table-width processing instruction -- tables generated
  by dblatex now observe the AsciiDoc table width as a percentage
  (thanks to Gustav Broberg for suggesting this enhancement).
- 'a2x': Don't exit if the `--epubcheck` option is set and 'epubcheck'
  is missing, issue warning and continue.
- Added a global 'plaintext' attribute for dealing with large amounts
  of imported text.
- The author name format has been relaxed, if the the author does not
  match the formal specification then it is assigned to the
  'firstname' attribute (previously asciidoc exited with an error
  message).
- FAQ and documentation updates.
- Refactored chunked.xsl and epub.xsl files.
- Exchanged article.epub for more relevant book.epub on website.
- Put asciidoc.epub User Guide on website.
- 'a2x': Chunking EPUB and HTML outputs set to a per chapter basis and
  the first chapter is separate from preceding contents.
- Changed dates format in example article and books to suppress EPUB
  validation error.
- Added 'style' and 'role' CSS classes to xhtml11 section templates.
- Added the 'role' element to xhtml11 backend block templates.
- Suppressed md5 module deprecation warning from music and Graphviz filters.
- Pygments (http://pygments.org/) option added to source code
  highlight filter.  Based on Pygments source code filter written by
  David Hajage
  (http://groups.google.com/group/asciidoc/browse_thread/thread/d8d042f5a3021369/8934ebbb8cb7144b).
- xhtml11: Added a new theme (volnitsky). Written and contributed by
  Leonid V. Volnitsky.
- xhtml11: Set body element class name to document type.
- Added refentryinfo element and contents (including revdate) to man
  page DocBook output. Man pages are now dated using the revdate
  attribute value if it has been defined.  Based on patch supplied by
  Rainer Muller
  http://groups.google.com/group/asciidoc/browse_frm/thread/319e5cd94493e330/3fcb83fab067af42.
- Added `{template:...}` system attribute.
- Table of contents attribute 'toc' can now be specified in the
  document header.
- Reimplemented music and latex filter -m option functionality when
  the input is stdin using MD5 checksums.
- Added 'latex' filter.
- Added auto file name generation to image generating filters
  (latex,music, graphviz).
- Added `counter2` and `set2` system attributes (to implement image
  auto file name generation).
- Undefined attribute in filter command generates error but does not
  exit.
- Attribute substitution proceeds from start line to end line
  (previously was in reverse order which was really confusing).
- Tidied up music filter code:
  * Format option is optional and default to 'abc' unless Lilypond
    notation detected.
  * The -m option does not apply to stdin input.
- Added paragraph styles to music and graphviz filters.
- Documented dynamic template names.  753: Graphviz filter can now
  generate SVG format images. Patch submitted by Elmo Todurov, see:
  http://groups.google.com/group/asciidoc/browse_frm/thread/fe9b33d8f5f1e0af
  The xhtml11 SVG Graphviz template marked EXPERIMENTAL. No SVG
  support for other backends.
- AsciiDoc template names can now contain embedded attribute
  references.
- Added 'legalnotice' tag to `doc/article-docinfo.xml` example.
- xhtml11 backend: Callouts and callout lists display callout icons
  when the 'icons' attribute is defined. See
  http://groups.google.com/group/asciidoc/browse_frm/thread/8eda3ea812968854
- Document attribute names are case insensitive everywhere, this makes using
attribute entries more consistent e.g. previously :VERS: had to be refered to
with {vers} ({VERS} did not work).
- Hungarian translation of footer-text (submitted by Miklos Vajna).
  See
  http://groups.google.com/group/asciidoc/browse_frm/thread/7174cb7598993c72#
- asciidocapi.py 0.1.2: Can now load AsciiDoc script named asciidoc.
  See
  http://groups.google.com/group/asciidoc/browse_frm/thread/66e7b59d12cd2f91
  Based on patch submitted by Phillip Lord.
- German translation of footer-text (submitted by Simon Ruderich). See
  http://groups.google.com/group/asciidoc/browse_frm/thread/7174cb7598993c72
- Pushed HTML footer text into language conf files with the
  introduction of a [footer-text] configuration file template section.
  See
  http://groups.google.com/group/asciidoc/browse_frm/thread/7174cb7598993c72

.Bug fixes
- *FIXED*: Sometimes multiple double quoted text elements in the same
  paragraph were mistakenly seen as starting with an inline literal.
  See
  http://groups.google.com/group/asciidoc/browse_frm/thread/219c86ae25b79a21
- *FIXED*: 'localtime' and 'doctime' attributes calculated incorrect
  daylight saving / non daylight saving timezones and consequently so
  did HTML footers.  Patch submitted by Slawomir Testowy. See
  http://groups.google.com/group/asciidoc/browse_frm/thread/af652507caf6cec9
- *FIXED*: Missing selector for 'List of examples' title in DocBook
  CSS file. Patch submitted by Laurent Laville. See
  http://groups.google.com/group/asciidoc/browse_frm/thread/3f96900f7fbf5620
- *FIXED*: Broken accents in lang-hu.conf. See:
  http://groups.google.com/group/asciidoc/browse_frm/thread/7174cb7598993c72
- *FIXED*: DocBook XSL generated HTML callout lists are properly
  aligned.  Submitted by Lionel Orry. See
  http://groups.google.com/group/asciidoc/browse_frm/thread/2ff802547b6a75ea
- *FIXED*: Filter execution now occurs prior to filter markup template
  substitution to ensure image data URI encoding happens after image
  generation (see
  http://groups.google.com/group/asciidoc/browse_thread/thread/14e8fcb289a135b).
- *FIXED*: The section numbers no longer increment when the 'numbered'
  attribute is undefined (see
  http://groups.google.com/group/asciidoc/browse_thread/thread/faa36e9e5c7da019/d24cab3fe363e58d).

(gls)

2010-08-24 20:44:22 UTC MAIN commitmail json YAML

Fix typo in comment.

(wiz)

2010-08-24 19:09:54 UTC MAIN commitmail json YAML

Note upate of fotoxx to 10.8.4.

(bad)

2010-08-24 19:08:29 UTC MAIN commitmail json YAML

2010-08-24 19:01:59 UTC MAIN commitmail json YAML

Apply r456 from svn repository to update.mli:
* Small patch from Stephane Glondu to make Unison compile with Ocaml 3.12.

PKGREVISION++

(bad)

2010-08-24 18:58:03 UTC MAIN commitmail json YAML

2010-08-24 11:57:06 UTC MAIN commitmail json YAML

Note update of www/contao29 package to 2.9.1nb1.

(taca)

2010-08-24 11:56:26 UTC MAIN commitmail json YAML

Add dependency to textproc/php-dom since theme export/import process
depends on it.

Bump PKGREVISION.

(taca)

2010-08-24 11:34:45 UTC MAIN commitmail json YAML

2010-08-24 11:33:52 UTC MAIN commitmail json YAML

Update PEAR to 1.9.1.

pkgsrc changes,
* Update base pear packages:Archive_Tar-1.3.7 (recommented)
* Remove ${FILESDIR}/pear.sh, same as bundled one.
* set LICENSE=2-clause-bsd
* add user-destdir support

Upstream Changelog:

* svntag improvements, tag package files passed into the command and better
  directory checks [dufuz]
* rely on Structures_Graph minimum version instead of recommended version
  [saltybeagle]
* Fix Bug #12613: running go-pear.phar from C:\ fails [dufuz]
* Fix Bug #14841: Installing pear into directory with space fails [dufuz]
* Fix Bug #16644: pear.bat returns syntax error when parenthesis are in install
  path. [dufuz] [patch by bwaters (Bryan Waters)]
* Fix Bug #16767: Use of Depreciated HTML Attributes in the Exception class
  [dufuz] [patch by fuhrysteve (Stephen J. Fuhry)]
* Fix Bug #16864: "pear list-upgrades -i" issues E_WARNINGS [dufuz] [patch by
  rquadling (Richard Quadling)]
* Fix Bug #17220: command `pear help` outputs to stderr instead of stdout
  [dufuz]
* Fix Bug #17234: channel-discover adds port to HTTP Host header [dufuz]
* Fix Bug #17292: Code Coverage in PEAR_RunTest does not work with namespaces
  [sebastian]
* Fix Bug #17359: loadExtension() fails over missing dl() when used in
  multithread env [dufuz]
* Fix Bug #17378: pear info $package fails if directory with that name exists
  [dufuz]

(obache)

2010-08-24 10:39:28 UTC MAIN commitmail json YAML

Use PERL5_PACKLIST to fix packaging with latest perl. Bump PKGREVISION.

(wiz)

2010-08-24 09:04:56 UTC MAIN commitmail json YAML

py-gtk2 depends on py-numpy, not py-Numeric -- adapt buildlink3.mk for this.

(wiz)

2010-08-24 06:34:39 UTC MAIN commitmail json YAML

Updated devel/libstatgrab to 0.17

(sno)

2010-08-24 06:33:11 UTC MAIN commitmail json YAML

Updating devel/libstatgrab from 0.16 to 0.17

shared library version changed from 6.2.2 to 6.2.3 - I assume no revbump
needed

Upstream changes:
libstatgrab 0.17 (21 February 2010)
* Provide iowait cpu information on Linux version 2.5.41 or later.
* Display data for ZFS on Solaris.
* Dynamically get list of valid filesystems on FreeBSD.
    (Thanks to Baptiste Daroussin)
* Support FreeBSD 9.
* Use utmpx when available (required for FreeBSD 9).
    (Thanks to Ed Schouten)
* Support larger amounts of memory on FreeBSD.
    (Thanks to Tom Bird)

(sno)

2010-08-24 05:41:00 UTC MAIN commitmail json YAML

Updated devel/p5-File-DesktopEntry to 0.04nb3

(seb)

2010-08-24 05:40:43 UTC MAIN commitmail json YAML

Fix build:
- adjust dependency
- do use PERL5_PACKLIST
Bump PKGREVISION to 3

(seb)

2010-08-24 05:35:11 UTC MAIN commitmail json YAML

Fix build with Perl 5.12.1: do use PERL5_PACKLIST.

(seb)

2010-08-24 05:23:47 UTC MAIN commitmail json YAML

Updated databases/p5-Class-DBI-Pg to 0.09nb3

(seb)

2010-08-24 05:23:17 UTC MAIN commitmail json YAML

- Fix build with Perl 5.12.1 by using Module::Build (compatibility
Makefile.PL is not groked by Perl's 5.12.1 ExtUtils::MakeMaker). As
a side effect fix PERL5_PACKLIST.
- While here add dependency on databases/p5-DBD-postgresql.

Bump PKGREVISION to 3.

(seb)

2010-08-24 01:48:24 UTC MAIN commitmail json YAML

Mention update textproc/dblatex to 0.3

(gls)

2010-08-24 01:45:10 UTC MAIN commitmail json YAML

Update textproc/dblatex to 0.3

Upstream changes:

Release 0.3
Bug fix release.
* Upgrade to recent Debian scripts (error handlers).
* Improve the table rendering by adding a table-width Processing Instruction.
* Add the parameters:
- default.table.width.
- biblioentry.numbered.
* A number of bug fixes.

Release 0.2.12
Bug fix release.
* Add basic biblioref support. Its specific attributes are not handled yet.
* Allow the appendices to be followed by other sections.
* Add the ability to convert on the fly SVG figures to PDF through inskscape:
apply patch #2821475 from David Necas.
* Improve the ability to format in bold or italic the elements embedded in
programlistings or screens.
* Add the parameters:
- index.tocdepth.
- index.numbered.
- bibliography.tocdepth.
- bibliography.numbered.
- xref.hypermarkup.
* A number of bug fixes.

Release 0.2.11
Release containing some new features.
* Improve the set support: dblatex can build all the PDF files (one per book)
and the xr-hyper package is used to make cross-references between books.
* Improve the XeTeX font switch macros (still experimental).
* Add some hook to external error handlers.
* Change the verbatim implementation in order to be able to easily add new
elements embeddable in programlistings.
* Add the parameters:
- glossary.tocdepth.
- glossary.numbered.
- refclass.suppress.
- use.id.as.filename.
* Fix some bugs.

(gls)

2010-08-24 01:44:25 UTC MAIN commitmail json YAML

+ PEAR-1.9.1

(obache)

2010-08-23 14:45:06 UTC MAIN commitmail json YAML

Add lang-ar, lang-et, lang-gl, lang-gn, lang-hi, lang-mr and lang-ms.
Each option is corresponding to Arabic, Estonian, Galician, Guarani,
Hindi, Marathi and Malay.

(taca)

2010-08-23 14:43:12 UTC MAIN commitmail json YAML

+sudo-1.7.4p3.

(taca)

2010-08-23 14:42:35 UTC MAIN commitmail json YAML

Note update of contao29-translations package to 20100823.

(taca)

2010-08-23 14:41:48 UTC MAIN commitmail json YAML

Update contao29-translations package to 20100823.

Update Danish, French, Croatian, Hungarian, Japanese and Turkish
language files and add Finnish language files.

(taca)

2010-08-23 13:33:36 UTC MAIN commitmail json YAML

Fix packaging with latest goffice. Bump PKGREVISION.

(wiz)

2010-08-23 01:50:40 UTC MAIN commitmail json YAML

Mention sysutils/capistrano update to 2.5.19

(gls)

2010-08-23 01:49:02 UTC MAIN commitmail json YAML

Update sysutils/capistrano to 2.5.19

Upstream changes:

== 2.5.18 / March 14, 2010

Small fix for rolling back if a shell scripts exits non-zero; enabled a rollback
if git (or other) externals fail during the deploy.
* #151 check return code status of system command to create local copy and
rollback if not 0 (David King)

== 2.5.17 / February 27, 2010

Various small bug fixes.

== 2.5.16 / February 14, 2010

Fixed a small regression in 2.5.15

== 2.5.15 / 14 February 2010

Fixes a feature request not to overwrite roles when using the ROLES
environmental variable.
* #126 - The option to not overwriting the roles which are defined in the task
definition.
* Removed the `upgrade` file as it has been a couple of years since 1.x was in
the wild.
* Slight internal re-factor of the way we calculate the `version`

== 2.5.14 / 18 January 2010

Fixes a low-value bug, thanks to Chris G for the well submitted patch:
#139 - Improves consistency of variable lookup, scm variables with a local_
prefix will be honoured with priority locally (Chris Griego)

== 2.5.13 / 6 January 2010

Small maintenance release:
* #118 - Modified CLI test to not load user or system configuration file (Emily
Price)
* #88 - Re-fixed a problem here, massive apologies to all concerned. (Hangover
from 2.5.12)

== 2.5.12 / 5 January 2010

* Tweak the directory version listing (caused a lot of problems, please upgrade
immediately)

== 2.5.11 / December 2009

* Deprecations and other small changes

(gls)

2010-08-23 00:58:40 UTC MAIN commitmail json YAML

Note update of emacs-snapshot.

(minskim)

2010-08-23 00:57:11 UTC MAIN commitmail json YAML

Update emacs-snapshot to 24.0.50.20100821.

Changes:
- progmodes/etags.el (tags-file-name): Mark safe if stringp (Bug#6733).
- emacs-lisp/copyright.el (copyright-update-year) (copyright-update):
  Temporary switch-to-buffer to ensure the buffer change being queried
  is visible (Bug#5394).
- font-lock.el (lisp-font-lock-keywords-2): Add
  combine-after-change-calls, condition-case-no-debug,
  with-demoted-errors, and with-silent-modifications (Bug#6025).
- progmodes/compile.el (compilation-error-regexp-alist-alist): Give
  the Ruby rule a lower priority than Gnu (Bug#6778).
- mouse.el (mouse--drag-set-mark-and-point): New function.
  (mouse-drag-track): Use LOCATION arg to push-mark.  Use
  mouse--drag-set-mark-and-point to take click-count into
  consideration when updating point and mark (Bug#6840).
- net/rcirc.el (rcirc-log-process-buffers): New option.
  (rcirc-print): Use it.
  (rcirc-generate-log-filename): New function.
  (rcirc-log-filename-function): Change default to
  rcirc-generate-log-filename (Bug#6828).
- term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard):
  Use QCLIPBOARD instead of QPRIMARY (Bug#6677).
- image.el (create-animated-image): Don't add heuristic mask to image
  (Bug#6839).
- files.el (locate-file-completion-table): Only list the .el and .elc
  extensions if there's no other choice (bug#5955).
- cus-edit.el (custom-group-value-create): Add extra newline
  before end line (Bug#6876).

(minskim)

2010-08-22 23:20:57 UTC MAIN commitmail json YAML

2010-08-22 21:14:12 UTC MAIN commitmail json YAML

Updated to scamper and py-sphinx.

(markd)

2010-08-22 21:11:10 UTC MAIN commitmail json YAML

Add the patch that got missed in the update.

(markd)

2010-08-22 21:10:17 UTC MAIN commitmail json YAML

Update scamper to 20100517 snapshot.

Several years of development.

(markd)

2010-08-22 21:03:24 UTC MAIN commitmail json YAML

Update py-sphinx to 1.0.1

* Support for domains has been added.  A domain is a collection of
  directives and roles that all describe objects belonging together,
  e.g. elements of a programming language.  A few builtin domains are
  provided:

  - Python
  - C
  - C++
  - JavaScript
  - reStructuredText

* The old markup for defining and linking to C directives is now
  deprecated.  It will not work anymore in future versions without
  activating the :mod:`~sphinx.ext.oldcmarkup` extension; in Sphinx
  1.0, it is activated by default.

* Removed support for old dependency versions; requirements are now:

  - docutils >= 0.5
  - Jinja2  >= 2.2

* Removed deprecated elements:

  - ``exclude_dirs`` config value
  - ``sphinx.builder`` module

Features added
--------------

* General:

  - Added a "nitpicky" mode that emits warnings for all missing
    references.  It is activated by the :option:`-n` command-line switch
    or the :confval:`nitpicky` config value.
  - Added ``latexpdf`` target in quickstart Makefile.

* Markup:

  - The :rst:role:`menuselection` and :rst:role:`guilabel` roles now
    support ampersand accelerators.
  - New more compact doc field syntax is now recognized: ``:param type
    name: description``.
  - Added ``tab-width`` option to :rst:dir:`literalinclude` directive.
  - Added ``titlesonly`` option to :rst:dir:`toctree` directive.
  - Added the ``prepend`` and ``append`` options to the
    :rst:dir:`literalinclude` directive.
  - #284: All docinfo metadata is now put into the document metadata, not
    just the author.
  - The :rst:role:`ref` role can now also reference tables by caption.
  - The :rst:dir:`include` directive now supports absolute paths, which
    are interpreted as relative to the source directory.
  - In the Python domain, references like ``:func:`.name``` now look for
    matching names with any prefix if no direct match is found.

* New builders:

  - Added a builder for the Epub format.
  - Added a builder for manual pages.
  - Added a single-file HTML builder.

* Extensions:

  - Added the :mod:`~sphinx.ext.viewcode` extension.
  - Added the :mod:`~sphinx.ext.extlinks` extension.
  - Added support for source ordering of members in autodoc, with
    ``autodoc_member_order = 'bysource'``.
  - Added :confval:`autodoc_default_flags` config value, which can be
    used to select default flags for all autodoc directives.
  - Added a way for intersphinx to refer to named labels in other
    projects, and to specify the project you want to link to.
  - #280: Autodoc can now document instance attributes assigned in
    ``__init__`` methods.
  - Many improvements and fixes to the :mod:`~sphinx.ext.autosummary`
    extension, thanks to Pauli Virtanen.
  - #309: The :mod:`~sphinx.ext.graphviz` extension can now output SVG
    instead of PNG images, controlled by the
    :confval:`graphviz_output_format` config value.
  - Added ``alt`` option to :rst:dir:`graphviz` extension directives.
  - Added ``exclude`` argument to :func:`.autodoc.between`.

(markd)

2010-08-22 20:54:08 UTC MAIN commitmail json YAML

Remove the ancient version of pgf that was included.  People that want
pgf will use tex-pgf and this just gets in the way. Bump PKGREVISION.

(markd)

2010-08-22 20:48:18 UTC MAIN commitmail json YAML

py-Numeric was dropped as a dependency back at 1.4.0 so remove the
pkgsrc dependency.

(markd)

2010-08-22 20:44:32 UTC MAIN commitmail json YAML

Change dependency from py-Numeric to py-numpy as thats what the package
actually wants.

(markd)

2010-08-22 12:48:21 UTC MAIN commitmail json YAML

+ ImageMagick-6.6.3.9, acroread9-9.3.4, asymptote-2.04, calibre-0.7.15,
  dd_rescue-1.18, epiphany-extensions-2.30.2, gsoap-2.7.17 [pkg/43789],
  libproxy-0.4.5, modular-xorg-server-1.9.0, p5-Archive-Tar-1.68,
  p5-DateTime-TimeZone-1.21, p5-Module-CoreList-2.37,
  p5-PerlMagick-6.6.3.9, p5-Text-vFile-asData-0.06, phpmyadmin-3.3.5.1,
  py-enchant-1.6.3, py-networkx-1.2 [pkg/43790], rftg-0.7.4,
  scmgit-base-1.7.2.2, scmgit-docs-1.7.2.2, scons-2.0.1, stella-3.2,
  system-tools-backends-2.10.1 [needs polkit>=1.0?|GNOME 2.30],
  vsftpd-2.3.1, wine-devel-1.3.1, x264-devel-20100821, xboard-4.4.4,
  xcalc-1.0.3 [pkg/43788], yaz-4.0.12.

(wiz)

2010-08-22 09:25:29 UTC MAIN commitmail json YAML

2010-08-22 07:47:56 UTC MAIN commitmail json YAML

2010-08-22 05:32:33 UTC MAIN commitmail json YAML

Data::Alias seems to be known being broken since 5.11.5 (see RT#36165 at
https://rt.cpan.org/Ticket/Display.html?id=36165) and there is no public
available patch.

(sno)

2010-08-22 04:32:53 UTC MAIN commitmail json YAML

Initial bootstrap README for Haiku.
Now, we can bootstrap pkgsrc on Haiku without extra patch.

(obache)

2010-08-22 01:02:48 UTC pkgsrc-2010Q2 commitmail json YAML

2010-08-22 00:59:48 UTC pkgsrc-2010Q2 commitmail json YAML

Pullup ticket 3212 - requested by tron
security update

Revisions pulled up:
- pkgsrc/databases/phpmyadmin/Makefile 1.83
- pkgsrc/databases/phpmyadmin/distinfo 1.44

-------------------------------------------------------------------------
  Module Name:    pkgsrc
  Committed By:  tron
  Date:          Sat Aug 21 07:50:02 UTC 2010

  Modified Files:
          pkgsrc/databases/phpmyadmin: Makefile distinfo

  Log Message:
  Update "phpmyadmin" package to version 2.11.10.1.
  Changes since version 2.11.10:
  - [setup] Fixed output sanitizing in setup script, see PMASA-2010-4 for
    more details.
  - [core] Fixed various XSS issues, see PMASA-2010-5 for more details.

  To generate a diff of this commit:
  cvs rdiff -u -r1.82 -r1.83 pkgsrc/databases/phpmyadmin/Makefile
  cvs rdiff -u -r1.43 -r1.44 pkgsrc/databases/phpmyadmin/distinfo

(spz)

2010-08-22 00:10:23 UTC pkgsrc-2010Q2 commitmail json YAML

Pullup ticket 3211 - requested by tez
build fix for Solaris

Revisions pulled up:
- pkgsrc/devel/glib2/Makefile 1.176

-------------------------------------------------------------------------
  Module Name:    pkgsrc
  Committed By:  tez
  Date:          Fri Aug 20 16:33:10 UTC 2010

  Modified Files:
          pkgsrc/devel/glib2: Makefile

  Log Message:
  Fix build on Solaris per pkg/43707 -  no revision bump since other
  platforms are unaffected and Solaris did not build before

  To generate a diff of this commit:
  cvs rdiff -u -r1.175 -r1.176 pkgsrc/devel/glib2/Makefile

(spz)

2010-08-21 21:41:03 UTC MAIN commitmail json YAML

Updated devel/p5-Git-CPAN-Patch to 0.4.5

(seb)

2010-08-21 21:40:47 UTC MAIN commitmail json YAML

Update p5-Git-CPAN-Patch from version 0.4.4 to version 0.4.5.

Pkgsrc changes:
- adjust dependencies with respect to the minimum version required
of the perl package

Upstream changes:
0.4.5    2010-08-16 19:30:23 America/Montreal
    * fix --force documentation/error message/support for git-cpan-import.
        Thanks to chocolateboy.

(seb)

2010-08-21 20:42:18 UTC MAIN commitmail json YAML

Updated devel/p5-App-cpanminus to 1.0012

(seb)

2010-08-21 20:41:40 UTC MAIN commitmail json YAML

Update p5-App-cpanminus from version 1.0011 to version 1.0012.

Pkgsrc changes:
- adjust dependencies

Upstream changes:
1.0012  Fri Aug 20 12:46:34 PDT 2010
  - version check with -L and -l was failing with --skip-installed default. Now fixed (reported by leedo) #55
  - Fixed the code to find root of tarballs (perlpilot)

(seb)

2010-08-21 18:50:27 UTC MAIN commitmail json YAML

Note update of the "milter-greylist" package to version 4.2.6.

(tron)

2010-08-21 18:49:38 UTC MAIN commitmail json YAML

Update "milter-greylist" package to version 4.2.6. Changes since 4.2.5:
      Build fix for Solaris
      Fix .m4 file
      Allow k or M suffix after data sizes
      Add a missing comma in X-Greylist (Kouhei Sutou)
      Look for liresolv in ${libdir} instead of /usr/lib (DUFRESNE VINCENT)
- Fix SPF on Postfix (Kouhei Sutou)

(tron)

2010-08-21 17:33:46 UTC MAIN commitmail json YAML

Updated wm/sawfish to 1.6.3.1

(asau)

2010-08-21 17:33:11 UTC MAIN commitmail json YAML

Update to sawfish 1.6.3.1

1.6.3.1 "Acid Folk"
===================

  * Fixed a possible compilation-error in prompt.jl [Harald van Dijk]

1.6.3 "Hava Nagila"
===================

  * Bugfixes
        - In tabbed-windows the left/right end is no longer outside the
          window, if that is too small [Fuchur]

        - Unsupported option `ignore-window-input-hint' is deleted
          which has been invalid for long. [Teika kazura]

        - Honor the user option `maximize-raises' in
          `maximize-window-fullscreen' and
          `maximize-window-fullxinerama', too, not just in
          maximize-window [Nolan Leake]

        - More robustness in applications menu [Teika Kazura, Matthew
          Love]

          Before it broke for 'R' (statistics software), and whitespace
          handling didn't follow the specification.

          Some *.desktop files are not ignored any more either, i.e.,
          leading empty lines and comments are allowed.

        - Allow compilation with -DDEBUG flag passed [Alexey I. Froloff]

  * New Features
        - XRandR events (eg resolution changes) call the new hook
          `randr-changed-notify-hook' [Daniel M. German]
          See *Note RandR and Xinerama::.

        - Tabbed windowing system improvements [Fuchur]
            + Support for transient tab-frames

            + New frame classes:
                  x tab-s (side tab)
                  x tab-ls (side tab, left/bottom end)
                  x tab-rs (side tab, right/top end)

            + Tabgroups now support a set of new properties and
              actions: `type', `set-frame-style', `fixed-position',
              `iconify'. In addition, new tabs gain those properties
              from their parent window.

        - New command `display-window-position' [Teika kazura]

          User chooses a window by cursor and click, and it prints its
          position and size in a popup. Also available as a function,
          defined in `sawfish.wm.util.display-wininfo'.

        - New function `window-pid' [Teika kazura]

          It returns the process ID of a window. (*note Window
          Attributes::

        - Window instance name is now accessible [Teika kazura]

          Technically, the window class consists of "instance" and
          "class", but only the latter was returned previously by the
          function `window-class'. Now with the new optional argument,
          the instance is returned too. (*note Window Attributes::)

        - Customizable lisp directory [Teika kazura]

          User can add lisp directories to be read with the
          environmental variable `SAWFISH_USER_LISP_DIR'. Its value is
          directories separated by colon, like `PATH', and prepended to
          `load-path'. If not set, `~/.sawfish/lisp' is assumed.  For
          example, if you define a module `sawfish.wm.super-hack', then
          it can be read from
          `~/.sawfish/lisp/sawfish/wm/super-hack.jl'.

          User can override system lisp files, too. For example, if
          there is `~/.sawfish/lisp/sawfish/wm/windows.jl', then it
          defines `sawfish.wm.windows', instead of the installed one.
          (But this can easily break your Sawfish startup.) In fact, it
          was possible for some lisp files, but now it's guaranteed for
          all files.

  * Other Changes
        - Info improvements [Teika kazura]
            + "Windows" chapter is partly revised. Function
              `display-window' is documented. Difference between
              `window-wants-input-p' and `window-really-wants-input-p'
              is described. Short description on the root window.

            + In past few versions we made more changes which were not
              described in the news, including clarification in
              viewport, workspace and event, and window matching lisp
              functions.

            + Added a faq item on multi-head and workspace.

            + Edition number and the date of last change are dropped
              from the info.  We now edit the info often, so they are
              not so much meaningful.

        - Pressing the lock-button does the state-change of the window
          accordingly. [Fuchur]
          No theme shipped with Sawfish does have the lock-button yet,
          though.

        - Make xinerama an optional dependency [original patch from
          Gentoo]

1.6.2 "Mighty Disco King"
=========================

  * The 1.6.2 release has some improvements.

  * Bugfixes
        - Application menu is more robust now.  [Matthew Love,
          Christopher Bratusek]

          Application menu, introduced in 1.6.0, made Sawfish crash if
          `*.desktop' file had a malformed key value (say ; as first
          character or # somewhere inside), or it was unreadable. It is
          fixed.

        - Minor fix of window placement by direction [Teika kazura]

          When the window placement mode is for example `east' and the
          window is wider than the screen, then the window was put
          wrongly. It is fixed.

  * New features
        - New command `maximize-discard' [Teika kazura]

          The command `maximize-discard' stops a maximized window to be
          treated as maximized any more, so that you can move and
          resize the window.

          The functinon `maximize-discard' has existed, and now it's
          exported.

        - New command `jump-or-exec' [Christopher Bratusek]

          The user uploaded module "jump-or-exec" has been merged. It
          provides `jump-or-exec', a command which may be used to focus
          a window, or if it does not exist, start the application.

          Unlike the original version this one also supports matching a
          window by its class (returned by `window-class' function),
          which makes it more flexible for applications like music
          player or browsers, which tend to change their WM_NAME
          relatively often.

          For usage, see `lisp/sawfish/wm/commands/jump-or-exec.jl'
          file.

  * Misc
        - Improved ebuild and specfile [Christopher Bratusek] [Kim B.
          Heino]

        - Updated documentation [Christopher Bratusek] [Teika Kazura]

        - Removed `frame-style-editable-p' and all other remaining
          sawfish-themer fragments, as it's dead. [Christopher Bratusek]

1.6.1 "Astral"
==============

  * The 1.6.1 release brings several bugfixes and improvements

  * Build and Installation
        - New/Updated requirements:
            + librep 0.90.4 -> 0.90.5
            + rep-gtk 0.90.0 -> 0.90.2

        - The configure option `--without-nine-mouse-buttons' is not
          allowed to have 4 hyphens, therefore it's renamed to
          `--without-nine-mousebuttons'.  [Christopher Bratusek]

        - Reworked configures help-message for better readability.
          [Kim B. Heino]

        - Configure now uses `kde4-config --install data' rather than
          `kde4-config --path data', so no sed-kludge is needed anymore.

          Make $datadir/kde4/apps/ the fallback path, if KDE4 is not
          installed.  [Kim B. Heino]

        - Majorly improved debian and rpm packaging scripts.
          [Christopher Bratusek] [Kim B. Heino]

        - The spec has been reworked to detect kde4/librep directories
          while runtime, instead of hardcoding those paths from
          configure, which makes it more portable.  [Kim B. Heino]

        - Our own implementation of dlmalloc is disabled since 2002, as
          it breaks sawfish on several architectures. From this version
          on, we don't ship it anymore.  [Kim B. Heino]

        - Export the imageloader beeing used by sawfish in the .pc file.
          [Christopher Bratusek]

        - Don't remove the .pot file upon `make distclean'.
          [Christopher Bratusek]

        - Install Sawfishs header files to $includedir/sawfish/.
          [Christopher Bratusek]

        - Autotools improvements (Makefile, autogen.sh & Co.)
          [Christopher Bratusek]

  * Bugfixes
        - Fixed a bug where the gnome-panels pager gets confused about
          the current viewport when displaying all workspaces.  [Jeremy
          Hankins]

        - Fixed minor bugs in viewport.jl.  [Jeremy Hankins]

  * Doc
        - Fixed a small doc misstake (refered to window-set instead of
          window-put).  [Christopher Bratusek]

        - Fixed the docstrings of shrink and yank.  [Timo Korvola]

  * Misc
        - Last 3 instances of "sawmill" replaced by "sawfish".  [Kim B.
          Heino]

1.6.0 "Sound Of Thunder"
========================

  * The 1.6.0 release has new features and bugfixes

  * Build and installation changes
        - New/Updated requirements:
            + librep 0.90.0 -> 0.90.4
            + rep-gtk 0.18.4 -> 0.90.0

        - Removed requirements: LibAudioFile and ESounD

        - Mouse buttons 6 - 9 support is now optional

          Support for 6 - 9 mouse buttons is now optional.
          X.Org/XFree86 headers only define up to 5 buttons, and we use
          a working but somewhat hackish workaround for getting buttons
          6 - 9 which is suspected to cause some problems with
          modifiers. Support for them is enabled by default. If you
          want to disable it, add the following flag to configure:

          `--without-nine-mousebuttons'

          If you drop it, then you can't use mouse button 8 to, for
          example, drag windows.

        - Installation directory change

          Directory `libexec' is not used anymore for library files
          installation. Instead, they go into `lib' by default.

  * Incompatible user visible changes:
        - Configurator's binary, `sawfish-ui', is renamed to
          `sawfish-config' [Christopher Bratusek]

          Its window class is changed to `sawfish-configurator' /
          `Sawfish-Configurator', too. The lisp module is renamed from
          `sawfish.ui' to `sawfish.cfg'.

        - Infinite Desktop boundary behavior and option

          In `infinite-desktop', the option to specify the boundary
          behavior has changed. If `viewport-boundary-mode' is
          `dynamic', then you can go as far as you like. Otherwise, it
          stops at the workspace boundary of which size is specified by
          `viewport-dimensions'. Now the latter is the default. See also
          "dynamic viewport" described below.

          The previous variable,
          `infinite-desktop.stop-at-workspace-borders', which is used
          for this purpose, no longer exists.

        - User config file changes

          In Sawfish < 1.6, `sawfish.wm.defaults' is loaded by default,
          only if the `~/.sawfishrc' lacks. Now, it is always read, so
          you don't have to `require' it. It sets up GNOME or KDE
          support if found running, and does load the error-handling
          module.

          Since Sawfish 1.5 `~/.sawmillrc' is no longer a valid
          configuration- file. From this version on, Sawfish will
          rename `~/.sawmillrc' to `~/.sawfishrc', if the former does
          exist on your system, but the latter doesn't.

        - In configurator, the "Matched Windows" group has been renamed
          to "Window Rules"

        - Sound support has changed. [Christopher Bratusek]

          Sawfish used to rely on ESounD and LibAudioFile to play
          sound, but we dropped that. If you want sound, set the
          variable `play-sample-program' to the path of the program
          capable of playing *.wav file. You can set the variable from
          the Configurator, too. By default `paplay' is beeing used.

          You can't set any arguments to pass from this variable. If
          you want to give arguments or redirect output, write a wrapper
          program. (*note FAQ::, "Sound support" section.)

        - GNOME integration updates [Christopher Bratusek]

          GNOME support is trimmed down. All we offer now is as follows:

          If GNOME runs, in `session' submenu under Sawfish root menu,
          logout and shutdown from GNOME are added. Don't remove `quit'
          and `restart' from menu now. GNOME help is available in menu.

          Unless set by user, gnome-terminal.wrapper and
          gnome-www-browser are used for user options `xterm-program'
          and `browser-program'.

          Most of dropped GNOME integrationcode is ancient, mainly for
          1.x and early 2.x. Files `lisp/sawfish/wm/commands/gnome.jl'
          and `lisp/sawfish/wm/state/gnome.jl' are deleted.

          GNOME-Detection has been updated for recent versions. [Alexey
          I. Froloff]

        - xterm and browser changes

          Module `sawfish.wm.commands.xterm' is renamed to
          `sawfish.wm.commands.launcher'. Option `xterm-args' is
          dropped. If you use it, simply append its value to
          `xterm-program'.

          Customization-group is changed from `misc' to `External
          Applications'.

          The functinon `display-url' is renamed to `browser', now
          defined in the module cited above. Variable
          `display-url-command' is renamed to `browser-program'.

        - Sawfish pager

          If you've been using Sawfish-pager, then you have to
          recompile it, due to library files location change.

        - Deletion of `user-level' property

          (This affects almost none.) There has been a defcustom
          property `user-level'. It has been deprecated for years, and
          it's now deleted.

  * Bugs fixed:
        - Prevents crashes for quick window destructions, especially
          under high load

          There have been crashes if a window is destroyed soon after
          its creation.  It happens in `add_window' function, and the
          cause is guessed to be garbage collection following window
          destruction before the object access.

          Now most parts of `add_window' are protected from garbage
          collection with `rep_PUSHGC' / `rep_POPGC'. It also prevents
          `add_window_hook' from being called with uninitialised
          argument.  [Timo Korvola, Janek Kozicki]

        - Random window disapperance prevention

          There're reports of sudden, random window disapperance, under
          Xinerama and some other drivers. It is partly prevented, but
          not completely, as this may also be caused by other libraries
          or buggy video drivers.

          Now in error_handler() in src/display.c, when a window sends
          request_code 12 (X_ConfigureWindow), don't auto-assume it to
          be unmapped. [Janek Kozicki]

        - Build and Installation:
            + Library check: Fix in `SMlib' and `libICE' check on
              x11r7 [Christopher Bratusek]

            + `.desktop' files fixes: typos fixed and unneeded entries
              removal [Christopher Bratusek]

            + In spec file, repexecdir definition is fixed
              [Christopher Bratusek]

            + In `po/Makefile.in', a wrong call of make-pot is fixed
              [Christopher Bratusek]

            + Always build the FAQ upon make [Christopher Bratusek]

            + Expand REP_ENVIRON in scripts/Makefile.in [Luis Rodrigo
              Gallardo Cruz]

            + Add `--tag=CC' to libtool where necessary. It unbrakes
              compilation on some arches [Gentoo Linux]

            + Use $prefix/lib instead of $prefix/libexecdir, to
              satisfy the FHS [Christopher Bratusek]

        - In configurator,

          Strings are now fully translatable [Alexey I. Froloff]

          SpinButton listens to manual value change. (It's now
          connected to the correct signal.)  [Christoper Bratusek]

          Position parameters can be negative [Christopher Bratusek,
          Teika Kazura]

        - Fixed Focus issues with KDE4 Menu/Run-Dialog [Timo Korvola]

        - Fix cursor-warping in conjuction with Infinite-Desktop
          [Jeremy Hankins]

        - Fixed group of the stagger options [Christopher Bratusek]

        - Fixed a call of `select-workspace-from-first' [Michal Maru邸ka]

        - In `Simple' theme, windows are now resizable from the right
          border [Christopher Bratusek]

        - Missing exports are now supplied, for shrink-yank functions
          and `send-to-workspace'. [Christopher Bratusek]

        - Commands `maximize-window-fullscreen' and
          `maximize-window-fullxinerame' work. [Teika kazura]

        - Variable `this-command' is `nil' outside of command call.

        - Customization option `uniconify-to-current-viewport' has been
          undeprecated. [Teika kazura]

  * New features:
        - New application menu [Matthew Love, Timo Korvola]

          Sawfish now generates application menu automatically, by
          reading `/usr/share/applications/*.desktop' files. If you
          manually set `apps-menu', then it won't be. If you like to
          have both your own applications menu and auto the generated
          one, then refer back to `user-apps-menu' rather than
          `apps-menu'. In addition you can use the variable
          `desktop-directory' to specify a different directory to look
          for *.desktop files, or a set of directories, if desired.

          Root, and Window-Operations menus are revamped, too.
          [Christopher Bratusek]

        - Added options to change the font color of window title,
          independent of the theme in use [Matthew Love, Christopher
          Bratusek, Timo Korvola]

          Internally, a new function `remove-frame-part-value' which
          allows to change/remove values from frame-parts is used.
          [Timo Korvola]

        - Sawfish does now support theme-tarballs compressed with XZ
          (aka LZMA2) and LZMA [Christopher Bratusek]

        - Xinerama support for Grow/Pack [Nolan Leake]

          Make grow/pack Xinerama aware. The support still remains
          basic, as shrink/yank still lacks it.

        - Window rules can be set by lisp

          Window rules (former "matched windows") can easily be set from
          configurator, but it can now be set by lisp, too, with
          `add-window-matcher' function. For the details, *Note Window
          Rules by Matching::. An example usage is like this:

              (add-window-matcher '((WM_NAME . "^root$")
                                    (WM_CLASS . "^XTerm/xterm$"))
                                  '((ignore-program-position . t)
                                    (maximize . vertical)))

          In fact, this function has already existed, but now it can
          now specify both windowname and -class, also the grammar has
          changed. The old syntax is still allowed, but deprecated.

        - Keymap translation [Scott Scriven]

          Sawfish can "translate" keymaps for each window. Suppose you
          have the following lines in your `~/.sawfish/rc':

              (add-window-matcher
                      '((WM_NAME . "^Terminal$"))
                      '(keymap-trans . (("C-n" "C-S-t")
                                        ("C-w" "C-S-w"))))

          Then, when you press `C-n', any windows with name "Terminal"
          receive `C-S-t', and so on.

          This is part of window rules, but it cannot be exposed in the
          configurator yet.

        - New window rules
            + Maximizations `fullscreen' and `full-xinerama' are
              available now (*note Maximizing Without Borders::)
              [Jeremy Hankins]

            + Window position can also be specified by the direction,
              like north or east, instead of the coordinates. [Jeremy
              Hankins]

            + New window rules `new-workspace' and `new-viewport',
              which place a window on the first empty Workspace or
              Viewport (if there's none, one will be generated), have
              been introduced [Jeremy Hankins]

              If `new-workspace' is chosen, then the window is put in
              an empty workspace, or a new workspace is created if
              none. A workspace with sticky windows only are
              considered empty. `new-viewport' is the same but an
              empty viewport is chosen. If none is, the workspace is
              enlarged, and the window is put in a new viewport.

            + `window-name' can change the window's name. [Christopher
              Bratusek]

        - New commands [Christopher Bratusek]

          5 new move-cursor commands, 4 diagonals and 1 to center.
          (*note Pointer Functions::

          Three window manipulation commands, `double-window-size',
          `halve-window-size', and `move-window-center'.  The former
          two are based on the `resize-by-factor' metafunction.

          `browser' invokes a browser instance.

        - New functions `rename-window' changes the window name. [from
          "mmc" fork, Christopher Bratusek]

          In practice, it works, but technically speaking, the window
          name is not supposed to be changed in ICCCM, by the
          Window-Manager.

          `viewport-windows' returns windows in a viewport. [Jeremy
          Hankins]

          `get-window-by-class' and `get-window-by-class-re'
          [Christopher Bratusek]

        - Dynamic Viewport-Boundary-Mode [Jeremy Hankins]

          When you set `viewport-boundary-mode' to `dynamic', then the
          workspace grows and shrinks dynamically so that it contains
          all windows and the current viewport. For the details, *Note
          Dynamic Viewport::.

        - KDE4 integration module [Christopher Bratusek]

          KDE4 is automatically detected. KDE help, and KDE logout,
          shutdown, and reboot are provided in the menu. In KDE4 WM
          Selector, Sawfish is added.

          Unless set by user, konsole and konqueror are used for user
          options `xterm-program' and `browser-program'.

        - Poweroff from menu

          Added poweroff commands in menu for non KDE/GNOME users.
          There are reboot, halt, suspend and hibernate. The used shell
          commands can be set from configurator, under "Misc" ->
          "External Applications". If you don't want it, set
          `want-poweroff-menu' to nil.

          User needs the appropriate privilege. For a way to do so, see
          *Note FAQ::, "Shutdown privilege" section.

          Reboot and halt call `before-exit-hook' and do
          `delete-window' to each window before actually rebooting or
          halting, to ensure everything is fine on the next startup.

        - New Frame Classes [Christopher Bratusek]
          A "frame class" defines frame component and are used by
          themers to add buttons or frames to their theme in charge.
          There are no user visible changes.

            + `sticky-button', a button to toggle window `sticky' or
              `viewport-sticky'

            + `lock-button', a button to toggle window position `fixed'

            + `rename-button', a button to rename the window-title and
              window-icon properties (not ICCCM compliant)

            + `move-resize-button', a button to perform various move
              and resize actions on a window

            + `raise-lower-button', a button to perform various
              raising and lowering actions on a window

  * Widget Transistion [Christopher Bratusek]
        - Custom make-url-widget replaced by GtkLinkButton

        - Custom about-dialog replaced by GtkAboutDialog

        - GtkButton + GtkPreview + GtkColorSelection trio replaced by
          single GtkColorButton

  * Other Changes:
        - Startup window placement improvement [Jeremy Hankins]

          At Sawfish startup including restart, maximized windows and
          position specified windows used to mess up viewport, appearing
          in wrong viewports. It's fixed now.

        - Renamed `after-add-window' to `maxmize-after-add-window'
          This function is only used in a hook [Teika Kazura]

        - Don't let `cycle-class' and `cycle-class-backwards' ignore
          WINDOW-ORDER [Daniel M. German]

        - Docks/panels are unframed, and window type is set to `dock'
          by default [Timo Korvola]

        - You can exit from sawfish-client with `,quit' (also `C-d'),
          unlike `C-c' it won't kill the WM [Teika Kazura, Timo Korvola]

        - Number widget (GtkSpinButton) can take optional initial value
          [Teika Kazura]

        - Changing `raise-tabs-on-hover' takes effect immediately now
          [Christopher Bratusek]

        - Inactive windows in Crux theme do now have black text for
          better readability [Christopher Bratusek]

        - With new option `customize-redirect', configurator's output
          can be redirected. [Teika Kazura]

        - Grow/Pack and Shrink/Yank options are in the same group now
          [Christopher Bratusek]

          These commands are now available from window operation menu,
          too.

        - When moving a window the cursor shape is now `hand2', when
          resizing `crosshair' [Christopher Bratusek]

        - In the theme document in the configurator, the cursor is
          invisible and the wrap mode is set to word-char [Christopher
          Bratusek]

        - Build, installation and source
            + Improved ebuild [Christopher Bratusek]

            + Encoding is unified to utf-8 for all distributed files
              [Teika Kazura]

            + Squashed all bytecompiler warnings [Matthew Love]
              Some warnings were superfluous, though.

            + To info file `dir' the section `sawfish' has been added
              [Luis Rodrigo Gallardo Cruz]

            + Distclean rule for po/Makefile.in [Christopher Bratusek]

            + Removed ancient sawmill removal fragments from Makefile
              [Christopher Bratusek]

            + Block comments in lisp files are now semicolons
              Sorry, without reason. Block comment remains allowed.

        - Docs
            + Added man-pages for `sawfish', `sawfish-client' and
              `sawfish-config' [Debian]

            + News items for 1.5.0 are rewritten in a more readable
              fashion [Teika Kazura]

            + Info manual updates [Christopher Bratusek, Jeremy
              Hankins, Teika Kazura]

            + Added new contributors to `THANKS' section of
              `CONTRIBUTING' [Christopher Bratusek]

            + Updated OPTIONS and KEYBINDINGS [Christopher Bratusek]

            + Fixed the license header of tabbed-windowing files
              [Christopher Bratusek]

(asau)

2010-08-21 17:09:09 UTC MAIN commitmail json YAML

Adjust buildlink3.mk after update.

(asau)

2010-08-21 16:57:09 UTC MAIN commitmail json YAML

Updated x11/rep-gtk2 to 0.90.2

(asau)

2010-08-21 16:56:52 UTC MAIN commitmail json YAML

Update to rep GTK 0.90.2

0.90.2:
improved deb and rpm packaging scripts
improved ebuild
install header to $includedir/rep-gtk
autotools (Makefile & Co.) rework
More bindings for 2.12 API added

0.90.1:
improved ebuild
improved spec-file [Kim B. Heino]
Addtitions:
GtkUiManager support [J端rgen H旦tzel]
GtkAction support [J端rgen H旦tzel]
More bindings to 2.12 API added

0.90.0:
Minimum GTK+ Version: 2.12
Additions:
GError support [J端rgen H旦tzel]
Basic GtkBuilder support [J端rgen H旦tzel]
Some bindings to 2.12 API added

DEPRECATED APIs removed:
GtkPreview*
GtkSignalRunType
GtkSubMenuDirection
GtkSubMenuPlacement

(asau)

2010-08-21 16:55:20 UTC MAIN commitmail json YAML

Updated lang/librep to 0.90.5

(asau)

2010-08-21 16:55:07 UTC MAIN commitmail json YAML

Update to librep 0.90.5

0.90.5
======

  * Byte compiler bugfix in docstring loss [Teika Kazura]

    Practical effect: Previously, if a user byte-compile files, then
    the docstring is lost in sawfish-config. This is fixed.

    Details: Loss of docstring happened only if (1) byte compiler is
    not given `--write-docs', so only byte-compilation by user (2)
    defvar is invoked within macro definition, including `defcustom' in
    Sawfish. Plain defvar was not affected by this bug.  It was
    because in 'trans-defvar' in lisp/rep/vm/compiler/rep.jl, the
    docstring is stored in a wrong property `variable-documentation'.
    It is corrected to `documentation'.

    Symbol `variable-documentation' is not used elsewhere, including
    Sawfish and emacs' sawfish-mode.
  * Our own implementation of dlmalloc is disabled since 2002, as it
    breaks librep on several architectures. From this version on, we
    don't ship it.  [Kim B. Heino]
  * Our own implementation of alloca/memcmp is not needed, rely on
    libcs instead.  [Kim B. Heino]
  * Majorly improved the debian and rpm packaging scripts [Christopher
    Bratusek] [Kim B. Heino]
  * Install headers to $includedir/rep/ instead of $includedir/
    [Christopher Bratusek]
  * Autotools improvements (Makefile, autogen.sh & Co.)  [Christopher
    Bratusek]
  * Added `file-gid-p' function for getting the gid of a file
    [Christopher Bratusek]
  * Added `file-uid-p' function for getting the uid of a file
    [Christopher Bratusek]

0.90.4
======

  * Library version bumped to 9.4.1
  * Use $prefix/lib instead of $prefix/libexec
  * Fixups for OpenBSD [Jasper Lievisse Adriaanse]
  * Don't hardcode /usr in manpage installation path

0.90.3
======

  * Added `file-executable-p' function
  * Improved spec-file [Kim B. Heino]
  * Improved ebuild [Fuchur, Christopher Bratusek]
  * Fallback check for ffi, if there's no libffi.pc [Vincent Untz]
  * Removed rep-config script (use librep.pc instead)
  * Added man-pages for `rep', `repdoc', `rep-remote' and
    `rep-xgettext' [Debian]
  * Added debian packaging scripts based on the official ones

0.90.2
======

  * Fixed a major defunct with prin1 + utf8 [Timo Korvola]
  * Fixed descriptions of formats %s and %S in streams.c

0.90.1
======

  * Properly terminate the rep interpreter [J端rgen Hæ—¦tzel]
  * Use readline history in interactive mode [J端rgen Hæ—¦tzel]
  * Tar file-handler does now support XZ compressed tarballs
  * Tar file-handler does now support LZMA compressed tarballs
  * Improved regex for parsing tar output in the file-handler [Alexey
    I. Froloff]
  * We do now correctly check for libffi
  * Improved libffi-binding [Alexey I. Froloff]
  * Updated librep.sym for missing entries [Alexey I. Froloff]
  * Fixed an incomplete definition
  * Added -L$prefix to libs section of the .pc file
  * No C++ style comments in C code

(asau)

2010-08-21 16:37:14 UTC MAIN commitmail json YAML

Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.

The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=..."), minus the packages updated after
the perl package update.

sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!

(seb)

2010-08-21 15:27:45 UTC MAIN commitmail json YAML

Updated devel/ocaml-findlib to 1.2.6

(asau)

2010-08-21 15:27:31 UTC MAIN commitmail json YAML

Update OCaml findlib to 1.2.6

Changes:

-  1.2.5: Fix: Again CR deletion... Turns out some OS do not  understand '\r'
  but only '\015' (thanks to Isaiah Weiner)
  Support for Win64 (untested; thanks to David Allsopp)
  ocamlfind no longer emits auto-generated -ccopt options. These  tend to
  accumulate, and it is possible that for large projects  the maximum command
  line length is exceeded. Current versions of  the O'Caml compilers do not
  need these extra -ccopt anyway, so  this code is completely dropped.

-  1.2.4: Fix: Bigarray needs unix (Thanks to Markus Mottl)
  Fix: In the version of camlp4 provided by O'Caml 3.11 various  libraries do
  not contain dynlink anymore. Because of this, dynlink  becomes a
  prerequisite of camlp4. (Thanks to Martin Jambon)
  Attempt: Fixing the space issue for paths (Win32). It is unclear  whether it
  is solved. (Thanks to Christophe Troestler)

-  1.2.3: Solving the CR deletion differently, to  make OS X happy.

-  1.2.2: Fix: Problem with CR character (Cygwin)  (Thanks to David Allsopp)
  Fix: Case-insensitive filesystems (partially solved)  (Thanks to David
  Allsopp)
  Fix: File name with backslashes at the end (Win32; thanks to Dmitry
  Grebeniuk)

-  1.2.1: Fix: Camlp4 rules now activate the stream parser extension

-  1.2: Fix in build scripts: Prepending $(prefix) when installing safe_camlp4
  (thanks to Daniel Janus)
  Non-existing -I directories are ignored (thanks to Nicolas Pouillard)
  A script to create a MacOS X package (thanks to Pietro Abate)
  Better support for Windows (with help from Robert Roessler and David
  Allsopp)
  Support for camlp4 on O'Caml 3.10
  Fix: "ocamlfind install" with "-patch" option writes now correct META file
  for the case that subpackages occur
  Adding environment variable OCAMLFIND_IGNORE_DUPS_IN to reduce the number of
  warnings ocamlfind emits

(asau)

2010-08-21 15:02:14 UTC MAIN commitmail json YAML

Unlimit stacksize, needed at least on my 5.99.38/amd64.

(wiz)

2010-08-21 14:18:04 UTC MAIN commitmail json YAML

Fix PLIST on inotify-Linux systems. From Aleksey Cheusov in PR 43784.

While here, clean up a pkglint warning.

(wiz)

2010-08-21 14:16:45 UTC MAIN commitmail json YAML

Updated lang/kali to 0.52.2

(asau)

2010-08-21 14:16:18 UTC MAIN commitmail json YAML

Update to Kali Scheme 0.52.2
Project was abandoned, then picked up, seems to be abandoned again.
Changes are unknown.

(asau)

2010-08-21 12:32:25 UTC MAIN commitmail json YAML

define dummy file command, same as OSF1 and FreeMiNT.

(obache)

2010-08-21 12:09:59 UTC MAIN commitmail json YAML

2010-08-21 12:04:52 UTC MAIN commitmail json YAML

Add libsmi option.
Requested by PR#32371.

(obache)

2010-08-21 10:17:59 UTC MAIN commitmail json YAML

Ok it is broken but let us make the Makefile usable enough to get it

(seb)

2010-08-21 10:17:10 UTC MAIN commitmail json YAML

Ok it is broken but let us make the Makefile usable enough to get it

(seb)

2010-08-21 09:07:17 UTC MAIN commitmail json YAML

Ok it is broken but let us make the Makefile usable to know it :)

(seb)

2010-08-21 07:50:12 UTC MAIN commitmail json YAML

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

(tron)

2010-08-21 07:50:02 UTC MAIN commitmail json YAML

Update "phpmyadmin" package to version 2.11.10.1.
Changes since version 2.11.10:
- [setup] Fixed output sanitizing in setup script, see PMASA-2010-4 for
  more details.
- [core] Fixed various XSS issues, see PMASA-2010-5 for more details.

(tron)

2010-08-21 06:08:46 UTC MAIN commitmail json YAML

Updated databases/p5-DBM-Deep to 2.0000

(sno)

2010-08-21 06:07:39 UTC MAIN commitmail json YAML

Updating databases/p5-DBM-Deep from 1.0025 to 2.0000

Upstream changes:
2.0000 Jul 18 14:30:00 2010 PDT
    - THIS VERSION IS NOT FULLY COMPATIBLE WITH 1.002x.
    - This version is practically identical to the previous dev
      release. See 1.9999_01, below, for all the hype.
    - Also, a memory leak caused by misuse of field hashes has
      been fixed.
    - perl 5.8.4 is now required.

1.9999_02 Jul 11 13:02:00 2010 PDT
    (This is the second developer release for 2.0000.)
    - Fixed a broken test
    - Fixed compilation and overloading under perl 5.8.x

1.9999_01 Jun 27 14:22:00 2010 PDT
    (This is the first developer release for 2.0000.)
    - THIS VERSION CHANGES THE FILE FORMAT.
        - Databases from DBM::Deep 1.0003 and higher can still
          be opened.
        - Newly-created databases automatically use the version 2.x
          format (numbered 4 internally), which version 1.x
          cannot open.
        - The optimize method, since it copies everything to a new
          database, upgrades it.
        - There is a new db_version method.
    - Support for perl 5.6 has been dropped. We now require 5.8. 5.6
      users can still use version 1.0025. If anyone really needs 5.6
      support in version 2.x, we can add it back again, but would pre-
      fer not to. Bug fixes may be back-ported to 1.002x if requested.
    - The File back end now supports Unicode. This is only supported
      for new databases. Old databases in the DBM::Deep 1.0003 format
      will have to be upgraded for this to work.
    - New external_refs mode, which allows objects retrieved from the
      database to hang on to the corresponding database entries, keep-
      ing them alive, even after all references to them from the data-
      base itself have been deleted.
    - Numeric comparison of DBM::Deep objects now works. Different
      objects used to compare equal. And there were uninitial-
      ized warnings.
    - Deletions now work properly in the DBI back end. Deleting an
      array or hash referenced by two keys in the database used to
      be a no-op.

(sno)

2010-08-21 05:07:51 UTC MAIN commitmail json YAML

Support builtin library detection for Haiku.
A half of PR#43399.

(obache)

2010-08-21 03:12:46 UTC MAIN commitmail json YAML

Improve Haiku Support
* Make perl executable
* Add rpath for linkage, to allow using libraries outside of default LIB_PATH.
* Allow PREFIX != /boot/common (patch-cp)

(obache)

2010-08-21 00:53:07 UTC MAIN commitmail json YAML

Updated mail/milter-manager to 1.6.1

(obache)

2010-08-21 00:52:33 UTC MAIN commitmail json YAML

Update milter-manager to 1.6.1.

== [release-1-6-1] 1.6.1: 2010-08-21

A bug fix release of 1.6.0.

=== milter manager

==== Fixes

  * Fixed a bug that no statistics information isn't logged to syslog.
    [Reported by akira yamada]

=== Thanks

  * akira yamada

(obache)

2010-08-20 23:35:38 UTC MAIN commitmail json YAML

Use standard format for MESSAGE.

(wiz)

2010-08-20 21:25:14 UTC MAIN commitmail json YAML

Note update of the "majordomo" package to version 1.94.5nb3.

(tron)

2010-08-20 21:25:02 UTC MAIN commitmail json YAML

2010-08-20 19:37:41 UTC MAIN commitmail json YAML

Updated print/p5-LaTeX-Table to 1.0.2

(sno)

2010-08-20 19:37:30 UTC MAIN commitmail json YAML

Updating print/p5-LaTeX-Table from 1.0.1 to 1.0.2

pkgsrc changes:
- adjust dependencies according to META.yml

Upstream changes:
1.0.2  Wed  Jul 21 21:08:00 2010
        - Support for recent Class:MOP (patch from Ansgar, Thanks!!)

(sno)

2010-08-20 19:29:13 UTC MAIN commitmail json YAML

Updated editors/p5-Padre-Plugin-XS to 0.02

(sno)

2010-08-20 19:29:01 UTC MAIN commitmail json YAML

Updating editors/p5-Padre-Plugin-XS from 0.01 to 0.02

pkgsrc changes:
- Bump dependency on devel/p5-Perl-APIReference for 5.12.0 support

Upstream changes:
0.02 2010-04-18
    Bump dependency on Perl::APIReference for 5.12.0 support.

(sno)

2010-08-20 19:25:22 UTC MAIN commitmail json YAML

Updated devel/p5-Perl-APIReference to 0.04

(sno)

2010-08-20 19:25:11 UTC MAIN commitmail json YAML

Updating devel/p5-Perl-APIReference from 0.03 to 0.04

Upstream changes:
0.04  Sun Apr 18 20:00 2010
  - Support for perlapi of 5.12.0.

(sno)

2010-08-20 19:15:41 UTC MAIN commitmail json YAML

Updated editors/p5-Padre-Plugin-Vi to 0.23

(sno)

2010-08-20 19:15:29 UTC MAIN commitmail json YAML

Updating editors/p5-Padre-Plugin-Vi from 0.22 to 0.23 (using
CPAN distribution 0.23.0, because 0.23 seems to have files distributed,
which doesn't belong there).

pkgsrc changes:
- Fixing for Padre-0.69 (Wx::perl::Dialog -> Padre::Wx::Dialog)
- mark for unsafe using make-jobs

Upstream changes:
0.23 2010.07.24
actually install the translations (RSN)
compatibility to newer Padre versions (ZENOG)
added MANIFEST.SKIP

(sno)

2010-08-20 18:51:37 UTC MAIN commitmail json YAML

Updated editors/p5-Padre-Plugin-PerlCritic to 0.08

(sno)

2010-08-20 18:51:25 UTC MAIN commitmail json YAML

Updating editors/p5-Padre-Plugin-PerlCritic from 0.07 to 0.08

Upstream changes:
    - Turkish translation updated (BURAK)
    - Compatibility with latest Padre (CHORNY)

(sno)

2010-08-20 18:48:09 UTC MAIN commitmail json YAML

Updated editors/p5-Padre-Plugin-SVN to 0.05

(sno)

2010-08-20 18:47:55 UTC MAIN commitmail json YAML

Updating editors/p5-Padre-Plugin-SVN from 0.04 to 0.05

Upstream changes:
0.05 2010.05.23
* Changed the blame (log) display to show as a tree view.
* gettext-ified some messages (Zeno Gantner)

(sno)

2010-08-20 17:56:49 UTC MAIN commitmail json YAML

libfetch-2.33:
Don't leak FTP connections on errors in fetch or if only stat is
requested. Reported via Xavier Chantry.

(joerg)

2010-08-20 16:54:02 UTC MAIN commitmail json YAML

Drop maintainership.  These are still slated for removal.  Only one person
has spoken up, and I think they're going to try the gutenprint version.

(gdt)

2010-08-20 16:33:10 UTC MAIN commitmail json YAML

Fix build on Solaris per pkg/43707 -  no revision bump since other
platforms are unaffected and Solaris did not build before

(tez)

2010-08-20 13:15:43 UTC MAIN commitmail json YAML

Move the reminder about reading the docs to MESSAGE, and use ${PREFIX} there
so that the right path is advertized.

(is)