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

2024-05-12 13:51:29 UTC Now

2008-11-23 16:07:17 UTC MAIN commitmail json YAML

2008-11-23 15:16:42 UTC MAIN commitmail json YAML

Do not unnecessarily create share/doc/openvpn, and remove it from PLIST.
It wasn't created when installing the binary package.

Bump PKGREVISION.

(wiz)

2008-11-23 14:59:39 UTC MAIN commitmail json YAML

+ akonadi-1.0.80, cvs2svn-2.2.0, duplicity-0.5.03, dvdisaster-0.70.6
  [pkg/40005], gimp-2.6.3, gst-plugins0.10-ugly-0.10.10, libX11-1.1.99.2,
  libnotify-0.4.5, libtasn1-1.7, libtorrent-0.12.2, libv4l-0.5.5,
  p5-HTML-Parser-3.58, p5-IO-Socket-SSL-1.18, py-html2text-2.35,
  rtorrent-0.8.2, tor-0.2.0.32, x264-devel-20081122.

(wiz)

2008-11-23 13:47:41 UTC MAIN commitmail json YAML

Updated sysutils/gnome-vfs to 2.24.0nb1
Updated audio/gnome-vfs-cdda to 2.24.0nb1
Updated net/gnome-vfs-smb to 2.24.0nb1

(jmcneill)

2008-11-23 13:45:33 UTC MAIN commitmail json YAML

Bump PKGREVISION for gnome-vfs change (hal addition)

(jmcneill)

2008-11-23 13:44:46 UTC MAIN commitmail json YAML

Bump PKGREVISION for gnome-vfs change (hal addition)

(jmcneill)

2008-11-23 13:43:40 UTC MAIN commitmail json YAML

2008-11-23 13:40:18 UTC MAIN commitmail json YAML

Updated sysutils/gnome-volume-manager to 2.24.0nb1

(jmcneill)

2008-11-23 13:38:41 UTC MAIN commitmail json YAML

2008-11-23 11:17:02 UTC MAIN commitmail json YAML

+ darcs-2.1.2, gtkimageview-1.6.3, librep-0.17.2, rep-gtk-0.18.3,
  wxRemind-99.

(wiz)

2008-11-23 11:15:14 UTC MAIN commitmail json YAML

Updated misc/deskbar-applet to 2.24.2

(wiz)

2008-11-23 11:14:58 UTC MAIN commitmail json YAML

Update to 2.24.2:

=====================
deskbar-applet 2.24.2
=====================

Changes:
- Fixed #557570, Crash when proxy port changed (Sebastian Pæ—¦lsterl)
- Fixed #558700, the yahoo url listed are duplicated (Sebastian Pæ—¦lsterl)
- Fixed #559169, gnome power manager has new dbus path, this breaks some code in gdmaction module (patch by Christian Assing)
- Work around bug #552204 and ignore rows where match is None

Translations:
- Updated ast: Gil Forcada, Astur
- Updated de: Christian Kirbach
- Updated ja: Takeshi AIHANA
- Updated uk: Maxim Dziumanenko

(wiz)

2008-11-23 11:13:50 UTC MAIN commitmail json YAML

Add ast locale, for GNOME.

(wiz)

2008-11-23 09:18:04 UTC MAIN commitmail json YAML

Updated databases/sqlite3 to 3.6.6.1

(adam)

2008-11-23 09:16:35 UTC MAIN commitmail json YAML

Changes 3.6.6.1:
* Fix a bug in the page cache that can lead database corruption following
  a rollback. This bug was first introduced in version 3.6.4.
* Two other very minor bug fixes

(adam)

2008-11-23 05:08:04 UTC MAIN commitmail json YAML

Updated graphics/gnome-icon-theme to 2.24.0nb1

(jmcneill)

2008-11-23 05:06:45 UTC MAIN commitmail json YAML

2008-11-23 03:31:14 UTC MAIN commitmail json YAML

Updated sysutils/gvfs to 1.0.2nb1

(jmcneill)

2008-11-23 03:28:50 UTC MAIN commitmail json YAML

2008-11-23 03:26:54 UTC MAIN commitmail json YAML

update shells/osh

(reed)

2008-11-23 03:26:14 UTC MAIN commitmail json YAML

Update shells/osh
Add new maintainer. Thank you J.A.
The following is from PR #40006:

I would like to maintain this package if that is acceptable.
Thus, I added myself as MAINTAINER.

Changed files: DESCR, Makefile, PLIST, distinfo

Changes between osh-20080629 and osh-20081122 which affect the osh
package on the various pkgsrc platforms are described below.

------------------------------------------------------------------------
[osh-20081122]:
mkconfig:
        * Added a case for DragonFly BSD (uname -s == DragonFly).

osh.c:
        * Fixed a bug introduced in osh-20061230 where the shell
          incorrectly handles an unescaped terminating backslash (\)
          character at the end of string when the shell is invoked as
          `osh -c string'.  In this case, the terminating backslash
          causes the shell to incorrectly read from the standard input
          at the end of string.
          For example:

                % osh -c 'echo Hello\'
                to\
                you!
                Hello to you!

          This example should instead do nothing and exit w/ a zero
          status.  For `osh -c string', an unescaped terminating
          backslash should effectively turn string into a no-op.
          Now, it behaves as expected.

------------------------------------------------------------------------
[osh-20081026]:
Makefile:
        * Changed the "oshall" target to only build osh since the fd2,
          goto, and if utilities are now built into the shell.

        * Changed the "install-oshall" target to only install osh and
          its manual pages.  This includes the fd2.1, goto.1, and if.1
          manual pages since they are not fully documented elsewhere.

osh.c:
        * Renamed cmd_index() to cmd_lookup(), and changed the algorithm
          from a linear search to a binary search.

        * Added a base reallocation multiplier to glob() to reduce the
          number of realloc()s required for very large argument vectors
          while allowing the first malloc() to be a relatively small
          allocation for up to 126 matching file-name arguments.

util.c:
        * This is a new file for the integrated shell utilities.

        * Added a new `-e' command-line option to fd2 to simplify
          redirecting all conventional output to the standard error
          as diagnostic output.

        * Integrated the external `fd2', `goto', and `if' shell
          utilities as special built-in commands to improve shell
          performance.  Also, added `echo' as a special built-in
          command.  Osh executes each of these built-ins in a subshell.
          Consequently, the I/O for each can be redirected as before,
          and the argument list for each can be the result of a call to
          glob() as before.

(reed)

2008-11-23 02:51:32 UTC MAIN commitmail json YAML

Updated sysutils/liboobs to 2.22.0nb1

(jmcneill)

2008-11-23 02:50:49 UTC MAIN commitmail json YAML

Pull in hal, bump PKGREVISION

(jmcneill)

2008-11-23 02:24:36 UTC MAIN commitmail json YAML

Use Clearlooks as the default gdm theme to not only match the GNOME default
but also make it look like this software was written at some point in the
past 20 years. Bump PKGREVISION.

(jmcneill)

2008-11-23 02:01:43 UTC MAIN commitmail json YAML

Updated security/policykit to 0.9nb1
Fix date on previous entry

(jmcneill)

2008-11-23 02:00:48 UTC MAIN commitmail json YAML

On NetBSD, install a default policy that allows password-less authentication
for root, password authentication for users in group wheel, and deny access
to all others.

