Commit graph

160542 commits

Author SHA1 Message Date
tnn
6f80b27e28 needs bison 2010-07-16 07:34:02 +00:00
adam
46d880a022 Updated graphics/gimp to 2.6.10 2010-07-16 06:42:40 +00:00
adam
54e60a4947 Changes 2.6.10:
* Bugs fixed:
- TGA files saved with incorrect header yOrigin data
- Save As... does not save Windows Bitmap as default in dialog
- CMYK decompose broken
- brush - color from gradient works wrong in greyscale
- Error in gimp-hue-saturation PDB call
- GIMP crashes when clicking any scroll bar from combo boxes
- newly opened images are put into the background
* Updated translations:
 German (de)
 Italian (it)
 Romanian (ro)
 Portuguese (pt)
2010-07-16 06:41:42 +00:00
gdt
f509c50529 Updated graphics/p5-Image-ExifTool to 8.25 2010-07-16 01:35:44 +00:00
seb
0ff8bb5030 Updated devel/p5-MouseX-Types to 0.05 2010-07-16 00:54:49 +00:00
seb
02726bae01 Update p5-MouseX-Types from version 0.04 to version 0.05.
Upstream changes:
0.05 Sat Feb 13 16:08:44 2010
    - No functional changes (gfx)
    - Fix a typo in the tests (gfx)
2010-07-16 00:54:36 +00:00
seb
dd5d7cb9f4 Updated devel/p5-Mouse to 0.62 2010-07-16 00:50:38 +00:00
seb
6cce2ba3c6 Update from version 0.50 to version 0.62
Pkgsrc changes:
- adjust dependencies

Upstream changes:
0.62 Tue Jul  6 20:18:58 2010
    [FEATURES]
    * Support MouseX::StrictConstructor (gfx)

0.61 Sat Jun 19 15:35:48 2010
    [BUG FIXES]
    * Workaround the Perl_call_sv() problem again (gfx)
    * Update Module::Install to 0.99 for older versions of perls (gfx)

0.60 Wed Jun  9 19:43:55 2010
    [CHANGES]
    * BUILDALL is now called by Mouse::Meta::Class::new_object, rather than
      by Mouse::Object::new. (Moose 1.05)

    [BUG FIXES]
    * Fix type constraint validation messages to not include the string
      'failed' twice in the same sentence. (Moose 1.05)
    * Resolve RT #57975: The prefix "Exception caught" is no longer added
      to exceptions Mouse catches. (gfx)

    [OTHERS]
    * A difficult test (t/900_mouse_bugs/006_RT69939.t) will be skipped on
      some platforms. (gfx)

0.59 Tue May 18 16:29:57 2010
    [CHANGES]
    * Improve error messages on $class->accessor() (gfx)

0.58 Sat May  8 11:18:17 2010
    [BUG FIX]
    * Compliant with 5.12.0+

0.57 Fri May  7 14:27:00 2010
    [BUG FIX]
    * Resolve RT #57144: Fix problems in Perl_call_sv() again (gfx)

0.56 Thu Apr 29 11:15:45 2010
    [BUG FIX]
    * Resolve RT#56837: Role application to instance with init_arg'd
      attributes caused problems (Sanko Robinson)

0.55 Wed Apr 21 13:27:13 2010
    [BUG FIX]
    * Fix a bug that traits could cause panic/SEGV on threads (gfx)

0.54 Sat Apr 17 17:15:54 2010
    [BUG FIX]
    * Resolve RT#56523: has with reader, writer, lazy and builder
      could not create a write-only accessor (Michael G Schwern)

0.53 Sun Apr 11 11:39:03 2010
    [BUG FIX]
    * Mouse::Meta::Class could not clone objects with "required" attrs (gfx)

0.52 Sat Mar 27 15:38:52 2010
    * Workaround Perl-RT#69939 (eval "use $module" in Perl_call_sv()
     may cause segmentation faults,
     http://rt.perl.org/rt3/Public/Bug/Display.html?id=69939)

