Commit graph

13948 commits

Author SHA1 Message Date
Sunpoet Po-Chuan Hsieh
1b6af443fa - Update MASTER_SITES and unbreak this port
Approved by:	portmgr (blanket)
2015-04-14 17:29:08 +00:00
Koop Mast
959b42f142 Move pre-configure target inside the jdbc block. So there is no empty target
to run.

Submitted by:	mat@
2015-04-14 10:44:54 +00:00
Alexey Dokuchaev
3d63c30103 - Provide another master site, as it appears that pgfoundry may be fading
- Point WWW line to a working page in the port description, reformat it
- Unmute installation command while I'm here

PR		199424
Submitted by:	maintainer
2015-04-14 06:56:15 +00:00
Matthew Seaman
b4794e4b0a Update to 4.4.2
This is a routine bugfix update

ChangeLog:	  http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.4.2/phpMyAdmin-4.4.2-notes.html/view
2015-04-13 16:03:43 +00:00
Dmitry Marakasov
feac957c5a - Add CPE info
Approved by:	portmgr blanket
2015-04-13 13:30:04 +00:00
Bartek Rutkowski
571ea2bfb3 databases/hbase: add CPE information
- Maintainer's timeout (demon@FreeBSD.org)

PR:		198964
Submitted by:	Shun <shun.fbsd.pr@dropcut.net>
2015-04-12 18:10:23 +00:00
Koop Mast
4ae0153c7a Move regeneration of getsp.java to pre-configure when java is actualy
is present.

Submitted by:	antoine@
Double pointyhat to:	kwm@
2015-04-12 15:06:57 +00:00
Antoine Brodin
bde9bceb95 Mark a few ports BROKEN: unfetchable 2015-04-12 11:04:22 +00:00
Kurt Jaeger
a440a4803b databases/cego: 2.21.0 -> 2.21.1
- Fixes for btree handling. Some field value offsets have been corrected
  based on experiences with SAGE db import
- Improved error messages for CegoLockHandler to indicate low level lock
  error messages from pthread calls
- Added sudo command to cego rc script to run db as given user

Submitted by:	lemke@lemke-it.com
2015-04-12 10:51:49 +00:00
Mathieu Arnold
a51e404df7 These need Module::Build.
Sponsored by:	Absolight
2015-04-12 08:45:54 +00:00
Koop Mast
e852c1b3b2 Only try to execute java if we building the jdbc plugin. Else java isn't
available.

Submitted by:	antoine@
2015-04-12 07:54:11 +00:00
Koop Mast
88c274d942 Fix "amd64" hardcode in java library path lookup and regen the
.class file which configure uses to figure out java setting.

In theory this should fix other archs too if java ever gets ported.

Annoyed by:	pkg-fallout mails
2015-04-11 21:21:24 +00:00
Mathieu Arnold
7f0f58ddb4 These need Module::Build.
Sponsored by:	Absolight
2015-04-11 09:13:51 +00:00
Bartek Rutkowski
6c0bd51700 databases/php5-redis: update 2.2.5 -> 2.2.7
- Convert to new GH_* knobs

PR:		199273
Submitted by:	Mikhail Tsatsenko <m.tsatsenko@gmail.com>
2015-04-10 10:21:01 +00:00
Baptiste Daroussin
06f79b66f2 Convert bsd.gnustep.mk to USES=gnustep
Simplify gnustep ports
Hook into the regular ports framework:
- LIB_DEPENDS for library dependencies
- Use regular USE_LDCONFIG

Reuse USES=objc (automatic)
USE_GNUSTEP is now a macro to set the dependencies and build feature needed.
Accepted arguments: back base build gui

Merge deskutils/preferencepanes into deskutils/systempreferences
2015-04-09 07:44:41 +00:00
Baptiste Daroussin
8157e9f800 Add a new USES=waf to handle the waf building system, allowing to factorise code
Plug waf into MAKE_CMD and CONFIGURE_CMD so the regular defined targets can be
reused

