Commit graph

3226 commits

Author SHA1 Message Date
adrianp
9f149b64de Update to 4.96a
Works with both php4 and php5.
Postgresql driver's ServerInfo() function now works properly.
Added a new session handler, in adodb-session2.php.
ADODB_ACTIVE_RECORD, added find() method, and new constructor method
ODBC_DB2 driver now works properly
New BindDate() and BindTimeStamp() functions in connection object
New SetTransactionMode()
2007-11-25 17:53:23 +00:00
obache
a467ab841e Enable or optionify some handlers, should fixes PR 37255.
Enable cdb, inifile.
Enable ndbm if exists.
Optionify gdbm, enable default if ndbm doesn't exists.
Optionify bdb.

Bump PKGREVISION.
2007-11-23 12:34:29 +00:00
dsainty
9b3751e63e The official site HTTP download URL has changed, catch up to it. 2007-11-23 08:38:05 +00:00
martti
15baf22906 Replace my patch-aa with patch-aa and patch-ab received from the author. 2007-11-21 07:50:14 +00:00
martti
55b0d19ea0 rrdtool-1.2.26 2007-11-20 11:58:19 +00:00
martti
7c5784353c Updated databases/rrdtool to 1.2.26
* Bug fixes
2007-11-20 11:57:59 +00:00
rillig
dfccb7888c The self-test requires the package to be installed, and this is not the
case with the standard do-test target.
2007-11-19 23:10:18 +00:00
ghen
4433acbb38 Remove patch-aq which is included in openldap-2.3.39. 2007-11-18 21:45:11 +00:00
ghen
171865096d Update openldap packages to 2.3.38, the latest stable release.
The next stable release will be 2.4.x.

