Commit graph

170792 commits

Author SHA1 Message Date
obache
f8a3caa4d5 fixes build on DragonFly BSD. 2011-04-24 13:51:52 +00:00
shattered
0483e5a79d Use @RCD_SCRIPTS_SHELL@ 2011-04-24 13:47:45 +00:00
shattered
907ee8811b Note pavucontrol update. 2011-04-24 13:44:56 +00:00
obache
74b7a4241a Bump PKGREVISION from gettext-lib shlib bump. 2011-04-24 13:30:07 +00:00
shattered
1c7f1a5b7e Update to 0.9.10. Changes:
- minor fixes
- translation updates
- allow configuring device ports
- allow configuring card profiles
2011-04-24 13:27:57 +00:00
asau
e3b9b1e36e The library uses m68k_sync_icache from libm68k on NetBSD/m68k.
Fix as proposed by <obache> in PR pkg/44901. Bump package revision.
2011-04-24 09:51:29 +00:00
adam
6e0bcf76e8 Updated archivers/lzo to 2.05 2011-04-23 21:47:57 +00:00
adam
118164043e 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.
2011-04-23 21:46:59 +00:00
jmmv
0363ad69be 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.
2011-04-23 21:26:40 +00:00
jmmv
d1d9827710 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.
2011-04-23 21:17:28 +00:00
hauke
b221861b8b Make sure <langinfo.h> actually provides CODESET before using it,
for the sake of old NetBSD releases.
2011-04-23 17:48:33 +00:00
tron
2c8f3e51cc Note update of "python25" package to version 2.5.5nb5. 2011-04-23 17:32:23 +00:00
tron
725652f2dc 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.
2011-04-23 17:31:40 +00:00
tron
d4b46a58ff Note update of the "teTeX3-bin" package to version 3.0nb48. 2011-04-23 17:30:26 +00:00
tron
423a031bbd 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.
2011-04-23 17:29:39 +00:00
gls
70aa7d3331 Updated sysutils/fabric to 1.0.1 2011-04-23 15:24:28 +00:00
gls
291b928044 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.
2011-04-23 15:23:53 +00:00
tron
2d1ca11512 Fix build with the latest version of Heimdal under NetBSD/current. 2011-04-23 12:49:38 +00:00
tron
55bd4eb45d Note update of the "python26" package to version 2.6.6nb9. 2011-04-23 10:42:21 +00:00
tron
d43ae9dd94 Note update of the "python27" package to version 2.7.1nb3. 2011-04-23 10:40:02 +00:00
tron
5d15900b8b 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.
2011-04-23 10:35:28 +00:00
obache
6eae17fa3f Updated lang/python24 to 2.4.6 2011-04-23 08:54:13 +00:00
obache
65fabcc454 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.
2011-04-23 08:53:53 +00:00
obache
ddf23c01e7 more replace interpreter. 2011-04-23 08:09:43 +00:00
obache
0a0802065d remove tail enmty line. 2011-04-23 06:06:30 +00:00
obache
e942fcbed1 move extra buildlinks into the guard. 2011-04-23 06:04:37 +00:00
obache
f36fc77941 skip interpreter check for munin plugins.
(it should be into split package).
2011-04-23 04:12:50 +00:00
obache
bef9293041 more replace interpreter line. 2011-04-23 01:41:36 +00:00
joerg
e3bdadb95a Mark BROKEN, doesn't fetch. 2011-04-22 23:05:26 +00:00
obache
789a90690c reset PKGREVISION from base pkg update. 2011-04-22 22:58:18 +00:00
spz
a350dc6ae5 The startup file needed some updating, and the XYMONHOME path also wanted
fixing.
2011-04-22 20:36:49 +00:00
gls
24c85fa5bc Updated sysutils/capistrano to 2.5.21 2011-04-22 20:32:19 +00:00
gls
7eebfa4f75 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)
2011-04-22 20:31:49 +00:00
spz
84e4031c9e files/xymon.sh needed some more updating to the new version 2011-04-22 17:34:20 +00:00
spz
b79259d75a package update to 4.3.2:
contains a lot of filename cleanup work (no more bb and hobbit)
2011-04-22 15:37:02 +00:00
spz
fb727ecb24 package update to 4.3.2:
+ fixes cross-site scripting vulnerabilities (SA44036)
+ contains a lot of filename cleanup work (no more bb and hobbit)

please read upgrade-to-430.txt when upgrading from a previous pkg
(see also the install message)
2011-04-22 14:52:18 +00:00
obache
9ea3b36c23 recursive bump from gettext-lib shlib bump. 2011-04-22 14:40:40 +00:00
adam
aa4817d52c Updated databases/postgresql83 to 8.3.15 2011-04-22 13:53:53 +00:00
adam
6bafe872db 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
2011-04-22 13:50:38 +00:00
obache
1d9df3258a recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
adam
72f2ce92c4 Updated databases/postgresql84 to 8.4.8 2011-04-22 13:04:18 +00:00
adam
74905afddc 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
2011-04-22 13:01:30 +00:00
wiz
6051eb429d Stop maintaining amarok. 2011-04-22 10:09:35 +00:00
spz
e17a6f70d6 fix up paths on ftp.NetBSD.org:
- reading through the null mounts is deprecated
- writing through the null mounts is not allowed (not possible)
2011-04-22 09:03:52 +00:00
adam
2c35b05632 Added postgresql-license 2011-04-22 08:16:42 +00:00
adam
5f9ba02592 Updated databases/postgresql90 to 9.0.4 2011-04-22 08:14:10 +00:00
adam
0202e2e674 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
2011-04-22 08:10:23 +00:00
adam
ff6b98a0ec Added postgresql-license 2011-04-22 08:08:03 +00:00
adam
eaa87b2db4 Fix building with Clang; added LICENSE; pkglint clean-up 2011-04-22 07:27:45 +00:00
hans
238354a3d3 The pkg name is libaudiofile, so use that in buildlink3.mk. 2011-04-21 21:06:25 +00:00