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

2024-05-13 00:39:44 UTC Now

2011-04-10 10:25:50 UTC MAIN commitmail json YAML

2011-04-10 10:24:47 UTC MAIN commitmail json YAML

Update to 0.17

Changelog:
tig-0.17
--------

Improvements:

- Start rewrite of the revision graph renderer. Three modes are
  supported UTF-8, ncurses line graphics, and ASCII. Also, enable
  revision graph rendering by default.

Bug fixes:

- Fix ncurses 2.8 issue by passing non-zero column size to newwin(1).
- Fix opening of diffs when browsing branches.

tig-0.16.2
----------

Bug fixes:

- Fix regression causing empty tree view.
- Fix set_tabsize() compile error for older versions of ncurses.

tig-0.16.1
----------

Improvements:

- Add scroll-first-col action to jump to the first column. Bound to '|'
  by default.
- Add 'status-untracked-dirs' option to ignore unknown directories
  contents in the status view. On by default.

Bug fixes:

- Fix 'tig show <commit>' to show the provided commit.
- Fix problem with empty diff views when file specs were passed on the
  command line.
- Fix segfault when starting tig in pager mode.

tig-0.16
--------

Incompatibilities:

- Encode everything internally as UTF-8. This can affect performance,
  but should in general improve handling of character lengths etc.
  Also, to properly handle UTF-8 environments use ncurses with wide
  character support.
- The use of TIG_{MAIN,DIFF,LOG,TREE,BLOB}_CMD environment variables
  has been deprecated. To allow configuration of the diff view,
  TIG_DIFF_OPTS can be used.

Improvements:

- Plug several memory leaks.
- Command line arguments are split into diff, revision, and file
  arguments and made available as %(diffargs), %(revargs), and
  %(fileargs). Diff view will limit diffs using %(fileargs).
- Status view: update the file variable when a line is selected so
  %(file) works as expected.
- Branch view: add %(branch) symbol providing access to the selected
  branch.
- Branch view: add entry to browse all branches (uses git-log's --all
  flag).
- Abbreviation of author names can now be configured and toggled.
- Mark detached heads with [HEAD].
- Add support for displaying dates in local time.

Bug fixes:

- Status view: fix usage from sub directories, which was broken by the
  changes made to support blame view from sub directories.
- Fix text expansion to not truncate long lines
- Fix parsing of boolean show-date values.
- Fix relative date.
- Fix unbind to behave as if the keybinding was never defined.
- Fix unbind to also cover built-in run requests.
- Fix parsing of unknown keymap names.
- Blame view: fix parent blame to detect renames. It uses "previous"
  line info from the blame porcelain output added in git version 1.6.3.

tig-0.15
--------

Incompatibilities:

- Setting the cursor color no longer automatically sets the text to
  bold. The old 'lazy' behavior was a bug.
- Remove check for git-repo-config, which was officially deprecated in
  git version 1.5.4. The configure script no longer depends on git
  being installed.

Improvements:

- Provide the manual as a man page named tigmanual(7).
- Add ability to toggle between showing shorter dates (without time
  info) and relative dates. Use 'D' to toggle between date formats.
- Show the active (instead of the default) keybindings in the help
  view. Furthermore, honor the keymap when suggesting actions in the
  help messages.
- Add branch view for choosing which branch to display in the main
  view. Bound to 'H' by default.
- Tree view: show entry to parent directory ('..') when running from
  subdirectory.
- Tree view: sort entries by name, date or author. Toggling is bound to
  'i' by default, with 'I' controlling whether or not to sort in
  ascending order.
- Make height of the lower view in a split view configurable by setting
  the 'split-view-height' variable to a number or a percentage.
  Defaults to 2/3 of the total view height.
- Allow multiple text attributes for color commands:

color cursor white blue underline bold

Bug fixes:

- Blame view: fix loading of blame data when opened from the tree view
  and CWD is not the repo root. (Debian bug 540766)
- Tree view: fix searching.

tig-0.14.1
----------

Improvements:

- Status view: improve "on branch" information inspired by the prompt
  code in git's bash completion script.
- Colors for 256-capable terminals can be specified as colorN.
- Entering a number in the prompt will jump to that line number.
- Handle core.worktree by setting GIT_DIR and GIT_WORK_TREE.
- Make behavior of horizontal scrolling configurable by setting the
  'horizontal-scroll' variable to a number or a percentage. Defaults to
  scrolling 50% of the view width.

Bug fixes:

- Status view: show error when failing to open a file.
- Status view: report failures to update a file.
- Blame view: fix problem with uninitialized variable.
- Blame view: use line number information when loading blame for
  specific commit.
- Fix handling of quoted strings in the config file.
- Fix horizontal scrolling glitches.

tig-0.14
--------

Incompatibilities:

- The screen-resize action has been deprecated. It had no real use for
  users and was never meant to be exposed.
- The "tree-parent" action was renamed to "parent". Warnings will be
  emitted for transition.
- Remove parsing of deprecated option -S and subcommands log and diff.
- The "author" color replaces "main-author". Setting the latter will
  now set the "author" color.

Improvements:

- Horizontal scrolling. Bound to Left/Right by default.
- Read tigrc(5) options from git configuration files using the syntax:

[tig] show-rev-graph = true
[tig "color"] cursor = yellow red bold
[tig "bind"] generic = P parent

- Tree view: avoid flickering when updating.
- Tree view: annotate entries with commit information.
- Tree & blob view: open any blob in an editor.
- Stage & main view: restore view position when reloading.
- Blame view: load blame for parent commit. For merge commits the parent
  is queried. Bound to ',' by default via the existing "parent" action.
- Abbreviate author names to initials when the width of the author column
  is below 6 characters.

Bug fixes:

- Tree view: fix memory corruption bug when updating.
- Tree view: improve handling of empty trees.
- Status view: fix reverting of unmerged files.
- Fix regression for non-UTF-8 locales corrupting the view data.
- Fix regression parsing multiple spaces in ~/.tigrc.

tig-0.13
--------

Incompatibilities:

- Commands from the environment (e.g. TIG_MAIN_CMD) will no longer have
  access to shell features, such as subshells and variable expansion.
  The easiest way to upgrade your configuration is to put such commands
  in a script file or as a git alias.

Improvements:

- Display repository references in the sorted order: tags, heads,
  tracked remotes, remotes.
- Add bash completion for blame.
- Tree view: edit files of the current branch.
- Run requests: new identifiers %(directory), %(file), and %(ref)
- Improve responsiveness and view loading speed by using select(2).

Bug fixes:

- Separate blame revision and file argument by "--" to avoid problems.
- Main view: fix redrawing of the last commit wrt. the revision graph.
- Fix waiting for input after executing a run request in pager mode.
- Status & stage view: refuse to open directories and deleted files.
- Tree view: show error when requesting blame for all non-file entries.
- Do not draw loading views, which are not displayed.
- Fix launching of mergetool from a subdirectory.

(ryoon)

2011-04-10 09:18:51 UTC MAIN commitmail json YAML

pre-create share/gnome/wm-properties, or a file will not be installed

(obache)

2011-04-10 08:55:07 UTC MAIN commitmail json YAML

+ gecko-mediaplayer

(obache)

2011-04-10 08:54:26 UTC MAIN commitmail json YAML

Added multimedia/gecko-mediaplayer version 1.0.0

(obache)

2011-04-10 08:54:09 UTC MAIN commitmail json YAML

Import gecko-mediaplayer-1.0.0 as multimedia/gecko-mediaplayer.

Gecko Media Player is a browser plugin that uses GNOME MPlayer to play media in
a browser.  It should work with all browsers on Unix-ish systems (Linux, BSD,
Solaris) and use the NS4 API (Mozilla, Firefox, Opera, etc.).  Gecko Media
Player is in heavy development, but I wanted to get some code drops out there
so that people can start using and testing it.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(obache)

2011-04-10 08:46:15 UTC MAIN commitmail json YAML

Note alsa and musicbrainz option (used by gnome-mplayer)

(obache)

2011-04-10 08:44:21 UTC MAIN commitmail json YAML

2011-04-10 08:43:52 UTC MAIN commitmail json YAML

Added multimedia/gnome-mplayer version 1.0.2

(obache)

2011-04-10 08:43:32 UTC MAIN commitmail json YAML

Import gnome-mplayer-1.0.2 as multimedia/gnome-mplayer.

GNOME MPlayer is a GTK GUI for MPlayer based on the Gnome HIG.  However, the
code is not dependent on any Gnome library

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(obache)

2011-04-10 08:13:34 UTC MAIN commitmail json YAML

Updated games/onscripter to 20110320

(ryoon)

2011-04-10 08:11:57 UTC MAIN commitmail json YAML

Update to 20110320

Changelog:
Version 20110309:
* only affects to ONScripter for Android.

Version 20110320:
* Fix segmentation fault in size detection of nbz file in nsa archive.

(ryoon)

2011-04-10 07:27:09 UTC MAIN commitmail json YAML

Updated x11/mlterm to 3.0.3

(ryoon)

2011-04-10 07:25:37 UTC MAIN commitmail json YAML

Update to 3.0.3.

* make pkglint happy

Changelog:
Overview of changes from 3.0.2
==============================

ver 3.0.3
* Add support for iBus. (Experimental)
* Even if gdk-pixbuf is not linked to mlterm (--with-imagelib=gdk-pixbuf
  option is not specified in configure), wall picture, icon picture
  and pixmap_engine are supported by an external program (mlimgdisplay)
  which uses gdk-pixbuf.
* Support "wall_picture" option partially (BMP format alone) in win32.
* Support palette settings in libvte.
* libvte uses dpi of gdk for xft font instead of manually calculated one
  by DisplayWidthMM (,which can return wrong value in vmware) etc.
* Unsupported but valid formatted escape / CSI sequence is correctly ignored.
  (Thanks to Iwamoto Kouichi san)
* Support "use_clipboard" option which enables CLIPBOARD selection not only
  PRIMARY selection.
* Other bug fixes:
  Fix wrong drawing of background of DEC Special characters. (Thanks to Iwamoto Kouichi san)
  Unhighlight background of bold characters. (Thanks to Iwamoto Kouichi san)
  SF Bug #3158963 (Thanks to Jyun-Yan You)
  SF Bug #3053107 (Thanks to Nezmer, Thanks to Iwamoto Kouichi san)

Overview of changes from 3.0.1
==============================

ver 3.0.2
* Drop imlib, gdk-pixbuf1 and gtk-1.x support.
* Add libvte compatible library using mlterm engine. (Experimental)
* Support gnome-pty-helper. (configure with --enable-pty-helper option)
* Support "alpha" option in X11.
* Add "depth" option.
* Support "rgba:RR/GG/BB/AA" format to specify rgba color in 32-bit depth.
* Add "bidi_mode" option.
* Add "letter_space" option.
* Support execution of command like "mlclient -e w3m" in "button3_behavior" option.
* Other bug fixes:
  "ESC [ r" and "ESC c" reset scrolling region. (Thanks to Iwamoto Kouichi san)
  #3072833 (Thanks to Andreas Metzler)
  #3051467 (Thanks to David Kolovratnik)
  #3014219 (Thanks to Khaled Hosny)

(ryoon)

2011-04-10 05:39:20 UTC MAIN commitmail json YAML

Updated mail/getmail to 4.20.2

(schmonz)

2011-04-10 05:36:41 UTC MAIN commitmail json YAML

Update to 4.20.2. From the changelog:

-further changes to the Received: header construction to handle IPv6 better.
Thanks: Frederic Perrin.

(schmonz)

2011-04-10 04:30:01 UTC MAIN commitmail json YAML

fix condition for cups option.

(obache)

2011-04-09 19:09:46 UTC MAIN commitmail json YAML

Swap to words to improve a sentence.

(wiz)

2011-04-09 14:59:10 UTC MAIN commitmail json YAML

Updated emulators/suse113_krb5 to 11.3nb3

(chs)

2011-04-09 14:58:10 UTC MAIN commitmail json YAML

update to krb5-1.8.1-5.7.1, fixes CVE-2011-0284.

(chs)

2011-04-09 14:04:25 UTC MAIN commitmail json YAML

2011-04-09 13:22:28 UTC MAIN commitmail json YAML

2011-04-09 13:20:21 UTC MAIN commitmail json YAML

Update to 1.1.0.  Notable changes:

Fix segfaults when closing a driver that did not successfully open.
Fix Mac OS X AUHAL support to properly handle suspend/wakeup, headphone plug/unplug, other hardware events
Fix building Mac OS X driver AUHAL compilation for 10.5, restore Mac OS X 10.4 support
Add 24 bit playback to Pulse plugin
Fix compilation of sndio plugin
Fix 24 bit playback in ALSA plugin
Improve/correct latency setup in ALSA (see Trac #1762)

Also fixes crash in ogg123 with libao-pulse (Trac #1689)

(shattered)

2011-04-09 08:58:51 UTC MAIN commitmail json YAML

2011-04-09 08:43:56 UTC MAIN commitmail json YAML

LICENSE=gnu-gpl-v2

(obache)

2011-04-09 08:40:13 UTC MAIN commitmail json YAML

marked as user-destdir installation ready.

(obache)

2011-04-09 08:05:01 UTC MAIN commitmail json YAML

2011-04-09 08:03:49 UTC MAIN commitmail json YAML

Mention that DESTDIR is now default.

While here, convert to destdir, and use a static PLIST with PLIST_VARS
instead of find(1).

(wiz)

2011-04-09 00:58:04 UTC MAIN commitmail json YAML

Note update of www/wordpress

(morr)

2011-04-09 00:57:43 UTC MAIN commitmail json YAML

Update to wordpress 3.1.1.

This maintenance and security release fixes almost thirty issues in 3.1,
including:

* Some security hardening to media uploads
* Performance improvements
* Fixes for IIS6 support
* Fixes for taxonomy and PATHINFO (/index.php/) permalinks
* Fixes for various query and taxonomy edge cases that caused some plugin
compatibility issues

Version 3.1.1 also addresses three security issues discovered by
WordPress core developers Jon Cave and Peter Westwood, of wordpress's security
team. The first hardens CSRF prevention in the media uploader. The
second avoids a PHP crash in certain environments when handling
devilishly devised links in comments, and the third addresses an XSS
flaw.

(morr)

2011-04-09 00:16:18 UTC MAIN commitmail json YAML

correct openssl dependency (it needs >=0.9.8)
correct BUILDLINK_API_DEPENDS.mit-krb5
fix building where libtool chokes on "--version-info : " (at least OS X)

(tez)

2011-04-08 23:06:51 UTC MAIN commitmail json YAML

make the name logic for TOOLS_PATH.gtar match the logic in
archivers/gtar-base/Makefile

(tez)

2011-04-08 22:57:38 UTC MAIN commitmail json YAML

Note update of nagios packages

(morr)

2011-04-08 22:56:12 UTC MAIN commitmail json YAML

2011-04-08 22:50:17 UTC MAIN commitmail json YAML

2011-04-08 22:49:49 UTC MAIN commitmail json YAML

2011-04-08 22:49:19 UTC MAIN commitmail json YAML

2011-04-08 22:48:41 UTC MAIN commitmail json YAML

2011-04-08 22:48:04 UTC MAIN commitmail json YAML

Fix build on DragonFly; patch from upstream via Aleksey Cheusov.

(wiz)

2011-04-08 22:48:04 UTC MAIN commitmail json YAML

2011-04-08 22:45:44 UTC MAIN commitmail json YAML

Update to nagios-nsca 2.7.2. Add DESTDIR support.
ChangeLog:
- Fixed bug with NSCA daemon eating CPU if child process couldn't accept a connection in multi-process mode (Chris Wilson)
- Fixed bug that prevented single mode daemon from working properly
- Added sample scripts for testing functionality to nsca_tests/ (Ton Voon/Altinity)
- Fixed crash from malformed command line
- Updated to config.sub and config.guess to latest from GNU Savannah

(morr)

2011-04-08 22:40:39 UTC MAIN commitmail json YAML

Remove nagios

(morr)

2011-04-08 22:39:46 UTC MAIN commitmail json YAML

mention update of net/nagios-base

(morr)

2011-04-08 22:38:08 UTC MAIN commitmail json YAML

2011-04-08 22:37:25 UTC MAIN commitmail json YAML

Update nagios-base to 3.2.3. While there, add DESTDIR support and set LICENSE.
ChangeLog:
* Fixes problem where disabling all active hosts/services was not taking effect
* Fixes for compiler warnings (code cleanup by Stephen Gran)
* Fixes for format errors in event handler logging (Guillaume Rousse)
* Fixed incorrect info in sample nagios.cfg file for state_retention_file (Michael Friedrich)
* Fixed broker_event_handler() to return ERR if data is NULL (Michael Friedrich)
* Patch to new_mini_epn to allow any command line length without breaking on extra trailing or leading whitespace (Ray Bengen)
* Patch to mini_epn to allow any command line length (Thomas Guyot-Sionnest)
* Patch to speed up loading of state retention data (Matthieu Kermagoret)
* Custom notifications are now suppressed during scheduled downtime (Sven Nierlein)
* Added code to warn user about exit code of 126 meaning plugin is not executable (bug #153)
* Scheduled downtime can now start on SOFT error states (bug #47)
* Main window frame URL can now be specify with a "corewindow=" parameter
* Improved config CGI shows commands, command args in an easier to use manner (Jochen Bern)
* Added ability for NEB modules to override execution of event handlers (Sven Nierlein)
* Custom macros are no longer cleaned/stripped as they are user-defined and should be trusted (Peter Morch)
* Fix for choosing next valid time on day of DST change when clocks go one hour backwards
* Fix for nagios now erroring when "Error: Could not find any contactgroup matching..." displayed
* Fix tap tests for Sol0 and newer versions of Test::Harness
* Fix for notifications not being sent out when scheduled downtime is canceluzzner)
* Fix for first notification delay being calculated incorrectly, and notifications potentially going out early (Plachowski)
* Fix for text of scheduling downtime of all services on a host (Holger Weiss)
* Fix for services inheriting notification period from hosts if not defined (Gordon Messmer)
* Fix for incorrect service states on host failures (bug #130 Pet)
* Fix for incorrect service state attributes being set on host failures (bug #128 Petya Kohts)
* Fix for non-scheduled hostsnd services not being updated in NDOUtils
* Fix for typos in TAC, CMD CGIs (bugs #150, #144, #148)
* Fix for types in documentation (bugs #145, #105, #106)
* Fix for incorrect host state counts in status CGI when viewing servicegroups (bug #72)
* Fix few Splunk integration query parameters (bug #136)
* Fix for extra field header in availability CSV export (bug #113)
* Fix foracro processing code modifying input string (Jochen Bern)
* Fix for update check API
* Fix for CGI speedup when persistent=0 f comments
* Fix for event execution loop re-scheduling host checks instead of executing them if service checks are disabled (b #152)
* Fix for segfaults on Solaris (Torsten Huebler)
* Fix for incorrect comment expiration times being passed to event bror (Mattieu Kermagot)
* Doc updates related to cleaning of custom macros (Peter Valdemar Morch)
* Fix to sample notify-service--email command (bug #62)
* Fix for retaining host display name and alias, as well as service display name (Folkert van Heusden* Link to allow scheduling downtime for all services on a host (Hendrik Baecker)
* Speedup to CGIs when lots of comments or dotimes in status.dat file (Jonathan Kamens)
* Patch for new_mini_epn to allow for any command line length without breaking extra trailing or leading whitespace (Ray Bengen)
* Fix for incorrect scheduling when time has gone back an hour (partial fix for 24x7)
* Fix for compile on Fedora Core 3 (bug #0000082)
* Fix for compile on Solaris
* Fix for logging test, which was not timezone aware (bug #0000077 - Allan Clark)
* Trivial cleanups for autoconf (Allan Clark)
* Fix for CSS validation of padding: X
* Fix for documentation re: case-insensitive nature of custom variables (Marc Powell)
* Fix for template configurations which use negated wildcards (Tim Wilde)
* Fix for read-only permissions bug in CGIs that caused problems viewing comments (bug #0000029)
* Fix for incorrect CGI reports (availability, trends, etc.) when reporting period spans Daylight Savings Time (bug #0000046)
* Fix for detection of truecolor support in GD library (Lars Hecking)
* Reverted to use --datadir configure script option instead of the more recently introduced --datarootdir option
* Status and retention files are now flushed/synced to disk to prevent incomplete information being displayed in CGIs
* Fix for incorrect next service check time calculation when Nagios is reloaded with different timeperiod ranges
* Updated Fedora quistart guide to indicate PHP requirements
* Known issue: Service checks that are defined with timeperiods that contain "exclude" directives are incorrectly re-scheduled.  Don't use these for now - we'll get this
fixed for 3.4

(morr)

2011-04-08 20:07:14 UTC MAIN commitmail json YAML

mention recent updates

(drochner)

2011-04-08 20:02:13 UTC MAIN commitmail json YAML

update to 0.3.3
changes: minor improvements, mostly UI and networking related

(drochner)

2011-04-08 19:18:35 UTC MAIN commitmail json YAML

Updated mail/getmail to 4.20.1

(schmonz)

2011-04-08 19:18:15 UTC MAIN commitmail json YAML

Update to 4.20.1. From the changelog:

-ensure correct remote address and port is included in the Received: trace
headers generated by getmail.  Previously the first address found for the
server was used even if another address was actually used to connect to the
server.  Thanks: Frederic Perrin.

(schmonz)

2011-04-08 17:30:35 UTC MAIN commitmail json YAML

Add builtin support for SunOS per PR#44597

(tez)

2011-04-08 16:49:32 UTC MAIN commitmail json YAML

Correct typo on inet6 CONFIGURE_ARGS.

(schnoebe)

2011-04-08 15:10:46 UTC MAIN commitmail json YAML

+ Mesa-7.10.2, anjuta-3.0, applewmproto-1.4.2, clutter-1.6.14,
  getmail-4.20.1, glade3-3.10.0, glade3-3.8.0 [GNOME 2.34],
  glibmm-2.28.0, gnome-3.0, gtkmm-3.0, horde-4.0, kronolith-3.0,
  libAppleWM-1.4.1, pango-1.28.4, snort-2.9.0.5, tea-29.0.1,
  turba-3.0.

(wiz)

2011-04-08 14:44:52 UTC MAIN commitmail json YAML

Updated mail/sendmail-cidrexpand to 8.14.4

(hauke)

2011-04-08 14:42:36 UTC MAIN commitmail json YAML

Add mail/sendmail-cidrexpand

(hauke)

2011-04-08 14:41:10 UTC MAIN commitmail json YAML

Mention .include by mail/sendmail-cidrexpand

(hauke)

2011-04-08 14:39:57 UTC MAIN commitmail json YAML

Package the cidrexpand pre-parser for Sendmail access maps that
ships with Sendmail but does not get installed.


Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(hauke)

2011-04-08 14:32:03 UTC MAIN commitmail json YAML

update to 2.24.0
This switches to the 2.24 release branch.

(drochner)

2011-04-08 14:30:16 UTC MAIN commitmail json YAML

2011-04-08 14:11:34 UTC MAIN commitmail json YAML

-rsync-3.0.8.

(taca)

2011-04-08 14:11:09 UTC MAIN commitmail json YAML

Note update of ISC DHCP packages:

net/isc-dhcp4 4.2.1p1
net/isc-dhclient4 4.2.1p1
net/isc-dhcpd4 4.2.1p1
net/isc-dhcrelay4 4.2.1p1

(taca)

2011-04-08 14:09:24 UTC MAIN commitmail json YAML

2011-04-08 14:09:06 UTC MAIN commitmail json YAML

2011-04-08 14:06:15 UTC MAIN commitmail json YAML

update to 2.5
changes:
-based on Scintilla v2.25
-API additions
API changes possible breaking binary compatibility, this bl3 requirement
bumped

(drochner)

2011-04-08 14:01:08 UTC MAIN commitmail json YAML

update to 2.25
changes: minor bug fix and improvement release

(drochner)

2011-04-08 13:59:31 UTC MAIN commitmail json YAML

update to 2.25
change: improves ability of lexers to remember complex state between lines

(drochner)

2011-04-08 13:54:25 UTC MAIN commitmail json YAML

update to 3.0.8
changes:
-theming related improvements
-bugfixes
-translation updates

(drochner)

2011-04-08 13:50:34 UTC MAIN commitmail json YAML

this was moved to gst-plugins-good

(drochner)

2011-04-08 12:56:50 UTC MAIN commitmail json YAML

Updated www/py-uwsgi to 0.9.7.2; textproc/py-markdown to 2.0.3; devel/py-cheetah to 2.4.4

(adam)

2011-04-08 12:54:21 UTC MAIN commitmail json YAML

Changes 2.4.2:
* Fix issue where subclasses of Template failed to pick up attributes in the
  searchlist
* Remove old/outdated bundled memcached python client
* Allow for #encoding directives to exist after a comment (i.e. not the first
  line in a module)
* Remove support for WebWare servlets (which caused significant performance
  slowdowns on Mac OS X)
* Old/stale code pruned in preparation for Python 3 support

Changes 2.4.1:
* --quiet flag added to `cheetah` to silence printing to stdout
* Refactoring to minimize the amount of forked code for Python3
* Template.compile() will no longer create class names with numerous leading
  underscores
* DirectiveAnalyzer (cheetah-analyze script) added to report directive usage in
  templates
* Older LaTeX docs converted to rst for Sphinx
* Prevent #raw blocks from evaluating $-placeholders and escaped strings
* New tests added to verify PSP behavior and other untested internals

Changes 2.4.0:
* Fix a major performance regression in Template.__init__()
* More graceful handling of unicode when calling .respond() to render a template
* Minor code updates
* Update the default filter

(adam)

2011-04-08 12:37:26 UTC MAIN commitmail json YAML

Note updated of net/rsync package to 3.0.8.

(taca)

2011-04-08 12:37:19 UTC MAIN commitmail json YAML

Changes 2.0.3:
Bug-fix release.

We are happy to release Python-Markdown 2.0, which has been over a year in the
making. We have rewritten significant portions of the code, dramatically
extending the extension API, increased performance, and added numerous
extensions to the distribution (including an extension that mimics PHP Markdown
Extra), all while maintaining backward compatibility with the end user API in
version 1.7.

(adam)

2011-04-08 12:36:24 UTC MAIN commitmail json YAML

Update rsync package to 3.0.8.

NEWS for rsync 3.0.8 (26 Mar 2011)
Protocol: 30 (unchanged)
Changes since 3.0.7:

  BUG FIXES:

    - Fixed two buffer-overflow issues: one where a directory path that is
      exactly MAXPATHLEN was not handled correctly, and one handling a
      --backup-dir that is extra extra large.

    - Fixed a data-corruption issue when preserving hard-links without
      preserving file ownership, and doing deletions either before or during
      the transfer (CVE-2011-1097).  This fixes some assert errors in the
      hard-linking code, and some potential failed checksums (via -c) that
      should have matched.

    - Fixed a potential crash when an rsync daemon has a filter/exclude list
      and the transfer is using ACLs or xattrs.

    - Fixed a hang if a really large file is being processed by an rsync that
      can't handle 64-bit numbers.  Rsync will now complain about the file
      being too big and skip it.

    - For devices and special files, we now avoid gathering useless ACL and/or
      xattr information for files that aren't being copied.  (The un-copied
      files are still put into the file list, but there's no need to gather
      data that is not going to be used.)  This ensures that if the user uses
      --no-D, that rsync can't possibly complain about being unable to gather
      extended information from special files that are in the file list (but
      not in the transfer).

    - Properly handle requesting remote filenames that start with a dash.  This
      avoids a potential error where a filename could be interpreted as a
      (usually invalid) option.

    - Fixed a bug in the comparing of upper-case letters in file suffixes for
      --skip-compress.

    - If an rsync daemon has a module configured without a path setting, rsync
      will now disallow access to that module.

    - If the destination arg is an empty string, it will be treated as a
      reference to the current directory (as 2.x used to do).

    - If rsync was compiled with a newer time-setting function (such as
      lutimes), rsync will fall-back to an older function (such as utimes) on a
      system where the newer function is not around.  This helps to make the
      rsync binary more portable in mixed-OS-release situations.

    - Fixed a batch-file writing bug that would not write out the full set of
      compatibility flags that the transfer was using.  This fixes a potential
      protocol problem for a batch file that contains a sender-side I/O error:
      it would have been sent in a way that the batch-reader wasn't expecting.

    - Some improvements to the hard-linking code to ensure that device-number
      hashing is working right, and to supply more information if the hard-link
      code fails.

    - The --inplace code was improved to not search for an impossible checksum
      position.  The quadruple-verbose chunk[N] message will now mention when
      an inplace chunk was handled by a seek rather than a read+write.

    - Improved ACL mask handling, e.g. for Solaris.

    - Fixed a bug that prevented --numeric-ids from disabling the translation
      of user/group IDs for ACLs.

    - Fixed an issue where an xattr and/or ACL transfer that used an alt-dest
      option (e.g. --link-dest) could output an error trying to itemize the
      changes against the alt-dest directory's xattr/ACL info but was instead
      trying to access the not-yet-existing new destination directory.

    - Improved xattr system-error messages to mention the full path to the
      file.

    - The --link-dest checking for identical symlinks now avoids considering
      attribute differences that cannot be changed on the receiver.

    - Avoid trying to read/write xattrs on certain file types for certain OSes.
      Improved configure to set NO_SYMLINK_XATTRS, NO_DEVICE_XATTRS, and/or
      NO_SPECIAL_XATTRS defines in config.h.

    - Improved the unsafe-symlink errors messages.

    - Fixed a bug setting xattrs on new files that aren't user writable.

    - Avoid re-setting xattrs on a hard-linked file w/the same xattrs.

    - Fixed a bug with --fake-super when copying files and dirs that aren't
      user writable.

    - Fixed a bug where a sparse file could have its last sparse block turned
      into a real block when rsync sets the file size (requires ftruncate).

    - If a temp-file name is too long, rsync now avoids truncating the name in
      the middle of adjacent high-bit characters.  This prevents a potential
      filename error if the filesystem doesn't allow a name to contain an
      invalid multi-byte sequence.

    - If a muli-protocol socket connection fails (i.e., when contacting a
      daemon), we now report all the failures, not just the last one.  This
      avoids losing a relevant error (e.g. an IPv4 connection-refused error)
      that happened before the final error (e.g. an IPv6 protocol-not-supported
      error).

    - Generate a transfer error if we try to call chown with a -1 for a uid or
      a gid (which is not settable).

    - Fixed the working of --force when used with --one-file-system.

    - Fix the popt arg parsing so that an option that doesn't take an arg will
      reject an attempt to supply one (can configure --with-included-popt if
      your system's popt library doesn't yet have this fix).

    - A couple minor option tweaks to the support/rrsync script, and also some
      regex changes that make vim highlighting happier.

    - Fixed some issues in the support/mnt-excl script.

    - Various manpage improvements.

  ENHANCEMENTS:

    - Added ".hg/" to the default cvs excludes (see -C & --cvs-exclude).

  DEVELOPER RELATED:

    - Use lchmod() whenever it is available (not just on symlinks).
    - A couple fixes to the socketpair_tcp() routine.
    - Updated the helper scripts in the packaging subdirectory.
    - Renamed configure.in to configure.ac.
    - Fixed configure's checking for iconv routines for newer OS X versions.
    - Fixed the testsuite/xattrs.test script on OS X.

(taca)

2011-04-08 12:26:29 UTC MAIN commitmail json YAML

Changes 0.9.7.2:
* new option --touch-reload <file> to reload the stack on <file> modification
*  --static-map <mountpoint=documentroot> allows to serve static files
* fixed --post-limit management
* disallow empty socket names
* implemented exception_info WSGI support
* new options --reload-on-as <n> and --reload-on-rss <n> allows
  to recycle workers when their memory usage is higher than <n> MB
* fixed syslog support (use --log-syslog[=facility] to enable it)
* improved plugin loading system
* added support for RabbitMQ as event dispatcher for the Emperor
* fixed FreeBSD memory report
* PSGI plugin can be compiled without ithreads
* various Emperor fixes
* fixed a regression with setgroups()
* support for shared sockets (used in jails within network namespaces)

(adam)

2011-04-08 12:26:04 UTC MAIN commitmail json YAML

update to 1.0.9
changes:
Create shell-escape-safe cpp options in the non-pathetic-cpp case.
Fixes CVE-2011-0465.

(drochner)

2011-04-08 12:23:20 UTC MAIN commitmail json YAML

Updated www/asp2php to 0.77.3

(obache)

2011-04-08 12:23:04 UTC MAIN commitmail json YAML

Update asp2php to 0.77.3.

November 26, 2006 -0.77.3

Fixed bugs:
1) A=0.65  now converts properly to $A=0.65;
2) Raised the length of parameters on function calls

Also changed
1) Request.ServerVariables("URL") to convert to $_SERVER["PHP_SELF"]

Not really a bug, but an issue when moving servers.

May 16, 2006 - 0.77.1

Matt Brown made the following additions/changes:

1) fixes key bugs in dictionary object support
2) fixes bug in filesystemobject.GetBaseName
3) fixes a couple of semi-colon generation issues
4) adds some support for filesystemobject.Attributes
5) an equal sign in an expression now gets recognized as a comparison
operator

Michael Kohn made the following changes:

1) fixed FormatCurrency so it adds a dollar sign infront of the number

May 14, 2006 - 0.77.0

Matt Brown made the following additions/changes:

1) support for server.execute
2) support for querystring("a").count and form("a").count
3) changed semantics of -phpx options. These now specify the target version.
Added -php5. Added -chgext option to include php version in the extensions
of the output files.
4) support for class constructors with -php4 and -php5.
5) support for class destructors, public and private with -php5.
6) fixed a few more bugs with single line if/then
7) added #define's for all token types and database types -- just for
readability.
8) changed gettoken so that it only returns single quote tokens when
processing jscript.
9) fixed response.expires
10) support for response.cachecontrol
11) improved "<" detection in parse_for_script
12) rudimentary support for virtual includes: a new -v option can be used to
specify a base path for virtual includes.
13) support for ByVal and ByRef
14) support for "is" in conditionals
15) support for vbSunday, etc constants
16) when parsing "sub(x,y,z)", eval_element is no longer called to process
x, y, and z.
17) support for DateSerial and DatePart functions
18) improved support for Now, Date, and Time functions (can call time() or
strftime depending on context)
19) added a -d option, which specifies a file and works like #include (calls
preparse). Useful for converting include files that depend on other
20) support for dictionary objects!