OpenLDAP 2.3.39 Release (2007/10/26)
	Fixed slapd database/overlay config conflict (ITS#4848)
	Fixed slapd password_hash config order (ITS#5082)
	Fixed slapd slap_mods_check bug (ITS#5119)
	Fixed slapd ACL sets memory handling (ITS#4860,ITS#4873)
	Fixed slapd ordered values add normalization issue (ITS#5136)
	Fixed slapd-bdb DB_CONFIG conversion bug (ITS#5118)
	Fixed slapd-ldap search control parsing (ITS#5138)
	Fixed slapd-ldap SASL idassert w/o authcId
	Fixed slapd-ldif directory separators in DN (ITS#5172)
	Fixed slapd-meta conn caching on bind failure (ITS#5154)
	Fixed slapd-meta bind timeout assertion (ITS#5185)
	Fixed slapd-sql concurrency issue (ITS#5095)
	Fixed slapo-chain double-free (ITS#5137)
	Fixed slapo-pcache and -rwm interaction fix (ITS#4991)
	Fixed slapo-pcache non-null terminated array crasher (ITS#5163)
	Fixed slapo-rwm modlist handling (ITS#5124)
	Fixed slapo-rwm UUID in filter (ITS#5168)
	Fixed sasl SASL_SSF_EXTERNAL type (ITS#3864)
	Fixed liblber Windows x64 portability (ITS#5105)
	Fixed libldap ppolicy control creation (ITS#5103)
	Build Environment
		Fixed termios macro check (ITS#4880)
		Updated Makefiles
	Documentation
		Fixed slapd-bdb(5) note about dbconfig directives (ITS#5134)
		Added slapd-sql(5) empty oc mapping workaround (ITS#4785)
		Added max-depth/return-error to slapo-chain(5)
		slapadd/slapindex note about file ownership (ITS#5166)
		slapcat note about using against running slapd (ITS#5028)
		Fixed Admin Guide URL in README (ITS#5107)
2007-11-18 19:46:15 +00:00
rillig
105dd4b97c Some packages need lex and yacc. Patch by Aleksey Cheusov via
pkgsrc-users.
2007-11-17 12:04:11 +00:00
obache
44e031aba1 Update qdbm to 1.8.77.
Changes:
2007-10-18  Mikio Hirabayashi  <mikio@users.sourceforge.net>

	- A potential defect related to leaf division of B+ tree was cleared.
	- Release: 1.8.77
2007-11-16 11:50:45 +00:00
rillig
83dd6f1fba The new thread-safe feature doesn't really work: The py-sqlite2
self-test fails with a segmentation fault.
2007-11-15 14:11:53 +00:00
rillig
8e04945df1 Updated sqlite to 3.5.2. The main reason to update was that on Solaris,
the file lemon.c uses the same identifiers (B_TRUE, B_FALSE) as the
<sys/types.h> header, and therefore fails to build.

Changes since 3.4.2:

   2007 Nov 05 (3.5.2)

     * Dropped support for the SQLITE_OMIT_MEMORY_ALLOCATION compile-time
       option.
     * Always open files using FILE_FLAG_RANDOM_ACCESS under windows.
     * The 3rd parameter of the built-in SUBSTR() function is now
       optional.
     * Bug fix: do not invoke the authorizer when reparsing the schema
       after a schema change.
     * Added the experimental malloc-free memory allocator in mem3.c.
     * Virtual machine stores 64-bit integer and floating point constants
       in binary instead of text for a performance boost.
     * Fix a race condition in test_async.c.
     * Added the ".timer" command to the CLI

   2007 Oct 04 (3.5.1)

     * Nota Bene: We are not using terms "alpha" or "beta" on this release
       because the code is stable and because if we use those terms,
       nobody will upgrade. However, we still reserve the right to make
       incompatible changes to the new VFS interface in future releases.
     * Fix a bug in the handling of SQLITE_FULL errors that could lead to
       database corruption. [11]Ticket #2686.
     * The test_async.c drive now does full file locking and works
       correctly when used simultaneously by multiple processes on the
       same database.
     * The CLI ignores whitespace (including comments) at the end of lines
     * Make sure the query optimizer checks dependences on all terms of a
       compound SELECT statement. [12]Ticket #2640.
     * Add demonstration code showing how to build a VFS for a raw mass
       storage without a filesystem.
     * Added an output buffer size parameter to the xGetTempname() method
       of the VFS layer.
     * Sticky SQLITE_FULL or SQLITE_IOERR errors in the pager are reset
       when a new transaction is started.

   2007 Sep 04 (3.5.0) alpha

     * Redesign the OS interface layer. See [13]34to35.html for details.
       *** Potentially incompatible change ***
     * The [14]sqlite3_release_memory(), [15]sqlite3_soft_heap_limit(),
       and [16]sqlite3_enable_shared_cache() interfaces now work cross all
       threads in the process, not just the single thread in which they
       are invoked. *** Potentially incompatible change ***
     * Added the [17]sqlite3_open_v2() interface.
     * Reimplemented the memory allocation subsystem and made it
       replacable at compile-time.
     * Created a new mutex subsystem and made it replacable at
       compile-time.
     * The same database connection may now be used simultaneously by
       separate threads.
2007-11-15 10:39:18 +00:00
tron
3c431479d2 Don't try to remove directory "share/phpmyadmin/css" because it isn't
created anymore. Pointed out by Geert Hendrickx.
2007-11-13 12:44:33 +00:00
cube
0fcb8b3a27 Revive patch-ap, sans -lcgi, so that RRDs.so build correctly again.
Ok martti@, PR#37374 by Petar Bogdanovic.
2007-11-13 01:58:42 +00:00
hiramatsu
8b32d507c0 Update p5-Ima-DBI to 0.35.
Changes from 0.33:
0.35 Sun Jun 10 16:36:07 EST 2007
                - Add checking of PID in database handles to prevent trouble
                  in forked environments (Perrin Harkins and Sam Tregar)

0.34 Mon Sep  5 09:10:37 UTC 2005
                - Remove Class::WhiteHole from PREREQs (Alexey Tourbin)
2007-11-12 22:37:12 +00:00
tron
cbb3db091e Update "phpmyadmin" package to version 2.11.2.1.
Change since version 2.10.2:
- creating VIEWs from query results
- managing triggers, procedures and functions
- supports MySQL 5.0.37 query profiling
- improved interface for servers hosting thousands of databases and tables.
- security fixes for PMASA-2007-5, PMASA-2007-6 and PMASA-2007-7
2007-11-12 14:05:26 +00:00
adrianp
158f4f9039 Update to 1.601
Added support for !Time and !Time~N to DBI::Profile Path. See docs.
Added extra trace info to connect_cached thanks to Walery Studennikov.
Added non-random (deterministic) mode to DBI_GOFER_RANDOM mechanism.
Added DBIXS_REVISION macro that drivers can use.
Added more docs for private_attribute_info() method.
Fixed DBI::ProfileData to not clobber $_, thanks to Alexey Tourbin.
Fixed DBI::SQL::Nano to not clobber $_, thanks to Alexey Tourbin.
Fixed DBI::PurePerl to return undef for ChildHandles if weaken not available.
Fixed DBD::Proxy disconnect error thanks to Philip Dye.
Fixed DBD::Gofer::Transport::Base bug (typo) in timeout code.
Fixed DBD::Proxy rows method thanks to Philip Dye.
Fixed dbiprof compile errors, thanks to Alexey Tourbin.
Fixed t/03handle.t to skip some tests if ChildHandles not available.CV

See http://search.cpan.org/~timb/DBI/Changes for all the details
2007-11-11 00:58:26 +00:00
agc
a011684f0f Add, but do not enable, cstore, due to its storage requirements. 2007-11-10 11:35:10 +00:00
agc
9ea820f008 Initial import of cstore-0.2, a "column store" relational database,
into the Packages Collection. This package is meant to support data
warehousing in a much more efficient manner than traditional RDBMSs.

	C-Store is a read-optimized relational DBMS that contrasts sharply
	with most current systems, which are write-optimized.  Among the many
	differences in its design are:

	+ storage of data by column rather than by row,

	+ careful coding and packing of objects into storage including main
	memory during query processing,

	+ storing an overlapping collection of column-oriented projections,
	rather than the current fare of tables and indexes,

	+ a non-traditional implementation of transactions which includes high
	availability and snapshot isolation for read-only transactions,

	+ and the extensive use of bitmap indexes to complement B-tree
	structures.

Please note that the storage required for this package could be viewed
as being quite extreme - the standard build and data occupies in excess
of 20 GB, and that is all installed into ${PREFIX} at installation
time.
2007-11-10 11:33:00 +00:00
hiramatsu
3122a56304 Update p5-DBIx-ContextualFetch to 1.03.
Changes from 1.01:

1.03 Mon Dec 27 2004
        - Revert to DBD::SQLite (rather than SQLite2) in tests
  - no warnings 'uninitialized'

1.02 Mon Dec 27 2004
        - Fix double execute bug in tests
2007-11-09 02:54:31 +00:00
ghen
5582ad2d8d Needs pkg-config to build. 2007-11-07 07:47:43 +00:00
rillig
c35e026080 Made an otherwise annoying error message helpful.
PKGREVISION++ because there are user-visible changes.
2007-11-03 18:53:11 +00:00
joerg
d2a582c8d7 Remove INCOMPAT_GETTEXT and the automatic rebuilding of the PO files.
This fixes the build on older NetBSD systems in a clean way.
2007-11-03 16:37:42 +00:00
adam
529d0ef47e Changes 0.34:
* Bug fixes
2007-11-02 11:54:57 +00:00
drochner
37ce6c1a6e update to 2.2.9, from Jeremy C. Reed per PM 2007-11-01 12:52:56 +00:00
martti
9fc7653761 Based on some feedback, comment out the newly added LICENSE=xxx for now.
I'll re-activate this later when the global license stuff is activated.
2007-10-30 19:31:38 +00:00
martti
2e8958a121 Added LICENSE=gnu-gpl-v2 2007-10-30 13:44:22 +00:00
adrianp
c2dd183680 1.14
- Updated to SQLite 3.4.2
- Switch to sqlite3_prepare_v2 which fixes a number of bugs with re-using statements
- Fix bug with overflowing integers in user defined functions
- Fix bug when building under no-threads perl
2007-10-29 21:53:25 +00:00
minskim
1b0a0b9884 This package requires recent gettext-lib and the one included in NetBSD-3
is too old.  Add NetBSD-[123].* to INCOMPAT_GETTEXT so that it avoids
using built-in gettext-lib on those platforms.

This fixes PR pkg/37157.
2007-10-29 11:36:07 +00:00
joerg
7f03590014 Supports DESTDIR. 2007-10-28 15:31:23 +00:00
jlam
ae9b935fd0 * If PLIST_SRC is explicitly set to an empty value in a package Makefile,
then automatically generate a PLIST that says "${PKGNAME} has no files".

* If PLIST_SRC and GENERATE_PLIST are not set in a package Makefile,
  and no PLIST files exist, then fail during the package build with
  PKG_FAIL_REASON.

* Remove "intentionally empty" PLISTs again.

Now, the easy way to say that a package installs no files is to just
add the following to the package Makefile:

	PLIST_SRC=	# empty
2007-10-25 22:00:39 +00:00
jlam
38c496d6c0 Re-add "intentionally empty" PLISTs for meta-packages and other packages
that directly manipulate empty PLISTs.

Modify plist/plist.mk so that if the PLIST files are missing and no
GENERATE_PLIST is defined, then the package fails to build.
2007-10-25 17:49:45 +00:00
jlam
56ba4d2690 Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk
can handle packages having no PLIST files.
2007-10-25 16:54:26 +00:00
joerg
4441b6a833 Supports DESTDIR. 2007-10-24 14:39:59 +00:00
dsainty
b52eaddf49 Patch a few bugs:
The default C++ precision of 6 digits is Very risky in a database context.

As with DATE fields, if a TIME field is unset (hour value 24+), output an
empty string.

Correctly terminate default string values on NUL.

Bump PKGREVISION.

Submitted upstream as: http://sourceforge.net/tracker/index.php?func=detail&aid=1817213&group_id=10524&atid=360524
2007-10-21 03:53:45 +00:00
hira
9bf5d904bf Regen for patch-aq. 2007-10-19 15:55:35 +00:00
taca
f59a84c495 Avoid c99 ism. 2007-10-19 03:45:07 +00:00
tnn
24d5b54409 Fix abusers of LOWER_OPSYS to check OPSYS or MACHINE_PLATFORM instead. 2007-10-16 23:48:58 +00:00
obache
0bf9beb8c8 Update qdbm to 1.8.76.
Changes:
2007-03-07

	- The hash function of on-memory map was optimized.
	- A bug related to large object was fixed.
	- Release: 1.8.76
2007-10-16 14:06:35 +00:00
minskim
8f8189e20a Update ruby-activerecord to 1.15.5.
Changes:
* Depend on Action Pack 1.4.4
* Fix #count on a has_many :through association so that it recognizes the
  :uniq option. Closes #8801 [lifofifo]
* Don't clobber includes passed to has_many.count [danger]
* Make sure has_many uses :include when counting [danger]
* Save associated records only if the association is already loaded.  #8713
* Changing the :default Date format doesn't break date quoting.  #6312
* Allow nil serialized attributes with a set class constraint. #7293
* belongs_to assignment creates a new proxy rather than modifying its target
  in-place.  #8412 [mmangino@elevatedrails.com]
* Fix column type detection while loading fixtures.  Closes #7987 [roderickvd]
* Document deep eager includes.  #6267 [Josh Susser, Dan Manges]
* Oracle: extract column length for CHAR also.  #7866 [ymendel]
* Small additions and fixes for ActiveRecord documentation.  Closes #7342
* SQLite: binary escaping works with $KCODE='u'.  #7862 [tsuka]
* Improved cloning performance by relying less on exception raising #8159
2007-10-16 03:05:38 +00:00
rillig
30f4f960a2 The file manual.chm is installed additionally, since it is much more
comfortable to browse than the GNU info file.

PKGREVISION++
2007-10-14 17:43:33 +00:00
rillig
e68d266276 Works for me. 2007-10-13 20:59:49 +00:00
rillig
2ebf77daa8 The mysql.info file is not rebuilt anymore, so it is safe to install the
documentation.

PKGREVISION++
2007-10-12 14:32:45 +00:00
ghen
8c4a061913 + ldapvi 2007-10-11 19:27:18 +00:00
ghen
5e8eb7c0a0 ldapvi is an interactive LDAP client for Unix terminals. Using it, you can
update LDAP entries with a text editor.  Think of it as vipw(1) for LDAP.
2007-10-11 19:26:39 +00:00
drochner
ab987aebe9 update to 0.22. Sorry, no changelog available. Will be needed by
gnome-2.20.
2007-10-11 18:56:16 +00:00
adam
25864f4b03 Fix for PR#36447. 2007-10-09 20:17:08 +00:00
hira
255c023e41 libglade2 -> libglade (comment). 2007-10-07 07:39:52 +00:00
heinz
5b9a430445 Dick Davies can no longer maintain those packages. (by private mail) 2007-10-03 14:45:41 +00:00