| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
| |
- 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)
|
| |
|
|
|
|
| |
There needs to be pressure on *coin, and they seem to be making some progress.
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
|
| |
PR: 198040
Submitted by: Freddy Andersen <freddy@cfandersen.com>
|
|
|
|
|
|
| |
sufficient.
Thanks to az for showing me the light here.
|
|
|
|
|
|
|
|
|
| |
- Set MAINTAINER to portmaster@BSDforge.com
- Adjust pkg-descr text
- Fix WWW url
PR: 197557
Submitted by: Chris Hutchinson <portmaster@bsdforge.com>
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
| |
Obtained from: bapt@, mat@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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.
|
|
|
|
|
|
|
|
| |
ERL_ZFLAGS is used to configure the Erlang VM itself (see also
erl(1), "EMULATOR FLAGS")
PR: 197847
Submitted by: Dave Cottlehuber
|
| |
|
|
|
|
| |
2: switch to DEFAULT_VERSIONS.
|
| |
|
|
|
|
| |
2: switch to DEFAULT_VERSIONS.
|
|
|
|
| |
- Strip libhiredis.so
|
|
|
|
|
| |
PR: 197759
Submitted by: Jose Jachuf <jjachuf@gmail.com> (maintainer)
|
|
|
|
|
| |
PR: 197758
Submitted by: Jose Jachuf <jjachuf@gmail.com> (maintainer)
|
|
|
|
|
|
| |
Fix random capitalization
Submitted by: Jimmy Olgeni <olgeni@olgeni.com>
|
|
|
|
|
|
| |
- Sort PLIST
Changes: http://search.cpan.org/dist/BerkeleyDB/Changes
|
| |
|
|
|
|
|
|
|
|
|
| |
- update to 4.0.3.16.84
- pass maintainership to submitter
- unmute installation commands
PR: 196352
Submitted by: mizhka@gmail.com
|
|
|
|
|
|
| |
- Fix issue with starting Riak due to incorrect dirs ownership
PR: 195220
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
Suggested by: az
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
|
|
|
|
|
|
|
| |
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>
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
Changes: https://github.com/facebook/rocksdb/releases
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
<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>
|
|
|
|
|
|
|
|
|
| |
- Update PHP 5.4 to 5.4.38 release
- Update PHP 5.5 to 5.5.22 release
- Update PHP 5.6 to 5.6.6 release
PR: 195604
Approved by: portmgr
|
|
|
|
|
|
|
|
|
| |
- Add LICENSE
- Add BUILD_DEPENDS and TEST_DEPENDS
PR: 196878
Submitted by: sunpoet (myself)
Approved by: maintainer (timeout, 1 month)
|
|
|
|
| |
Changes: https://metacpan.org/changes/distribution/DBD-Pg
|
|
|
|
|
| |
2: strip binary.
3: switch to USES=tar:tgz
|
|
|
|
| |
Sponsored by: Absolight
|
|
|
|
| |
- Sort PLIST
|
|
|
|
| |
- Sort PLIST
|
|
|
|
| |
Changes: https://github.com/redis/redis-rb/blob/master/CHANGELOG.md
|
|
|
|
| |
Changes: http://initd.org/psycopg/articles/2015/02/09/psycopg-26-and-255-released/
|
|
|
|
| |
Changes: http://search.cpan.org/dist/DBIx-Admin-TableInfo/Changes
|
| |
|
|
|
|
| |
Submitted by: lemke@lemke-it.com (author)
|
|
|
|
|
|
|
| |
- Added fork+setsid system calls to daemon mode
- rc.d script is now part of the distribution
Submitted by: lemke@lemke-it.com (author)
|
| |
|
|
|
|
| |
Changes: https://metacpan.org/changes/distribution/POE-Component-EasyDBI
|
|
|
|
| |
Changes: https://metacpan.org/changes/distribution/DBD-LDAP
|
|
|
|
|
|
|
|
| |
- Remove amalgamation
- Link with spatialite 4.x
PR: 196387
Submitted by: coder@tuxfamily.org (maintainer)
|
|
|
|
| |
Changes: https://metacpan.org/changes/distribution/DBD-CSV
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
Fix build on arm [1]
PR: 197550 [1]
Submitted by: mikael.urankar@gmail.com [1]
Tested by: sbruno [1]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Fix Oracle producer generating an unnecessary / at the end in case there
are no triggers
- Skip HTML tests if CGI is not installed (RT#98027)
- Fix JSON and YAML tests if the defaults have been tweaked (RT#98824)
- Fixes for parsing and producing identifiers and values that need
quoting and escaping for SQLite, MySQL, PostgreSQL, SQLServer and
Oracle (RT#90700, RT#31034)
- Add support for ALTER TABLE ... ADD CONSTRAINT to Oracle parser
- Add trigger support to Oracle parser (RT#62927)
- Fix erroneous PostgreSQL floating point type translations (RT#99725)
- Remove executable bit from Parser/JSON.pm (RT#100532)
- Update the Free Software Foundation's address (RT#100531)
- Provide default index names for SQLite (GH#45)
- Fix multi-column indexes in Parser::DBI::PostgreSQL
- Fix array data types in Parser::PostgreSQL (GH#49)
- Fix multidimensional sizes in Parser::PostgreSQL
PR: 195194
Submitted by: Geoffroy Desvernay <dgeo@centrale-marseille.fr>
|
|
|
|
|
|
| |
PR: 197285
Submitted by: rsimmons0@gmail.com
Approved by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer)
|
| |
|
|
|
|
|
|
|
|
|
| |
- Strip shared extension
- Sort DIST* entries
- Sort USE_PYTHON values
- Add LICENSE_FILE
Approved by: python (with hat)
|
| |
|
|
|
|
|
| |
PR: 197474
Submitted by: coder@tuxfamily.org (maintainer)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
comms/pear-Horde_ActiveSync 2.24.0 -> 2.24.1
devel/pear-Horde_Alarm 2.2.3 -> 2.2.4
devel/pear-Horde_Core 2.18.3 -> 2.19.0
security/pear-Horde_Crypt 2.5.2 -> 2.5.3
databases/pear-Horde_HashTable 1.2.1 -> 1.2.2
graphics/pear-Horde_Image 2.1.0 -> 2.2.0
devel/pear-Horde_Prefs 2.7.1 -> 2.7.2
net/pear-Horde_Rpc 2.1.2 -> 2.1.3
devel/pear-Horde_Stream_Wrapper 2.1.1 -> 2.1.2
www/horde-ansel 3.0.1 -> 3.0.2
www/horde-base 5.2.3 -> 5.2.4
mail/horde-imp 6.2.6 -> 6.2.7
mail/horde-ingo 3.2.3 -> 3.2.4
deskutils/horde-kronolith 4.2.4 -> 4.2.5
deskutils/horde-mnemo 4.2.3 -> 4.2.4
deskutils/horde-nag 4.2.3 -> 4.2.4
mail/horde-turba 4.2.4 -> 4.2.5
devel/horde-whups 3.0.1 -> 3.0.2
|
| |
|
|
|
|
| |
Approved by: bapt marino (implicit)
|
| |
|
|
|
|
|
|
|
| |
"Revert the change from readline to libedit, and instead make libedit optional.",
I failed to get the PORTREVISION set correctly. Fixed now.
PR: ports/197362
|
|
|
|
| |
PR: ports/197362
|
|
|
|
|
| |
PR: 197084
Submitted by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer)
|
|
|
|
|
|
| |
This is a routine bugfix update
Change Log: http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.3.9/phpMyAdmin-4.3.9-notes.html/view
|
|
|
|
|
| |
PR: 197253
Submitted by: coder@tuxfamily.org (maintainer)
|
|
|
|
|
|
|
|
|
|
| |
- UnBREAK [1]
- Correct SIGBUS on tdsdbopen() [1]
PR: 197196 [1]
Differential Revision: https://reviews.freebsd.org/D1773
Submitted by: dg@fastmail.co.uk [1]
Approved by: marino(mentor)
|
|
|
|
|
|
|
|
|
|
|
| |
This update fixes multiple security issues reported in PostgreSQL over the past
few months. All of these issues require prior authentication, and some require
additional conditions, and as such are not considered generally urgent.
However, users should examine the list of security holes patched below in case
they are particularly vulnerable.
Security: CVE-2015-0241,CVE-2015-0242,CVE-2015-0243,
CVE-2015-0244,CVE-2014-8161
|
|
|
|
|
| |
Differential Revision: https://reviews.freebsd.org/D1774
Approved by: marino(mentor)
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
<ChangeLog>
--[ Redis 3.0.0 RC3 (version 2.9.103) ] Release date: 30 jan 2015
Upgrade urgency: High for Redis Cluster users, Low otherwise.
This is the third release candidate for Redis 3.0.0, the new RC fixes
several critical issues with Redis Cluster.
>> General changes
* [FIX] AOF bug unlikely to happen in practice and mostly harmless: child
process segfaults when parent is not reachable via pipe. (Sun He)
* [FIX] Scripting engine now reports an error when misused with Lua debug
hooks, instead of crashing. (Salvatore Sanfilippo)
>> Cluster changes
* [FIX] Several issues with Redis Cluster internal nodes objects handling.
(Matt Stancliff & Salvatore Sanfilippo)
* [FIX] Improvements in the Cluster test.
(Matt Stancliff & Salvatore Sanfilippo).
* [FIX] Cluster memory leaks / double frees (Matt Stancliff).
* [FIX] /dev/urandom surrogate for generation of unique IDs in a more
cheap way. (Salvatore Sanfilippo)
* [FIX] Fixes and improvements to PING / PONG packets gossip sections
in order to improve (and fix) failure detection and speedup
cluster info propagation. (Salvatore Sanfilippo)
* [NEW] CLUSTER count-failure-reports command added. (Salvatore Sanfilippo)
>> Sentinel changes
No changes for Sentinel.
</ChangeLog>
|
|
|
|
|
|
|
|
|
|
|
| |
Make sure we use openjpeg1 in poppler, while openjpeg2 support
was added there still bugs in openjpeg2 that need to be fixed.
Add patches to inkscape for API changes in poppler 0.29.0 [2].
PR: 196599 [1]
Submitted by: olivierd@ [1]
Exp-run by: antoine@
Obtained from: upstream [2]
|
|
|
|
|
|
|
|
|
|
|
|
| |
I'm not sure what happened here. There was a good PR [1] to update
this port that properly changed the Makefile, distinfo, and the pkg-plist,
but tj@ updated the port independently but only changed the Makefile
(and moved PORTREVISION to 2 instead of resetting it to 0). Use the
changes outlined in the PR properly updates the version to 2.024001.
PR: 195195
Submitted by: Geoffroy Desvernay
Approved by: blanket (unbreak port)
|
| |
|
| |
|
|
|
|
|
| |
- Fix IODBC and IMAGEMAGICK options
- Bump PORTREVISION
|
|
|
|
|
|
|
|
|
|
|
| |
- update to 10.0.16
- Add LICENSE (GPLv2)
- Add CPE info
PR: 197185
Differential Revision: https://reviews.freebsd.org/D1734
Submitted by: Bernard Spil <spil.oss@gmail.com> (maintainer)
Approved by: swills
|
|
|
|
| |
- Mark BROKEN: missing distinfo
|
| |
|
|
|
|
| |
Changes: http://cpansearch.perl.org/src/FREW/DBIx-Class-Helpers-2.024001/Changes
|
|
|
|
| |
Detect what database you are connected to.
|
| |
|
|
|
|
|
|
|
| |
Fixes this error:
./xadbm.h:75:19: error: out-of-line declaration of a member must be a definition [-Wout-of-line-declaration]
Operators are still declared in xqdbm.h included from xadbm.h
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- column-wise physical data storage
- data compression
- finer-grained multithreading
- vectorized execution of queries
- support for a JDBC 4.1 driver
- new DAV API and DETs
- upgraded Conductor
- upgraded Facet Browser
- Virtuoso-specific query optimizer hint (ASSUME)
- SPARQL-GEO (was closed-source in earlier versions)
- SPARQL 1.1 BIND and VALUES clauses
- Connectors for Jena 2.10.x and Sesame 2.7.x
* Take maintainership back [1]
Approved by: MAINTAINER [1]
|
|
|
|
|
|
| |
PR: 197082
Submitted by: rsimmons0 at gmail.com
Approved by: Pavel Volkov <pavelivolkov at gmail.com> (maintainer)
|
| |
|
|
|
|
|
|
|
|
|
| |
- Update to 1.4.22
PR: 196530
Submitted by: lwhsu
Approved by: swills (maintainer)
Approved by: koobs (mentor)
|
| |
|
|
|
|
| |
Release Notes: https://sourceforge.net/projects/pgbarman/files/1.4.0/
|
| |
|
|
|
|
| |
Change Log: http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.3.8/phpMyAdmin-4.3.8-notes.html/view
|
| |
|
| |
|
|
|
|
|
|
| |
pkg-install
to a package name, as the former can't be attributed to a package
|
| |
|
|
|
|
| |
as a directory name can't be attributed to a package
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Update devel/gettext to 0.19.4
- Update devel/libtool and devel/libltdl to 2.4.5
- This version of libtool has been fixed to pass -fstack-protector to the
compiler during linking. Add the same fix to USES=libtool. This should
improve SSP support on FreeBSD/i386 8 and 9.
- databases/libmemcached, security/sssd: patch configure.ac so
AC_CONFIG_AUX_DIR appears earlier.
For databases/libmemcached changing configure.ac causes manpages to be
regenerated which requires extra dependencies so patch a makefile to
prevent that.
- devel/xfce4-dev-tools: only depend on recent versions of autoconf and
automake
PR: 196938
Exp-run by: antoine
Approved by: portmgr (antoine)
|
| |
|
| |
|
|
|
|
| |
MFH: 2015Q1
|
|
|
|
| |
MFH: 2015Q1
|
| |
|
|
|
|
|
| |
PR: 196873
Submitted by: maintainer (Pavel Volkov)
|
|
|
|
|
| |
PR: 196872
Submitted by: maintainer (Pavel Volkov)
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Normalize the ImageMagick library name so it stays the same regardless of
what the 16-bit and HDRI option are set to [1]. Teach cmake to look for
the new name. Bump ports that link to the libraries due to this.
- As a result do away with the "HALFSUPPORTED" option block, and list
16-bit and HDRI with the other options.
- ImageMagick ships a basic SVG plugin when not using librsvg2 for SVG
support. This basic SVG plugin needs libxml2 to work [2]. Make libxml2
a mandatory dependency (instead of only when the SVG option was selected).
- Don't touch .keep files in the modules directory, there files there so
it useless.
PR: 194949 [1]
PR: 195227 [2]
Requested by: many [1]
Submitted by: software-freebsd@interfasys.ch [2]
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
<ChangeLog>
--[ Redis 3.0.0 RC2 (version 2.9.102) ] Release date: 13 jan 2014
Upgrade urgency: LOW.
This is the second release candidate of Redis Cluster. The major changes
are back porting of things implemented into the unstable branch while
this was still possible (with the new development model adopted only
bug fixes will be merged in the future).
RC2 also fixes a few Redis Cluster non critical bugs.
>> General changes
* [FIX] A number of minor bug fixes.
* [NEW] Diskless replication backportede.
* [NEW] Lua bitops and updated cmsgpack backported.
* [NEW] Transparent Huge Pages warnings and reporting backported.
>> Cluster changes
* [FIX] Fix PUBLISH cluster bus message count field.
* [FIX] It is no longer possible to write outside node hash slots using Lua.
* [FIX] Valgrind warnings (no actual bugs).
* [FIX] Less strict in acceptiong myself->ip if it's not populated.
* [NEW] Better testing of Lua scripts.
>> Sentinel changes
No changes to Sentinel.
</ChangeLog>
|
|
|
|
| |
Change Log: http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.3.7/phpMyAdmin-4.3.7-notes.html/view
|
|
|
|
| |
requirements for dependencies for database/ldb to reflect actual ones.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
- Use options helpers
- Use GCC on i386 versions of FreeBSD later than 10.1-RELEASE
PR: 196122
Differential Revision: https://reviews.freebsd.org/D1535
Submitted by: Bernard Spil <spil.oss@gmail.com>
Approved by: maintainer timeout (3 weeks)
Approved by: swills (maintainer)
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Update -server and -client to 5.5.41
- Use Options helpers
- Use GCC on i386 newer than 10.1
PR: 196125
Differential Revision: https://reviews.freebsd.org/D1534
Submitted by: Bernard Spil <spil.oss@gmail.com>
Approved by: maintainer timeout (3 weeks)
Approved by: swills(mentor)
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
Fix build of mail/evolution on 9.x and 8.x after webkit updates [1]
PR: 196079 [1]
196706 [1]
Submitted by: truckman@, lawrence chen <beastie@tardisi.com>
|
|
|
|
|
| |
- Simplify Makefile
- Remove Author line
|
|
|
|
| |
- Add LICENSE
|
|
|
|
| |
PR: 195796
|
| |
|
|
|
|
|
|
|
| |
- Take Maintainership
Differential Revision: https://reviews.freebsd.org/D1517
Approved by: bapt(mentor)
|
|
|
|
|
|
| |
small fix for blob handling ( treat exception for exceeded pages )
Submitted by: Björn Lemke <lemke@lemke-it.com>
|
|
|
|
|
|
|
|
| |
- Add LICENSE
- Add PORTSCOUT
- Sort PLIST
Changes: http://search.cpan.org/dist/SQLite-Work/Changes
|
|
|
|
|
|
| |
- Sort PLIST
Changes: http://search.cpan.org/dist/DBI/Changes
|
|
|
|
|
|
|
| |
- Remove WRKSRC
- Use PLIST
- Bump PORTREVISION for package change
- Take maintainership
|
|
|
|
| |
2: Install binary version. (maven fetch issue)
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
update to 2.1.5
remove two patches upstream integrated
PR: 196149
Differential Revision: https://reviews.freebsd.org/D1510
Submitted by: Harrison Grundy <harrison.grundy@astrodoggroup.com>
Approved by: maintainer timeout (three weeks)
Approved by: koobs (mentor)
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
The firebird 2.5.3 SQL server was re-released, and the previous distfile
was removed from sourceforge, thus breaking the build. Move to the latest
distfile to fix the fetch phase.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
comms/pear-Horde_ActiveSync 2.23.1 -> 2.24.0
devel/pear-Horde_Argv 2.0.9 -> 2.0.10
security/pear-Horde_Auth 2.1.5 -> 2.1.6
devel/pear-Horde_Cli 2.0.5 -> 2.0.6
archivers/pear-Horde_Compress_Fast 1.0.3 -> 1.1.0
devel/pear-Horde_Constraint 2.0.1 -> 2.0.2
devel/pear-Horde_Controller 2.0.1 -> 2.0.2
devel/pear-Horde_Core 2.18.1 -> 2.18.3
security/pear-Horde_Crypt_Blowfish 1.0.2 -> 1.0.3
www/pear-Horde_Css_Parser 1.0.4 -> 1.0.5
devel/pear-Horde_Data 2.1.0 -> 2.1.1
devel/pear-Horde_Date 2.0.12 -> 2.0.13
devel/pear-Horde_Date_Parser 2.0.2 -> 2.0.3
devel/pear-Horde_Exception 2.0.4 -> 2.0.5
www/pear-Horde_Feed 2.0.2 -> 2.0.3
www/pear-Horde_Form 2.0.8 -> 2.0.9
databases/pear-Horde_HashTable 1.2.0 -> 1.2.1
www/pear-Horde_Http 2.1.2 -> 2.1.3
devel/pear-Horde_Injector 2.0.3 -> 2.0.4
devel/pear-Horde_Itip 2.0.6 -> 2.0.7
mail/pear-Horde_ListHeaders 1.2.0 -> 1.2.1
sysutils/pear-Horde_Log 2.1.0 -> 2.1.1
devel/pear-Horde_LoginTasks 2.0.3 -> 2.0.4
mail/pear-Horde_Mapi 1.0.3 -> 1.0.4
devel/pear-Horde_Nls 2.0.4 -> 2.0.5
devel/pear-Horde_Notification 2.0.1 -> 2.0.2
textproc/pear-Horde_Pdf 2.0.3 -> 2.0.4
security/pear-Horde_Perms 2.1.2 -> 2.1.3
devel/pear-Horde_Queue 1.1.1 -> 1.1.2
devel/pear-Horde_Rdo 2.0.2 -> 2.0.3
www/pear-Horde_Routes 2.0.2 -> 2.0.3
net/pear-Horde_Rpc 2.1.1 -> 2.1.2
devel/pear-Horde_Serialize 2.0.2 -> 2.0.3
security/pear-Horde_Share 2.0.5 -> 2.0.6
textproc/pear-Horde_SpellChecker 2.1.1 -> 2.1.2
devel/pear-Horde_Stream_Filter 2.0.2 -> 2.0.3
devel/pear-Horde_Stream_Wrapper 2.1.0 -> 2.1.1
devel/pear-Horde_Support 2.1.1 -> 2.1.2
www/pear-Horde_Template 2.0.1 -> 2.0.2
textproc/pear-Horde_Text_Diff 2.1.0 -> 2.1.1
textproc/pear-Horde_Text_Flowed 2.0.1 -> 2.0.2
devel/pear-Horde_Timezone 1.0.8 -> 1.0.9
devel/pear-Horde_Token 2.0.5 -> 2.0.6
devel/pear-Horde_Tree 2.0.2 -> 2.0.3
net/pear-Horde_Url 2.2.3 -> 2.2.4
sysutils/pear-Horde_Vfs 2.2.0 -> 2.2.1
textproc/pear-Horde_Xml_Element 2.0.1 -> 2.0.2
textproc/pear-Horde_Xml_Wbxml 2.0.1 -> 2.0.2
|
|
|
|
|
|
| |
Bump PORTREVISIONs for the affected ports.
Exp-run by: antoine
|
| |
|
|
|
|
| |
Approved by: antoine
|
| |
|
| |
|
|
|
|
|
|
| |
Add itstool as build depend to fix the build. [1]
Submitted by: antoine@ [1]
|
| |
|
|
|
|
| |
Allow higher java then 1.6 for the jdbc plugin
|
|
|
|
|
|
| |
This is a routine bugfix release.
Change Log: http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.3.6/phpMyAdmin-4.3.6-notes.html/view
|
|
|
|
|
|
| |
- Bump PORTREVISION for dependency change
With hat: perl
|
|
|
|
|
|
|
|
| |
- Add LICENSE [1]
- Bump PORTREVISION for dependency change
Approved by: portmgr (blanket) [1]
With hat: perl
|
| |
|
|
|
|
|
|
| |
This is a routine bug-fix update
Change Log: http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.3.5/phpMyAdmin-4.3.5-notes.html/view
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
DB Browser for SQLite is a light GUI editor for SQLite databases,
built on top of Qt. The main goal of the project is to allow
non-technical users to create, modify and edit SQLite databases
using a set of wizards and a spreadsheet-like interface.
This project has previous been known as "SQLite Browser" and "Database
Browser for SQLite". "DB Browser for SQLite" will hopefully be the
name that sticks. :)
WWW: http://sqlitebrowser.org/
PR: 196365
Submitted by: coder@tuxfamily.org
|
|
|
|
|
|
|
| |
The new team currently consists of the previous maintainer (acm@) and
myself (marino@).
PR: 195363
|
|
|
|
|
|
|
|
|
|
| |
- while here, remove directories no longer used
- use standard method for copying tress
- use pkg-plist to chown, not Makefile
PR: 195733
Submitted by: Andrew Berg
Approved by: mat (mentor)
|
| |
|
|
|
|
|
| |
Differential Revision: https://reviews.freebsd.org/D1415
Approved by: marino(mentor)
|
| |
|
|
|
|
|
| |
Spotted by: antoine
With hat: python
|
|
|
|
|
| |
PR: 196420
Submitted by: coder@tuxfamily.org (maintainer)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
<ChangeLog>
--[ Redis 2.8.19 ] Release date: 16 Dec 2014
# UPGRADE URGENCY: LOW for both Redis and Sentinel. This release mostly
fixes small issues.
02d465c Don't log admin commands in MONITOR. (antirez)
4d8f426 List of commands flagged as admin commands modified. (antirez)
e47e460 Lua cmsgpack lib updated to latest version. (antirez)
5509c14 Add symlink to redis-sentinel during make install (Rhommel Lamas)
7de1ef7 SORT: Don't sort Set elements if not needed. (antirez)
e945a54 Fix zero-ordering SORT when called against lists (Matt Stancliff)
d81c383 Update redis_init_script.tpl (Ben Dowling)
dba57ea FIXED redis-benchmark's idle mode.With idle mode shouldn't create write event (zhanghailei)
888ea17 zipmap.c: update comments above (Sun He)
86ebc13 replaced // comments #2150 (Deepak Verma)
3d73f08 redis-benchmark AUTH command to be discarded after the first send #2150 (azure provisioned user)
76d53a6 sds.c: Correct two spelling mistakes in comments (Sun He)
4848cf9 sds.c/sdscatvprintf: set va_end to finish va_list cpy (Sun He)
d2f584f sds.c: Correct some comments (Sun He)
2ed3f09 Update whatisdoing.sh (Serghei Iakovlev)
77b997d Include stropts only if __sun is defined. (antirez)
d409371 Fix implicit declaration of ioctl on Solaris (Jan-Erik Rediger)
23b96c0 Silence _BSD_SOURCE warnings in glibc 2.20 and forward (Johan Bergström)
a47a042 Mark whatisdoing.sh as deprecated in top-comment. (antirez)
b5737d2 getting pid fixes (Serghei Iakovlev)
a598e08 sparkline.c: AddSample skip Empty label (Sun He)
7d480ab sparkline.c: mov label-ini into the AddSample Function (Sun He)
2f3c860 Only ignore sigpipe in interactive mode (Jan-Erik Rediger)
0c211a1 Simplify lua_cmsgpack macro and fix build on old Linux distros. (antirez)
</ChangeLog>
|
|
|
|
|
|
|
| |
- Add LICENSE
PR: 196379
Submitted by: Nikola Kolev <koue@chaosophia.net>
|
|
|
|
|
|
|
|
| |
This eliminates the conflict with the regular sqlite3 port.
PR: 195812
Submitted by: yuri@rawbw.com
Approved by: jharris@widomaker.com (maintainer)
|
|
|
|
| |
With hat: python@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Changes:
- src/sexp.c (do_vsexp_sscan): Return error for invalid args.
- cipher/md.c (_gcry_md_info): Fix a segv in case of calling
with wrong parameters.
- cipher/primegen.c (_gcry_generate_elg_prime): Change to return an
error code, possible NULL deref in call to prime generator.
- cipher/dsa.c (generate): Take care of new return code.
- cipher/elgamal.c (generate): Change to return an error code. Take
care of _gcry_generate_elg_prime return code.
- ecc: Support the non-standard 0x40 compression flag for EdDSA.
- mpi: Extend the internal mpi_get_buffer.
- mpi: Fix regression for powerpc-apple-darwin detection.
- Fix bug inhibiting the use of the sentinel attribute in src/gcrypt.h.in
- Fix building for the x32 target without asm modules in
mpi/generic/mpi-asm-defs.h: Use a fixed value for the x32 ABI.
- Fix ARM assembly when building __PIC__
- mpi: Fix a subtle bug setting spurious bits with in mpi_set_bit.
* mpi/mpi-bit.c (_gcry_mpi_set_bit, _gcry_mpi_set_highbit): Clear
allocated but not used bits before resizing.
* tests/t-mpi-bits.c (set_bit_with_resize): New.
- Use internal malloc function in fips.c.
* src/fips.c (check_binary_integrity): s/gcry_malloc/xtrymalloc/.
- pubkey: Re-map all deprecated RSA algo numbers.
- cipher: Fix possible NULL dereference in cipher/md.c for being NULL.
- Fix ARMv6 detection when CFLAGS modify target CPU architecture.
PR: 193264
Approved by: cpm@fbsd.es (maintainer)
|
|
|
|
|
|
|
|
|
|
|
|
| |
server to
build on ARMv6.
No need to bump portrevision for everyone else here as this only affects ARM users.
PR: 195750
Submitted by: mikael.urankar@gmail.com
Approved by: mentor (implicit)
|
|
|
|
| |
- Update BUILD_DEPENDS: ExtUtils::MakeMaker 6.59+ is already in all supported Perl releases
|
|
|
|
|
|
| |
- Add LICENSE
Changes: http://search.cpan.org/dist/DBIx-Tree/Changes
|
|
|
|
|
|
| |
- Use REINPLACE_CMD instead of PERL
- Add PORTSCOUT
- Simplify Makefile
|
|
|
|
| |
Changes: http://search.cpan.org/dist/DBD-SQLite/Changes
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
Changes:
http://software.firstworks.com/2014/10/sql-relay-057-is-out.html
http://software.firstworks.com/2014/12/sql-relay-058-is-out.html
PR: 196366
|
|
|
|
|
|
| |
PR: ports/196342
Submitted by: Naram Qashat (maintainer)
Exp-run and fixes to depending ports: self
|
|
|
|
|
|
|
|
|
| |
Update totem to 3.14 now that we have gstreamer 1.4 and minor gnome updates.
Update evolution suite to 3.12.9.
Make sure gtk30 pulls in adwait-icon-theme, since it now the default theme [3].
PR: 195290 [1], 195289 [2], 195455 [3]
Obtained from: gnome devel repo
|
| |
|
| |
|
|
|
|
|
|
| |
This is a routine bugfix update
Change Log: http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.3.4/phpMyAdmin-4.3.4-notes.html/view
|
| |
|
| |
|
|
|
|
|
| |
PR: 196294
Submitted by: pavelivolkov@gmail.com (maintainer)
|
|
|
|
|
|
| |
PR: 196275
Submitted by: rsimmons0@gmail.com
Approved by: pavelivolkov@gmail.com (maintainer)
|
| |
|
| |
|
|
|
|
| |
Sponsored by: Absolight
|
|
|
|
| |
Approved by: bapt
|
| |
|
| |
|
|
|
|
|
|
|
| |
- Remove unnecessary PHP_MODNAME
- Use =
Submitted by: sunpoet
|
|
|
|
|
|
| |
This is a routine bugfix update
Change Log: http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.3.3/phpMyAdmin-4.3.3-notes.html/view
|
|
|
|
|
|
| |
- Sort PLIST
Changes: http://search.cpan.org/dist/Dancer-Plugin-Database/Changes
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
- Add LICENSE info [1]
- Fix WWW line in pkg-descr [1]
- Bump all affected ports
PR: 196150 [1]
Submitted by: maintainer [1]
|
| |
|
|
|
|
|
|
|
|
|
| |
Fixes bug where single-quoted type arguments to the table_info()
method were causing a SQL error. [Greg Sabino Mullane]
https://rt.cpan.org/Public/Bug/Display.html?id=99144
PR: 196140
Submitted by: freebsdpr-20121114@billmail.scconsult.com
|
|
|
|
| |
Sponsored by: Absolight
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Major enhancements in PostgreSQL 9.4 include:
Add jsonb, a more capable and efficient data type for storing JSON data
Add new SQL command ALTER SYSTEM for changing postgresql.conf configuration
file entries
Reduce lock strength for some ALTER TABLE commands
Allow materialized views to be refreshed without blocking concurrent reads
Add support for logical decoding of WAL data, to allow database changes to be
streamed out in a customizable format
Allow background worker processes to be dynamically registered, started and
terminated The above items are explained in more detail in the sections below.
URL: http://www.postgresql.org/docs/9.4/static/release-9-4.html
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- InnoDB is now disabled by default. MariaDB ships with
XtraDB as drop-in replacement of InnoDB but keeps the
original InnoDB as an option you have to set specifically
to enable it.
- Added support for Mroonga storage engine.
- Removed mytop script, which the latest version can be
installed via databases/mytop.
- Moved INNODB option to the Server part (as OQGraph)
- Updated -server log only as this only affects -server.
Submitted by: Bernard Spil <spil oss gmail com> (maintainer)
|
| |
|
|
|
|
|
|
|
| |
plist.
PR: 195718
Submitted by: maintainer (5u623l20@gmail.com)
|
| |
|
|
|
|
| |
Changes: https://github.com/redis/redis-rb/blob/master/CHANGELOG.md
|
|
|
|
|
|
| |
This is a routine bugfix update
Change Log: http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.3.2/phpMyAdmin-4.3.2-notes.html/view
|
|
|
|
|
|
|
|
|
|
| |
- Added fix to tests to create test database if not exists (constant
failure on Travis) (CaptTofu)
- Support the fraction of (Oracle) MySQL Fabric that is supported by the
most recent Connector/C (Steffen Mueller smueller@cpan.org)
- Milan Sorm <sorm@is4u.cz> for work on statistics_info
- Fix for RT 97625, use after free()
Reini Urban rurban@cpan.org and Giovanni Bechis <giovanni@bigio.snb.it>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
<ChangeLog>
--[ Redis 2.8.18 ] Release date: 4 Dec 2014
# UPGRADE URGENCY: LOW for both Redis and Sentinel. This release mostly
adds new features to Redis, and contains non critical
fixes.
* [FIX] Linenoise updated to be more VT100 compatible. (Salvatore Sanfilippo)
* [FIX] A number of typos fixed inside comments. (Various authors)
* [FIX] redis-cli no longer quits after long timeouts. (Matt Stancliff)
* [FIX] Test framework improved to detect never terminating scripts, cleanup
instances on crashes. (Salvatore Sanfilippo)
* [FIX] PFCOUNT can be used on slaves now. (Salvatore Sanfilippo)
* [FIX] ZSCAN no longer report very small scores as 0. (Matt Stancliff,
Michael Grunder, Salvatore Sanfilippo)
* [FIX] Don't show the ASCII logo if syslog is enabled. Redis is now
an Enterprise Grade product. (Salvatore Sanfilippo)
* [NEW] EXPERIMENTAL: Diskless replication, for more info check the doc at
http://redis.io/topics/replication. (Salvatore Sanfilippo).
* [NEW] Transparent Huge Pages detection and reporting in logs and
LATENCY DOCTOR output. (Salvatore Sanfilippo)
* [NEW] Many Lua scripting enhancements: Bitops API, cjson upgrade and tests,
cmsgpack upgrade. (Matt Stancliff)
* [NEW] Total and instantaneous Network bandwidth tracking in INFO.
* [NEW] DEBUG POPULATE two args form implemented (old form still works).
The second argument is the key prefix. Default is "key:" (Salvatore
Sanfilippo)
* [NEW] Check that tcp-backlog is matched by /proc/sys/net/core/somaxconn, and
warn about it if not. (Salvatore Sanfilippo)
</ChangeLog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Update to 1.0.18 and pkg-plist accordingly
- Add LICENSE (BSD3CLAUSE) and LICENSE_FILE
- Add TEST_DEPENDS and regression-test target
- Perl is not required, remove USE_PERL and from USES
- Split LDFLAGS from CONFIGURE_ENV, they're already set there
- Add libmemcachedprotocol to CONFIGURE_ARGS (Now default: off)
- Add OPTIONS for hash functions, debug and dtrace
- pkg-descr: Update WWW: URL
- Add patches for:
* alloca.h include not found on FreeBSD
* cinttypes include location
* clang compatibility
- Strip shared libraries manually since upstream install-strip target is
fail
Changes:
https://launchpad.net/libmemcached/+announcements
[1] https://bugs.launchpad.net/libmemcached/+bug/1245562
[2] https://bugs.launchpad.net/libmemcached/+bug/1400560
Approved by: Mikhail Tsatsenko <m.tsatsenko@gmail.com> (maintainer, via email)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Update to 1.4.21
- Remove doc patches (upstreamed)
- Remove unconditional CFLAGS because:
a) -fstack-protector is now a default
b) -I${LOCALBASE}/include casues SASL headers to be found even when
--disable-sasl is set (SASL option disabled). Removal of these flags
does not affect libevent header discovery
- While I'm here, whitespace alignment
Differential Revision: https://reviews.freebsd.org/D1284
Approved by: swills (maintainer)
|
| |
|
| |
|
|
|
|
|
|
| |
This is a routine bugfix update
Change Log: http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.3.1/phpMyAdmin-4.3.1-notes.html/view
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Update to 1.4.1
- Allow Python 3 support [1]
- Update COMMENT to match PyPi upstream
- Add TESTS option, TEST_DEPENDS and regression-test target
- Strip shared library
- Patch setup.{py,cfg} to add allow 'test' command to run
- Update pkg-descr to match upstream
- pkg-descr: Update WWW: URL to match PyPi upstream
This update passes QA (test suite) under Python 2.7 and 3.4.
Changes:
http://sendapatch.se/projects/pylibmc/changelog.html
[1] https://github.com/lericson/pylibmc/issues/146
|
|
|
|
| |
Broken resurrections provided by: danfe
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
the 32 ports that still use it. Bump PORTREVISION on their dependent
ports except the ones that depend on these:
audio/libogg
audio/libvorbis
devel/pcre
ftp/curl
graphics/jpeg
graphics/libart_lgpl
graphics/tiff
textproc/expat2
textproc/libxslt
In these cases the same trick as in the recent gettext update is used.
The ports install a symlink with the old library version. When enough
of their dependent ports have had regular updates the remaining ones can
get a PORTREVISION bump and the links can be removed.
Also remove the devel/pcre dependency from USE_GNOME=glib20. It causes
over 2200 packages to depend on devel/pcre while less than 200 actually
link with it. The glib20 package still depends on devel/pcre so this
should not make a difference for ports with USE_GNOME=glib20. Also,
libdata/pkgconfig/glib-2.0.pc lists pcre as a private library so
USE_GNOME=glib20 should not propagate it.
PR: 195724
Exp-run by: antoine
Approved by: portmgr (antoine)
|
| |
|
| |
|
| |
|
|
|
|
| |
Changes: https://github.com/facebook/rocksdb/releases
|
|
|
|
|
| |
- Convert three-line pkg-plist into PLIST_FILES knob
- Improve grammar in port description text, fix couple of typos
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This port was added on 5 October 2014. The intention for its existence
was to provide a way to use plv8js with pgsql 9.3 instead of the default
pgsql 9.2. It was implemented in such a way that if PGSQL_DEFAULT is
set to 9.3, the index breaks with a duplicate origin with datbases/
postgresql-plv8js. It's possible to adjust the plv8js ports by converting
the version into an option and using typical master/slave techniques, but
I can't come up with a good reason to do this at all.
I don't think this port ever should have been created. Anyone that would
need this port would have needed to set PGSQL_DEFAULT anyway (which
already works). In the worst case, WANT_PGSQL could be based through a
command line. Perhaps the motivation was to have a binary package to
avoid building it, but this reason disappears soon when the default
version of pgsql is bumped to 9.3. Based on all those reasons, I think
it is better to remove the port outright (pointing to master port) rather
than adjust it to avoid a broken index.
PR: 195281
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
As the result of a recent exp-run for postgresql 9.3, several ports
failed to build as a result. Most could likely be fixed by updating the
port to a later available version. Until that happens, set the maximum
version of pgsql to 9.2 for these ports.
* pg_rman (1.23) : version 1.27 is available
* pg_statsinfo (2.4.1) : version 2.5.0 available, works on pgsql 9.3
* pgpool-II (3.1.6) : version 3.4 available, works on pgsql 9.3
* pgpool-II30 (3.0.4)
PR: 195281
|
| |
|
|
|
|
| |
Changes: http://cpansearch.perl.org/src/FREW/DBIx-Class-Candy-0.002107/Changes
|
|
|
|
|
| |
Changes: http://cpansearch.perl.org/src/JJNAPIORK/DBIx-Class-Schema-PopulateMore-0.19/Changes
- Update DEPENDS
|
|
|
|
| |
Changes: http://cpansearch.perl.org/src/ILMARI/SQL-Translator-0.11020/Changes
|
|
|
|
|
| |
Changes: http://search.cpan.org/src/RIBASUSHI/DBIx-Class-0.082810/Changes
- Update DEPENDS
|
|
|
|
| |
Changes: http://search.cpan.org/dist/DBI/Changes#Changes_in_DBI_1.632
|
|
|
|
|
| |
Changes: http://cpansearch.perl.org/src/HMBRAND/DBD-CSV-0.46/ChangeLog
- Update DEPENDS
|
|
|
|
| |
Submitted by: antoine
|
|
|
|
| |
Submitted by: vanilla
|
|
|
|
|
|
|
| |
http://www.percona.com/doc/percona-xtrabackup/2.2/release-notes.html
PR: 195164
Approved by: maintainer (timeout)
|
|
|
|
|
|
|
|
|
| |
- MASTER_SITE switch to GitHub
- Add LICENSE (GPLv2)
- Use PLIST_FILES and delete pkg-plist
PR: 195428
Submitted by: spil.oss@gmail.com
|
| |
|
|
|
|
|
|
| |
Added more detailed log information for tableset import and export operation
Submitted by: Björn Lemke <lemke@lemke-it.com>
|
|
|
|
|
|
|
| |
This is the fist release from the new 4.3.x branch, and brings with it
some significant new functionality.
Release Notes: http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.3.0/phpMyAdmin-4.3.0-notes.html/view
|
|
|
|
|
|
| |
Useful tools to help construct database queries with ActiveRecord and Arel.
WWW: https://github.com/camertron/arel-helpers
|
| |
|