0.51 Mon Mar 15 15:25:58 2010
    SUMMARY

    [BUG FIXES]
    * Mouse::Object::DESTROY could cause SEGVs
    * Attribute triggers could cause panics
    * Integers > 2**32 were not groked as Int
    * Incorrect types, e.g. "Array[Int", was accepted
    * Metaclass compatibility was sometimes ignored

    [MOOSE COMPATIBILITY]
    * before/around/after accept regular expressions
    * has() becomes strict
    * the global destruction flag is passed to DEMOLISH methods
    * Delegations can be curried
    * Built-in type constraints have the same hierarchy as Moose's


0.50_09 Mon Mar 15 12:02:28 2010
    * (re)fix RT #55048 to grok 2**46+0.5 as Int, but
      accept 2**46 as Int even on 32 bit environments;
      note that an Int is exactly what is matched to /^[+-]?[0-9]+$/,
      so 10e100 will not be groked as Int (gfx)

0.50_08 Thu Mar 11 19:28:58 2010
    * Makefile.PL
        - Resolved #55419: Add Devel::PPPort to build_requires (gfx)
    * Mouse::Exporter
        - Turns on warnings FATAL => 'recursion' by default (gfx)
    * Mouse::Util::TypeConstraints
        - Change the type parser to check syntax (gfx)
          (Now it throws erros to "ArrayRef[]", "ArrayRef[Int", etc.)

0.50_07 Sun Mar  7 19:59:37 2010
    * Mouse::Meta::Attribute
        - Fix a possible panic, caused by triggers, reported by
          Nobuo Danjou (gfx)

0.50_06 Tue Mar  2 18:35:12 2010
    * Mouse::PurePerl
        - Fix an issue on metaclass compatibility again (gfx)
        - Fix more-than-32-bit-int progrem again (gfx)

0.50_05 Mon Mar  1 11:18:26 2010
    * Mouse::Util::TypeConstraints
        - Mouse used an incorrect cast at the C-level which meant that
          its idea of numbers was different from that of Perl's (and
          Mouse's). Notably > 2**32 Integers on 32 bit systems didn't
          work, RT #55048 (AEvar).
    * Mouse::Meta::Classs
        - Fix an issue on metaclass compatibility (gfx)

0.50_04 Fri Feb 26 18:57:24 2010
    * All
        - Warnings are less noisy, as shown by example/warns.pl (gfx)
        - Various optimization and refactoring (gfx)

0.50_03 Mon Feb 22 17:56:47 2010
    * Mouse::Meta::Attribute
        - Catch up about Moose 0.84 about warnings (gfx)
          - If an attribute generates no accessors, it will be warned
          - If both 'isa' and 'does' are specified and 'isa' does not do
            'does', then it will be warned
    * Mouse::Object
        - Fix a possible segv which is caused by destructors (gfx)
    * Mouse::Util::TypeConstraints
        - Implement the built-in type hierarchy (gfx)

0.50_02 Sat Feb 20 14:37:16 2010
    * Mouse::Meta::Attribute
        - Implement argument currying for delegation (gfx)
    * Mouse::Meta::Method::Constructor
        - Implement strict constructors experimentally, which will warn
          unkown constructor arguments (gfx)

0.50_01 Sat Feb 13 16:39:48 2010
    * Mouse
        - before/around/after now accept regexps (gfx)
    * Mouse::Object
        - Support the global destruction flag in DEMOLISH (gfx)
    * Mouse::Meta::Attribute
        - Attribute constructors now warn very noisily about unknown (or
          misspelled) arguments (gfx)
