Path to this page:
./
databases/guile-pg,
PostgreSQL interface for Guile
Branch: CURRENT,
Version: 0.50nb2,
Package name: guile-pg-0.50nb2,
Maintainer: gdtGuile-pg is a Guile module providing access and allowing updates to
PostgreSQL databases from Guile scripts. Guile is the GNU interpreter
for the Scheme language and PostgreSQL is a free relational database
management system. This package is for Guile 1.6.x.
Required to run:[
lang/guile22] [
databases/postgresql14-client]
Master sites:
Filesize: 556.161 KB
Version history: (Expand)
- (2022-10-26) Updated to version: guile-pg-0.50nb2
- (2022-03-05) Updated to version: guile-pg-0.50nb1
- (2021-12-08) Updated to version: guile-pg-0.49nb1
- (2020-12-19) Updated to version: guile-pg-0.49
- (2020-11-11) Updated to version: guile-pg-0.48
- (2020-03-08) Updated to version: guile-pg-0.47nb3
CVS history: (Expand)
2022-10-26 12:32:08 by Thomas Klausner | Files touched by this commit (687) |
Log message:
*: bump PKGREVISION for libunistring shlib major bump
|
2022-03-05 16:00:16 by Greg Troxel | Files touched by this commit (1) |
Log message:
databases/guile-pg: Switch to guile 2.2
This is the first guile-pg to support guile 2.2, and it builds ok.
|
2022-03-05 15:57:31 by Greg Troxel | Files touched by this commit (2) |
Log message:
www/guile-pg: Update to 0.50
- 0.50 | 2021-12-04
- lob details bifurcated for "modern" Guile
Guile 2.2 (and later, presumably) have ‘scm_c_make_port’ and in
fact a whole rewrite of the ports extension mechanism. Thus,
all previous Guile-PG releases failed to build w/ Guile 2.2.
Specifically, all the large object (lob) low-level details
clashed irreconcilably.
This release of Guile-PG now handles things by configure-time
detection and selection of a suitably matching implementation.
The file test/OK now includes an entry w/ a subheading of "other
Guile" to show the range of supported Guile versions. More to
the point, if you build w/ Guile 2.2 and encounter problems,
then please report it.
NB: We haven't dipped into the Guile 3.0 waters yet. Experience
reports from those more adventurous are welcome, in any case.
|
2021-12-08 17:07:18 by Adam Ciarcinski | Files touched by this commit (3063) |
Log message:
revbump for icu and libffi
|
2021-10-26 12:10:08 by Nia Alarie | Files touched by this commit (417) |
Log message:
databases: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
The following distfiles could not be fetched (some may be only fetched
conditionally):
./databases/cstore/distinfo D6.data.ros.gz
./databases/cstore/distinfo cstore0.2.tar.gz
./databases/cstore/distinfo data4.tar.gz
|
2021-10-07 15:35:53 by Nia Alarie | Files touched by this commit (417) |
Log message:
databases: Remove SHA1 distfile hashes
|
2020-12-19 16:21:50 by Greg Troxel | Files touched by this commit (2) |
Log message:
guile-pg: Update to 0.49
- 0.49 | 2020-11-13
- dependency clarified: state range
Previously, the README file intimated that any Guile 1.4.x and
later would work w/ Guile-PG. This has now been clarified to
state the actual working range (1.4.x to 2.0.x, inclusive).
We have plans for adding support for 2.2.x (and maybe 3.x) in
the near to middling future.
See also file test/OK.
- Guile "auto-compilation" suppressed
In all three phases: configuration, build, and test, Guile 2.x
"auto-compilation" of .scm to .go files is suppressed by setting
the env var ‘GUILE_AUTO_COMPILE=0’.
We will do intentional compilation at some point, as soon as we
figure out how to DTRT. See project CMOD-PLAY for experiments.
|
2020-11-11 15:25:23 by Greg Troxel | Files touched by this commit (3) |
Log message:
databases/guile-pg: Update to 0.48
pkgsrc: changes: re-enable .la
There are some test issues, but it seems better to move to 0.48 than
stay at 0.47. If you are a pkgsrc user of guile-pg and disagree,
please speak up (and help test/fix!).
- 0.48 | 2020-10-26
- installation by default deletes the .la files
See README re "SOFIXFLAGS".
- configuration changes
- configure script tries to use pkg-config(1)
The configure script now tries to use pkg-config(1) to determine
directory values for the ‘-I’ and ‘-L’ compiler switches. The
standard way is still supported (see README).
- configure-time ‘INITDB’ specification
For "make check", you can specify to the configure script the
initdb(1) program to use with option ‘INITDB=/path/to/initdb’.
For example:
./configure INITDB=/usr/lib/postgresql/9.4/bin/initdb
This saves the value of ‘INITDB’ so you don't need to specify it
manually for each "make check" invocation (see README).
- builtin array variant types now have prefix-asterisk names
Previously, the builtin array variant types had names that end
in "[]" (i.e., one or more pairs of square braces). These now
have prefix-asterisk names.
(was) (now)
text[] *text
text[][] **text
int4[] *int4
aclitem[] *aclitem
Furthermore, old-style names are no longer supported. This is
concomitant w/ dropping of ‘define-db-col-type-array-variant’
(see below).
- dropped items
All these were announced in Guile-PG 0.47 (2015-02-23).
- module ‘(database postgres-resdisp)’
- proc ‘(database postgres) pg-lo-read’
- procs in module ‘(database postgres-types)’
- ‘dbcoltypes’
- ‘dbcoltype-lookup’
- ‘dbcoltype:stringifier’
- ‘dbcoltype:default’
- ‘dbcoltype:objectifier’
- ‘define-db-col-type-array-variant’
|