Commit graph

154848 commits

Author SHA1 Message Date
sno
6d95bb047a Fixing PLIST by removing '*.orig' relics from patch stage 2010-02-16 15:22:44 +00:00
joerg
15a77f5186 DESTDIR support 2010-02-16 15:04:56 +00:00
wiz
95b6b32759 + dbus-1.2.20, dri2proto-2.3.
- gle-4.2.2 (different piece of software), gst-plugins0.10-base-0.10.26,
  gst-plugins0.10-good-0.10.18, gstreamer0.10-0.10.26 (thanks, drochner).
2010-02-16 14:57:14 +00:00
wiz
0fcd0bdd6a Revert to 4.0, on request by drochner, for gnome. 2010-02-16 14:54:41 +00:00
wiz
4986a5ec25 Updated textproc/xapian-omega to 1.0.18 2010-02-16 14:53:23 +00:00
wiz
410d26d738 Update to 1.0.18.
The rlimit issue adressed in patches ac,ad,ae was already addressed in
release 1.0.11, so remove them.

Omega 1.0.18 (2010-02-14):

indexers:

* Make the default charset "utf-8" not "UTF-8" as we lower case explicitly
  specified character sets to compare to see if we need to reparse.  Previously
  XML documents which explicitly specified their character set as UTF-8 would
  cause needless restart or the parser.

* omindex:

  + Increase the wdf boost for the document title from 2 to 5, since 2 isn't
    really enough.

* scriptindex:

  + Don't abort with "Unknown Exception" if indexing is disallowed or we hit
    </body> for a document which had an overridden character set.  Fixes
    ticket#410.

Omega 1.0.17 (2009-11-18):

indexers:

* omindex:

  + On Linux, change the memory limit on external filters to use _SC_PHYS_PAGES
    since _SC_AVPHYS_PAGES excludes pages used by the OS cache and so will
    often report a really low value.  Fixes Debian bug#548987 and ticket#358.

  + Fix likely crash when reading output from external filter program if read()
    is interrupted by a signal.

  + Fix potential crash when indexing PostScript files (fixed by using delete[]
    (not delete) for array allocated by new[]).

testsuite:

* utf8converttest: Charset "8859_1" isn't understood by Solaris libiconv, and
  isn't a standard charset name, so just test it when using our built-in
  converter and GNU libc.

portability:

* Fix build failure on Mac OS X 10.6.

* Also check for socketpair() in -lxnet if it isn't found without, which
  enables resource limits on external filter programs called by omindex on
  Solaris, and possibly some other platforms.  Fixes ticket#412.
2010-02-16 14:53:13 +00:00
joerg
5ab99ca677 DESTDIR support 2010-02-16 14:52:33 +00:00
joerg
c5a9088534 Rename to ap13-jk to follow naming convention. DESTDIR support 2010-02-16 14:52:13 +00:00
wiz
df364f713b Updated textproc/xapian to 1.0.18 2010-02-16 14:51:36 +00:00
wiz
cf44edef34 Update to 1.0.18:
Xapian-core 1.0.18 (2009-02-14):

API:

* Document: Add new add_boolean_term() method, which is an alias for add_term()
  with wdfinc=0.

