Commit graph

136626 commits

Author SHA1 Message Date
he
8efef25eba Update from version 0.04 to 0.05.
Pkgsrc changes:
 o Update dependencies according to changed requirements.

Upstream changes:

0.05  Sun, 04 Jan 2009 20:46:07 +0100
  * Use Variable::Magic and cast %^H instead Scope::Guard and relying
    on a timely destruction of objects within %^H. This fixes using
    on_scope_end in blocks where string evals are compiled as those
    increment the refcount of objects in %^H on 5.10.
2009-01-18 23:21:21 +00:00
he
a66d03c913 Update from version 5.67 to 5.68.
Upstream changes:

5.68  Mon Jan  5 17:50 2009
  - VMS fixes for the AutoSplit tests (John Malmberg, RT #42137)
2009-01-18 23:16:25 +00:00
he
b29801e5b5 Update from version 0.202 to 0.203.
Upstream changes:

0.203     2009-01-16
          add repo info to metadata
2009-01-18 23:12:15 +00:00
shattered
89ba7f0fcc Updated pkgtools/rc.subr to 20090118. 2009-01-18 23:09:46 +00:00
he
d567df8fb1 Update from version 2.11.7 to 2.11.8.
This despite one of the selftests still fail.

Upstream changes:

2.11.8 Released December 28, 2008

  - Fix minor bug in t/12placeholders.t test (CPAN bug #41723)
2009-01-18 23:09:00 +00:00
he
36732da02f Update from version 0.37 to 0.39.
Upstream changes:

0.39    14 Jan 2009
        * add missing file to MANIFEST that causes tests to fail in 0.38

0.38    12 Jan 2009
        * use maybe::next::method
        * fix view_on_single_result bug in Test::Controller
2009-01-18 22:59:30 +00:00
he
4ea16cc598 Update from version 1.18 to 1.19.
Upstream changes:

1.19    2009-01-15
        * Make JSON::Syck optional and deprecated. (perigrin)
        * Added tests for string escapes. (semifor)
2009-01-18 22:52:42 +00:00
shattered
02dcf45d24 On some operating systems (Linux, FreeBSD -- see their problem report
82430) ps might list process names in square brackets.  Fix regex in
_find_processes() accordingly.

OK by wiz@.
2009-01-18 22:35:35 +00:00
christos
adc05f9d7a more PLIST fixes. 2009-01-18 21:52:25 +00:00
christos
c919f79dcc welcome to 6u11 2009-01-18 21:45:26 +00:00
jmmv
97fe5e1bc6 monotone and monotone-server updated to 0.42. 2009-01-18 21:26:09 +00:00
jmmv
a7c10502a5 Sync with monotone-0.42 update: bump version to 0.42 and rely on this release
of monotone.
2009-01-18 21:25:03 +00:00
jmmv
3df4e43195 Update to 0.42:
Changes

- The output of 'automate show_conflicts' has been changed; a
  default resolution for file content conflicts and user resolutions
  for other conflict types has been added. 'directory_loop_created'
  changed to 'directory_loop'.

- The French, Brazilian-Portuguese and Japanese translations were
  outdated and thus have been removed from the distribution. In case
  you care about them and want them back, drop us a note at
  monotone-devel@nongnu.org.

Bugs fixed

- 'mtn db kill_rev_locally' did not update the inodeprint
  cache when executed from a workspace on which the
  revision's changes where applied.

- Some recent performance issues have been corrected:
  * since 0.40, there is much more use of hex encoding/decoding.
    These functions have been sped up considerably.
  * since 0.40, every command in an 'automate stdio' session
    would reinitialize the database. This was rather slow, so
    monotone will now keep the database open between commands.

- The Lua-based contributed Monotone extension introduced in
  0.38 haven't been added to the tarball; this has been fixed.

- Monotone died if _MTN/options contained an empty / not-existing
  'keydir' entry. This has been fixed. Also, invalid options are now
  better detected and give a more useful error message.

- Monotone crashed if it was called with more than 2048 command
  line arguments. This has been fixed.

- If vim is used as merger, it no longer prompts the user for an
  enter key press.

- Decoding errors f.e. through to garbage from the network no longer
  results in informative failures, but in warning. This was made
  possible by introducing the concept of origin-aware sanity checks.

- Monotone crashed if it was called with nested wildcards such as
  'a.{i.{x,y},j}'. This has been fixed.

- The standard implementation of the 'ignore_file' hook now accepts
  windows and unix line endings in .mtn-ignore files.

New features

- New 'mtn ls duplicates' command which lets you list
  duplicated files in a given revision or the workspace.

- New option --no-workspace, to make monotone ignore any
  workspace it might have been run in.

- New command group 'mtn conflicts *'; provides asynchronous
  conflict resolutions for merge and propagate.

- New 'automate file_merge' command which runs the internal line
  merger on two files from two revisions and outputs the result.

- New 'automate lua' command with which lua functions, like
  monotone hooks, can be called over automate. This is particularily
  useful to get user defaults, like ignorable files, branch keys and
  passwords, which are managed through one or more monotonerc files.

- New 'automate read_packets' command which reads data packets like
  public keys similar to 'mtn read'.

- 'merge' and 'propagate' accept user commit messages; the
  'merge rev rev' or 'propagate branch branch' message will be
  prefixed to the user message. --no-prefix removes the prefix.

Internal

- Update Botan to 1.7.12.
2009-01-18 21:24:12 +00:00
jmmv
80bed0dd75 Note update of atf to 0.6. 2009-01-18 21:23:41 +00:00
jmmv
0d4f326d17 Update to 0.6:
Release date: January 18th, 2009
Status:       Experimental

* Make atf-exec be able to kill its child process after a certain period of
  time; this is controlled through the new -t option.

* Change atf-sh to use atf-exec's -t option to control the test case's
  timeouts, instead of doing it internally.  Same behavior as before, but
  noticeably faster.

* atf-exec's -g option and atf-killpg are gone due to the previous change.

* Added the atf-check(1) tool, a program that executes a given command and
  checks its exit code against a known value and allows the management of
  stdout and stderr in multiple ways.  This replaces the previous atf_check
  function in the atf-sh library and exposes this functionality to both
  atf-c and atf-c++.

* Added the ATF_REQUIRE family of macros to the C interface.  These help
  in checking for fatal test conditions.  The old ATF_CHECK macros now
  perform non-fatal checks only.  I.e. by using ATF_CHECK, the test case
  can now continue its execution and the failures will not be reported
  until the end of the whole run.

* Extended the amount of ATF_CHECK_* C macros with new ones to provide more
  features to the developer.  These also have their corresponding
  counterparts in the ATF_REQUIRE_* family.  The new macros (listing the
  suffixes only) are: _EQ (replaces _EQUAL), _EQ_MSG, _STREQ and
  _STREQ_MSG.
2009-01-18 21:23:14 +00:00
adam
bb52871369 Updated emulators/hatari to 1.1.0 2009-01-18 20:09:08 +00:00
adam
a600dcd712 Changes 1.1.0:
Emulation:
* Falcon DSP emulation good enough to improve some few games/demos, e.g.
  Virtual City. (most still work better with emulation disabled, though)
* New sound engine that fixes all problems with the old one
* 16-bit stereo sound (instead of 8-bit mono)
* Improved blitter emulation (blitter cycles emulation, blitter interrupt)
* Improved STE support for some video registers (hscroll, linewidth, ...)
* Improved printer emulation
* Improved STE microwire emulation
* Improved support for games & demos which are accessing IKBD directly
  (including a fake 6301 emulation for the known IKBD programs)
* ACSI emulation fix to get HDDriver working
* Some other minor bugfixes to ST/STe emulation (FDC, MFP, PSG, RS-232)
* Improved MFP emulation
* Improved 68k emulation (move.b Ax,(Ay) and extb.l)
* Fixed bugs in the GEMDOS HD emulation (Pexec() etc.)

Emulator:
* Statusbar and overlay led features
* Screenshots work also in VDI/TT/Falcon mode and are saved as PNGs
* Support for automatic frameskip and pausing emulation
2009-01-18 20:07:45 +00:00
seb
ed4fc91678 Note initial addition of p5-File-Next version 1.02 as devel/p5-File-Next
into The NetBSD Packages Collection.

The Perl 5 module File::Next is a lightweight, taint-safe, with
only core prerequisites, file-finding module.
2009-01-18 19:24:51 +00:00
seb
89dff00dc8 Add & enable p5-File-Next 2009-01-18 19:23:50 +00:00
seb
84c297e3db Initial import of p5-File-Next version 1.02 in the NetBSD Packages
Collection.

The Perl 5 module File::Next is a lightweight, taint-safe, with
only core prerequisites, file-finding module.
2009-01-18 19:23:21 +00:00
wiz
4c888c4682 + fbreader. 2009-01-18 17:40:21 +00:00
wiz
2686b79eaa Added textproc/liblinebreak version 1.0 2009-01-18 17:40:14 +00:00
wiz
9449a7dc56 Initial import of fbreader-0.10.1:
FBReader is an e-book reader for various platforms.

Main features:
  * Supported formats are
       * fb2 e-book format (style attributes are not supported yet).
       * HTML format (tables are not supported).
       * CHM format (tables are not supported).
       * plucker format (tables are not supported).
       * Palmdoc (aportis doc).
       * zTxt (Weasel format).
       * TCR (psion text) format.
       * RTF format (stylesheets and tables are not supported).
       * OEB format (css and tables are not supported).
       * OpenReader format (css and tables are not supported).
       * Non-DRM'ed mobipocket format (tables are not supported).
       * Plain text format.
  * Direct reading from tar, zip, gzip and bzip2 archives. (Multiple books
    in one archive are supported.)
  * Automatic library building.
  * Automatic language and character encoding detection is supported.
  * Automatically generated contents table.
  * Embedded images support.
  * Footnotes/hyperlinks support.
  * Position indicator.
  * Keeps the last open book and the last read positions for all opened
    books between runs.
  * List of last opened books.
  * Automatic hyphenations.
  * Text search.
  * Full-screen mode.
  * Screen rotation by 90, 180 and 270 degrees.
2009-01-18 17:39:37 +00:00
wiz
df2cd7dabe + liblinebreak. 2009-01-18 17:38:51 +00:00
wiz
6478180246 Initial import of liblinebreak-1.0:
This is liblinebreak, an implementation of the line breaking
algorithm as described in Unicode 5.0.0 Standard Annex 14, Revision
19, available at http://www.unicode.org/reports/tr14/tr14-19.html
2009-01-18 17:38:15 +00:00
wiz
ad2a054038 Updated graphics/py-cairo to 1.8.2 2009-01-18 17:13:06 +00:00
wiz
b58016f758 Update to 1.8.2:
Overview of changes from pycairo 1.8.0 to pycairo 1.8.2
=======================================================

Pycairo 1.8.0 resulted in crashes for some applications using threads. So
upgrading to 1.8.2 is recommended for threaded applications.

Bug Fixes: #19287: Threading support results in crashes in cairo.ImageSurface

New Methods:
    Context.set_scaled_font

API Changes:
    Matrix multiplication:
    old code: matrix3 = matrix1 * matrix2
    new equivalent code: matrix3 = matrix1.multiply(matrix2)
    matrix3 = matrix1 * matrix2
    is now equivalent to matrix3 = matrix2.multiply(matrix1)
    which is consistent with standard matrix multiplication.
2009-01-18 17:12:56 +00:00
wiz
5d2a90b886 Updated www/epiphany-extensions to 2.24.3 2009-01-18 17:05:59 +00:00
wiz
00a95e53a3 Update to 2.24.3:
Updated zh_CN translation.
    Remove single include defines, they break distcheck
2009-01-18 17:05:45 +00:00
wiz
92c824bb3e Updated www/epiphany to 2.24.3 2009-01-18 16:53:45 +00:00
wiz
abe7d762e2 Update to 2.24.3:
Spring cleaning.

    Updated Thai translation.

    Fix bookmark import of ff3 files

    ff3 now has some extra stuff in their .html files, so the importer is not
    always working, the regexp has been improved to fix this.
    Patch by Wouter Bolsterlee. Fixes bug #552997.

    Set the weasel version to 3.1 when using gecko 1.9.1.

    More gecko 1.9.1 fixes.

    Check for nsIDOMNSLocation.h, which was removed in gecko 1.9.1, and
    adapt API use accordingly. Bug #565669.

    Minor fix to Catalan translation thanks to Sílvia Miranda
2009-01-18 16:53:30 +00:00
asau
6885be3afe Clarify STklos item based on personal mail from Erick Gallesio,
the author of STk and STklos.
2009-01-18 16:24:33 +00:00
wiz
934c7fcac8 + asciidoc-8.3.3, clutter-0.8.6, epiphany-2.24.3, gettext-m4-0.17,
gnome-desktop-sharp-2.24.1, highlight-2.7, ikiwiki-3.02,
  libdrm-2.4.4, libgdiplus-2.2, libtasn1-1.8, mono-2.2, mono-tools-2.2,
  mono-xsp-2.2, p5-IO-Socket-SSL-1.20, p5-XML-RSS-1.43, p5-libwww-5.823,
  py-cairo-1.8.2, rdiff-backup-1.2.5, snd-10.3, tcpreplay-3.4.0,
  tig-0.13, xf86-video-intel-2.6.0, xinput-1.4.0.
2009-01-18 16:22:16 +00:00
wiz
cbea518307 Updated chat/telepathy-glib to 0.7.22 2009-01-18 16:19:00 +00:00
wiz
29b7a11d5b Update to 0.7.22:
telepathy-glib 0.7.22 (2009-01-13)
==================================

The "TP_STRUCT_TYPE_BROWN_PAPER_BAG" release.

Fixes:

* Accept message=NULL in tp_group_mixin_change_members, as documented and true
  in the past, rather than crashing.

telepathy-glib 0.7.21 (2009-01-12)
==================================

The "TP_HASH_TYPE_PINT_HOBGOBLIN_MOUTH_MAP" release.

Enhancements:

* Updated to spec version 0.17.17
  - Added TP_HASH_TYPE_HANDLE_IDENTIFIER_MAP and
    TP_HASH_TYPE_MESSAGE_PART_CONTENT_MAP

* (Finally) merged TpMessageMixin, which can be used in place of TpTextMixin to
  implement the Messages interface on Text channels.

* The examples have been made more exemplary, using TpChannelManager in place
  of TpChannelFactoryIface, implementing Destroyable and respawning 1-1 text
  channels which are closed with pending messages.

* Added a TP_COMPILER_WARNINGS macro to simplify choosing compiler warnings in
  configure.ac, and forked a version of AS_COMPILER_FLAG that supports C++ so
  that TP_COMPILER_WARNINGS can be used for C++ projects (such as
  telepathy-qt4).  Other projects using telepathy-glib's warnings might want to
  copy m4/tp-compiler-*.m4 and use TP_COMPILER_WARNINGS.

* Added support to TpGroupMixin for emitting the MembersChangedDetailed signal
  (fd.o #19050 and #19052), and to TpChannel for listening to it when possible
  (fd.o #19051).

* Added tp_channel_get_identifier

* Added support for parsing the dbus-property CM parameter flag (introduced in
  spec 0.17.16) from .manager files (fd.o #19053).

Fixes:

* Various Win32 portability fixes (from Sunil Mohan Adapa on fd.o #19461).

* fd.o #19101: tp_connection_get_contacts_by_id() crashes
2009-01-18 16:18:50 +00:00
wiz
84a9e3cb18 Added emulators/sdlmess version 0.129 2009-01-18 16:06:35 +00:00
wiz
9ee83d34f5 Added emulators/sdlmame version 0.129 2009-01-18 16:06:09 +00:00
wiz
286b0c0c48 + sdlmame + sdlmess. 2009-01-18 16:05:25 +00:00
wiz
94824ad6f4 Fix license name. 2009-01-18 16:05:03 +00:00
wiz
025519adfe Add conflict with sdlmess. 2009-01-18 16:04:48 +00:00
wiz
086deaea33 Add conflict with sdlmame. 2009-01-18 16:04:13 +00:00
wiz
a83c4ed085 Initial import of sdlmess-0.129, packaged for wip by dillo.
MESS is a free emulator which emulates a large variety of different
systems.

This package contains the SDL port of MESS.
2009-01-18 16:02:57 +00:00
wiz
a006a998f8 Initial import of sdlmame-0.129, packaged by dillo for wip.
absd and I did some updates on it.

SDL mame is the SDL port of the MAME arcade game emulator.

MAME is a virtual machine emulator; it includes emulators for numerous
CPUs, sound and video chips used in arcade games, as well as special
purpose decoding PALs and detailed information about the memory layout of
each game.

To play games in MAME you must have a copy of the original game ROMs.
2009-01-18 16:02:17 +00:00
roy
8a51cce405 Update devel/py-setuptools to 0.6c9 2009-01-18 15:03:48 +00:00
roy
30b95264f8 fgci is not jobs safe 2009-01-18 14:56:17 +00:00
roy
3de32a59da Bump to 0.6c9
Misc fixes including one for working with newer subversions.

ok: joerg
2009-01-18 14:50:20 +00:00
jmcneill
45a5f40add Updated sysutils/hal to 0.5.11nb19 2009-01-18 13:54:18 +00:00
jmcneill
c141e84fba Optical media handling needs block.storage_device too; add this to
improve KDE4 compatibility. Bump PKGREVISION.
2009-01-18 13:53:33 +00:00
he
8a6dad4aff Note update of math/fftwf to 3.2. 2009-01-18 13:01:12 +00:00
he
7ad7d7db57 Update from version 3.1.2 to 3.2, to bring this in line with
the version in math/fftw/.

Pkgsrc changes:
 o Get rid of the powerpc-specific distfile, it's apparently not needed
   anymore
 o Add perl as a tool, so that "make test" can succeed
 o Adjust dependency on math/fftw
2009-01-18 13:00:07 +00:00