* several more FileSystemObject methods/properties (files, subfolders, size,
name, DateLastModified, GetBaseName)
* "\" in strings (gets converted to \\)
* some support for the ERR object
* in some cases getobject was getting called multiple times per token --
changed things around so that it is only called once
* limited support when "for each" is called against a collection of objects
(target var gets tracked as an object, just like set). As currently coded,
it correctly detects:

  Set colFiles=objFolder.Files
  For each objFile in colFiles

But does not detect:

  For each objFile in objFolder.Files

Michael Kohn made the following changes:

* Removed double dim array's sessionpool and aspextension.
* Changed the way session's are done by using $_SESSION

April 11, 2006 - 0.76.26

Matt Brown made the following changes:

1) mapped vbscript SPLIT function to php EXPLODE  (evalelement.c)

2) added support for vbscript MOD operator (evalelement.c)

3) corrected bug in handling of single-line if/then/else statements
(main_parser.c)

August 17, 2005 - 0.76.25

- Fixed a problem with Now()

June 23, 2005 - 0.76.24

- I was using system() calls to mkdir -p to make directories for a couple
of reasons 1) cause it would automatically create all dirs that didn't exist
and 2) cause it set up file permissions the way the system would want it.
this fails miserably on DOS (aka, Microsoft Windows) so I switched it now
to mkdir().  I'd still rather use mkdir -p, but owell.  Anyway, this should
fix problems with people using DOS (aka Microsoft Windows).

September 8, 2004 - 0.76.23

- Fixed a bug with &'s from version 0.76.22

September 6, 2004 - 0.76.22

- mysql.c was modified by Tursi to add a semicolon after mysql_query($arg)
- rnd() with a parameter added an extra ).  This is now fixed.
- date function changes
- added new command line switch for changing .asp text in response.write to .php
- hex literals are fixed

August 10, 2004 - 0.76.21
- the postgres conversion code has been updated.

January 11, 2004

Added FRAME to list of tags to change links from .asp to .php

December 8, 2003 - 0.76.19

Along with little bug fixes here and there, fixed a problem in the way functions
were converted. Also added a -fulltags option for creating PHP with tags that
look like this: <?php instead of <?.

May 3, 2002

Fixed a problem parsing functions that didn't have parenthesis around them.
Added some Filesystem conversion code. Added an option to convert DOS path's
with backslashes to Unix forward slashes (-fixwinpaths). Fixed a problem with
preparsing include files.

(obache)

2011-04-08 12:19:17 UTC MAIN commitmail json YAML

add a patch from upstream to avoid an endless loop in the extensions
parser on malicious packets (CVE-2010-3609)

(drochner)

2011-04-08 11:35:02 UTC MAIN commitmail json YAML

2011-04-08 11:34:45 UTC MAIN commitmail json YAML

