Commit Graph

2432 Commits

Author SHA1 Message Date
pea
ed27f8a671 Major upgrade to PostgreSQL 9.1.0
A dump/restore is required.

Tested in a bulk by jasper@, thanks !

ok jasper@, jeremy@
2011-09-23 09:46:14 +00:00
dcoppa
16daeb6b88 Maintainance update to ruby-redis-2.2.2 2011-09-23 09:30:46 +00:00
dcoppa
d27346ad26 Maintainance update to redis-2.2.14 2011-09-23 08:14:23 +00:00
pea
f5e347069b Update to 2.4.26
With tweaks from gsoares@ (thanks).

looks good to sthen@, ok gsoares@
2011-09-21 14:07:47 +00:00
jasper
bdbfbbc2f4 - update to 3.1.92
- hardcode (but with XXX) 3.2 for now
2011-09-21 13:26:03 +00:00
jasper
ce57eca3b4 CONFIGURE_SHARED is now implied by gnome.port.mk, so no need to make it explicit anymore. 2011-09-20 21:04:24 +00:00
jasper
9fe4b0f440 switch to MODGNOME_TOOLS 2011-09-20 20:51:51 +00:00
espie
e04a8b99e2 work-around a deeper problem... 2011-09-18 19:29:58 +00:00
espie
c9457c0e23 remove the REPORT_PROBLEM=:
ports should allow make print-plist-contents, this shouldn't mask other
errors.
2011-09-18 17:18:59 +00:00
jakob
7cb3dcd8d5 bump revision (maintainer dropped) 2011-09-17 18:05:00 +00:00
jakob
7a856e77a4 drop maintainer 2011-09-17 17:46:35 +00:00
espie
61199a1dbc normalize pkgpath 2011-09-16 08:48:01 +00:00
naddy
511778f2b1 Also bump EPOCH for the db4 -java and -tcl subpackages to deal with
an old screwup when REVISION was introduced.

Bump their dependent packages as well.
2011-09-14 19:12:18 +00:00
naddy
8e76b29205 remove redundant package spec already supplied by PKGSPEC 2011-09-12 21:02:23 +00:00
naddy
1e2bbe8777 bump all (sub)packages that depend on db/v4; requested by and help from espie@ 2011-09-12 18:02:34 +00:00
jasper
ad2a9c291c switch the rest of the ports using gnome.port.mk over to .tar.xz where applicable. 2011-09-12 12:07:24 +00:00
espie
5aaeed9ab0 fallout from db/v4, clean-up libreoffice port 2011-09-12 10:16:57 +00:00
espie
e0df1d61c2 fix for db change
noticed by antoine
2011-09-12 10:04:48 +00:00
ajacoutot
32563635a5 Start the GNOME3 merge armageddon... breakage expected. 2011-09-12 07:26:18 +00:00
naddy
4ead43d7d6 bump EPOCH to deal with an old screwup when REVISION was introduced; ok espie@ 2011-09-11 21:17:09 +00:00
ajacoutot
39f25c5430 Rename the utility from pkglocate to pkg_locate to be consistent with
the other pkg_* tools.
pkglocate is kept as a link to not break backward compat.

ok espie@
2011-09-11 16:12:34 +00:00
sthen
a53674235e missing dep, sync WANTLIB, use better automake version. pointed out by nigel@ 2011-09-11 12:38:57 +00:00
ajacoutot
b50bc01c03 Missing BUILD_DEPENDS. 2011-09-11 05:53:37 +00:00
espie
ab91ad1daa depend on sqlports, so that we get all pkgpaths.
requires -current ports tree AND pkg_mklocatedb(1).
REPORT_PROBLEM=: because of pseudo-ports like lilypond-test
2011-09-10 10:43:06 +00:00
espie
8388e334df store PSEUDO_FLAVOR along. tweak descriptions a bit. 2011-09-10 08:48:15 +00:00
jeremy
0c72dc12dc Update version to 0.4.5. Add patch for building with the recently
updated freetds 0.91.
2011-09-09 00:47:23 +00:00
sthen
36a0d6d871 -msdblib flavour of freetds 2011-09-08 17:14:10 +00:00
sthen
c88475b046 update to freetds 0.91; add an openssl flavour (see README for details),
remove msdblib flavour (with @pkgpath to handle updates): this is not
really worth a separate flavour; just define MSDBLIB when building your
applications if you require this behaviour.
2011-09-08 17:13:51 +00:00
jeremy
1547341bf4 Update to version 1.1.1. 2011-09-07 16:53:03 +00:00
jeremy
49306c8637 Update to version 3.27.0. 2011-09-07 16:52:36 +00:00
jeremy
4c1cb9eb6f Update to version 1.3.4. Take maintainership. Update regress
tests.
2011-09-07 16:02:40 +00:00
kili
e0aed4fb77 Overdue update to postgresql-jdbc-9.0-801.
Switch regress bits to junit w/o version numbers.

