Commit graph

3336 commits

Author SHA1 Message Date
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
hira
6cdb950b99 Fix comment (GConf2 -> GConf). 2007-09-25 10:54:09 +00:00
hira
8951aa3012 Back out previous. Pointed out by uebayasi@ and martti@. 2007-09-25 10:03:52 +00:00
hira
ebf8ba4a7d ln -> ${LN}. 2007-09-25 08:31:52 +00:00
wiz
3528e06345 Fix paths for GConf, libglade, libart, libsigc++, lablgtk moves.
Bump PKGREVISION.
2007-09-21 13:03:25 +00:00
jlam
686d16ef3d Fix name of adminpack loadable shared module.
Bump the PKGREVISION of postgresql82-adminpack to 1.
2007-09-20 21:58:21 +00:00
jlam
adf08d0b3f Handle the "contrib" directories using REQD_DIRS instead of @dirrm so
that it won't complain at pkg_delete-time if other "contrib" modules
are installed.

Bump the PKGREVISION to 1.
2007-09-20 21:31:20 +00:00
jlam
d24f34a9f7 Note, and and enable databases/postgresql82-adminpack. 2007-09-20 21:29:42 +00:00
jlam
47d9b7ff3b Initial import of databases/postgresql82-adminpack:
The ``adminpack'' PostgreSQL contrib module implements a number of
support functions which pgAdmin and other administration and management
tools can use to provide additional functionality if installed on a
server.
2007-09-20 21:28:28 +00:00
wiz
42825e73a6 Bump PKGREVISION for gnome-vfs rename. 2007-09-19 23:18:43 +00:00
wiz
e64b358b66 Use gnome-vfs instead of gnome-vfs2. 2007-09-19 23:13:12 +00:00
adam
901be59274 Changes 8.2.5:
* Prevent index corruption when a transaction inserts rows and then
  aborts close to the end of a concurrent "VACUUM" on the same table
* Fix ALTER DOMAIN ADD CONSTRAINT for cases involving domains over
  domains
* Make "CREATE DOMAIN ... DEFAULT NULL" work properly
* Fix some planner problems with outer joins, notably poor size
  estimation for t1 LEFT JOIN t2 WHERE t2.col IS NULL
* Allow the interval data type to accept input consisting only of
  milliseconds or microseconds
* Allow timezone name to appear before the year in timestamp input
* Fixes for GIN indexes used by "/contrib/tsearch2"
* Speed up rtree index insertion
* Fix excessive logging of SSL error messages
* Fix logging so that log messages are never interleaved when using
  the syslogger process
* Fix crash when log_min_error_statement logging runs out of memory
* Fix incorrect handling of some foreign-key corner cases
* Fix stddev_pop(numeric) and var_pop(numeric)
* Prevent "REINDEX" and "CLUSTER" from failing due to attempting to
  process temporary tables of other sessions
* Update the time zone database rules, particularly New Zealand's
  upcoming changes
* Windows socket and semaphore improvements
* Make "pg_ctl -w" work properly in Windows service mode
* Fix memory allocation bug when using MIT Kerberos on Windows
* Suppress timezone name (%Z) in log timestamps on Windows because of
  possible encoding mismatches
* Require non-superusers who use "/contrib/dblink" to use only
  password authentication, as a security measure
* Restrict "/contrib/pgstattuple" functions to superusers, for
  security reasons
* Do not let "/contrib/intarray" try to make its GIN opclass the
  default (this caused problems at dump/restore)
2007-09-19 20:02:12 +00:00
adam
60c7102866 Changes 8.1.10:
* Prevent index corruption when a transaction inserts rows and then
  aborts close to the end of a concurrent "VACUUM" on the same table
* Make "CREATE DOMAIN ... DEFAULT NULL" work properly
* Allow the interval data type to accept input consisting only of
  milliseconds or microseconds
* Speed up rtree index insertion
* Fix excessive logging of SSL error messages
* Fix logging so that log messages are never interleaved when using
  the syslogger process
* Fix crash when log_min_error_statement logging runs out of memory
* Fix incorrect handling of some foreign-key corner cases
* Prevent "REINDEX" and "CLUSTER" from failing due to attempting to
  process temporary tables of other sessions
* Update the time zone database rules, particularly New Zealand's
  upcoming changes
* Windows socket improvements
* Suppress timezone name (%Z) in log timestamps on Windows because of
  possible encoding mismatches
* Require non-superusers who use "/contrib/dblink" to use only
  password authentication, as a security measure
2007-09-19 20:01:58 +00:00
adam
eda17a8836 Changes 8.0.14:
* Prevent index corruption when a transaction inserts rows and then
  aborts close to the end of a concurrent "VACUUM" on the same table
* Make "CREATE DOMAIN ... DEFAULT NULL" work properly
* Fix excessive logging of SSL error messages
* Fix logging so that log messages are never interleaved when using
  the syslogger process
* Fix crash when log_min_error_statement logging runs out of memory
* Fix incorrect handling of some foreign-key corner cases
* Prevent "CLUSTER" from failing due to attempting to process
  temporary tables of other sessions
* Update the time zone database rules, particularly New Zealand's
  upcoming changes
* Windows socket improvements
* Suppress timezone name (%Z) in log timestamps on Windows because of
  possible encoding mismatches
* Require non-superusers who use "/contrib/dblink" to use only
  password authentication, as a security measure