* QueryParser:

  + Add support for quoting boolean terms so they can contain arbitrary
    characters (partly addresses ticket#128).

  + Add ENCLOSING_MARK and COMBINING_SPACING_MARK categories, plus several
    zero-width space characters, as phrase generators.  This mirrors a better
    fix in 1.1.4, but without losing compatibility with existing databases.

  + Fix handling of an explicit AND before a hated term (foo AND -bar).
    (ticket#447)

* TermIterator: Only include trailing '+' or '#' on a term if it isn't followed
  by a word character (makes more sense and matches QueryParser's behaviour).
  (ticket#446)

* Database: Fix many methods to behave better on a database with no
  subdatabases, such as is constructed by Database().  Fixes ticket#415.

testsuite:

* Add test coverage for xapian-compact, and improve coverage for
  WritableDatabase::replace_document().

* apitest: Rename matchfunctor<n> to matchdecider<n> to match current
  terminology.

flint backend:

* When updating documents, don't update posting entries which haven't changed.
  Largely fixes ticket #250.

* If the number of entries in the position table happened to be 4294967296 or
  an exact multiple, Xapian would ignore positional data for that table when
  running queries.

* Iterating all the terms in the database with a prefix is now slightly more
  efficient.

* Fix locking code to work if stdin and/or stdout have been closed.

* If a document is replaced with itself unmodified, we no longer increase the
  automatic flush counter.

* When iterating a posting list modified since the last flush(), the reported
  wdf is now correct (previously it was too high by its old value).

* Replacing a document deleted since the last flush failed to update the
  collection frequency and wdf, and caused an assertion failure when assertions
  were enabled.

* WritableDatabase::replace_document() didn't always remove old positional
  data (the only effect is that the position table was bloated by unwanted
  entries).

* xapian-inspect:

  + New "until" command which shows entries until a specified key is reached.

  + New "open" command which allows easy switching between tables.

* xapian-compact: Fix typos in --help output.

quartz backend:

* Replacing a document deleted since the last flush failed to update the
  collection frequency and wdf, and caused an assertion failure when assertions
  were enabled.

* WritableDatabase::replace_document() didn't always remove old positional
  data (the only effect is that the position table was bloated by unwanted
  entries).

remote backend:

* Throw UnimplementedError if a MatchDecider is used with the remote backend.
  Previously Xapian returned incorrect results in this case.

build system:

* configure: With --enable-maintainer-mode, enable -Werror for GCC >= 4.1
  rather than >= 4.0 as Apple's GCC 4.0 gives bogus uninitialised variable
  warnings.

documentation:

* The API documentation now includes Xapian::Error and subclasses, and doesn't
  mention Xapian::Query::Internal.

* Make clear in the Xapian::Document API documentation that this class is a
  lazy handle and discuss the issues this can cause.

* INSTALL: Improve text about zlib dependency.

* HACKING: Add details of our licensing policy for accepting patches.

examples:

* quest: If no database is specified, still parse the query and report
  Query::get_description() to provide an easy way to check how a query parses.

portability:

* Fix GCC 4.2 warning.

xapian-core 1.0.17 (2009-11-18):

API:

* QueryParser:

  + Fix handling of a group of two or more terms which are all stopwords which
    notably caused issues when default_op was OP_AND, but could probably
    manifest in other cases too.  Fixes ticket#406.

  + Fix interaction of FLAG_PARTIAL and FLAG_SYNONYM.  (ticket#407)

* Database: A database created via the default constructor no longer causes a
  segfault when the methods get_metadata() or metadata_keys_begin() are called.

flint backend:

* Don't try to close the fd one more than the maximum allowable when locking
  the database.  Harmless, except it causes a warning when running under
  valgrind.  (ticket#408)

remote backend:

* Xapian::Sorter isn't supported with the remote backend so throw
  UnimplementedError rather than giving incorrect results.  (ticket#384)

* Fix potential reading off the end of the MSet which is returned internally
  by the remote server.

documentation:

* Various documentation comment improvements for the Database class.

examples:

* examples/quest.cc: Tighten up the type of the error we catch to detect an
  unknown stemming language.

portability:

* xapian-config: Need to quote ^ for Solaris /bin/sh.

* configure: Actually use any flags we determine are needed to switch the
  compiler to proper ANSI C++ mode, when building xapian-core - this stopped
  working in 1.0.12, breaking support for HP's aCC, Compaq's cxx, Sun's CC, and
  SGI's CC.
2010-02-16 14:51:26 +00:00
wiz
83fd1e5e6e Updated mail/t-prot to 2.15 2010-02-16 14:37:20 +00:00
wiz
2db2e51755 Update to 2.15:
* t-prot: Release as v2.15.
	* t-prot.1: Describe --sani more precisely.
	* t-prot: Fine-tune some regex.
	* t-prot: Fix merging of multiple blank lines within pgp output
	using -Mmutt.
	* t-prot: Simplify expression.
	* t-prot, t-prot.1: Add --reply and --sani for fixing annoying
	headers. Add documentation for both.  Many thanks to Matthias
	Kilian and Martin Neitzel for suggesting and providing some script
	invoked by procmail rules.
	* t-prot.1: Suggest reading about -p when using -P.
	* t-prot.1: Sort options in a consistent, alphabetical way.
	* t-prot.1: Fix hyphenation. Thanks to Gerfried Fuchs for noticing!
	* t-prot.1: Jeff Covey's article should not be missing under SEE
	* t-prot: Release as v2.14.
	* t-prot: Code cleanup for --pgp-short. Should get better
	performance now.
	* t-prot: Tighten --help output.
	* t-prot.1: Add fields of usage and mention the INN2 filter file.
	* t-prot.1: Improve word flow.
	* t-prot.1: Another occurence of RFC 2822, update to RFC 5322.
	* t-prot.1: RFC 5322 is offficial standard for the Internet Message
	Format since October 2008, obsoleting RFC 2822.
	* t-prot: Adjust comment to modern t-prot times.
	* t-prot.1: Update contributers list.
	* t-prot.1: Update date string.
	* t-prot.1: Remove redundancies, improve some descriptions.
	* contrib/muttrc.t-prot: By now, --bigq is pretty much standard and
	extremely well-tested, so we include it into default configuration.
	* t-prot: Revert thinko from r1.272.
	* t-prot: Fix syntax to match coding style.
	* t-prot: Release as v2.13.
	* t-prot: Fix long standig false positive for mutt<1.5.18 with
	Microsoft TOFU inside a PGP signed message and no lines above the
	full quote (indicating a forwarded message rather than a lazy full
	quote).  Thanks to Gerfried Fuchs.
	* t-prot: Fix newline stripping for locales.
	* t-prot: Release as v2.12.
	* t-prot, t-prot.1: Exit with exit status EX_OK when --max-lines
	hits and -Mmutt is set (mutt is picky when a display_filter fails).
	Provide a notification line in that case. Update man page. Many
	thanks to Gerfried Fuchs, Martin F. Krafft and Tino Keitel for
	reporting, providing a patch and testing.
	* t-prot: Release as v2.11.
	* contrib/filter_innd.pl: Command line default has changed, check
	flags must be set now.
	* t-prot.1: Better explain ratio check value.
	* t-prot.1: Update copyright time stamp.
	* t-prot, t-prot.1: Fix initialization and command line parsing for
	--check (this should work as advertised now). Make the ratio check
	code a little easier to read. Add the default value for the ratio
	check to the man page.
	* t-prot.1: Remove URLs to example scripts and configs. The files
	are provided with the package.
	* t-prot, t-prot.1: Fix last commit, release as t-prot v2.10.
	Update man page.
	* t-prot: Release as t-prot v2.9.
	* t-prot: Do not check for message length in attachments (we
	checked already for the entire message). Do exit with proper exit
	code if message is longer than set in --max-lines (so scripts can
	see if we gave up processing).
	* t-prot.1: Fix speling.
	* t-prot.1: Fix time stamp.
	* t-prot.1: Fix rendering for anyone out there using UTF-8. Many
	thanks (and a very merry Christmas) to Alfie.
	* t-prot: Release as v2.8.
	* t-prot, t-prot.1: Update documentation to reflect last change.
	Avoid being tripped by endless (or non-existant) headers.
	* t-prot: Change check order and remove duplicated code for
	--max-lines.
2010-02-16 14:37:11 +00:00
wiz
e1b2f323ec Updated textproc/rasqal to 0.9.19 2010-02-16 14:34:49 +00:00
wiz
df2c917e94 Update to 0.9.19:
2010-02-15 Rasqal Version 0.9.19 Released

   The only change to this release is to fix the pkg-config rasqal.pc file
   to to restore the dependency on raptor which was accidently deleted.
   Lesson learnt: do not commit code after midnight local time.

2010-02-14 Rasqal Version 0.9.18 Released

   Add initial draft parsing and API (NOT execution) support for SPARQL
   1.1 Update W3C Working Draft of 2010-01-26.
   Add public APIs (row, results, result formatter, variables table) so
   that query results can be built, read and written without a query.
   Add API resilience checks for invalid NULL pointer arguments.
   Many other bug fixes and improvements were made.
   Fixed Issues: #0000320, #0000323 #0000343, #0000345 and #0000347
2010-02-16 14:34:40 +00:00
wiz
c2c2d8a505 Updated time/py-pytz to 2010b 2010-02-16 14:14:29 +00:00
wiz
384da4e34b Update to 2010b, the usual. 2010-02-16 14:14:13 +00:00
wiz
097ddde77e Updated security/polkit-qt to 0.9.3 2010-02-16 14:08:54 +00:00
wiz
faf5e14654 Update to 0.9.3, needed by KDE-4.4. 2010-02-16 14:08:38 +00:00
wiz
cec9562e2b Updated devel/p5-Mouse to 0.50 2010-02-16 14:01:48 +00:00
wiz
5558320a74 Update to 0.50:
0.50 Mon Feb  8 13:43:19 2010
    * Mouse::Tiny
        - Allow "use Mouse::Tiny VERSION" with a patch contributed by
          chocolateboy, RT #54383 (gfx)
    * Mouse::Util::MetaRole
        - Add Mouse::Util::MetaRole::apply_metaroles
            to catch up the latest Moose API for metaroles (gfx)
2010-02-16 14:01:30 +00:00
sno
14e22a6792 Fixing '.orig' relics being installed after patching (fixes PLIST, bumping Revision) 2010-02-16 14:00:14 +00:00
taca
503e62ccb4 Note update of www/pear-HTML_Select package to 1.3.0. 2010-02-16 13:59:06 +00:00
taca
074778d93b Update pear-HTML_Select pacakge to 1.3.0 based on pkg PR/42824
by Wen Heping.


Changelog:

QA release:
- Fix bug #2676: Setting selected value doesn't work [cweiske]
- Implement request #1749: add support for <optgroup> elements
for multi-level arrays [cweiske]
- Automatically set the <select> element id attribute
- Add some examples
- Convert to package.xml v2
- Fix coding standards
- Stabilize after 6 years in beta
2010-02-16 13:58:19 +00:00
wiz
e6e03b6554 Updated mail/p5-MailTools to 2.06 2010-02-16 13:57:37 +00:00
wiz
889f638739 Update to 2.06:
version 2.06: Tue Jan 26 10:01:22 CET 2010

	Improvements:

	- express more clearly that Authen::SASL needs to be installed
	  manually if you need the functionality

	- support for smtps via Net::SMTP::SSL, by [Maciej Żenczykowski]
2010-02-16 13:57:20 +00:00
sno
51e142fe24 Updated databases/p5-DBIx-Class-Schema-Loader to 0.05002 2010-02-16 13:53:49 +00:00
sno
58866ba4e0 Updating databases/p5-DBIx-Class-Schema-Loader from 0.05000 to 0.05002
pkgsrc changes:
- Remove '*.orig' relics remaining from patch

Upstream changes:
0.05002  2010-02-15 10:17:47
        - support for SQLAnywhere via DBD::SQLAnywhere and ODBC
        - fix picking up quoted tables for SQLite (RT#54538) patch from schwern
        - validate class/component loader_options to make sure classes
          are available before generating the schema, patch from bphillips

0.05001  2010-02-05 14:29:27
        - correct default_value for all backends with common tests
        - fix bug with quoted Pg tables from $dbh->tables (RT#54338)
        - add inflate_datetime => 0 to 'timestamp' types for Sybase
2010-02-16 13:53:38 +00:00
sno
a5b47b4854 Fixing '.orig' relicts being installed after patching 2010-02-16 13:49:22 +00:00
wiz
90be4998a5 Added fonts/proggy-fonts version 1 2010-02-16 13:49:03 +00:00
wiz
9dad8d826a + proggy-fonts 2010-02-16 13:48:42 +00:00
wiz
6d651ab1d0 Initial import of proggy-fonts-1, based on a package provided
by Demelier David in PR 42823.

A set of monospaced bitmap programming fonts.
2010-02-16 13:48:10 +00:00
wiz
39a712aa42 Updated wm/openbox to 3.4.11 2010-02-16 13:43:26 +00:00
wiz
681195a9d9 Update to 3.4.11:
3.4.11:
  * Update Hungarian, Japanese, and Latvian translations.
  * Make xdg-autostart use the OPENBOX environment by default, so you can use
    OnlyShowIn=OPENBOX in an autostart .desktop and it will work as expected.
  * Don't close the menu when you hold control and execute something.
  * Fix bug #4503 (Adjust who shows up in the Alt-Tab list using SKIP_TASKBAR).
  * Fix flickering window when moving maximized window between monitors of
    different sizes.
  * Fix bug #4355 (Allow multiple escaped _'s in a menu label and allow
    a menu shortcut to come after an escaped _).
  * Remember the maximized state of a window when it goes fullscreen, and
    restore it when leaving fullscreen state.
  * Fix bug #4072 (Openbox is stopped by terminal applications writing to
    stdout).
  * Fix bug #4492 (Mistake in openbox-gnome-session check while setting up).
  * Fix obxprop to make --root and --id work correctly.
  * Add _OB_APP_ROLE/CLASS/NAME/TYPE properties (replaces _OB_ROLE/CLASS/NAME).
  * Make the focus cycling popup dynamic when windows appear/disappear.
  * Fix bug #4411 (Crash when window appears during focus cycling).
  * Allow the user to specify which properties should be shown by obxprop.
  * Fix tilde expansion in the Execute action
  * Make Home and End keys move to the top/bottom of the active menu.
  * Use the submenuShowDelay when navigating menus with the keyboard.
2010-02-16 13:43:09 +00:00
wiz
2de6c38cb4 PKGREVISION bump for libxklavier shlib update. 2010-02-16 13:35:40 +00:00
wiz
b9ad8fc0c8 Update to 5.0:
The release adds ability to have different types of listeners in
the same process (necessary for the latest unstable version of
GNOME).

The API/ABI (and soname) was changed (oops, I did it again).
2010-02-16 13:35:14 +00:00
sno
8987ab981b Updated databases/p5-DBIx-Class to 0.08119 2010-02-16 13:31:44 +00:00
sno
bd9c7fdf7e Updating databases/p5-DBIx-Class from 0.08115 to 0.08119
pkgsrc changes:
- Adjust dependencies

Upstream changes:
0.08119 2010-02-15 09:36:00 (UTC)
        - Add $rs->is_ordered to test for existing order_by on a resultset
        - Add as_subselect_rs to DBIC::ResultSet from
          DBIC::Helper::ResultSet::VirtualView::as_virtual_view
        - Refactor dbicadmin adding DDL manipulation capabilities
        - New optional dependency manager to aid extension writers
        - Depend on newest bugfixed Moose
        - Make resultset chaining consistent wrt selection specification
        - Storage::DBI::Replicated cleanup
        - Fix autoinc PKs without an autoinc flag on Sybase ASA

0.08118 2010-02-08 11:53:00 (UTC)
        - Fix a bug causing UTF8 columns not to be decoded (RT#54395)
        - Fix bug in One->Many->One prefetch-collapse handling (RT#54039)
        - Cleanup handling of relationship accessor types

0.08117 2010-02-05 17:10:00 (UTC)
        - Perl 5.8.1 is now the minimum supported version
        - Massive optimization of the join resolution code - now joins
          will be removed from the resulting SQL if DBIC can prove they
          are not referenced by anything
        - Subqueries no longer marked experimental
        - Support for Informix RDBMS (limit/offset and auto-inc columns)
        - Support for Sybase SQLAnywhere, both native and via ODBC
        - might_have/has_one now warn if applied calling class's column
          has is_nullable set to true.
        - Fixed regression in deploy() with a {sources} table limit applied
          (RT#52812)
        - Views without a view_definition will throw an exception when
          parsed by SQL::Translator::Parser::DBIx::Class
        - Stop the SQLT parser from auto-adding indexes identical to the
          Primary Key
        - InflateColumn::DateTime refactoring to allow fine grained method
          overloads
        - Fix ResultSetColumn improperly selecting more than the requested
          column when +columns/+select is present
        - Fix failure when update/delete of resultsets with complex WHERE
          SQLA structures
        - Fix regression in context sensitiveness of deployment_statements
        - Fix regression resulting in overcomplicated query on
          search_related from prefetching resultsets
        - Fix regression on all-null returning searches (properly switch
          LEFT JOIN to JOIN in order to distinguish between both cases)
        - Fix regression in groupedresultset count() used on strict-mode
          MySQL connections
        - Better isolation of RNO-limited queries from the rest of a
          prefetching resultset
        - New MSSQL specific resultset attribute to allow hacky ordered
          subquery support
        - Fix nasty schema/dbhandle leak due to SQL::Translator
        - Initial implementation of a mechanism for Schema::Version to
          apply multiple step upgrades
        - Fix regression on externally supplied $dbh with AutoCommit=0
        - FAQ "Custom methods in Result classes"
        - Cookbook POD fix for add_drop_table instead of add_drop_tables
        - Schema POD improvement for dclone
2010-02-16 13:31:33 +00:00
wiz
cf496cda2f Updated devel/libgsf to 1.14.17 2010-02-16 13:29:42 +00:00
wiz
09df66b08b Update to 1.14.17:
libgsf 1.14.17

Morten:
	* Fix xml parser crash.
	* Write meta-data values in name order.
	* Don't call gnome_vfs_init in python binding.  [#599973]
2010-02-16 13:29:26 +00:00
wiz
4aa7f80a78 Updated sysutils/dbus-glib to 0.84 2010-02-16 13:24:03 +00:00
wiz
82ceabf0ce Update to 0.84:
There are some compatibility fixes here, but I should call out for OS
builders commit 34636b12c62523b9db789b0fbeb3a86782debf10 where you no
longer have to pass --with-introspect-xml to configure.
2010-02-16 13:23:50 +00:00
sno
26cbb16893 Updated databases/p5-SQL-Abstract to 1.61 2010-02-16 13:23:32 +00:00
sno
da5e940af6 Updating databases/p5-SQL-Abstract from 1.60 to 1.61
Upstream changes:
revision 1.61  2010-02-05 16:28 (UTC)
----------------------------
    - Allow INSERT to take additional attributes
    - Support for INSERT ... RETURNING
    - Another iteration of SQL::Abstract::Test fixes and improvements
2010-02-16 13:23:21 +00:00
drochner
8ee7bb0449 reset PKGREV for base pkg update 2010-02-16 13:17:28 +00:00
drochner
6964e05f30 update to 0.10.18
changes:
-v4l2src: implement GstURIHandler interface
-more fixes and improvements
2010-02-16 13:16:53 +00:00
drochner
e6f1bee590 update to 0.10.26
changes:
-many fixes to playbin2
-libgsttag: add utility functions for ISO-639 language codes and tags
-theora: port to 'new' theora 1.0 API
-more fixes and improvements
2010-02-16 13:14:31 +00:00
adam
79fdd3a781 Updated qt4 to 4.6.2 2010-02-16 13:10:15 +00:00
adam
e6eadb7e6f Changes 4.6.2:
This is a bug-fix release. It maintains both forward and backward
compatibility (source and binary) with Qt 4.6.0 and 4.6.1.
2010-02-16 13:08:09 +00:00
drochner
bf818f2b01 update to 0.10.26
changes:
-registry: do plugin scanning (on *nix) using an external helper binary
-lots of performance improvements
-add GstByteWriter, a simple generic byte writer
-queue2: move from gst-plugins-base into the coreelements plugin in core
-other fixes and improvements
2010-02-16 13:07:05 +00:00
sno
d5d5a327f0 Updated devel/p5-Object-InsideOut to 3.58 2010-02-16 13:02:13 +00:00