Update fd to 3.00j.

Ver. 3.00j Failure of some HTTP redirection is fixed.
(09/25/10) Needless network access when URLDRIVE=1 is suppressed.
Mis-parsing of the file list from some HTTP servers is fixed.
Failure of INFO_FILESYS on MINIX is fixed.

Ver. 3.00i Support MINIX 3.
(07/24/10) Support NetBSD 5.0.
Changing to directory on some pseudo file system is allowed.
Freezing of pseudo terminal with utf8-mac is fixed.
Failure to convert Kanji code of startup argument is fixed.
Broken shell output string with effective DEFKCODE is fixed.
Failure to convert case letter on ShiftJIS is fixed.
Miscount of items on customizer when changing tab is fixed.
Misprint of string to map key code is fixed.
Column overflow of Japanese filename on status line is fixed.
Wrong cursor position when closing archive browser is fixed.
Failed archive browser with here-document is fixed.
Illegal newline code with archive browser is fixed. (MS-DOS)
Invalid terminal input with internal shell on DJGPP is fixed.
Unloadable newline (^J) from command history file is fixed.

Ver. 3.00h Hang-up when 'PS1' internal variable includes \[...\] is fixed.
(06/14/10) Failure to compile with non-standard C compiler is fixed.
Recursive call of malloc() in abortion is fixed.

Ver. 3.00g Broken tree screen with unprintable directory name is fixed.
(06/04/10) Abortion when accessing directory with Japanese is fixed.
Buffer overflow in Japanese string parser is fixed.

Ver. 3.00f Mis-action of 'dir' builtin which differs from MS-DOS is fixed.
(05/29/10) Invalidated default attribute mask of 'dir' builtin is fixed.
Abortion when canceling in COPY_TREE/MOVE_TREE is fixed.

Ver. 3.00e Add mkdir_p.c for installation.
(02/27/10) Support Cygwin 1.7.1.
Failure to compile with some non-ANSI C compilers is fixed.

Ver. 3.00d Freezing by filename completion on some environments is fixed.
(11/30/08) Mis-identified path invoked as login shell via su(1) is fixed.
Freezing by the large value set as 'HISTSIZE' is fixed.
Bug that 'echo' builtin ignores anyone starts with - is fixed.
Support function keys with some VT100 compatible terminals.
Warning by ioctl() on 64bits BSDs is fixed.

Ver. 3.00c Bug to garble the pasted string when INPUTKCODE=utf8 is fixed.
(07/27/08) Failure to access the root directory is fixed. (MS-DOS)
Failure to be invoked on Windows NT is fixed. (MS-DOS)
Illegal newline code for input/output is fixed. (MS-DOS)
Failure to replace some strings in 'fc' builtin is fixed.

Ver. 3.00b Failure to replace with $()/$(()) is fixed.
(07/06/08) Bug that some temporary files may remain is fixed.
Freezing by here-document with huge size is fixed.
Mis-substitution of variables with exit status is fixed.
Failure to treat argument with '=' as substitution is fixed.
Buffer overflow with the undefined floppy drive is fixed.
Mis-operation for redirections with complex sentences is fixed.
Bug that trap on exit cannot be executed suitably is fixed.
Inaccurate value of 'LINENO' internal variable is fixed.
Bug that newline cannot be allowed in 'case' sentence is fixed.
Bug that ${} cannot include meta characters within "" is fixed.
Mis-replacement for meta characters in here-document is fixed.
Adjust representations for 'FD_VERSION' of each documents.
Bug that 'FD_VERSION' may not be set is fixed.

Ver. 3.00a Failure to replace the alias with no argument is fixed.
(06/21/08) Abortion with recursively invoked archive browser is fixed.
Resolve a directory traversal vulnerability on the URL drive.
Mis-implementation of telnet commands in FTP is fixed.
Failure to compile on Solaris 8 is fixed.
Adjust representations of each documents to Ver. 3.00.

Ver. 3.00 Add the URL drive function.
(05/31/08) Add scheme moditiers to access socket as redirect file.
Support the message catalog.
Abolish limits of each registrations.
Support argument of EDIT_CONFIG as environment variable name.
Add 'AUTOUPDATE' internal variable.
Add 'VERSION' internal variable.
Add 'URLDRIVE', 'URLKCODE', 'HIDEPASSWD' internal variables.
Add 'URLOPTIONS', 'URLTIMEOUT' internal variables.
Add 'FTPPROXY', 'FTPLOGFILE', 'FTPADDRESS' internal variables.
Add 'HTTPPROXY', 'HTTPLOGFILE' internal variables.
Add 'HTMLLOGFILE' internal variable.
Add 'accept', 'socketinfo', 'addcr' builtins.
Add -N option in 'echo' builtin.
Add -N option in 'read' builtin.
Add the formats of %w, %p, %B, %b, %/, %! for archive browser.
Add the redirectees of '<>&', '><&' for duplication.
Add the redirectees of '<>-', '<>&-', '><-', '><&-' for close.
Change default file descriptor of '><' redirectee to stdout.

Ver. 2.09i Failure to compile on Darwin 9.x (Mac OS X 10.5) is fixed.
(04/19/08) Odd screen when displaying some long file names is fixed.
Failure to write directory for FAT file system is fixed.

Ver. 2.09h Bug that ATTR_FILE/ATTR_DIR have sometimes no effect is fixed.
(03/15/08) Unsuitable error message with no controlling terminal is fixed.
Odd completion choice list while shifting filename is fixed.

Ver. 2.09g Abortion with no controlling terminal is fixed.
(01/26/08) Failure to find the startup directory is resolved partly.
Failure to input some special keys is reduced.

Ver. 2.09f Bug to garble the pasted string in some environments is fixed.
(10/28/07) Mis-inputted keys after dynamic variation of 'TERM' is fixed.
Bug to ignore some configuration files on NFS is fixed.
Failure with some builtins in non-interactive shell is fixed.
Bug not to expand variables after '~' is fixed.

Ver. 2.09e Freezing sometimes caused in 'copy' builtin is fixed.
(09/16/07) Abortion when missing the current directory is fixed.
Wrong default file descriptor of '<>'/'><' redirectee is fixed.
Incomplete check for the supplementary group is fixed.

Ver. 2.09d Support Linux kernel 2.6.20.
(04/26/07) Progress key responses when INPUTKCODE=utf8.
Abortion with accessing the empty directory is fixed.
Inaccessiblity of the floppy drive with large size is fixed.

Ver. 2.09c Failure to support Linux kernel 2.6.18 is fixed.
(01/17/07)

Ver. 2.09b Support Linux kernel 2.6.18.
(12/22/06) Bug that '..' is not accessible in floppy drive is fixed.

(obache)

2011-04-08 07:58:48 UTC MAIN commitmail json YAML

Updated mail/milter-manager to 1.6.7

(obache)

2011-04-08 07:58:16 UTC MAIN commitmail json YAML

Update milter-manager to 1.6.7.

== [release-1-6-7] 1.6.7: 2011-04-08

A bug fix release of 1.6.6.

=== All

==== Improvements

  * Don't create needless directories on install.
    [Reported by OBATA Akio]

==== Fixes

  * Fixed a bug that Ruby/GLib2 in system can't be found.
    [Reported by OBATA Akio]

=== Package

==== Fixes

  * [RPM] Fixed dependencies.
  * [Debian] Fixed dependencies.
  * [Debian] Don't use deprecated option in init script.
  * [RPM] Don't use deprecated option in init script.

=== milter-manager

==== Fixes

  * [S25R] Fixed a bug that milter is always run.

=== milter-core

==== Improvements

  * Added "+LEVEL1|LEVEL2|..." syntax to add log levels.
  * Added "-LEVEL1|LEVEL2|..." syntax to remove log levels.

=== milter-client

==== Improvements

  * Added --log-level option.
  * Added --quiet option.

=== Thanks

  * OBATA Akio

== [release-1-6-6] 1.6.6: 2011-04-07

This release improves Ruby support and Solaris support.

=== All

==== Improvements

  * Added --with-bundled-ruby-glib2 configure option for
    using bundled Ruby/GLib2 anytime.
  * Supported Solaris.

=== Document

==== Fixes

  * [Debian] add missing GROUP=postfix in configuration.
    [Reported by Jordao]

=== Package

==== Improvements

  * Supported Solaris.
  * Fedora 13 -> 14.

=== milter-core

==== Improvements

  * Set 'warning' log level by default.
  * Set 'statistics' log level by default.
  * Set 'message' log level by default.
  * Changed syslog level for statistics log to LOG_NOTICE
    level from LOG_INFO level .

==== Fixes

  * Fixed a memory leak on read error.

=== milter-manager

==== Improvements

  * Supported database connection.
  * Disabled S25R applicable condition for IPv6 connection
    by default. It's customizable by s25r.check_only_ipv4=.
  * Added --n-workers option.
  * Added --event-loop-backend option.
  * Supported log configuration in configuration file.

==== Fixes

  * Fixed a crash bug on reloading.
    [Reported by Kenji Shiono]

=== libmilter-compatible

==== Improvements

  * Supported event loop backend customize by environment
    variable:
    * MILTER_EVENT_LOOP_BACKEND=libev -> libev is used
    * MILTER_EVENT_LOOP_BACKEND=glib -> GLib is used (default)

=== milter-test-client

==== Improvements

  * Added --pid-file option.
  * Supported shutdown by SIGTERM.

=== milter-test-server

==== Improvements

  * Added --envelope-from option.
  * Deprecated --from option.
  * Added --envelope-recipient option.
  * Deprecated --recipient option.
  * Added --connect-macro option.
  * Added --helo-macro option.
  * Added --envelope-from-macro option.
  * Added --envelope-recipient-macro option.
  * Added --data-macro option.
  * Added --end-of-header-macro option.
  * Added --end-of-message-macro option.
  * Supported result body output in non-ASCII encoding.

=== milter-report-statistics

==== Improvements

  * Supported Solaris.
  * Added --pid option.
  * Added --pid-directory option.

=== Ruby milter

==== Improvements

  * Added --maintenance-interval option.
  * Added --run-gc-on-maintain option.
  * Added --environment option.
  * Added --max-file-descriptors option.
  * Added --pid-file option.
  * Added Milter::ClientSession#delete_header.
  * Added Milter::ClientSession#insert_header.
  * Added Milter::ClientSession#replace_body.
  * Added Milter::ClientSession#change_from.
  * Added. Milter::ClientSession#add_recipient.
  * Added Milter::ClientSession#delete_recipient.
  * Added Milter::ClientSession#delay_response.
  * Added Milter::ClientSession#progress.
  * Added Milter::ClientSession#discard.
  * Added Milter::EventLoop.
  * Supported configuration file.
  * Added Milter::SocketAddress#ipv4?.
  * Added Milter::SocketAddress#ipv6?.
  * Added Milter::SocketAddress#unix?.

==== Fixes

  * Fixed a crash bug.

=== Thanks

  * Jordao
  * Kenji Shiono

(obache)

2011-04-08 07:29:30 UTC MAIN commitmail json YAML

Updated devel/scmgit to 1.7.4.4

(adam)

2011-04-08 07:28:41 UTC MAIN commitmail json YAML

Changes 1.7.4.4:
* Compilation of sha1_file.c on BSD platforms were broken due to our
  recent use of getrlimit() without including <sys/resource.h>.
* "git config" did not diagnose incorrect configuration variable names.
* "git format-patch" did not wrap a long subject line that resulted from
  rfc2047 encoding.
* "git instaweb" should work better again with plackup.
* "git log --max-count=4 -Sfoobar" now shows 4 commits that changes the
  number of occurrences of string "foobar"; it used to scan only for 4
  commits and then emitted only matching ones.
* "git log --first-parent --boundary $c^..$c" segfaulted on a merge.
* "git pull" into an empty branch should have behaved as if
  fast-forwarding from emptiness to the version being pulled, with
  the usual protection against overwriting untracked files.
* "git submodule" that is run while a merge in the superproject is in
  conflicted state tried to process each conflicted submodule up to
  three times.
* "git status" spent all the effort to notice racily-clean index entries
  but didn't update the index file to help later operations go faster in
  some cases.

(adam)

2011-04-08 00:07:09 UTC MAIN commitmail json YAML

Fix last ruby-actionpack3 line, it is www not devel.

(taca)

2011-04-07 15:46:52 UTC MAIN commitmail json YAML

Updated mail/mailman to 2.1.14.1

(hauke)

2011-04-07 15:45:37 UTC MAIN commitmail json YAML

Update Mailman to 2.1.14.1

Partly addresses pkg/25165.