Also tested by Amit Kulkarni.
2011-09-06 19:28:36 +00:00
kili
8e7ba82161 Don't try to createlang plpgsql template1 in pre-regress.
Tests still fail, but later, and they hopefully will pass after
an update to the newest postgresql-jdbc.
2011-09-05 18:41:29 +00:00
giovanni
d6ea53e8e0 Update to 5.1.58
help and ok Brad (Maintainer)
2011-09-05 07:11:23 +00:00
jasper
bafbcbae77 switch to MODJAVA_BUILD=ant 2011-09-01 20:34:56 +00:00
jasper
fa7be240b1 - bump REVISION after recent java.port.mk change 2011-08-30 17:16:35 +00:00
jasper
b34d1f5738 sync 2011-08-19 06:44:21 +00:00
jasper
446a0d0c0f import leveldb, svn rev 48
LevelDB is a fast key-value storage library written at Google that
provides an ordered mapping from string keys to string values.

Features:
  - Keys and values are arbitrary byte arrays.
  - Data is stored sorted by key.
  - Callers can provide a custom comparison function to override
    the sort order.
  - The basic operations are Put(key,value), Get(key), Delete(key).
  - Multiple changes can be made in one atomic batch.
  - Users can create a transient snapshot to get a consistent view
    of data.
  - Forward and backward iteration is supported over the data.

ok sthen@
2011-08-19 06:44:00 +00:00
nigel
e7aa8e37d5 remove unecessary ${SUDO} causes build failure with sudo
ok landry@ sthen@ aja@ jeremy@
2011-08-17 15:43:52 +00:00
dcoppa
9c62c4e369 Update to redis-2.2.12.
Clean makefiles from colors, optimizations, and other amenities.

ok rpointel@
2011-07-28 08:57:32 +00:00
rpointel
f94ec3764e Update py-redis to 2.4.9.
ok aja@.
2011-07-27 06:45:09 +00:00
benoit
6188aef401 - update p5-Redis to 1.904
- update PLIST
- add REGRESS_DEPENDS
- remove USE_GROFF

tweaks and OK sthen@
2011-07-24 15:48:10 +00:00
sthen
6df0d68c4d Bump for PKGSPEC changes in ports/lang/php/Makefile.inc 2011-07-22 10:20:10 +00:00
jeremy
9bc799db7a Bump after change to remove OpenBSD version from ruby SITEARCHDIR,
and use new MODRUBY_SITEDIR and MODRUBY_SITEARCHDIR variables in
PLIST.

OK landry@, jcs@
2011-07-19 18:00:16 +00:00
fgsch
9021620a3f Update to mongodb 1.8.2.
martynas@ ok.
2011-07-18 19:56:18 +00:00
naddy
65bc5aa607 bump revision for plist changes 4.9 -> 5.0 2011-07-18 19:06:36 +00:00
rpointel
b70a826ab1 Update py-redis to 2.4.7.
ok dcoppa@.
2011-07-18 07:57:32 +00:00
rpointel
cde4d16d8c Update py-redis to 2.4.6.
ok dcoppa@.
2011-07-17 15:32:44 +00:00
benoit
162e9c5aae - update py-sqlalchemy to 0.7.1
maintainer timeout, ok ajacoutot@
2011-07-14 14:36:34 +00:00
sthen
300cfb7e14 Don't use GNU-only grep syntax, spotted by naddy. Fix homepage while there.
Note, this could use an update too, port is years out of date and the
distfile is no longer available upstream.
2011-07-11 21:10:33 +00:00