Always define _MAKE_JOBS so that when bsd.port.mk will stop overwritting
_MAKE_JOBS when parallel jobs are disabled we can enforce -j1 (which is needed
to really disable parallelisation with waf

WAF_CMD has been created to allow one to override the location of the waf script
relatively to WRKSRC

CONFIGURE_TARGET is by default defined to "configure"
ALL_TARGET is by default defined to "build"
INSTALL_TARGET is by default defined to "install"

USES=waf is by default stagedir safe
2015-04-08 15:05:48 +00:00
Matthew Seaman
a414b3c2ab Update to 4.4.1.1
Note: 4.4.1.1 is a quick fix just removing some debug code that was
accidentally left in 4.4.1.  The real meat of the changes are in 4.4.1

ChangeLog:	(for 4.4.1) http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.4.1/phpMyAdmin-4.4.1-notes.html/view
2015-04-08 14:21:26 +00:00
Sergey A. Osokin
0e736bceef Upgrade from 2.8.19 to 3.0.0.
Merge all changes from databases/redis-devel to databases/redis.

<ChangeLog>

Redis 3.0 release notes
=======================

--[ Redis 3.0.0 ] Release date: 1 Apr 2015

>> What's new in Redis 3.0 compared to Redis 2.8?

* Redis Cluster: a distributed implementation of a subset of Redis.
* New "embedded string" object encoding resulting in less cache
  misses. Big speed gain under certain work loads.
* AOF child -> parent final data transmission to minimize latency due
  to "last write" during AOF rewrites.
* Much improved LRU approximation algorithm for keys eviction.
* WAIT command to block waiting for a write to be transmitted to
  the specified number of slaves.
* MIGRATE connection caching. Much faster keys migraitons.
* MIGARTE new options COPY and REPLACE.
* CLIENT PAUSE command: stop processing client requests for a
  specified amount of time.
* BITCOUNT performance improvements.
* CONFIG SET accepts memory values in different units (for example
  you can use "CONFIG SET maxmemory 1gb").
* Redis log format slightly changed reporting in each line the role of the
  instance (master/slave) or if it's a saving child log.
* INCR performance improvements.

>> Refactoring changes (no new features nor bug fixes)

* Blocking operations full refactoring (blocked.c)
* Client output buffer memory tracking refactored.

</ChangeLog>
2015-04-07 22:28:20 +00:00
Sergey A. Osokin
75d697262a Upgrade from 3.0.0-rc4 to 3.0.0.
<ChangeLog>

--[ Redis 3.0.0 ] Release date: 1 Apr 2015

Changes between RC6 and 3.0.0 stable:

>> General changes

* Fixes to diskless replication. (Oran Agra)
* Test for BLPOP replication on role change. (Salvatore Sanfilippo)
* prepareClientToWrite() error handling improvements. (Salvatore Sanfilippo)
* Remove dict.c no longer used function. (Salvatore Sanfilippo)

>> Cluster changes

None

>> Sentinel changes

None

--[ Redis 3.0.0 RC6 (version 2.9.106) ] Release date: 24 mar 2015

Upgrade urgency: HIGH because of bugs related to Redis Custer and replication.

This is the 6th release candidate of Redis 3.0.0. This release fixes important
issues discovered during stress testing, and implements safest behavior
for blocking operations during clients reshardings, and a new much needed
functionality of Redis Cluster manual failovers.

In order to fix certain bugs quite a bit of refactoring was needed which
is usually non advisabble in a Release Candidate, but needed in order to
end with a clean fix.

>> General changes

* [FIX] Redis (non clustered & clustered) replication bug involving blocking
        operations: see issue #2473. (Salvatore Sanfilippo)

>> Cluster changes

* [FIX] clientsArePaused() fix crashing the old master during manual failover.
        (Salvatore Sanfilippo)
* [FIX] Lua scripts replication in Redis Cluster was totally broken.
        (Salvatore Sanfilippo)
* [FIX] Redirect clients blocked into list operations when the hash slot
        they are blocked into is migrated to another instance or the cluster
        state turns into "fail". (Salvatore Sanfilippo)

* [NEW] TAKEOVER option for CLUSTER FAILOVER implemented. It is now possible
        to fix a cluster manually in the minority side of the partition, for
        example in order to allow for multi DC setups & recovery.
        (Salvatore Sanfilippo)

>> Sentinel changes

No changes in Sentinel.

--[ Redis 3.0.0 RC5 (version 2.9.105) ] Release date: 20 mar 2015

Upgrade urgency: Moderate for Redis Cluster users, low otherwise.

This is the 5th release candidate of Redis 3.0.0, released in order to fix
a moderate bug in Redis Cluster. This RC does not shift in the future the
Redis 3.0.0 final release which is scheduled in a few days (we are in the
process of finishing the documentation for Redis Cluster).

>> General changes

* [FIX] Fix LATENCY command crash. (Salvatore Sanfilippo, thx to Ingmar)
* [FIX] Config: missing activerehashing option support in CONFIG SET added.
        (Salvatore Sanfilippo, thx to Bill Anderson)
* [FIX] Fix for backtrace generation issue. (Mariano Pérez Rodríguez, Matt Stancliff, Salvatore Sanfilippo)

* [NEW] Redis-cli --latency-dist backported from unstable.
        (Salvatore Sanfilippo)

>> Cluster changes

* [FIX] Avoid redundant SELECT in MIGRATE. (Tommy Wang, Salvatore Sanfilippo)
* [FIX] More robust slave check in CLUSTER REPLICATE. (Salvatore Sanfilippo)
* [FIX] Fixed possible Redis Cluster node crash due to wrong separation of
        concerns between getNodeByQuery() and Cluster global state update
        fnuction. (Salvatore Sanfilippo, thx to Ingmar)

* [NEW] Add command CLUSTER MYID to easily featch instance ID. (Michel Martens)

>> Sentinel changes

* [NEW] Support for CLIENT command added. It was missing in the command table.
        (Leandro López)

</ChangeLog>
2015-04-07 22:14:16 +00:00
Bartek Rutkowski
56915055be databases/slony1v2: port cleanup
- Use OPTIONS helpers for the PERLTOOLS option
- Remove a redundant block of code for setting PGSQL_VER: this
  functionality is already supplied via 'USES+= pgsql'
- Maintainer's timeout (olgeni@FreeBSD.org)

PR:		185906
Submitted by:	Matthew Seaman <matthew@FreeBSD.org>
2015-04-07 21:58:56 +00:00
Mikhail Teterin
c32249e08c Unbreak by asking php for sqlite3-extension offered by php-5.4 and
up, instead of sqlite. Upgrade from 1.2.3 to 1.2.4 released in 2010.

Do not install the empty TODO-file. Be sure to convert DOS ends-of-line.
Preserve time-stamps on files and directories, when installing.
Define LICENSE.
2015-04-07 20:14:55 +00:00
Antoine Brodin
fc3d807909 Fix DEPENDS 2015-04-07 19:38:48 +00:00
Sunpoet Po-Chuan Hsieh
5ec514ec7a - Update to 3.10
Changes:	https://github.com/facebook/rocksdb/releases
MFH:		2015Q2
2015-04-06 19:04:09 +00:00
Kurt Jaeger
cb2c6c1840 databases/cego: 2.20.24 -> 2.21.0
- Urgent fix in CegoFieldValue::comp method.
  New introduced null value comparison might result in a dump.
  Since, the new btree null value extension breaks specification
  to version 2.20, update to version 2.21 was required.

Submitted by:	lemke@lemke-it.com
2015-04-06 17:29:41 +00:00
Mark Felder
0da4de9835 Bump PORTREVISION to chase the new font paths
I've encountered rrd graphs with broken fonts because it still was
looking in old font location. Forcing a rebuild of rrdtool package fixes
it.
2015-04-06 15:20:21 +00:00
William Grzybowski
e2d949a5ed databases/pymongo: bump PORTREVISION
Forgotten in last commit.

Submitted by:	mat
2015-04-06 14:07:53 +00:00
Kurt Jaeger
a03a96bf62 databases/cego: 2.20.24 -> 2.20.25
- Added multibyte character evaluation in CegoOutput to show visible
  chain length
- added build_depends for a specific version of lfcbase

Submitted by:	lemke@lemke-it.com
2015-04-06 09:48:04 +00:00
Sunpoet Po-Chuan Hsieh
e18dfc170a - Update to 2.05
Changes:	http://search.cpan.org/dist/Mojo-Pg/Changes
2015-04-06 07:06:48 +00:00
Sunpoet Po-Chuan Hsieh
f80bcee455 - Add LICENSE
- Convert to new options helper
- While I'm here, fix indent

Approved by:	portmgr (blanket)
2015-04-05 18:26:05 +00:00
Sunpoet Po-Chuan Hsieh
0964469be6 - Add LICENSE
- Update RUN_DEPENDS
2015-04-05 18:26:00 +00:00
Sunpoet Po-Chuan Hsieh
4533380fe7 - Use USES=dos2unix and remove CRLF in patch file
- Use USES=tar:tgz
- Use COPYTREE_SHARE instead of CP -R
- Simplify Makefile
- Bump PORTREVISION for package change
2015-04-05 18:25:56 +00:00
Sunpoet Po-Chuan Hsieh
c48f4a821b - Update to 0.18.1
Changes:	https://bitbucket.org/ged/ruby-pg/src/default/History.rdoc
2015-04-05 18:25:51 +00:00
Bartek Rutkowski
bc9ff68573 databases/spatialite-tools: NEW PORT - Collection of CLI tools supporting SpatiaLite
spatialite-tools is a collection of open source Command Line Interface (CLI)
 tools supporting SpatiaLite.

* spatialite: a complete CLI front-end, more or less equivalent to the well
 known sqlite3 front-end, but fully supporting SpatiaLite
* spatialite_tool: a tool supporting import/export of Shapefiles and DBF-files
* shp_doctor: a diagnostic tool to check anomalous shapefiles
* exif_loader: an import tool for EXIF or EXIF-GPS (JPEG) pictures
* spatialite_network: a tool creating a VirtualNetwork (supporting
 shortest path / routing SQL queries)
* spatialite_gml: a tool importing GML files
* spatialite_convert: a tool converting DB-files from different versions
 of SpatiaLite
* spatialite_dxf: an tool importing DXF files
* OSM-tools: spatialite_osm_raw, spatialite_osm_filter, spatialite_osm_map,
 spatialite_osm_net, spatialite_osm_overpass: tools supporting
 OpenStreetMap datasets
* XML-tools: spatialite_xml_load, spatialite_xml_collapse,
 spatialite_xml_print, spatialite_xml_validator: tools supporting XML files
 processing

WWW: http://www.gaia-gis.it/fossil/spatialite-tools/index

PR:		197263
Submitted by:	Loic Bartoletti <coder@tuxfamily.org>
2015-04-05 11:21:44 +00:00
Palle Girgensohn
b6d78357da remove redundant cpe markers on the slave ports 2015-04-05 09:00:59 +00:00
Antoine Brodin
8aad2cc054 Mark BROKEN: fails to configure
CMake Error at cmake/ssl.cmake:247 (MESSAGE):
  Cannot find appropriate system libraries for SSL.  Make sure you've
  specified a supported SSL version.  Consult the documentation for WITH_SSL
  alternatives
Call Stack (most recent call first):
  CMakeLists.txt:442 (MYSQL_CHECK_SSL)

Reported by:	pkg-fallout
2015-04-05 07:36:51 +00:00
Steve Wills
5bd0631ba9 databases/rubygem-memcache: mark broken with ruby 2.2 also 2015-04-05 05:56:17 +00:00
Steve Wills
e5b37dc7f9 databases/postgresql-plruby: mark broken with ruby 2.2
While here, clean up plist a bit
2015-04-05 05:55:11 +00:00
Sunpoet Po-Chuan Hsieh
032583697d - Update to 2.0.7
- Adjust option descriptions
- Fix typo
- Cosmetic change

Changes:	http://trac.osgeo.org/postgis/browser/tags/2.0.7/NEWS
2015-04-04 19:37:19 +00:00
William Grzybowski
2bafadd6c3 databases/pymongo: add PKGNAMEPREFIX
Submitted by:	demon
2015-04-04 12:25:59 +00:00
Kurt Jaeger
7c3f5bc94d databases/cego: 2.20.23 -> 2.20.24
- Fix on update query for referenced attributes in nested select like
  update t1 tx set b = ( select d from t2 where t1.a = c )
  This table alias was not resolved correctly.

Submitted by:	lemke@lemke-it.com
2015-04-04 12:04:42 +00:00
Kurt Jaeger
9dad47d089 databases/cego: 2.20.22 -> 2.20.23
- SQL optimizer improvement was added. In case of select conditions
  with "a is null", neither index nor btree was used. Just for "a = null",
  the index was used. This has been fixed.
- Added fix for btree null value handling. A dedicated null value
  flag was introduced for each btree value ( class CegoBTreeValue )
  to handle null values.

Submitted by:	lemke@lemke-it.com
2015-04-03 20:02:03 +00:00
Steve Wills
60dd4f53e7 devel/rubygem-bdb1: also does not build with ruby 2.2 2015-04-03 17:04:36 +00:00
Matthew Seaman
b8b9ca3dee Update to 4.4.0
This is a routine bugfix and functionality update.

ChangeLog:	  http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.4.0/phpMyAdmin-4.4.0-notes.html/view
2015-04-03 16:31:18 +00:00
Adam Weinberger
78e63b16a5 Update to 2.03. Add EXAMPLES option.
Changes: https://metacpan.org/changes/distribution/Mojo-Pg
2015-04-03 16:30:07 +00:00
Steve Wills
d66b247666 databases/ruby-mysql: mark broken with ruby 2.2 2015-04-03 13:54:37 +00:00
Bartek Rutkowski
8e7427b5e6 databases/postgresql94-server: add CPE information
- Maintainer's timeout (pgsql@FreeBSD.org)

PR:		197489
Submitted by:	Shun <shun.fbsd.pr@dropcut.net>
2015-04-03 12:32:06 +00:00
Mathieu Arnold
0438143249 Remove OSVERSION checks that do not make sense any more.
For example (${OSVERSION} >= 900000 && ${OSVERSION} < 900021) is always true,
as is (${OSVERSION} > 900002 || ${OSVERSION} < 900000 && ${OSVERSION} > 800107).

Regarding patches, when an EXTRA_PATCHES is no longer needed, I remove it, when
it is always needed, I renamed it, in one case, I merged two patches.

Differential Revision:	https://reviews.freebsd.org/D2209
2015-04-03 11:26:48 +00:00
Steve Wills
fba40cb504 www/rubygem-rails: update rubygem-rails and friends to 3.2.21 2015-04-02 19:58:59 +00:00
Danilo Egea Gondolfo
4719435d05 - Update to 1.0.8 2015-04-01 20:32:04 +00:00
John Marino
c920e60679 databases/postgis21: Fix pkg-plist with RASTER option, DF support
PostGIS wouldn't build on DragonFly if the RASTER option was selected.
The fix is simple, set USES+= alias.  While here, fix the check pkg-plist
failure seen when RASTER OPTION set.  No revbump because RASTER is not
a default option, so no change to default package list.

Approved by:	Just fix it
2015-04-01 19:21:00 +00:00
Dmitry Marakasov
ef53e39211 - Strip library 2015-04-01 17:33:36 +00:00
Kurt Jaeger
7f2f83227b databases/sqlrelay: 0.58 -> 0.58.1
- fixed bugs that could cause sqlr-start with no id to crash and
  sqlr-start on an id with neither port nor socket defined to crash
2015-04-01 16:59:51 +00:00
Muhammad Moinur Rahman
9aaa6e83bc [NEW] databases/p5-DBICx-Sugar: Just some syntax sugar for DBIx::Class
Just some syntax sugar for your DBIx::Class applications. This was originally
created to remove code duplication between Dancer::Plugin::DBIC and
Dancer2::Plugin::DBIC.

WWW: http://search.cpan.org/dist/DBICx-Sugar/
2015-04-01 13:58:14 +00:00
Muhammad Moinur Rahman
94941a1055 databases/freetds-devel: Update version 0.92.984=>0.92.1003 2015-04-01 10:54:13 +00:00
Alex Dupre
80f23c7efb Update to 5.5.23 release. 2015-04-01 08:32:11 +00:00
Alex Dupre
27c4ca46c5 Update to 5.6.7 release. 2015-04-01 08:31:33 +00:00
Pietro Cerutti
6c676a63d1 - Update to 1.9.0 2015-03-31 22:26:26 +00:00
Adam Weinberger
42dbe6f512 Update to 2.02.
Changes: https://metacpan.org/changes/distribution/Mojo-Pg
2015-03-31 15:42:56 +00:00
Sunpoet Po-Chuan Hsieh
95c38dcf3e - Use USES=iconv:wchar_t
- Bump PORTREVISION for dependency change (on FreeBSD 10+)

PR:		186563
Submitted by:	romain
2015-03-31 13:36:37 +00:00
Dmitry Sivachenko
d578904879 Add an ability to start several carbon instances.
This may be useful to balance load between CPU cores or to
listen on IPv6 [::] in addition to IPv4 *.

PR:		198734
Submitted by:	Gennady Karpov <gekar@yandex-team.ru>
Approved by:	maintainer
2015-03-30 15:55:27 +00:00
Johannes Jost Meixner
d181cdd827 databases/puppetdb{,-terminus}: update to 2.2.2
- Update puppetdb to 2.2.2
- Update puppetdb-terminus to 2.2.2
- Hardcode puppetdb_log_file, as it can be overwritten
  in rc.conf if necessary.

PR:		198619
Submitted by:	Michael Moll <kvedulv@kvedulv.de>
Approved by:	mentors (implicit)
2015-03-30 15:48:33 +00:00
Steve Wills
b4b3c4d8ab databases/ruby-bdb: fix build with ruby 2.1 and 2.2
With hat:	ruby@
2015-03-30 13:16:20 +00:00
Matthew Seaman
0c4bf0e175 Update to 4.3.13
This is a routine bugfix update.

ChangeLog:	  http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.3.13/phpMyAdmin-4.3.13-notes.html/view
2015-03-29 18:10:37 +00:00
Koop Mast
f9d3d60f78 Add portscout macro to ignore this port and slaves. There will be no new
versions.
2015-03-29 14:29:10 +00:00
Baptiste Daroussin
7a51c3cc64 Convert to USES=autoreconf 2015-03-29 11:04:20 +00:00
Baptiste Daroussin
ad988ea7f8 Convert to USES=autoreconf 2015-03-29 11:02:59 +00:00
Adam Weinberger
737b14d165 Add databases/p5-Mango, a pure-perl, non-blocking MongoDB driver
designed for use with Mojolicious.
2015-03-28 19:15:45 +00:00
Rene Ladan
73e24dce7d Remove expired ports:
2015-03-28 audio/raproxy: Broken for more than 6 months
2015-03-28 converters/ruby-iconv: Not needed with Ruby 2.x
2015-03-28 databases/pydbdesigner: Broken for more than 6 months
2015-03-28 01:32:23 +00:00
Kurt Jaeger
d7f9488d5d databases/squirrel-sql: 3.5.3 -> 3.6.0
This update allows squirrel-sql to run on Java 1.8

Changelog:
http://sourceforge.net/p/squirrel-sql/git/ci/master/tree/sql12/core/doc/changes.txt

PR:		198843
Submitted by:	Jonathan Chen <jonc@chen.org.nz> (maintainer)
2015-03-27 21:08:45 +00:00
Jimmy Olgeni
5e46222f2d Add CPE information to databases/couchdb.
PR:		198963
Submitted by:	shun.fbsd.pr@dropcut.net
2015-03-27 20:39:00 +00:00
Muhammad Moinur Rahman
bd4e9971e2 databases/pecl-mongo: Fix missing 0 in BUILD_DEPENDS
Submitted by:	sunpoet
2015-03-27 19:35:07 +00:00
Pawel Pekala
1d30f28869 Update to version 3.8.8.3
PR:		198787
Submitted by:	Pavel Volkov <pavelivolkov@gmail.com> (maintainer)
2015-03-27 17:09:06 +00:00
Pawel Pekala
caf28e6cec Update to version 3.8.8.3
PR:		198786
Submitted by:	Pavel Volkov <pavelivolkov@gmail.com> (maintainer)
2015-03-27 17:02:30 +00:00
Muhammad Moinur Rahman
2d336c3cac databases/pecl-mongo: Update version 1.6.5=>1.6.6 2015-03-27 14:43:23 +00:00
Dmitry Marakasov
6fdd664665 - Add LICENSE
- Strip library
2015-03-27 10:30:20 +00:00
Koop Mast
09e627a363 Update the Gnome stack to the latest in the 3.14 series.
Thanks to Gustau Pérez <gustau.perez@gmail.com> for helping to keep thes
   ports updated.

Obtained from:	GNOME dev repo
2015-03-27 09:24:39 +00:00
Jung-uk Kim
86aaf8b926 Fix compiler warnings, i.e., "-lpthread: 'linker' input unused". 2015-03-26 23:02:48 +00:00
Jung-uk Kim
ff9e0a2850 Fix compiler warnings, i.e., "-lpthread: 'linker' input unused". 2015-03-26 22:59:45 +00:00
Mark Felder
597eefaf2b Fix building on FreeBSD 10+
Fix conflicts between client, server, and script packages
Shebangfix

The plists now are closer aligned with the mysql51-* ports

PR:		197679
PR:		171338
2015-03-26 19:24:15 +00:00
John Marino
534766ffae databases/virtusos: take III
It turns out the problematic directory is used, but only if the
ImageMagick option is set.  Adjust accordingly, and hopefully this is
the final attempt to fix.
2015-03-25 17:57:03 +00:00
Adam Weinberger
fe70596ff8 Update to 2.01.
Changes: https://metacpan.org/changes/distribution/Mojo-Pg
2015-03-25 16:45:45 +00:00
Sunpoet Po-Chuan Hsieh
b9add4e33e - Add LICENSE 2015-03-25 15:52:26 +00:00
Sunpoet Po-Chuan Hsieh
7c0d59ffd1 - Update USE_BDB
- Use -lpthread instead of -pthread
- Cleanup -lpthread/-pthread manipulation
2015-03-25 15:45:16 +00:00
Adam Weinberger
9755911db7 Update to 2.0.
Changes: https://metacpan.org/changes/distribution/Mojo-Pg

Note that this version removes some previously-deprecated methods.
2015-03-25 15:22:35 +00:00
Sunpoet Po-Chuan Hsieh
d570fa6b8a - Cleanup -lpthread/-pthread manipulation 2015-03-25 14:58:46 +00:00
Sunpoet Po-Chuan Hsieh
871e293de1 - Cleanup -lpthread/-pthread manipulation 2015-03-25 14:58:40 +00:00
John Marino
ef80deddf0 databases/virtusos: remove entire hosting directory
When I tested the fix to virtuoso, the directory was empty, but according
to a report, it isn't always.  Change rmdir to rm -rf so the port
builds in all cases.  No bump necessasry.
2015-03-25 12:17:39 +00:00
John Marino
8f3cf904a9 databases category: Remove $PTHREAD_LIBS
Note: virtuoso did not pass check-plist from before, so it was fixed.

approved by:	PTHREAD blanket
2015-03-25 09:33:52 +00:00
Sunpoet Po-Chuan Hsieh
b4872adff4 - Cleanup WRKSRC: leading v in GH_TAGNAME is removed from DISTNAME in r382120 2015-03-24 18:24:27 +00:00
Sunpoet Po-Chuan Hsieh
392d9ad8e8 - Cleanup -lpthread/-pthread manipulation 2015-03-24 17:53:59 +00:00
Dmitry Marakasov
c935e9ca7c - Strip library 2015-03-24 13:30:42 +00:00
Dmitry Marakasov
78c6df534e - Clarify LICENSE
- Add LICENSE_FILE
- Strip library
2015-03-24 13:30:30 +00:00
Matthew Seaman
a8b341e2a4 Update to 5.1.35
ChangeLog:	http://dev.mysql.com/doc/relnotes/connector-j/en/news-5-1-35.html
2015-03-24 11:16:02 +00:00
Muhammad Moinur Rahman
ab3ab4f700 databases/freetds-devel: Update version 0.92.872=>0.92984
- Fix PORTEPOCH which was unintentionally removed at r378508
2015-03-24 11:12:21 +00:00
Bryan Drewery
4ed6caf58c Don't needlessly override MAKE_CMD and also respect DISABLE_MAKE_JOBS. 2015-03-22 21:11:31 +00:00
Baptiste Daroussin
a5da770e67 Make fonts repecting XDG
Xorg is now looking in ${LOCALBASE}/share/fonts by default
Xorg now accepts symlinks in etc/X11/fontpath.d (as decribed in Xserver(1))
Large cleanup on lots of font ports
All fonts are now properly dynamically generating fonts.dir and fonts.scale
instead of sometime overwriting existing ones)
All fonts are generating fontconfig's cache
Improve consistency in fonts ports
2015-03-21 23:05:19 +00:00
Sunpoet Po-Chuan Hsieh
61cd7e4039 - Use USES=pkgconfig 2015-03-21 22:00:31 +00:00
Sunpoet Po-Chuan Hsieh
f179b8406a - Add SASL option
PR:		182449
Submitted by:	<dereckson@gmail.com>, <niels.poppe@gmail.com>
2015-03-21 20:50:59 +00:00
Max Khon
269897ce4b - Replace deprecated des_ methods with DES_ (fixed the build with LibreSSL)
- Bump PORTREVISION