>From the package's NEWS file:

2.1.14 (20-Sep-2010)

  Security

    - Two potential XSS vulnerabilities have been identified and fixed.

  New Features

    - A new feature for controlling the addition/replacement of the Sender:
      header in outgoing mail has been implemented.  This allows a list owner
      to set include_sender_header on the list's General Options page in the
      admin GUI.  The default for this setting is Yes which preserves the prior
      behavior of removing any pre-existing Sender: and setting it to the
      list's -bounces address.  Setting this to No stops Mailman from adding or
      modifying the Sender: at all.

      Additionally, there is a new Defaults.py/mm_cfg.py setting
      ALLOW_SENDER_OVERRIDES which defaults to Yes but which can be set to No
      to remove the include_sender_header setting from General Options, and
      thus preserve the prior behavior completely.

    - Bounce processing has been enhanced so that if a bounce is returned to a
      list from a non-member who is a member of a regular_include_list, the
      bounce will be processed as a bounce for the included list.

  i18n

    - Fixed a missing format character in the German bin/mailmanctl docstring.

    - Updated Dutch translation from Jan Veuger.

    - Updated Japanese Translation from Tokio Kikuchi.

    - Updated Finnish translation from Joni T�yryl�.

    - Made a few corrections to some Polish templates.  Bug #566731.

    - Made a minor change to the Chinese (China) message catalog.  Bug #545772.

    - Changed a few DOCTYPE directives in templates for compliance.
      Bug #500952 and Bug #500955.

  Bug Fixes and other patches

    - Made minor wording improvements and typo corrections in some messages.
      Bug #426979.

    - Fixed i18n._() to catch exceptions due to bad formats.  Bug #632660.

    - Fixed admindb interface to decode base64 and quoted-printable encoded
      message body excerpts for display.  Bug #629738.

    - Fixed web CGI tracebacks to properly report sys.path.  Bug #615114.

    - Changed the member options login page unsubscribe request to include the
      requesters IP address in the confirmation request.  Bug #610527.

    - Changed fix_url to lock the list if not locked.  Bug #610364.

    - Made a minor change to the English subscribeack.txt (welcome message)
      template to emphasize that a password is only required to unsubscribe
      *without confirmation*.

    - Fixed an issue in admindb that could result in a KeyError and "we hit a
      bug" response when a moderator acts on a post that had been handled by
      someone else after the first moderator had retrieved it.  Bug #598671.

    - Fixed a bug which would fail to show a list on the admin and listinfo
      overview pages if its web_page_url contained a :port.  Bug # 597741.

    - Fixed bin/genaliases to not throw TypeError when MTA = None.
      Bug #587657.

    - Provided the ability to specify in mm_cfg.py a local domain (e.g.
      'localhost') for the local addresses in the generated virtual-mailman
      when MTA = 'Postfix'.  See VIRTUAL_MAILMAN_LOCAL_DOMAIN in Defaults.py.
      Bug #328907.

    - Made a minor change to the removal of an Approved: pseudo-header from
      a text/html alternative to allow for an inserted '\xA0' before the
      password.

    - Fixed Content Filtering collapse_alternatives to work on deeply nested
      multipart/alternative parts.  Bug #576675.

    - We now accept/remove X-Approved: and X-Approve: headers in addition to
      Approved: and Approve: for pre-approving posts.  Bug #557750.

    - Reordered the 'cancel' and 'subscribe' buttons on the subscription
      confirmation web page so the default action upon 'enter' will be the
      subscribe button in browsers that pick the first button.  Bug #530654.

    - Fixed a bug in the admindb interface that could apply a moderator
      action to a message not displayed.  Bug #533468.

    - Added a traceback to the log message produced when processing the
      digest.mbox throws an exception.

    - Added a urlhost argument to the MailList.MailList.Create() method to
      allow bin/newlist and the the create CGI to pass urlhost so the host
      will be correct in the listinfo link on the emptyarchive page.
      Bug #529100.

    - Added the List-Post header to the default list of headers retained in
      messages in the MIME digest.  Bug #526143.

    - When daemonizing mailmanctl, we now ensure terminal files are closed.

    - Fixed a bug in pipermail archiving that caused fallback threading by
      subject to fail.  Bug #266572.

    - We now give an HTTP 401 status for authentication failures from admin,
      admindb, private, options and roster CGIs, and an HTTP 404 status from
      all the CGIs for an invalid list name.

    - Backported the listinfo template change from the 2.2 branch to fix
      Bug #514050.

    - Fixed a bug where going to an archives/private/list.mbox/list.mbox URL
      would result in a munged URL if authentication was required. Bug #266164.

    - Fixed a bug where check_perms would throw an OSError if an entry in
      Mailman's lists/ directory was not a directory.  Bug #265613.

    - Fixed a bug where a message with an Approved: header held by a handler
      that precedes Approve (SpamDetect by default) would not have the
      Approved: header removed if the held message was approved.  Bug #501739.

2.1.13 (22-Dec-2009)

  i18n

    - Updated Dutch message catalog from Jan Veuger.

    - Added Asturian translation from Marcos Costales and the Asturian
      Language Team.

  Bug Fixes and other patches

    - Added "white-space: pre-wrap" style for <pre> tag in archives.
      Bug #266467.

    - Added vette logging for rejected and discarded (un)subscribe requests.

    - Fixed a bug in admindb.py that could erroneously discard an unsubscribe
      request as a duplicate.

    - Decoded RFC 2047 encoded message subjects for a few reports.
      Bug #266428.

    - Fixed the French, Spanish and Hebrew translations which improperly
      translated the 'coding:' line in bin/config_list output.

    - Fixed the auto-responder to treat messages to -confirm, -join, -leave,
      -subscribe and -unsubscribe as requests rather than posts.  Bug #427962.

    - Configure/make no longer builds Japanese and Korean codecs in
      pythonlib if Python already has them.

    - Inadvertently setting a null site or list password allowed access
      to a list's web admin interface without authentication.  Fixed by
      not accepting null passwords.

    - Changed VERP_CONFIRM_REGEXP  in Defaults.py to work if the replying
      MUA folds the To: header and in cases where the list name includes '+'.

    - Fixed some paths in contrib/check_perms_grsecurity.py. Bug #411192.

    - Replies to commands sent to list-request now come From: list-owner
      instead of list-bounces.

    - Mailman no longer folds long sub-part headers in multipart messages.
      In addition, Mailman no longer escapes From_ lines in the body of
      messages sent to regular list members, although MTA's may do it anyway.
      This is to avoid breaking signatures per Bug #265967.

    - XSS protection in the web interface went too far in escaping HTML
      entities.  Fixed.

    - Removed or anonymized additional headers in posts to anonymous lists.

    - Fixed a bug that could cause incorrect threading of replies to archived
      messages that arrive with timestamps in the same second.

    - Scrubbed HTML attachments containing tab characters would get the tabs
      replaced by a string of '&nbsp' without a semicolon.  Fixed.

    - Caught a TypeError in content filtering, collapse alternatives that
      occurred with a malformed message if a multipart/alternative part
      wasn't multi-part.  Reported in comments to bug #266230.

    - Fixed a few things in bin/update:
      - Changed some old messages for more current meaning.
      - Fixed qfiles update to not lose metadata from 2.1.5+ format entries.
      - Fixed 2.0.x template migration to not die if the templates/ tree
        contains subdirectories from a version control system.

    - Fixed a bug that would show a list on the admin and listinfo overview
      pages if its web_page_url host contained the current host as a
      substring.  Bug #342162.

    - Fixed a bug in Utils.canonstr() that would throw a UnicodeDecodeError
      if the string contained an HTML entity > 255 and also characters in the
      128-255 range.  Bug #341594.

    - Added recognition for more bounces.

    - Updated contrib/mmdsr to report preserved messages and to use mktemp to
      create temp files.

(hauke)

2011-04-07 15:36:40 UTC MAIN commitmail json YAML

Updated lang/clang to 2.9

(adam)

2011-04-07 13:57:24 UTC MAIN commitmail json YAML

Point to the UPGRADING file, for those unhappy fellows who have to
upgrade an existing mailman installation.

Relevant for pkg/25165

(hauke)

2011-04-07 13:18:24 UTC MAIN commitmail json YAML

2011-04-07 13:17:14 UTC MAIN commitmail json YAML

Sprinkle a few ${DESTDIR}. Most probably not enough, but I can't test this.

(wiz)

2011-04-07 12:53:05 UTC MAIN commitmail json YAML

2011-04-07 12:28:45 UTC MAIN commitmail json YAML

Bump PKGREVISION for folks -> libfolks dependency change.

(wiz)

2011-04-07 12:28:03 UTC MAIN commitmail json YAML

Make PKGNAME match directory name. Ok drochner@

(wiz)

2011-04-07 09:26:33 UTC MAIN commitmail json YAML

LLVM 2.9 includes several major new capabilities:
* Type Based Alias Analysis (TBAA) is now implemented and turned on by default
  in Clang. This allows substantially better load/store optimization in some
  cases. TBAA can be disabled by passing -fno-strict-aliasing.
* This release has seen a continued focus on quality of debug information. LLVM
  now generates much higher fidelity debug information, particularly when
  debugging optimized code.
* Inline assembly now supports multiple alternative constraints.
* A new backend for the NVIDIA PTX virtual ISA (used to target its GPUs) is
  under rapid development. It is not generally useful in 2.9, but is making
  rapid progress.

(adam)

2011-04-07 09:23:10 UTC MAIN commitmail json YAML

Revert most parts of previous, obache notes correctly it does not
work because everything is rebuilt when prefix changes.

(wiz)

2011-04-07 08:58:26 UTC MAIN commitmail json YAML

Updated security/policykit-gnome to 0.9.2nb6

(obache)

2011-04-07 08:58:12 UTC MAIN commitmail json YAML

* set LICENSE=gnu-gpl-v2(tools part) AND gnu-lgpl-v2(library part).
* let to depend on dbus-glib, this package use it directly and already in
  buildlink3.mk.
* using desktopdb.mk for *.desktop files.

Bump PKGREVISION.

(obache)

2011-04-07 08:37:25 UTC MAIN commitmail json YAML

Support destdir installation.

(wiz)

2011-04-07 08:08:45 UTC MAIN commitmail json YAML

Make USE_DESTDIR=yes default, and warn if a package is not converted
to destdir yet. Based on a patch by Greg Troxel.

(wiz)

2011-04-07 08:06:03 UTC pkgsrc-2011Q1 commitmail json YAML

2011-04-07 08:05:12 UTC pkgsrc-2011Q1 commitmail json YAML

Pullup ticket #3404 - requested by taca
lang/perl5: security patch

Revisions pulled up:
- lang/perl5/Makefile                                          1.171
- lang/perl5/distinfo                                          1.74
- lang/perl5/patches/patch-pp.c                                1.1

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Thu Apr  7 04:03:58 UTC 2011

  Modified Files:
  pkgsrc/lang/perl5: Makefile distinfo
  Added Files:
  pkgsrc/lang/perl5/patches: patch-pp.c

  Log Message:
  Add a patch to fix for http://secunia.com/advisories/43921/ from perl's
  git repository (539689e74a).

  Bump PKGREVISION.

(tron)

2011-04-07 07:36:05 UTC MAIN commitmail json YAML

Remove unneeded patch after update.

(wiz)

2011-04-07 06:09:55 UTC MAIN commitmail json YAML

Added www/py-cherrypy version 3.2.0

(adam)

2011-04-07 05:23:53 UTC MAIN commitmail json YAML

Add RCS Id and remove redundant last part.

regen and let to be formal distinfo format.

(obache)

2011-04-07 04:04:38 UTC MAIN commitmail json YAML

Note update of lang/perl5 package to 5.12.2nb2.

(taca)

2011-04-07 04:03:58 UTC MAIN commitmail json YAML

2011-04-07 02:26:56 UTC MAIN commitmail json YAML

Note update of gnustep to 2.4.0

(rh)

2011-04-07 02:26:02 UTC MAIN commitmail json YAML

Update the gnustep meta-package to 2.4.0 to reflect the changes in the
underlying packages.

(rh)

2011-04-07 02:23:46 UTC MAIN commitmail json YAML

Note update of ProjectCenter to 0.6.0

(rh)

2011-04-07 02:23:07 UTC MAIN commitmail json YAML

Update ProjectCenter to 0.6.0.  Changes are mainly bugfixes and minor
improvements.

(rh)

2011-04-07 02:21:22 UTC MAIN commitmail json YAML

Note update of Gorm to 1.2.12

(rh)

