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

2024-05-12 23:12:24 UTC Now

2011-04-23 21:46:59 UTC MAIN commitmail json YAML

Changes 2.05:
* Converted the configure system to non-recursive Automake.
* Applied some overdue speed optimizations for modern x86/x64 architectures
  and current compilers like gcc 4.6 and MSVC 2010.

(adam)

2011-04-23 21:26:41 UTC MAIN commitmail json YAML

Fix the interpreter to mtn-cleanup by introducing a run-time dependency on
perl.  I'm not sure there is a better way to fix this since mtn-cleanup is
installed into ${PREFIX}/bin/.

Also skip the interpreter check for some helper files that are not used by
default.  These may be put in separate packages but we can do this later;
for now I'm just adding a comment mentioning the idea.

Bump PKGREVISION to 2.

(jmmv)

2011-04-23 21:17:29 UTC MAIN commitmail json YAML

Fix the interpreter of event_rpcgen.py to point to a known Python binary.
This requires a dependency on Python.  Bump PKGREVISION to 1.

This is probably not the best solution: I guess it'd be nice to have a
libevent package that only included the binary libraries and no dependency
on Python, and another libevent-dev package with the event_rpcgen.py binary
and the Python dependency.  But this can be done later; I want to just fix
the breakage first.

(jmmv)

2011-04-23 17:48:33 UTC MAIN commitmail json YAML

Make sure <langinfo.h> actually provides CODESET before using it,
for the sake of old NetBSD releases.

(hauke)

2011-04-23 17:32:24 UTC MAIN commitmail json YAML

Note update of "python25" package to version 2.5.5nb5.

(tron)

2011-04-23 17:31:40 UTC MAIN commitmail json YAML

Correct path to Python interpreter in all ".py" files to fix build
with revision 1.26 of "pkgsrc/mk/check/check-interpreter.mk".

Bump package revision because the binary package changed.

(tron)

2011-04-23 17:30:26 UTC MAIN commitmail json YAML

Note update of the "teTeX3-bin" package to version 3.0nb48.

(tron)

2011-04-23 17:29:39 UTC MAIN commitmail json YAML

Correct Perl interpreter path in "bin/texdoctk" to to fix build
with revision 1.26 of "pkgsrc/mk/check/check-interpreter.mk".

Bump package revision because the binary package changed.

(tron)

2011-04-23 15:24:28 UTC MAIN commitmail json YAML

Updated sysutils/fabric to 1.0.1

(gls)

2011-04-23 15:23:53 UTC MAIN commitmail json YAML

Update sysutils/fabric to 1.0.1

Upstream changes:

Bugfixes

    * #301: Fixed a bug in local?s behavior when capture=False and output.stdout
(or .stderr) was also False. Thanks to Chris Rose for the catch.
    * #310: Update edge case in put where using the mode kwarg alongside
use_sudo=True runs a hidden sudo command. The mode kwarg needs to be octal but
was being interpolated in the sudo call as a string/integer. Thanks to Adam
Ernst for the catch and suggested fix.
    * #311: append was supposed to have its partial kwarg's default flipped from
True to False. However, only the documentation was altered. This has been fixed.
Thanks to Adam Ernst for bringing it to our attention.
    * #312: Tweak internal I/O related loops to prevent high CPU usage and poor
screen-printing behavior on some systems. Thanks to Kirill Pinchuk for the
initial patch.
    * #320: Some users reported problems with dropped input, particularly while
entering sudo passwords. This was fixed via the same change as for #312.

Documentation

    * Added a missing entry for env.path in the usage documentation.

(gls)

2011-04-23 12:49:38 UTC MAIN commitmail json YAML

Fix build with the latest version of Heimdal under NetBSD/current.

(tron)

2011-04-23 10:42:22 UTC MAIN commitmail json YAML

Note update of the "python26" package to version 2.6.6nb9.

(tron)

2011-04-23 10:40:02 UTC MAIN commitmail json YAML

Note update of the "python27" package to version 2.7.1nb3.

(tron)

2011-04-23 10:39:01 UTC MAIN commitmail json YAML

Correct path to Python interpreter in all ".py" files to fix build
with revision 1.26 of "pkgsrc/mk/check/check-interpreter.mk".

Bump package revision because the binary package changed.

(tron)

2011-04-23 10:35:28 UTC MAIN commitmail json YAML

Correct path to Python interpreter in all ".py" files to fix build
with revision 1.26 of "pkgsrc/mk/check/check-interpreter.mk".

Bump package revision because the binary package changed.

(tron)

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

Updated lang/python24 to 2.4.6

(obache)

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

Update python24 to 2.4.6.

What's New in Python 2.4.6?
===========================

*Release date: 19-Dec-2008*

What's New in Python 2.4.6c1?
=============================

*Release date: 13-Dec-2008*

Core and builtins
-----------------

- Issue #4469: Prevent expandtabs() on string and unicode
  objects from causing a segfault when a large width is passed
  on 32-bit platforms. CVE-2008-5031.

- Issue #4317: Fixed a crash in the imageop.rgb2rgb8() function.

- Issue #4230: Fix a crash when a class has a custom __getattr__ and an
  __getattribute__ method that deletes the __getattr__ attribute.

- Apply security patches from Apple. CVE-2008-2315.

- Issue #2620: Overflow checking when allocating or reallocating memory
  was not always being done properly in some python types and extension
  modules.  PyMem_MALLOC, PyMem_REALLOC, PyMem_NEW and PyMem_RESIZE have
  all been updated to perform better checks and places in the code that
  would previously leak memory on the error path when such an allocation
  failed have been fixed.

- Issue #1179: Fix CVE-2007-4965 and CVE-2008-1679, multiple integer
  overflows in the imageop and rgbimgmodule modules.

- Issue #2586: Fix CVE-2008-1721, zlib crash from
  zlib.decompressobj().flush(val) when val is not positive.

- Issues #2588, #2589: Fix potential integer underflow and overflow
  conditions in the PyOS_vsnprintf C API function. CVE-2008-3144.

- Issue #2587: In the C API, PyString_FromStringAndSize() takes a signed size
  parameter but was not verifying that it was greater than zero.  Values
  less than zero will now raise a SystemError and return NULL to indicate a
  bug in the calling C code. CVE-2008-1887.

- Security Issue #2: imageop did not validate arguments correctly and could
  segfault as a result. CVE-2008-4864.

Extension Modules
-----------------

Library
-------

Tests
-----

Build
-----

Tools/Demos
-----------

- Tools/faqwiz/move-faqwiz.sh: Fix unsecure use of temporary files.

(obache)

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

more replace interpreter.

(obache)

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

remove tail enmty line.

(obache)

2011-04-23 06:04:37 UTC MAIN commitmail json YAML

move extra buildlinks into the guard.

(obache)

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

skip interpreter check for munin plugins.
(it should be into split package).

(obache)

2011-04-23 01:41:36 UTC MAIN commitmail json YAML

more replace interpreter line.

(obache)

2011-04-22 23:05:27 UTC MAIN commitmail json YAML