PR:		198368
Submitted by:	Bernard Spil
2015-03-21 20:29:41 +00:00
Sunpoet Po-Chuan Hsieh
14ffee87c2 - Convert to new USE_GITHUB usage and remove deprecated GH_COMMIT 2015-03-21 19:40:35 +00:00
Sunpoet Po-Chuan Hsieh
4659d1ce30 - Update to 0.082820
Changes:	http://search.cpan.org/dist/DBIx-Class/Changes
2015-03-21 19:39:32 +00:00
Sunpoet Po-Chuan Hsieh
1bdb3990e7 - Convert to new USE_GITHUB usage and remove deprecated GH_COMMIT
- Add GitHub repository to WWW
2015-03-21 19:37:17 +00:00
John Marino
796146e3a0 databases/php53-redis: Deprecate, remove on 15 APR 2015
Remove with the rest of the php53 ports in ~4 weeks.

PR:	198150
2015-03-21 18:58:04 +00:00
John Marino
2899abe804 php53 and fallout: Deprecate, set removal for 15 APR 2015
The PHP developers stopped providing security patches for the 5.3
branch on 14 August 2014.  They "strongly urge" to upgrade to current
versions "as using older versions may expose you to security
vulnerabilities and bugs that have been fixed in more recent versions"
of PHP.

