non port: databases/Makefile |
Number of commits found: 2069 (showing only 100 on this page) |
Saturday, 13 Feb 2016
|
19:02 brnrd
[NEW PORTS] databases/mariadb101-{server,client}: 10.1.11
MariaDB is one of the most popular database servers in the world. It's made
by the original developers of MySQL and guaranteed to stay open source.
Notable users include Wikipedia, Facebook and Google.
MariaDB turns data into structured information in a wide array of
applications, ranging from banking to websites. It is an enhanced, drop-in
replacement for MySQL. MariaDB is used because it is fast, scalable and
robust, with a rich ecosystem of storage engines, plugins and many other
tools make it very versatile for a wide variety of use cases.
MariaDB is developed as open source software and as a relational database
it provides an SQL interface for accessing data. This latest versions of
MariaDB also include GIS and JSON features.
WWW: http://mariadb.org/
Reviewed by: koobs (mentor), feld (mentor)
Approved by: koobs (mentor), feld (mentor)
Differential Revision: D3953
|
Wednesday, 10 Feb 2016
|
09:40 robak
New port: databases/rubygem-em-redis-unified Eventmachine-based implementation
of the Redis protocol
An EventMachine based library for interacting with the Redis data store
by Salvatore 'antirez' Sanfilippo. Modeled after eventmachine's
implementation of the memcached protocol, and influenced by Ezra Zygmuntowicz's
redis-rb library (distributed as part of Redis).
WWW: https://rubygems.org/gems/em-redis-unified
Submitted by: Bartek Rutkowski <robak@FreeBSD.org>
|
Tuesday, 2 Feb 2016
|
20:48 rm
Remove Python 3.2 related slave ports to unbreak INDEX
With hat: python
|
Saturday, 30 Jan 2016
|
16:50 rene
Remove expired port:
2016-01-15 databases/php5-redis: PHP 5.4 EOL reached, use databases/php55-redis
or databases/php56-redis instead
|
Tuesday, 26 Jan 2016
|
21:24 rene
Remove expired ports that are consumers of expired lang/php5. Exceptions:
- www/pecl-zendopcache : used by Mk/bsd.php.mk
- databases/php5-redis : optionally used by www/magento
A PR exists for databases/php5-pdo_cassandra to make it work with supported
versions of PHP.
|
Saturday, 23 Jan 2016
|
14:36 demon
New port: mongodb32-tools. Extra tools factored out from mongodb port
in version 3.
PR: 205510
Submitted by: Brendan Molloy <brendan+freebsd@bbqsrc.net>
|
12:47 demon
Add mongodb32 port.
|
Friday, 22 Jan 2016
|
23:22 olgeni
Add databases/elixir-db_connection, a database connection behaviour for Elixir.
|
Tuesday, 19 Jan 2016
|
14:40 pi
New port: databases/sql-workbench
SQL Workbench/J is a free, DBMS-independent, cross-platform SQL
query tool. It is written in Java and should run on any operating
system that provides a Java Runtime Environment.
Its main focus is on running SQL scripts (either interactively or
as a batch) and export/import features. Graphical query building
or more advanced DBA tasks are not the focus and are not planned.
WWW: http://www.sql-workbench.net/
PR: 202116
Submitted by: Aldis Berjoza <graudeejs@inbox.lv>
|
Thursday, 7 Jan 2016
|
20:22 antoine
Hook postgresql95-* to the build
|
Monday, 4 Jan 2016
|
07:22 miwi
PickleShare - a small 'shelve' like datastore with concurrency support
Like shelve, a PickleShareDB object acts like a normal dictionary.
Unlike shelve, many processes can access the database simultaneously.
Changing a value in database is immediately visible to other processes
accessing the same database.
WWW: https://github.com/vivainio/pickleshare/
PR: 205514
Submitted by: Yuri Victorovich <yuri@rawbw.com>
|
Wednesday, 30 Dec 2015
|
17:37 sunpoet
- Add rubygem-activerecord-session_store 0.1.2
A session store backed by an Active Record class. A default class is provided,
but any object duck-typing to an Active Record Session class with text
session_id and data attributes is sufficient.
WWW: https://github.com/rails/activerecord-session_store
|
12:18 sunpoet
- Add rubygem-state_machines-activerecord 0.3.0
The StateMachines Active Record 4.1+ integration adds support for database
transactions, automatically saving the record, named scopes, validation errors.
WWW: https://github.com/state-machines/state_machines-activerecord
|
12:17 sunpoet
- Add rubygem-state_machines-activemodel 0.3.0
The StateMachines ActiveModel integration is useful for both standalone usage
and for providing the base implementation for ORMs which implement the
ActiveModel API. This integration adds support for validation errors and dirty
attribute tracking.
WWW: https://github.com/state-machines/state_machines-activemodel
|
08:06 sunpoet
- Move databases/py-memcached to databases/py-python-memcached
- Bump PORTREVISION for dependent ports
|
Monday, 21 Dec 2015
|
18:35 sunpoet
- Add rubygem-arel5 5.0.1.20140414130214 (copied from rubygem-arel)
- Bump PORTREVISION for dependent ports
|
14:53 sunpoet
- Sort SUBDIRs
|
Thursday, 17 Dec 2015
|
16:35 gblach
Add new port: databases/py-queries
Queries is a BSD licensed opinionated wrapper of the psycopg2 library
for interacting with PostgreSQL.
|
Tuesday, 15 Dec 2015
|
19:40 pi
New ports: databases/mysql57-client, databases/mysql57-server
The next major release of mysql.
MySQL is a very fast, multi-threaded, multi-user and robust SQL
(Structured Query Language) database server.
WWW: http://www.mysql.com/
PR: 204607
Submitted by: mokhi64@gmail.com
Reviewed by: koobs, brnrd
Approved by: mat
|
Sunday, 13 Dec 2015
|
21:56 rakuco
At very long last land PyQt5 5.5.1 ports.
Add the required bits to Uses/pyqt.mk along with all the PyQt5 ports.
Thankfully this commit is mostly adding new ports, as the hard work was
already done in r403297 and r403662.
Huge kudos to Tobias Berner <tcberner@gmail.com> and, most importantly,
Guido Falsi (madpilot@) for their initial work on these ports (see D2910 in
Phabricator for an earlier version of the PyQt5 patch set).
PR: 204672
|
Tuesday, 8 Dec 2015
|
20:21 rene
A better alternative to the native transaction signals of Django.
Sometimes you need to fire off an action related to the current database
transaction, but only if the transaction successfully commits. Examples:
a Celery task, an email notification, or a cache invalidation.
Doing this correctly while accounting for savepoints that might be
individually rolled back, closed/dropped connections, and idiosyncrasies of
various databases, is non-trivial. Transaction signals just make it easier
to do it wrong.
django-transaction-hooks does the heavy lifting so you don't have to.
WWW: https://github.com/arljm/django-transaction-hooks/
|
Friday, 4 Dec 2015
|
12:21 sunpoet
- Add py-pgcli 0.20.1
pgcli is a command line interface for Postgres with auto-completion and syntax
highlighting.
WWW: https://pypi.python.org/pypi/pgcli
WWW: http://pgcli.com/
|
12:20 sunpoet
- Add py-mycli 1.5.2
mycli is a command line interface for MySQL, MariaDB, and Percona with
auto-completion and syntax highlighting.
WWW: https://pypi.python.org/pypi/mycli
WWW: http://mycli.net/
|
Saturday, 28 Nov 2015
|
23:08 rene
Remove expired ports:
2015-11-26 audio/pecl-id3: Broken for more than 6 months
2015-11-26 dns/geta: Broken for more than 6 months
2015-11-26 finance/openerp-web: Broken for more than 6 months
2015-11-26 devel/py-async: Further using of this module is not encouraged by
upstream
2015-11-26 chinese/kon2: Depends on expiring chinese/cce
2015-11-26 games/linux-skulltag: Depends on expiring audio/linux-fmodapi
2015-11-26 archivers/wzip: Broken for more than 6 months
2015-11-26 databases/sybtcl: Broken for more than 6 months
2015-11-26 biology/povchem: Broken for more than 6 months
2015-11-26 audio/btc: Broken for more than 6 months
2015-11-26 astro/wmglobe: Broken for more than 6 months
2015-11-26 graphics/pyro: Broken for more than 6 months
2015-11-26 graphics/jpeg2ps: Broken for more than 6 months
2015-11-26 chinese/gugod-clean: Broken for more than 6 months
2015-11-26 comms/bforce: Broken for more than 6 months
2015-11-26 cad/geda-docs: Broken for more than 6 months
2015-11-26 chinese/cwtexttf: Broken for more than 6 months
2015-11-26 comms/zmtx-zmrx: Broken for more than 6 months
2015-11-26 astro/sky2000: Broken for more than 6 months
2015-11-26 deskutils/libopensync-plugin-file: Broken for more than 6 months
2015-11-26 databases/sqlite-ext-mobigroup: Broken for more than 6 months
2015-11-26 chinese/bg5ps: Broken for more than 6 months
2015-11-26 deskutils/x-tile: Broken for more than 6 months
2015-11-26 graphics/pure-gl: Broken for more than 6 months
2015-11-26 audio/dvda-author: Broken for more than 6 months
2015-11-26 chinese/oxim: Broken for more than 6 months
2015-11-26 editors/spe: Broken for more than 6 months
2015-11-26 audio/mpdscribble: Broken for more than 6 months
2015-11-26 cad/geda-symcheck: Broken for more than 6 months
2015-11-26 audio/linux-fmodapi: Broken for more than 6 months
2015-11-26 audio/pure-audio: Broken for more than 6 months
2015-11-26 editors/bpatch: Broken for more than 6 months
2015-11-26 benchmarks/geekbench: Broken for more than 6 months
2015-11-26 graphics/icoconvert: Broken for more than 6 months
2015-11-26 cad/geda-utils: Broken for more than 6 months
2015-11-26 deskutils/tomboy-plugin-wordcount: Broken for more than 6 months
2015-11-26 graphics/sketch: Broken for more than 6 months
2015-11-26 ftp/spegla: Broken for more than 6 months
2015-11-26 graphics/clutter-box2d: Broken for more than 6 months
2015-11-26 audio/scmpc: Broken for more than 6 months
2015-11-26 ftp/gnusget: Broken for more than 6 months
2015-11-26 comms/gpsk31: Broken for more than 6 months
2015-11-26 cad/geda-gschem: Broken for more than 6 months
2015-11-26 audio/ampache: Broken for more than 6 months
2015-11-26 cad/slffea: Broken for more than 6 months
2015-11-26 audio/cripple: Broken for more than 6 months
2015-11-26 cad/geda-gattrib: Broken for more than 6 months
2015-11-26 cad/findhier: Broken for more than 6 months
2015-11-26 biology/njplot: Broken for more than 6 months
2015-11-26 audio/wmmp: Broken for more than 6 months
2015-11-26 x11/avant-window-navigator: Broken for more than 6 months
2015-11-26 cad/geda-netlist: Broken for more than 6 months
2015-11-26 deskutils/libopensync-plugin-sunbird: Broken for more than 6 months
2015-11-26 biology/ortep3: Broken for more than 6 months
2015-11-26 astro/aa: Broken for more than 6 months
2015-11-26 french/belote: Broken for more than 6 months
2015-11-26 converters/p5-String-SetUTF8: Broken for more than 6 months
2015-11-26 cad/geda-examples: Broken for more than 6 months
2015-11-26 editors/yasnippet: Broken for more than 6 months
2015-11-26 audio/musica: Broken for more than 6 months
2015-11-26 graphics/rubyphoto: Broken for more than 6 months
2015-11-26 german/bsdpaste: Broken for more than 6 months
2015-11-26 audio/amrcoder: Broken for more than 6 months
2015-11-26 sysutils/bashburn: Broken for more than 6 months
2015-11-26 editors/e93: Broken for more than 6 months
2015-11-26 audio/tepsonic: Broken for more than 6 months
2015-11-26 astro/ephem: Broken for more than 6 months
2015-11-26 chinese/cce: Broken for more than 6 months
2015-11-26 graphics/qcread: Broken for more than 6 months
2015-11-26 databases/py-sqlkit: Broken for more than 6 months
2015-11-26 databases/usogres: Broken for more than 6 months
2015-11-26 cad/libgeda: Broken for more than 6 months
2015-11-26 chinese/p5-Lingua-ZH-BPMFConvert: Broken for more than 6 months
2015-11-26 french/alphabet_sounds_fr: Broken for more than 6 months
2015-11-26 deskutils/mrundlg: Broken for more than 6 months
2015-11-26 databases/erlang-mysql: Broken for more than 6 months
2015-11-26 graphics/linux-XnViewMP: Broken for more than 6 months
2015-11-26 deskutils/akamaru: Broken for more than 6 months
2015-11-26 dns/p5-Net-DNS-ZoneCheck: Broken for more than 6 months
2015-11-26 astro/dgpsip: Broken for more than 6 months
2015-11-26 databases/pecl-handlersocket: Broken for more than 6 months
2015-11-26 audio/cymbaline: Broken for more than 6 months
2015-11-26 french/dico: Broken for more than 6 months
2015-11-26 comms/qpage: Broken for more than 6 months
2015-11-26 audio/sonice: Broken for more than 6 months
2015-11-26 cad/geda-symbols: Broken for more than 6 months
2015-11-26 databases/java-mybatis: Broken for more than 6 months
2015-11-26 databases/openbase-jdbc: Broken for more than 6 months
2015-11-27 www/mediawiki119: Please upgrade to mediawiki-1.25
2015-11-28 www/R-cran-Rpad: Unmaintained upstream
|
Thursday, 26 Nov 2015
|
01:00 sunpoet
- Add py-pgspecial 1.2.0
This package provides an API to execute meta-commands (AKA "special", or
"backslash commands") on PostgreSQL.
WWW: https://pypi.python.org/pypi/pgspecial
WWW: https://github.com/dbcli/pgspecial
|
Monday, 23 Nov 2015
|
18:27 sunpoet
- Add rubygem-paranoia-rails41 2.1.3
Paranoia adds soft deletion feature for activerecord.
WWW: https://github.com/rubysherpas/paranoia
PR: 203408
Submitted by: Torsten Zuhlsdorff <ports@toco-domains.de>
|
18:27 sunpoet
- Add rubygem-paranoia 2.1.3
- While I'm here:
- Add LICENSE
- Update WWW
Paranoia adds soft deletion feature for activerecord.
WWW: https://github.com/rubysherpas/paranoia
PR: 203408
Submitted by: Torsten Zuhlsdorff <ports@toco-domains.de>
|
18:27 sunpoet
- Add rubygem-after_commit_queue-rails41 1.3.0
Plugin for running methods on ActiveRecord models after record is committed
WWW: https://github.com/shellycloud/after_commit_queue
PR: 203620
Submitted by: Torsten Zuhlsdorff <ports@toco-domains.de>
|
18:26 sunpoet
- Add rubygem-after_commit_queue 1.3.0
- While I'm here:
- Add LICENSE_FILE
- Add NO_ARCH
Plugin for running methods on ActiveRecord models after record is committed
WWW: https://github.com/shellycloud/after_commit_queue
PR: 203581
Submitted by: Michael Fausten <ports@michael-fausten.de>
|
Saturday, 21 Nov 2015
|
08:31 pi
New port: databases/sqlitestudio
SQLiteStudio is a SQLite database manager with the following features:
* Intuitive interface
* Powerful, yet light and fast
* Exporting to various formats (SQL statements, CSV, HTML, XML, PDF, JSON)
* Importing data from various formats (CSV, custom text files)
* Numerous small additions, like formatting code, history of queries executed
in editor windows, on-the-fly syntax checking, and more
* Unicode support
* Configurable colors, fonts and shortcuts
WWW: http://sqlitestudio.pl/
PR: 204294
Submitted by: yuri@rawbw.com
|
Thursday, 19 Nov 2015
|
01:28 lwhsu
Add version specified ports of separated standard Python modules for
non-default Python versions:
- Add pyXY-{sqlite3,gdbm,tkinter} ports for generating binary packages
- Improve/add pkg-message to point users to install respective packages of
separated Python standard modules
- Add COMMENT to explicitly show the Python version that package should be
used with
- Simplify version-related PYTHON_* for lang/python35
Reviewed by: koobs
Differential Revision: https://reviews.freebsd.org/D4170
|
Wednesday, 18 Nov 2015
|
10:51 brnrd
databases/mariadb-client,scripts,server: Remove
- MariaDB is based on the vulnerable MySQL 5.1 version
- No new versions since 2013
- Simplify Mk/bsd.databases.mk
Reviewed by: koobs (mentor), feld
Approved by: koobs (mentor)
Differential Revision: https://reviews.freebsd.org/D4099
|
Tuesday, 10 Nov 2015
|
21:13 rene
Remove expired ports:
2015-11-10 databases/mysql-workbench51: EOL upstream, use
databases/mysql-workbench52 instead
2015-11-10 databases/mysql51-client: EOL upstream, use mysql55 or mysql56
instead
2015-11-10 databases/mysql51-scripts: EOL upstream, use mysql55 or mysql56
instead
2015-11-10 databases/mysql51-server: EOL upstream, use mysql55 or mysql56
instead
2015-11-10 databases/p5-DBD-mysql51: EOL upstream, use databases/p5-DBD-mysql
instead
2015-11-10 databases/py-MySQLdb51: EOL upstream, use databases/py-MySQLdb
instead
|
Friday, 6 Nov 2015
|
14:30 feld
OpenTSDB is a distributed, scalable Time Series Database (TSDB) written
on top of HBase. OpenTSDB was written to address a common need: store,
index and serve metrics collected from computer systems (network gear,
operating systems, applications) at a large scale, and make this data
easily accessible and graphable.
WWW: http://www.opentsdb.net
Differential Revision: https://reviews.freebsd.org/D4083
|
Thursday, 5 Nov 2015
|
21:11 pawel
oursql is a set of MySQL bindings for python 2.4+ with a focus
on wrapping the MYSQL_STMT API to provide real parameterization
and real server-side cursors. MySQL 4.1.2 or better is required.
WWW: https://launchpad.net/oursql
PR: 202915
Submitted by: Yuri Victorovich <yuri@rawbw.com>
|
Wednesday, 28 Oct 2015
|
20:45 rm
Remove expired ports
databases/py-mssql: Broken with current FreeTDS. Please use databases/py-pymssql
net/py-medusa: Abandoned upstream, last release was in 2005
|
Wednesday, 14 Oct 2015
|
05:44 pi
New port: databases/gomdb
Go wrapper for OpenLDAP Lightning Memory-Mapped Database, LMDB.
WWW: https://github.com/szferi/gomdb
PR: 194946
Submitted by: cheffo@freebsd-bg.org
|
Tuesday, 13 Oct 2015
|
16:12 vanilla
Add databases/elixir-exredis.
|
Monday, 12 Oct 2015
|
04:54 alfred
New port: databases/jlog
JLog is short for "journaled log" and this package is really an API
and implementation that is libjlog. What is libjlog? libjlog is a
pure C, very simple durable message queue with multiple subscribers
and publishers (both thread and multi-process safe). The basic
concept is that publishers can open a log and write messages to it
while subscribers open the log and consume messages from it. "That
sounds easy." libjlog abstracts away the need to perform log rotation
or maintenance by publishing into fixed size log buffers and
eliminating old log buffers when there are no more consumers pending.
WWW: https://labs.omniti.com/labs/jlog
Reviewed by: brnrd
|
Wednesday, 30 Sep 2015
|
10:28 marino
Add new port databases/libnvpair
libnvpair is a name-value pair library originating from Solaris
The nvpair library was released in OpenSolaris and has been extended
by the Illumos project. It exports a set of functions used for managing
name-value pairs. This is a base library for Solaris and its descendents.
However, the kernel-specific code has been removed thus libnvpair is
strictly meant for the userland. The XDR functionality has been masked
for now due to RPC differences between *BSD and Illumos.
|
Tuesday, 29 Sep 2015
|
10:48 olgeni
Sort category Makefiles.
|
Monday, 28 Sep 2015
|
18:36 rm
PyMSSQL is a MS-SQL database adapter for the Python programming
language. It was written from scratch using FreeTDS library.
This is the version 2 release branch.
WWW: http://www.pymssql.org/
WWW: https://github.com/pymssql/pymssql
PR: 198694
Submitted by: ports@thelanman.net (based on)
|
Thursday, 24 Sep 2015
|
20:53 wg
databses/riak2: Riak is an open source, distributed database. Riak is
architected for:
* Low-Latency
Riak is designed to store data and serve requests predictably and quickly, even
during peak times.
* Availability
Riak replicates and retrieves data intelligently, making it available for read
and write operations even in failure conditions.
* Fault-Tolerance
Riak is fault-tolerant so you can lose access to nodes due to network partition
or hardware failure and never lose data.
* Operational Simplicity
Riak allows you to add machines to the cluster easily, without a large
operational burden.
WWW: http://basho.com/riak
Submitted by: nbari, Scott Kamp (based on)
|
Monday, 31 Aug 2015
|
19:38 dbn
lang/pypy: update to 2.6.1
Changes:
- Add external cffi ports (a la python):
- databases/pypy-gdbm
- databases/pypy-sqlite3
- x11-toolkits/pypy-tkinter
- Add bsd.pypy.mk for consistency between pypy ports.
- Add bsd.pypy.cffi.mk for consistency with external cffi ports.
- Switch back to using $PREFIX/pypy-X.Y (the '-' separator is required to
differentiate between lang/pypy and lang/pypy3)
- Remove all patches (upstreamed, see announcement below)
ChangeLog:
- Bug Fixes
- Revive non-SSE2 support
- Fixes for detaching _io.Buffer*
- Clear up contention in the garbage collector between trace-me-later and
pinning
- Issues reported with our previous release were resolved after reports from
users on our issue tracker at https://bitbucket.org/pypy/pypy/issues or on
IRC at #pypy.
- New features:
- cffi was updated to version 1.3
- The python stdlib was updated to 2.7.10 from 2.7.9
- vmprof now supports multiple threads
- The translation process builds cffi import libraries for some stdlib
packages, which should prevent confusion when package.py is not used
- better support for gdb debugging
- FreeBSD should be able to translate PyPy "out of the box" with no patches
- Numpy:
- Better support for record dtypes, including the align keyword
- Implement casting and create output arrays accordingly (still missing some
corner cases)
- Support creation of unicode ndarrays
- Better support ndarray.flags
- Support axis argument in more functions
- Refactor array indexing to support ellipses
- Allow the docstrings of built-in numpy objects to be set at run-time
- Support the buffered nditer creation keyword
- Performance improvements:
- Delay recursive calls to make them non-recursive
- Skip loop unrolling if it compiles too much code
- Tweak the heapcache
- Add a list strategy for lists that store both floats and 32-bit integers.
The latter are encoded as nonstandard NaNs. Benchmarks show that the speed
of such lists is now very close to the speed of purely-int or purely-float
lists.
- Simplify implementation of ffi.gc() to avoid most weakrefs
- Massively improve the performance of map() with more than one sequence
argument
Differential Revision: https://reviews.freebsd.org/D3285
|
Monday, 24 Aug 2015
|
12:06 wen
python-sql is a library to write SQL queries in a pythonic way.
WWW: http://python-sql.tryton.org/
|
Saturday, 22 Aug 2015
|
22:17 vg
New port: databases/tarantool-c
Tarantool-c is a client library written in C for Tarantool.
WWW: https://github.com/tarantool/tarantool-c
|
Tuesday, 4 Aug 2015
|
20:07 swills
databases/rubygem-activerecord41: create port
Add rails 4.1 version of activerecord
PR: 201816
Submitted by: Torsten Zuhlsdorff <ports@toco-domains.de>
|
19:56 swills
databases/rubygem-activemodel41: create port
Add rails 4.1 version of activemodel
PR: 201815
Submitted by: Torsten Zuhlsdorff <ports@toco-domains.de>
|
Tuesday, 28 Jul 2015
|
09:21 olgeni
Add databases/elixir-geo, a set of GIS functions for Elixir with
optional PostGIS support.
|
Wednesday, 22 Jul 2015
|
05:41 rene
Remove expired port:
2015-07-22 databases/p5-DBD-Pg32: Use databases/p5-DBD-Pg instead, compatability
probles are fixed
|
Friday, 17 Jul 2015
|
20:11 pi
New port: databases/levigo
levigo is a Go wrapper for LevelDB.
The API has been godoc'ed and is available on the web.
Questions answered at golang-nuts@googlegroups.com.
WWW: https://github.com/jmhodges/levigo
PR: 194986
Submitted by: cheffo@freebsd-bg.org
|
Thursday, 16 Jul 2015
|
09:02 olgeni
Add databases/elixir-ecto_migrate, automatic migrations for Ecto.
|
Tuesday, 14 Jul 2015
|
14:47 olgeni
Add databases/elixir-calecto, an Adapter for the Calendar library
in Ecto.
|
Wednesday, 8 Jul 2015
|
09:52 bsam
Mtools is a collection of helper scripts to parse and filter MongoDB
log files (mongod, mongos), visualize log files and quickly set up
complex MongoDB test environments on a local machine:
* mlogfilter * slices log files by time, merges log files, filters
slow queries, finds table scans, shortens log lines, filters by
other atributes, convert to JSON;
* mloginfo * returns info about log file, like start and end time,
version, binary, special sections like restarts, connections,
distinct view;
* mplotqueries * visualize logfiles with different types of plots;
* mlogvis * creates a self-contained html file that shows an interactive
visualization in a web browser (as an alternative to mplotqueries);
* mlaunch * a script to quickly spin up local test environments,
including replica sets and sharded systems;
* mgenerate * generates structured pseudo-random data based on a
template for testing and reproduction.
WWW: https://github.com/rueckstiess/mtools/
|
06:22 vanilla
Add elixir-mongo, database driver for mongodb.
|
Friday, 3 Jul 2015
|
15:23 olgeni
Add databases/elixir-timex_ecto, an adapter for using Timex
DateTimes with Ecto.
|
Thursday, 2 Jul 2015
|
13:11 olgeni
Add databases/elixir-mariaex, a database driver for MariaDB and
MySQL written in pure Elixir.
|
13:08 olgeni
Add databases/elixir-postgrex, a database driver for PostgreSQL
written in pure Elixir.
|
13:05 olgeni
Add databases/elixir-ecto, a database wrapper for Elixir.
|
Saturday, 27 Jun 2015
|
12:54 olgeni
Sorting out some Erlang stuff:
- Rename a few Erlang-related ports using the erlang- prefix; it will avoid
confusion with elixir- ports.
- Remove DOCS and EXAMPLES where not actually useful.
- Simplify RUN_DEPENDS where possible.
- Move textproc/exmpp to devel/erlang-exmpp.
- Add missing R18 compatibility fix for devel/erlang-oserl.
- Upgrade erlang-cuttlefish to 2.0.3.
The idea is that libraries ("deps") have the "erlang-" prefix, while larger
projects (rabbitmq, yaws, couchdb, etc) keep their usual names.
|
Friday, 26 Jun 2015
|
12:51 swills
databases/influxdb: create port
An open-source, distributed, time series database with no external dependencies.
WWW: http://influxdb.com
PR: 198073
Submitted by: Stefan Lambrev <cheffo@freebsd-bg.org>
|
Saturday, 20 Jun 2015
|
08:57 gahr
- New port: databases/casstcl
CassTcl provides a Tcl interface to the Cassandra database using DataStax
cpp-driver C/C++ API.
WWW: https://github.com/flightaware/casstcl
|
08:02 gahr
- New port: databases/cassandra-cpp-driver
DataStax Cpp Driver is modern, feature-rich, and highly tunable C/C++
client library for Apache Cassandra (1.2+) and DataStax Enterprise
(3.1+) using exclusively Cassandra's native protocol and Cassandra
Query Language v3.
WWW: http://datastax.github.io/cpp-driver/
|
Thursday, 18 Jun 2015
|
02:06 vanilla
Add p5-LMDB_File, a wrapper of openldap's lmdb.
|
Saturday, 13 Jun 2015
|
09:38 olgeni
Sort entries.
|
Wednesday, 10 Jun 2015
|
18:09 swills
www/rubygem-rails4: update to 4.2.1
Differential Revision: https://reviews.freebsd.org/D2710
|
17:38 rene
Remove one more expired port:
2015-05-10 databases/postgresql84-server: "EOL was reached in July 2014"
The problem in the PR associated with this port did not show up anymore.
|
16:44 rene
Remove expired ports:
2015-05-10 databases/postgresql84-client: "EOL was reached in July 2014"
2015-05-10 databases/postgresql84-contrib: "EOL was reached in July 2014"
2015-05-10 databases/postgresql84-docs: "EOL was reached in July 2014"
2015-05-10 databases/postgresql84-plperl: "EOL was reached in July 2014"
2015-05-10 databases/postgresql84-plpython: "EOL was reached in July 2014"
2015-05-10 databases/postgresql84-pltcl: "EOL was reached in July 2014"
2015-06-02 deskutils/deskbar-applet: Broken since update to gnome3
2015-06-02 deskutils/gimmie: Broken since update to gnome3
2015-06-02 deskutils/glipper: Broken since update to gnome3
2015-06-02 deskutils/gnochm: Broken since update to gnome3
2015-06-02 deskutils/hamster-applet: Broken since update to gnome3
2015-06-02 deskutils/kupfer: Broken since update to gnome3
2015-06-02 deskutils/ontv: Broken since update to gnome3
2015-06-02 deskutils/timer-applet: Broken since update to gnome3
2015-06-02 editors/scribes: Broken since update to gnome3
2015-06-09 games/gweled: Broken since update to gnome3
2015-06-02 games/py-pychess: Broken since update to gnome3
2015-06-08 graphics/gqview: Unmaintained upstream, preferences dialog broken,
use graphics/geeqie fork
2015-05-31 lang/gcc47-aux: GCC 4.7 branch closed June 2014, move to lang/gcc-aux
2015-06-02 multimedia/arista: Broken since update to gnome3
2015-06-02 net/service-discovery-applet: Broken since update to gnome3
2015-06-05 net/shaperprobe: broken with no known fix (PR 197327)
2015-06-02 print/gnome-specimen: Broken since update to gnome3
2015-06-01 x11-themes/gtk-aqualightblue-theme: Upstream disappeared
2015-06-01 x11-themes/gtk-flat-theme2: Upstream disappeared
|
Sunday, 7 Jun 2015
|
21:12 mmoll
new port: databases/rubygem-her
Her is an ORM (Object Relational Mapper) that maps REST
resources to Ruby objects.
WWW: http://www.her-rb.org/
Differential Revision: https://reviews.freebsd.org/D2751
Approved by: mat (mentor)
|
Tuesday, 2 Jun 2015
|
04:51 kuriyama
GitDDL::Migrator is database migration utility extended GitDDL.
Extended features are:
- save migration history
- rollback to previous version
- specify version
- specify SQL (sometimes SQL::Translator's output is wrong)
- check differences from versioned SQL and real database
WWW: http://search.cpan.org/dist/GitDDL-Migrator/
|
04:28 kuriyama
This is database migration helper module for users who manage database
schema version by single .sql file in git repository.
By using this module, you can deploy .sql to database, check sql
version between database and .sql file, make diff between them, and
apply alter table to database.
WWW: http://search.cpan.org/dist/GitDDL/
|
Monday, 1 Jun 2015
|
16:15 allanjude
Create the pypuppetdb port, a python library for interacting with the PuppetDB
REST API
A required dependancy of puppetboard
Differential Revision: https://reviews.freebsd.org/D2671
Approved by: xmj
Sponsored by: ScaleEngine Inc.
|
Tuesday, 19 May 2015
|
06:23 pi
New port: databases/cegobridge (replaces databases/my2cego)
cegobridge is a tool to import/export database dumps into Cego, a
Relational Database Management System (RDBMS). Currently it supports
MySQL, other database systems to import/export can be added.
Many more details are available at:
WWW: http://www.lemke-it.com/
Submitted by: Bjorn Lemke <lemke@lemke-it.com>
|
Thursday, 7 May 2015
|
01:21 wen
The psycogreen package enables psycopg2 to work with coroutine libraries,
using asynchronous calls internally but offering a blocking interface so
that regular code can run unmodified.
WWW: https://bitbucket.org/dvarrazzo/psycogreen
PR: 199067
Submitted by: loic.blot@unix-experience.fr
|
Tuesday, 5 May 2015
|
20:39 olgeni
Add databases/eredis, a Redis client for Erlang.
|
Friday, 17 Apr 2015
|
21:02 rene
Remove expired port:
2015-04-15 databases/php53-pdo_sqlite: security EOL reached 14 Aug 2014
|
21:00 rene
Remove expired ports:
2015-04-15 databases/php53-sqlite3: security EOL reached 14 Aug 2014
2015-04-15 textproc/php53-simplexml: security EOL reached 14 Aug 2014
2015-04-15 databases/php53-sybase_ct: security EOL reached 14 Aug 2014
2015-04-15 databases/php53-pdo_mysql: security EOL reached 14 Aug 2014
2015-04-15 textproc/php53-ctype: security EOL reached 14 Aug 2014
2015-04-15 textproc/php53-wddx: security EOL reached 14 Aug 2014
2015-04-15 security/php53-filter: security EOL reached 14 Aug 2014
2015-04-15 ftp/php53-ftp: security EOL reached 14 Aug 2014
2015-04-15 net/php53-soap: security EOL reached 14 Aug 2014
2015-04-15 converters/php53-recode: security EOL reached 14 Aug 2014
2015-04-15 security/php53-openssl: security EOL reached 14 Aug 2014
2015-04-15 databases/php53-dba: security EOL reached 14 Aug 2014
2015-04-15 databases/php53-pdo_pgsql: security EOL reached 14 Aug 2014
2015-04-15 sysutils/php53-fileinfo: security EOL reached 14 Aug 2014
2015-04-15 databases/php53-pdo_odbc: security EOL reached 14 Aug 2014
2015-04-15 databases/php53-sqlite: security EOL reached 14 Aug 2014
2015-04-15 devel/php53-readline: security EOL reached 14 Aug 2014
2015-04-15 mail/php53-imap: security EOL reached 14 Aug 2014
2015-04-15 sysutils/php53-posix: security EOL reached 14 Aug 2014
2015-04-15 archivers/php53-phar: security EOL reached 14 Aug 2014
2015-04-15 graphics/php53-gd: security EOL reached 14 Aug 2014
2015-04-15 textproc/php53-xsl: security EOL reached 14 Aug 2014
2015-04-15 databases/php53-pdo_firebird: security EOL reached 14 Aug 2014
2015-04-15 devel/mingw64-binutils: Obsolete. Migrate to devel/binutils based
ports
2015-04-15 devel/cross-binutils: Obsolete. Migrate to devel/binutils based
ports
2015-04-15 databases/php53-pdo_dblib: security EOL reached 14 Aug 2014
2015-04-15 devel/php53-sysvshm: security EOL reached 14 Aug 2014
2015-04-15 devel/php53-json: security EOL reached 14 Aug 2014
2015-04-15 databases/php53-redis: requires php53, security EOL reached 14 Aug
2014
2015-04-15 textproc/php53-pspell: security EOL reached 14 Aug 2014
2015-04-15 databases/php53-pgsql: security EOL reached 14 Aug 2014
2015-04-15 textproc/php53-xmlreader: security EOL reached 14 Aug 2014
2015-04-15 converters/php53-iconv: security EOL reached 14 Aug 2014
2015-04-15 databases/php53-odbc: security EOL reached 14 Aug 2014
2015-04-15 ftp/php53-curl: security EOL reached 14 Aug 2014
2015-04-15 math/php53-gmp: security EOL reached 14 Aug 2014
2015-04-15 security/php53-mcrypt: security EOL reached 14 Aug 2014
2015-04-15 devel/php53-shmop: security EOL reached 14 Aug 2014
2015-04-15 math/php53-bcmath: security EOL reached 14 Aug 2014
2015-04-15 security/php53-hash: security EOL reached 14 Aug 2014
2015-04-15 devel/php53-sysvsem: security EOL reached 14 Aug 2014
2015-04-15 archivers/php53-zip: security EOL reached 14 Aug 2014
2015-04-15 graphics/php53-exif: security EOL reached 14 Aug 2014
2015-04-15 devel/php53-gettext: security EOL reached 14 Aug 2014
2015-04-15 databases/php53-mysql: security EOL reached 14 Aug 2014
2015-04-15 textproc/php53-xmlwriter: security EOL reached 14 Aug 2014
2015-04-15 textproc/php53-xml: security EOL reached 14 Aug 2014
2015-04-15 converters/php53-mbstring: security EOL reached 14 Aug 2014
2015-04-15 devel/php53-sysvmsg: security EOL reached 14 Aug 2014
2015-04-15 databases/php53-mysqli: security EOL reached 14 Aug 2014
2015-04-15 misc/php53-calendar: security EOL reached 14 Aug 2014
2015-04-15 devel/php53-tokenizer: security EOL reached 14 Aug 2014
2015-04-15 databases/php53-pdo: security EOL reached 14 Aug 2014
2015-04-15 net/php53-xmlrpc: security EOL reached 14 Aug 2014
2015-04-15 databases/php53-interbase: security EOL reached 14 Aug 2014
2015-04-15 www/php53-session: security EOL reached 14 Aug 2014
2015-04-15 databases/php53-mssql: security EOL reached 14 Aug 2014
2015-04-15 www/php53-tidy: security EOL reached 14 Aug 2014
2015-04-15 archivers/php53-zlib: security EOL reached 14 Aug 2014
2015-04-15 net/php53-ldap: security EOL reached 14 Aug 2014
2015-04-15 net-mgmt/php53-snmp: security EOL reached 14 Aug 2014
2015-04-15 textproc/php53-dom: security EOL reached 14 Aug 2014
2015-04-15 devel/php53-pcntl: security EOL reached 14 Aug 2014
2015-04-15 archivers/php53-bz2: security EOL reached 14 Aug 2014
2015-04-15 net/php53-sockets: security EOL reached 14 Aug 2014
2015-04-15 lang/php53: security EOL reached 14 Aug 2014
2015-04-15 devel/pecl-uuid: requires php53, security EOL reached 14 Aug 2014
2015-04-15 lang/php53-extensions: security EOL reached 14 Aug 2014
2015-04-15 german/pecl-konto_check: requires php53, security EOL reached 14 Aug
2014
2015-04-17 www/moodle26: Deprecated by upstream, use www/moodle2{7,8} instead
|
Sunday, 5 Apr 2015
|
11:21 robak
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>
|
Wednesday, 1 Apr 2015
|
13:58 bofh
[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/
|
Saturday, 28 Mar 2015
|
19:15 adamw
Add databases/p5-Mango, a pure-perl, non-blocking MongoDB driver
designed for use with Mojolicious.
|
01:32 rene
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
|
Saturday, 14 Mar 2015
|
18:16 pawel
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>
|
Saturday, 21 Feb 2015
|
16:30 adamw
Add databases/p5-Mojo-Pg, a PostgreSQL integration for Mojolicious.
|
13:58 pawel
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: Loic BARTOLETTI <coder@tuxfamily.org>
|
Friday, 30 Jan 2015
|
16:22 tj
New port: databases/p5-DBIx-Introspector
Detect what database you are connected to.
|
Monday, 5 Jan 2015
|
18:21 pi
New port: databases/sqlitebrowser
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
|
Sunday, 7 Dec 2014
|
14:09 danfe
- Resurrect, unbreak, cleanup Makefile, define LICENSE (LGPL21)
- Convert three-line pkg-plist into PLIST_FILES knob
- Improve grammar in port description text, fix couple of typos
|
13:46 danfe
Sort the entries and amend COMMENT.
|
10:35 marino
Remove port databases/postgresql93-plv8js (avoids broken index)
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
|
Friday, 5 Dec 2014
|
10:11 antoine
New port: databases/rubygem-arel-helpers
Useful tools to help construct database queries with ActiveRecord and Arel.
WWW: https://github.com/camertron/arel-helpers
|
Tuesday, 2 Dec 2014
|
15:41 matthew
New port:
Barman: backup and recovery manager for PostgreSQL.
Barman is an open-source administration tool for disaster recovery of
PostgreSQL servers written in Python.
It allows your organisation to perform remote backups of multiple
servers in business critical environments and helps DBAs during the
recovery phase.
WWW: http://www.pgbarman.org/
|
15:37 matthew
New port:
pgespresso is an extension to postgresql that adds functions and views
to be used by Barman, the disaster recovery tool
WWW: https://github.com/2ndquadrant-it/pgespresso
|
Monday, 1 Dec 2014
|
19:21 rene
Remove expired ports:
2014-11-30 ports-mgmt/pkg-plist: Generate incorrect plists
2014-11-30 sysutils/rubygem-hiera-puppet: Has been incorporated into hiera
2014-11-30 sysutils/rubygem-hiera-json: Has been incorporated into hiera
2014-11-30 databases/memcachedb: Depends on deprecated Berkeley DB version,
needs porting to DB_SITE
2014-12-01 games/djgame2: Online servers gone, game is not playable
2014-12-01 devel/creduce: Unmaintained and depends on ancient LLVM 3.2
2014-12-01 lang/clay: No development since July 2013, depends on obsolete
clang-3.2
|
Thursday, 20 Nov 2014
|
20:56 pi
New port: databases/p5-Dancer2-Plugin-Database
Dancer2::Plugin::Database provides an easy way to obtain a connected
DBI database handle by simply calling the database keyword
within your Dancer2 application.
Returns a Dancer2::Plugin::Database::Handle object, which is a subclass of DBI's
DBI::db connection handle object, so it does everything you'd expect to do with
DBI, but also adds a few convenience methods. See the documentation for
Dancer2::Plugin::Database::Handle for full details of those.
WWW: http://search.cpan.org/dist/Dancer2-Plugin-Database/
PR: 194960
Submitted by: Henk van Oers <hvo.pm@xs4all.nl>
|
Sunday, 16 Nov 2014
|
14:59 robak
databases/Makefile: fix py-sqlite ports changes
In r372639 I've committed changes related to my work-in-progress cleanup of
py-sqlite ports by mistake. This commit is to revert these changes as they
should not get in to the ports tree yet.
Reviewed by: danfe
Approved by: mentors(implicit)
|
14:36 robak
databases/php56-redis: NEW PORT - PHP5 extension for Redis
This extension provides an API for communicating with Redis database,
a persistent key-value database with built-in net interface written
in ANSI-C for Posix systems.
It is a fork of alfonsojimenez's phpredis, adding many methods and
fixing a lot of issues.
WWW: https://github.com/nicolasff/phpredis
PR: 194270
Submitted by: Daniel Ylitalo <daniel at blodan.se>
Approved by: mentors (implicit)
|
Monday, 10 Nov 2014
|
22:09 pgj
- Add Haskell API and bindings for Redis:
devel/hs-BoundedChan Channels with bounded sizes
devel/hs-bytestring-lexing Parse and produce literals from bytestrings
databases/hs-hedis Haskell API for Redis
PR: 194299
Submitted by: martin@sugioarto.com
Obtained from: FreeBSD Haskell
|
Tuesday, 4 Nov 2014
|
21:58 antoine
Remove duplicate port
|
19:09 marino
Add new port databases/pecl-yac
PR: 194553
Submitted by: John Pupu
Yac is a shared memory user data cache for PHP. It can be used instead of
APC or local memcached.
Yac is lockless, which it is very fast, but there could be a chance the
wrong data will be retrieved (it depends on how many key slots are
allocated and how many keys are stored), so a product using Yac should not
be very sensitive to data loss.
|
08:21 marino
Add new ports databases/mariadb100-server and -client (version 10.0)
PR: 193539
Submitted by: spil.oss (gmail)
MariaDB is a database server that offers drop-in replacement functionality
for MySQL. MariaDB is built by some of the original authors of MySQL, with
assistance from the broader community of Free and open source software
developers. In addition to the core functionality of MySQL, MariaDB offers
a rich set of feature enhancements including alternate storage engines,
server optimizations, and patches.
|
Number of commits found: 2069 (showing only 100 on this page) |