Mark BROKEN, doesn't fetch.

(joerg)

2011-04-22 22:58:18 UTC MAIN commitmail json YAML

2011-04-22 20:36:49 UTC MAIN commitmail json YAML

The startup file needed some updating, and the XYMONHOME path also wanted
fixing.

(spz)

2011-04-22 20:32:19 UTC MAIN commitmail json YAML

Updated sysutils/capistrano to 2.5.21

(gls)

2011-04-22 20:31:50 UTC MAIN commitmail json YAML

Update sysutils/capistrano to 2.5.21

Upstream changes:

## 2.5.21 / April 6 2011

* Fixed to follow best-practice guidelines from Bundler (Ben Langfeld)
* No longer force a gemset for Capistrano development. (Ben Langfeld)

## 2.5.20 / March 16 2011

  * `deploy:migrations` will now always operate on the latest_release, not
current_release (Mike Vincent)
  * Adds a check for the presence of `rsync` when using the copy strategy with
`rsync`. (Chris Griego)
  * Do not try to look up the `:release_path` on servers which are defined
`:no_release` (Chris Griego)
  * Tiny patch to the `CVS` SCM code to be Ruby 1.9 compatible (Martin Carpenter)
  * Changed the default `Git` submodule behaviour to use `--recursive`
Lighthouse Issue #176. (Lee Hambley)
  * `:public_children` can now be `set()`, the default is unchanged, thanks
(Chris Griego)
  * Fixing the load path in the default `Capfile` to search vendored/unpacked
Gems. Lighthouse Issue #174 (Mari Carmen/Rafael Garc�a)
  * Adds a `maintenance_basename` variable (default value is `maintenance`) to
allow you to set the maintenance page name (Celestino Gomes)
  * Spelling fixes in inline-documentation (Tom Copeland)
  * Make `zip` and `tar` handle symlinks the same way (zip follows symlinks by
default, tar needs the option `-h`) (Ross Cooperman)

(gls)

2011-04-22 17:34:21 UTC MAIN commitmail json YAML

files/xymon.sh needed some more updating to the new version

(spz)

2011-04-22 15:37:02 UTC MAIN commitmail json YAML

2011-04-22 14:52:18 UTC MAIN commitmail json YAML

2011-04-22 14:40:46 UTC MAIN commitmail json YAML

2011-04-22 13:53:53 UTC MAIN commitmail json YAML

Updated databases/postgresql83 to 8.3.15

(adam)

2011-04-22 13:50:39 UTC MAIN commitmail json YAML

Changes 8.3.15:
* fix build issues on HP-UX and Itanium
* update time zone files for recent time zone changes
* change SQLSTATE for Hot Standby warnings
* prevent bgwriter hang during recovery
* prevent recursive composite type creation
* disallow dropping tables whose triggers are still pending
* allow use of "replication" as a user name
* prevent a crash during GEQO planning
* improve join plans for tables with missing statistics
* fix error with SELECT FOR UPDATE in a subselect
* close PL/python array slice memory leak
* allow SSL connections for users with no home directory

(adam)

2011-04-22 13:45:23 UTC MAIN commitmail json YAML

2011-04-22 13:04:19 UTC MAIN commitmail json YAML

Updated databases/postgresql84 to 8.4.8

(adam)

2011-04-22 13:01:31 UTC MAIN commitmail json YAML

Changes 8.4.8:
* fix build issues on HP-UX and Itanium
* update time zone files for recent time zone changes
* change SQLSTATE for Hot Standby warnings
* prevent bgwriter hang during recovery
* prevent recursive composite type creation
* disallow dropping tables whose triggers are still pending
* allow use of "replication" as a user name
* prevent a crash during GEQO planning
* improve join plans for tables with missing statistics
* fix error with SELECT FOR UPDATE in a subselect
* close PL/python array slice memory leak
* allow SSL connections for users with no home directory

(adam)

2011-04-22 10:09:35 UTC MAIN commitmail json YAML

Stop maintaining amarok.

(wiz)

2011-04-22 09:03:53 UTC MAIN commitmail json YAML

fix up paths on ftp.NetBSD.org:
- reading through the null mounts is deprecated
- writing through the null mounts is not allowed (not possible)

(spz)

2011-04-22 08:16:42 UTC MAIN commitmail json YAML

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

Updated databases/postgresql90 to 9.0.4

(adam)

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

Changes 9.0.4:
* fix build issues on HP-UX and Itanium
* update time zone files for recent time zone changes
* change SQLSTATE for Hot Standby warnings
* prevent bgwriter hang during recovery
* prevent recursive composite type creation
* disallow dropping tables whose triggers are still pending
* allow use of "replication" as a user name
* prevent a crash during GEQO planning
* improve join plans for tables with missing statistics
* fix error with SELECT FOR UPDATE in a subselect
* close PL/python array slice memory leak
* allow SSL connections for users with no home directory
* allow building PostgreSQL 9.0 with 64-bit MinGW

(adam)

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

Added postgresql-license

(adam)

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

Added postgresql-license

(adam)

2011-04-22 07:27:45 UTC MAIN commitmail json YAML

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

The pkg name is libaudiofile, so use that in buildlink3.mk.

(hans)

2011-04-21 20:56:22 UTC MAIN commitmail json YAML

2011-04-21 20:43:02 UTC MAIN commitmail json YAML

2011-04-21 20:42:44 UTC MAIN commitmail json YAML

2011-04-21 20:29:20 UTC MAIN commitmail json YAML

2011-04-21 20:01:03 UTC MAIN commitmail json YAML

2011-04-21 18:11:26 UTC MAIN commitmail json YAML

+ ImageMagick-6.6.9.6, audacity-1.3.13, calibre-0.7.56, cone-0.87,
  dbus-1.4.8, etm-706, gnome-games-3.0.1, horde-4.0.1, imp-5.0.1,
  ingo-2.0.1, kronolith-3.0.1, less-443, libgdata-0.8.1,
  mathomatic-15.5.3, modular-xorg-server-1.10.1, mono-addins-0.6.1,
  orc-0.4.12, p5-PerlMagick-6.6.9.6, py-OpenSSL-0.12, rails-3.0.7,
  rdesktop-1.7.0, texmaker-3.0.1, turba-3.0.1, unison-2.40.63,
  wireshark-1.4.6, x264-devel-20110416.

(wiz)

2011-04-21 17:53:27 UTC MAIN commitmail json YAML

Make this work on SunOS.

audio/cdparanoia is not available for SunOS, but devel/libcdio has a
working alternative. Also, don't depend on gsed directly, add it to
USE_TOOLS.

(hans)

2011-04-21 16:35:27 UTC MAIN commitmail json YAML

update to 3.5
changes:
-Python interceptors can receive peer address and identity
-Python exceptions can be pickled

(drochner)

2011-04-21 16:34:18 UTC MAIN commitmail json YAML

update to 4.1.5
change: Incoming SSL connections can time out waiting for SSL_accept to
complete