(jmcneill)

2008-11-23 01:46:29 UTC MAIN commitmail json YAML

Updated x11/gnome-session to 2.24.1nb3

(jmcneill)

2008-11-23 01:45:41 UTC MAIN commitmail json YAML

Hook into policykit, bump PKGREVISION

(jmcneill)

2008-11-23 01:42:25 UTC MAIN commitmail json YAML

Updated sysutils/dbus to 1.2.4nb3

(jmcneill)

2008-11-23 01:40:26 UTC MAIN commitmail json YAML

Restore socket credentials fix that was lost 5 months ago, bump PKGREVISION
and STOP BREAKING DBUS.

(jmcneill)

2008-11-22 21:21:48 UTC MAIN commitmail json YAML

Add buildlink script for polkit-gnome

(jmcneill)

2008-11-22 19:34:41 UTC MAIN commitmail json YAML

Updated sysutils/consolekit to 0.3.0nb1

(jmcneill)

2008-11-22 19:33:05 UTC MAIN commitmail json YAML

2008-11-22 18:59:54 UTC MAIN commitmail json YAML

2008-11-22 17:59:49 UTC MAIN commitmail json YAML

pull in gnome-mount as runtime dependency

(jmcneill)

2008-11-22 17:56:17 UTC MAIN commitmail json YAML

Added sysutils/gnome-mount version 0.8

(jmcneill)

2008-11-22 17:55:26 UTC MAIN commitmail json YAML

2008-11-22 17:54:42 UTC MAIN commitmail json YAML

Import gnome-mount version 0.8.

The grand plan with gnome-mount is to get the appropriate GNOME
software (such as gnome-volume-manager and gnome-vfs) to use this
instead of invoking mount(1)/umount(1)/eject(1) / invoking methods on
HAL directly.

Included in gnome-mount is also gnome-umount and gnome-eject. All
programs utilize the methods on HAL and as such run unprivileged. The
rationale for gnome-mount is to have a centralized place (in gconf)
where settings (e.g. mount options, mount location) are
maintained.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(jmcneill)

2008-11-22 17:35:15 UTC MAIN commitmail json YAML

Separate options handling into options.mk.

(wiz)

2008-11-22 17:20:36 UTC MAIN commitmail json YAML

Updated x11/gdm to 2.20.7nb1

(jmcneill)

2008-11-22 17:19:12 UTC MAIN commitmail json YAML

Enable ConsoleKit integration (can be disabled with consolekit PKG_OPTION)
Bump PKGREVISION

(jmcneill)

2008-11-22 16:29:20 UTC MAIN commitmail json YAML

Added sysutils/gnome-volume-manager version 2.24.0

(jmcneill)

2008-11-22 16:28:00 UTC MAIN commitmail json YAML

add gnome-volume-manager

(jmcneill)

2008-11-22 16:27:14 UTC MAIN commitmail json YAML

Import gnome-volume-manager version 2.24.0.

gnome-volume-manager is a desktop-level daemon that enforces volume-related
policy in response to events received from HAL. Its goal is to implement all
functionality as a state-machine in response to asynchronous events from HAL.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(jmcneill)

2008-11-22 16:16:26 UTC MAIN commitmail json YAML

VARBASE/run/hal -> VARBASE/run/hald

(jmcneill)

2008-11-22 15:34:32 UTC MAIN commitmail json YAML

Remove unnecessary chmod.

(hira)

2008-11-22 15:22:13 UTC MAIN commitmail json YAML

Added sysutils/hal version 0.5.11

(jmcneill)

2008-11-22 15:21:20 UTC MAIN commitmail json YAML

2008-11-22 15:20:51 UTC MAIN commitmail json YAML

Import hal version 0.5.11. Uses the 'dummy' backend on NetBSD for now,
more to come soon.

What is the point of HAL?

To merge information from various sources such that desktop applications can
locate and use hardware devices. The point is that the exact set of
information to merge varies by device and bus type. In order to do this, we
need to define a format for the information, hence the HAL specification.

We may read some stuff from the hardware itself, then add some info provided
by the kernel, then add some metadata from some systemwide files, then add
some data that has been obtained by the desktop and stored per-user, then
look at some blacklist, and finally we have a complete picture of everything
known about that particular device.

An extra value is that we can do this in an operating system independent way.
Stuff like this is important to the major desktop environments.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(jmcneill)

2008-11-22 14:35:14 UTC MAIN commitmail json YAML

2008-11-22 13:49:52 UTC MAIN commitmail json YAML

Added devel/libvolume_id version 0.81.0

(jmcneill)

2008-11-22 13:49:02 UTC MAIN commitmail json YAML

add libvolume_id

(jmcneill)

2008-11-22 13:48:23 UTC MAIN commitmail json YAML

2008-11-22 13:09:38 UTC MAIN commitmail json YAML

add misc/usbids 20081118, sysutils/hal-info 20081022

(jmcneill)

2008-11-22 13:07:59 UTC MAIN commitmail json YAML

2008-11-22 13:07:51 UTC MAIN commitmail json YAML

2008-11-22 13:06:41 UTC MAIN commitmail json YAML

Import usbids version 20081118.

This package contains a public list of all known IDs used in USB devices;
that is ID's of vendors, devices, subsystems and device classes.  These ID
lists (usually in form of a usb.ids file) are used in various programs
to display full device names instead of the numeric IDs.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(jmcneill)

2008-11-22 13:04:42 UTC MAIN commitmail json YAML

Import hal-info version 20081022.

hal-info is a small hal sub-package that provides the hardware data and
quirks. These quirks are currently things like what mice support reporting
battery status, what music players are supported and what cameras are
detected.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(jmcneill)

2008-11-22 10:49:13 UTC MAIN commitmail json YAML

Updated www/seamonkey, www/seamonkey-bin and www/seamonkey-gtk1 to 1.1.13.

(ghen)

2008-11-22 10:48:29 UTC MAIN commitmail json YAML

Update seamonkey, seamonkey-bin and seamonkey-gtk1 to Seamonkey 1.1.13.

Security fixes in this version:

MFSA 2008-59 Script access to .documentURI and .textContent in mail
MFSA 2008-58 Parsing error in E4X default namespace
MFSA 2008-57 -moz-binding property bypasses security checks on codebase principals
MFSA 2008-56 nsXMLHttpRequest::NotifyEventListeners() same-origin violation
MFSA 2008-55 Crash and remote code execution in nsFrameManager
MFSA 2008-54 Buffer overflow in http-index-format parser
MFSA 2008-53 XSS and JavaScript privilege escalation via session restore
MFSA 2008-52 Crashes with evidence of memory corruption (rv:1.9.0.4/1.8.1.18)
MFSA 2008-50 Crash and remote code execution via __proto__ tampering
MFSA 2008-49 Arbitrary code execution via Flash Player dynamic module unloading
MFSA 2008-48 Image stealing via canvas and HTTP redirect
MFSA 2008-47 Information stealing via local shortcut files

For more info, see http://www.seamonkey-project.org/releases/seamonkey1.1.13/

(ghen)

2008-11-22 08:57:28 UTC MAIN commitmail json YAML

Mention mono-basic 2.0 import

(kefren)

2008-11-22 08:56:16 UTC MAIN commitmail json YAML