2010-07-16 00:50:23 +00:00
obache
f6558f875a Drop exactly dependency on bug-buddy again.
XXX: It maybe result in broken PLIST (if old or broken bug-buddy).
2010-07-16 00:44:29 +00:00
seb
3101f4478e Updated devel/p5-Devel-Cover to 0.67 2010-07-16 00:38:44 +00:00
seb
f0f2841146 Update p5-Devel-Cover from version 0.66 to version 0.67.
Upstream changes:
Release 0.67 - 8th May 2010
 - Fix up the Makefile for dmake on Strawberry Perl (Curtis Jewell) (rt 50774).
2010-07-16 00:38:30 +00:00
taca
2110afdff7 Note update of net/bind97 package to 9.7.1pl2. 2010-07-16 00:36:11 +00:00
taca
9491e57249 Update bind97 package to 9.7.1pl2 (BIND 9.7.1-P2).
--- 9.7.1-P2 released ---

2931.	[security]	Temporarily and partially disable change 2864
			because it would cause inifinite attempts of RRSIG
			queries.  This is an urgent care fix; we'll
			revisit the issue and complete the fix later.
			[RT #21710]

	--- 9.7.1-P1 released ---

2926.	[rollback]	Temporarially rollback change 2748. [RT #21594]

2925.	[bug]		Named failed to accept uncachable negative responses
			from insecure zones. [RT# 21555]
2010-07-16 00:35:20 +00:00
seb
4528ce3517 Updated devel/p5-App-FatPacker to 0.009002 2010-07-15 23:50:36 +00:00
seb
786257033f Update p5-App-FatPacker from version 0.009001 to version 0.009002.
Upstream changes:
0.02 2010-07-07
  - fixed typo and doc bug on command usage.(miyagawa)
  - added `help' command for slightly better user experience(miyagawa)
2010-07-15 23:50:24 +00:00
seb
2ed3becd40 Updated devel/p5-local-lib to 1.6.5 2010-07-15 23:16:17 +00:00
seb
8b0a5ca89c Update from version 1.6.4 to version 1.6.5 (upstream version
1.006005).

Upstream changes:
1.006005 2010-07-13

        - Added support informations (also for german)
        - Fixed newline in german translation from DOS2UNIX
2010-07-15 23:16:04 +00:00
wiz
4e4d6e75e0 + bouml-4.22.2, calibre-0.7.8, clutter-1.2.12, freeradius-2.1.9,
gtk-vnc-0.4.1, libgcrypt-1.4.6, lyx-1.6.7, tinycdb-0.77 [pkg/43612],
  vala-0.9.3, youtube-dl-20100714.
2010-07-15 22:33:55 +00:00
asau
40a7055ce5 Updated math/mpfr to 3.0.0.3 2010-07-15 21:36:26 +00:00
asau
2e511e9f92 Bump revision after math/mpfr update. 2010-07-15 21:35:10 +00:00
asau
f47130d623 Update MPFR to version 3.0.0.
Contributed by Stathis Kamperis on IRC.

Changes from versions 2.4.* to version 3.0.0:

- The "boudin aux pommes" release.
- MPFR 3.0.0 is binary incompatible with previous versions but (almost)
  API compatible.  More precisely the obsolete functions mpfr_random
  and mpfr_random2 have been removed, the meaning of the return type
  of the function mpfr_get_f has changed, and the return type of the
  function mpfr_get_z is now int instead of void.  In practice, this
  should not break any existing code.
- MPFR is now distributed under the GNU Lesser General Public License
  version 3 or later (LGPL v3+).
- Rounding modes GMP_RNDx are now MPFR_RNDx (GMP_RNDx kept for
  compatibility).
- A new rounding mode (MPFR_RNDA) is available to round away from zero.
- The rounding mode type is now mpfr_rnd_t (as in previous versions,
  both mpfr_rnd_t and mp_rnd_t are accepted, but mp_rnd_t may be
  removed in the future).
- The precision type is now mpfr_prec_t (as in previous versions, both
  mpfr_prec_t and mp_prec_t are accepted, but mp_prec_t may be removed
  in the future) and it is now signed (it was unsigned in MPFR 2.*, but
  this was not documented). In practice, this change should not affect
  existing code that assumed nothing on the precision type.
- MPFR now has its own exponent type mpfr_exp_t, which is currently
  the same as GMP's mp_exp_t.
- Functions mpfr_random and mpfr_random2 have been removed.
- mpfr_get_f and mpfr_get_z now return a ternary value.
- mpfr_strtofr now accepts bases from 37 to 62.
- mpfr_custom_get_mantissa was renamed to mpfr_custom_get_significand
  (mpfr_custom_get_mantissa is still available via a #define).
- Functions mpfr_get_si, mpfr_get_ui, mpfr_get_sj, mpfr_get_uj,
  mpfr_get_z and mpfr_get_z_2exp no longer have cases with undefined
  behavior; in these cases, the behavior is now specified, and in
  particular, the erange flag is set.
- New functions mpfr_buildopt_tls_p and mpfr_buildopt_decimal_p giving
  information about options used at MPFR build time.
- New function mpfr_regular_p.
- New function mpfr_set_zero.
- New function mpfr_digamma.
- New function mpfr_ai (incomplete, experimental).
- New functions mpfr_set_flt and mpfr_get_flt to convert from/to the
  float type.
- New function mpfr_urandom.
- New function mpfr_set_z_2exp (companion to mpfr_get_z_2exp, which
  was renamed from mpfr_get_z_exp in previous versions).
- Speed improvement for large operands in the trigonometric functions
  (mpfr_sin, mpfr_cos, mpfr_tan, mpfr_sin_cos): speedup of about 2.5
  for 10^5 digits, of about 5 for 10^6 digits.
- Speed improvement for large operands of the inverse trigonometric
  functions (arcsin, arccos, arctan): about 2 for 10^3 digits, up to
  2.7 for 10^6 digits.
- Some documentation files are installed in $docdir.
- The detection of a GMP build directory (more precisely, the internal
  header files of GMP) was previously done separately from the use of
  the --with-gmp-build configure option. This was not consistent with
  the documentation and with other parts of the configure script. So,
  as of MPFR 3.0.0, the internal header files of GMP are now used if
  and only if the --with-gmp-build configure option is given.
- The configure script recognizes some extra "long double" formats
  (double big endian, double little endian, double-double big endian).
- MPFR manual: added "API Compatibility" section.
- Test coverage: 97.1% lines of code.
- Bug fixes.
2010-07-15 20:30:40 +00:00
dholland
b4c1f98aae clarify patch comment 2010-07-15 20:23:10 +00:00
drochner
8c99baf3b0 +cython 2010-07-15 17:44:45 +00:00
drochner
ae0eaea71d add py-cython-0.12.1, a compiler to build Pythin extensions, from
Kamel Derouiche per pkgsrc-wip
2010-07-15 17:41:57 +00:00
obache
eaee16828c Updated lang/sigscheme to 0.8.4 2010-07-15 12:48:50 +00:00
obache
f880d89a16 Update sigscheme to 0.8.4.
Overview of changes from 0.8.3 to 0.8.4
=======================================

* Fixes

  - Fix alignment check on x86_64 when --enable-debug is set (bug #26950).
  - Fix test-storage.c
2010-07-15 12:48:37 +00:00
obache
6b80e927ea Need to include sys/param.h. noticed by tnn@. 2010-07-15 12:24:19 +00:00
obache
874e4a44ef Updated textproc/jdom to 1.1.1 2010-07-15 12:12:26 +00:00
obache
d52ffc8f14 Update jdom to 1.1.1.
Based on PR#43608 by Wen Heping.

* * * * * * JDOM 1.1.1 (tag: jdom_1_1_1) from JDOM 1.1 * * * * * *

Fixed a synchronization issue in the Namespace class that could cause a
hang when doing concurrent builds.

Added output support for Unicode surrogate pairs.

Added a new flag on SAXBuilder named setFastReconfigure() which, when set,
can speed reconfiguration by skipping repeated attempts to set features that
are determined not to be present on a parser.  Useful when doing many builds
per second.

Updated the provided Jaxen library from a modified Jaxen 1.0 to the latest
which is Jaxen 1.1.1.

Added reflection code in the error reporting system to support Android's
Dalvik VM which doesn't have the java.rmi.* classes.


* * * * * * JDOM 1.1 (tag: jdom_1_1) from JDOM 1.0 * * * * * *

Added an additional constructor to JDOMSource with an EntityResolver which is
passed to the internal DocumentReader allowing the SAXOutputter to properly
resolve DTDs.

Added a forceNamespaceAware property to DOMOutputter which specifies you want
a DOM constructed with namespaces even if the source JDOM document has no
namespaces.

Added support for attribute "INF" and "-INF" values, to indicate positive and
negative infinity, as XML Schema allows.

Moved isXMLWhitespace() method from private in XMLOutputter to public in
Verifier.

Clarified XMLOutputter behavior with newlines and indents:
  setIndent(" ") means newlines and " " indents
  setIndent("") means newlines and "" indents
  setIndent(null) means no newlines and no indents

Added set/getIgnoringBoundaryWhitespace() methods and features to SAXBuilder
and SAXHandler.

Added a setFactory() method on XSLTransformer to control the object types
built by the transform.

Added a string constant for the JDOM_OBJECT_MODEL_URI used by JAXP 1.3.  It
deserves being part of the public API.

Fixed bug in SAXOutputter where default namespaces would be declared as
xmlns:="" with a spurious colon.

Fixed bug when using attributes without a namespace and outputting to a
JDOMResult.

Removing check that a comment not start with a hyphen. A careful reading of
production 15 in the XML 1.0 spec indicates leading hyphens are in fact
allowed.

Fixed bug where outputFragment() on SAXOutputter could cause a
NullPointerException because the locator would be null during the call.

Fixed bug where serializing ElementFilter causes a NullPointerException if the
filter has no assigned namespace

Fixed some subtle bad behaviors in listIterator.add() logic, using brand new
iterator logic.

Allowed a String to be passed to ContentList.add(int, Object).

Simplified JDOMAbout and renamed info.xml to jdom-info.xml, so
getResourceAsStream() won't suffer any name collision.

Fixed tiny issue where CDATA could be set with illegal character content.

Added logic to escape some special characters in namespace URIs.

Fixed bug where the attribute type would change on a setAttribute() call.

Improved performance on Namespace handling.

Improved and clarified Javadocs.
2010-07-15 12:12:10 +00:00
obache
1ccedb5425 Updated chat/ircservices to 5.0.64 2010-07-15 11:48:43 +00:00
obache
61d8a67bb0 Update ircservices to 5.0.64.
While here, fixes PR#43618 (getline) and set LICENSE=gnu-gpl-v2.

Version 5.0
-----------
2009/07/31 .64	ChanServ DEPROTECT no longer removes channel owner mode, to
		    prevent abuse by rogue users.  Reported by Kieron
		    Thwaites <ron2k.za@gmail.com>
2010-07-15 11:48:21 +00:00
drochner
3f82c92826 bump PKGREV for poppler update 2010-07-15 11:33:57 +00:00
drochner
4160d40def generate and install poppler-config.h, used internally 2010-07-15 11:33:26 +00:00
tnn
dda106e0ca Add support for pkgsrc's primary platform ... 2010-07-15 09:08:28 +00:00
obache
21045a71de Fixes macro names for NetBSD. noticed by wiz@. 2010-07-15 09:01:53 +00:00
obache
b5c3fe5435 Add workaround to avoid merge .packlist with installed one.
XXX: maybe, should be in perl5/module.mk.
2010-07-15 06:03:47 +00:00
spz
db60308cef we nowadays have too many packages to have the grep for IPv6 in Makefiles
and options.mk to succeed, so grep by category instead
2010-07-15 05:25:30 +00:00
obache
9cc1acc237 Add workaround for lack of fmax/fmin on NetBSD<6. 2010-07-15 04:33:49 +00:00
adam
c7e4d930dc Updated databases/db5 to 5.0.26 2010-07-14 19:17:15 +00:00
wiz
ef14e07084 + Removed sysutils/nautilus-cd-burner successor sysutils/brasero [drochner 2010-07-14]
+       Removed devel/eel successor sysutils/nautilus [drochner 2010-07-14]
2010-07-14 19:00:54 +00:00
seb
2a04c171c6 Updated textproc/p5-Text-CSV_XS to 0.73 2010-07-14 18:50:23 +00:00
adam
8ca1347d10 Changes 5.0.26:
* Replication Manager sites can specify one or more possible client-to-client
  peers.
* Added resource management feature in all Berkeley DB APIs to automatically
  manage cursor and database handles by closing them when they are not required,
  if they are not yet closed.
* Added a SQL interface to the Berkeley DB library.
* Added hash databases support to the DB->compact interface.
* Renamed the "db_sql" utility to "db_sql_codegen".
* Added transactional support in db_sql_codegen utility.
* Added the feature read-your-writes consistency that allows client application
  to check, or wait for a specific transaction to be replicated from the master
  before reading database.
* Added DB log verification feature, accessible via the API and a new utility.
* Added support for applications to assign master/client role explicitly at any
  time. Replication Manager can now be configured not to initiate elections.
* Enhanced the DB->compact method so that it can reassign metadata and root
  pages from subdatabases to lower numbered pages while compacting a database
  file that contains multiple databases.
* Added system diagnostic messages that are ON by default.
* Added the feature to assign a priority level to transactions.
* Added a feature by which the Replication Manager application clients now
  automatically request any missing information, even when there is no master
  transaction activity.
* Added support for sharing logs across mixed-endian systems.
* Added an option to specify the first and last pages to the db_dump utility.
  You can do this by providing -F and -L flags to the db_dump -d option.
* Added Intel Performance Primitive (IPP) AES encryption support.
2010-07-14 18:50:14 +00:00
seb
dbb63d39aa Update from version 0.72 to version 0.73.
Upstream changes:
2010-05-03 0.73 - H.Merijn Brand   <h.m.brand@xs4all.nl>

    * Improve date conversion in examples/csv2xls
      new option -D allows column selection for date conversions
    * Tested under perl-5.12.0 (and 21 other versions of perl)
    * Added a note about EBCDIC data files
    * Test suite is now safe for parallel test (prove --shuffle -j6)
2010-07-14 18:50:10 +00:00
drochner
443b3c21f1 sync w/ base pkg 2010-07-14 18:47:06 +00:00
drochner
8566017994 belatedly bump ABI rev - the last update changed the shlib major 2010-07-14 18:46:30 +00:00
drochner
5099b6a6db mention recent updates 2010-07-14 18:44:27 +00:00
drochner
348986c716 nautilus-cd-burner has been replaced by "brasero" 2010-07-14 18:32:45 +00:00
seb
71cb1980e9 Updated devel/p5-Test-YAML-Meta to 0.16 2010-07-14 18:28:36 +00:00
seb
f5e842681d Update p5-Test-YAML-Meta from version 0.15 to version 0/16.
Upstream changes:
0.16    12/04/2010
	- fixed qr// delimiters due to issues with the NOT SIGN symbol
	  (suggested by Ricardo Signes & David Golden).
2010-07-14 18:28:21 +00:00
drochner
89da5951cf update to 1.6.4
changes:
-Added identi.ca bookmarking support
-bugfixes
-translation updates
2010-07-14 18:22:55 +00:00