pkgsrc change: remove the patch which did daemonize omniNames in
the code -- this was bad because it sent all diagnostic output
to /dev/null. send it to background in the rc.d script instead, and
set a reasonable logfile location

(drochner)

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

Fix build on SunOS.

(hans)

2011-04-21 15:03:53 UTC MAIN commitmail json YAML

2011-04-21 15:01:57 UTC MAIN commitmail json YAML

Fix build on SunOS.

Configure does not enable the sun output plugin, which requires BSD
extensions and wouldn't work anyway. But we can use the oss plugin,
recent SunOS versions support OSS.

(hans)

2011-04-21 14:46:29 UTC MAIN commitmail json YAML

Fix broken variable expansion.

(hans)

2011-04-21 14:33:37 UTC MAIN commitmail json YAML

2011-04-21 14:30:35 UTC MAIN commitmail json YAML

2011-04-21 14:27:34 UTC MAIN commitmail json YAML

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

2011-04-21 13:50:29 UTC MAIN commitmail json YAML

note some more "used by ..." comments.

(obache)

2011-04-21 13:35:36 UTC MAIN commitmail json YAML

2011-04-21 13:30:50 UTC MAIN commitmail json YAML

2011-04-21 13:25:28 UTC MAIN commitmail json YAML

Fix build on SunOS. From iMil.

(hans)

2011-04-21 13:05:35 UTC MAIN commitmail json YAML

Recent versions of SunOS have a native libusb. Add a builtin.mk to allow
packages depending on devel/libusb to be built on SunOS.

(hans)

2011-04-21 11:32:02 UTC MAIN commitmail json YAML

remove "used by net/gnome-vfs-dns-sd/Makefil" comment, it had been removed.

(obache)

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

Added ap2-authn-otp

(pettai)

2011-04-21 10:41:45 UTC MAIN commitmail json YAML

Added www/ap2-authn-otp version 1.1.3

(pettai)

2011-04-21 10:27:35 UTC MAIN commitmail json YAML

Remove python dependency and allow broken installation again as
requested by agc@

(roy)

2011-04-21 10:05:52 UTC MAIN commitmail json YAML

2011-04-21 09:54:44 UTC MAIN commitmail json YAML

mod_authn_otp is an Apache web server module for two-factor authentication
using one-time passwords (OTP) generated via the HOTP/OATH algorithm
defined in RFC 4226. This creates a simple way to protect a web site with
one-time passwords, using any RFC 4226-compliant hardware or software
token device. mod_authn_otp also supports the Mobile-OTP algorithm.

mod_authn_otp supports both event and time based one-time passwords. It
also supports "lingering" which allows the repeated re-use of a previously
used one-time password up to a configurable maximum linger time. This
allows one-time passwords to be used directly in HTTP authentication
without forcing the user to enter a new one-time password for every
page load.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(pettai)

2011-04-21 09:49:47 UTC MAIN commitmail json YAML

Initial import

Changelog, so far:

Version 1.1.3 (r94)
    - Fixed bug with "OTPAuthPINAuthProvider" and <AuthnProviderAlias>

Version 1.1.2 (r87)
    - Added "OTPAuthPINAuthProvider" to allow alternate verification of PINs
    - Added "OTPAuthLogoutOnIPChange" flag to auto-logout on IP address change
    - Build fixes for Solaris

Version 1.1.1 (r66)
    - Build fixes

Version 1.1.0 (r44)
    - Moved time interval and #digits configuration into users file
    - Fixed bug in time based token synchronization at large offsets
    - Added support for the Mobile-OTP algorithm: http://motp.sourceforge.net/
    - Added otptool(1) one-time password utility program.
    - Accept either decimal or hexadecimal values (basic auth only).

Version 1.0.0 (r10)
    - Initial release

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(pettai)

2011-04-20 22:23:57 UTC MAIN commitmail json YAML

Fix linking against pari.

(hans)

2011-04-20 22:12:50 UTC MAIN commitmail json YAML

Fix linking against db4.

(hans)

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

Updated lang/sbcl to 1.0.47

(asau)

2011-04-20 20:46:50 UTC MAIN commitmail json YAML

Update to SBCL 1.0.47

