Commit graph

166246 commits

Author SHA1 Message Date
ahoka
57a7f29bb7 If we the battery 'remaining' propery is empty, try to calculate it
from discharge rate.

make the battery applet work with netbsd (again?)
2010-12-16 11:37:38 +00:00
ahoka
f2193dda2a dont divide by 3600, beacuse gnome power applet doesnt expect it like this
ok by jared
2010-12-16 11:34:51 +00:00
wiz
84096bce76 Updated archivers/gtar-base to 1.25nb3 2010-12-16 10:13:04 +00:00
wiz
24220c5c3e Add patch from upstream fixing test 39. Bump PKGREVISION. 2010-12-16 10:12:53 +00:00
enami
264de9ac32 Fix the location of SITE_ARCH_DIR. It was changed not to include
full gauche version in r6983 of sourceforge repository.
2010-12-16 06:58:20 +00:00
taca
1f94fbcfbc Add include of "../../libltdl/buildlink3.mk".
Fix build problem.
2010-12-16 06:56:29 +00:00
chuck
05918213e5 make 10.2 work on macosx (port wouldn't compile since it was upgraded
from 9.8 to 10.2).   the main issue is that macosx doesn't have the
clockid_t and clock_gettime() API.
2010-12-16 04:55:46 +00:00
taca
5c6aa1874f - horde-3.3.11
+ libgdata-0.7.0, libtorrent-0.12.7, mysql55-client-5.5.8,
  mysql55-server-5.5.8, resourceproto-1.1.1, rtorrent-0.8.7,
  xkbevd-1.1.2 [unpackaged]
2010-12-16 03:50:30 +00:00
taca
a9cff61883 Note update of databases/mysql51-client and databases/mysql51-server
package to 5.1.54.
2010-12-16 03:44:31 +00:00
asau
fe05f93b2f - gauche-0.9.1 2010-12-16 03:44:08 +00:00
asau
864782fb87 Updated lang/gauche to 0.9.1 2010-12-16 03:43:02 +00:00
taca
3931677dee Update mysql51-{client,server} package to 5.1.54.
Functionality added or changed:

* Support for the IBMDB2I storage engine has been removed. (Bug#58079)

* The pstack library was nonfunctional and has been removed, along with the
  --with-pstack option for configure. The --enable-pstack option for mysqld is
  deprecated and will be removed in MySQL 5.5. (Bug#57210)

Bugs fixed:

* Performance: InnoDB Storage Engine: Improved concurrency when several
  ANALYZE TABLE or SHOW TABLE STATUS statements are run simultaneously for
  InnoDB tables. (Bug#53046)

* InnoDB Storage Engine: For an InnoDB table created with
  ROW_FORMAT=COMPRESSED or ROW_FORMAT=DYNAMIC, a query using the READ
  UNCOMMITTED isolation level could cause the server to stop with an assertion
  error, if BLOB or other large columns that use off-page storage were being
  inserted at the same time. (Bug#57799)

* Partitioning: An INSERT ... ON DUPLICATE KEY UPDATE column = 0 statement on
  an AUTO_INCREMENT column caused the debug server to crash. (Bug#57890)

* Several compilation problems were fixed. (Bug#57992, Bug#57993, Bug#57994,
  Bug#57995, Bug#57996, Bug#57997, Bug#58057)

* Passing a string that was not null-terminated to UpdateXML() or
  ExtractValue() caused the server to fail with an assertion. (Bug#57279)

* Queries executed using the Index Merge access method and a temporary file
  could return incorrect results. (Bug#56862)

* The find_files() function used by SHOW statements performed redundant and
  unnecessary memory allocation. (Bug#51208)
2010-12-16 03:42:49 +00:00
asau
028433ae35 Update to Gauche 0.9.1
New in Gauche 0.9.1: Major Feature Enhancements

+ New Features
  o Extended formals: Built-in lambda, define etc. can
    recognize optional and keyword arguments, a la Common Lisp.
  o Enhanced module mechanism: Now you can rename, choose,
    or add prefix to the symbols when importing other modules.
  o Efficient record types: A new module gauche.record provides
    ERR5RS (srfi-99) compatible record types. It is also upper
    compatible to srfi-9 records.
  o More support for multithreaded applications: Thread-safe
    queue is added to util.queue, and thread-pool feature is
    provided by the new module control.thread-pool.
    Continuations can be passed between threads.
  o Partial continuations.
  o Enhanced Windows support.
  o New module: crypt.bcrypt: A module for Blowfish password hashing.
  o New module: srfi-98: portable environment variable lookup support.
  o New module: gauche.mop.propagate: Making object composition simpler.
  o New module: rfc.json: JSON parsing and construction.
+ Changes
  o The directory structure for Gauche installation has changed so
    that we can keep binary compatibility for the extension
    modules throughout 0.9.x releases.
  o Now it is an error to pass a keyword argument that isn't
    expected by the callee. It used to be a warning.
  o Regular expression re{,M} now means the same as re{0,M},
    which is compatible to Oniguruma.
+ Improvements
  o The compiler and the runtime got optimized more.
    The compiler now knows more about built-in procedures, and tries
    compile-time constant folding and/or inlining more aggressively.
    For example, sxml.ssax can parse XML document a lot faster.
  o ^ can be used in place of lambda, allowing more concise code.
    There's also convenience macros ^a, ^b, ... ^z and ^_ as
    abbreviations of lambda (a) etc.
  o ~ is added for universal accessing operator. (~ x y) is the same
    as (ref x y), and (~ x y z) is the same as (ref (ref x y) z),
    and so on. It can be used with generalized setter, e.g.
    (set! (~ array i) x).
  o define-syntax, let-syntax, and letrec-syntax are enhanced so that
    they can take a general expression in rhs, as far as it yields
    a syntactic transformer.
  o gauche.process: I/O redirection handling in run-process becomes
    more flexible.
  o rfc.http module now supports https connection (unix platforms only).
    Currently it relies on an external program (stunnel).
  o A new procedure current-load-path allows the program to know
    the file name it is being loaded from.
  o A new procedure .$ is introduced as an alternative name of compose.
  o Regular expressions now got read-write invariance. Some internal
    regexp routines are made public, giving users an easy way
    to construct and analyze regexp programatically.
  o rfc.822: New procedure: rfc822-date->date.
  o file.util: The procedure temporary-directory now became a parameter
    so that you can switch it when necessary. The default value is taken
    from (sys-tmpdir), which determines temporary directory in the
    recommended way of the platform; esp., it works on Windows native
    platforms. home-directory works on Windows, too.
    Procedures null-device and console-device are added to make it easier
    to write portable script across Unix and Windows platforms.
  o util.queue: New proceduers: any-in-queue, every-in-queue.
  o gauche.parseopt: When let-args encounters a command-line option
    that doesn't match any spec, it now raises a condition of type
    <parseopt-error> instead of <error>. The application can capture
    the condition to handle invalid command-line arguments.
  o gauche.uvector: New procedure uvector-size to obtain number of octets
    actually to be written out when the given uvector is written out
    by write-block.
  o dbm: A new procedure dbm-type->class allows an application to load
    appropriate dbm implementation at runtime. Utility scripts dbm/dump
    and dbm/restore are provided for easier backup and migration.
  o Procedure slot-pop! is added for the consistency with other
    *-push!/pop! API pairs.
  o When ref is used for object slot access, it can take default value
    in case the slot is unbound.
  o Made (set! (ref list k) value) work.
  o New procedures delete-keywords, delete-keywords!, tree-map-map,
    tree-map-for-each.
  o unwind-protect allows multiple handlers, as in CL.
  o sqrt now returns an exact number if the argument is exact and
    the result can be computed exactly. Also, R6RS's exact-integer-sqrt
    is added.
  o gauche.parameter: Parameters can be used with generalized set!.
  o The default-endian parameter is moved from binary.io module
    to the core, so that this parameter controls default endian
    of binary I/O in general. For example, read-block! and write-block
    of the gauche.uvector module now uses the value of this parameter
    as the default. A new procedure native-endian is added to retrieve
    the platform's native endianness.
  o More R6RS procedures: inexact, exact, real-valued?, rational-valued?,
    integer-valued?, div, mod, div0, mod0.

A number of bug fixes.
2010-12-16 03:42:08 +00:00
taca
ae55fb77a2 Note update of these packages:
* textproc/php-intl	1.1.2 (5.3.4.1.1.2 for php53 and 5.2.15.1.1.2 for php5)
* www/horde		3.3.11
2010-12-16 03:41:03 +00:00
taca
943a3524f1 Update horde pacakge to 3.3.11.
Fixing http://secunia.com/advisories/42355/.

-------
v3.3.11
-------

[mms] SECURITY: Fix XSS when viewing details of a vCard (Bug #9357).
[jan] Fix exporting recurrence exceptions to vCalendar 1.0.
[jan] Skip event status synchronization with Outlook, which is broken.
[jan] Don't send SIF data to recent Funambol clients, unless requested.
[jan] Log all queries and errors by the history library.
2010-12-16 03:38:32 +00:00
taca
7b10b82977 Update php-intl package to 1.1.2.
Changelog says only "* Bugfixes" but it is really fix CVE-2010-4409.
2010-12-16 03:37:28 +00:00
jmcneill
7f604cea76 Updated net/mDNSResponder to 214.3.2nb1 2010-12-15 22:34:25 +00:00
jmcneill
1ad4fa70c2 Fix 'intfMask != NULL' assertion on NetBSD when mdnsd encounters an IPv6
address; patch-ac changed the distribution source to not pull in
netinet/in_var.h on NetBSD but that is where SIOCGIFNETMASK_IN6 comes from
so bring it back in. Bump pkg revision.
2010-12-15 22:33:41 +00:00
wiz
0de5299562 Updated archivers/gtar-base to 1.25nb2 2010-12-15 22:16:36 +00:00
wiz
3eaa82badc Remove two patches: one disabled a test that however succeeds on
NetBSD-current and Solaris 10 (tested by tez@), the other one was
adding a --no-unlink-first option that was added because NetBSD's
version of tar had made --unlink-first default. Since this default
was changed quite some time ago and the option never was in upstream,
remove it.

Bump PKGREVISION.
2010-12-15 22:16:25 +00:00
riz
3a41b48a3e Explicitly pass "--cpu=i386" when MACHINE_ARCH is i386 in order for
this to build properly under Mac OS X "Snow Leopard" on a 64-bit host.
Fixes PR pkg/44191 by me.
2010-12-15 21:52:15 +00:00
heas
23a10ba0e9 Expand the information in the description and install message 2010-12-15 21:37:55 +00:00
chuck
431c4c7e8b fix shell syntax error in patch-aa and patch-ac. added missing double
quotes to this line:
   EXTRA_LIBS="-framework CoreFoundation -framework IOKit"
otherwise configure gives you this nice error (but keeps going):

    ./configure: line 3015: CoreFoundation: command not found
2010-12-15 21:08:30 +00:00
tez
4d6c186563 Fix bug in latest gtar that breaks amanda backups 2010-12-15 20:39:29 +00:00
tez
2d0b3521bc Fix bug with --one-file-system --listed-incremental (used by amanda)
per: http://www.mail-archive.com/bug-tar@gnu.org/msg03019.html

Pass FORCE_UNSAFE_CONFIGURE=1 in the configure env to allow
building of this package as root.
2010-12-15 20:37:38 +00:00
chuck
9ef80d9cd8 get rid of un-needed cppflags in optflags, as it causes the compile to
fail on macosx (complains about -isystem).
2010-12-15 19:08:21 +00:00
asau
b3b123d364 Updated sysutils/ipa to 2.0.8 2010-12-15 16:11:34 +00:00
asau
d241e32fa6 Update sysutils/ipa to version 2.0.8
Requested by package maintainer in PR pkg/44234

Changes in ipa-2.0.8:

    *	autoconf 2.62 -> 2.68, automake 1.10.1 -> 1.11.1.

    *	Time events in ipa.conf for +h, +D and +W could be incorrectly
	scheduled (plus one extra hour for +h and plus one extra day for
	+D and +W), corrected.

    *	If threshold's tm_from time and tm_updated time are equal and
	their month day is the last day in a month, then ipa incorrectly
	calculated previous threshold_time_width value during threshold's
	initialization.
2010-12-15 16:10:55 +00:00
abs
c3e9c684aa apply patches from Noud to fix PR/44222 kaffe halts on
BufferedReader.readLine (while building wip/jdk15)

KAFFE_BUGGY_NETBSD_SIGWAIT is only required in older NetBSD releases, and
in fact breaks NetBSD 5

Bump PKGREVISION

many thanks
2010-12-15 16:06:26 +00:00
gdt
333e68fa25 Updated geography/viking to 1.0.2 2010-12-15 13:35:11 +00:00
gdt
485f442ba3 Update to 1.0.2.
Viking 1.0.2 (2010-12-14)
Fixes since 1.0.1
* Add undeclared translations

Viking 1.0.1 (2010-12-04)
Fixes since 1.0
* Fix Waypoint & Track visibility issues.
* Fix SF#3104028: Default Color Background is incorrectly saved as black into a
new .vik file.
* Fix some translated strings
2010-12-15 13:34:57 +00:00
wiz
73fd47150b Updated games/gbrainy to 1.60 2010-12-15 13:31:59 +00:00
wiz
4996725e67 Update to 1.60:
Version 1.60
* Better I18N (string concatenation and plurals)
* 7 new logic games, 1 calculation and 16 verbal analogies
* PDF export support
* 14 bug fixes
* Updated and new translations
2010-12-15 13:31:46 +00:00
wiz
d694820c2e Updated misc/tellico to 2.3.2 2010-12-15 13:25:16 +00:00
wiz
c6a8460057 Update to 2.3.2:
The Tellico development team, namely me, is happy to announce that
version 2.3.2 is available from the download page. Tellico 2.3.2
includes several bug fixes, among them:

    * Fixed bug with list view settings not being saved between sessions (Bug 256373)
    * Fixed bug with updating groups for derived values (Bug 256374)
    * Made Nepomuk support optional
    * Added cover art support for MusicBrainz source
    * Fixed Google Scholar data source to properly fetch Bibtex
    * Fixed bug with FreeDB results not using track artists (Bug 258541)
    * Fixed bug with importing Bibtex file with keyword and keywords fields (Bug 258269)
    * Fixed sorting multiple numeric values in column view
    * Fixed sorting for numeric values in group view
    * Updated Allocine script to version 0.7.3 (Bug 258281)
    * Updated Bibtex importer to translate non-breaking spaces
2010-12-15 13:25:05 +00:00
wiz
d08273cd88 Updated devel/cppcheck to 1.46.1 2010-12-15 13:01:49 +00:00
wiz
746ec6cef0 Update to 1.46.1:
Release notes for 1.46

This release has improvements and bug fixes.

We fixed 153 tickets, and that is a somewhat "usual" number for a Cppcheck release.

The report has been improved. New severities were added to make the messages more informational. The possible severities are now:
 * error
 * warning
 * style
 * performance

This has no effect on the command line flags nor the xml report. The command line flags and the xml report is fully compatible with previous versions.

These are the new checks that were added:
 * detect dangerous usage of string::c_str()
 * warn for unused variable when only doing malloc/free
 * warn when assert has side effects
 * warn for mutual exclusion over ||. The condition is always false. Example: 'if (x != 1 || x != 4)'

More details about all the fixed tickets can be found here:
http://sourceforge.net/apps/trac/cppcheck/milestone/1.46


Release notes for 1.46.1

Fix segmentation fault.
2010-12-15 13:01:38 +00:00
wiz
d1f4530c44 + autogen-5.11.5, cherokee-1.0.14, ejabberd-2.1.6, etm-686,
fetchmail-6.3.19, gauche-0.9.1, gbrainy-1.60, ipa-2.0.8 [pkg/44234],
  modular-xorg-server-1.9.3, mpg123-1.13.0, veusz-1.10.
2010-12-15 11:46:23 +00:00
abs
1f562ab835 +x11/renderproto9 2010-12-15 11:39:04 +00:00
adam
d840831e20 Updated mail/pear-Mail_Mime to 1.8.1 2010-12-15 09:43:22 +00:00
adam
35135c1a7f Changes 1.8.1:
Bugs Fixed:
* Not possible to set separate charset for attachment content and headers
2010-12-15 09:42:28 +00:00
abs
89af56edf8 Use renderproto9 for X11_TYPE native and! BUILTIN_X11_VERSION.xorg 2010-12-15 09:33:13 +00:00
abs
bb6bdfd018 +renderproto9 2010-12-15 09:31:14 +00:00
abs
fc4d05cbab Added x11/renderproto9 version 0.9.3nb2
This provides the Render extension headers from modular X.org X11
project, for use in non modular X11 installs.
2010-12-15 09:29:34 +00:00
jnemeth
e55eb36155 Added comms/asterisk18 version 1.8.1 2010-12-15 03:31:00 +00:00
jnemeth
acb351a2e7 add and enable asterisk18 2010-12-15 03:27:39 +00:00
jnemeth
d505e2fd48 Import Asterisk 1.8.1:
Asterisk is a complete PBX in software.  It provides all of the
features you would expect from a PBX and more. Asterisk does voice
over IP in three protocols, and can interoperate with almost all
standards-based telephony equipment using relatively inexpensive
hardware.

Asterisk 1.8 is a long term support version (i.e. it will be
supported for four years with an additional year of security only
fixes).  See:

https://wiki.asterisk.org/wiki/display/AST/Asterisk+Versions

     What's new:

Asterisk 1.8 is the next major release series of Asterisk.

The release of Asterisk 1.8.0 would not have been possible without the support
and contributions of the community. Since Asterisk 1.6.2, we've had over 500
reporters, more than 300 testers and greater than 200 developers contributed to
this release.

You can find a summary of the work involved with the 1.8.0 release in the
sumary:

http://svn.asterisk.org/svn/asterisk/tags/1.8.0/asterisk-1.8.0-summary.txt

A short list of available features includes:

     * Secure RTP
     * IPv6 Support in the SIP channel driver
     * Connected Party Identification Support
     * Calendaring Integration
     * A new call logging system, Channel Event Logging (CEL)
     * Distributed Device State using Jabber/XMPP PubSub
     * Call Completion Supplementary Services support
     * Advice of Charge support
     * Much, much more!

A full list of new features can be found in the CHANGES file.

http://svn.digium.com/view/asterisk/branches/1.8/CHANGES?view=markup

For a full list of changes in the current release candidate, please see the
ChangeLog:

http://downloads.asterisk.org/pub/telephony/asterisk/ChangeLog-1.8.0

-----

The Asterisk Development Team has announced the release of Asterisk 1.8.1.

The release of Asterisk 1.8.1 resolves several issues reported by the
community and would have not been possible without your participation.
Thank you!

The following is a sample of the issues resolved in this release:

* Fix issue when using directmedia. Asterisk needs to limit the codecs offered
   to just the ones that both sides recognize, otherwise they may end up sending
   audio that the other side doesn't understand.
   (Closes issue #17403. Reported, patched by one47. Tested by one47, falves11)

* Resolve issue where Party A in an analog 3-way call would continue to hear
   ringback after party C answers.
   (Patched by rmudgett)

* Fix playback failure when using IAX with the timerfd module.
   (Closes issue #18110. Reported, tested by tpanton. Patched by jpeeler)

* Fix problem with qualify option packets for realtime peers never stopping.
   The option packets not only never stopped, but if a realtime peer was not in
   the peer list multiple options dialogs could accumulate over time.
   (Closes issue #16382. Reported by lftsy. Tested by zerohalo. Patched by
   jpeeler)

* Fix issue where it is possible to crash Asterisk by feeding the curl engine
   invalid data.
   (Closes issue #18161. Reported by wdoekes. Patched by tilghman)

For a full list of changes in this release, please see the ChangeLog:

http://downloads.asterisk.org/pub/telephony/asterisk/ChangeLog-1.8.1
2010-12-15 03:22:43 +00:00
chuck
0d333ffbf9 fix compiler warnings on macox (missing prototype for inet_ntoa and
account for strcpy being a macro).
2010-12-15 03:14:51 +00:00
chuck
5d80882b83 for darwin only, remove un-needed ld flag from configure.ac 2010-12-15 02:24:23 +00:00
asau
80b864ee8f Updated lang/sbcl to 1.0.45 2010-12-14 23:44:36 +00:00