aboutsummaryrefslogtreecommitdiff
path: root/databases
Commit message (Collapse)AuthorAgeFilesLines
* Convert GMAKE to MAKE_CMDBaptiste Daroussin2014-06-254-12/+12
| | | | | | | | | | Please note that lots of invocation of MAKE_CMD here are wrong as they do not properly respect MAKE_ENV and friends With hat: portmgr Notes: svn path=/head/; revision=359185
* Properly call MAKE_CMDBaptiste Daroussin2014-06-241-2/+2
| | | | Notes: svn path=/head/; revision=359155
* Properly call MAKE_CMDBaptiste Daroussin2014-06-243-15/+15
| | | | Notes: svn path=/head/; revision=359153
* Properly call MAKE_CMDBaptiste Daroussin2014-06-243-6/+6
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=359152
* Properly use the frameworkBaptiste Daroussin2014-06-241-3/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=359151
* Properly call MAKE_CMDBaptiste Daroussin2014-06-241-2/+2
| | | | Notes: svn path=/head/; revision=359150
* Convert GMAKE to MAKE_CMDBaptiste Daroussin2014-06-241-1/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=359149
* Update to 5.0.0.Mathieu Arnold2014-06-245-26/+24
| | | | | | | Sponsored by: Absolight Notes: svn path=/head/; revision=359108
* Change maintainer address to robak@FreeBSD.orgBartek Rutkowski2014-06-231-1/+1
| | | | | | | Approved by: swills (mentor) Notes: svn path=/head/; revision=359006
* - Update to 1.2.18.0Sunpoet Po-Chuan Hsieh2014-06-232-3/+3
| | | | | | | | Changes: http://trac.xapian.org/wiki/ReleaseOverview/1.2.18 http://search.cpan.org/dist/Search-Xapian/Changes Notes: svn path=/head/; revision=358985
* - Update to 1.2.18Sunpoet Po-Chuan Hsieh2014-06-232-5/+4
| | | | | | | | | - Use USES=libtool Changes: http://trac.xapian.org/wiki/ReleaseOverview/1.2.18 Notes: svn path=/head/; revision=358984
* - Update to 1.2.18Sunpoet Po-Chuan Hsieh2014-06-233-6/+6
| | | | | | | | | - Use USES=libtool Changes: http://trac.xapian.org/wiki/ReleaseOverview/1.2.18 Notes: svn path=/head/; revision=358983
* - Use the more standard DOCS option instead of HTMLDOCS.Raphael Kubo da Costa2014-06-231-9/+7
| | | | | | | | | | | | - Set PYTHON_CONCURRENT_INSTALL and do not manually set DOCSDIR so that multiple versions can be installed concurrently. PR: 191267 Submitted by: rakuco Approved by: koobs (the actual maintainer :-) Notes: svn path=/head/; revision=358976
* Update to 2.6.3 release.Alex Dupre2014-06-232-4/+3
| | | | Notes: svn path=/head/; revision=358969
* - Switch devel/google-perftools to USES=libtool, drop .la filesDmitry Marakasov2014-06-231-1/+1
| | | | | | | | | - Bump dependent ports as .so version has changed Approved by: portmgr blanket Notes: svn path=/head/; revision=358946
* - Update to 6.1.5Pietro Cerutti2014-06-233-8/+12
| | | | | | | | Release notes: http://dev.mysql.com/doc/relnotes/connector-c/en/news-6-1-5.html Notes: svn path=/head/; revision=358928
* - Convert databases/spatialite to USES=libtool, drop .la filesDmitry Marakasov2014-06-234-6/+6
| | | | | | | | | - Bump dependent ports as .so version has changed Approved by: portmgr blanket Notes: svn path=/head/; revision=358893
* - Add missing USES=libtoolDmitry Marakasov2014-06-231-2/+2
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=358879
* - Add missing USES=libtoolDmitry Marakasov2014-06-231-2/+2
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=358878
* - Updates to 2.10.1Raphael Kubo da Costa2014-06-222-5/+37
| | | | | | | | | | - Add support to build HTML documentation via sphinx. PR: 191267 Submitted by: melvyn@magemana.nl (maintainer) Notes: svn path=/head/; revision=358855
* Add 4 new sed commands to USES=libtool. The first two apply some of theTijl Coosemans2014-06-222-3/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | changes that Debian made to their libtool. The first command applies to libtool versions 1.4 and up. The second command is somewhat more elaborate but essentially it uses the sed hold space to move an "elif...fi" block down. It applies to 2.x. Together these reduce overlinking to unpatched .la files (from ports that don't have USES=libtool yet but also .la files in the work directory). The third and fourth command fix relinking. During staging libtool may relink libA when it links to another library in the work directory libB. The reason is that libA created during build phase has its runpath set to the location of libB in the work directory. This allows running an executable that links to libA from within the work directory. The relink removes this extra runpath. When libtool relinks libA it replaces "libB.la" on the linker command line with "-L${STAGEDIR}${PREFIX}/lib -lB" with the intention to link to libB in the stage directory but this -L flag isn't necessarily the first so another libB may be linked instead. The two sed commands make relink the same as a normal link. This means libtool will relink with libraries from the work directory using a path similar to "../srcB/.libs/libB.so" without -L flags. This applies to libtool 1.4 and up. Earlier versions don't seem to relink libraries. (This fixes ports like devel/apr1 so they link with freshly built libraries instead of installed libraries.) Fix all ports with missing libraries. Additionally: archivers/rpm4: USES=patchfix. databases/gdbm: INSTALL_TARGET=install-strip. devel/gnome-vfs: remove patch that doesn't change anything. devel/ois: INSTALL_TARGET=install-strip and use standard USE_AUTOTOOLS. devel/zziplib: INSTALL_TARGET=install-strip, MAKE_CMD. multimedia/mjpegtools: remove USE_AUTOTOOLS, use modern compiler on i386 instead of disabling optimisations. net/libnetdude: disable static plugins. PR: 190941 Exp-run: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=358784
* - Fix RUN_DEPENDS for devel/py-noseMarcus von Appen2014-06-222-425/+11
| | | | | | | | | | | | - Remove easy_install dependency - Convert to PYDISTUTILS_AUTOPLIST - Bump PORTREVISION to enforce a cleanup for the easy_install references With hat: python@ Approved by: portmgr (implicit) Notes: svn path=/head/; revision=358768
* Support staging.Raphael Kubo da Costa2014-06-211-1/+0
| | | | Notes: svn path=/head/; revision=358724
* - Update to 1.9.10Wen Heping2014-06-212-3/+3
| | | | Notes: svn path=/head/; revision=358686
* - Remove easy_install dependencyMarcus von Appen2014-06-211-3/+3
| | | | | | | | | | - Bump PORTREVISION to enforce a cleanup for the easy_install references With hat: python@ Approved by: portmgr (implicit) Notes: svn path=/head/; revision=358665
* - Remove easy_install dependencyMarcus von Appen2014-06-211-2/+3
| | | | | | | | | | - Bump PORTREVISION to enforce a cleanup for the easy_install references With hat: python@ Approved by: portmgr (implicit) Notes: svn path=/head/; revision=358664
* - Remove easy_install dependencyMarcus von Appen2014-06-211-3/+2
| | | | | | | | | | - Bump PORTREVISION to enforce a cleanup for the easy_install references With hat: python@ Approved by: portmgr (implicit) Notes: svn path=/head/; revision=358663
* - Remove easy_install dependencyMarcus von Appen2014-06-212-15/+2
| | | | | | | | | | - Bump PORTREVISION to enforce a cleanup for the easy_install references With hat: python@ Approved by: portmgr (implicit) Notes: svn path=/head/; revision=358662
* Forced commit so I can fix botched MFHMatthew Seaman2014-06-202-1/+2
| | | | Notes: svn path=/head/; revision=358649
* Turn off PDF option by default: pdflib is a restricted package, whichMatthew Seaman2014-06-201-1/+1
| | | | | | | | | means phpMyAdmin couldn't be packaged and installed from the repos. Submitted by: bapt Notes: svn path=/head/; revision=358643
* Security update to 4.2.4Matthew Seaman2014-06-203-7/+4
| | | | | | | | | | | | | | | | | | - while here switch plist to use @sample The advisories: PMASA-2014-2 and PMASA-2014-3, have not been published yet, so there is very little concrete information about what the security problems are. About all there is comes from the change log, where the security issues are listed as: - bug #4464 [security] XSS injection due to unescaped db/table name in navigation hiding - bug #4465 [security] XSS injection due to unescaped db/table name in recent/favorite tables ChaneLog: http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.2.4/phpMyAdmin-4.2.4-notes.html/view MFH: 2014Q2 Notes: svn path=/head/; revision=358641
* Upgrade from 3.0.0-beta5 to 3.0.0-beta6.Sergey A. Osokin2014-06-202-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | <ChangeLog> * [FIX] Fix software watchdog signal handler crash due to re-entering. * [FIX] Better Lua number -> string conversion for Lua scripts. * [FIX] Serious replication bug when min-slaves-* feature is used in slaves configuration fixed. * [FIX] Blocking pop on lists now works when the list is created by commands other than *PUSH* (for example SORT STORE). >> Cluster changes * [FIX] CRITICAL: For a bug in the implementation of CLUSTER SET-CONFIG-EPOCH introduced with beta-3 (especially beta-4 where the command is actually used by redis-trib), a configEpoch for a node could jump backward, breaking the eventual consistency property of the slots -> nodes mapping in the cluster. </ChangeLog> Notes: svn path=/head/; revision=358537
* Upgrade from 2.8.9 to 2.8.11.Sergey A. Osokin2014-06-202-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | <ChangeLog> --[ Redis 2.8.11 ] Release date: 11 Jun 2014 # UPGRADE URGENCY: HIGH if you use Lua scripting, LOW otherwise. * [FIX] A previous fix for Lua -> Redis numerical precision enhancement introduced a new problem. In Redis 2.8.10 commands called from Lua passing a string that "looks like" a very large number, may actually use as argument the string converted as a float. This bug is now fixed. * [FIX] Now commands other than *PUSH* adding elements to a list will be able to awake clients blocked in a blocking POP operation. * [FIX] Cygwin compilation fixes. --[ Redis 2.8.10 ] Release date: 5 Jun 2014 # UPGRADE URGENCY: HIGH if you use min-slaves-to-write option. * [FIX] IMPORTANT! A min-slaves-to-write option active in a slave totally prevented the slave from acception the master stream of commands. This release includes testes for min-slaves-to-write, and a fix for this issue. * [FIX] Sometimes DEL returned 1 for already expired keys. Fixed. * [FIX] Fix test false positive because new osx 'leaks' output. * [FIX] PFCOUNT HLL cache invalidation fixed: no wrong value was reported but the cache was not used at all, leading to lower performances. * [FIX] Accept(2) multiple clients per readable-event invocation, and better processing of I/O while loading or busy running a timedout script. Basically now the LOADING / BUSY errors are reported at a decent speed. * [FIX] A softwaer watchdog crash fixed. * [FIX] Fixed a Lua -> Redis numerical precision loss. * [NEW] Lua scripting engine speed improved. * [NEW] Sentinel generates one new event for humans to understand better what is happening during a failover: +config-update-from. Also the time at which a failover will be re-attempted is logged. </ChangeLog> Notes: svn path=/head/; revision=358534
* Add new port databases/py-python-rrdtool with Python bindings to RRDToolBartek Rutkowski2014-06-201-0/+1
| | | | | | | | Reviewed by: marino (mentor) Approved by: swills (mentor) Notes: svn path=/head/; revision=358513
* Add new port databases/py-python-rrdtool with Python bindings to RRDToolBartek Rutkowski2014-06-203-0/+30
| | | | | | | | Reviewed by: marino (mentor) Approved by: swills (mentor) Notes: svn path=/head/; revision=358512
* - Remove easy_install dependencyMarcus von Appen2014-06-192-423/+3
| | | | | | | | | | | - Convert to PYDISTUTILS_AUTOPLIST - Bump PORTREVISION to enforce a cleanup for the easy_install references With hat: python@ Approved by: portmgr (implicit) Notes: svn path=/head/; revision=358461
* Switch the default setting for the APC option to off. pecl-APC doesMatthew Seaman2014-06-191-1/+2
| | | | | | | | | | | not provide core phpMyAdmin functionality and it is not compatible with php-5.5 PR: 191122 Submitted by: feld Notes: svn path=/head/; revision=358339
* databases/riak: update to 1.4.9 and use @sampleWilliam Grzybowski2014-06-184-17/+8
| | | | | | | | PR: 190982 Submitted by: maintainer Notes: svn path=/head/; revision=358320
* databases/memcacheq: support stage and minor fixesWilliam Grzybowski2014-06-181-13/+6
| | | | | | | | | | | | | - Support stage - Change LICENSE to BSD3CLAUSE [1] - Remove useless pre/post.mk PR: 191047 [1] Submitted by: Keith Gaughan Approved by: maintainer Notes: svn path=/head/; revision=358300
* - Update to 3.91Martin Wilke2014-06-185-52/+60
| | | | | | | PR: 190893 Notes: svn path=/head/; revision=358226
* Update to 6.8.9-3 [1][3].Koop Mast2014-06-171-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use USES=compiler:openmp for the OPENMP option[2] Ditch the use of perl for patching etc [4] and silence perl threaded check [6] -delay option spurious message should be fixed [5] JASPER option was replace by JPEG2000 for JP2k support. Put 16BIT_PIXEL and HDRI option separate option block. These options change the library name, so the user needs to take this into consideration. Use new LIB_DEPENDS syntax. Use @sample for config files. Sprinkle some USES=pkgconfig for some ports, since we don't pull it in anymore at run-time. PR: 185462 [1] PR: 187548 [2] PR: 182793 [3] PR: 181746 [4] PR: 176047 [5] PR: 190814 [6] Submitted by: c.petrik.sosa@gmail.com [1] Matthieu Volat <mazhe@alkumuna.eu> [2] free.bsd@webstyle.ch [3] andrnils@gmail.com [4] rfg@tristatelogic.com [5] Michelle Sullivan <michelle@sorbs.net> [6] Approved by: portmgr (blanket) (for NO_STAGED ports) Notes: svn path=/head/; revision=358176
* Add patch to fix use of uninitialized value $mysqlversion in pattern matchSteven Kreuzer2014-06-172-0/+12
| | | | Notes: svn path=/head/; revision=358121
* Remove 2 duplicates from pkg-plistFlorian Smeets2014-06-171-2/+0
| | | | | | | Reported by: Jenkins (swills) Notes: svn path=/head/; revision=358078
* Fix bad ICU_patchfilePalle Girgensohn2014-06-161-1/+1
| | | | | | | | PR: 191044 Submitted by: melvyn Notes: svn path=/head/; revision=358026
* - Add missing USES=libtool to archivers/snappyDmitry Marakasov2014-06-162-2/+2
| | | | | | | | | - Bump dependent ports as .so version has changed Approved by: portmgr blanket Notes: svn path=/head/; revision=358015
* Remove expired ports:Rene Ladan2014-06-154-38/+0
| | | | | | | | | | 2014-06-12 databases/py-cmemcache: Deprecated upstream 2014-06-13 games/mangos: Broken for more than 6 months 2014-06-14 lang/clojure-contrib: monolithic contrib library is obsolete 2014-06-14 devel/bzapi: Bugzilla has a native REST API, see https://wiki.mozilla.org/BMO/REST Notes: svn path=/head/; revision=357918
* - Update to 5.5.38Martin Wilke2014-06-158-58/+48
| | | | | | | PR: 190995 Notes: svn path=/head/; revision=357838
* - Fix package breakageJohan van Selst2014-06-152-28/+13
| | | | | | | | | | | - While here, modernise OPTIONS - Bump PORTREVISION for plist change PR: ports/191016 Submitted by: freebsd@nagilum.org Notes: svn path=/head/; revision=357834
* databases/cego: 2.20.9 -> 2.20.10, USES libtool, strip libsKurt Jaeger2014-06-143-9/+13
| | | | | | | Submitted by: lemke@lemke-it.com Notes: svn path=/head/; revision=357803
* - Stagify.Jun Kuriyama2014-06-145-23/+22
| | | | Notes: svn path=/head/; revision=357756