changes in sbcl-1.0.47 relative to sbcl-1.0.46:
  * bug fix: fix mach port rights leaks in mach exception handling code on
    darwin/x86 and /x86-64. (thanks to Willem Oudshoorn for motivation and the
    initial patch)
  * enhancement: --script muffles style-warnings and compiler notes. (lp#677779)
  * enhancement: redefinition warnings for macros from different files. (lp#434657)
  * enhancement: better MACHINE-VERSION on Darwin x86 and x86-64. (lp#668332)
  * enhancement: (FORMAT "foo" ...) and similar signal a compile-time warning. (lp#327223)
  * enhancement: no more "in: LAMBDA NIL" messages from the compiler for forms
    processed using EVAL -- now the appropriate toplevel form is reported instead.
  * enhancement: more legible style-warnings for inappropriate IGNORE and IGNORABLE
    declarations. (lp#726331)
  * enhancement: :NOT-NULL option has been added to alien C-STRING type to indicate
    that NIL/NULL is excluded from the type.
  * enhancement: SB-INTROSPECT:MAP-ROOT allows mapping over pointers contained in
    arbitrary objects.
  * optimization: SLOT-VALUE &co are faster in the presence of SLOT-VALUE-USING-CLASS
    and its compatriots.
  * optimization: core startup time is reduced by 30% on x86-64. (lp#557357)
  * bug fix: SB-DEBUG:BACKTRACE-AS-LIST guards against potentially leaking
    stack-allocated values out of their dynamic-extent. (lp#310175)
  * bug fix: attempts to use SB-SPROF for wallclock profiling on threaded
    x86-64 builds caused a type-error.
  * bug fix: calling COMPILE with something else than a lambda-expression as the
    second argument reports a more sensible error. (lp#718905)
  * bug fix: invalid combinations of :PREDICATE and :TYPE options in DEFSTRUCT
    are detected. (lp#520607)
  * bug fix: constant keyword argument checking didn't take :ALLOW-OTHER-KEYS
    into account.
  * bug fix: SLOT-BOUNDP information is correct during MAKE-INSTANCE in the
    presence of (SETF SLOT-VALUE-USING-CLASS) and SLOT-BOUNDP-USING-CLASS
    methods. (regression from 1.0.45.18)
  * bug fix: INITIALIZE-INSTANCE :AROUND methods supplying initargs via
    CALL-NEXT-METHOD work correctly. (regression from 1.0.45.19)
  * bug fix: several foreign functions accepting string also accepted NIL and
    consequently caused a memory fault at 0 now signal a type-error instead.
    (lp#721087)
  * bug fix: under rare circumstances, constraint propagation could rewrite a
    variable reference to refer to a variable not in scope, causing an error
    during physical environment analysis when attempting to close over the
    variable. (lp#551227)
  * bug fix: SIMPLE-CONDITION :FORMAT-CONTROL defaults to NIL.

(asau)

2011-04-20 19:42:17 UTC MAIN commitmail json YAML

Fix build on SunOS.

(hans)

2011-04-20 19:13:13 UTC MAIN commitmail json YAML

Note update of tex-texlive-en-doc.

(minskim)

2011-04-20 19:08:10 UTC MAIN commitmail json YAML

Sync tex-texlive-en-doc with TeX Live r21569.

Documentation update.

(minskim)

2011-04-20 18:57:22 UTC MAIN commitmail json YAML

2011-04-20 18:51:39 UTC MAIN commitmail json YAML

Allow module packages to specify their own do-install target.
Used by x11/clisp-mit-clx.

(hans)

2011-04-20 18:50:02 UTC MAIN commitmail json YAML

2011-04-20 18:44:57 UTC MAIN commitmail json YAML

2011-04-20 18:40:44 UTC MAIN commitmail json YAML

2011-04-20 18:40:40 UTC pkgsrc-2011Q1 commitmail json YAML

2011-04-20 18:39:44 UTC pkgsrc-2011Q1 commitmail json YAML

Pullup ticket #3417 - requested by drochner
graphics/gimp: security patch

Revisions pulled up:
- graphics/gimp/Makefile                                        1.204
- graphics/gimp/distinfo                                        1.62
- graphics/gimp/patches/patch-ba                                1.1
- graphics/gimp/patches/patch-bb                                1.1
- graphics/gimp/patches/patch-bc                                1.1
- graphics/gimp/patches/patch-bd                                1.1

---
  Module Name:    pkgsrc
  Committed By:  drochner
  Date:          Fri Apr 15 16:39:10 UTC 2011

  Modified Files:
          pkgsrc/graphics/gimp: Makefile distinfo
  Added Files:
          pkgsrc/graphics/gimp/patches: patch-ba patch-bb patch-bc patch-bd

  Log Message:
  add patches from upstream, via Debian/Ubuntu:
  -possible buffer overflows when parsing config files of plugins
    (CVE-2010-4540, CVE-2010-4541, CVE-2010-4542)
  -possible buffer overflow in PSP image parser plugin (CVE-2010-4543)
  bump PKGREV

(tron)

2011-04-20 18:36:17 UTC MAIN commitmail json YAML

2011-04-20 18:31:36 UTC MAIN commitmail json YAML

2011-04-20 16:11:09 UTC MAIN commitmail json YAML

Updated net/unbound to 1.4.9

(pettai)

2011-04-20 15:12:02 UTC MAIN commitmail json YAML

Actually make SUBST stage run - bump PKGREVISION

(abs)

2011-04-20 12:36:56 UTC MAIN commitmail json YAML

switch from /usr/bin/env perl to ${PERL5} via SUBST. Bump PKGREVISION

(abs)

2011-04-20 12:17:02 UTC MAIN commitmail json YAML

2011-04-20 12:12:48 UTC MAIN commitmail json YAML

note a "used by ..." comment.

(obache)

2011-04-20 12:06:02 UTC MAIN commitmail json YAML

note "used by ..." comments.

(obache)

2011-04-20 12:02:40 UTC MAIN commitmail json YAML

note "used by..." comments.

(obache)

2011-04-20 11:53:33 UTC MAIN commitmail json YAML

note "used by..." comments.

(obache)

2011-04-20 10:44:46 UTC MAIN commitmail json YAML

1.4.9:

Bug Fixes:

* Added explicit note on unbound-anchor usage: Please note usage of
  unbound-anchor root anchor is at your own risk and under the terms of our
  LICENSE (see that file in the source).
* Fix remove private address does not throw away entire response. [bugzilla: 361 ]
* Fix, time.elapsed variable not reset with stats_noreset.
* Fix no ADflag for NXDOMAIN in NSEC3 optout. And wildcard in optout.
* give config parse error for multiple names on a stub or forward zone.
* updated ldns tarball to 1.6.9(snapshot).
* iana portlist updated.

(pettai)

2011-04-20 10:00:01 UTC MAIN commitmail json YAML

For the sake of graphics/cairo, which derives the libXrender feature
set from the renderproto version, pick a package with an older version
(renderproto9) for anything < netbsd-5.

This change gets the selection criteria right, and also points the
renderproto9 package to renderproto's builtin.mk, avoiding Xrender
breakage.

Fixes pkg/43969 and should probably be pulled up.

(hauke)

2011-04-20 09:57:25 UTC MAIN commitmail json YAML

2011-04-20 09:03:18 UTC MAIN commitmail json YAML

Use python correctly.

(roy)

2011-04-20 07:17:46 UTC MAIN commitmail json YAML

Use correct shell.

swell-foop still doens't work as it depends on seed which isn't in pkgsrc
yet, but gnome-games installs again.

(roy)

2011-04-19 21:53:10 UTC MAIN commitmail json YAML

Note update of the "wireshark" package to version 1.4.6.

(tron)

2011-04-19 21:52:56 UTC MAIN commitmail json YAML

Update "wireshark" package to version 1.4.6. Changes since 1.4.5:
- Bug Fixes
  o Wireshark and TShark can crash while analyzing TCP packets.
    (Bug 5837)

(tron)

2011-04-19 19:45:17 UTC MAIN commitmail json YAML

Updated lang/cdl3 to 1.2.8

(asau)

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

Update to CDL3 version 1.2.8
This release fixes few minor issues and improves compiler support.

(asau)

2011-04-19 19:18:58 UTC MAIN commitmail json YAML

Updated lang/maude to 2.6

(asau)

2011-04-19 19:18:41 UTC MAIN commitmail json YAML

Update Maude to version 2.6

This release incorporates mostly optimizations and bug fixes.
Read bundled NEWS for more details.

(asau)

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

-Python is optional, keep this in options.mk
-the files where the interpreter check fires are not executable,
so just CHECK_INTERPRETER_SKIP them

(drochner)

2011-04-19 16:10:16 UTC MAIN commitmail json YAML

2011-04-19 15:58:50 UTC MAIN commitmail json YAML

Updated multimedia/adobe-flash-plugin10.1 to 10.2.159.1

(chs)

2011-04-19 15:58:13 UTC MAIN commitmail json YAML

2011-04-19 15:32:28 UTC MAIN commitmail json YAML

Just replace what we need.

(roy)

2011-04-19 15:31:45 UTC MAIN commitmail json YAML

Just warn about non executable files using env.

(roy)

2011-04-19 14:28:28 UTC MAIN commitmail json YAML

Disallow the use of env(1) as an interpreter.

(roy)

2011-04-19 13:30:12 UTC MAIN commitmail json YAML

2011-04-19 13:29:47 UTC MAIN commitmail json YAML

Use bash correctly.

(roy)

2011-04-19 13:16:10 UTC MAIN commitmail json YAML

Re-import previous version of Firefox, because firefox-4.0 won't
work for some users (sparc64 support, for example, is busted and
won't appear again until firefox-5.0).

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(tnn)

2011-04-19 13:14:28 UTC MAIN commitmail json YAML

Use python correctly.

(roy)

2011-04-19 11:55:57 UTC MAIN commitmail json YAML

2011-04-19 11:47:12 UTC MAIN commitmail json YAML

note a "used by ..." comment.

(obache)

2011-04-19 11:35:31 UTC MAIN commitmail json YAML

note "used by ..." comments

(obache)

2011-04-19 11:34:47 UTC MAIN commitmail json YAML

fixes last commit (missing `/Makefile').

(obache)

2011-04-19 11:30:50 UTC MAIN commitmail json YAML

note "used by ..." comments

(obache)

2011-04-19 11:20:59 UTC MAIN commitmail json YAML

xulrunner -> xulrunner192

(tnn)

2011-04-19 11:16:12 UTC MAIN commitmail json YAML

2011-04-19 10:58:58 UTC MAIN commitmail json YAML

Use python correctly.

(roy)

2011-04-19 10:28:31 UTC MAIN commitmail json YAML

2011-04-19 10:09:42 UTC MAIN commitmail json YAML

Use python correctly.

(roy)

2011-04-19 10:06:05 UTC MAIN commitmail json YAML

Updated textproc/dbtoepub to 1.76.1

(roy)

2011-04-19 10:05:40 UTC MAIN commitmail json YAML

2011-04-19 10:04:18 UTC MAIN commitmail json YAML

2011-04-19 10:03:37 UTC MAIN commitmail json YAML

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

Updated www/ruby-httpclient to 2.2.0.1

(obache)

2011-04-19 07:54:46 UTC MAIN commitmail json YAML

Update ruby-httpclient to 2.2.0.1.

* Fix webmock compatibility.

(obache)

2011-04-19 06:32:48 UTC MAIN commitmail json YAML

epub XSLMOD requires ruby, so we no longer install it.

(roy)

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

gtester-report requires python.

(roy)

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

Note update of devel/orc to 0.4.11nb1.

(he)

2011-04-18 20:07:32 UTC MAIN commitmail json YAML

Add a patch so that this builds properly for powerpc.
Also bump package revision.

(he)

2011-04-18 17:18:26 UTC MAIN commitmail json YAML

update to 1.1.5
change: Added a Help button and separated Help and About information

(drochner)

2011-04-18 17:10:23 UTC MAIN commitmail json YAML

catch up with an API change in poppler, fixes crash if linearized PDFs
are viewed, from IWAMOTO Toshihiro per PR pkg/44870
bump PKGREVISION

(drochner)

2011-04-18 16:19:48 UTC MAIN commitmail json YAML

2011-04-18 12:01:52 UTC MAIN commitmail json YAML

note "used by..." comments

(obache)

2011-04-18 11:55:14 UTC MAIN commitmail json YAML

note "used by..." comments

(obache)

2011-04-18 11:50:48 UTC MAIN commitmail json YAML

Note "used by..." comments.

(obache)

2011-04-17 21:45:26 UTC MAIN commitmail json YAML

* quvi.h is changed, BUILDLINK_API_DEPENDS.quvi is changed to 0.2.15.

(ryoon)

2011-04-17 20:29:50 UTC MAIN commitmail json YAML

Updated databases/sqlite3 to 3.7.6.2

(adam)

2011-04-17 20:27:09 UTC MAIN commitmail json YAML

Changes 3.7.6.2:
* Fix the function prototype for the open(2) system call to agree with POSIX.
  Without this fix, pthreads does not work correctly on NetBSD.

(adam)

2011-04-17 13:12:53 UTC MAIN commitmail json YAML

There is no quvi-0.4.0 -- depend on 0.2.0.

(wiz)

2011-04-17 10:53:08 UTC MAIN commitmail json YAML

Remove youtube-dl

(ryoon)

2011-04-17 10:52:40 UTC MAIN commitmail json YAML

Updated net/youtube-dl to 20110329

(ryoon)

2011-04-17 10:51:55 UTC MAIN commitmail json YAML

Update to 20110329

Changelog:
This release fixes a program crash that was happening with certain YouTube
videos, and fixes the date extraction regular expression in YouTube.

(ryoon)

2011-04-17 10:32:34 UTC MAIN commitmail json YAML

Remove quvi

(ryoon)

2011-04-17 10:32:06 UTC MAIN commitmail json YAML

Updated net/quvi to 0.2.15

(ryoon)

2011-04-17 10:30:48 UTC MAIN commitmail json YAML

Update to 0.2.15

* Update BUILDLINK_API_DEPENDS.quvi to 0.4.0

Changelog:
0.2.15  Fri Apr 15 2011  Toni Gundogdu
Changes:
        - Add support for reading URLs from the stdin
        - quvi_supported: Improve URL checking (#29)
            - Check additional URL parts (vs. domain only)
        - Remove obsoleted (by new test suite) options from quvi command
            - --test-all
            - --test
            - --page-title
            - --video-id
            - --file-length
            - --file-suffix
            - --dump
Changes: Build system
        - New testsuite (see $top_srcdir/test/README)
        - Use CPPFLAGS (src|lib|examples)/Makefile.am
        - configure:
            - Add --enable-nlfy, --enable-verbose-tests
            - Rename --enable-broken -> --enable-todo
Changes: API
        - Add "media" interface, deprecating the old "video" interface
            - The deprecated symbols will be removed in 0.2.20
            - Add quvi_next_media_url (depr. quvi_next_videolink)
            - Add quvi_media_t (depr. quvi_video_t)
            - Add QUVIPROP_MEDIAID (depr. QUVIPROP_VIDEOID)
            - Add QUVIPROP_MEDIAURL (depr. QUVIPROP_VIDEOURL)
            - Add QUVIPROP_MEDIACONTENTLENGTH (depr. QUVIPROP_VIDEOFILELENGTH)
            - Add QUVIPROP_MEDIACONTENTTYPE (depr.QUVIPROP_VIDEOFILECONTENTTYPE)
            - Add QUVIPROP_FILESUFFIX (depr. QUVIPROP_VIDEOFILESUFFIX)
            - Add QUVIPROP_FORMAT (depr. QUVIPROP_VIDEOFORMAT)
        - Add QUVIPROP_MEDIATHUMBNAILURL, QUVIPROP_MEDIADURATION
            - Thanks to Bastien Nocera for the patch
Changes: Website scripts
        - Add soundcloud.lua, ted.lua: Thanks to Bastien Nocera for scripts
        - Add megavideo.lua: Thanks to Paul Kocialkowski for the script
        - Add tvlux.lua
        - collegehumor.lua: Mark as TODO (#35)
        - cbsnews.lua (#30)
            - Improve 'best' parsing (compare height and bitrate)
            - Update format IDs
        - youtube.lua:
            - Add support for "#at=" as start-time
            - Add support additional embed URL types (/e/,/embed/)
            - Process the starttime string (#36)
            - Remove the dangling format IDs (tgp_144p, webm_*)
        - vimeo.lua: Exit with server returned error message (#27)
        - arte.lua: Improve handling of expired URLs
Bugfixes:
        - "error: (null)" with LUA scripts that use 'redirect' (#46)
        - quvi: Do not exit if preceeding URL fails (#40)
        - Compilation when PATH_MAX is not defined (#32)
Bugfixes: Build system
        - Include doc subdir with --with-doc flag only (#33)
Bugfixes: Website scripts
        - cbsnews.lua: attempt to compare number with nil (#30)

(ryoon)

2011-04-17 10:11:03 UTC MAIN commitmail json YAML

Fixed typo in LICENSE

(adam)

2011-04-17 09:30:03 UTC MAIN commitmail json YAML

Note "used by..." comments.

(obache)

2011-04-17 09:23:49 UTC MAIN commitmail json YAML

2011-04-17 09:15:21 UTC MAIN commitmail json YAML

Updated databases/sqlite3 to 3.7.6.1nb1

(adam)

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

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

2011-04-17 09:02:17 UTC MAIN commitmail json YAML

fixes "used by ..." comments, "Makefile" is "included by ..." nowhere.

(obache)

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

2011-04-17 07:47:34 UTC MAIN commitmail json YAML

Updated lang/vscm to 1.4

(asau)

2011-04-17 07:46:06 UTC MAIN commitmail json YAML

2011-04-17 03:52:48 UTC MAIN commitmail json YAML

Note update of emacs-snapshot.

(minskim)

2011-04-17 03:52:18 UTC MAIN commitmail json YAML

Update emacs-snapshot to 24.0.50.20110408.

Patches provided by Makoto Fujiwara in PR 44871.

Changes:
- Fix problems found by GCC 4.6.0's static checks.
- man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
- custom.el (load-theme): Minor optimization in assigning faces.
- emacs-lisp/package.el (package--with-work-buffer): Recognize https
  URLs.

(minskim)

2011-04-17 02:13:42 UTC MAIN commitmail json YAML

Updated net/mikutter to 0.0.2.13

(obache)

2011-04-17 02:13:23 UTC MAIN commitmail json YAML

Update mikutter to 0.0.2.13

* support ruby-1.9.2
* support notification of retweeted tweet.

(obache)

2011-04-17 01:44:58 UTC MAIN commitmail json YAML

2011-04-16 23:52:37 UTC MAIN commitmail json YAML

Remove gst123

(ryoon)

2011-04-16 23:52:05 UTC MAIN commitmail json YAML

Updated multimedia/gst123 to 0.2.0

(ryoon)

2011-04-16 23:51:13 UTC MAIN commitmail json YAML

Update to 0.2.0

Changelog:
Overview of changes in gst123-0.2.0:

* Made --shuffle, --repeat and --random behave identical to ogg123 options.
* Allow colon in filenames. [Siddhesh Poyarekar]
* Support "none" audio driver which disables audio output.
* Added --full-version option which prints versions of the
  libraries used by gst123.
* Support --enable-debug configure option.
* Minor fixes.

(ryoon)

2011-04-16 21:52:17 UTC pkgsrc-2011Q1 commitmail json YAML

pullups 3410, 3412, 3416

(spz)

2011-04-16 21:49:17 UTC pkgsrc-2011Q1 commitmail json YAML

Pullup ticket #3416 - requested by tron
net/wireshark: security update

Revisions pulled up:
- net/wireshark/Makefile                                        1.61
- net/wireshark/distinfo                                        1.43

---------------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: tron
  Date: Sat Apr 16 14:30:16 UTC 2011

  Modified Files:
  pkgsrc/net/wireshark: Makefile distinfo

  Log Message:
  Update "wireshark" package to version 1.4.5. Changes since 1.4.4:
  - Bug Fixes
    The following vulnerabilities have been fixed. See the security
    advisory for details and a workaround.
    o The NFS dissector could crash on Windows. (Bug 5209)
      Versions affected: 1.4.0 to 1.4.4.
    o The X.509if dissector could crash. (Bug 5754, Bug 5793)
      Versions affected: 1.2.0 to 1.2.15 and 1.4.0 to 1.4.4.
    o Paul Makowski from SEI/CERT discovered that the DECT dissector
      could overflow a buffer. He verified that this could allow
      remote code execution on many platforms.
      Versions affected: 1.4.0 to 1.4.4.
    The following bugs have been fixed:
    o Export HTTP > All - System Appears Hung (but isn't). (Bug 1671)
    o Some HTTP responses don't decode with TCP reassembly on. (Bug 3785)
    o Wireshark crashes when cancelling a large sort operation. (Bug 5189)
    o Wireshark crashes if SSL preferences RSA key is actually a DSA key.
      (Bug 5662)
    o tshark incorrectly calculates TCP stream for some syn packets.
      (Bug 5743)
    o Wireshark not able to decode the PPP frame in a sflow
      (RFC3176) flow sample packet because Wireshark incorrectly
      read the protocol in PPP frame header. (Bug 5746)
    o Mysql protocol dissector: all fields should be little endian.
      (Bug 5759)
    o Error when opening snoop from Juniper SSG-140. (Bug 5762)
    o svnversion: command not found. (Bug 5798)
    o capinfos: #ifdef HAVE_LIBGCRYPT block includes a line too
      many. (Bug 5803)
    o Value of TCP segment data cannot be copied. (Bug 5811)
    o proto_field_is_referenced() is not exported in
      libwireshark.dll. (Bug 5816)
    o Wireshark ver. 1.4.4 not displayed "Granted QoS" field in a
      A11 packet. (Bug 5822)
  - Updated Protocol Support
    HTTP, LDAP, MySQL, NFS, sFlow, SSL, TCP

  To generate a diff of this commit:
  cvs rdiff -u -r1.60 -r1.61 pkgsrc/net/wireshark/Makefile
  cvs rdiff -u -r1.42 -r1.43 pkgsrc/net/wireshark/distinfo

(spz)

2011-04-16 21:27:47 UTC pkgsrc-2011Q1 commitmail json YAML

Pullup ticket #3412 - requested by tron
pkgtools/rpm2pkg: build fix

Revisions pulled up:
- pkgtools/rpm2pkg/Makefile                                    1.58
- pkgtools/rpm2pkg/files/rpm2pkg.c                              1.21

---------------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: tron
  Date: Tue Apr 12 22:12:42 UTC 2011

  Modified Files:
  pkgsrc/pkgtools/rpm2pkg: Makefile
  pkgsrc/pkgtools/rpm2pkg/files: rpm2pkg.c

  Log Message:
  Update "rpm2pkg" package to version 3.2.2:
  - Remove unused CheckSymLinks() function to fix build problems under
    DragonFly BSD.

  This fixes PR pkg/44862 by Francois Tigeot.

  To generate a diff of this commit:
  cvs rdiff -u -r1.57 -r1.58 pkgsrc/pkgtools/rpm2pkg/Makefile
  cvs rdiff -u -r1.20 -r1.21 pkgsrc/pkgtools/rpm2pkg/files/rpm2pkg.c

(spz)

2011-04-16 21:27:34 UTC pkgsrc-2011Q1 commitmail json YAML

Pullup ticket #3410 - requested by wiz
emulators/vice: build fix for NetBSD 5

Revisions pulled up:
- emulators/vice/DESCR                                          1.2
- emulators/vice/Makefile                                      1.89-1.90
- emulators/vice/PLIST                                          1.23
- emulators/vice/PLIST.sdl                                      1.1
- emulators/vice/PLIST.x11                                      1.1
- emulators/vice/distinfo                                      1.38
- emulators/vice/options.mk                                    1.6
- emulators/vice/patches/patch-aa                              1.11
- emulators/vice/patches/patch-ab                              1.11
- emulators/vice/patches/patch-ac                              deleted
- emulators/vice/patches/patch-ad                              deleted

-----------------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: wiz
  Date: Mon Apr  4 13:42:08 UTC 2011

  Modified Files:
  pkgsrc/emulators/vice: DESCR Makefile PLIST distinfo options.mk
  pkgsrc/emulators/vice/patches: patch-aa patch-ab
  Added Files:
  pkgsrc/emulators/vice: PLIST.sdl PLIST.x11
  Removed Files:
  pkgsrc/emulators/vice/patches: patch-ac patch-ad

  Log Message:
  Update to 2.3, provided by Olaf 'Rhialto' Seibert in PR 44820, with a
  slight fix.

  * Changes in VICE 2.3
  ======================

  ** General
  ----------

  - Added x64sc, the accurate C64 emulator:

    * VIC-II emulation rewritten from scratch using results from extensive
      testing with newly written test programs on real hardware.

    * Emulation is done on a cycle by cycle basis combined with pixel exact
      dot clock domain handling.

    * Accurate handling of all possible in-line splits of VIC-II registers
      and graphics data.

    * C64 model and even individual chip revisions can be selected for very
      detailed emulation of their differences.

    * Equally accurate PAL, NTSC and PAL-N emulation.

    We believe x64sc is one of the most accurate C64 emulators at the
    moment.

  - Drive improvements, including weak bit emulation.

  - Major reSID overhaul:

    * Emulation of all known pipeline delays for full cycle accuracy.
    * New shift register model based on revectorized die photograps.
    * Accurate DAC models based on revectorized die photograps.
    * Emulation of floating waveform DAC input for waveform 0.
    * Advanced 6581 transistor level filter model based on revectorized
      die photograps, yielding unprecedented accuracy.

  - CRT Emulation (former "PAL emulation") is now available regardless of
    video mode or -chip and works in all emulators.

    NOTE: Color gamma range changed. You may need to set to 2.200 manually.
    (ColorGamma=2200)

  - Added "True aspect ratio" option.

  - Sound buffer overflows reduced and the error replaced with a warning.

  - Various monitor improvements (io details, expansion port status ...)

  - Removed little used Emulator ID feature.

  - VIA wrap handling rewritten to fix problems with timer 2.

  - Added autostart option to do LOAD ,8 instead of ,8,1.

  - RESTORE key presses are now distributed randomly across a frame.

  - Improved accuracy of CIA interrupts. (6526/6526A selectable)

  ** C64/C128 changes
  -------------------

  - Cartridge emulation improvements. Many broken cartridges fixed, and the
    following ones added:

    * Action Replay 2
    * Action Replay 3
    * Capture
    * Diashow Maker
    * EXOS
    * Final Cartridge Plus
    * Freeze Frame
    * Freeze Machine
    * Game Killer
    * MACH 5
    * Magic Voice
    * MMC Replay
    * Prophet 64
    * Snapshot 64
    * Super Explode V5
    * Super Snapshot

  - Added emulation of the passthrough port of MMC64, Magic Voice and IEEE488
    cartridges.

  - CIA TOD 50/60 Hz toggle emulation fixed.

  - Improved 1351/paddles port MUX emulation.

  ** C64 changes
  --------------

  - Added Drean (PAL-N) emulation.

  - Fixed bug with autostart mode Inject-to-RAM.  It now writes to RAM under
    I/O correctly.

  ** C128 changes
  ---------------

  - Fixed a bug with autostarting t64 images.

  ** VIC20 changes
  ----------------

  - Added Vic Flash Plugin cartridge emulation.

  - Fixed video cache & reverse bug.

  - Fixed bug in attaching 4kB cartridges.

  - Fixed autostarting bug, mostly seen with tape images.

  ** PLUS4 changes
  ----------------

  - Fixed crashes in NTSC mode.

  - Added v364 speech emulation.

  ** PET changes
  --------------

  - Added DWW emulation.

  - Added userport DAC emulation.

  ** CBM2 changes
  ---------------

  - Split 5x0 and 6x0/7x0 settings in the configuration file.

  ** Unix changes
  ---------------

  - (Xaw) The menus can now be operated without holding the
    mouse button down. Keyboard control is also available
    (Shift-Alt-Z for left menu, Shift-Alt-X for right menu).

  - (Xaw) Lightpen/gun support added.

  - (GTK+) Fixed aspect ratio option added.

  ** SDL UI changes
  -----------------

  - Added vsid UI, FFMPEG and printer menus. The UI is complete.

  To generate a diff of this commit:
  cvs rdiff -u -r1.1 -r1.2 pkgsrc/emulators/vice/DESCR
  cvs rdiff -u -r1.88 -r1.89 pkgsrc/emulators/vice/Makefile
  cvs rdiff -u -r1.22 -r1.23 pkgsrc/emulators/vice/PLIST
  cvs rdiff -u -r0 -r1.1 pkgsrc/emulators/vice/PLIST.sdl \
      pkgsrc/emulators/vice/PLIST.x11
  cvs rdiff -u -r1.37 -r1.38 pkgsrc/emulators/vice/distinfo
  cvs rdiff -u -r1.5 -r1.6 pkgsrc/emulators/vice/options.mk
  cvs rdiff -u -r1.10 -r1.11 pkgsrc/emulators/vice/patches/patch-aa \
      pkgsrc/emulators/vice/patches/patch-ab
  cvs rdiff -u -r1.19 -r0 pkgsrc/emulators/vice/patches/patch-ac
  cvs rdiff -u -r1.14 -r0 pkgsrc/emulators/vice/patches/patch-ad

-----------------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: tron
  Date: Sat Apr 16 11:05:33 UTC 2011

  Modified Files:
  pkgsrc/emulators/vice: Makefile

  Log Message:
  Fix build problem under NetBSD/i386 current.

  To generate a diff of this commit:
  cvs rdiff -u -r1.89 -r1.90 pkgsrc/emulators/vice/Makefile

(spz)

2011-04-16 17:45:56 UTC MAIN commitmail json YAML

2011-04-16 17:45:17 UTC MAIN commitmail json YAML

Update to 1.0.4.  Changes:

- replaced graphics and removed logo (part of background now)
- don't save cards to current working directory
- fixed bad color key of logo
- fixed distortion for non-square icons
- i18n support

(shattered)

2011-04-16 17:44:08 UTC MAIN commitmail json YAML

Update to 1.0.4.  Changes:

- replaced graphics and removed logo (part of background now)
- don't save cards to current working directory
- fixed bad color key of logo
- fixed distortion for non-square icons
- i18n support

(shattered)

2011-04-16 16:14:27 UTC MAIN commitmail json YAML

2011-04-16 16:11:26 UTC MAIN commitmail json YAML

Updated lang/tinyscheme to 1.40

(asau)

2011-04-16 16:10:59 UTC MAIN commitmail json YAML

Update TinyScheme to version 1.40.
Changes are unknown (ChangeLog doesn't say anything since version 1.38).

(asau)

2011-04-16 14:51:51 UTC MAIN commitmail json YAML

Use correct python binary.

(roy)

2011-04-16 14:32:02 UTC MAIN commitmail json YAML

Note update of the "wireshark" package to version 1.4.5.

(tron)

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

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

Update "wireshark" package to version 1.4.5. Changes since 1.4.4:
- Bug Fixes
  The following vulnerabilities have been fixed. See the security
  advisory for details and a workaround.
  o The NFS dissector could crash on Windows. (Bug 5209)
    Versions affected: 1.4.0 to 1.4.4.
  o The X.509if dissector could crash. (Bug 5754, Bug 5793)
    Versions affected: 1.2.0 to 1.2.15 and 1.4.0 to 1.4.4.
  o Paul Makowski from SEI/CERT discovered that the DECT dissector
    could overflow a buffer. He verified that this could allow
    remote code execution on many platforms.
    Versions affected: 1.4.0 to 1.4.4.
  The following bugs have been fixed:
  o Export HTTP > All - System Appears Hung (but isn't). (Bug 1671)
  o Some HTTP responses don't decode with TCP reassembly on. (Bug 3785)
  o Wireshark crashes when cancelling a large sort operation. (Bug 5189)
  o Wireshark crashes if SSL preferences RSA key is actually a DSA key.
    (Bug 5662)
  o tshark incorrectly calculates TCP stream for some syn packets.
    (Bug 5743)
  o Wireshark not able to decode the PPP frame in a sflow
    (RFC3176) flow sample packet because Wireshark incorrectly
    read the protocol in PPP frame header. (Bug 5746)
  o Mysql protocol dissector: all fields should be little endian.
    (Bug 5759)
  o Error when opening snoop from Juniper SSG-140. (Bug 5762)
  o svnversion: command not found. (Bug 5798)
  o capinfos: #ifdef HAVE_LIBGCRYPT block includes a line too
    many. (Bug 5803)
  o Value of TCP segment data cannot be copied. (Bug 5811)
  o proto_field_is_referenced() is not exported in
    libwireshark.dll. (Bug 5816)
  o Wireshark ver. 1.4.4 not displayed "Granted QoS" field in a
    A11 packet. (Bug 5822)
- Updated Protocol Support
  HTTP, LDAP, MySQL, NFS, sFlow, SSL, TCP

(tron)

2011-04-16 13:27:59 UTC MAIN commitmail json YAML

python is needed by the configure script

(roy)

2011-04-16 11:34:09 UTC MAIN commitmail json YAML

+ blender-2.57, calibre-0.7.55, cdrtools-3.01a04, courier-0.66.1,
  fvwm-2.6.0, gtk3-3.0.9, multitail-5.2.8, nginx-1.0.0, opendkim-2.3.2,
  quagga-0.99.18, quvi-0.2.15, supertuxkart-0.7.1, wine-devel-1.3.18,
  wireshark-1.4.5, xf86-video-intel-2.15.0.

(wiz)

2011-04-16 11:16:34 UTC MAIN commitmail json YAML

move PKG_DESTDIR_SUPPORT and LICENSE to usual location.

(obache)

2011-04-16 11:14:31 UTC MAIN commitmail json YAML

Remove unwanted empty PKGREVISION.

(obache)

2011-04-16 11:06:02 UTC MAIN commitmail json YAML

Updated devel/gtl to 1.2.4

(obache)

2011-04-16 11:05:49 UTC MAIN commitmail json YAML

Update gtl to 1.2.4.
add user-destdir installation support.

* support gcc>=3.4 and bug fixes.
* switch to LICENSE=gnu-lgpl-v3.

(obache)

2011-04-16 11:05:33 UTC MAIN commitmail json YAML

Fix build problem under NetBSD/i386 current.

(tron)

2011-04-16 09:45:39 UTC pkgsrc-2011Q1 commitmail json YAML

2011-04-16 09:43:47 UTC pkgsrc-2011Q1 commitmail json YAML

Pullup ticket #3415 - requested by tez
security/mit-krb5: security patch

Revisions pulled up:
- security/mit-krb5/Makefile                                    1.52-1.53
- security/mit-krb5/buildlink3.mk                              1.11
- security/mit-krb5/builtin.mk                                  1.7
- security/mit-krb5/distinfo                                    1.28-1.29
- security/mit-krb5/patches/patch-ck                            1.1

---
  Module Name:    pkgsrc
  Committed By:  tez
  Date:          Fri Apr  8 17:30:35 UTC 2011

  Modified Files:
          pkgsrc/security/mit-krb5: builtin.mk

  Log Message:
  Add builtin support for SunOS per PR#44597

---
  Module Name:    pkgsrc
  Committed By:  tez
  Date:          Sat Apr  9 00:16:18 UTC 2011

  Modified Files:
          pkgsrc/security/mit-krb5: Makefile buildlink3.mk distinfo
  Added Files:
          pkgsrc/security/mit-krb5/patches: patch-ck

  Log Message:
  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)

---
  Module Name:    pkgsrc
  Committed By:  tez
  Date:          Thu Apr 14 19:37:26 UTC 2011

  Modified Files:
          pkgsrc/security/mit-krb5: Makefile distinfo

  Log Message:
  fix MITKRB5-SA-2011-004 (CVE-2011-0285) DOS in kadmind

(tron)

2011-04-16 09:41:19 UTC MAIN commitmail json YAML

Upstream announce message:
This release, in addition to being a bugfix release, also resolves a
number of security vulnerabilities.  It resolves CVE-2011-1685,
CVE-2011-1686, CVE-2011-1687, CVE-2011-1688, CVE-2011-1689, and
CVE-2011-1690.

* Cleanups identified by perlcritic.
* Clear the system attribute cache to avoid 'sticky' attributes like
  the queue subject tag.
* Fix our signature escaping so we better match FCKEditor and don't
  misidentify signatures during processing.
* Add the ability to create BasedOn Custom Fields from intiialdata
* Provide a callback to affect the display format in admin pages
* Fix id prefixing on Custom Fields to be RTIR compatible
* Fix #16656 - Requestors with OwnTicket could show up in the owner list
  in other Queues.
* Don't attach the original multipart mail to notifications that already
  contain one part of it.
* Work around CGI.pm 3.51 and 3.52 which add ; charse=ISO-8859-1 to our
  utf-8 encoded javascript.

(spz)

2011-04-16 07:47:00 UTC MAIN commitmail json YAML

* set LICENSE (gnu-gpl-v2 AND gnu-lgpl-v2).
* add user-destdir installation support.

(obache)

2011-04-16 04:36:17 UTC MAIN commitmail json YAML

Updated devel/p5-IO-Compress to 2.033nb1

(obache)