2007-09-19 20:01:47 +00:00
wiz
00131d42d7 Update to 3.4.2:
While stress-testing the soft_heap_limit  feature, a bug that could
lead to database corruption was  discovered and fixed. Though the
consequences of this bug are severe, the chances of hitting it in
a typical application are remote. Upgrading is recommended only if
you use the sqlite3_soft_heap_limit  interface.
2007-09-15 09:17:43 +00:00
jdolecek
327246bc58 allow this package to build properly on Mac OS X as shared extension 2007-09-04 23:21:27 +00:00
ghen
20a5a1c683 Unset PKGREVISION after update. 2007-09-02 13:04:38 +00:00
ghen
79731cd6cb Update openldap packages to 2.3.38, the new stable release.
OpenLDAP 2.3.38 Release (2007/08/20)
	Fixed slapadd check for ';binary' when required (ITS#5071)
	Fixed slapd select_backend/ManageDSAit (ITS#4986)
	Fixed slapd integer/pointer types and overflow (ITS#5035)
	Fixed slapd AVA_Sort on multivalued RDNs (ITS#5057)
	Fixed slapd LDIF parsing error handling (ITS#5090)
	Fixed slapd syncrepl searchbase scope (ITS#5073)
	Fixed slapd-bdb missing index warning (ITS#5037)
	Fixed slapd-bdb Quick index for ID 0 (ITS#5052)
	Fixed slapd-bdb spurious empty DN warnings during add (ITS#5079)
	Fixed slapd-hdb slapacl behavior (ITS#5087)
	Fixed slapd-relay configuration (ITS#4322,ITS#4340)
	Fixed slapd-sql structuralObjectClass issue (ITS#5088)
	Fixed slapo-ppolicy double-free on shutdown (ITS#5094)
	Fixed slapo-rwm/slapd-meta dup attrs after mapping (ITS#5091)
	Fixed slapo-syncprov uninit'd vars (ITS#5048,#5049)
	Fixed libldap ldap_add_result_entry (ITS#5056)
	Added client tools support for ppolicy response (ITS#5061)
	Removed lint
	Build Environment
		Fixed macro definition of open() in glibc 2.6 (ITS#5075)
	Documentation
		aspell --lang=en_US -c <manpage> (ITS#5076)
		Debug messages cleaned up (ITS#5085)

OpenLDAP 2.3.37 Release (2007/07/20)
	Fixed slapd-glue/syncprov interaction (ITS#4623)
	Fixed slapd-ldap search reference crash (ITS#5025)
	Fixed slapd-ldbm crash on Compare op (ITS#5044)
	Fixed slapo-rwm searchFilter double free (ITS#5043)
	Clarified slapd-perl SampleLDAP.pm usage (ITS#4995)
	Documentation
		Fixed slapd.conf(5) for default loglevel (ITS#5027)

OpenLDAP 2.3.36 Release (2007/06/17)
	Fixed slapd error code on Windows (ITS#4945, #4606)
	Fixed slapd mutex bug after failed startup (ITS#4957)
	Fixed slapd sasl failed Bind bug (ITS#4954)
	Fixed slapd sasl ssf logging (ITS#5001)
	Fixed slapd tool op init (ITS#4911)
	Fixed slapd-bdb no-op crasher (ITS#4925)
	Fixed slapd-config olcLogLevel (ITS#4949)
	Fixed slapd-config olcModuleLoad replace (ITS#4921,ITS#4923)
	Fixed slapd-relay crash when no database can be selected (ITS#4958)
	Fixed slapo-chain RFC3062 passwd exop handling (ITS#4964)
	Fixed slapo-dynlist multiple group/url[/member] config (ITS#4989)
	Fixed slapo-pcache handling of abandoned Operations (#5015)
	Fixed slapo-pcache and -rwm interaction (ITS#4991)
	Fixed slapo-ppolicy pwdReset/pwdMinAge (ITS#4970)
	Fixed slapo-ppolicy control cleanup from ITS#4665
	Fixed slapo-syncprov cookie parsing error (ITS#4977)
	Fixed slapo-valsort crash on delete op (ITS#4966)
	Fixed liblber compilation problem (ITS#5007)
	Fixed libldap referral chasing loop (ITS#4955)
	Fixed libldap response code handling on rebind (ITS#4924)
	Fixed libldap SASL_MAX_BUFF_SIZE (ITS#4935)
	Fixed libldap cldap assert (ITS#4992)
	Fixed libldap_r thread debug issues (ITS#4972)
	Fixed liblutil reading passwd from pipe (ITS#4875)
	Fixed ldap client usage typo (ITS#4939)
	Build Environment
		Fixed --disable-overlays Makefile problem (ITS#4988)
		Fixed HP-UX socklen_t problem (ITS#4629)
	Documentation
		Updated ldapsearch(1) with details on -C option (ITS#5009)
		Updated slapadd(8) with details on -s option
		Fixed slapd.conf(5) for correct loglevel packets (ITS#5011)
		Fixed slapo-ppolicy(5) permanent pwdAccountLockedTime (ITS#4978)

OpenLDAP 2.3.35 Release (2007/04/09)
	Fixed ldapmodify to use correct memory free functions (ITS#4901)
	Fixed slapd acl set minor typo (ITS#4874)
	Fixed slapd entry consistency check in str2entry2 (ITS#4852)
	Fixed slapd ldapi:// credential issue (ITS#4893)
	Fixed slapd str2anlist handling of undefined attrs/OCs (ITS#4854)
	Fixed slapd syncrepl delta-sync modlist free (ITS#4904)
	Added slapd syncrepl retry logging (ITS#4915)
	Fixed slapd zero-length IA5string handling (ITS#4823)
	Fixed slapd-bdb/hdb startup with missing shm env (ITS#4851)
	Fixed slapd-ldap/meta consistency in referral proxying (ITS#4861)
	Fixed slapd-ldap bind cleanup in case of unauthorized idassert
	Fixed slapd-meta search cleanup
	Fixed slapd-meta/slapo-rwm filter mapping
	Fixed slapd-sql subtree shortcut (ITS#4856)
	Fixed slapo-dynlist crasher (ITS#4891)
	Fixed slapo-refint config message (ITS#4853)
	Fixed libldap time_t signedness (ITS#4872)
	Fixed libldap_r tpool reset (ITS#4855,#4899)
	Documentation
		Misc Doc fixes (ITS#4863, ITS#4877, ITS#4885, ITS#4897)

OpenLDAP 2.3.34 Release (2007/02/16)
	Fixed libldap missing get_option(TLS CipherSuite) (ITS#4815)
	Fixed ldapmodify printing error from ldap_result() (ITS#4812)
	Fixed slapadd LDIF parsing (ITS#4817)
	Fixed slapd libltdl link ordering (ITS#4830)
	Fixed slapd syncrepl memory leaks (ITS#4805)
	Fixed slapd dynacl/ACI compatibility with 2.1
	Fixed slapd-bdb/hdb be_entry_get with aliases/referrals (ITS#4810)
	Fixed slapd-ldap more response handling bugs (ITS#4782)
	Fixed slapd-ldap C-API code tests (ITS#4808)
	Fixed slapd-monitor NULL printf (ITS#4811)
	Fixed slapo-chain spurious additional info in response (ITS#4828)
	Fixed slapo-syncprov presence list (ITS#4813)
	Fixed slapo-syncprov contextCSN checkpoint again (ITS#4720)
	Added slapo-ppolicy cn=config support (ITS#4836)
	Added slapo-auditlog cn=config support
	Build environment
		Added Berkeley DB 4.5 detection
	Documentation
		Note slapo-dynlist interaction with manageDSAit (ITS#4831)

OpenLDAP 2.3.33 Release (2007/01/17)
	Fixed slapd syncrepl error logging with delta-syncrepl
	Fixed slapd-ldap/meta privileged conn caching (ITS#4547)
	Fixed slapd-ldap chase-referrals switch (ITS#4557)
	Fixed slapd-ldap bind behavior when idassert is always used (ITS#4781)
	Fixed slapd-ldap response handling bugs (ITS#4782)
	Fixed slapd-ldap idassert mode=self anonymous ops (ITS#4798)
	Fixed slapd-ldap/meta privileged connections handling (ITS#4791)
	Fixed slapd-meta retrying (ITS#4594, 4762)
	Fixed slapo-chain referral DN use (ITS#4776)
	Fixed slapo-dynlist dangling pointer after entry free (ITS#4801)
	Fixed libldap ldap_pvt_put_filter syntax checks (ITS#4648)
	Documentation
		Fixed reference to deprecated stmt in slapacl(8) (ITS#4803)
2007-09-02 13:02:36 +00:00
joerg
276f02ecaf Use RCD_SCRIPT_SRC instead of copying by hand. 2007-08-30 16:44:59 +00:00
joerg
5f3c07c1fa Fix bash scripts to actually use a normal Bourne shell. Bump revision. 2007-08-30 16:35:54 +00:00
joerg
ffea524354 Fix Perl reference. 2007-08-30 16:32:29 +00:00
gdt
40d9abad8d USE_TOOLS+= xgettext
This still fails on netbsd-3 because base gettext is too old.
2007-08-29 12:45:57 +00:00
tron
afbf90a7c6 Fix build problem caused by "smbk5pwd" support:
- Correct typo in "configure" so that "--enable-smbk5pwd" or
  "--disable-smbk5pwd" actually work.
- Explicitly add "--disable-smbk5pwd" to "CONFIGURE_ARGS" because this
  feature is turned on by default (which it really shouldn't be).

The "openldap-server" package can now be built with the default options.
2007-08-28 14:33:27 +00:00
tron
6d2b669809 Add RCS Ids. 2007-08-28 14:08:22 +00:00
heinz
0c0e8718fe The package supports installation to DESTDIR (although it uses the
variable INSTALL_ROOT).
2007-08-26 15:59:24 +00:00
manu
f3bf163ce3 Add smbk5pwd support (sync samba and kerberos passwords on password changes)
The smbk5pwd overlay is now static. It can be used like this:
overlay         smbk5pwd

To sync only the samba password, add this:
smbk5pwd-enable samba

See contrib/slapd-modules/smbk5pwd/README in openldap distribution for more
information
2007-08-24 19:06:50 +00:00
tron
0316d74b55 Add and enable "yap2lc" package. 2007-08-22 17:34:38 +00:00
tron
1aa6867bb1 Import new "yap2lc" package: Yet Another Passwd 2 LDIF Converter 2007-08-22 17:32:07 +00:00
drochner
e44754831d update to 2.3.5
changes:
-pysqlite is now easy_install-able
-misc bugfixes
-Allow the size parameter for fetchmany() for better DB-API compliance
-Allow a static build of pysqlite using the SQLite amalgamation
-improve concurrency
-Using mappings and sequences as parameters works now
-Performance optimizations
2007-08-13 17:37:58 +00:00
drochner
7bbce83b30 update to 3.4.1
This release fixes a bug in VACUUM that can lead to database
corruption. The bug was introduced in version 3.3.14. Upgrading is
recommended for all users. Also included are a slew of other more
routine enhancements and bug fixes.

pkgsrc note: 3 selftests are failing due to some loss of accuracy
in floating point calculations. The upstream fix is to disable the
selftests in question (see sqlite ticket #2570).
2007-08-13 17:27:30 +00:00
joerg
b00abf6b51 Fix build on systems without nbdm.h. Report from IRC. 2007-08-13 10:19:24 +00:00
rillig
6aecf48699 Added mk/misc/category.mk, which contains the definitions that are only
useful for category Makefiles, as opposed to bsd.pkg.subdir.mk, which is
also relevant for the top-level directory. Adjusted the category Makefiles.
2007-08-13 08:12:41 +00:00
drochner
e49e8802cb correctly use shadowLastChange as _days_ since the epoch, from Edgar Fuss
per PR pkg/36625
2007-08-10 17:14:40 +00:00
drochner
3206345680 fix PRINT_PLIST_AWK for future print-PLISTs 2007-08-09 19:07:38 +00:00
obache
63cce72c4c Update mergeant to 0.66.
For Release 0.66
----------------

 - Adaptations to Libgda and Libgnomedb's API changes
 - Better handling of transaction status when closing a workspace
 - Translations:
        - New 'sl' translation (Matic Zgur)
        - ca (Josep Puigdemont i Casamaj<C3><B3>)
        - dz (Pema Geyleg)
        - en_GB (David Lodge)
        - vi (Clytie Siddall)
2007-08-04 11:26:32 +00:00
obache
e5b4ad6784 Update libgnomedb to 3.0.0.
libgnomedb 3.0.0, 2007-04-23

 - fix libgnomedb versioning in gtk-docs (yselkowitz)
 - misc. bug fixes (Armin Burgmeier, Vivien Malerba)
 - Bug fixes: #422979, #423405 (Vivien Malerba)
 - Translations:
	- ca (Gil Forcada)
	- dz (Pema Geyleg)
	- lt (Gintautas Miliauskas)
	- ar (Djihed Afifi)

libgnomedb 2.99.6, 2007-03-23

 - Corrected linker errors when using C++ (Murray Cumming)
 - Spell corrections (Murray Cumming)
 - Code cleanups (Murray Cumming)
 - Data entry widgets improvements (Vivien Malerba)
 - Removed the C# bindings (Murray Cumming)
 - Always install the doc (Thomas Klausner)
 - Lots of minor corrections (Armin Burgmeier, Vivien Malerba, Murray Cumming)
 - Bug fixes: #419063, #390609 (Yselkowitz, Murray Cumming)
 - Translations:
	- new 'dz' translation (Pema Geyleg)
	- ca (Josep Puigdemont i Casamajó)
	- en_GB (David Lodge)
	- sv (Daniel Nylander)
	- vi (Clytie Siddall)

libgnomedb 2.99.5, 2007-02-12

- Updated for libgda 2.99.5.

libgnomedb 2.99.4, 2007-02-12

- The library is no split into separate libgnomedb, libgnomedb-extra, and libgnomedb-graph
  shared libraries. You must adjust your #include lines appropriately.
  Packagers might want to ensure that previously-installed headers are removed, if possible.
- GnomeDbRawForm:
  - Handle the new "reset" signal from the GdaDataProxy.
  - Don't show a data entry if gnome_db_data_widget_column_hide() has been called.
  (Vivien Malerba)
- GnomeDbBasicForm: Allow the "paramlist" property to be set more than once.
- GnomeDbDataWidget, GnomeDbRawGrid, GnomeDBRawForm: added an "iter_changed" signal.
  (Vivien Malerba)
- GnomeDbRawGrid:
  - Improved column title for parameters restricted by a data model.
  - Hide expander for parameters restricted by a data model.
  (Vivien Malerba)
- GnomeDbDataCellRendererCombo: Added a "show_expander" property.
  (Vivien Malerba)
- Use enum types instead of guint or gulong for flags, matching the
  conventions used in GTK+, and making the API clearer: GdaQuery, GdaObjectRef
  (Murray Cumming, Openismus)
- Use specific types for property and signal parameter registrations, and use specific signal marshallers.
  This should be more robust, and is needed by language bindings.
  (Murray Cumming, Openismus)
- Generate enum GType registrations for libgnomedb-extra.
  This is needed for language bindings and use of these enums in GValues.
- Improvements to _new() functions for language bindings, such as C++:
  GnomeDbSqlConsole, GnomeDbDbmsUpdateViewer,  GnomeDbErrorDialog, GnomeDbEditor,
  GnomeDbDataImport, GnomeDbLoginDialog, GnomeDbDsnSpec, GnomeDbGrid,
  GnomeDbDataSourceSelector, GnomeDbConnectionProperties,  GnomeDBForm.
  (ArminBurgmeir, Openismus)
  GnomeDbDataCellRendererBoolean, GnomeDbDataCellRendererCombo,
  GnomeDbDataCellRendererInfo, GnomeDbDataCellRendererTextual,
  GnomeDbDataEntryCombo
  (Johannes Schmid, Openismus)
- Adapt to latest glade3 API changes. (Vincent Geddes, bug #400836)
- Correct all remaining installation location conflicts with libgda 1.2.
  (Leonardo Boshell)
- Correct English spellings. (Kraii)


libgnomedb 2.99.3, 2007-01-27

- Build:
  - Now builds with GTK+ 2.8 as well as GTK+ 2.10.
    (Murray Cumming)
  - Now builds with glib 2.8 as well as glib 2.12.
    (Vivien Malerba)
  - Now builds without gconf, libgnomecanvas, or libgnomeui.
  - The graph API is now a separate shared library.
    (Vivien Malerba)
  - Use glade-3.1/3.2 instead of glade 3.0,
    if using glade at all.
    (Vivien Malerba)
  - Install gnome-db-plugin.h
    (Vivien Malerba)
  - Do not install private headers.
    (Murray Cumming)
  - Removed unused utility functions.
    (Bug #383533, Min Sik Kim)
  - Windows (win32) build improvements.
    (Bug #321663, Yselkowitz)
  - Do not ignore CFLAGS.
    (Bug #354476, Alex Smith)
  - Use glib-mkenums to create gnome-db-enum-types.h and
    gnome-db-enum-types.c.
    (Bug #129035, Armin Burgmeier)
  - Fixed compiler warnings.
    (Mark Johnson, Bug #366710, Hans de Goede)
- GnomeDbServerOperation.c: Added "opt_header" property.
  (Vivien Malerba)
- Renamed gnome_db_basic_form_show_entries_actions() to
  gnome_db_basic_form_show_entry_actions().
  (Murray Cumming)
- Renamed GnomeDbmsUpdateViewer to GnomeDbDbmsUpdateViewer.
  (Bug #389191, Murray Cumming)
- GnomeDbDatabaseLogin improvements.
  (Vivien Malerba)
- Picture widgets: Bug fixes.
  (Vivien Malerba)
- GnomeDbTransactionStatus: Warn when the transaction is locked.
  (Vivien Malerba)
- Added construct properties for language bindings.
  (Bug #391514, Johannes Schmid)
- HIG improvements.
  (Jeroen Zwartepoorte)
- Corrected some English strings.
  (Bug #352123 and bug #315612 from Clytie Siddall)
2007-08-04 11:23:32 +00:00
obache
d590ae415f Update libgda to 3.0.1
Based on patch proveided by Makoto Fujiwara in PR 36715.

Pkgsrc Changes:
 Added fam option.

from NEWS:
libgda 3.0.1, 2007-05-10

 - Bug fixes: #433687, #434464, #432798, #432798
 (Armin Burgmeier, Gustavo R. Montesino, Leonardo Boshell, Vivien Malerba)
 - Translations:
	- ar (Djihed Afifi)


libgda 3.0.0, 2007-04-20

 - misc. bug fixes (Armin Burgmeier, Vivien Malerba)
 - bug fixes in the SQL delimiter to handle comments, BEGIN and END blocks and PostgreSQL's
   dollar quoting (Vivien Malerba)
 - more unit tests (Vivien Malerba)
 - removed dependecy and test for popt (Baris Cicek)
 - fixed SQLite provider's error reporting, and implemented the get_last_insert_id() virtuel
   method (Vivien Malerba)
 - fixed MySQL's provider error where the same column would be reported several times in
   the TABLE_FIELDS schema (Vivien Malerba)
 - fixed a misbehaviour in the data model import of XML files (Vivien Malerba)
 - docs improvements
 - removed ambiguities in the source files: mention LGPL everywhere in the library, and
   GPL for the executables (Murray Cumming)
 - allow dictionary XML file to specify its own DTD file (Vivien Malerba)
 - Bug fixes: #421986, #421986, #420306, #410200, #427605, #407908, #417249 (Carsten Clark, Baris Cicek,
   Vivien Malerba
 - Translations:
	- dz (Pema Geyleg)
	- lt (Gintautas Miliauskas)
	- ar (Djihed Afifi)

libgda 2.99.6, 2007-03-23

 - Merged several libraries into one for efficiency and because of inter-dependencies (yselkowitz,
   Gustavo R. Montesino, Christopher Taylor)
 - More explicit API function names (Murray Cumming)
 - Applications can now check installed DBMS providers (yselkowitz)
 - C# bindings removed from the libgda's module (Murray Cumming)
 - Added regression tests for SQL parsing and delimiting (Vivien Malerba)
 - Reworked SQL delimiter and made the SQL parser report non parsed characters (Vivien Malerba)
 - Embedded SQLite is now 3.3.13 (Vivien Malerba)
 - Added configure tests to work around changes in the MDB API (yselkowitz)
 - Improved WIN32 building for Cygwin and MinGW (yselkowitz, Gustavo R. Montesino, Christopher Taylor)
 - Bug fixes: #407064, #411811, #314732, #390609, #353404, #411984, #349548, #412122, #411811
   (Leonardo Boshell, yselkowitz, Armin Burgmeier, Daniel Espinosa, Murray Cumming, Christopher Taylor,
   Vivien Malerba)
 - Lots of minor bug fixes
 - Translations:
	- new dz translation (Pema Geyleg)
	- sv (Daniel Nylander)
	- en_GB (David Lodge)
	- it (Marco Ciampa)

libgda 2.99.5, 2007-02-12

 - Correct a linker error when using the (recently renamed to)
   gda_query_field_value_get_is_parameter() function.
   I'm doing a quick extra release because I imagine that the effects of using
   an implicitly-declared function could be odd.

libgda 2.99.4, 2007-02-12

 - GdaQuery: Renamed gda_query_is_modif_query() to gda_query_is_modify_query().
   (Murray Cumming)
 - GdaQueryFieldValue: Added the is_parameter property
   (Daniel Espinosa)
 - GdaEntityField: Renamed get_data_type() vfunc to get_dict_type().
   (Daniel Espinosa)
 - GdaQueryField: Renamed get_data_type() vfunc to get_dict_type().
   (Daniel Espinosa)
 - GdaObject: Added the option for GdaObject sub-classes to copy the
   "name" property to the "id" one if the "id" is not set (used by the GdaParameter object)
   (Vivien Malerba)
 - GdaDataModelQuery:
   - Correctly detect when it's not possible to get information about columns.
   - Added a "use_transaction" property to allow the object to start a transaction before
     running the modification SQL queries and to end it afterwards (so all the modifications are atomic).
   (Vivien Malerba)
 - GdaDataModel: Added "reset" signal, emitted when the data model has completely changed.
   (Vivien Malerba)
 - GdaDataProxy:
   - Added "re_init_done" signal, emitted when the proxied data model's number of columns changes.
   - Corrected a bug which prevented any modification to be applied to the proxied data model.
   - Added gda_data_proxy_get_n_modified_rows().
   (Vivien Malerba)
 - Improvements to _new() functions for language bindings, such as C++:
   GdaParameterList,  (Johannes Schmid, Openismus)
 - Make type checks more flexible, allowing use of derived GTypes by
   language bindings: (Armin Burgmeier, Openismus)
 - Use enum types instead of guint or gulong for flags, matching the
   conventions used in GTK+, and making the API clearer: GdaQuery, GdaObjectRef
   (Murray Cumming, Openismus)
 - Use specific types for property and signal parameter registrations, and use specific signal marshallers.
   This should be more robust, and is needed by language bindings.
   (Murray Cumming, Openismus)
 - Correct all remaining installation location conflicts with libgda 1.2.
   (Leonardo Boshell)
 - Correct the check for the gamin version.
   (Leonardo Boshell)
 - gda-sharp (mono bindings) updated.
   (Daniel Espinosa)
 - Added tests. (Vivien Malerb)
 - Win32 build improvements. (Brecht Sanders)
 - MDB provider: Attempt to fix the build for more recent versions of the MDB API.
   (Murray Cumming)


libgda 2.99.3, 2007-01-23

 - Build fixes:
   - With gamin/fam. (Murray Cumming)
   - removed unnecessary libxslt dependency. (Vivien Malerba)
   - gda-sharp binding fixes. (Vivien Malerba)
   - Fixed many compiler warnings. (Murray Cumming)
   - Replace use of deprecated sys_errlist() with strerror().
     (Joseph Sacco, Bug #353729)
   - Win32 build fixes. (yselkowitz, Bug #314732)
   - Darwin (MacOS X) build fixes. (Min Sik Kim, Bug #382933)
 - GdaConfig: Handle the GDA_DSN_LIST_IN_MEMORY environment variable.
   When defined, initial DSN list will be loaded from the filename specified
   in that environment variable, and the DSN list modifications will not be
   written to a file. (Vivien Malerba)
 - GdaQueryFieldValue: can now render parameters in SQL with the :param_name
   syntax, as used by Oracle. (Vivien Malerba)
 - GdaBlobOp: New object, for improved blob handling. (Vivien Malerba)
 - GdaQuarkList: gda_quark_list_add_from_string():
   Prevent a crash when the connection string has a final ; character.
   (Andrea Zagli, Bug #317831)
 - GdaQuery:
   - Allow use of derived types, for language bindings. (Armin Burgmeier)
   - Avoid memory corruption. (Chris Shoemaker, Bug #341061)
 - GdaQueryFieldField: The field_name property is now readable. (Vivien Malerba)
 - GdaServerProvider:
   - Added the escape_string() and unescape_string() virtual methods. (Vivien Malerba)
   - Removed unimplemented gda_server_provider_create_blob() and
     gda_server_provider_fetch_blob_by_id() functions.  (Murray Cumming)
 - Removed unused "prop" properties. (Murray Cumming)
 - Spelling and grammar corrections. (Clytie Siddall, bug #352122)

 - Providers:
   - FreeTDS: Build fixes. (Leonardo Boshell)
   - MySQL:
     - Slight speed optimization. (Esteban Sanchez)
     - Fixed a bug with FK reporting in the CONSTRAINTS schema report.
       Added the "bit" data type as a synonym to "tinyint"
       removed GDA_TYPE_BLOB reference as MySQL does not support blobs.
       (Vivien Malerba)
   - Oracle: Major improvments, including blob handling. (Vivien Malerba)
   - Postgres
     - Fix failure of current transaction when trying to delete a
     nonexisting blob Oid
     - Improved GdaBinary handling.
     (Vivien Malerba)
   - Sqlite: Update Sqlite sources to 3.3.10.
   - BDB and ODBC: Correct a cast (Hans de Goede, bug #366694)
2007-08-04 11:13:37 +00:00
joerg
2c6290042f Don't use malloc.h, use stdlib.h. 2007-08-03 22:57:06 +00:00
obache
3125092474 Marked as MAKE_JOBS_SAFE=no.
Pointed out by Gergo Szakal in PR 36711.
2007-07-31 14:10:11 +00:00
joerg
878d362b1b Don't use malloc.h. 2007-07-31 12:02:45 +00:00
joerg
d377e4f509 Fix path to Perl. Bump revision. 2007-07-29 16:39:43 +00:00
tron
114020c045 Update "mysql5-client" and "mysql5-server" packages to version 5.0.45.
Change since version 5.0.41:
- Functionality added or changed:
  - A new status variable, Com_call_procedure, indicates the number of calls
    to stored procedures. (Bug#27994)
  - NDB Cluster: The server source tree now includes scripts to simplify
    building MySQL with SCI support. For more information about SCI
    interconnects and these build scripts, see Section 15.9.1,
    Configuring MySQL Cluster to use SCI Sockets. (Bug#25470)
  - Prior to this release, when DATE values were compared with DATETIME values
    the time portion of the DATETIME value was ignored. Now a DATE value is
    coerced to the DATETIME type by adding the time portion as 00:00:00. To
    mimic the old behavior use the CAST() function in the following way:
    SELECT date_field = CAST(NOW() as DATE);. (Bug#28929)
- A large number of bugs including these security problems have been fixed:
  - A malformed password packet in the
    connection protocol could cause the server to crash. Thanks for Dormando
    for reporting this bug and providing details and a proof of concept.
    (Bug#28984)
  - CREATE TABLE LIKE did not require any privileges on the source table. Now
    it requires the SELECT privilege. (Bug#25578)
  - In addition, CREATE TABLE LIKE was not isolated from alteration by other
    connections, which resulted in various errors and incorrect binary log
    order when trying to execute concurrently a CREATE TABLE LIKE statement
    and either DDL statements on the source table or DML or DDL statements on
    the target table. (Bug#23667)
2007-07-15 19:22:06 +00:00
adrianp
56ad964245 Add an options.mk for SSL support
Suggested by pancake@ in PR #28573
2007-07-09 22:27:35 +00:00
xtraeme
b0b3690231 Drop maintainership. 2007-07-09 20:01:44 +00:00
jlam
4390d56940 Make it easier to build and install packages "unprivileged", where
the owner of all installed files is a non-root user.  This change
affects most packages that require special users or groups by making
them use the specified unprivileged user and group instead.

(1) Add two new variables PKG_GROUPS_VARS and PKG_USERS_VARS to
    unprivileged.mk.  These two variables are lists of other bmake
    variables that define package-specific users and groups.  Packages
    that have user-settable variables for users and groups, e.g. apache
    and APACHE_{USER,GROUP}, courier-mta and COURIER_{USER,GROUP},
    etc., should list these variables in PKG_USERS_VARS and PKG_GROUPS_VARS
    so that unprivileged.mk can know to set them to ${UNPRIVILEGED_USER}
    and ${UNPRIVILEGED_GROUP}.

(2) Modify packages to use PKG_GROUPS_VARS and PKG_USERS_VARS.
2007-07-04 20:54:31 +00:00
wiz
0b208ec82c Update to 3.4.0:
2007 June 18 (3.4.0)

* Fix a bug that can lead to database corruption if an SQLITE_BUSY
error occurs in the middle of an explicit transaction and that
transaction is later committed. Ticket #2409. See the
CorruptionFollowingBusyError wiki page for details.
* Fix a bug that can lead to database corruption if autovacuum mode
is on and a malloc() failure follows a CREATE TABLE or CREATE INDEX
statement which itself follows a cache overflow inside a transaction.
See ticket #2418.
* Added explicit upper bounds on the sizes and quantities of things
SQLite can process. This change might cause compatibility problems
for applications that use SQLite in the extreme, which is why the
current release is 3.4.0 instead of 3.3.18.
* Added support for Incremental BLOB I/O.
* Added the zeroblob API and the zeroblob() SQL function.
* Added support for Incremental Vacuum.
* Added the SQLITE_MIXED_ENDIAN_64BIT_FLOAT compile-time option to
suppport ARM7 processors with goofy endianness.
* Removed all instances of sprintf() and strcpy() from the core
library.
* Added support for International Components for Unicode (ICU) to
the full-text search extensions.

* In the windows OS driver, reacquire a SHARED lock if an attempt
to acquire an EXCLUSIVE lock fails. Ticket #2354
* Fix the REPLACE() function so that it returns NULL if the second
argument is an empty string. Ticket #2324.
* Document the hazards of type coversions in sqlite3_column_blob()
and related APIs. Fix unnecessary type conversions. Ticket #2321.
* Internationalization of the TRIM() function. Ticket #2323
* Use memmove() instead of memcpy() when moving between memory
regions that might overlap. Ticket #2334
* Fix an optimizer bug involving subqueries in a compound SELECT
that has both an ORDER BY and a LIMIT clause. Ticket #2339.
* Make sure the sqlite3_snprintf() interface does not zero-terminate
the buffer if the buffer size is less than 1. Ticket #2341
* Fix the built-in printf logic so that it prints "NaN" not "Inf"
for floating-point NaNs. Ticket #2345
* When converting BLOB to TEXT, use the text encoding of the main
database. Ticket #2349
* Keep the full precision of integers (if possible) when casting
to NUMERIC. Ticket #2364
* Fix a bug in the handling of UTF16 codepoint 0xE000
* Consider explicit collate clauses when matching WHERE constraints
to indices in the query optimizer. Ticket #2391
* Fix the query optimizer to correctly handle constant expressions
in the ON clause of a LEFT JOIN. Ticket #2403
* Fix the query optimizer to handle rowid comparisions to NULL
correctly. Ticket #2404
* Fix many potental segfaults that could be caused by malicious
SQL statements.
2007-07-03 17:29:57 +00:00
tron
0e6a9e7e09 Update "phpmyadmin" package to version 2.10.2.
The new version fixes several bugs and addresses the security
vulerability reported in PMASA-2007-4.
2007-07-03 14:18:14 +00:00
obache
073574aa78 Update p5-gdbm to 1.08.
Changes is in ChangeLog from perl-5.8 to perl-5.8.8.
2007-07-02 10:14:09 +00:00
wiz
96b10ac44b Fix build after db4 update, following a hint by obache@ 2007-06-15 23:43:14 +00:00
drochner
6f223bbe30 update to 2.2.8
changes: bugbixes
2007-06-15 18:05:09 +00:00
joerg
bac30104ff msgconv is a tool now. 2007-06-15 17:13:05 +00:00
joerg
4ba341fcf6 msgconv is a known tool now. 2007-06-15 17:12:27 +00:00
manu
36899971c9 Add support for schema remapping in nss_ldap 2007-06-15 16:42:19 +00:00
obache
159259d8e2 Update py-mssql to 0.8.0.
Patch provided by maintainer, Bartosz Kuzma in PR 36478.

Changes since 0.7.4:
 Sun Sep 24 10:44:00 2006  Andrzej Kukula <akukula@gmail.com>
 * setup.py:
   + it can now dynamically determine the path to SQL 2000 Developer
     Tools, if win32api and win32con modules are available
   + simple Python version check to prevent most frequently asked
     question


 Wed Sep 13 01:20:00 2006  Andrzej Kukula <akukula@gmail.com>
 * mssqldbmodule.c:
   + corrected misspellings in docstrings
   + fixed segfault on connection close with Python 2.5; thanks
     Justin Francis <jfrancis@pivotalpayments.com>
 * pymssql.py:
   + fixed two minor DB-API incompatibilities
     (thanks Matthew Good <matt@matt-good.net>)
   + fixed datetime quoting (thanks Jan Finell <jfinell@regionline.fi>)
 * pymssql should be able to build on cygwin (thanks rob@robnet.com)
 * docstring fixes, webpage doc updates


 Tue May 15 03:18:00 2006  Jooncheol Park <exman@users.sourceforge.net>
 * setup.py, PKG-INFO, README: license change to LGPL


 Wed Mar 15 08:18:00 2006 Andrzej Kukula <akukula@users.sourceforge.net>
 * pymssql.py: fixed datetime issue
   (thanks Jan Finell <jfinell@regionline.fi>)


 Fri Feb 24 16:11:00 2006 Andrzej Kukula <akukula@users.sourceforge.net>
 * mssqldbmodule.c: fixed typos in docstrings
   (thanks Konstantin Veretennicov)
2007-06-15 16:08:39 +00:00
jlam
84fa661d9a Use CONF_FILES_PERMS instead of CONF_FILES + SPECIAL_PERMS. 2007-06-15 14:18:38 +00:00
adrianp
4e08b8d0a9 Fix for CVE-2007-2691 2007-06-14 21:27:41 +00:00
xtraeme
934137f170 mysqld_precmd(): check if ${mysql_datadir}/mysql dir exists before
starting mysqld, otherwise if mysql_datadir has not been initialized
it will fail.

Patch from Edgar Fur via PR pkg/36138.
2007-06-13 13:24:07 +00:00
dmcmahill
247e3b55fe Point at lang/guile16 instead of lang/guile in preparation for updating
lang/guile to 1.8.1 from 1.6.8.  These pkgs seemed to fail to build with
guile 1.8.1, but maybe can be easily fixed.
2007-06-12 02:55:15 +00:00
tonio
73ca7f40bc Update databases/lbdb to 0.35.1
lbdb (0.35.1) unstable; urgency=low
  * New mail address of Brian Salter-Duke <b_duke@bigpond.net.au>.
  * Get rid of the SSL code from the previous version and add a comment to
    the man page instead how you can use SSL (and also different ports)
    using ldap[s]://foo[:port] URLs (Closes: #426316).
 -- Roland Rosenfeld <roland@debian.org>  Mon, 28 May 2007 11:03:22 +0200

lbdb (0.35) unstable; urgency=low
  * activate flavortest in emacen-install to avoid warnings and slow
    upgrades (Closes: #399775).
  * Avoid loosing the first entry from VCF file.  Thanks to
    Tino Keitel <tino.keitel+debbugs@tikei.de> for providing a patch
    (Closes: #405312).
  * Remove vcquery in distclean target (Closes: #405321).
  * Use defaults for $KEEP_DUPES and $SORT_OUTPUT in lbdbq
    (Closes: #422214).
  * Update mutt_ldap_query.pl from
    http://www.courville.org/mediawiki/index.php/Mutt_ldap_query which
    adds SSL support.
2007-06-10 21:12:51 +00:00
abs
03d73535ec Enable the following newly added packages:
databases/p5-Rose-DB
    databases/p5-Rose-DB-Object
    databases/p5-SQL-ReservedWords
    devel/p5-Clone-PP
    devel/p5-Data-OptList
    devel/p5-Rose-Object
    devel/p5-Sub-Exporter
    devel/p5-Sub-Install
    time/p5-DateTime-Format-MySQL
    time/p5-DateTime-Format-Pg
    time/p5-Rose-DateTime
    time/p5-Time-Clock
2007-06-10 13:53:03 +00:00
abs
8ba7d797da Added databases/p5-Rose-DB-Object version 0.764
Rose::DB::Object is a base class for objects that encapsulate a
single row in a database table. It provides the following functions:

 * Create a row in the database by saving a newly constructed object.
 * Initialize an object by loading a row from the database.
 * Update a row by saving a modified object back to the database.
 * Delete a row from the database.
 * Fetch an object referred to by a foreign key in the current object.
   (i.e., "one to one" and "many to one" relationships.)
 * Fetch multiple objects that refer to the current object, either directly
   through foreign keys or indirectly through a mapping table. (i.e., "one
   to many" and "many to many" relationships.)
 * Load an object along with "foreign objects" that are related through any
   of the supported relationship types.
2007-06-10 13:48:23 +00:00
abs
e2d4932ed9 Added databases/p5-Rose-DB version 0.734
Rose::DB is a wrapper and abstraction layer for DBI-related
functionality. A Rose::DB object "has a" DBI object; it is not a
subclass of DBI.

Tip: Are you looking for an object-relational mapper (ORM)? If so,
please see the Rose::DB::Object module. Rose::DB::Object is an ORM
that uses this module to manage its database connections. Rose::DB
alone is simply a data source abstraction layer; it is not an ORM.
2007-06-10 13:46:37 +00:00
abs
2f7ee3a9d0 Added databases/p5-SQL-ReservedWords version 0.7
Reserved SQL words by standard and vendors, including:
 * ANSI/ISO
 * DB2
 * MySQL
 * ODBC
 * Oracle
 * PostgreSQL
 * SQL Server
 * SQLite
 * Sybase
2007-06-10 13:39:36 +00:00
joerg
36b04760f7 Use a single pattern that actually gets the desired result of limiting
the upper version.
2007-06-10 08:46:16 +00:00
joerg
d29f03aa66 Wants php4, so disallow php5 and bump revision. 2007-06-10 08:44:24 +00:00
obache
0f3657979c Update p5-MLDBM-Sync to 0.30.
Patch provided by Mark E. Perkins in PR 36465.

$MODULE = "MLDBM::Sync"; $VERSION = '.30'; $DATE = '2002/07/03';

+ Added MLDBM to the list of PREREQ_PM modules for better CPAN installation

$MODULE = "MLDBM::Sync"; $VERSION = .27; $DATE = '2002/06/23';

+ Added note to error for Lock upgrade during ReadLock
  for case of doing unintentional write with construct like:

    tied(%dbm)->ReadLock;
    my $v = $dbm{'key'}{'key2'}; # will error with write !!
                 ^^^^^^^^^
  Thanks to Steve Keith for noting this bizarre perl behavior.

+ bench/bench_sync.pl now creates a test dbm in the local directory
  being run instead of /tmp ... benchmark results were being skewed
  since /tmp could be a fast RAM cache file system like tmpfs on Linux

+ Added MANIFEST.SKIP for building

+ t/taint.t perl taint check test added.

+ escape inbound file parameter for safe taint checking

$MODULE = "MLDBM::Sync"; $VERSION = .25; $DATE = '2001/11/11';

+ Honors the $MLDBM::RemoveTaint setting when MLDBM::Sync object is created,
  storing for later creation of the MLDBM tied object

$MODULE = "MLDBM::Sync"; $VERSION = .23; $DATE = '2001/11/08';

+ Updated AUTHORS section with perl license reference.

+ ./bench/bench_sync.pl has -n argument to specify # of reads/writes
  where default is 100

+ ./bench/bench_sync.pl has --bundle argument to allows for reads/writes
  in locked sections of that #, which improves performance.

+ $dbm->Size() for Tie::TextDir now adds size of directory as
  reported by OS.  This still does not seem to take into account
  the extra file inode overhead on a file system like ext2 linux
  but its better now at least.

$MODULE = "MLDBM::Sync"; $VERSION = .21; $DATE = '2001/10/31';

+ Added support in CLEAR() & SyncSize() for a tie directory
  based data structure like Tie::TextDir

$MODULE = "MLDBM::Sync"; $VERSION = .19; $DATE = '2001/10/15';

- Fixed keys(%hash), where one of the keys was boolean FALSE
  like '', or 0.  Bug found by Elliot Glaysher.

$MODULE = "MLDBM::Sync"; $VERSION = .17; $DATE = '2001/10/11';

- Make EXISTS safe after explicity tied hash ReadLock()

- For loops in MLDBM::Sync::SDBM_File that are friendlier
  to perl5.004_04

- Better Lock() return value, whether or not a lock has
  previously been acquired
2007-06-10 08:36:13 +00:00
obache
cf84b8ef6a Update p5-DB_File to 1.815.
Patch provided by Mark E. Perkins in PR 36465.

1.815 4 February 2007

   * A few casting cleanups for building with C++ from Steve Peters.

   * Fixed problem with recno which happened if you changed directory after
     opening the database. Problem reported by Andrew Pam.
2007-06-10 08:24:13 +00:00
obache
e394f6dccd Update p5-BerkeleyDB to 0.31.
Patch provided by Mark E. Perkins in PR 36465.

0.31  15th Oct 2006

        * Fixed DB_GET_BOTH. Tnanks to Thomas Drugeon for spotting the typo
          in typemap and supplying a regression test for this fix.

0.30  11th Sept 2006

        * Fixed queue test harness for Berkeley DB 4.5 compliance

        * Added $env->lsn_reset, $txn->set_timeout, $env->set_timeout &
          $env->get_timeout, $txn->set_tx_max, $txn->get_tx_max

0.29  2nd July 2006

        * Fixes for cursor get from secondary where primary os recno.

        * Added db_compact

0.28  11th June 2006

        * Fixes for secondary where primary is recno.

        * GET_BOTH_RANGE wasn't working. It is now.

        * Added FreeBSD hints to README - patch supplied by David Landgren
          in #17675 from rt.cpan.org
2007-06-10 08:18:35 +00:00
abs
1355906b87 Updated databases/p5-DBD-postgresql 0.48 -> 0.49
1.49
	- Thanks to Backcountry.com for sponsoring work on this release. [GSM]
	- Add the statement handle attribute ParamTypes, and fix an error
		in ParamValues. ParamTypes requires DBI 1.49 or better. [GSM]
	- Strip the final newline from error messages, so that die can add
		in the line number. (CPAN bug #18900) [GSM]
	- Make workaround for PQresultErrorField not returning proper
		result when an error is set and we are connecting via TCP/IP.
		This allows correct $dbh->state() values. [GSM]
	- Fix incorrect quoting preventing compiling. (CPAN bug #18640)
	- Add support for quoting and binding of geometric types: POINT,
		LINE, LSEG, BOX, PATH, POLYGON, and CIRCLE. Also added the
		TID type. [GSM]
2007-06-09 23:45:18 +00:00
abs
b6d04709be Updated databases/p5-DBI 1.54 -> 1.56:
Changes in 1.56:

Fixed printf arg warnings thanks to JDHEDDEN.
  Fixed returning driver-private sth attributes via gofer.

  Changed pod docs docs to use =head3 instead of =item
    so now in html you get links to individual methods etc.
  Changed default gofer retry_limit from 2 to 0.
  Changed tests to workaround Math::BigInt broken versions.
  Changed dbi_profile_merge() to dbi_profile_merge_nodes()
    old name still works as an alias for the new one.

  Added DBI_GOFER_RANDOM env var that can be use to trigger random
    failures and delays when executing gofer requests. Designed to help
    test automatic retry on failures and timeout handling.
  Added lots more docs to all the DBD::Gofer and DBI::Gofer classes.


Changes in 1.55:

Fixed set_err() so HandleSetErr hook is executed reliably, if set.
  Fixed accuracy of profiling when perl configured to use long doubles.
  Fixed 42prof_data.t on fast systems with poor timers thanks to Malcolm Nooning.
  Fixed potential corruption in selectall_arrayref and selectrow_arrayref
    for compiled drivers, thanks to Rob Davies.
    Rebuild your compiled drivers after installing DBI.

  Changed some handle creation code from perl to C code,
    to reduce handle creation cost by ~20%.
  Changed internal implementation of the CachedKids attribute
    so it's a normal handle attribute (and initially undef).
  Changed connect_cached and prepare_cached to avoid a FETCH method call,
    and thereby reduced cost by ~5% and ~30% respectively.
  Changed _set_fbav to not croak when given a wrongly sized array,
    it now warns and adjusts the row buffer to match.
  Changed some internals to improve performance with threaded perls.
  Changed DBD::NullP to be slightly more useful for testing.
  Changed File::Spec prerequisite to not require a minimum version.
  Changed tests to work with other DBMs thanks to ZMAN.
  Changed ex/perl_dbi_nulls_test.pl to be more descriptive.

  Added more functionality to the (undocumented) Callback mechanism.
    Callbacks can now elect to provide a value to be returned, in which case
    the method won't be called. A callback for "*" is applied to all methods
    that don't have their own callback.
  Added $h->{ReadOnly} attribute.
  Added support for DBI Profile Path to contain refs to scalars
    which will be de-ref'd for each profile sample.
  Added dbilogstrip utility to edit DBI logs for diff'ing (gets installed)
  Added details for SQLite 3.3 to NULL handling docs thanks to Alex Teslik.
  Added take_imp_data() to DBI::PurePerl.

  Gofer related changes:
    Fixed gofer pipeone & stream transports to avoid risk of hanging.
    Improved error handling and tracing significantly.
    Added way to generate random 1-in-N failures for methods.
    Added automatic retry-on-error mechanism to gofer transport base class.
    Added tests to show automatic retry mechanism works a treat!
    Added go_retry_hook callback hook so apps can fine-tune retry behaviour.
    Added header to request and response packets for sanity checking
      and to enable version skew between client and server.
    Added forced_single_resultset, max_cached_sth_per_dbh and max_cached_dbh_per_drh
      to gofer executor config.
    Driver-private methods installed with install_method are now proxied.
    No longer does a round-trip to the server for methods it knows
      have not been overridden by the remote driver.
    Most significant aspects of gofer behaviour are controlled by policy mechanism.
    Added policy-controlled caching of results for some methods, such as schema metadata.
    The connect_cached and prepare_cached methods cache on client and server.
    The bind_param_array and execute_array methods are now supported.
    Worked around a DBD::Sybase bind_param bug (which is fixed in DBD::Sybase 1.07)
    Added goferperf.pl utility (doesn't get installed).
    Many other assorted Gofer related bug fixes, enhancements and docs.
    The http and mod_perl transports have been remove to their own distribution.
    Client and server will need upgrading together for this release.
2007-06-09 23:23:07 +00:00
wiz
cd6127d55b Update to 4.5.0:
4.5.0:

  * Adds supports for compiling and linking with BerkeleyDB 4.5
  * Python Bug #1599782: Fix segfault on bsddb.db.DB().type() due to
    releasing the GIL when it shouldn't.  (nnorowitz)
  * Fixes a bug with bsddb.DB.stat where the flags and txn keyword
    arguments are transposed.
  * change test cases to use tempfile.gettempdir()

4.4.5:

  * pybsddb Bug #1527939: bsddb module DBEnv dbremove and dbrename
    methods now allow their database parameter to be None as the
    sleepycat API allows.

4.4.4:

  * fix DBCursor.pget() bug with keyword argument names when no data= is
    supplied [SF pybsddb bug #1477863]
  * add support for DBSequence objects [patch #1466734]
  * support DBEnv.log_stat() method on BerkeleyDB >= 4.0 [patch #1494885]
  * support DBEnv.lsn_reset() method on BerkeleyDB >= 4.4 [patch #1494902]
  * add DB_ARCH_REMOVE flag and fix DBEnv.log_archive() to accept it without
    potentially following an uninitialized pointer.

4.4.3:

  * fix DBEnv.set_tx_timestamp to not crash on Win64 platforms (thomas.wouters)
  * tons of memory leak fixes all over the code (thomas.wouters)
  * fixes ability to unpickle DBError (and children) exceptions
2007-06-09 05:58:06 +00:00
wiz
8c6e1744ac Remove dead MASTER_SITES. From Zafer Aydogan. 2007-06-08 18:33:05 +00:00
wiz
5f13cd82c8 PKGREVISION bump for db4 shlib name change.
Noted by OBATA Akio.
2007-06-08 13:11:53 +00:00
wiz
5d4498b5fc PKGREVISION bump for db4 shlib name change. 2007-06-08 12:24:59 +00:00
wiz
5898e428d0 Update to 4.5.20.2:
Multi-Version Concurrency Control (MVCC)
improves performance of highly concurrent, mixed read/write systems
by giving each user their own snapshot of the database and managing
concurrent changes by many users

Non-stop Upgrades
enables a replicated Oracle Berkeley DB system to be upgraded
without downtime. For customers that must maintain 99.999 percent
system uptime, this allows them to upgrade the Oracle Berkeley DB
database without taking down the entire system

Replication Framework
provides a pre-built and supported set of functions for quickly
building replicated or highly available systems, simplifying and
accelerating their development effort
2007-06-08 12:23:50 +00:00
wiz
c18f83a383 Update to 1.48:
1.48 Sun Mar 11 05:24:40 UTC 2007

* Fix a problem when left joins optimizer fails to calculate a boolean
  expression because of lower case aggregators.
2007-06-08 11:20:03 +00:00
wiz
eeb754ff3b Update to 0.31:
0.31 Thu Mar 30 05:28:20 PST 2006
	- more schema update stuff:
	- added Column::sql_alter_column
	- added Table::sql_alter_table
	- added DBSchema::sql_update_schema and DBSchema::update_schema

0.30 Thu Feb 16 16:43:01 PST 2006
	- "Too much uptime"
	- Remove buggy debugging from Column.pm
	- Remove removed TODO from MANIFEST

0.29 Thu Feb 16 13:54:42 PST 2006
	- Column::sql_add_column fix when adding primary keys to Pg 7.2.x
	- workaround for PAUSE parsing of DBIx::DBSchema::DBD::Pg version: move
	  DBD::Pg verison checking after $VERSION declaration, thanks Andreas!
	- kludge: allow scalar ref default to force quoting off, to add things
	  like functions and empty values as defaults
	- Move TODO file to DBSchema.pm and DBS/Column.pm BUGS sections

0.28 Wed Nov 30 09:46:47 PST 2005
        - Initial SQLite support from Jesse Vincent
	- fix typo in DBIx::DBSchema::DBD POD doc
2007-06-08 08:37:15 +00:00
wiz
baf2b2731c Update to 1.06:
1.06 03/23/2007
  - MP2/AuthDBI: Fixed Apache::AuthDBI::debug() to
    actually work.
    Submitted by: [Kevin Appel <kappel@tgic.com>]

  - Bump minium required perl version to 5.6.1 to match DBI
    (Changes in DBI 1.49 (svn rev 2287),   29th November 2005)
    Philip M. Gollucci <pgollucci@p6m7g8.com>
2007-06-08 08:35:42 +00:00
wiz
53ac435ed7 Update to 3.3.17:
2007 April 25 (3.3.17)

* When the "write_version" value of the database
  header is larger than what the library understands,
  make the database read-only instead of unreadable.
* Other minor bug fixes

2007 April 18 (3.3.16)

* Fix a bug that caused VACUUM to fail if NULLs
  appeared in a UNIQUE column.
* Reinstate performance improvements that were added
  in 3.3.14 but regressed in 3.3.15.
* Fix problems with the handling of ORDER BY expressions
  on compound SELECT statements in subqueries.
* Fix a potential segfault when destroying locks on
  WinCE in a multi-threaded environment.
* Documentation updates.

2007 April 9 (3.3.15)

* Fix a bug introduced in 3.3.14 that caused a rollback
  of CREATE TEMP TABLE to leave the database connection
  wedged.
* Fix a bug that caused an extra NULL row to be
  returned when a descending query was interrupted by
  a change to the database.
* The FOR EACH STATEMENT clause on a trigger now
  causes a syntax error. It used to be silently ignored.
* Fix an obscure and relatively harmless problem that
  might have caused a resource leak following an I/O
  error.
* Many improvements to the test suite. Test coverage
  now exceeded 98%

2007 April 2 (3.3.14)

* Fix a bug in 3.3.13 that could cause a segfault
  when the IN operator is used one one term of a
  two-column index and the right-hand side of the IN
  operator contains a NULL.
* Added a new OS interface method for determining
  the sector size of underlying media: sqlite3OsSectorSize().
* A new algorithm for statements of the form INSERT
  INTO table1 SELECT * FROM table2 is faster and
  reduces fragmentation. VACUUM uses statements of
  this form and thus runs faster and defragments
  better.
* Performance enhancements through reductions in disk I/O:
* Do not read the last page of an overflow chain
  when deleting the row - just add that page to
  the freelist.
* Do not store pages being deleted in the rollback journal.
* Do not read in the (meaningless) content of
  pages extracted from the freelist.
* Do not flush the page cache (and thus avoiding
  a cache refill) unless another process changes
  the underlying database file.
* Truncate rather than delete the rollback
  journal when committing a transaction in
  exclusive access mode, or when committing the
  TEMP database.
* Added support for exclusive access mode using
  "PRAGMA locking_mode=EXCLUSIVE"
* Use heap space instead of stack space for large
  buffers in the pager - useful on embedded platforms
  with stack-space limitations.
* Add a makefile target "sqlite3.c" that builds an
  amalgamation containing the core SQLite library C
  code in a single file.
* Get the library working correctly when compiled
  with GCC option "-fstrict-aliasing".
* Removed the vestigal SQLITE_PROTOCOL error.
* Improvements to test coverage, other minor bugs
  fixed, memory leaks plugged, code refactored and/or
  recommented in places for easier reading.
2007-06-07 19:49:10 +00:00
wiz
44137919e0 Do not accept mysql-client-5 or newer. 2007-06-05 06:05:24 +00:00
wiz
9d27f90a6f opencdk shlib major changed; bump ABI depends and PKGREVISIONs of
affected packages.
2007-06-05 05:36:59 +00:00
rillig
a687e667c6 Added documentation. PKGREVISION++ 2007-06-04 07:37:58 +00:00
wiz
6218de2b57 Remove dead mirror sites. From Zafer Aydogan. 2007-06-03 23:28:15 +00:00
rillig
7f125459d8 Removed some code duplication from the buildlink3 files by using the new
pkg-build-options.mk procedure.
2007-05-30 08:54:28 +00:00
martti
8e93d434ca NetBSD 1.x is no longer supported so remove NOT_FOR_PLATFORM. 2007-05-30 07:32:33 +00:00
martti
cb60aa5595 Regenerated. 2007-05-30 07:27:46 +00:00
martti
fb541f8ef5 cgilib is not needed to build this (Tobi Oetiker told this in a private mail). 2007-05-30 07:25:39 +00:00
joerg
8ec1a85713 Remove Zope 2.2 and related pieces:
databases/zope-mysql
lang/py-extclass
textproc/py-dtml
www/py-pcgi
www/py-zpublisher
www/zope

No objection from pkgsrc-users.
cVS: ----------------------------------------------------------------------
2007-05-29 10:16:42 +00:00
kristerw
a3d2323719 +p5-DBD-SQLite2 2007-05-23 22:11:38 +00:00
obache
2827d7d600 Revert previous HOMEPAGE change. 2007-05-23 11:47:40 +00:00
martti
d02c7f97f7 Updated MySQL to 4.1.22
Lots of bug fixes, see http://dev.mysql.com/doc/refman/4.1/en/news-4-1-22.html
2007-05-23 08:11:48 +00:00
obache
7b9e91eb46 Update HOMEPAGE url. 2007-05-22 15:57:27 +00:00
xtraeme
b01ff82dd1 I'm not maintaining anymore this package.
salo feel free to update it and fix the security vulnerabilities.
2007-05-22 10:47:37 +00:00
xtraeme
17385e04b4 Update to 5.0.41. Amongst many fixes these vulnerabilities were
fixed:

http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-2583
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-2692

And another patch adapted from a mailing list to fix:

http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-2691

See http://dev.mysql.com/doc/refman/5.0/en/releasenotes-cs-5-0-41.html
To see all changes.
2007-05-21 04:39:59 +00:00
heinz
4e3069b817 Initial import of p5-DBD-SQLite2 0.33.
SQLite is a small fast embedded SQL database engine.

DBD::SQLite2 embeds that database engine into a DBD driver, so
if you want a relational database for your project, but don't
want to install a large RDBMS system like MySQL or PostgreSQL,
then DBD::SQLite2 may be just what you need.

Note: DBD::SQLite2 is the old version of DBD::SQLite, and embeds
version 2.x.x of the sqlite library. The current version of
DBD::SQLite embeds version 3 or possibly later.
This release is designed to allow to have both versions installed
on the same system.
2007-05-20 00:39:39 +00:00
heinz
e9ece38384 Adapted MASTER_SITES to the usual CPAN scheme.
The Package supports installation to DESTDIR and needs a C compiler.
2007-05-20 00:25:41 +00:00
heinz
fbca7383db Added support for installation to DESTDIR. 2007-05-20 00:17:01 +00:00
taca
864c3a6973 Explicitly disable detecting Ruby like Python.
Fix build problem when Ruby is installed.
2007-05-17 14:41:09 +00:00
martti
8f26077d0c Updated databases/rrdtool to 1.2.23
* bug fixes
2007-05-16 09:01:10 +00:00
dillo
b2c6e38ad2 Update to 1.13.
Changes file was not updated, so changes are unknown.

pkgsrc changes: depend on sqlite3 package instead of using included sources.
2007-05-09 09:33:47 +00:00
joerg
d8ef36f517 Fix PLIST after last update. 2007-05-08 15:58:38 +00:00
adrianp
e35184b5ea Reset the PKGREVISION in packages that use the version string from php4 or php5
Pointed out by Geert Hendrickx on tech-pkg@
2007-05-08 11:30:49 +00:00
obache
246b75e70c Added and enabled java-qdbm. 2007-05-06 12:59:48 +00:00
obache
d379508e90 Import java-qdbm version 1.0.0.1.8.75 from pkgsrc-wip.
QDBM is an embeded database library compatible with GDBM and NDBM.  It
features hash database and B+ tree database and is developed referring
to GDBM for the purpose of the following three points: higher
processing speed, smaller size of a database file, and simpler API.

This package provides the Java interface of QDBM.
2007-05-06 12:58:36 +00:00
adam
9e5f469a1a CONFLICTS fix 2007-05-04 20:04:52 +00:00
adam
db63a72851 CONFLICTS and PLIST fix 2007-05-04 20:04:06 +00:00
adam
21a05ef06a CONFLICTS fix 2007-05-04 19:44:52 +00:00
adam
e365ba3730 Changes 8.0.13:
* Support explicit placement of the temporary-table schema within
  search_path, and disable searching it for functions and operators
* "/contrib/tsearch2" crash fixes
* Fix potential-data-corruption bug in how "VACUUM FULL" handles
  "UPDATE" chains
* Fix PANIC during enlargement of a hash index (bug introduced in
  8.0.10)
* Fix POSIX-style timezone specs to follow new USA DST rules
2007-04-30 13:37:36 +00:00
adam
05954558af Changes 8.1.9:
* Support explicit placement of the temporary-table schema within
  search_path, and disable searching it for functions and operators
* "/contrib/tsearch2" crash fixes
* Require "COMMIT PREPARED" to be executed in the same database as
  the transaction was prepared in
* Fix potential-data-corruption bug in how "VACUUM FULL" handles
  "UPDATE" chains
* Planner fixes, including improving outer join and bitmap scan
  selection logic
* Fix PANIC during enlargement of a hash index (bug introduced in
  8.1.6)
* Fix POSIX-style timezone specs to follow new USA DST rules
2007-04-30 13:37:22 +00:00
adam
7a06d63bd3 Changes 8.2.4:
* Support explicit placement of the temporary-table schema within
  search_path, and disable searching it for functions and operators
* Fix shared_preload_libraries for Windows by forcing reload in each
  backend
* Fix to_char() so it properly upper/lower cases localized day or
  month names
* "/contrib/tsearch2" crash fixes
* Require "COMMIT PREPARED" to be executed in the same database as
  the transaction was prepared in
* Allow "pg_dump" to do binary backups larger than two gigabytes on
  Windows
* New traditional (Taiwan) Chinese FAQ
* Prevent the statistics collector from writing to disk too
  frequently
* Fix potential-data-corruption bug in how "VACUUM FULL" handles
  "UPDATE" chains
* Fix bug in domains that use array types
* Fix "pg_dump" so it can dump a serial column's sequence using "-t"
  when not also dumping the owning table
* Planner fixes, including improving outer join and bitmap scan
  selection logic
* Fix possible wrong answers or crash when a PL/pgSQL function tries
  to RETURN from within an EXCEPTION block
* Fix PANIC during enlargement of a hash index
* Fix POSIX-style timezone specs to follow new USA DST rules
2007-04-30 13:37:00 +00:00
wiz
ab59477547 Update to 2.18.0, for GNOME-2.18.
Changes not detailed in the NEWS file.
2007-04-15 10:36:19 +00:00
rmind
b0a734dbb1 Update Slony-1 to 1.2.9 version.
It has a support for newer PostgreSQL versions, also various
improvements and bugfixes. Details could be found in the
RELEASE-1.2.{0-9} files of the source package.
Reviewed by joerg@
2007-04-10 21:59:02 +00:00
rmind
c5c183a626 Update the patch for new Slony-1 release. 2007-04-10 21:49:55 +00:00
obache
96e5866842 Force not to detect PostgreSQL, fixes PR 36123. 2007-04-04 13:30:26 +00:00
obache
0546b28976 Fix missing run-time search path in qdbm-plus. 2007-04-04 12:48:10 +00:00
gdt
061b8008f1 Upstream MASTER_SITES, HOMEPAGE have changed.
s;www.glug.org/people/ttn;www.gnuvola.org/g
2007-04-02 22:45:22 +00:00
obache
4a0f595089 Update ruby-sqlite3 to 1.2.1.
Release Name: 1.2.1

Notes:
Only a single change in this release: sqlite3
3.3.8 and higher have changed the format of the
'dflt_value' column for the table_info pragma.
This caused breakage in apps that depend on that
pragma, like Ruby on Rails. This release makes the
Database#table_info helper check the libversion,
and adjust the dflt_value column accordingly. If
you want the new format and not the old, you can
invoke the table_info pragma directly, instead of
using the helper.

Release Name: 1.2.0

Notes:
* Fixed bug that caused crashes when type translation was asked to translate the type of a typeless column (like count(*), etc.)
* Added pre-built sqlite3_api_wrap.c to remove the dependency on SWIG.
* db.transaction should now catch all exceptions (bug #3981)
* Removed lots of warnings when running in -w mode
* Fixed problems with callbacks (thanks Sylvan Joyeux!)
* Named bind parameters may now be specified as symbols, or as strings. You can also leave off the leading colon when specifying them as a string.
* DL (pure-ruby) driver is now deprecated.
* Bignum values may be bound in a prepared statement.
* Get a more detailed error message when the connection cannot be established.
* Reset the statement when binding new variables to a prepared statement.
2007-04-01 09:10:34 +00:00
obache
aed6110a04 Change my mail address to @NetBSD.org. 2007-04-01 01:58:36 +00:00
joerg
161c920c15 Prepare for switching to NO_MTREE=yes. 2007-03-24 19:21:18 +00:00
jwise
d713eea2be Per Juan RP, use pkgsrc-users@ as MAINTAINER of unmaintained pkgs. 2007-03-21 19:44:10 +00:00
jwise
334802060f I'm not using any of these packages any more, and have not been keeping up
on maintaining them.  Switch MAINTAINER to tech-pkg, so I can focus on those
which I am still using.
2007-03-21 18:55:47 +00:00
wiz
2d1a8cc474 Bump PKGREVISION for gnome-keyring ABI bump. 2007-03-21 12:05:41 +00:00
jlam
98ea690841 Don't remove directory not created (missing) in PostgreSQL installation. 2007-03-20 18:17:13 +00:00
tron
256f1dda92 Update "phpmyadmin" package to version 2.10.0.2:
- Fix for PMASA-2007-3 (PHP Executor Deep Recursion Stack Overflow)
- New graphical relation manager, called Designer, available in
  database view
2007-03-20 14:17:16 +00:00
minskim
b49716b267 Update ruby-activerecord to 1.15.3.
Changes:
* Allow a polymorphic :source for has_many :through associations.
* Consistently quote primary key column names.
* Fixtures: fix YAML ordered map support.
* Fix has_many :through << with custom foreign keys.
2007-03-17 11:05:15 +00:00
taca
2bbccfd187 Updating Ruby to 1.8.6; ruby18-gdbm
- discontinue use of RUBY_PATCH_DATE.
- Introduce RUBY_PATCH_LEVEL.

pkgsrc's ruby tracks Ruby's patch release and avoid to maintain
its own patch files (with RUBY_PATCH_DATE).

Changes are too much, please see ChangeLog file.
2007-03-15 16:42:06 +00:00
manu
27ececf503 Fiw a configure option name: it's --enable-spasswd ans not --with-spasswwd
details here:
http://www.openldap.org/lists/openldap-software/200702/msg00126.html
2007-03-15 14:28:57 +00:00
tron
698420c064 Fix build problem under NetBSD (-i386 3.1). 2007-03-12 12:33:12 +00:00
adam
e7547647b6 Changes 5.0.37:
* Added the SHOW PROFILES and SHOW PROFILE statements to display statement
  profile data, and the accompanying INFORMATION_SCHEMA.PROFILING table.

* Added the Uptime_since_flush_status status variable, which indicates the
  number of seconds since the most recent FLUSH STATUS statement.

* Incompatible change in DATE_FORMAT().

* NDB Cluster: The LockPagesInMainMemory configuration parameter has changed
  its type and possible values.

* The bundled yaSSL library was upgraded to version 1.5.8.

* The --skip-thread-priority option now is enabled by default for binary Mac
  OS X distributions. Use of thread priorities degrades performance on Mac OS X.

* Added the --disable-grant-options option to configure.

* Bug fixes.
2007-03-11 18:42:27 +00:00
grant
2f0986858b update to 1.54.
changes since 1.50:

Changes in DBI 1.54 (svn rev 9157),  23rd February 2007

  Fixed type_info when called for multiple dbh thanks to Cosimo Streppone.
  Fixed compile warnings in bleadperl on freebsd-6.1-release
    and solaris 10g thanks to Philip M. Gollucci.
  Fixed to compile for perl built with -DNO_MATHOMS thanks to Jerry D. Hedden.
  Fixed to work for bleadperl (r29544) thanks to Nicholas Clark.
    Users of Perl >= 5.9.5 will require DBI >= 1.54.
  Fixed rare error when profiling access to $DBI::err etc tied variables.
  Fixed DBI::ProfileDumper to not be affected by changes to $/ and $,
    thanks to Michael Schwern.

  Changed t/40profile.t to skip tests for perl < 5.8.0.
  Changed setting trace file to no longer write "Trace file set" to new file.
  Changed 'handle cleared whilst still active' warning for dbh
    to only be given for dbh that have active sth or are not AutoCommit.
  Changed take_imp_data to call finish on all Active child sth.
  Changed DBI::PurePerl trace() method to be more consistent.
  Changed set_err method to effectively not append to errstr if the new errstr
    is the same as the current one.
  Changed handle factory methods, like connect, prepare, and table_info,
    to copy any error/warn/info state of the handle being returned
    up into the handle the method was called on.
  Changed row buffer handling to not alter NUM_OF_FIELDS if it's
    inconsistent with number of elements in row buffer array.
  Updated DBI::DBD docs re handling multiple result sets.
  Updated DBI::DBD docs for driver authors thanks to Ammon Riley
    and Dean Arnold.
  Updated column_info docs to note that if a table doesn't exist
    you get an sth for an empty result set and not an error.

  Added new DBD::Gofer 'stateless proxy' driver and framework,
    and the DBI test suite is now also executed via DBD::Gofer,
    and DBD::Gofer+DBI::PurePerl, in addition to DBI::PurePerl.
  Added ability for trace() to support filehandle argument,
    including tracing into a string, thanks to Dean Arnold.
  Added ability for drivers to implement func() method
    so proxy drivers can proxy the func method itself.
  Added SQL_BIGINT type code (resolved to the ODBC/JDBC value (-5))
  Added $h->private_attribute_info method.

Changes in DBI 1.53 (svn rev 7995),   31st October 2006

  Fixed checks for weaken to work with early 5.8.x versions
  Fixed DBD::Proxy handling of some methods, including commit and rollback.
  Fixed t/40profile.t to be more insensitive to long double precision.
  Fixed t/40profile.t to be insensitive to small negative shifts in time
    thanks to Jamie McCarthy.
  Fixed t/40profile.t to skip tests for perl < 5.8.0.
  Fixed to work with current 'bleadperl' (~5.9.5) thanks to Steve Peters.
    Users of Perl >= 5.9.5 will require DBI >= 1.53.
  Fixed to be more robust against drivers not handling multiple result
    sets properly, thanks to Gisle Aas.

  Added array context support to execute_array and execute_for_fetch
    methods which returns executed tuples and rows affected.
  Added Tie::Cache::LRU example to docs thanks to Brandon Black.

Changes in DBI 1.52 (svn rev 6840),   30th July 2006

  Fixed memory leak (per handle) thanks to Nicholas Clark and Ephraim Dan.
  Fixed memory leak (16 bytes per sth) thanks to Doru Theodor Petrescu.
  Fixed execute_for_fetch/execute_array to RaiseError thanks to Martin J. Evans.
  Fixed for perl 5.9.4. Users of Perl >= 5.9.4 will require DBI >= 1.52.

  Updated DBD::File to 0.35 to match the latest release on CPAN.

  Added $dbh->statistics_info specification thanks to Brandon Black.

  Many changes and additions to profiling:
    Profile Path can now uses sane strings instead of obscure numbers,
    can refer to attributes, assorted magical values, and even code refs!
    Parsing of non-numeric DBI_PROFILE env var values has changed.
    Changed DBI::Profile docs extensively - many new features.
    See DBI::Profile docs for more information.

Changes in DBI 1.51 (svn rev 6475),   6th June 2006

  Fixed $dbh->clone method 'signature' thanks to Jeffrey Klein.
  Fixed default ping() method to return false if !$dbh->{Active}.
  Fixed t/40profile.t to be insensitive to long double precision.
  Fixed for perl 5.8.0's more limited weaken() function.
  Fixed DBD::Proxy to not alter $@ in disconnect or AUTOLOADd methods.
  Fixed bind_columns() to use return set_err(...) instead of die()
    to report incorrect number of parameters, thanks to Ben Thul.
  Fixed bind_col() to ignore undef as bind location, thanks to David Wheeler.
  Fixed for perl 5.9.x for non-threaded builds thanks to Nicholas Clark.
    Users of Perl >= 5.9.x will require DBI >= 1.51.
  Fixed fetching of rows as hash refs to preserve utf8 on field names
    from $sth->{NAME} thanks to Alexey Gaidukov.
  Fixed build on Win32 (dbd_postamble) thanks to David Golden.

  Improved performance for thread-enabled perls thanks to Gisle Aas.
  Drivers can now use PERL_NO_GET_CONTEXT thanks to Gisle Aas.
    Driver authors please read the notes in the DBI::DBD docs.
  Changed DBI::Profile format to always include a percentage,
    if not exiting then uses time between the first and last DBI call.
  Changed DBI::ProfileData to be more forgiving of systems with
    unstable clocks (where time may go backwards occasionally).
  Clarified the 'Subclassing the DBI' docs.
  Assorted minor changes to docs from comments on annocpan.org.
  Changed Makefile.PL to avoid incompatible options for old gcc.

  Added 'fetch array of hash refs' example to selectall_arrayref
    docs thanks to Tom Schindl.
  Added docs for $sth->{ParamArrays} thanks to Martin J. Evans.
  Added reference to $DBI::neat_maxlen in TRACING section of docs.
  Added ability for DBI::Profile Path to include attributes
    and a summary of where the code was called from.
2007-03-11 16:52:12 +00:00
grant
9a442abced +php-oracle 2007-03-11 16:46:59 +00:00
grant
44833e850d Initial import of php-oracle.
This PHP module provides access to Oracle databases.
2007-03-11 16:46:17 +00:00
wiz
32601b3577 Update to 1.47:
1.47 Sun Mar 4 03:30:00 UTC 2007

* Do the search in unions only when we must do them, not on every
  call to the Next method
* Don't index ex/ dir to avoid complains by the indexer of PAUSE/CPAN

1.46 Sun Feb 25 19:04:00 UTC 2007

* when doing a union, we need to actually search, rather than just
  doing a count
* add support for testing with Oracle backend
* Use CROSS JOIN instead of ',' as SQL parsers in Pg and some mysql
  are buggy and cannot parse "FROM X, Y JOIN Z ON Z.f = X.f"
* deprecate DEBUG method, it's still there but produce warning
* fix CleanSlate method that was missing several keys
* fix a long standing bug we had, we didn't write depends_on data about
  a join, so we could build queries with incorrect parens around join
  conditions
* fix default values for ALIAS1 argument in the Join method, istead of
  defaulting FIELD1 to 'main' value
* fix a TODO test
* internal refactoring of a storage for query's conditions,
  instead of building query strings right after the limit
  or join, we now build a perl structure
* don't clone attributes that don't exists in the Clone method
* we use Encode module without perl version check for a long time, so
  we can get rid of all checks for the version and load the module
  at compile time everywhere we need it
* implement MayBeNull method in the handler that checks if applied
  conditions allow NULLs in the result set
* implement cascaded LEFT JOINs optimization
* additional tests for CleanSlate and Clone methods, ENTRY_AGGREGATOR
  argument, different types of joins and LEFT JOIN optimizer
2007-03-10 15:02:53 +00:00
drochner
c9a446deba update to 3.3.13
changes:
-bugfixes
-enhanced PRAGMA integrity_check
2007-03-07 12:17:58 +00:00
martti
82a6c58e99 Updated databases/rrdtool to 1.2.19
* bindings/python/Makefile.am: libtool builds shared libraries
  anyway, no need for extra LDFLAGS that bite non GNU ld versions

* src/rrd_tool.c: resolve snprintf overflow warning by using sizeof
2007-03-06 10:49:00 +00:00
obache
5d8b26d21e Update qdbm and sub packages to 1.8.75.
Changes:
2006-11-10  Mikio Hirabayashi

	- The utility API was enhanced.
	- A bug related to B+ tree API for Ruby was fixed.
	- Release: 1.8.75
2007-03-05 15:56:26 +00:00
grant
a156ec5cb4 make this actually work (on Solaris, at least) by forcing -lclntsh.
something weird is going on in the pkgsrc perl build process which is
trashing required arguments...
2007-03-04 01:17:51 +00:00
grant
02dcf96623 update DBD::Oracle to 1.19.
Changes in DBD-Oracle 1.19 (svn rev 8002) 3rd November 2006

  Fixed execute_array to comply with DBI standard from Martin J. Evans, Xho Jingleheimerschmidt and others
  Fixed execute_array so it will not throw a Perl warning on undef values in Tuples from John Scoles
  Fixed execute_array so it will take the ora_array_chunk_size DB handle attribute
  Fixed a few other little bugs dealing with  compatibility with Oracle 8
  Added support for array context aware execute_for_fetch from Martin J. Evans

Changes in DBD-Oracle 1.18 (svn rev 6697)

  Added support for native Oracle Array interface thanks Kristian Nielsen
  Added suppot for LOB Locators from Jeffrey Klein.

Changes in DBD-Oracle 1.17 (svn rev 3726)

  Added expanded support for Lobs from Jeffrey Klein
  Fixed automatic csform setting for some UTF8 cases and for Oracle 8.0
  Fixed truncation error on fetch into UTF8 charset thanks to Honza Pazdziora.
  Fixed INTERVAL DAY TO SECOND thanks to Honza Pazdziora.
  Fixed unicode tests for cygwin thanks to Andy Hassall.
  Fixed undef warnings when connecting with undef $user.
  Fixed undef warnings from $dbh->get_info(18);
  Fixed LOB streaming example thanks to Pablo Zorzoli.

  Added support for nested cursors in select lists thanks to Charles Jardine.
  Added "Trailing Spaces" section to docs thanks to Michael A Chase.
  Added support for binary floats/doubles thanks to Dennis Box.
  Added INSTANCE_NAME, SERVER and SERVICE_NAME as valid connect keywords
    in the 'dbi:Oracle:x=y' short form of connecting without tnsnames.ora.
    For example 'dbi:Oracle:host=localhost;service_name=xe;server=dedicated'
  Added auto-detection of ORACLE_HOME in some configurations.

Changes in DBD-Oracle 1.16 (svn rev 515)   22nd October 2004

  NOTE:
  This release has major changes to Unicode support. See below.
  It no longer supports the old Oracle 7 OCI interface.
  It requires DBI >= 1.38 for some of the tests if using Perl 5.6.
  It no longer supports Perl 5.5 or earlier.

  Fixed placeholder names to be case insensitive thanks to Charles Jardine.
  Fixed some LOB test problems with Oracle 8.1.7 by implementing ora_lob_append
    with OCILobGetLength() and OCILobWrite(), instead of buggy OCILobWriteAppend(),
    if the Oracle client version is < 9.0. Thanks to Jeff Urlwin.
  Fixed handling of temporary LOBs thanks to Chris Donnelly.
  Fixed memory leaks in auto LOB refetch code thanks to Dongqiang Bai.
  Fixed reporting of length truncated in error message thanks to Jeff Urlwin.
  Fixed column_info() to handle TIMESTAMP and INTERVAL datatypes
    for Oracle >= 8 thanks to Stephen Clouse.
  Fixed STORE to cache attribute value in handle cache.
  Fixed seg fault returning LOB Locators reported by Raj Chandran.
  Fixed binding to allow overloaded scalars (not for 'inout' params).
  Fixed setting of $DBI::err to 0 triggering PrintWarn in DBI >= 1.41.
  Fixed some edge cases in row cache sizing.
  Fixed truncation error fetching very small numbers (1 ^ -130).
  Fixed Oraperl to not enable PrintError or AutoCommit (broken since 1.13).

  Changed some utf8 internals for LOBs.
  Changed ORA_OCI constant from being just 7 or 8 to being a dualvar:
    in numeric context returns the major.minor version number (8.1, 9.2 etc)
    in string context it returns the full "major.minor.foo.bar" version string.
  Changed some SUCCESS_WITH_INFO situtions to be treated as a "warning"
    by setting $DBI::err to "0" (and so trigger PrintWarn in DBI >= 1.43)
    eg "ORA-28011: the account will expire soon; change your password now"
    and package compilation errors.

  Added automatic support for UTF-8 for both NLS_LANG and NLS_NCHAR
    Many thanks to Lincoln Baxter who did most of the hard work and testing
    and to Jeff Urlwin and others who also helped out.
    Perl 5.8.x and Oracle 9+ are highly recommended if you want to use Unicode.
    See POD for more information and documentation.
  Added support for "... RETURNING lob_locator_column INTO ?"
    using $sth->bind_param_inout(2, \$loc, 0, {ora_type => ORA_BLOB});
  Added bind_param() ora_csform, ora_csid, and ora_maxdata_size attributes.
  Added bind_param() support for SQL_BLOB & SQL_CLOB thanks to Stephen Clouse.
  Added $dbh->ora_can_unicode and $dbh->ora_nls_parameters thanks to Andy Hassall.

Changes in DBD-Oracle 1.15   27th January 2004

  NOTE: DBD::Oracle now requires DBI version 1.28 (June 2002) or later.

  NOTE: This is probably the last release that will support being
  built with the old Oracle 7 OCI interface.

  Fixed for extproc_perl (http://search.cpan.org/author/JHORWITZ/extproc_perl/)
  Fixed Oraperl handling of ora_errno and ora_errstr thanks to Martin Busik.
  Fixed PRECISION for "NUMBER" to be 126 not 0 thanks to Steffen Goeldner.
  Fixed bind_param_inout() for placeholders not assigned to in PL/SQL.

  Changed bind_param_inout for CHAR types to no longer use a minimum
    length of 28 characters. Warning: this change may break code that
    doesn't pass bind_param_inout() a length value large enough for the
    returned string. (The minimum length was not documented and should
    not have been relied upon. This change currently only applies to the
    CHAR type but may extended to all string types in a later release.)
  Changed type_info_all() to return the same type info as Oracle's own
    ODBC driver does, thanks to Andy Hassall for the data.
    The types include LOBs but not the new TIMESTAMP and INTERVAL types.

  Added direct access to LOB Locators and major LOB Locator functions
    such as $sth->ora_lob_read(...), $sth->ora_lob_write(...) etc.
    This work was sponsored by Geospiza Inc.
  Added LOB Locator example docs thanks to Mark Dilger at Geospiza.
  Added TIMESTAMP [WITH [LOCAL] TIME ZONE]] support
    thanks to Stephen Clouse and Robert Wyrick.
  Added INTERVAL YEAR TO MONTH, INTERVAL DAY TO SECOND support.
  Added /*+RULE*/ hint to metadata method SQL thanks to Andy Hassall.
  Added connect example using OS authentication thanks to Bob Thomson.
  Added prepare("...", { ora_placeholders => 0 }) to disable placeholders.
  Added docs for returning a recordset (table/array) using Oracle >=9.0.1
    via "FUNCTION foo RETURN type PIPELINED" thanks to Steve Baldwin.
  Added docs on ora_check_sql=>0 in prepare() to avoid server-side parses.
  Added support for sharing database connections with ProC/SQLLIB code
    via ora_use_proc_connection attribute, thanks to Kristian Nielsen
    needs build time option thanks to Steffen Goeldner
  Added (restored) the error "possibly near <*> indicator" marker for
    syntax errors thanks to Jason Hitt and Andy Hassall.
  Added $dbh->{ora_parse_error_offset} attribute thanks to Andy Hassall.
  Added auto setting of $dbh->{Username} if not given to connect
    i.e. using Oracle OS authentication and connecting as "/"
    by selecting SYS_CONTEXT('userenv','session_user') from the db
    thanks to Eric Lenio and Andy Hassall.
2007-03-04 01:04:11 +00:00
wiz
f728ee28e7 Reset maintainer on his request (PR 35869). 2007-02-28 15:49:54 +00:00
wiz
51c8ea8d62 pkglint USE_LANGUAGES cleanup. Patch from Sergey Svishchev. 2007-02-22 19:30:02 +00:00
wiz
601583c320 Whitespace cleanup, courtesy of pkglint.
Patch provided by Sergey Svishchev in private mail.
2007-02-22 19:26:05 +00:00
wiz
5411305ed8 Use standard CPAN homepage. 2007-02-22 19:18:13 +00:00
wiz
6e2c35c083 pkglint cleanup; update HOMEPAGE/MASTER_SITES.
From Sergey Svishchev in private mail.
2007-02-22 19:01:13 +00:00
dsainty
de59e40e96 Install some documentation under PREFIX/share/doc/PKGBASE 2007-02-19 21:57:51 +00:00
dsainty
a1b1797de6 + palm-db-tools 2007-02-19 21:21:15 +00:00
dsainty
b184ad38ab PalmOS Flat-File Database Tools. Conversion utilities for the PalmOS
flat-file database programs "MobileDB", "JFile" v3.x, "List", and the open
source "DB".
2007-02-19 21:19:14 +00:00
minskim
8e63842cf9 Update ruby-activerecord to 1.15.2.
Changes:
* Pass a range in :conditions to use the SQL BETWEEN operator. #6974
  [dcmanges] Student.find(:all, :conditions => { :grade => 9..12 })
* Don't create instance writer methods for class attributes. [Rick]
* When dealing with SQLite3, use the table_info pragma helper, so that the
  bindings can do some translation for when sqlite3 breaks incompatibly
  between point releases. [Jamis Buck]
* SQLServer: don't choke on strings containing 'null'.  #7083 [Jakob S]
* Consistently use LOWER() for uniqueness validations (rather than mixing with
  UPPER()) so the database can always use a functional index on the lowercased
  column. #6495 [Si]
* MySQL: SET SQL_AUTO_IS_NULL=0 so 'where id is null' doesn't select the last
  inserted id. #6778 [Jonathan Viney, timc]
* Fixtures use the table name and connection from set_fixture_class. #7330
  [Anthony Eden]
* SQLServer: quote table name in indexes query.  #2928 [keithm@infused.org]
2007-02-18 23:12:52 +00:00
wiz
ac504a2acc Update to 1.45:
1.45 Tue Sep 26 11:08:20 EDT 2006

* Postgres fixes:
** fix "$rec->Create();"
** fix "$rec->Create( IntegerColumn => '' );"
** fix "$rec->SetIntegerColumn( '' );"
** add test

* Cache changes
** cleanup ::Record::Cachable
** use cache in:
    $a->LoadByCols(...);
    $b->LoadById( $a->id );
** add cache tests

1.44
* DBIx::SearchBuilder::Handle::DatabaseVersion enhancements
2007-02-18 02:35:03 +00:00
wiz
898d4355b2 Update to 1.05:
1.05 11/3/2006
  - MP2/AuthDBI: Add missing Apache2::Access
    Submitted by: Adam Prime x443

1.04 10/23/2006
  - MP1: Undefined subroutine &Apache2::Const::OK called at ....
    (The rest of them) d'oh!

  Seconded by: Kjetil Kjernsmo
  Submitted by: BOWMANBS

1.03 08/21/2006

  - MP1: Undefined subroutine &Apache2::Const::OK called at
    Apache/AuthDBI.pm line 906.
    Submitted by: [Philip.Garrett@manheim.com]
    Reviewed by: Kevin A. McGrail (ThoughtWorthy Media, Inc.)

  - http://rt.cpan.org/Ticket/Display.html?id=20809
    avoid a warnings caused by debug statements
    Reported by: Vladimir S. Tikhonjuk

1.02 08/02/2006

  - http://rt.cpan.org/Ticket/Display.html?id=20808
    s/denug/debug/ typo in Apache::AuthDBI
    Submitted by: Vladimir S. Tikhonjuk
2007-02-18 01:59:36 +00:00
abs
79a92f0ff1 checkin distinfo missed in previous (some time ago) commit 2007-02-16 22:29:40 +00:00
rillig
5ae015bd36 On NetBSD, building with jdk 1.1.8 results in a segmentation fault, so
use a newer JDK here.
2007-02-16 10:51:25 +00:00
rillig
bd41b2a559 Made the code a bit shorter. 2007-02-15 15:45:07 +00:00
rillig
2860919c60 Fixed the deprecated share/doc/html. PKGREVISION++ 2007-02-15 15:36:04 +00:00
drochner
d3f76b4e09 update to 1.0-beta1
changes: "lots of new features", too much to list here
2007-02-08 20:17:53 +00:00
adam
2c18f3a641 Changes 8.0.12:
* Remove overly-restrictive check for type length in constraints and
  functional indexes
2007-02-08 20:00:57 +00:00
adam
7663b98733 Changes 8.1.8:
* Remove overly-restrictive check for type length in constraints and
  functional indexes
2007-02-08 20:00:46 +00:00
adam
038538cdd2 Changes 8.2.3:
* Remove overly-restrictive check for type length in constraints and
  functional indexes
* Fix optimization so MIN/MAX in subqueries can again use indexes
2007-02-08 20:00:27 +00:00
rillig
a171b6cef7 + p5-DBD-PgPP 2007-02-07 21:38:53 +00:00
rillig
def53c8313 Imported p5-DBD-PgPP.
DBD::PgPP is a Pure Perl client interface for the PostgreSQL database.
This module implements network protocol between server and client of
PostgreSQL, thus you don't need external PostgreSQL client library like
libpq for this module to work. It means this module enables
you to connect to PostgreSQL server from some operation systems
which PostgreSQL is not ported. How nifty!

Packaged by Francisco Valladolid Hdez.
2007-02-07 21:37:27 +00:00
joerg
d758aa25c9 Needs intltool. 2007-02-06 17:24:42 +00:00
rillig
3576e96e15 + p5-Net-MySQL 2007-02-05 23:10:34 +00:00
rillig
676799cbe1 Imported p5-Net-MySQL.
Net::MySQL is a Pure Perl client interface for the MySQL database.
This module implements network protocol between server and client
of MySQL, thus you don't need external MySQL client library like
libmysqlclient for this module to work. It means this module enables
you to connect to MySQL server from some operation systems which
MySQL is not ported.
How nifty!

Since this module's final goal is to completely replace DBD::mysql,
API is made similar to that of DBI.
From perl you activate the interface with the statement

Packaged by Francisco Valladolid Hdez.
2007-02-05 23:08:02 +00:00
adam
77d481832b Changes 8.0.11:
* Remove security vulnerabilities that allowed connected users to
  read backend memory
* Fix rare bug wherein btree index page splits could fail due to
  choosing an infeasible split point
* Fix for rare Assert() crash triggered by UNION
* Tighten security of multi-byte character processing for UTF8
  sequences over three bytes long
2007-02-05 11:58:42 +00:00
adam
e677558b09 Changes 8.1.7:
* Remove security vulnerabilities that allowed connected users to
  read backend memory
* Fix rare bug wherein btree index page splits could fail due to
  choosing an infeasible split point
* Improve "VACUUM" performance for databases with many tables
* Fix autovacuum to avoid leaving non-permanent transaction IDs in
  non-connectable databases
  This bug affects the 8.1 branch only.
* Fix for rare Assert() crash triggered by UNION
* Tighten security of multi-byte character processing for UTF8
  sequences over three bytes long
* Fix bogus "permission denied" failures occurring on Windows due to
  attempts to fsync already-deleted files
* Fix possible crashes when an already-in-use PL/pgSQL function is
  updated
2007-02-05 11:42:07 +00:00
adam
48a36d84cb Changes 8.2.2:
* Remove security vulnerabilities that allowed connected users to
  read backend memory
* Fix not-so-rare-anymore bug wherein btree index page splits could
  fail due to choosing an infeasible split point
* Fix Borland C compile scripts
* Properly handle to_char('CC') for years ending in 00
  Year 2000 is in the twentieth century, not the twenty-first.
* "/contrib/tsearch2" localization improvements
* Fix incorrect permission check in information_schema.key_column_usage view
* Improve "VACUUM" performance for databases with many tables
* Fix for rare Assert() crash triggered by UNION
* Fix potentially incorrect results from index searches using ROW
  inequality conditions
* Tighten security of multi-byte character processing for UTF8
  sequences over three bytes long
* Fix bogus "permission denied" failures occurring on Windows due to
  attempts to fsync already-deleted files
* Fix bug that could cause the statistics collector to hang on
  Windows
* Fix possible crashes when an already-in-use PL/pgSQL function is
  updated
* Improve PL/pgSQL handling of domain types
* Fix possible errors in processing PL/pgSQL exception blocks
2007-02-05 11:10:02 +00:00
drochner
b45c3b9e34 update to 2.2.6
This switches to the new stable branch, too many changes to list.
2007-02-01 17:56:11 +00:00
wiz
29abbd1c1b Mark as BROKEN_IN pkgsrc-2006Q4, based on
ftp://asim.lip6.fr/outgoing/packages/i386/3.1/20070114.1132/broken.html
(latest 3.1/i386 bulk build of 2006Q4).

Feel free to fix them...
2007-01-31 00:04:11 +00:00
joerg
50490887b1 Modular Xorg support. 2007-01-30 22:38:10 +00:00
joerg
8cf8129bab No X11 here. 2007-01-30 22:34:06 +00:00
joerg
46f8251e0b Fix build on platforms which don't define ulong by default like
DragonFly.
2007-01-30 15:54:29 +00:00
adam
3c835bd816 Changes 1.2.18:
* Bug fixes
2007-01-30 13:26:55 +00:00
taca
c547ab46b9 Update ruby-mysql package to 2.7.3.
2006-12-20
    version 2.7.3
     - BUG: Mysql#query with block is stopped when last query failed.
2006-10-28
    version 2.7.2
     - BUG: Mysql::Stmt#result_metadata don't return nil. (Thanks to
        Hidetoshi)
     - BUG: Mysql#close check mysql_errno.
     - BUG: multistatement Mysql#query with block ignore error.
     - extconf.rb for Visual C++. (Thanks to Shugo Maeda)
     - support MySQL BIT type.
     - add Mysql::Field::TYPE_BIT, TYPE_NEWDECIMAL.
2007-01-28 15:21:06 +00:00
minskim
a3e27df24c Update ruby-activerecord to 1.15.1, required by rails-1.2.1.
Too many changes since 1.14.1.  See ${RUBY_DOCDIR}/activerecord/CHANGELOG.
2007-01-28 05:36:31 +00:00
dillo
5decf4267a Add libgda-mysql. 2007-01-26 11:02:47 +00:00
dillo
7978535ef1 Initial import of MySQL provider for libgda. 2007-01-26 11:02:12 +00:00
dillo
afe636d7b2 Modifications for upcoming libgda-mysql package. 2007-01-26 10:59:59 +00:00
markd
e44d03e438 Update icons location of KDE apps. Bump PKGREVISION 2007-01-26 03:49:32 +00:00
wiz
3f62200243 Do not install glade3-specific files. When glade3 is not found,
they would be installed into /16x16 and /22x22.
glade3 is not yet in pkgsrc.
2007-01-24 19:35:04 +00:00
ghen
c7c7cc1107 rc.d usage can be found in NetBSD and pkgsrc documentation and is not mysql
specific.
2007-01-23 15:51:53 +00:00
obache
28a9a741e9 Should build only shared libraries, pointed out in PR 34860.
Bump PKGREVISION.
2007-01-22 13:10:41 +00:00
obache
c25a64ced5 Fix mismatch of option name, definition v.s. usage.
Pointed out in PR 34860.
2007-01-22 12:23:39 +00:00
wiz
79b121be93 Update to 0.65:
For Release 0.65
----------------

 - Tables contents are now displayed as a grid and as a form
   with a toggle option (Vivien)
 - Various other GUI improvements (Vivien)
 - Translations:
	- New Arabic translation (Djihed Afifi)
	- es (Francisco Javier F. Serrador)
	- en_GB (David Lodge)
	- nl (Wouter Bolsterlee)
2007-01-21 19:16:09 +00:00
wiz
0114858158 Update to 2.99.2:
libgnomedb 2.99.2, 2006-12-22
-----------------------------

 - C# bindings corrections (Daniel)
 - Change version to 2.99.x to become 3.0.x when the API/ABI is declared stable (Murray)
 - Lots of corrections and small improvements (Stian, Vivien)
 - Doc. improvements (Vivien)
 - Glade3 support (Daniel)
 - Code cleanups (Vivien)
 - Improved code to make bindings easier (Murray)
 - Improved sample application (Vivien)
 - New plugin to display pictures from BLOB or encoded strings (Vivien)
 - Translations:
	- new Arabic transtation (Djihed Afifi)
	- fi (Ilkka)
	- en_GB (David Lodge)
	- es (Francisco Javier)
	- en_CA (Adam Weinberger)
2007-01-21 19:15:33 +00:00
wiz
8a336504c1 Update to 2.99.2; for details see libgda update. 2007-01-21 19:14:46 +00:00
wiz
62065c0068 Update to 2.99.2.
Bump API depends, because of shlib name change, and
all its dependencies will depend on the new API in a few minutes.

libgda 2.99.2, 2006-12-22
-------------------------

 - Make all the providers compile again (Vivien)
 - C# bindings corrections (Daniel)
 - MySQL provider fixes (Vivien, Stian)
 - API renaming to avoid using the G namespace (Murray)
 - Code cleanups (Murray)
 - Change version to 2.99.x to become 3.0.x when the API/ABI is declared stable (Murray)
 - Lots of corrections and small improvements (Stian, Vivien)
 - Make connections keep track of the current transaction status (Vivien)
 - Doc. improvements (Vivien)
 - 64 bits corrections (Bas)
 - Improved code to make bindings easier (Murray)
 - Translations:
	- new Arabic transtation (Djihed Afifi)
	- it (Marco Ciampa)
2007-01-21 19:14:20 +00:00
wiz
78bb72f5d9 Update to 2.3.3:
- self->statement was not checked while fetching data, which could
  lead to crashes if you used the pysqlite API in unusual ways.
  Closing the cursor and continuing to fetch data was enough.

- Converters are stored in a converters dictionary. The converter name
  is uppercased first. The old upper-casing algorithm was wrong and
  was replaced by a simple call to the Python string's upper() method
  instead.

- Applied patch by Glyph Lefkowitz that fixes the problem with
  subsequent SQLITE_SCHEMA errors.

- Improvement to the row type: rows can now be iterated over and have a keys()
  method. This improves compatibility with both tuple and dict a lot.

- A bugfix for the subsecond resolution in timestamps.

- Corrected the way the flags PARSE_DECLTYPES and PARSE_COLNAMES are
  checked for. Now they work as documented.

- gcc on Linux sucks. It exports all symbols by default in shared
  libraries, so if symbols are not unique it can lead to problems with
  symbol lookup.  pysqlite used to crash under Apache when mod_cache
  was enabled because both modules had the symbol cache_init. I fixed
  this by applying the prefix pysqlite_ almost everywhere. Sigh.
2007-01-20 17:28:37 +00:00
schmonz
3a8e0d9a6c Update to 0.76. From the changelog:
* manpage spelling fixes, from Claus Assmann <ca+tinycdb (at) esmtp.org>.

  * little mods to allow compiling tinycdb by C++ compiler,
    from Olly Betts <olly (at) survex.com>.

  * use program_invocation_short_name on GLIBC, (modified) patch
    from Dmitry V. Levin  <ldv (at) altlinux.org>

  * manpage fix (cdb_findnext() prototype),
    from Dmitry V. Levin <ldv (at) altlinux.org>

  * (somewhat silly) GCC-4.x "signedness" warnings fix, modified patch
    from Dmitry V. Levin  <ldv (at) altlinux.org>

  * more signed vs unsigned char* fixes in various places

  * Makefile: always build libnss_cdb.so with libcdb_pic.a, no nss-shared
    target: to avoid extra dependency from /usr/lib/.

  * Makefile: use map files for lib*.so, with explicit list of exported
    symbols.  This, in particular, avoids exporting of libcdb symbols by
    libnss_cdb.so.

  * mark all internal routines as internal_function (defined as
    __attribute__((visibility("hidden"))) for GCC)

  * Makefile: add tests-shared, to use cdb-shared for testing

  * Makefile: allow to specify which binary (shared vs static) to install
    in install target, by using INSTALLPROG variable

  * Makefile: pass -DNSSCDB_DIR=... to compiler when building .lo files,
    to allow setting of system config dir (/etc by default) on command line.
    For nss_cdb module.

  * Makefile: use $(CP) instead of cp, to be able to specify `cp' options
    (CP="cp -p")

  * Use unlink(tmpname) + open(O_CREAT|O_EXCL) instead of
    open(O_CREAT|O_TRUNC) when creating the new CDB file.
    And use O_NOFOLLOW if defined.
    This also works around some (probably) possible symlink attacks.

  * Add -p perms option for cdb utility, to specify mode (permission bits)
    for newly created .cdb file (default is 0666&umask(), -p forces the given
    mode).

  * allow tmpname (cdb -t) to be `-', to mean no temp file gets created.
    Also check if tmpname is the same as database name and don't try to
    rename() if it is.

  * rewrite nss_cdb-Makefile a bit: simplify it, and use more sane
    permission scheme for /etc/shadow

  * fixed a typo in cdb_seek.c, -- it segfaulted if passed NULL dlenp
    pointer.  Thanks Daiki for the patch.  Closes: #383417

  * use MAP_FAILED to test mmap() return value, instead of hardcoded -1.

  * libcdb-dev replaces tinycdb<0.76
2007-01-18 22:46:12 +00:00
wiz
e5b04d25c0 Very belatedly bump PKGREVISION for all jasper dependencies because
of the shlib name change (!) during the update to 1.900.0.

Noted by Robert Elz in PR 35431.
2007-01-17 23:47:18 +00:00
tonio
1b6542f00b Update databases/lbdb to 0.34
lbdb (0.34) unstable; urgency=medium
  * vcquery: avoid free() on unallocated memory if fullname is not set.
    Thanks to Gregor Jasny <gjasny@web.de> for finding and providing a
    patch.
  * vcquery: Use value of concatenated N fields if FN field is missing.
    Thanks to Gregor Jasny <gjasny@web.de> for providing a patch.
lbdb (0.33) unstable; urgency=low
  * Add SORT_OUTPUT=reverse_comment to do reverse sort by the third column
    (most recent m_inmail timestamp at the top).  Thanks to Marco d'Itri
    for this suggestion.
  * Comment out LDAP_NICKS in lbdb.rc because this should only be an
    example and if it is set there it overrides other LDAP settings.
2007-01-15 19:42:38 +00:00
obache
c63c842717 *BSD dosen't have strndup.
Pointed out by Yasushi Oshima in PR 33160.

Bump PKGREVISION.
2007-01-14 14:37:44 +00:00
obache
9621508510 Fix CONFIGURE option to pick up iODBC driver (default option) correctly.
Pointed out by Yasushi Oshima in PR 33147.

Bump PKGREVISION.
2007-01-14 12:28:56 +00:00