The PHP53 branch was released from maintainership today, so it's being
deprecated with removal set for 15 April 2015.

There were only 8 ports limited to php53, six of which were pecl- ports.
These ports must be upgraded to use a later version of php (5.6 is
recommended) soon, or they will be removed with php53.

Note that all 8 ports incorrectly set the PHP_DEFAULT_VERSION, so this
was changed to use IGNORE_WITH_PHP instead while here.

PR:		198150
2015-03-21 18:40:15 +00:00
Steven Kreuzer
a99fde5222 Update to version 0.4.0 2015-03-20 14:55:54 +00:00
Sunpoet Po-Chuan Hsieh
2262e8c295 - Update to 1.17
Changes:	http://search.cpan.org/dist/Mojo-Pg/Changes
2015-03-20 13:30:00 +00:00
Bartek Rutkowski
d1284df542 databases/postgresql93-server: add CPE information
- Maintainer's timeout (pgsql@FreeBSD.org)

PR:		197488
Submitted by:	Shun <shun.fbsd.pr@dropcut.net>
2015-03-20 08:59:54 +00:00
Bartek Rutkowski
8d240871de databases/postgresql92-server: add CPE information
- Maintainer's timeout (pgsql@FreeBSD.org)

PR:		197487
Submitted by:	Shun <shun.fbsd.pr@dropcut.net>
2015-03-20 08:58:14 +00:00
Bartek Rutkowski
2621a39717 databases/postgresql91-server: add CPE information
- Maintainer's timeout (pgsql@FreeBSD.org)

