summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-06-02Fix building with db5; revision bump for db4 updateadam19-133/+125
2010-06-02Changes 1.18:adam19-267/+55
See http://hg.vergenet.net/perdition/perdition/
2010-06-02Changes 0.0.10:adam5-21/+22
* Bug-fixes.
2010-06-02Changes 0.0.8:adam3-16/+15
* Don't include LGPL preamble in Debian changelog * Changes standards version to 3.8.3 * LT_CONFIG_LTDL_DIR appears to be incompatible with libtool 2 * update changelog * Resolve various libtoolize warnings * Use standards version 3.8.2 * Use debhelper 7 * Changelog entry for pending upstream release * Move libvanessa-adt-dev to section libdevel * Don't use ./mkinstalldirs as it may not exist * Use policy version 3.8.0 instead of 3.7.2 * set -e in postinst script for libvanessa-adt0 to fail on any errors * Use name instead of nickname * Always use email address in copyright notice * more...
2010-06-02Changes 0.0.8:adam4-29/+15
* Bump changelog date so it is after the release of standards version 3.8.3 * Don't include full LGPL text in Debian changelog * Update to standards version 3.8.3 * LT_CONFIG_LTDL_DIR appears to be incompatible with libtool 2 * move dev documentation should go in dev package * Use dh_prep as dh_clean -k is deprecated * Versioned build dependency on debhelper 7 * syntax error in changelog * Use debhelper compatibility level 7 * new package contains an updated config.{sub,guess} and thus closes #532527 * Update standards version to 3.8.2 * Resolve various libtoolize warnings * libvanessa-socket-dev: Remove dependancy on libc6-dev * more...
2010-06-02Changes 0.8.1:adam3-26/+26
* A new, more permissive license allows people to distribute versions of Mail Avenger that are linked with OpenSSL. * Some minor corrections to manual pages, thanks to Dererk. Changes 0.8.0: * Minor changes for compilation under gcc 4.3.0. * Fsync the destination directory and expliticly update its times when delivering a message to a maildir.
2010-06-02Changes 1.0:adam5-60/+69
* New compile option '-x'. This causes the compiler to produce an executable program. '-fmain' is deprecated. * Remove long option --verbose. Use '-v' for verbosity. Problem is with getopt_long_only which does not like eg. -mv * New conformity option -std=bs2000. * FUNCTION is implemented. See cobc/reserved.c for a list of what is implemented. * Nested programs are partially supported. * LINAGE is implemented. * EXTERNAL on FD is implemented. * SAME RECORD AREA is implemented. * New config variables - * Support for non-gcc compilers. * Large file support, system dynamic loading and Berkeley DB inclusion are default for the configure. * New configure option --with-patch-level=<n> * At run time, version checking is done. ie. When executing/loading Cobol programs, the version (eg. 0.33) and the patch level (eg. 0) are checked against the OC library version/patch level. * Libtool is not required for systems that support native dynamic loading. This includes Linux, Cygwin and MingW amongst others. * Note to developers : See README for required software versions.
2010-06-02Fix building with db5; revision bump for db4 update; clean-upadam6-30/+37
2010-06-02Changes 1.4.6:adam4-12/+47
* OS X: fixed TM configuration tab to show languages list * fixed bug introduced in 1.4.3 that caused "Update from POT file" to clear metadata in catalog header * added Kazakh translation Changes 1.4.5: * OS X: fixed Find to actually show hits in text control * OS X: fixed "Check for updates" preference broken by 1.4.4 Changes 1.4.4: * sort catalogs in the manager alphabetically * fixed escaping of quotes in catalog headers * fixed reformatting of obsolete entries in catalogs * fixed list selection visibility on Windows 7 * Windows: automatically check for available updates Changes 1.4.3: * Unix: fixed crash with Zemberek spell-checker backend installed * fixed parsing of catalogs produced with xgettext --indent * fixed TM updating broken in 1.3.5 * support GNOME's xml2po file references * fixed handling of "%" in filenames * added more translations:
2010-06-02Fix building with db5; revision bump for db4 update; clean-upadam1-27/+25
2010-06-02Fix building with db5; revision bump for db4 updateadam1-1/+2
2010-06-02Fix building with db5; revision bump for db4 updateadam5-7/+164
2010-06-02Fix buildling with db5; revbump for db4 updateadam3-29/+9
2010-06-02Changes 5.0.0:adam4-17/+29
* Support for Berkeley DB 5.0. * Drop support for Python 3.0. * Now you can use TMPDIR env variable to override default test directory ("/tmp"). * Versioning of C API. If you use the code from C, please check the bsddb_api->api_version number against PYBSDDB_API_VERSION macro. * In C code, the bsddb_api->dbsequence_type component is always available, even if the Berkeley DB version used doesn't support sequences. In that case, the component will be NULL. * In C code, "DBSequenceObject_Check()" macro always exists, even if the Berkeley DB version used doesn't suport sequences. In that case, the test macro always returns "false". * For a long time, the API has been accesible via C using "_bsddb.api" or "_pybsddb.api". If you are using Python >=2.7, you acquire access to that API via the new Capsule protocol (see "bsddb.h"). If you use the C API and upgrade to Python 2.7 and up, you must update the access code (see "bsddb.h"). The Capsule protocol is not supported in Python 3.0, but pybsddb 5.0.x doesn't support Python 3.0 anymore. * Capsule support was buggy. The string passed in to PyCapsule_New() must outlive the capsule. * Solve an "Overflow" warning in the testsuite running under python 2.3. * When doing a complete full-matrix test, any warning will be considered an error.
2010-06-02Fix buildling with db5; revbump for db4 update; clean-upadam4-38/+26
2010-06-02Fix buildling with db5; revbump for db4 updateadam2-5/+13
2010-06-02Added databases/db5 version 5.0.21adam3-8/+9
2010-06-02Berkeley DB is an embeddable database system that supports keyed access toadam9-0/+5353
data. The software is distributed in source code form, and developers can compile and link the source code into a single library for inclusion directly in their applications. Developers may choose to store data in any of several different storage structures to satisfy the requirements of a particular application. In database terminology, these storage structures and the code that operates on them are called access methods. The library includes support for the following access methods: * B+tree: Stores keys in sorted order, using either a programmer-supplied ordering function or a default function that does lexicographical ordering of keys. Applications may perform equality or range searches. * Hashing: Stores records in a hash table for fast searches based on strict equality. Extended Linear Hashing modifies the hash function used by the table as new records are inserted, in order to keep buckets underfull in the steady state. * Fixed and Variable-Length Records: Stores fixed- or variable-length records in sequential order. Record numbers may be immutable or mutable, i.e., permitting new records to be inserted between existing records or requiring that new records be added only at the end of the database.
2010-06-02Changes 4.8.30:adam10-1432/+3767
* The log file format changed in 11gR2. * Replication Manager sites can specify one or more possible client-to-client peers. * Added resource management feature in all Berkeley DB APIs to automatically manage cursor and database handles by closing them when they are not required, if they are not yet closed. * Added a SQL interface to the Berkeley DB library. The interface is based on - and a drop-in-replacement for - the SQLite API. It can be accessed via a command line utility, a C API, or existing APIs built for SQLite. * Added hash databases support to the DB->compact interface. * Renamed the "db_sql" utility to "db_sql_codegen". This utility is not built by default. To build this utility, enter --enable-sql_codegen as an argument to configure. * Added transactional support in db_sql_codegen utility. Specify TRANSACTIONAL or NONTRANSACTIONAL in hint comments in SQL statement, db_sql_codegen enable/disable transaction in generated code accordingly. * Added the feature read-your-writes consistency that allows client application to check, or wait for a specific transaction to be replicated from the master before reading database. * Added DB log verification feature, accessible via the API and a new utility. This feature can help debugging and analysis. * Added support for applications to assign master/client role explicitly at any time. Replication Manager can now be configured not to initiate elections. * more...
2010-06-02KDE SC 4.4.4 updatemarkd1-1/+27
2010-06-02Update to KDE SC 4.4.4markd37-353/+249
* Several bugs in filename sorting in the Dolphin file manager have been fixed * Issues with encoded filenames in ZIP archives have been fixed * A number of bugs in games, such as KMines, KNetwalk and LSkat and KSpaceDuel have been fixed The changelog lists more
2010-06-02Updated graphics/clutter-gtk to 0.10.4obache2-3/+3
2010-06-02Update clutter-gtk to 0.10.4.obache2-11/+8
Clutter-GTK 0.10.4 18/03/2010 ================================== * Depend on gtk+ >= 2.19.5 * Depend on clutter >= 1.2.0 * Fix introspection annotations for GtkClutterEmbed, GtkClutterScrollable and GtkClutterZoomable * Do no use deprecated gtk+ API * Documentation fixes
2010-06-02Try to fix PLIST other than *BSD.obache15-2/+41
2010-06-02Updated devel/doxygen to 1.6.3adam2-3/+3
2010-06-02Changes 1.6.3:adam3-13/+15
* Bug fixes.
2010-06-01Add gns3markd2-2/+4
2010-06-01Fix COMMENT.markd1-2/+2
2010-06-01Initial import gns3 0.7markd4-0/+436
GNS3 is a graphical network simulator that allows you to design complex network topologies. You may run simulations or configure devices ranging from simple workstations to powerful Cisco routers. It is based on Dynamips, an IOS emulator which allows users to run IOS binary images from Cisco Systems and Pemu, an PIX firewall emulator based on Qemu.
2010-06-01Add a pulseaudio option and patch so that cmake doesn't try to buildmarkd5-5/+42
pulseaudio plugin unless option selected. Option off by default so no change to default package build. Fixes build if you happen to have pulseaudio package installed when building.
2010-06-01Note update of emacs{,-nox11}.minskim1-1/+3
2010-06-01Sync emacs-nox11 with emacs.minskim1-2/+1
2010-06-01Update emacs to 23.2.minskim12-143/+506
Patches were provided by Makoto Fujiwara in PR 43335. Excerpt from the announcement: In addition to a large number of bugfixes, Emacs 23.2 includes several new packages, such as the CEDET suite of development tools (including Semantic, a set of libraries and utilities for parsing source code, and EDE, a package for managing code projects), and a new mode for editing Javascript. The default mail composition mode is now Message mode, which provides features such as MIME handling. Many other part of Emacs have also been improved. For a more complete list of changes, see the file etc/NEWS.
2010-06-01Added kdevplatform and kdevelop4markd2-3/+4
2010-06-01Add kdevelop4 and kdevplatformmarkd1-1/+3
2010-06-01Initial import of kdevelop 4.0.0markd4-0/+389
The KDevelop IDE has been designed by the KDevelop Team to provide an easy-to use environment for C/C++ programmers. With all its features the current version contains, the full amount of programming knowledge of the team has been collected to add a set of documentation handbooks that will help beginners as well as experts in various parts of using their IDE. This is version 4, a completely rewritten from scratch version of KDevelop 3.
2010-06-01Initial import of kdevplatform 1.0.0markd5-0/+811
Base package for use with KDevelop4
2010-06-01Works fine with python2.6 too.bouyer1-2/+2
2010-06-01py-sphinx update.markd2-3/+3
2010-06-01Update to Sphinx-0.6.6markd3-7/+10
many bug fixes.
2010-06-01Mention update of shells/lshell to 0.9.12gls1-1/+2
2010-06-01Update lshell to 0.9.12.gls2-7/+7
pkgsrc changes: - Add license Upstream changes: === v0.9.12 04/05/2010 === * A minor bug was inserted in version 0.9.11 with the sudo command. It has been corrected in this version. === v0.9.11 27/04/2010 === * Corrects traceback when executing a command that had a python homonym (e.g. "print foo" or "set"). (Closes: SF#2969631) * Corrected completion error when using "~/". Thanks to Piotr Minkina for reporting this. * Corrected the get_aliases function. * Corrected interpretation of ~user. Thank you Adrien Urban for reporting this. * The 'home_path' variable is being deprecated from this version and on. Please use your system's tools to set a user's home directory. It will be completely removed in the next version of lshell. * Corrected shell variable and wildcards expansions when checking a command. Thank you Adrien Urban for reporting this. * Added possibility to allow/forbid scp upload/download using scp_upload and scp_download variables. * Corrected bug when using the "command=" in openSSH's authorized_keys. lshell now takes into account the SSH_ORIGINAL_COMMAND environment variable. Thank you Jason Heiss for reporting this. * Corrected traceback when aliases is not defined in configuration, and command is sent over SSH. Thank you Jason Heiss for reporting this.
2010-06-01fix 2 build errors:drochner3-1/+29
-inconsistency of .hidden attributes, leading to link error on amd64, reported by Tobias Nygren -trick NetBSD's arpa/nameser_compat.h into using the system provided endianess definitions -- it has its own ifdefs but misses eg. ppc, fixes build error on macppc reported by Erik Bertelsen
2010-06-01+openssl-0.9.8otaca1-1/+2
2010-06-01+openssl-1.0.0ataca1-2/+2
2010-06-01remove stray && in previoustnn1-2/+2
2010-06-01needs zlib (PR pkg/43397)tnn1-3/+3
While here, fix test target.
2010-06-01add "bash" to USE_TOOLS, needed because we have CONFIG_SHELL=bash,drochner1-2/+3
add a commant why the latter is done noticed by Greg Oster
2010-06-01Updated x11/xkeyboard-config to 1.9.ghen2-3/+3
2010-06-01Update xkeyboard-config to 1.9 (two years worth of updates/fixes/...).ghen6-63/+57
Pkgsrc patches (bashisms) have been included upstream.