2011-04-07 02:20:30 UTC MAIN commitmail json YAML

Update Gorm to 1.2.12.  Notable changes include:

  * Added a DO server which allows modification of internal data
    structures using a simple interface.

  * Tooltips now show the object name and the object type for
    informational purposes.

  * Opens default document when using NSWindows95InterfaceStyle.

  * Correction for some nib loading issues.

  * Limited support for standalone views.

  * Fixes for various bugs.

(rh)

2011-04-07 02:17:52 UTC MAIN commitmail json YAML

Note update of gnustep-examples to 1.3.0

(rh)

2011-04-07 02:17:00 UTC MAIN commitmail json YAML

Update gnustep-examples to 1.3.0.  This includes a couple more examples
and some minor fixes.

(rh)

2011-04-07 02:13:25 UTC MAIN commitmail json YAML

Note update of gnustep-back to 0.18.0

(rh)

2011-04-07 02:12:49 UTC MAIN commitmail json YAML

Update gnustep-back to 0.18.0.  This should close PR pkg/44783.

Other notable changes include:
* implement pattern colours for all backends
* use DejaVu as another fallback font
* OpenGL fixes and improvements
* Key repeat support implemented in X11

(rh)

2011-04-07 02:08:28 UTC MAIN commitmail json YAML

Note update of gnustep-gui to 0.18.0

(rh)

2011-04-07 02:07:19 UTC MAIN commitmail json YAML

Update gnustep-gui to 0.18.0.  Notable changes include:
  * Add live resize in NSSplitView
  * Toolbars have been completely rewritten and improved
  * New Mac OS X 10.5 methods in NSFont
  * Bug fixes and stability improvements

(rh)

2011-04-07 01:56:26 UTC MAIN commitmail json YAML

Note update of gnustep-base to 1.20.1

(rh)

2011-04-07 01:55:15 UTC MAIN commitmail json YAML

2011-04-07 01:42:28 UTC MAIN commitmail json YAML

Note update of gnustep-make to 2.4.0

(rh)

2011-04-07 01:41:31 UTC MAIN commitmail json YAML

Update gnustep-make to 2.4.0. Notable changes include:
  * Parallel building supported using e.g. make -j 2
  * Support source files in subdirectories without using a subproject.
  * Support header files in sub-subdirectories.
  * Batch-compile Java files (much faster).
  * Fixes for building documentation.

(rh)

2011-04-07 00:21:27 UTC MAIN commitmail json YAML

Updated math/mpfr to 3.0.1

(asau)

2011-04-07 00:21:03 UTC MAIN commitmail json YAML

Update MPFR to version 3.0.1