PR:		197486
Submitted by:	Shun <shun.fbsd.pr@dropcut.net>
2015-03-20 08:42:18 +00:00
Bartek Rutkowski
560c9cffad databases/postgresql90-server: add CPE information
- Maintainer's timeout (pgsql@FreeBSD.org)

PR:		197485
Submitted by:	Shun <shun.fbsd.pr@dropcut.net>
2015-03-19 22:08:16 +00:00
Bryan Drewery
5b5a90256d Update USE_GITHUB so it does not require GH_COMMIT.
Using this new scheme allows only setting the _tag_ or _commit hash_ in
GH_TAGNAME and not having to know the hash for a tag.  This scheme will
download a tarball that has a different checksum than before due to a changed
directory name for extraction.

The following MASTER_SITES are provided to retain the old checksum and
directory structure (that require GH_COMMIT):
  GH -> GHL
  GITHUB -> GITHUB_LEGACY

Differential Revision:	https://reviews.freebsd.org/D748
Submitted by:	amdmi3
Reviewed by:	mat, swills, antoine, bdrewery
With hat:	portmgr
2015-03-19 16:44:57 +00:00
Sunpoet Po-Chuan Hsieh
42b0644755 - Update to 1.16
Changes:	http://search.cpan.org/dist/Mojo-Pg/Changes
2015-03-19 16:44:27 +00:00
Sunpoet Po-Chuan Hsieh
1fa812221a - Update to 1.54
- Cleanup MASTER_SITES

Changes:	https://github.com/linsomniac/python-memcached/blob/master/ChangeLog
2015-03-19 16:43:46 +00:00
Bartek Rutkowski
1f535dc2af databases/gnats4: add CPE information
- Fix pkg-plist missing @dir entry

PR:		198635
Submitted by:	Shun <shun.fbsd.pr@dropcut.net>
Approved by:	maintainer
2015-03-18 19:59:33 +00:00
Sunpoet Po-Chuan Hsieh
a6bde1ce81 - Update to 0.708.0.0
- Fix PORTSCOUT

Changes:	http://search.cpan.org/dist/MongoDB/Changes
2015-03-18 15:25:50 +00:00
Sunpoet Po-Chuan Hsieh
7c152f8a05 - Update to 0.814
Changes:	http://search.cpan.org/dist/Rose-DB-Object/Changes
2015-03-18 15:20:14 +00:00
Sunpoet Po-Chuan Hsieh
434b53b6cd - Update to 1.15
Changes:	http://search.cpan.org/dist/Mojo-Pg/Changes
2015-03-18 15:19:36 +00:00
Dmitry Marakasov
d03c0e3c1e - Add LICENSE
- Strip library
2015-03-18 14:16:02 +00:00
Sunpoet Po-Chuan Hsieh
ce559b97da - Update to 0.777
Changes:	http://search.cpan.org/dist/Rose-DB/Changes
2015-03-18 13:02:18 +00:00
Frederic Culot
6e2c4e6436 - Update to 5.0.17
Changes:	http://sourceforge.net/projects/dbh/files/dbh/
2015-03-17 10:11:57 +00:00
Pietro Cerutti
675c004021 - Update to 1.0.3 2015-03-16 22:14:04 +00:00
Adam Weinberger
41eefa365b Update to 2.0011.
Changes: https://metacpan.org/changes/distribution/DBM-Deep