add mono-basic

(kefren)

2008-11-22 08:55:28 UTC MAIN commitmail json YAML

2008-11-22 08:05:19 UTC MAIN commitmail json YAML

Updated audio/mstream to 1.3

(kim)

2008-11-22 08:03:30 UTC MAIN commitmail json YAML

Update to mstream-1.3:
- bundles silence.mp3 and uses BINDIR to locate mservcmd

(kim)

2008-11-22 07:58:22 UTC MAIN commitmail json YAML

Note PKGREVISION bump of misc/openoffice3.

(hira)

2008-11-22 07:57:03 UTC MAIN commitmail json YAML

- Install hicolor and locolor icons.
- Install gnome icons (with gnome option only).
- Install MIME info files.
- Fix name of .dekstop files.
- Add missing file to REPLACE_PERL.
- Use startup scripts in OOo (don't generate these in Makefile).
- Remove java option from FreeBSD and NetBSD/amd64.

This should fix PR pkg/39994.  Bump PKGREVISION.

(hira)

2008-11-22 03:55:53 UTC MAIN commitmail json YAML

Add a MESSAGE explaining that procfs is required for policykit

(jmcneill)

2008-11-22 03:38:14 UTC MAIN commitmail json YAML

Added sysutils/consolekit version 0.3.0
Added security/policykit version 0.9
Added security/policykit-gnome version 0.9.2

(jmcneill)

2008-11-22 03:36:20 UTC MAIN commitmail json YAML

Add policykit, policykit-gnome

(jmcneill)

2008-11-22 03:35:54 UTC MAIN commitmail json YAML

2008-11-22 03:34:55 UTC MAIN commitmail json YAML

Import policykit-gnome version 0.9.2.

PolicyKit is an application-level toolkit for defining and handling the
policy that allows unprivileged processes to speak to privileged processes:
It is a framework for centralizing the decision making process with respect
to granting access to privileged operations for unprivileged applications.
PolicyKit is specifically targeting applications in rich desktop environments
on multi-user UNIX-like operating systems. It does not imply or rely on any
exotic kernel features.

This package provides a D-Bus session bus service for bringing up
authentication dialogs used for obtaining privileges.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(jmcneill)

2008-11-22 03:33:38 UTC MAIN commitmail json YAML

Import policykit version 0.9.

PolicyKit is an application-level toolkit for defining and handling the
policy that allows unprivileged processes to speak to privileged processes:
It is a framework for centralizing the decision making process with respect
to granting access to privileged operations for unprivileged applications.
PolicyKit is specifically targeting applications in rich desktop environments
on multi-user UNIX-like operating systems. It does not imply or rely on any
exotic kernel features.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(jmcneill)

2008-11-22 03:32:22 UTC MAIN commitmail json YAML

2008-11-22 03:24:04 UTC pkgsrc-2008Q3 commitmail json YAML

2008-11-22 03:23:40 UTC pkgsrc-2008Q3 commitmail json YAML

pullup ticket #2593 - requested by is
slrn: patch makefile for formatting problem

revisions pulled up:
pkgsrc/news/slrn/Makefile 1.42
pkgsrc/news/slrn/distinfo 1.13
pkgsrc/news/slrn/patches/patch-ag 1.1

  Module Name:    pkgsrc
  Committed By:  is
  Date:          Fri Nov 21 14:43:56 UTC 2008

  Modified Files:
          pkgsrc/news/slrn: Makefile distinfo
  Added Files:
          pkgsrc/news/slrn/patches: patch-ag

  Log Message:
  Fix Makefile formatting problem pointed out by uwe@.

(rtr)

2008-11-22 03:11:49 UTC pkgsrc-2008Q3 commitmail json YAML

2008-11-22 03:11:10 UTC pkgsrc-2008Q3 commitmail json YAML

pullup ticket #2592 - requested by is
slrn: fix for plist problem

revisions pulled up:
pkgsrc/news/slrn/Makefile 1.41
pkgsrc/news/slrn/PLIST 1.9

  Module Name:    pkgsrc
  Committed By:  is
  Date:          Fri Nov 21 14:30:35 UTC 2008

  Modified Files:
          pkgsrc/news/slrn: Makefile PLIST

  Log Message:
  fix PLIST problem preventing clean deinstallation - pointed out by uwe@

(rtr)

2008-11-22 00:50:41 UTC MAIN commitmail json YAML

Another set:

Updated textproc/p5-Text-BibTeX to 0.38
Updated textproc/p5-Text-CSV_XS to 0.58
Updated textproc/p5-Text-Markdown to 1.0.24
Updated textproc/p5-Text-SimpleTable to 0.05
Updated textproc/p5-XML-AutoWriter to 0.39nb2
Updated textproc/p5-XML-LibXML to 1.69
Updated textproc/p5-XML-RSS to 1.37

(he)

2008-11-22 00:49:34 UTC MAIN commitmail json YAML

Update from version 1.33nb1 to 1.37.

Upstream changes:

1.37 - November 18, 2008
    - Extracted the common parts of parse() and parsefile() into one
    method (Refactoring - Shlomi Fish)
    - Incorporated a modified version of a patch from Simon Wistow to
    add support for the "xml:base" attribute.
    - Renamed t/items-are-0.t into the more descriptive
    t/test-generated-items.t , to highlight its significance and make
    it easier to notice.
    - Enabled backwards-compatibility mode for the "description" item
    to not become a hash-ref by default if xml:base is specified.

1.36 - October 7, 2008
    - ->parse() now explicitly returns $self.
        - http://rt.cpan.org/Public/Bug/Display.html?id=34914
    - ->parsefile() now explicitly returns $self.
        - http://rt.cpan.org/Public/Bug/Display.html?id=34914
    - Applied a patch to change the RSS-0.91 DTD URL from my.netscape.com
    to rssboard.org:
        - http://rt.cpan.org/Ticket/Display.html?id=39780
    - Reformatted the Changes file to standardize on 4-space-indents.
    - Small documentation patch: (add_item with dc:date)
        - http://rt.cpan.org/Ticket/Display.html?id=39780

1.35 - September 13, 2008
    - Added a Module::Build-based Build.PL so we'll have an easier time
    with the META.yml and the Kwalitee.
    - Kwalitee - added "use warnings" to all Perl files.
        - now depending on at least perl-5.6.0.
    - Kwalitee - fixed the "use" statement of
    "Test::Run::CmdLine::Iface" to a runtime require.

1.34 - September 12, 2008
    - fixed a typo in the documentation of lib/XML/RSS.pm -
    "regardless" instead of "regarless".
        - http://rt.cpan.org/Public/Bug/Display.html?id=37916
        - (Reported by Reuben Thomas, Fixed by Shlomif).
    - fixed a code fragment - pop() instead of shift() for older
    items, and while() instead of if():
        - http://rt.cpan.org/Public/Bug/Display.html?id=39231
        - (Reported by Dave, Fixed by Shlomif).

(he)

2008-11-22 00:41:19 UTC MAIN commitmail json YAML

Updated from version 1.68 to 1.69.

Upstream changes:

1.69
  - fix incorrect output of getAttributeNS and possibly other methods on UTF-8
  - added $node_or_xpc->exists($xpath) method
  - remove accidental debug output from XML::LibXML::SAX::Builder

(he)

2008-11-22 00:20:58 UTC MAIN commitmail json YAML

Update from version 0.39nb1 to 0.39nb2.

Pkgsrc changes:
o Fix typo in HOMEPAGE URL, bump package revision

(he)

2008-11-22 00:19:17 UTC MAIN commitmail json YAML

Update from version 0.03nb1 to 0.05.

Pkgsrc changes:
o No longer a Module::Build module, so adapt.

Upstream changes:

0.05  2008-08-28 00:00:00
        - Adden new contact information
        - No more os x garbage files (hopefully)

0.04  2008-08-28 00:00:00
        - Removed Build.PL

(he)

2008-11-22 00:15:22 UTC MAIN commitmail json YAML

Update from version 1.0.21nb1 to 1.0.24.

Upstream changes:

1.0.24 2008-11-16T14:33:30
        - Add trust_list_start_value patch from Ricardo Signes (RT#40814)
          to enable <li value='X'> output for list numbering.
          This feature is disabled by default.

1.0.23 2008-11-02T18:24:30
        - Ship a release with the correct contents so that the tests pass.

1.0.22 2008-10-23T18:24:44
        - RT#37909 - Fix + in email addresses.
        - RT#40303 - Fix use in Mason by adding "use re 'eval'" to both files.
        - Add SVN repository to Makefile.PL
        - Remove META.yml from source control so it is regenerated
          automatically.

(he)

2008-11-22 00:11:41 UTC MAIN commitmail json YAML

Updated from version 0.52nb1 to 0.58.

Upstream changes:

2008-10-30 0.58 - H.Merijn Brand  <h.m.brand@xs4all.nl>

* Small typo in test message (RT#40410, JPL)
* Parse error test on "\0 (RT#40507)
* Fixed allow_loose_escapes bug disclosed by RT#40507

2008-10-21 0.57 - H.Merijn Brand  <h.m.brand@xs4all.nl>

* Don't bootstrap twice. Don't know how/when it came in there

2008-10-21 0.56 - H.Merijn Brand  <h.m.brand@xs4all.nl>

* Update to ppport.h 3.14_01
* Updated docs (Unicode, TODO, Release Plan)
* As Text::CSV::Encoded is about to be released, refer to it
  in the documentation
* Default for eol is "", undef now treated as ""
* Don't print $\ twice (eol prevails over $\ in ->print ())
  Fix only works in perl5.8 and up
* Undef treated as 0 for boolean attributes
* Trailing whitespace in pod removed
* Sync up doc with latest Text::CSV::Encoded
* YAML declared 1.4 (META.yml) instead of 1.1 (YAML)

2008-10-15 0.55 - H.Merijn Brand  <h.m.brand@xs4all.nl>

* Improve documentation on eol
* Unicode on perl-5.8.[0-2] sucks. Don't use it!
* Test error codes in expected IO failures
* Allow SetDiag to be used as class method
* Document the MS/Excel separation character
* Hint that eof is not an error per se (RT#40047)

2008-09-04 0.54 - H.Merijn Brand  <h.m.brand@xs4all.nl>

* IO failure in print () was not propagated (ilmari, RT#38960)

2008-09-01 0.53 - H.Merijn Brand  <h.m.brand@xs4all.nl>

* SvUPGRADE is a safer choice than sv_upgrade (Lubomir Rintel, RT#38890)
* bring docs in sync with reality for msg 2023
* Default eol for print is $\
* examples/csv-check should default to CSV , not to ;
* Tests for SetDiag (0)
* Tests for error 2030
* Code cleanup (Devel::Cover++)

(he)

2008-11-22 00:07:21 UTC MAIN commitmail json YAML

Add devel to CATEGORIES. From Robert Elz.

(wiz)

2008-11-22 00:07:12 UTC MAIN commitmail json YAML

Add commented-out HOMEPAGE using search.cpan.org.

(he)

2008-11-22 00:06:30 UTC MAIN commitmail json YAML

Update from version 0.37nb1 to 0.38.

Upstream changes:

Release 0.38 - 8 March, 2008
----------------------------
* fixed problem when creating an empty Entry.
  Thanks to Frank Wiegand.

(he)

2008-11-21 23:33:04 UTC MAIN commitmail json YAML

Updated ham/usrp-docs to 3.0.4nb2

(wiz)

2008-11-21 23:32:50 UTC MAIN commitmail json YAML

Fix PLIST for doxygen-1.5.7.1, depending on that version.
Bump PKGREVISION.

(wiz)

2008-11-21 23:18:35 UTC MAIN commitmail json YAML

Updated ham/gnuradio-core-docs to 3.0.4nb2

(wiz)

2008-11-21 23:18:16 UTC MAIN commitmail json YAML

Depend on doxygen-1.5.7.1, and fix PLIST for it.
Bump PKGREVISION.

(wiz)

2008-11-21 21:27:36 UTC MAIN commitmail json YAML

Avoid compiling in example directory path into executables.
Noted by jmcneill.

Bump PKGREVISION.

(wiz)

2008-11-21 21:09:58 UTC MAIN commitmail json YAML

fix compile time error on Darwin in player/lib/audio/portaudio:

In file included from pa_mac_core.c:124:
pa_host.h:55: error: conflicting types for 'uint32'
/System/Library/Frameworks/Security.framework/Headers/cssmconfig.h:64: error: previous declaration of 'uint32' was here

use <inttypes.h> and uint32_t instead.

note that according to player/lib/audio/Makefile.am, this old portaudio
lib is used only if HAVE_MAC_OSX.

(chuck)

2008-11-21 18:56:55 UTC MAIN commitmail json YAML

Updated fonts/fontforge; emulators/wine-devel

(adam)

2008-11-21 18:54:56 UTC MAIN commitmail json YAML

Changes 1.1.9:
- A large number of regression test fixes.
- Performance improvements in memory management.
- Improved POP3 support in inetcomm.
- Initial implementation of the XInput DLL.
- Various bug fixes.

(adam)

2008-11-21 18:54:19 UTC MAIN commitmail json YAML

Changes 20081117:
* First release with Pango and Cairo
* The first time you run fontforge with Pango something takes several minutes
  to initialize itself. This delay does not occur on subsequent invocations.
* Displaying magnified bitmap strikes in the font view often caused a crash.
* Non-English translations of "%d pixel bitmap" in the View menu of the font
  view came out garbled. There were interpreted as latin1 rather than utf8.

(adam)

2008-11-21 17:44:05 UTC MAIN commitmail json YAML

Added emulators/wine-devel version 1.1.8

(adam)

2008-11-21 17:42:37 UTC MAIN commitmail json YAML

Added emulators/wine-devel version 1.1.8

(adam)

2008-11-21 17:40:31 UTC MAIN commitmail json YAML

Wine is a program which allows running Microsoft Windows programs
(including DOS, Windows 3.x and Win32 executables) on Unix.  It consists
of a program loader which loads and executes an Microsoft Windows binary,
and a library that implements Windows API calls using their Unix or X11
equivalents.  The library may also be used for porting Win32 code into
native Unix executables.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(adam)

2008-11-21 17:36:43 UTC MAIN commitmail json YAML

in do-install:
Only attempt to install files (check with if [-f $BIN]).
on Darwin "cc -g -O" generates *.dSYM directories that
we should not try and install.

(chuck)

2008-11-21 17:36:27 UTC MAIN commitmail json YAML

Updated multimedia/transcode to 1.0.7

(adam)

2008-11-21 17:35:12 UTC MAIN commitmail json YAML

Changes 1.0.7:
* bump FFmpeg libraries requisite to SVN >= 20080705. Drop old header
  layout support. Drop static linking support (unsupported from ages).
  Update user documentation accordingly.
* make AVIStreamHeader structure (more) 64 bit safe.
* keep up with lastest ffmpeg API changes.
PkgSrc:
* Fix buildling with newer ImageMagick

(adam)

2008-11-21 17:15:08 UTC MAIN commitmail json YAML

Updated graphics/ImageMagick to 6.4.6.0

(adam)

2008-11-21 17:13:43 UTC MAIN commitmail json YAML

Changes 6.4.6.0:
* Fixed bug for RGBO image @ line, plane and partition interlace.
* Deprecate pixel methods: AcquireImagePixels(), GetImagePixels(), etc.
* New pixel methods: GetVirtualPixels(), GetAuthenticPixels(), etc.
* GPS and multivalued EXIF properties support
* Add TransparentPaintImageChroma() to MagickCore and transparentChroma()
  to Magick++.
* Correct DPX frame position property label
* Textures are no longer painted as the background color.
* Update both fields of an EXIF resolution.
* Support query-font-metrics MSL tag.
* Do not set image colorspace for the MSL modulate tag.
* Off by one error when computing affine in DrawAffineImage()
* Fixed local adaptive thresholding  when using an offset
* Set SetImagePixels() rather than SyncImagePixelCache() to update
  the pixel cache morphology.
* Set explicit image format for BlobToImage()
* p_thread_t is an aggregate under MinGW.

(adam)

2008-11-21 16:52:00 UTC MAIN commitmail json YAML

Updated games/xbomb to 2.2

(adam)

2008-11-21 16:48:33 UTC MAIN commitmail json YAML

Changes 2.2:
* Have different colours for each of the numbers.
* Allow left click on exposed number to clear adjacent unmarked areas.
* Several compilation fixes for portability.

(adam)

2008-11-21 15:30:40 UTC MAIN commitmail json YAML

2008-11-21 14:56:24 UTC MAIN commitmail json YAML

Add "devel" to CATEGORIES.
PR 39997 from Robert Elz.

(wiz)

2008-11-21 14:44:40 UTC MAIN commitmail json YAML

fixup backula entries

(jnemeth)

2008-11-21 14:43:56 UTC MAIN commitmail json YAML

Fix Makefile formatting problem pointed out by uwe@.

(is)

2008-11-21 14:30:35 UTC MAIN commitmail json YAML

fix PLIST problem preventing clean deinstallation - pointed out by uwe@

(is)

2008-11-21 14:13:28 UTC MAIN commitmail json YAML

Updated sysutils/bacula to 2.4.3

(adam)

2008-11-21 14:09:31 UTC MAIN commitmail json YAML

Changes 2.4.3:
* Apply 2.4.2-cancel-non-running-jobs.patch to be able to cancel
  a non created job faster.
* Fix typo in configure.in that breaks --with-db-password option
* Remove all double quotes from SQLite creating script and
  replace by single quotes as suggested by John Huttley.
* Fix SQL case problem that may cause the failure of DiskToCatalog.
* Copy missing storage name into edit buffer. As far as I can tell
  this never caused a bug.
* Remove catalog dependency for bcopy
* Modify catalog scripts to have an easier packaging integration,
  using default variables.
  Make difference between SQLite3 and SQLite in db_get_type()
  job when reading from one autochanger and writing to another.
* Add more information to SD acquire.c INFO messages.
* Fix NULL Volume name error when reading and the drive must
  be switched.
* Fix a Verify InitCatalog problem where in certain cases
  a garbage filename may be entered in the verification database.
* Add space after version before date in bat about dialog.
* Fix seg fault in Dir during estimate command with no level value given.
* Add message to migration job when the target job is already migrated.

(adam)

2008-11-21 13:12:12 UTC MAIN commitmail json YAML

2008-11-21 12:23:11 UTC MAIN commitmail json YAML

Updated databases/sqlite3 to 3.6.6

(adam)

2008-11-21 12:22:21 UTC MAIN commitmail json YAML

Changes 3.6.6:
* Fix a define that prevented memsys5 from compiling
* Fix a problem in the virtual table commit mechanism that was causing
  a crash in FTS3.
* Add the application-defined page cache
* Added built-in support for VxWorks

Changes 3.6.5:
* Add the MEMORY option to the journal_mode pragma.
* Added the sqlite3_db_mutex() interface.
* Added the SQLITE_OMIT_TRUNCATE_OPTIMIZATION compile-time option.
* Fixed the truncate optimization so that sqlite3_changes() and
  sqlite3_total_changes() interfaces and the count_changes pragma return
  the correct values.
* Added the sqlite3_extended_errcode() interface.
* The COMMIT command now succeeds even if there are pending queries. It returns * SQLITE_BUSY if there are pending incremental BLOB I/O requests.
* The error code is changed to SQLITE_BUSY (instead of SQLITE_ERROR) when
  an attempt is made to ROLLBACK while one or more queries are still pending.
* Drop all support for the experimental memory allocators memsys4 and memsys6.
* Added the SQLITE_ZERO_MALLOC compile-time option.

(adam)

2008-11-21 11:28:15 UTC MAIN commitmail json YAML

Updated devel/gmp to 4.2.4nb1

(bjs)

2008-11-21 11:27:31 UTC MAIN commitmail json YAML

2008-11-21 10:38:19 UTC MAIN commitmail json YAML

fixa possible heap overflow due to wrong buffer length check
(CVE-2008-5030), from Debian, bump PKGREVISION

(drochner)

2008-11-21 09:47:39 UTC MAIN commitmail json YAML

Fix path to python interpreter.
Bump revision of scons and scons-devel.

(tnn)

2008-11-21 08:01:18 UTC MAIN commitmail json YAML

Updated vim and proftpd

(martti)

2008-11-21 08:00:49 UTC MAIN commitmail json YAML

correct general register state indexes for NetBSD/amd64
Bump PKGREVISION

(kefren)

2008-11-21 08:00:36 UTC MAIN commitmail json YAML

2008-11-21 08:00:31 UTC MAIN commitmail json YAML

Updated editors/vim-share to 7.2.49

22993  7.2.041  diff messed up when editing a diff buffer in another tab page
  4987  7.2.042  restoring view in autocmd sometimes doesn't work completely
  2550  7.2.043  VMS: Too many chars escaped in filename and shell commands
  5639  7.2.044  crash because of gcc 4 being over protective for strcpy()
  2056  7.2.045  the Python interface has an empty entry in sys.path
  1704  7.2.046  wrong check for filling buffer with encoding
  2470  7.2.047  using -nb while it is not supported makes other side hang
  4758  7.2.048  v:count and v:prevcount are not set correctly
32552  7.2.049  (extra) Win32: the clipboard doesn't support UTF-16

(martti)

2008-11-21 03:24:29 UTC MAIN commitmail json YAML

Try to deal with a bug described in security/39313, when the build
against recent openpam headers produce non functioning pam_ldap.so
on NetBSD 4.99.47(?) or more recent systems.

There's something really fishy in the headers...

(ahoka)

2008-11-21 02:07:31 UTC MAIN commitmail json YAML

Make sure to update distinfo.

(taca)

2008-11-21 00:23:04 UTC MAIN commitmail json YAML

Add twitux version 0.62

(jmcneill)

2008-11-21 00:22:01 UTC MAIN commitmail json YAML

2008-11-21 00:21:31 UTC MAIN commitmail json YAML

Import twitux version 0.62.

Twitux is a free and open source GTK+ application for Twitter.com. You can:
Send status, view friend status and see what they are doing, send direct
messages to your Twitter friends, GUI notifications when a friend updates
their status.. and more :)

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(jmcneill)

2008-11-20 21:49:34 UTC MAIN commitmail json YAML

tell configure to ignore doxygen even if present, to avoid build
inconsistencies

(drochner)

2008-11-20 21:47:16 UTC MAIN commitmail json YAML

use desktop-file-utils to make sure the database is rebuilt

(drochner)

2008-11-20 21:45:07 UTC MAIN commitmail json YAML

propagate the new dependency on libltdl, fixes build issues

(drochner)

2008-11-20 21:30:06 UTC MAIN commitmail json YAML

make SIM_INLINE functions in the VAX emulator compile properly when
c99 style-inline functions are in effect (e.g. on Darwin and when
__GNUC_STDC_INLINE__ is defined).

(this was reported back when 3.8 came out on the simh mailing list,
so hopefully Bob Supnik and crew will include a fix in the next release,
when ever that is.)

(chuck)

2008-11-20 20:36:18 UTC MAIN commitmail json YAML

Updated mail/alpine to 2.00

(abs)

2008-11-20 20:35:22 UTC MAIN commitmail json YAML

Updated mail/alpine to 2.00

Changes since 1.10

  Additions include:

    *  Redesigned Web Alpine interface
    *  Experimental S/MIME support added in UNIX versions of Alpine
    *  Attempt to include the attachment filename as part of the name
        of the temporary file used when viewing an attachment with an
        external program. Add some randomness to that filename to make
        it hard to predict the filename. Add a filename extension,
        usually derived from the type/subtype, to the temporary
        filename. This was previously done only on Windows and MacOS
        X.
    *  Enhance address completion in the composer (TAB command) so
        that it looks through nicknames, fullnames, and addresses from
        the address book; addresses from the message being viewed, if
        any; and the results from LDAP Directory Server lookups for
        all of the defined directory servers that have the
        "Use-Implicitly-From-Composer" feature set.
    *  Make the default character set setting more liberal in what it
        will accept from the UNIX nl_langinfo call and the various
        values of LANG seen in the wild
    *  Remove the Alpine revision number from the titlebar in released
        versions while leaving it there in snapshot versions
    *  Add a feature to suppress the display of asterisks when you
        type a password for Alpine
    *  Add line wrapping when displaying PRE formatted sections of HTML
    *  When the Convert Dates To Localtime feature is turned on
        convert not only the dates in the index screen but also the dates
        in the MESSAGE VIEW

  Bugs that have been addressed in this release include:

    *  Crash when using tab-completion for selecting a Save filename
    *  Make Web Alpine help text images relative for more portability
    *  Fixed attach save of html parts in Web Alpine
    *  Viewing, printing, exporting, replying, and bouncing of message
        digests was broken.  Replying and bouncing should not have
        been allowed at all for digests. It would be nice to have a
        more standard index-like view of a message digest but that has
        not been addressed with this minor bug fix.
    *  Adjust wrapping of HTML messages so that the margins specified
        by Viewer Margin Left and Viewer Margin Right are observed
        correctly
    *  Interrupt of WhereIs command in index was broken
    *  The Unknown Character Set option did not work correctly
        interpreting unknown characters in message headers
    *  Long address lines could cause blank continuation lines
    *  Save to a local default INBOX failed if the primary collection
        was also local, which it is by default. The save went to
        ~/mail/inbox instead.
    *  Make a default save folder of "inbox" always mean the real
        inbox, not the inbox in the primary collection
    *  Address book entries with lots of addresses would be truncated
        when entered in the composer with a screen size wider than 270
        or so charcters
    *  Some fields in the index screen were truncated when the screen
        width was wider than 256 characters
    *  Crash when TABing to next folder, the next folder with new mail
        is a POP folder, and there is a more than 10 minute pause
        between typing the TAB and typing the Yes

(abs)

2008-11-20 18:15:43 UTC MAIN commitmail json YAML

Updated sysutils/gnome-settings-daemon to 2.24.0nb3

(wiz)

2008-11-20 18:15:28 UTC MAIN commitmail json YAML

Fix configure script so it correctly finds and passes the esound
daemon path.
>From drochner@

Bump PKGREVISION.

(wiz)

2008-11-20 18:04:23 UTC MAIN commitmail json YAML

monodevelop updated to 1.9.1

(kefren)

2008-11-20 18:02:53 UTC MAIN commitmail json YAML

2008-11-20 17:43:21 UTC MAIN commitmail json YAML

+ aria2-1.0.0, autogen-5.9.6, covered-20081119, ddrescue-1.9,
  gdm-2.24.1, gutenprint-5.2.2, lapack-3.2, libv4l-0.5.4,
  mathomatic-14.2.3, parrot-0.8.1, py-sip-4.7.9, qt3-qscintilla-2.3.2,
  source-highlight-2.11, tea-21.0.0, trac-0.11.2.1, transcode-1.0.7,
  unixodbc-2.2.13.

(wiz)

2008-11-20 17:42:40 UTC MAIN commitmail json YAML

Updated audio/esound to 0.2.41

(wiz)

2008-11-20 17:42:27 UTC MAIN commitmail json YAML

Update to 0.2.41:

===============
Version 0.2.41
===============
* Fix 32k samples turning into static when 8k samples played in
        the middle. Debian #79145. (Matthew Ashton)
* Fix filter buffer handling so filters work. Debian #202027.
        (Ryan Murray)
* Reconnect the ALSA driver and reload the config file after
        receiving a SIGUSR1. (Martin Pitt)
* Fixed esd_audio_write() to use select() if the driver supports
        it (otherwise usleep) and write data in a configurable block size.
        (Ryan Murray)
* Fixed esound.pc audifile linking. (Josselin Mouette)
* Fixed esdcat.1. (Josselin Mouette)
* Protect dsp_init() with a mutex lock. (Josselin Mouette)
* Fixed to allow multiple esd instances (one per user). (Martin Pitt)
* Fixes to startup time by not trying to exec a binary if it doesn't
        exist. (Martin Pitt)
* Prettier debugging output. (Ryan Murray)
* Fixed signedness compiler warnings. (Josselin Mouette)
* Remove libesddsp from LD_PRELOAD when autospawning esd. (Ryan Murray)
* Fixes for GStreamer using ESPEAKER. (Jeff Waugh)
* Fixes for mmap64 (Josselin Mouette)
* Close the spawnfd when the startup is successful. (Josselin Mouette)
* Save a call to esd_audio_pause when run with -nobeeps. (Josselin Mouette)
* Improved error checking for the -spawnfd switch. (Josselin Mouette)
* Fixed buffer overflow possibilities. (Ryan Murray)
* Call snd_pcm_hw_free() before calling snd_pcm_close() to avoid a
        memory leak. (Martin Pitt)
* Add informative output for -double switch. (Josselin Mouette)
* Use smaller sleep timeouts. (Josselin Mouette)
* Updated to handle more file formats supported by audiofile 0.2.3.
        (Josselin Mouette)

(wiz)

2008-11-20 17:25:01 UTC MAIN commitmail json YAML

Package now depends on fontconfig, so its dependencies should see
fontconfig as well. Fixes e.g. mldonkey build.

(wiz)

2008-11-20 16:44:45 UTC MAIN commitmail json YAML

2008-11-20 16:20:05 UTC MAIN commitmail json YAML

Properly give up maintainership, as pointed out by wiz@ [hi he!].

(cube)

2008-11-20 15:59:09 UTC pkgsrc-2008Q3 commitmail json YAML

2008-11-20 15:58:22 UTC pkgsrc-2008Q3 commitmail json YAML

Pullup ticket #2586 - requested by taca
typo3: security update

Revisions pulled up:
- www/typo3/Makefile 1.8-1.9
- www/typo3/distinfo 1.4
---
Module Name: pkgsrc
Committed By: taca
Date: Thu Nov 13 13:28:37 UTC 2008

Modified Files:
pkgsrc/www/typo3: Makefile distinfo

Log Message:
Update TYPO3 package to 4.2.3.

Initially it was simply bug fix release and please refer the URL for
full changes: http://wiki.typo3.org/TYPO3_4.2.3.

And now, it found out that two Cross Site Scripting (XSS) problem was
fixed by this release.

Regarding the issue in backend module "file": TYPO3 Security Bulletin
TYPO3-20081113-1: Cross-Site Scripting vulnerability in TYPO3 Core

<http://typo3.org/teams/security/security-bulletins/typo3-20081113-1/>

Regarding the issue in system extension "felogin": TYPO3 Security
Bulletin TYPO3-20081113-2: Cross-Site Scripting vulnerability in TYPO3 Core

<http://typo3.org/teams/security/security-bulletins/typo3-20081113-2/>
---
Module Name: pkgsrc
Committed By: taca
Date: Thu Nov 20 15:50:56 UTC 2008

Modified Files:
pkgsrc/www/typo3: Makefile

Log Message:
Remove my poor debugging aid.  No change with package itself.

(tron)

2008-11-20 15:50:56 UTC MAIN commitmail json YAML

Remove my poor debugging aid.  No change with package itself.

(taca)

2008-11-20 14:35:13 UTC MAIN commitmail json YAML

Note addition of poppler-includes.

(dillo)

2008-11-20 14:33:30 UTC MAIN commitmail json YAML

Add and enable poppler-includes.

(dillo)

2008-11-20 14:33:00 UTC MAIN commitmail json YAML

Note that this file is now also used by poppler-includes.

(dillo)

2008-11-20 14:32:19 UTC MAIN commitmail json YAML

2008-11-20 14:28:22 UTC MAIN commitmail json YAML

2008-11-20 14:22:15 UTC MAIN commitmail json YAML

2008-11-20 14:14:32 UTC MAIN commitmail json YAML

2008-11-20 13:47:48 UTC MAIN commitmail json YAML

Note sysutils/radmind update to 1.13.0

(hauke)

2008-11-20 13:45:29 UTC MAIN commitmail json YAML

Update Radmind to v1.13.0

Radmind 1.13.0 features the following changes:

* Exclude patterns apply to transcript lines. [Bug #2038036]
* Automatically convert paths between absolute and relative paths
based on the path given to fsdiff. [Patch #2020818]
* If path doesn't contain a directory, canonicalize it by prepending
"./".
* Mac Package can be installed on any volume. [Feature Request #2025217]
* Add -e to ktcheck and lapply to allow changing the event type that
is reported to the radmind server. [Patch #1951140] Thanks Karl Kuehn
of Stanford University for the patch.
* Added -T option to lmerge to merge only transcripts, not files.
[Patch #2014521] Thanks to Eric Garver from the University of Michigan
for the patch.

Changelog entry for v1.12

Major changes from 1.11.0:
- Support for includes in the config file (Patch 1919220).
- Support symlink ownership (Feature request 1834497).
- Support for lchown and lchmod, expanded 'l' type to include owner,
group, mode.

Minor changes from 1.11.0:
- Fixed bug causing twhich to print out bad special file lines.
- Fixed bug in wildcard {} matching reported by
<larkost@so...>,
improved [] processing.
- ktcheck -I support, fixing bug 1436097 and case-insensitive
special.T.
- ktcheck -n now reports correct info and exits with correct value
when dealing with special.T.
- ra.sh now supports ktcheck -I.
- ra.sh -D support, allowing admin to change working directory before
running update.
- If PAGER is set, ra.sh will use it to display difference transcript.
- twhich usage output now includes -r.
- Added instructions for building from CVS.
- Added bin/getsnet to retrieve libsnet from SF.net.
- Improved universal binary building (Mac OS X).

(hauke)

2008-11-20 13:11:19 UTC MAIN commitmail json YAML

Set the default maintainer for Mozilla related binary packages to
<pkgsrc-users@NetBSD.org> and only assign the "firefox-bin" package
to <grant@NetBSD.org> because that is the package he really created.

(tron)

2008-11-20 02:19:26 UTC MAIN commitmail json YAML

2008-11-20 02:06:05 UTC MAIN commitmail json YAML

Updated databases/tokyocabinet to 1.3.19

(obache)

2008-11-20 02:05:47 UTC MAIN commitmail json YAML

Update TokyoCabinet to 1.3.19.

Changes:
2008-11-19  Mikio Hirabayashi

* tchdb.c (tchdbaddint, tchdbadddouble): bugs related to the return value were fixed.

- Release: 1.3.19

(obache)

2008-11-19 22:16:06 UTC MAIN commitmail json YAML

Change the maintainer to <pkgsrc-bugs@NetBSD.org> because Grant Beattie
didn't create this package. He only got listed as maintainer via
"www/seamonkey-bin/Makefile.common".

(tron)

2008-11-19 21:17:10 UTC MAIN commitmail json YAML

Note PKGREVISION bump of teTeX-bin.

(minskim)

2008-11-19 21:16:03 UTC MAIN commitmail json YAML

teTeX-bin does not need libwww any more.  Noticed by Yorick Hardy in
PR 36336.

Bump PKGREVISION.

(minskim)

2008-11-19 16:35:23 UTC MAIN commitmail json YAML

/usr/ucb/install cannot handle a Solaris zone with a read-only /usr but
writeable /usr/pkg, so use install-sh on Solaris instead.

(sketch)

2008-11-19 16:27:14 UTC MAIN commitmail json YAML

Make the bulk scripts which use 'set -eu' actually work.

(sketch)

2008-11-19 14:49:28 UTC MAIN commitmail json YAML

Note update of mail/squirrelmail to package 1.4.16nb1.

(taca)

2008-11-19 14:47:51 UTC MAIN commitmail json YAML

Update Japanese patch to squirrelmail-1.4.16-ja-20081013.
No functional should be changed though.

Bump PKGREVISION.

(taca)

2008-11-19 14:36:46 UTC MAIN commitmail json YAML

Note update of net/md-whois to package 4.7.28.

(taca)

2008-11-19 14:35:34 UTC MAIN commitmail json YAML

Update md-whois package to from 4.7.22 to 4.7.28.

whois (4.7.28) unstable; urgency=medium

  * Updated the .aero TLD server.
  * Added a new ASN allocation.
  * Search PGPKEY-* objects in the RIPE database.

-- Marco d'Itri <md@linux.it>  Wed, 10 Sep 2008 18:49:37 +0200

whois (4.7.27) unstable; urgency=medium

  * Updated the .md and .me TLD servers.
  * Added a new ASN allocation.
  * Added a new IPv4 allocation.
  * Updated the Polish and Czech translations.

-- Marco d'Itri <md@linux.it>  Thu, 17 Jul 2008 00:54:55 +0200

whois (4.7.26) unstable; urgency=medium

  * Added support for passing command line options in the environment
    variables WHOIS_OPTIONS and MKPASSWD_OPTIONS. (Closes: #324858)
  * Updated the French translation. (Closes: #474307)

-- Marco d'Itri <md@linux.it>  Sat, 05 Apr 2008 04:53:26 +0200

whois (4.7.25) unstable; urgency=low

  * mkpasswd: added support for the SHA-256 and SHA-512 methods from
    glibc 2.7.
  * mkpasswd: added support for FreeBSD-style Blowfish and NT-Hash methods.
  * mkpasswd: added support for variable-rounds methods (OpenBSD-style
    Blowfish and SHA-256/SHA-512).
  * mkpasswd: renamed -H/--hash to -m/--method.
  * mkpasswd: finished support for libxcrypt (not enabled by default).
  * Added NONE entries for the rest of .uk SLD. (Closes: #471963)
  * Added the .bd, .gh, .lc, .sc, .ma, .me, .om and .rs TLD servers.
  * Updated the .aero, .bb and .bz TLD servers. (Closes: #448683)
  * Added another RIPE ERX ASN block. (Closes: #452328)
  * Added a new ASN allocation.
  * Added Basque and Czech translations.

-- Marco d'Itri <md@linux.it>  Sun, 23 Mar 2008 19:18:34 +0100

whois (4.7.24) unstable; urgency=medium

  * Added new ASN allocations.
  * Added new IPv4 allocations.
  * Added the .asia, .kp and .mq TLD servers. (Closes: #445747)

-- Marco d'Itri <md@linux.it>  Tue, 30 Oct 2007 11:06:25 +0100

whois (4.7.23) unstable; urgency=medium

  * Fixed myinet_aton to not reject CIDR networks.
  * Added support for ASN32.
  * Added the za.net and za.org pseudo-TLD servers.

-- Marco d'Itri <md@linux.it>  Thu, 13 Sep 2007 03:28:21 +0200

(taca)

2008-11-19 13:27:33 UTC MAIN commitmail json YAML

The patch from upstream to fix man/man5/qop.5 symlink. This has been sit in
PR 38622 for some time.

(hasso)

2008-11-19 13:03:37 UTC MAIN commitmail json YAML

2008-11-19 12:11:05 UTC MAIN commitmail json YAML

Updated mail/mutt-devel to 1.5.18nb1

(wiz)

2008-11-19 12:06:41 UTC MAIN commitmail json YAML

2008-11-19 11:40:09 UTC MAIN commitmail json YAML

Updated graphics/libexif to 0.6.17

(adam)

2008-11-19 11:39:05 UTC MAIN commitmail json YAML

Changes 0.6.17:
* Updated translations: cs, de, pl, sk, vi
* New translations: nl, se, en_CA
* Enabled sv translation by default
* Bug fixes
* Enhanced support of Canon and Olympus makernotes
* Added support for Fuji and Sanyo makernotes
* Added support for the NO_VERBOSE_TAG_STRINGS and NO_VERBOSE_TAG_DATA
  macros to reduce size for embedded applications
* Added support for more tags

(adam)

2008-11-19 11:17:49 UTC MAIN commitmail json YAML

reenable MAKE_JOBS_SAFE (2.0.1 compiled OK several times on i386 and amd64)
let configure choose tls model
provide atomic_ops to Interlock functions in newer NetBSDs
bump PKGREVISION

(kefren)

2008-11-19 09:30:26 UTC MAIN commitmail json YAML

Make this patch NetBSD only unbreaking other platforms. GNU iconv switched
to use char** by default as well some time ago.

(hasso)

2008-11-19 08:06:36 UTC MAIN commitmail json YAML

Documented BUILD_DEFS and BUILD_DEFS_EFFECTS.

(rillig)

2008-11-19 07:50:55 UTC MAIN commitmail json YAML

Reset PKGREVISION after update to 1.5.26.

(wiz)

2008-11-19 07:46:35 UTC MAIN commitmail json YAML

Fixed the (hopefully) last issue with the downgrading warning.

(rillig)

2008-11-19 03:39:57 UTC MAIN commitmail json YAML

2008-11-19 01:56:35 UTC MAIN commitmail json YAML

Note PKGREVISION bump of misc/openoffice3 and misc/openoffice2.

(hira)

2008-11-19 01:54:25 UTC MAIN commitmail json YAML

2008-11-19 01:26:52 UTC MAIN commitmail json YAML

2008-11-19 01:16:24 UTC MAIN commitmail json YAML

Fix spelling of variable and dependency.

(joerg)

2008-11-19 00:20:48 UTC MAIN commitmail json YAML

SU was replaced to use SU_CMD over 4 years ago.

(obache)

2008-11-18 23:56:51 UTC MAIN commitmail json YAML

Fix typos in two entries.
Found by rillig@pkglint.

(wiz)

2008-11-18 23:53:58 UTC MAIN commitmail json YAML

2008-11-18 23:52:52 UTC MAIN commitmail json YAML

This was supposed to be bumped in September due to the modular-xorg-server
update to 1.4.2 -- belatedly really do so.
Found by rillig@pkglint

(wiz)

2008-11-18 23:22:23 UTC MAIN commitmail json YAML

Depend on py-gnome2-desktop again, python support should work again.

(wiz)

2008-11-18 23:21:41 UTC MAIN commitmail json YAML

Unrestrict python again, now that drochner fixed py-cairo to work with 2.4.

(wiz)

2008-11-18 22:58:41 UTC MAIN commitmail json YAML

Fix package name to follow Python naming convention.

(joerg)

2008-11-18 22:08:32 UTC MAIN commitmail json YAML

Don't strip the binary if INSTALL_UNSTRIPPED is set.

(rillig)

2008-11-18 22:03:56 UTC MAIN commitmail json YAML

Documented INSTALL_UNSTRIPPED.

(rillig)

2008-11-18 21:58:22 UTC MAIN commitmail json YAML

Removed unused variables.

(rillig)

2008-11-18 21:17:53 UTC MAIN commitmail json YAML

It's pretty tricky to get the bmake substitution right. At least if
you're a lazy programmer. Now the ${DISTNAME:S...} is interpreted
correctly.

(rillig)

2008-11-18 21:07:30 UTC MAIN commitmail json YAML

Removed unnecessary :Q operators.

(rillig)

2008-11-18 20:49:46 UTC MAIN commitmail json YAML

do pkgrevision bump because the binary package changed.

(chuck)