Changes from version 3.0.0 to version 3.0.1:
- Bug fixes (see <http://www.mpfr.org/mpfr-3.0.0/#fixed> or ChangeLog file).
  Note: The mpfr_subnormalize implementation up to MPFR 3.0.0 did not change
  the flags. In particular, it did not follow the generic rule concerning
  the inexact flag (and no special behavior was specified). The case of the
  underflow flag was more a lack of specification.

(asau)

2011-04-06 23:51:09 UTC MAIN commitmail json YAML

+ libfolks

XXX package name doesn't match directory

(joerg)

2011-04-06 23:10:25 UTC pkgsrc-2011Q1 commitmail json YAML

Pullup tickets #3398, #3400, #3401, #3402 and #3403.

(tron)

2011-04-06 23:09:19 UTC pkgsrc-2011Q1 commitmail json YAML

Pullup ticket #3403 - requested by joerg
py-django-cms: build fix

Revisions pulled up:
- www/py-django-cms/Makefile                                    1.6

---
  Module Name: pkgsrc
  Committed By: joerg
  Date: Wed Apr  6 21:42:41 UTC 2011

  Modified Files:
  pkgsrc/www/py-django-cms: Makefile

  Log Message:
  Dependency requires Python 2.5

(tron)

2011-04-06 23:00:07 UTC pkgsrc-2011Q1 commitmail json YAML

Pullup ticket #3402 - requested by joerg
chat/gloox: build fix

Revisions pulled up:
- chat/gloox/Makefile                                          1.2

---
  Module Name: pkgsrc
  Committed By: joerg
  Date: Wed Apr  6 22:00:10 UTC 2011

  Modified Files:
  pkgsrc/chat/gloox: Makefile

  Log Message:
  Needs pkg-config

(tron)

2011-04-06 22:49:43 UTC pkgsrc-2011Q1 commitmail json YAML

Pullup ticket #3401 - requested by taca
databases/ruby-activerecord3: security update
devel/ruby-activemodel: security update
devel/ruby-activesupport3: security update
devel/ruby-railties: security update
lang/ruby: security update
mail/ruby-actionmailer3: security update
www/ruby-actionpack3: security update
www/ruby-activeresource3: security update
www/ruby-rails3: security update

Revisions pulled up:
- databases/ruby-activerecord3/distinfo                        1.5
- devel/ruby-activemodel/distinfo                              1.5
- devel/ruby-activemodel/patches/patch-.._activemodel.gemspec  1.2
- devel/ruby-activesupport3/distinfo                            1.5
- devel/ruby-railties/distinfo                                  1.5
- lang/ruby/rails.mk                                            1.3
- mail/ruby-actionmailer3/distinfo                              1.5
- www/ruby-actionpack3/distinfo                                1.5
- www/ruby-actionpack3/patches/patch-.._actionpack.gemspec      1.2
- www/ruby-activeresource3/distinfo                            1.5
- www/ruby-rails3/distinfo                                      1.6

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed Apr  6 13:23:03 UTC 2011

  Modified Files:
  pkgsrc/lang/ruby: rails.mk

  Log Message:
  Start update of Ruby on Rails 3.0.6.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed Apr  6 13:23:30 UTC 2011

  Modified Files:
  pkgsrc/devel/ruby-activesupport3: distinfo

  Log Message:
  Update ruby-activesupport3 package to 3.0.6.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed Apr  6 13:24:48 UTC 2011

  Modified Files:
  pkgsrc/devel/ruby-activemodel: distinfo
  pkgsrc/devel/ruby-activemodel/patches: patch-.._activemodel.gemspec

  Log Message:
  Update ruby-activemodel package to 3.0.6.

  *Rails 3.0.6 (April 5, 2011)

  * Fix when database column name has some symbolic characters
    (e.g. Oracle CASE# VARCHAR2(20)) #5818 #6850 [Robert Pankowecki,
    Santiago Pastorino]

  * Fix length validation for fixnums #6556 [Andriy Tyurnikov]

  * Fix i18n key collision with namespaced models #6448 [yves.senn]

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed Apr  6 13:26:04 UTC 2011

  Modified Files:
  pkgsrc/www/ruby-actionpack3: distinfo
  pkgsrc/www/ruby-actionpack3/patches: patch-.._actionpack.gemspec

  Log Message:
  Update ruby-actionpack3 pacakge to 3.0.6.

  *Rails 3.0.6 (April 5, 2011)

  * Fixed XSS vulnerability in `auto_link`.  `auto_link` no longer marks input as
    html safe.  Please make sure that calls to auto_link() are wrapped in a
    sanitize(), or a raw() depending on the type of input passed to auto_link().
    For example:

      <%= sanitize(auto_link(some_user_input)) %>

    Thanks to Torben Schulz for reporting this.  The fix can be found here:
    61ee3449674c591747db95f9b3472c5c3bd9e84d

  * Fixes the output of `rake routes` to be correctly match to the
    behavior of the application, as the regular expression used to match
    the path is greedy and won't capture the format part by default
    [Prem Sichanugrist]

  * Fixes an issue with number_to_human when converting values which are
    less than 1 but greater than -1 [Josh Kalderimis]

  * Sensitive query string parameters (specified in
    config.filter_parameters) will now be filtered out from the request
    paths in the log file. [Prem Sichanugrist, fxn]

  * URL parameters which return nil for to_param are now removed from
    the query string [Andrew White]

  * Don't allow i18n to change the minor version, version now set to ~>
    0.5.0 [Santiago Pastorino]

  * Make TranslationHelper#translate use the :rescue_format option in
    I18n 0.5.0 [Sven Fuchs]

  * Fix regression: javascript_include_tag shouldn't raise if you
    register an expansion key with nil or [] value [Santiago Pastorino]

  * Fix Action caching bug where an action that has a non-cacheable
    response always renders a nil response body. It now correctly
    renders the response body. [Cheah Chu Yeow]

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed Apr  6 13:27:01 UTC 2011

  Modified Files:
  pkgsrc/databases/ruby-activerecord3: distinfo

  Log Message:
  Update ruby-activerecord3 package to 3.0.6.

  *Rails 3.0.6 (April 5, 2011)

  * Un-deprecate reorder method [Sebastian Martinez]

  * Extensions are applied when calling +except+ or +only+ on relations.
    Thanks to Iain Hecker.

  * Schemas set in set_table_name are respected by the mysql adapter. LH #5322

  * Fixed a bug when empty? was called on a grouped Relation that wasn't loaded.
    LH #5829

  * Reapply extensions when using except and only. Thanks Iain Hecker.

  * Binary data is escaped when being inserted to SQLite3 Databases. Thanks
    Naruse!

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed Apr  6 13:27:56 UTC 2011

  Modified Files:
  pkgsrc/www/ruby-activeresource3: distinfo

  Log Message:
  Update ruby-activeresource3 pacakge to 3.0.6.

  No changes but version.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed Apr  6 13:28:53 UTC 2011

  Modified Files:
  pkgsrc/mail/ruby-actionmailer3: distinfo

  Log Message:
  Update ruby-actionmailer3 package to 3.0.6.

  *Rails 3.0.6 (April 5, 2011)

  * Don't allow i18n to change the minor version, version now set to ~>
    0.5.0 [Santiago Pastorino]

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed Apr  6 13:29:48 UTC 2011

  Modified Files:
  pkgsrc/devel/ruby-railties: distinfo

  Log Message:
  Update ruby-railties package to 3.0.6.

  No chagne but version.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Wed Apr  6 13:31:02 UTC 2011

  Modified Files:
  pkgsrc/www/ruby-rails3: distinfo

  Log Message:
  Update ruby-rails3 package to 3.0.6.

  (Ruby on Rails meta pacakge, no change but version.)

(tron)

2011-04-06 22:17:44 UTC pkgsrc-2011Q1 commitmail json YAML

Pullup ticket #3400 - requested by wiz
audio/gqmpeg-devel: build fix
devel/teem: build fix
games/ufoai: build fix
graphics/tuxpaint: build fix
lang/kaffe: build fix
sysutils/xnc: build fix
wm/afterstep: build fix
www/chimera: build fix
www/mMosaic: build fix
x11/xcursorgen: build fix

Revisions pulled up:
- audio/gqmpeg-devel/distinfo                                  1.5
- audio/gqmpeg-devel/patches/patch-src_ui__pixbuf__save.c      1.1
- devel/teem/distinfo                                          1.6
- devel/teem/patches/patch-ad                                  1.2
- games/ufoai/distinfo                                          1.5
- games/ufoai/patches/patch-ab                                  1.3
- graphics/tuxpaint/distinfo                                    1.21
- graphics/tuxpaint/patches/patch-ab                            1.5
- lang/kaffe/distinfo                                          1.30
- lang/kaffe/patches/patch-libraries_clib_awt_X_imgpng.c        1.1
- sysutils/xnc/distinfo                                        1.8
- sysutils/xnc/patches/patch-src_lib_image2_sdl__image_IMG__png.c 1.1
- wm/afterstep/distinfo                                        1.13
- wm/afterstep/patches/patch-libAfterImage_export.c            1.1
- wm/afterstep/patches/patch-libAfterImage_import.c            1.1
- www/chimera/distinfo                                          1.9
- www/chimera/patches/patch-ad                                  1.5
- www/mMosaic/distinfo                                          1.11
- www/mMosaic/patches/patch-ai                                  1.2
- www/mMosaic/patches/patch-src_MIME.c                          1.1
- x11/xcursorgen/distinfo                                      1.3
- x11/xcursorgen/patches/patch-xcursorgen.c                    1.1

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Tue Apr  5 08:09:47 UTC 2011

  Modified Files:
  pkgsrc/audio/gqmpeg-devel: distinfo
  Added Files:
  pkgsrc/audio/gqmpeg-devel/patches: patch-src_ui__pixbuf__save.c

  Log Message:
  Fix build with png-1.5.

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Tue Apr  5 11:04:40 UTC 2011

  Modified Files:
  pkgsrc/graphics/tuxpaint: distinfo
  pkgsrc/graphics/tuxpaint/patches: patch-ab

  Log Message:
  Fix build with png-1.5.

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Tue Apr  5 11:07:00 UTC 2011

  Modified Files:
  pkgsrc/x11/xcursorgen: distinfo
  Added Files:
  pkgsrc/x11/xcursorgen/patches: patch-xcursorgen.c

  Log Message:
  Fix build with png-1.5.

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Tue Apr  5 11:27:29 UTC 2011

  Modified Files:
  pkgsrc/devel/teem: distinfo
  pkgsrc/devel/teem/patches: patch-ad

  Log Message:
  Fix build with png-1.5.

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Tue Apr  5 11:32:46 UTC 2011

  Modified Files:
  pkgsrc/games/ufoai: distinfo
  pkgsrc/games/ufoai/patches: patch-ab

  Log Message:
  Fix build with png-1.5.

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Tue Apr  5 11:49:51 UTC 2011

  Modified Files:
  pkgsrc/lang/kaffe: distinfo
  Added Files:
  pkgsrc/lang/kaffe/patches: patch-libraries_clib_awt_X_imgpng.c

  Log Message:
  Fix build with png-1.5.

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Tue Apr  5 11:56:30 UTC 2011

  Modified Files:
  pkgsrc/sysutils/xnc: distinfo
  Added Files:
  pkgsrc/sysutils/xnc/patches: patch-src_lib_image2_sdl__image_IMG__png.c

  Log Message:
  Fix build with png-1.5.

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Tue Apr  5 12:02:00 UTC 2011

  Modified Files:
  pkgsrc/wm/afterstep: distinfo
  Added Files:
  pkgsrc/wm/afterstep/patches: patch-libAfterImage_export.c
      patch-libAfterImage_import.c

  Log Message:
  Fix build with png-1.5.

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Tue Apr  5 12:16:39 UTC 2011

  Modified Files:
  pkgsrc/www/chimera: distinfo
  pkgsrc/www/chimera/patches: patch-ad

  Log Message:
  Fix build with png-1.5.

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Tue Apr  5 12:27:06 UTC 2011

  Modified Files:
  pkgsrc/www/mMosaic: distinfo
  pkgsrc/www/mMosaic/patches: patch-ai
  Added Files:
  pkgsrc/www/mMosaic/patches: patch-src_MIME.c

  Log Message:
  Fix build with png-1.5 and avoid conflict with getline() on NetBSD.

(tron)

2011-04-06 22:00:10 UTC MAIN commitmail json YAML

Needs pkg-config

(joerg)

2011-04-06 21:51:29 UTC MAIN commitmail json YAML

Updated devel/libsigsegv to 2.10

(asau)

2011-04-06 21:51:14 UTC MAIN commitmail json YAML

Update to libsigsegv 2.10

New in 2.10:

* Support for Linux/S390.
  <sigsegv.h> now defines a macro SIGSEGV_FAULT_ADDRESS_ALIGNMENT.
  It is either 1 or pagesize. Its meaning is that
    - The fault address passed to a SIGSEGV handler has been rounded down
      to a multiple of SIGSEGV_FAULT_ADDRESS_ALIGNMENT.
    - The address and length arguments of sigsegv_register function calls
      must be multiples of SIGSEGV_FAULT_ADDRESS_ALIGNMENT.
* Faster distinction between stack overflow and other fault on OpenBSD.

(asau)

2011-04-06 21:42:41 UTC MAIN commitmail json YAML

Dependency requires Python 2.5

(joerg)

2011-04-06 21:02:50 UTC MAIN commitmail json YAML

mgetty 1.1.37

(is)

2011-04-06 20:57:19 UTC MAIN commitmail json YAML

2011-04-06 18:39:59 UTC MAIN commitmail json YAML

chmod +w files copied into WRKDIR from sources.

Avoids failure when source tree is 444, as it is with CVSREAD=t.

(gdt)

2011-04-06 18:37:04 UTC pkgsrc-2011Q1 commitmail json YAML

Revert "chmod +w files copied into WRKDIR from sources" mistakenly
applied to release branch.

(gdt)

2011-04-06 18:12:35 UTC pkgsrc-2011Q1 commitmail json YAML

Pullup ticket #3398 - requested by wiz
lang/vala: Downgrade package as it breaks package depending on it.

Revisions pulled up:
- doc/CHANGES-2011                                              patch
- lang/vala/Makefile                                            1.16
- lang/vala/PLIST                                              1.9
- lang/vala/PLIST.vapigen                                      1.5
- lang/vala/distinfo                                            1.11

---
  Module Name: pkgsrc
  Committed By: ahoka
  Date: Tue Apr  5 12:17:06 UTC 2011

  Modified Files:
  pkgsrc/lang/vala: Makefile PLIST PLIST.vapigen distinfo

  Log Message:
  revert update

(tron)

2011-04-06 15:03:03 UTC MAIN commitmail json YAML

License is GPL V2. Hinted in Readme.1st, verified with author. (COPYING
is missing in the top level directory, but available in ../x11/viewfax/ and
../tcl/faxview/. COPYING is available in 1.1.37 (TODO: upgrade).

(is)

2011-04-06 14:18:31 UTC MAIN commitmail json YAML

+ atk-2.0.0, cheese-3.0.0, imp-5.0, ingo-2.0, kde4-4.6.2, libX11-1.4.3,
  libgnomekbd-3.0.0, puzzles-9147, tomboy-1.6.0, xkeyboard-config-2.2.1,
  xrdb-1.0.9.

(wiz)

2011-04-06 14:09:28 UTC MAIN commitmail json YAML

Updated devel/scmgit to 1.7.4.3

(adam)

2011-04-06 14:08:28 UTC MAIN commitmail json YAML

Changes 1.7.4.3:
* "git apply" used to confuse lines updated by previous hunks as lines
  that existed before when applying a hunk, contributing misapplication
  of patches with offsets.
* "git branch --track" (and "git checkout --track --branch") used to
  allow setting up a random non-branch that does not make sense to follow
  as the "upstream".  The command correctly diagnoses it as an error.
* "git checkout $other_branch" silently removed untracked symbolic links
  in the working tree that are in the way in order to check out paths
  under it from the named branch.
* "git cvsimport" did not bail out immediately when the cvs server cannot
  be reached, spewing unnecessary error messages that complain about the
  server response that it never got.
* "git diff --quiet" did not work very well with the "--diff-filter" option.
* "git grep -n" lacked a long-hand synonym --line-number.
* "git stash apply" reported the result of its operation by running
  "git status" from the top-level of the working tree; it should (and
  now does) run it from the user's working directory.

(adam)

2011-04-06 14:03:44 UTC MAIN commitmail json YAML

Updated devel/ncurses to 5.9

(adam)

2011-04-06 14:02:47 UTC MAIN commitmail json YAML

Changes 5.9:
* various build-fixes for the rpm/dpkg scripts.
* add "--enable-rpath-link" option to Ada95/configure, to allow
  packages to suppress the rpath feature which is normally used for
  the in-tree build of sample programs.
* corrected definition of libdir variable in Ada95/src/Makefile.in,
  needed for rpm script.
* add "--with-shared" option to Ada95/configure script, to allow
  making the C-language parts of the binding use appropriate compiler
  options if building a shared library with gnat.

(adam)

2011-04-06 13:37:58 UTC MAIN commitmail json YAML

Note update of time/ruby-tzinfo package to 0.3.26.

(taca)

2011-04-06 13:37:26 UTC MAIN commitmail json YAML

Update ruby-tzinfo package to 0.3.26.

== Version 0.3.26 (tzdata v2011e) - 2-Apr-2011

* Updated to tzdata version 2011e
  (http://article.gmane.org/gmane.comp.time.tz/3707).

(taca)

2011-04-06 13:36:03 UTC MAIN commitmail json YAML

Note update of ruby on rails 3 related pacakges.

devel/ruby-activesupport3 3.0.6
devel/ruby-activemodel 3.0.6
devel/ruby-actionpack3 3.0.6
databases/ruby-activerecord3 3.0.6
www/ruby-activeresource3 3.0.6
mail/ruby-actionmailer3 3.0.6
devel/ruby-railties 3.0.6
www/ruby-rails3 3.0.6

(taca)

2011-04-06 13:31:02 UTC MAIN commitmail json YAML

Update ruby-rails3 package to 3.0.6.

(Ruby on Rails meta pacakge, no change but version.)

(taca)

2011-04-06 13:29:48 UTC MAIN commitmail json YAML

Update ruby-railties package to 3.0.6.

No chagne but version.

(taca)

2011-04-06 13:28:53 UTC MAIN commitmail json YAML

Update ruby-actionmailer3 package to 3.0.6.

*Rails 3.0.6 (April 5, 2011)

* Don't allow i18n to change the minor version, version now set to ~>
  0.5.0 [Santiago Pastorino]

(taca)

2011-04-06 13:27:56 UTC MAIN commitmail json YAML

Update ruby-activeresource3 pacakge to 3.0.6.

No changes but version.

(taca)

2011-04-06 13:27:01 UTC MAIN commitmail json YAML

Update ruby-activerecord3 package to 3.0.6.

*Rails 3.0.6 (April 5, 2011)

* Un-deprecate reorder method [Sebastian Martinez]

* Extensions are applied when calling +except+ or +only+ on relations.
  Thanks to Iain Hecker.

* Schemas set in set_table_name are respected by the mysql adapter. LH #5322

* Fixed a bug when empty? was called on a grouped Relation that wasn't loaded.
  LH #5829

* Reapply extensions when using except and only. Thanks Iain Hecker.

* Binary data is escaped when being inserted to SQLite3 Databases. Thanks
  Naruse!

(taca)

2011-04-06 13:26:04 UTC MAIN commitmail json YAML

Update ruby-actionpack3 pacakge to 3.0.6.

*Rails 3.0.6 (April 5, 2011)

* Fixed XSS vulnerability in `auto_link`.  `auto_link` no longer marks input as
  html safe.  Please make sure that calls to auto_link() are wrapped in a
  sanitize(), or a raw() depending on the type of input passed to auto_link().
  For example:

    <%= sanitize(auto_link(some_user_input)) %>

  Thanks to Torben Schulz for reporting this.  The fix can be found here:
  61ee3449674c591747db95f9b3472c5c3bd9e84d

* Fixes the output of `rake routes` to be correctly match to the
  behavior of the application, as the regular expression used to match
  the path is greedy and won't capture the format part by default
  [Prem Sichanugrist]

* Fixes an issue with number_to_human when converting values which are
  less than 1 but greater than -1 [Josh Kalderimis]

* Sensitive query string parameters (specified in
  config.filter_parameters) will now be filtered out from the request
  paths in the log file. [Prem Sichanugrist, fxn]

* URL parameters which return nil for to_param are now removed from
  the query string [Andrew White]

* Don't allow i18n to change the minor version, version now set to ~>
  0.5.0 [Santiago Pastorino]

* Make TranslationHelper#translate use the :rescue_format option in
  I18n 0.5.0 [Sven Fuchs]

* Fix regression: javascript_include_tag shouldn't raise if you
  register an expansion key with nil or [] value [Santiago Pastorino]

* Fix Action caching bug where an action that has a non-cacheable
  response always renders a nil response body. It now correctly
  renders the response body. [Cheah Chu Yeow]

(taca)

2011-04-06 13:24:48 UTC MAIN commitmail json YAML

Update ruby-activemodel package to 3.0.6.

*Rails 3.0.6 (April 5, 2011)

* Fix when database column name has some symbolic characters
  (e.g. Oracle CASE# VARCHAR2(20)) #5818 #6850 [Robert Pankowecki,
  Santiago Pastorino]

* Fix length validation for fixnums #6556 [Andriy Tyurnikov]

* Fix i18n key collision with namespaced models #6448 [yves.senn]

(taca)

2011-04-06 13:23:30 UTC MAIN commitmail json YAML

Update ruby-activesupport3 package to 3.0.6.

(taca)

2011-04-06 13:23:03 UTC MAIN commitmail json YAML

Start update of Ruby on Rails 3.0.6.

(taca)

2011-04-06 13:20:23 UTC MAIN commitmail json YAML

Mention groonga-suggest-learner option.

(obache)

2011-04-06 13:18:24 UTC MAIN commitmail json YAML

2011-04-06 13:17:20 UTC MAIN commitmail json YAML

Added textproc/groonga version 1.2.0

(obache)

2011-04-06 13:17:04 UTC MAIN commitmail json YAML

Import groonga-1.2.0 as textproc/groonga.

gronnga is an open-source filltext search engine and column store.
It lets you write high-performance applications that requires fulltext search.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(obache)

2011-04-06 13:10:56 UTC MAIN commitmail json YAML

2011-04-06 13:10:06 UTC MAIN commitmail json YAML

Added net/zeromq version 2.0.11

(obache)

2011-04-06 13:09:52 UTC MAIN commitmail json YAML

Import zeromq-2.0.11 as net/zeromq.

The 0MQ lightweight messaging kernel is a library which extends the
standard socket interfaces with features traditionally provided by
specialised messaging middleware products. 0MQ sockets provide an
abstraction of asynchronous message queues, multiple messaging
patterns, message filtering (subscriptions), seamless access to
multiple transport protocols and more.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(obache)

2011-04-06 13:02:44 UTC MAIN commitmail json YAML

2011-04-06 13:01:57 UTC MAIN commitmail json YAML

Added devel/msgpack version 0.5.5

(obache)

2011-04-06 13:01:30 UTC MAIN commitmail json YAML

Import msgpack-0.5.5 as devel/msgpack.

MessagePack is an efficient object serialization library, which are very compact
and fast data format, with rich data structures compatible with JSON.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(obache)

2011-04-06 11:46:36 UTC MAIN commitmail json YAML

2011-04-06 11:43:58 UTC MAIN commitmail json YAML

Added textproc/swath version 0.4.1

(obache)

2011-04-06 11:43:39 UTC MAIN commitmail json YAML

Import swath-0.4.1 as textproc/swath.

Swath is a general-purpose utility to workaround the lack of such capability
in applications.  It analyzes the given Thai text by consulting a Thai word
list for word boundaries, before outputting the same text with the predefined
word delimitors inserted.

It can read many kinds of input, including plain text and structured documents
like HTML, RTF, LaTeX and Lambda (Unicode version of LaTeX with Omega
typesetter kernel).

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(obache)

2011-04-06 11:27:59 UTC MAIN commitmail json YAML

* Add workaround for curses detection.

(ryoon)

2011-04-06 11:25:31 UTC MAIN commitmail json YAML

Ahem, add in the explanation I had written for the new patch..

(he)

2011-04-06 11:23:29 UTC MAIN commitmail json YAML

Note update of lang/parrot to 3.2.0.

(he)

2011-04-06 11:22:57 UTC MAIN commitmail json YAML

Update parrot from version 3.1.0 to 3.2.0.

Pkgsrc changes:
o Adapt existing patches to changes in upstream code
o Add a fix for the stat() / lstat() tests in parrot; will be reported
  upstream as a bug.

Upstream changes:

- Core
  + Full support for Unicode filenames on Linux and Win32
  + The configuration option --cxx is gone
  + New Generational GC implemented. To enable it run Configure.pl --gc=gms
  + Now op definitions are semantically parsed. It opens possibilities for
    future optimizations of parrot core.
  + A statement convert the '.param' PIR systax
  + A PMC is implemented for low-level buffer access which separate the
    representation from the pointers
  + Support added for 'long double', 'long long', and 64-bit to StructView
  + In math.h are tools available for Inf/NaN
  + Signature PMCs are used pervasively
- Languages
  + A few tests in Cardinal are fixed
  + A binary .dmg is created of Rakudo Star for OS X
  + Winxed
    - Minor fixes, refactors and cleaning
    - New predefs replace, push and provide a way to access multiple return
      values
    - Operators exits, class and .* (indirect method call) added
    - $loadlib directive
    - -o option to installable driver added
    - Indent generated PIR is added to improve clarity and avoid imcc pitfalls
      with non indented sub bodys
- Community
  + M0 roadmap is in progress
- Documentation
  + 'make docs' target, which was serving only to generate superfluous POD
    files, has been removed.
  + Svn remnants from PDDs are removed
- Tests
  + Added 'make release_check' target so that Release Manager can double-check
    tarball
  + Probes added for 'long long' and 64-bit C types
- Rosella
  Rosella is a collection of tools and building blocks for Parrot
  + A working proxy library is created, that make mostly-transparent custom
    proxies for many types of Parrot PMCs
  + A mockobject testing library is created, using the new proxy library
  + The PLA test suite is updated to use the new Rosella testing tools,
    including the new mockobjects to test callbacks

(he)

2011-04-06 11:13:46 UTC MAIN commitmail json YAML

Updated devel/libthai to 0.1.15

(obache)

2011-04-06 11:13:32 UTC MAIN commitmail json YAML

Update libthai to 0.1.15.

LibThai 0.1.15 (24 March 2011):
* Updated word break dictionary.

(obache)

2011-04-06 10:52:06 UTC MAIN commitmail json YAML

Bump PKGREVISION for libpng, very late. From Robert Elz.

(wiz)

2011-04-06 10:35:38 UTC MAIN commitmail json YAML

2011-04-06 10:03:01 UTC MAIN commitmail json YAML

make ocaml-findlib and ocaml a build dependency as discussed with wiz@

(cegger)

2011-04-06 09:30:49 UTC MAIN commitmail json YAML

Added Xen 4.1 packages

(cegger)

2011-04-06 09:16:40 UTC MAIN commitmail json YAML

2011-04-06 09:12:56 UTC MAIN commitmail json YAML

Updated net/dhcpcd to 5.2.12

(roy)

2011-04-06 09:12:36 UTC MAIN commitmail json YAML

Import dhcpcd-5.2.12 with the following changes:
* 20-resolv.conf now uses the correct variable for $IF_METRIC
* Compiles on RedHat9
* Exclude interface values when dumping the lease
* Parse static value subnet_mask when it exists instead of deriving from
  ip address
* logger calls now resemble dhcpcd calls to syslog(3)
* Reject offered IP address if INADDR_BROADCAST or INADDR_ANY
* Change the route if source address has changed
* Handle partial UDP checksums so we work in Xen domU
  Thanks to Marius Tomaschewski <mt@suse.de>
* Note the address we are requesting in the broadcast log entry
* When operating on one interface, respect the timeout for in dhcpcd.conf
* Escape | and & characters before passing the value to the shell
  Ensure we set a valid hostname, DNS domain and NIS domain.
  Document the need for input validation in dhcpcd-run-hooks(8).
  Fixes CVE-2011-996
  Based on a patch to dhcpcd-3 by Marius Tomaschewski <mt@suse.de>

(roy)

2011-04-06 09:10:27 UTC MAIN commitmail json YAML

The Xen virtual machine monitor allows running several virtual machines
on a single physical machine.  The xentools41 package contains the
tools to create, destroy and control the virtual machines.

This package contains the tools for Xen 4.1.x

Release notes:
The Xen team is pleased to announce the release of Xen 4.1.

The result of nearly 12 months of development, new features include:
  * A re-architected and improved XL toolstack replacing XM/XEND
  * Prototype credit2 scheduler designed for latency-sensitive workloads and
    very large systems.
  * CPU Pools for advanced partitioning.
  * Support for large systems (>255 processors)
  * Support for x86 Advanced Vector eXtension (AVX).
  * New Memory Access API enabling integration of 3rd party security
    solutions into Xen virtualized environments.
  * Many IOMMU fixes (both Intel VT-d IOMMU and AMD IOMMU).
  * Many toolstack and buildsystem fixes for Linux and NetBSD hosts.
  * Thirdparty libs: libvirt driver for libxl has been merged to upstream
    libvirt.
  * HVM guest PXE boot enhancements, replacing gPXE with iPXE.
  * Even better stability through our new automated regression tests.

Detailed release notes, including a more extensive feature list:
  http://wiki.xen.org/xenwiki/Xen4.1

To download tarballs:
  http://xen.org/products/xen_source.html
Or the Mercurial source repository (tag 'RELEASE-4.1.0'):
  http://xenbits.xen.org/xen-unstable.hg

And the announcement on the Xen blog:
  http://blog.xen.org/index.php/2011/03/25/xen-4-1-releases/

Thanks to the many people who have contributed to this release!

  Regards,
  The Xen Team


Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(cegger)

2011-04-06 09:05:53 UTC MAIN commitmail json YAML

Xen is a virtual machine monitor which supports running multiple
guests operating systems on a single machine.  Guest OSes (also called "domains"
)
require a modified kernel which supports Xen hypercalls in replacement
to access to the physical hardware.  At boot, the xen kernel is loaded
along with the guest kernel for the first domain (called domain0).
domain0 has privileges to access the physical hardware (PCI
and ISA devices), administrate other domains and provide virtual
devices (disks and network) to other domains.

This package contains the Xen4 kernel itself.

Release notes:
The Xen team is pleased to announce the release of Xen 4.1.

The result of nearly 12 months of development, new features include:
  * A re-architected and improved XL toolstack replacing XM/XEND
  * Prototype credit2 scheduler designed for latency-sensitive workloads and
    very large systems.
  * CPU Pools for advanced partitioning.
  * Support for large systems (>255 processors)
  * Support for x86 Advanced Vector eXtension (AVX).
  * New Memory Access API enabling integration of 3rd party security
    solutions into Xen virtualized environments.
  * Many IOMMU fixes (both Intel VT-d IOMMU and AMD IOMMU).
  * Many toolstack and buildsystem fixes for Linux and NetBSD hosts.
  * Thirdparty libs: libvirt driver for libxl has been merged to upstream
    libvirt.
  * HVM guest PXE boot enhancements, replacing gPXE with iPXE.
  * Even better stability through our new automated regression tests.

Detailed release notes, including a more extensive feature list:
  http://wiki.xen.org/xenwiki/Xen4.1

To download tarballs:
  http://xen.org/products/xen_source.html
Or the Mercurial source repository (tag 'RELEASE-4.1.0'):
  http://xenbits.xen.org/xen-unstable.hg

And the announcement on the Xen blog:
  http://blog.xen.org/index.php/2011/03/25/xen-4-1-releases/

Thanks to the many people who have contributed to this release!

  Regards,
  The Xen Team


Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(cegger)

2011-04-06 08:44:24 UTC MAIN commitmail json YAML

add buildlink3. Needed for xentools41.

(cegger)

2011-04-06 08:14:21 UTC MAIN commitmail json YAML

2011-04-06 08:10:22 UTC MAIN commitmail json YAML

tell ca-file to configure same as www/epiphany, or failed to configure without the file

(obache)

2011-04-06 07:47:14 UTC MAIN commitmail json YAML

Updated textproc/xmlrpc-c to 1.16.34

(adam)

2011-04-06 07:45:48 UTC MAIN commitmail json YAML

Changes 1.16.34:
* Fix compile bug with some compilers on 64 bit.

Changes 1.16.33:
* Build: Fix prototype/definition mismatch in libwww.cpp with some compilers
  (e.g. Solaris).
* Build: Fix linking of xml-rpc-api2cpp with some linkers (e.g. Solaris).

Changes 1.16.32:
* Windows Abyss server: properly handle wait for connection.

Changes 1.16.31:
* CGI XML-RPC server accepts (ignores) parameters after "text/xml" in
  Content-type header from client.

(adam)

2011-04-05 23:45:47 UTC pkgsrc-2011Q1 commitmail json YAML

chmod +w files copied into WRKDIR from sources.

Avoids failure when source tree is 444, as it is with CVSREAD=t.

(gdt)

2011-04-05 21:09:50 UTC MAIN commitmail json YAML

PKG_DESTDIR_SUPPORT=destdir

(is)

2011-04-05 19:39:25 UTC MAIN commitmail json YAML

2011-04-05 19:38:05 UTC MAIN commitmail json YAML

Import tex-pst-barcode-doc-0.08 as graphics/tex-pst-barcode-doc.

This is documentation for tex-pst-barcode.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-04-05 19:37:53 UTC MAIN commitmail json YAML

Import tex-pst-barcode-0.08 as graphics/tex-pst-barcode.

An earlier version (0.03) was packaged by David Rankin in PR 33390.

The pst-barcode package allows printing of barcodes, in a huge variety
of formats (see documentation for details). As a pstricks package,
pst-barcode requires pstricks. The package uses PostScript for
calculating the bars. For PDF output use a multi-pass mechansism such as
pst-pdf.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-04-05 18:57:38 UTC MAIN commitmail json YAML

2011-04-05 18:54:29 UTC MAIN commitmail json YAML

2011-04-05 18:54:20 UTC MAIN commitmail json YAML

Fix package name for shells/zsh-current.

(darcy)

2011-04-05 18:47:20 UTC MAIN commitmail json YAML

2011-04-05 18:35:46 UTC MAIN commitmail json YAML

update to 0.1.8
changes:
-Implements SASL channel
-bugfixes

(drochner)