PR:		198455
Approved by:	maintainer
2015-03-16 20:43:57 +00:00
Jimmy Olgeni
2712b86d69 Use @sample keyword to set owner for local.ini.sample.
Submitted by:	bapt
2015-03-15 11:41:38 +00:00
Jimmy Olgeni
0dc0d60491 Set @owner to couchdb for local.ini.sample.
CouchDB's administration interface should be able to modify this file.

PR:		198597
Submitted by:	Yuri
2015-03-15 11:35:34 +00:00
Pawel Pekala
4d918154d8 libpqtypes is a libpq extension that offers a new way of handling parameterized
queries and getting result field values. Both putting parameters and getting
values use a printf/scanf style interface, with consistent specifiers for both.

WWW: http://libpqtypes.esilo.com/

PR:		196767
Submitted by:	Dave Green <dg@fastmail.co.uk>
2015-03-14 18:16:05 +00:00
Matthew Seaman
a2a55761dc Update to 4.3.12
This is a routine bugfix update.

Change Log:	  http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.3.12/phpMyAdmin-4.3.12-notes.html/view
2015-03-14 14:05:45 +00:00
Muhammad Moinur Rahman
11f82ec66b databases/postgresql-odbc: Update version 09.01.0200=>09.03.0400
- Take MAINTAINERSHIP

Approved by:	bapt marino (implicit)
2015-03-14 12:58:53 +00:00
Muhammad Moinur Rahman
bf346ae4b3 databases/pecl-mongo: Update version 1.6.4=>1.6.5
- Take MAINTAINERSHIP

Approved by:	bapt marino (implicit)
2015-03-14 11:58:38 +00:00
Grzegorz Blach
770db66591 Fix pkgconf file
PR:		198513
Obtained from:	github.com/redis/hiredis
2015-03-13 20:49:10 +00:00
Adam Weinberger
9e00ce3f62 Some OCD cleanups on some of the perl@ ports.
- Remove dependencies in core
- Put testing depends in TEST_DEPENDS
- Remove unnecessary bsd.port.options.mk inclusions
- Remove checks for Perl versions that no longer exist in the ports tree
- Sort plists, some of which were so jumbled that I have to assume
  the plist was randomized before committing

A lot of the plist changes in this commit are moving PERL5_MAN3 after
SITE_PERL. It's repo churn now, but it makes updating the ports later
far easier.
2015-03-12 23:00:02 +00:00
Sunpoet Po-Chuan Hsieh
21070be461 - Update MAINTAINER: use @FreeBSD.org 2015-03-12 17:12:19 +00:00
Adam Weinberger
efb6e310a6 Update to 1.14.
Changes: https://metacpan.org/changes/distribution/Mojo-Pg
2015-03-12 16:02:35 +00:00
Martin Matuska
0c00075311 Horde package update:
comms/pear-Horde_ActiveSync 2.26.0 -> 2.26.1
devel/pear-Horde_Core 2.19.0 -> 2.19.2
security/pear-Horde_Group 2.0.4 -> 2.0.5
databases/pear-Horde_HashTable 1.2.2 -> 1.2.3
www/pear-Horde_Http 2.1.3 -> 2.1.4
mail/pear-Horde_Imap_Client 2.26.1 -> 2.27.0
mail/pear-Horde_Mime 2.7.0 -> 2.8.0
mail/pear-Horde_Smtp 1.8.0 -> 1.9.0
net/pear-Horde_Socket_Client 1.1.2 -> 2.0.0
devel/pear-Horde_Util 2.5.3 -> 2.5.4
2015-03-12 09:17:40 +00:00
Adam Weinberger
0204c27536 Update to 1.13.
Changes: https://metacpan.org/changes/distribution/Mojo-Pg
2015-03-11 15:57:29 +00:00
Mathieu Arnold
ca48551f1e Update to 5.3.1.
Sponsored by:	Absolight
2015-03-11 15:03:35 +00:00
Dmitry Marakasov
b78d5f4e96 - Move dbdir to /var
- Add empty directories to plist
2015-03-11 14:42:42 +00:00
Dmitry Marakasov
dbe2224f4f - Add empty directory to plist 2015-03-11 14:41:40 +00:00
Adam Weinberger
ea68ee3ef3 Update to 1.12.
Changes: https://metacpan.org/changes/distribution/Mojo-Pg
2015-03-09 21:00:40 +00:00
Jason Helfman
6e98d75e51 - re-insert distutils 2015-03-09 16:15:01 +00:00
Jason Helfman
eed85ded3e - update comment
- define python versions
- sort python uses
2015-03-09 16:14:11 +00:00
Mikhail Teterin
16c26d2bbb Unbreak by adding a "const-poisoning" patch. 2015-03-09 00:20:39 +00:00
Mikhail Teterin
c8124089d0 Unbreak by working-around the short-comings of the current scintilla
port -- the installed shared library no longer links with Gnome shared
libraries, which it is using requiring any users of -lscintilla to link
with them explicitly..
2015-03-09 00:01:44 +00:00
Matthew Seaman
d2e076f8ef Security update to 4.3.11.1
Security Advisory: http://www.phpmyadmin.net/home_page/security/PMASA-2015-1.php
Release Notes:	   http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.3.11.1/phpMyAdmin-4.3.11.1-notes.html/view

Security:	81b4c118-c586-11e4-8495-6805ca0b3d42
2015-03-08 16:56:23 +00:00
Muhammad Moinur Rahman
0f4f9e32bb databases/postgresql-repmgr: Update version 2.0=>2.0.2
Approved by:	bapt marino (implicit)
2015-03-08 11:48:25 +00:00
Mikolaj Golub
429e22be61 Update to 1.2.7. 2015-03-07 15:19:44 +00:00
Antoine Brodin
dc7c4d1d72 gmake:lite is only intended to be used for possible gmake dependencies 2015-03-07 13:19:46 +00:00
Wen Heping
5f1ebdca3a - Mark BROKEN on 8.x 2015-03-07 09:14:35 +00:00
Adam Weinberger
b9a8e857ba Update to 4.031.
Changes: https://metacpan.org/changes/distribution/DBD-mysql
2015-03-06 22:43:28 +00:00
Sunpoet Po-Chuan Hsieh
1a4399299f - Update and sort RUN_DEPENDS: net/rubygem-openid was renamed to net/rubygem-ruby-openid
- Bump PORTREVISION for dependency change
2015-03-06 22:41:30 +00:00
Brad Davis
bb3bfa5bc9 Update databases/mariadb100-{server,client} to 10.0.17.
Pet portlint while here.

PR:		198310
Submitted by:	Bernard Spil <spil.oss@gmail.com>
Approved by:	zi (mentor)
2015-03-05 21:15:50 +00:00
Dan Langille
7cc58abebd Update to 1.2.19
NOTE: doc/en was not included in this release
Approved by: mat (mentor)
2015-03-05 19:47:11 +00:00
Sunpoet Po-Chuan Hsieh
8940c113d4 - Add LICENSE
- Sort RUN_DEPENDS
2015-03-05 17:28:42 +00:00
Sunpoet Po-Chuan Hsieh
5201168753 - Update to 1.11
- Sort *_DEPENDS

Changes:	http://search.cpan.org/dist/Mojo-Pg/Changes
2015-03-05 17:28:07 +00:00
Sunpoet Po-Chuan Hsieh
a8f46ef472 - Add PORTSCOUT 2015-03-05 17:27:57 +00:00
Sunpoet Po-Chuan Hsieh
d8e4d306b9 - Update to 1.2.20.0
Changes:	http://trac.xapian.org/wiki/ReleaseOverview/1.2.20
		http://search.cpan.org/dist/Search-Xapian/Changes
2015-03-05 17:27:10 +00:00
Sunpoet Po-Chuan Hsieh
a4f7bb8d64 - Update to 1.2.20
Changes:	http://trac.xapian.org/wiki/ReleaseOverview/1.2.20
2015-03-05 17:27:05 +00:00
Sunpoet Po-Chuan Hsieh
640a7e073f - Update to 1.2.20
Changes:	http://trac.xapian.org/wiki/ReleaseOverview/1.2.20
2015-03-05 17:26:59 +00:00
Dmitry Marakasov
9b0bcdfd55 - Add LICENSE
- Fix examples installation
2015-03-05 14:37:47 +00:00
Bartek Rutkowski
2ec749d13b databases/mariadb-server: change MAINTAINER
- Change MAINTAINER to <spil.oss@gmail.com> (maintainer approved)

PR:		198305
Submitted by:	Geoffroy Desvernay <dgeo@centrale-marseille.fr>
2015-03-05 13:02:15 +00:00
Dmitry Marakasov
0c4e4debb6 - Simplify MASTER_SITES
- Add LICENSE_FILE
- Simplify the port
- Fix typo which prevented correct examples packaging
2015-03-05 03:11:21 +00:00
Raphael Kubo da Costa
e3dad0e904 Update PyQt and its dependencies.
* PyQt4 has been updated to 4.11.3.
* QScintilla has been updated to 2.8.4.
* SIP has been updated to 4.16.5.

This update is much smaller than the previous one, as there has been no
further need for clean ups in the ports infrastructure.

Pretty much the entire patch set has been originally contributed by Tobias
Berner, who sent it to the KDE on FreeBSD mailing list. Thanks a lot!

PR:		198016
Submitted by:	Tobias Berner <tcberner@gmail.com>
2015-03-04 23:20:47 +00:00
Vanilla I. Shu
62ad7fd2df Upgrade to 1.6.4. 2015-03-04 09:59:27 +00:00
Muhammad Moinur Rahman
22eeef3293 databases/p5-Dancer-Plugin-DBIC: Update version 0.2100=>0.2101
- Move p5-SQL-Translator to BUILD_DEPENDS as it is a prerequisite for
  building it and hence has been moved from TEST_DEPENDS

Approved by:	bapt marino (implicit)
2015-03-04 07:53:00 +00:00
John Marino
b8c4451936 databases/apq-mysql: Support default MySQL (5.6)
This port generates some headers based on MySQL headers, and a couple
of the variables must have been deprecated because the resulting
variable name ended in "__UNUSED".  Double underscores are not allowed
in Ada, so the build broke.

Since the Ada header is generated during the configure phase, I'm adding
a post-configure target to replace "__" with "_" to restore the build.

Since the dependencies change from MySQL 5.5 to MySQL 5.6, revbump.
2015-03-03 14:55:28 +00:00
Baptiste Daroussin
afe1d1c720 Remove Authors and License from pkg-descr 2015-03-02 23:16:01 +00:00
Kurt Jaeger
e3a4b1136f databases/cego: 2.20.21 -> 2.20.22
- Added command line parameter validation for poolsize, numdbthread,
  numadminthread and numlogthread parameters
- Fix in CegoFactor::evalFieldValue : For the QUERY case, the select
  instance was not reset. Since the query starts from a undefined point,
  this might lead to "list position exceeded" exceptions
- Fix in CegoQueryHelper::evalSelection for isAgg-case

Submitted by:	Björn Lemke <lemke@lemke-it.com> (author)
2015-02-28 12:29:19 +00:00
Antoine Brodin
22595a4936 Deprecate ports broken for more than 6 months 2015-02-28 12:23:50 +00:00
Matthias Andree
7e6b6709f5 antoine, four months are too long.
There needs to be pressure on *coin, and they seem to be making some progress.
2015-02-28 11:16:33 +00:00
John Marino
5161093205 databases/opendbx: add USES+= readline
This started failing without a recent change to opendbx, so a dependency
most have stopped pulling in readline.  The configure error was:

   error: readline library (libreadline) not found

approved by:	blanket
2015-02-27 19:03:07 +00:00
Antoine Brodin
01419cacf4 Extend expiration date of 4 months, *coin ports still need it 2015-02-27 16:53:21 +00:00
Dmitry Sivachenko
9807838aec Update to version 0.98.9.
PR:		198040
Submitted by:	Freddy Andersen <freddy@cfandersen.com>
2015-02-26 17:29:39 +00:00
Adam Weinberger
e2098037aa Remove TEST dependency on p5-Test-Simple when the version in core is
sufficient.

Thanks to az for showing me the light here.
2015-02-26 16:54:41 +00:00
Bartek Rutkowski
cc5d0ca1f5 databases/pgworksheet: set MAINTAINER and fixes
- Set MAINTAINER to portmaster@BSDforge.com
- Adjust pkg-descr text
- Fix WWW url

PR:		197557
Submitted by:	Chris Hutchinson <portmaster@bsdforge.com>
2015-02-26 15:10:16 +00:00
Adam Weinberger
eb14292ff5 p5-Test-Simple is a TEST depend, not BUILD/RUN. 2015-02-25 17:58:59 +00:00
Andrej Zverev
ba9b1e4c50 - point WWW page to meta::cpan 2015-02-25 17:47:52 +00:00
John Marino
0e773465fa databases/mongodb: Pass CXXFLAGS instead of CFLAGS
Mongo is a c++ program, and the REINPLACE command was affecting the
CCFLAGS variable, not the CFLAGS variable.  In most cases, but not all,
CXXFLAGS and CFLAGS have the same value though.

Approved by:	just fix it.
2015-02-25 14:07:23 +00:00
Antoine Brodin
8842ccdc9a Those ports do not build with php 5.6 2015-02-25 11:22:40 +00:00
Vanilla I. Shu
71fef51ef4 remove DEFAULT_VERSIONS.
Obtained from:	bapt@, mat@
2015-02-25 07:36:37 +00:00
Jan Beich
67d817cd0c - Update to 1.1.11
- Require PostgreSQL 9.1+
- Strip binaries
- Sync pkg-descr
- Pass maintainership

PR:		197586
Submitted by:	Chris Hutchinson <portmaster@bsdforge.com>

ChangeLog:
- Supports PostgreSQL 9.4
- Change not to wait for transactions in different databases.
- Support for DESC, NULLS FIRST/LAST, COLLATE to index keys.
2015-02-24 17:44:02 +00:00
Jimmy Olgeni
2bc036ce3b Allow passing ERL_ZFLAGS to CouchDB via couchdb_erl_flags in rc.conf.
ERL_ZFLAGS is used to configure the Erlang VM itself (see also
erl(1), "EMULATOR FLAGS")

PR:		197847
Submitted by:	Dave Cottlehuber
2015-02-24 14:56:22 +00:00
Vanilla I. Shu
e1cc10bb34 Add LICENSE/LICENSE_FILE. 2015-02-24 02:47:25 +00:00
Vanilla I. Shu
12719fc5f8 1: make portlint happy.
2: switch to DEFAULT_VERSIONS.
2015-02-24 02:45:52 +00:00
Vanilla I. Shu
c8e6ea768a switch to USES=tar:tgz. 2015-02-24 02:44:43 +00:00
Vanilla I. Shu
3160dc187c 1: add LICENSE/LICENSE_FILE.
2: switch to DEFAULT_VERSIONS.
2015-02-24 02:29:40 +00:00
Grzegorz Blach
c09a26e47b - Update to 0.12.1
- Strip libhiredis.so
2015-02-23 18:48:40 +00:00
Frederic Culot
7f1198aade - Update to 1.4.3
PR:		197759
Submitted by:	Jose Jachuf <jjachuf@gmail.com> (maintainer)
2015-02-23 14:34:14 +00:00
Frederic Culot
d67c68c8e7 - Update to 0.9.6
PR:		197758
Submitted by:	Jose Jachuf <jjachuf@gmail.com> (maintainer)
2015-02-23 14:19:53 +00:00
Matthew Seaman
2527c94bc4 Update distinfo for the tutorial document
Fix random capitalization

Submitted by:	Jimmy Olgeni <olgeni@olgeni.com>
2015-02-23 11:14:23 +00:00
Sunpoet Po-Chuan Hsieh
66107d042b - Update to 0.55
- Sort PLIST

Changes:	http://search.cpan.org/dist/BerkeleyDB/Changes
2015-02-22 12:50:15 +00:00
Sunpoet Po-Chuan Hsieh
235a66a105 - Add PORTSCOUT 2015-02-22 05:56:14 +00:00
Ruslan Makhmatkhanov
332a493842 databases/sqldeveloper: version update
- update to 4.0.3.16.84
- pass maintainership to submitter
- unmute installation commands

PR:		196352
Submitted by:	mizhka@gmail.com
2015-02-21 22:18:22 +00:00
Bartek Rutkowski
4a30174693 databases/riak: update 1.4.10 -> 1.4.12
- Fix issue with starting Riak due to incorrect dirs ownership

PR:		195220
2015-02-21 20:39:33 +00:00
Matthew Seaman
2837aac253 Update to 4.3.10
This is a routine bugfix update

     - Drop @dirrm, @dirrmtry from plist

Change Log: http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.3.10/phpMyAdmin-4.3.10-notes.html/view
2015-02-21 19:39:20 +00:00
Adam Weinberger
b689e2cec3 Use metacpan as the WWW instead of Mojolicious's POD interface.
Suggested by: 	az
2015-02-21 18:48:29 +00:00
Adam Weinberger
ae2170cacf Add databases/p5-Mojo-Pg, a PostgreSQL integration for Mojolicious. 2015-02-21 16:30:34 +00:00
Pawel Pekala
5e7cac6b27 - Update to version 5.3.4 [1]
- Mark ignored for versions 51 and 55 of mysql [1]
- Move things to proper places in Makefile
- Remove PLIST_SUB, no subs needed
- Define DOCS option, port uses PORTDOCS
- Switch to PLIST_FILES, port installs only 3 files
- Remove Author tag from pkg-descr file

PR:		197348 [1]
Submitted by:	timp87@gmail.com [1]
Approved by:	maintainer timeout
2015-02-21 15:13:15 +00:00
Pawel Pekala
b3b7e8761b VirtualPG is a loadable dynamic extension to both SQLite and SpatiaLite.
Its intended scope is supporting direct SQL access to PostgreSQL and PostGIS own
tables, so to make any possible kind of data exchange between these two popular
open source Spatial DBMSes as straightforward and simple as possible.

WWW: http://www.gaia-gis.it/fossil/virtualpg/index

PR:		197261
Submitted by:	Loïc BARTOLETTI <coder@tuxfamily.org>
2015-02-21 13:58:02 +00:00
John Marino
34407a1cc6 databases/rocksdb: Remove -Werror from flags
RocksDB defines a number of variables it doesn't use, so it fails Werror
on modern compilers that check for this.  Remove the -Werror flag from
the Makefile with sed since we are using it anyway.

Approved by:	blanket
2015-02-21 13:03:23 +00:00
Sunpoet Po-Chuan Hsieh
ddbca3c0f5 - Update to 3.9.1
Changes:	https://github.com/facebook/rocksdb/releases
2015-02-21 08:38:49 +00:00
Sergey A. Osokin
11f341192e Upgrade from 3.0.0-rc3 to 3.0.0-rc4.
<ChangeLog>

--[ Redis 3.0.0 RC4 (version 2.9.104) ] Release date: 13 feb 2015

Upgrade urgency: High for Redis if you use LRU eviction, low otherwise.

This is the 4th release candidate of Redis 3.0.0, it fixes problems with
LRU eviction that are not present in older release (2.8.x is not affected)
and adds new tools to inspect latency and load-test LRU.

>> General changes

* [FIX] redis-cli CSV output NIL spurious newline removed. (Matt Collier)
* [FIX] Memory efficiency test in unit test is now much faster: it affacted
        the total "make test" execution time in a bad way.  (Salvatore
        Sanfilippo)
* [FIX] Fixes and improvements to dict.c and LRU eviction. Redis 3.0.0 new
        LRU eviction had bugs creating high latency spikes when LRU was
        happening during the keys dictionary rehashing. This bug is not
        present into 2.8, was 3.0 specific. As a side effect of this issue
        dict.c is now improved, and LRU algorithm is more precise (better
        approximates true LRU). This was a joint effort, see issue
        #2306 for details. (Oran Agra, Sun He, Salvatore Sanfilippo).
        Thanks to Charsyam for spotting an integer overflow.

* [NEW] New latency tool: redis-cli --latency-dist is able to show an
        xterm-256 based spectrum of latencies over time. (Salvatore Sanfilippo)
* [NEW] redis-cli --lru-test implemented (cache workload simulator). (Salvatore
        Sanfilippo)
* [NEW] redis-cli --stat now shows LOAD when Redis is loading data.
* [NEW] Support "1G" etc. units in CONFIG SET. (Chris Lamb, Salvatore
        Sanfilippo)

>> Cluster changes

* None.

>> Sentinel changes

* None.

</ChangeLog>
2015-02-21 02:47:43 +00:00