freebsd-ports/databases
Raphael Kubo da Costa a9662ed949 Update Qt5 ports to 5.3.2.
Proudly presented by the KDE on FreeBSD team, with several guest stars.

This update took way longer than initially expected due to us previously
accumulating assumptions and changes to Qt's build system that finally bit
us back with the 5.3 release series, so we had to do a fair amount of
cleanup.

New ports:
- comms/qt5-serialport: Qt functions to access serial ports, originally
                        based on work by Fernando Apesteguia. [1]
- devel/qt5-qdoc: Qt documentation generator, the Qt5 equivalent of
                  devel/qt4-qdoc3. Originally worked on by Tobias Berner.
                  It had already been half-split from devel/qt5-buildtools,
                  we just needed to finish the work.

Dead ports:
- devel/qt5-qmldevtools: Merged into lang/qt5-qml.

Minor changes:
- devel/qt5: Add x11/qt5-x11extras and the new ports to the dependency list.
- graphics/qt5-imageformats: The port now supports the JPEG2000, WEBP,
                             Direct Draw Surface and ICNS formats.
- multimedia/qt5-multimedia: The ALSA and PULSEAUDIO options are now
                             mutually exclusive due to changes introduced in
                             Qt 5.3.0 (the ALSA code is now a proper plugin
                             that is only built if PulseAudio is not used).
- x11/qt5-x11extras: Add USE_LDCONFIG since the port installs a shared
                     library.

The big changes:
- bsd.qt.mk: Set QMAKESPEC instead of QMAKEPATH. [3]
  QMAKEPATH does much more than we want now that we call qmake from the top
  of ${WRKSRC}. qmake uses QMAKEPATH when evaluating the QMAKE_MKSPECS
  property, which is in turn used by qt_config.pri to load the .pri files in
  mkspecs/modules.

  In practice, this means that if people have an older Qt installation those
  files will be used and QT_CONFIG will have values such as "gui" even if
  one is building a port like textproc/qt5-xml, which passes -no-gui to the
  configure script. Consequently, unintended code paths may be enabled or
  the configuration step can just fail if the .pro files expect values that
  are not present in the system-wide, older .pri files.

  We avoid all those problems if we use QMAKESPEC, as qmake does not take
  its value into account when evaluating the QMAKE_MKSPECS property and will
  only parse the files in the mkspec's directory (mkspecs/freebsd-clang, for
  example, instead of all the files in mkspecs).

- Stop explicitly passing ${LOCALBASE} to the compiler. [3]
  qmake's behavior has changed in Qt 5, and the paths set in QMAKE_INCDIR
  and QMAKE_LIBDIR in the mkspecs are passed before any others, such as the
  ones in the build directory themselves.

  In practice, this means that we end up with linker calls like this:

  c++ -o libfoo.so foo.o bar.o -L/usr/local/lib -L/wrkdir/build/lib
      -lQt5Gui -lQt5Core

  So if one already has Qt installed in the system, the older, already
  present version of the libraries in /usr/local/lib will be used instead of
  the newly-built ones in /wrkdir/build/lib.

  QTBUG-40825 discusses this behavior upstream, but there has been no
  agreement on a solution yet.

  For now, the solution adopted is to make the compiler and the linker aware
  of those paths but only try them last after all others, and this is
  achieved by setting the CPATH and LIBRARY_PATH environment variables when
  qmake is being used.

  In addition to setting them in CONFIGURE_ENV and MAKE_ENV, we also need to
  stop changing QMAKE_INCDIR and QMAKE_LIBDIR as well as filter those paths
  from the pkg-config calls qtbase's configure script makes.

- Call qmake from the root of the ${WRKSRC}.

  In Qt 5.3, Qt's build infrastructure has undergone some changes that make
  our previous approach of calling qmake from the directories we want to
  build stop working. Things would break even more in Qt 5.4, in which
  qtbase's configure script does not accept the -process, -fully-process and
  -dont-process arguments anymore (it always behaves as if -process had been
  used).

  Bite the bullet and start calling qmake from ${WRKSRC}. The largest part of
  this change involves changing lines in Makefiles from
    WRKSRC_SUBDIR=	foo/bar
  to
    BUILD_WRKSRC=		${WRKSRC}/foo/bar
    INSTALL_WRKSRC=		${WRKSRC}/foo/bar
  as well as adding patches to .pro files to avoid entering other
  subdirectories and removing post-configure targets that are not necessary
  anymore.

  Since qmake needs to be called from the top of ${WRKSRC} anyway, we can
  also simplify the configuration process for the qtbase ports a little.
  Looking at r10019 it is not clear why we started calling qmake in the
  pre-configure target in addition to the post-configure one (while also
  skipping it in do-configure), but we can now drop this call since letting
  configure behave as if -process had been passed means it will call qmake
  on its own and overwrite the files generated by the pre-configure call. We
  still need to call qmake in post-configure though, as the configure script
  does not pass -recursive when calling qmake and we need to be able to call
  make from any subdirectory when building.

PR:		194762 [1]
PR:		194566 # exp-run with base GCC and clang
PR:		194088 [3]
2014-11-05 09:39:21 +00:00
..
adminer Cleanup plist 2014-10-20 10:41:12 +00:00
adodb Cleanup plist 2014-10-20 10:41:12 +00:00
adodb5 Cleanup plist 2014-10-20 10:41:12 +00:00
akonadi Merge from KDE/FreeBSD in preparation for KDE SC 4.14: 2014-10-19 15:49:51 +00:00
akonadi-googledata Cleanup plist 2014-10-20 10:41:12 +00:00
animenfo-client Convert a bunch of EXTRACT_SUFX=... into USES=tar:... 2014-07-29 19:11:51 +00:00
animenfo-client-gtk Convert a bunch of EXTRACT_SUFX=... into USES=tar:... 2014-07-29 19:11:51 +00:00
apq databases/apq*: Remove @dirrm from four ports 2014-10-16 09:47:15 +00:00
apq-mysql databases/apq*: Remove @dirrm from four ports 2014-10-16 09:47:15 +00:00
apq-odbc databases/apq*: Remove @dirrm from four ports 2014-10-16 09:47:15 +00:00
apq-pgsql databases/apq*: Remove @dirrm from four ports 2014-10-16 09:47:15 +00:00
autobackupmysql Support staging 2014-03-03 13:22:25 +00:00
bbdb Cleanup plist 2014-10-20 10:41:12 +00:00
beansdb Reset maintainer: 2014-05-08 07:59:13 +00:00
buzhug Cleanup plist 2014-10-20 10:41:12 +00:00
c3p0 Cleanup plist 2014-10-20 10:41:12 +00:00
cassandra Cleanup plist 2014-10-20 10:41:12 +00:00
cassandra2 Cleanup plist 2014-10-20 10:41:12 +00:00
cdb Use CFLAGS_amd64 2013-12-27 11:12:02 +00:00
cego databases/cego: 2.20.15 -> 2.20.16 2014-10-24 09:59:24 +00:00
couchdb Cleanup plist 2014-10-20 10:41:12 +00:00
courier-authlib-mysql */courier-authlib*: 2014-09-07 16:12:36 +00:00
courier-authlib-pgsql */courier-authlib*: 2014-09-07 16:12:36 +00:00
courier-authlib-userdb */courier-authlib*: 2014-09-07 16:12:36 +00:00
courier-authlib-usergdbm */courier-authlib*: 2014-09-07 16:12:36 +00:00
cppdb Cleanup plist 2014-10-20 10:41:12 +00:00
credis Fix properties on pkg-plist 2014-01-21 23:18:05 +00:00
dalmp Cleanup plist 2014-10-20 10:41:12 +00:00
datamodeler Cleanup plist 2014-10-20 10:41:12 +00:00
db Allow staging as a regular user 2014-08-24 19:25:07 +00:00
db5 Cleanup plist 2014-10-20 10:41:12 +00:00
db6 Cleanup plist 2014-10-20 10:41:12 +00:00
db48 Cleanup plist 2014-10-20 10:41:12 +00:00
dbconnect Cleanup plist 2014-10-20 10:41:12 +00:00
dbf Cleanup plist 2014-10-20 10:41:12 +00:00
dbf2mysql Rename databases/ patch-xy patches to reflect the files they modify. 2014-07-28 15:51:59 +00:00
dbh Cleanup plist 2014-10-20 10:41:12 +00:00
dbow Cleanup plist 2014-10-20 10:41:12 +00:00
dbtool Cleanup plist 2014-10-20 10:41:12 +00:00
dbview
emma Cleanup plist 2014-10-20 10:41:12 +00:00
epgsql Cleanup plist 2014-10-20 10:41:12 +00:00
erlang-mysql Cleanup plist 2014-10-20 10:41:12 +00:00
evolution-data-server Fix without gperf in base 2014-10-07 15:58:38 +00:00
fastdb Cleanup plist 2014-10-20 10:41:12 +00:00
firebird25-client databases/firebird25-{server|client}: 2.5.2 -> 2.5.3 2014-09-04 20:53:31 +00:00
firebird25-server Simplify plist 2014-10-07 17:02:16 +00:00
flamerobin Cleanup plist 2014-10-20 10:41:12 +00:00
fortytwo-bdb Cleanup plist 2014-10-20 10:41:12 +00:00
fpc-dblib Cleanup plist 2014-10-20 10:41:12 +00:00
fpc-fpindexer Cleanup plist 2014-10-20 10:41:12 +00:00
fpc-gdbm Cleanup plist 2014-10-20 10:41:12 +00:00
fpc-ibase Cleanup plist 2014-10-20 10:41:12 +00:00
fpc-mysql Cleanup plist 2014-10-20 10:41:12 +00:00
fpc-odbc Cleanup plist 2014-10-20 10:41:12 +00:00
fpc-oracle Cleanup plist 2014-10-20 10:41:12 +00:00
fpc-postgres Cleanup plist 2014-10-20 10:41:12 +00:00
fpc-pxlib Cleanup plist 2014-10-20 10:41:12 +00:00
fpc-sqlite Cleanup plist 2014-10-20 10:41:12 +00:00
freetds Modernise databases/freetds port 2014-09-27 08:31:58 +00:00
freetds-devel Cleanup plist 2014-10-20 10:41:12 +00:00
frontbase-jdbc Stagify. 2014-06-07 02:31:20 +00:00
gadfly Cleanup plist 2014-10-20 10:41:12 +00:00
galera - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
gdbm Remove two libtool fixes from Mk/Uses/libtool.mk. They don't always work 2014-07-23 10:28:03 +00:00
geoserver-mysql-plugin Upgrade to 2.5.2. 2014-09-23 15:46:07 +00:00
gigabase Cleanup plist 2014-10-20 10:41:12 +00:00
glom - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
gnats4 Fix packaging 2014-10-31 19:48:09 +00:00
gnatsweb4 databases/gnatsweb4: Unbreak after stage attempt (plist) 2014-07-19 23:55:19 +00:00
godis Cleanup plist 2014-10-20 10:41:12 +00:00
gosqlite3 Cleanup plist 2014-10-20 10:41:12 +00:00
gqlplus - update to 1.16 2014-09-03 08:09:31 +00:00
grass - Convert python and pgsql to USES 2014-10-06 15:18:10 +00:00
gtksql Cleanup plist 2014-10-20 10:41:12 +00:00
hamsterdb Cleanup plist 2014-10-20 10:41:12 +00:00
hashtypes Cleanup plist 2014-10-20 10:41:12 +00:00
hbase Add /usr/local/bin to PATH to let startup scripts to find bash. 2014-10-14 15:49:02 +00:00
hiredis Cleanup plist 2014-10-20 10:41:12 +00:00
hs-esqueleto Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
hs-mysql Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
hs-persistent Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
hs-persistent-sqlite Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
hs-persistent-template Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
hsqldb Cleanup plist 2014-10-20 10:41:12 +00:00
innotop Cleanup plist 2014-10-20 10:41:12 +00:00
ip4r Cleanup plist 2014-10-20 10:41:12 +00:00
ipa_sdb - Switch to USES=libtool, drop .la files 2014-08-15 17:50:45 +00:00
iplike - Update from 2.0.3 to 2.0.6 2014-08-04 16:16:27 +00:00
isql-viewer Stagify. 2014-08-14 09:19:33 +00:00
jakarta-commons-dbutils Remove forgotten .endif 2014-07-03 21:57:54 +00:00
jasperreports databases/jasperreports: update to 5.5.2 2014-10-09 03:07:54 +00:00
java-mybatis Nuke NOPORTDOCS. While, here, correct a couple offenders who label examples 2014-07-03 21:48:44 +00:00
jdb Cleanup plist 2014-10-20 10:41:12 +00:00
jdbc-oracle8i Stagify. 2014-06-07 02:21:27 +00:00
jdbc-oracle9i Fix LEGAL text. 2014-03-03 13:12:39 +00:00
jdbc-oracle10g Stagify. 2014-06-07 02:19:21 +00:00
jdbc-oracle11g - Update to 11.2.0.4 (using JDK 1.6 jar) 2014-06-02 14:15:10 +00:00
jdbm2 Remove indefinite articles and trailing periods from COMMENT, plus 2014-06-10 07:39:01 +00:00
jrobin Remove indefinite articles and trailing periods from COMMENT, plus 2014-06-10 07:39:01 +00:00
jrrd - Update from 1.0.6 to 1.0.7 2014-08-04 16:17:15 +00:00
kbibtex Cleanup plist 2014-10-20 10:41:12 +00:00
kyotocabinet Cleanup plist 2014-10-20 10:41:12 +00:00
kyototycoon Cleanup plist 2014-10-20 10:41:12 +00:00
ldb - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
leo_center Cleanup plist 2014-10-20 10:41:12 +00:00
leofs Cleanup plist 2014-10-20 10:41:12 +00:00
leveldb Cleanup plist 2014-10-20 10:41:12 +00:00
libdbi Cleanup plist 2014-10-20 10:41:12 +00:00
libdbi-drivers - Minor rework: simplify plist handling, drop unused statements 2014-08-26 02:09:18 +00:00
libdrizzle Cleanup plist 2014-10-20 10:41:12 +00:00
libdrizzle-redux Cleanup plist 2014-10-20 10:41:12 +00:00
libgda4 Berkeley DB cleanup, remove versions 4.0 ... 4.7. 2014-08-21 22:50:29 +00:00
libgda4-bdb Berkeley DB cleanup, remove versions 4.0 ... 4.7. 2014-08-21 22:50:29 +00:00
libgda4-jdbc net/openldap24-*: 2014-07-24 18:34:16 +00:00
libgda4-ldap net/openldap24-*: 2014-07-24 18:34:16 +00:00
libgda4-mdb net/openldap24-*: 2014-07-24 18:34:16 +00:00
libgda4-mysql net/openldap24-*: 2014-07-24 18:34:16 +00:00
libgda4-postgresql net/openldap24-*: 2014-07-24 18:34:16 +00:00
libgda4-reference - Stage support for all -reference ports 2013-12-09 18:41:16 +00:00
libgda5 - Fix plist (don't remove mtree directories) 2014-08-25 18:34:15 +00:00
libgda5-bdb net/openldap24-*: 2014-07-24 18:34:16 +00:00
libgda5-jdbc net/openldap24-*: 2014-07-24 18:34:16 +00:00
libgda5-ldap net/openldap24-*: 2014-07-24 18:34:16 +00:00
libgda5-mdb net/openldap24-*: 2014-07-24 18:34:16 +00:00
libgda5-mysql net/openldap24-*: 2014-07-24 18:34:16 +00:00
libgda5-postgresql net/openldap24-*: 2014-07-24 18:34:16 +00:00
libgda5-ui Bump PORTREVISION on more ports that depend on libgcrypt after the update 2014-08-05 22:13:29 +00:00
libgdamm net/openldap24-*: 2014-07-24 18:34:16 +00:00
libgdamm5 net/openldap24-*: 2014-07-24 18:34:16 +00:00
libhsclient Cleanup plist 2014-10-20 10:41:12 +00:00
libiodbc Cleanup plist 2014-10-20 10:41:12 +00:00
libmemcache Cleanup plist 2014-10-20 10:41:12 +00:00
libmemcached Cleanup plist 2014-10-20 10:41:12 +00:00
libmongo-client Cleanup plist 2014-10-20 10:41:12 +00:00
libodbc++ Cleanup plist 2014-10-20 10:41:12 +00:00
libpbl Support staging 2013-12-07 17:40:05 +00:00
libsdb Support STAGEDIR. 2014-05-16 02:31:45 +00:00
libzdb Cleanup plist 2014-10-20 10:41:12 +00:00
linux-c6-sqlite3 Update CentOS base to 6.5, add userland ports 2014-09-22 10:40:00 +00:00
linux-f10-sqlite3 Update CentOS base to 6.5, add userland ports 2014-09-22 10:40:00 +00:00
linux-oracle-instantclient-basic Cleanup plist 2014-10-20 10:41:12 +00:00
linux-oracle-instantclient-sdk Cleanup plist 2014-10-20 10:41:12 +00:00
linux-oracle-instantclient-sqlplus Cleanup plist 2014-10-20 10:41:12 +00:00
liquibase Cleanup plist 2014-10-20 10:41:12 +00:00
lmdb Use local mirror ONLY as gitorious.org keeps rerolling with only timestamp 2014-08-21 08:42:02 +00:00
luadbi Bump PORTREVISION on all ports with USE_SQLITE=yes or USE_SQLITE=3 that 2014-07-04 09:40:59 +00:00
luasql-mysql Cleanup plist 2014-10-20 10:41:12 +00:00
luasql-postgres Support stage 2014-06-10 05:49:41 +00:00
luasql-sqlite3 Support stage 2014-06-10 05:49:41 +00:00
mantis Cleanup plist 2014-10-20 10:41:12 +00:00
mariadb-client Cleanup plist 2014-10-20 10:41:12 +00:00
mariadb-scripts Support stage 2014-03-05 17:38:35 +00:00
mariadb-server Cleanup plist 2014-10-20 10:41:12 +00:00
mariadb55-client Cleanup plist 2014-10-20 10:41:12 +00:00
mariadb55-server Cleanup plist 2014-10-20 10:41:12 +00:00
mariadb100-client Add new ports databases/mariadb100-server and -client (version 10.0) 2014-11-04 08:21:55 +00:00
mariadb100-server Add new ports databases/mariadb100-server and -client (version 10.0) 2014-11-04 08:21:55 +00:00
mdbtools - Convert to USES=libtool and USES=pathfix 2014-08-30 21:21:39 +00:00
mdcached - update to version 1.0.9 2014-01-09 19:12:06 +00:00
memcached Cleanup plist 2014-10-20 10:41:12 +00:00
memcachedb Fix packaging 2014-10-21 19:25:19 +00:00
memcacheq Fix packaging 2014-10-21 19:21:21 +00:00
metakit Cleanup plist 2014-10-20 10:41:12 +00:00
monetdb Cleanup plist 2014-10-20 10:41:12 +00:00
mongodb Update to 2.6.5 release. 2014-10-16 08:38:05 +00:00
mrtg-mysql-load Remove indefinite articles and trailing periods from COMMENT, plus 2014-06-10 07:39:01 +00:00
mtop Cleanup plist 2014-10-20 10:41:12 +00:00
my2cego databases/my2cego: switch to my FreeBSD account email 2014-05-09 05:16:24 +00:00
mydbf2mysql - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
mydumper Fix problems with missing libs when the linker enforces explicit linking 2014-08-10 19:50:23 +00:00
mysac Support staging. 2014-05-16 12:19:31 +00:00
mysql++1 Cleanup plist 2014-10-20 10:41:12 +00:00
mysql++3 Cleanup plist 2014-10-20 10:41:12 +00:00
mysql-connector-c Cleanup plist 2014-10-20 10:41:12 +00:00
mysql-connector-c++ Cleanup plist 2014-10-20 10:41:12 +00:00
mysql-connector-java Update to 5.1.33 2014-09-26 11:44:28 +00:00
mysql-connector-odbc Rename all patches that contain '::' as a path separator, and use 2014-07-29 17:12:47 +00:00
mysql-proxy Cleanup plist 2014-10-20 10:41:12 +00:00
mysql-q4m Rename all patches that contain '::' as a path separator, and use 2014-07-29 17:12:47 +00:00
mysql-udf Support STAGEDIR. 2014-05-16 03:29:49 +00:00
mysql-udf-sys Allow staging as a regular user 2014-09-08 18:24:49 +00:00
mysql-workbench51 Cleanup plist 2014-10-20 10:41:12 +00:00
mysql-workbench52 Cleanup plist 2014-10-20 10:41:12 +00:00
mysql-xql - Add USES=libtool and INSTALL_TARGET=install-strip 2014-08-30 19:46:01 +00:00
mysql2odbc Cleanup plist 2014-10-20 10:41:12 +00:00
mysql2pgsql Support staging 2014-02-26 06:38:36 +00:00
mysql51-client Update to 5.1.73 release and stagify. 2013-12-17 15:00:17 +00:00
mysql51-scripts Update to 5.1.73 release and stagify. 2013-12-17 15:00:17 +00:00
mysql51-server Update CONFLICTS. 2014-11-04 16:44:33 +00:00
mysql55-client Update CONFLICTS. 2014-11-04 16:45:45 +00:00
mysql55-server Update CONFLICTS. 2014-11-04 16:45:45 +00:00
mysql56-client Update to 5.6.21 release. 2014-09-24 10:48:00 +00:00
mysql56-server Update to 5.6.21 release. 2014-09-24 10:48:00 +00:00
mysqlbackup - Update LICENSE 2014-06-03 17:20:45 +00:00
mysqldumper Cleanup plist 2014-10-20 10:41:12 +00:00
mysqlidxchk Convert a bunch of EXTRACT_SUFX=... into USES=tar:... 2014-07-29 19:11:51 +00:00
mysqlreport Convert a bunch of EXTRACT_SUFX=... into USES=tar:... 2014-07-29 19:11:51 +00:00
mysqlsla fix build with perl 5.18 2014-09-20 06:30:59 +00:00
mysqlsniffer Support staging 2014-02-20 08:08:03 +00:00
mysqltcl - Convert to USES=tcl 2014-02-18 15:59:29 +00:00
mysqltuner databases/mysqltuner: 1.2.0 -> 1.3.0, switch to my FreeBSD account email 2014-05-12 16:43:39 +00:00
mytop Cleanup plist 2014-10-20 10:41:12 +00:00
mywwwatcher - Allow staging as a regular user 2014-10-10 21:36:09 +00:00
nagios-check_mongodb - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
nagios-check_postgres_replication Cleanup plist 2014-10-20 10:41:12 +00:00
nagios-check_redis Fix template leftover. 2014-02-03 11:32:14 +00:00
namazu2 Cleanup plist 2014-10-20 10:41:12 +00:00
ntdb - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
ocaml-dbm Cleanup plist 2014-10-20 10:41:12 +00:00
ocaml-mysql Make 7 ports jobs unsafe 2014-08-31 15:52:47 +00:00
ocaml-sqlite3 Bump PORTREVISION on all ports with USE_SQLITE=yes or USE_SQLITE=3 that 2014-07-04 09:40:59 +00:00
openark-kit - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
openbase-jdbc Stagify. 2014-06-07 02:33:32 +00:00
opendbx Cleanup plist 2014-10-20 10:41:12 +00:00
oracle7-client Cleanup plist 2014-10-20 10:41:12 +00:00
oracle8-client Cleanup plist 2014-10-20 10:41:12 +00:00
oracle_odbc_driver - Switch to USES=libtool, drop .la files 2014-07-27 10:15:28 +00:00
p5-Amazon-SimpleDB Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Amon2-DBI Cleanup plist 2014-10-20 10:41:12 +00:00
p5-AnyEvent-BDB Cleanup plist 2014-10-20 10:41:12 +00:00
p5-AnyEvent-CouchDB Cleanup plist 2014-10-20 10:41:12 +00:00
p5-AnyEvent-DBD-Pg Cleanup plist 2014-10-20 10:41:12 +00:00
p5-AnyEvent-Memcached Cleanup plist 2014-10-20 10:41:12 +00:00
p5-AnyEvent-Redis Cleanup plist 2014-10-20 10:41:12 +00:00
p5-AsciiDB-TagFile Cleanup plist 2014-10-20 10:41:12 +00:00
p5-BDB Cleanup plist 2014-10-20 10:41:12 +00:00
p5-BerkeleyDB Cleanup plist 2014-10-20 10:41:12 +00:00
p5-BSON Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Bucardo Update to 5.1.2. 2014-10-16 11:16:52 +00:00
p5-Cache-BDB Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Cache-Memcached Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Cache-Memcached-Fast Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Cache-Memcached-libmemcached Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Cache-Memcached-Managed Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Cache-Memcached-XS Cleanup plist 2014-10-20 10:41:12 +00:00
p5-CDB_File Cleanup plist 2014-10-20 10:41:12 +00:00
p5-CDB_File-Generator Cleanup plist 2014-10-20 10:41:12 +00:00
p5-CGI-Session-Driver-memcached Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-AbstractSearch Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-AsForm Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-AutoLoader Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-BaseDSN Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-DATA-Schema Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-DDL Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-FromCGI Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-LazyInflate Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-Loader Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-Loader-Relationship Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-mysql Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-Oracle Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-Pager Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-Pg Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-Plugin Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-Plugin-AbstractCount Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-Plugin-DeepAbstractSearch Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-Plugin-Iterator Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-Plugin-Pager Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-Plugin-RetrieveAll Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-Plugin-Senna Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-Plugin-Type Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-Replication Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-SAK Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-SQLite Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-Sweet Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-ToSax Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-DBI-Untaint Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Class-Inflate Cleanup plist 2014-10-20 10:41:12 +00:00
p5-CouchDB-View Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Dancer-Plugin-Database Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Dancer-Plugin-Database-Core Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Dancer-Plugin-DBIC Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Dancer-Plugin-Redis Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Dancer-Session-Memcached Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Dancer2-Plugin-DBIC Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Data-Page Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Data-Pageset Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBD-AnyData Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBD-cego databases/p5-DBD-cego: fix Makefile 2014-11-04 20:28:43 +00:00
p5-DBD-CSV Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBD-Excel Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBD-Google Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBD-InterBase Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBD-LDAP Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBD-Mock Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBD-Multi Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBD-mysql Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBD-mysql51 - Support STAGE 2013-12-10 15:56:24 +00:00
p5-DBD-ODBC Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBD-Oracle Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBD-Pg Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBD-Pg32 Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBD-PgLite Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBD-PgPP Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBD-SQLite Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBD-SQLite2 Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBD-Sybase Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBD-XBase Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBI Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBI-Shell Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBICx-Deploy Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBICx-MapMaker Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBICx-TestDatabase Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBICx-TxnInsert Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIWrapper Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Abstract Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Admin-CreateTable Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Admin-DSNManager Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Admin-TableInfo Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-AnyDBD Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Browse Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-AsFdat Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-BitField Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-Candy Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-Cursor-Cached Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-CustomPrefetch Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-DateTime-Epoch Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-DeploymentHandler Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-DigestColumns Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-DynamicDefault Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-DynamicSubclass Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-EncodeColumns Support staging 2014-02-09 11:58:06 +00:00
p5-DBIx-Class-EncodedColumn Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-Fixtures Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-FrozenColumns Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-Helpers Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-InflateColumn-Authen-Passphrase Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-InflateColumn-FS Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-InflateColumn-IP Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-IntrospectableM2M Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-Loader Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-Migration Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-MooseColumns Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-PassphraseColumn Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-QueryLog Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-QueryProfiler Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-ResultSet-HashRef Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-ResultSet-RecursiveUpdate Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-Schema-Config Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-Schema-Loader Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-Schema-PopulateMore Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-TimeStamp Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-Tree Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-Tree-NestedSet Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-UUIDColumns Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-VirtualColumns Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Class-WebForm Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Connector Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-ContextualFetch Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Custom Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-DataSource Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-DBHResolver Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-DBSchema Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Dump Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Ease Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-HA Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Inspector Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Log4perl Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-MySQLSequence Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-NoSQL Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Password Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Perlish Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-QueryLog Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Recordset Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-RetryOverDisconnects Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Safe Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-SearchBuilder Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Sequence Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Simple Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Skinny Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Skinny-InflateColumn-DateTime Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Skinny-Mixin-DBHResolver Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Skinny-Pager Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Skinny-Schema-Loader Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-SQLEngine Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-SQLite-Simple Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Sunny Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-TableHash Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-TransactionManager Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Tree Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-VersionedDDL Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-Wrapper Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-XHTML_Table Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBIx-XML_RDB Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DBM-Deep Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DMOZ-ParseRDF Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DR-Tarantool Cleanup plist 2014-10-20 10:41:12 +00:00
p5-DWH_File Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Exception-Class-DBI Cleanup plist 2014-10-20 10:41:12 +00:00
p5-GDBM Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Genezzo Cleanup plist 2014-10-20 10:41:12 +00:00
p5-GraphViz-DBI Cleanup plist 2014-10-20 10:41:12 +00:00
p5-HTML-FormHandler-Model-DBIC Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Ima-DBI Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Iterator-DBI Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Jifty-DBI Cleanup plist 2014-10-20 10:41:12 +00:00
p5-KyotoCabinet Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Memcached-libmemcached Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Metadata Cleanup plist 2014-10-20 10:41:12 +00:00
p5-MLDBM Cleanup plist 2014-10-20 10:41:12 +00:00
p5-MLDBM-Sync Cleanup plist 2014-10-20 10:41:12 +00:00
p5-MongoDB Cleanup plist 2014-10-20 10:41:12 +00:00
p5-MR-Tarantool Cleanup plist 2014-10-20 10:41:12 +00:00
p5-MySQL-Diff Cleanup plist 2014-10-20 10:41:12 +00:00
p5-mysql-genocide Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Net-Async-CassandraCQL Cleanup plist 2014-10-20 10:41:12 +00:00
p5-ORLite Cleanup plist 2014-10-20 10:41:12 +00:00
p5-ORLite-Migrate Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Oryx Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Pg Cleanup plist 2014-10-20 10:41:12 +00:00
p5-POE-Component-DBIAgent Cleanup plist 2014-10-20 10:41:12 +00:00
p5-POE-Component-EasyDBI Cleanup plist 2014-10-20 10:41:12 +00:00
p5-POE-Component-LaDBI Cleanup plist 2014-10-20 10:41:12 +00:00
p5-POE-Component-RRDTool Cleanup plist 2014-10-20 10:41:12 +00:00
p5-PostgreSQL-PLPerl-Call Cleanup plist 2014-10-20 10:41:12 +00:00
p5-PostgreSQL-PLPerl-Trace Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Prophet Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Protocol-CassandraCQL Cleanup plist 2014-10-20 10:41:12 +00:00
p5-qdbm Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Redis Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Redis-hiredis Cleanup plist 2014-10-20 10:41:12 +00:00
p5-RedisDB Cleanup plist 2014-10-20 10:41:12 +00:00
p5-RedisDB-Parser Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Relations Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Relations-Query Cleanup plist 2014-10-20 10:41:12 +00:00
p5-ResourcePool-Resource-DBI Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Rose-DB Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Rose-DB-Object Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Rose-DBx-Object-MoreHelpers Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Rose-DBx-Object-Renderer Cleanup plist 2014-10-20 10:41:12 +00:00
p5-RRD-Simple Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Search-InvertedIndex Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Search-Namazu Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Search-Xapian Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Search-Xapian10 Cleanup plist 2014-10-20 10:41:12 +00:00
p5-SQL-Abstract - Update to 1.81 2014-10-31 09:17:14 +00:00
p5-SQL-Abstract-Limit Cleanup plist 2014-10-20 10:41:12 +00:00
p5-SQL-Abstract-More Cleanup plist 2014-10-20 10:41:12 +00:00
p5-SQL-Abstract-Plugin-InsertMulti Cleanup plist 2014-10-20 10:41:12 +00:00
p5-SQL-Interp Cleanup plist 2014-10-20 10:41:12 +00:00
p5-SQL-Maker Cleanup plist 2014-10-20 10:41:12 +00:00
p5-SQL-ReservedWords Cleanup plist 2014-10-20 10:41:12 +00:00
p5-SQL-Statement Cleanup plist 2014-10-20 10:41:12 +00:00
p5-SQL-Translator Cleanup plist 2014-10-20 10:41:12 +00:00
p5-SQLite-Work Cleanup plist 2014-10-20 10:41:12 +00:00
p5-T2 Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Tangram Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Template-DBI Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Teng Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Test-Cukes Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Test-Database Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Test-DatabaseRow Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Test-Fixture-DBI Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Test-mysqld Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Test-postgresql Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Text-Query-SQL Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Text-xSV Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Tie-DBI Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Tie-LevelDB Cleanup plist 2014-10-20 10:41:12 +00:00
p5-Time-Piece-MySQL Cleanup plist 2014-10-20 10:41:12 +00:00
p5-TokyoCabinet Cleanup plist 2014-10-20 10:41:12 +00:00
p5-tokyotyrant Cleanup plist 2014-10-20 10:41:12 +00:00
pear-DB Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-DB_DataObject Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-DB_DataObject_FormBuilder Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-DB_ldap Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-DB_ldap2 Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-DB_Pager Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-DB_QueryTool Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-DB_Sqlite_Tools Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-DB_Table Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-DBA Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-DBA_Relational Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-DoctrineCommon Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-DoctrineDBAL Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-DoctrineORM Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-Horde_Db Horde package update: 2014-10-29 22:12:34 +00:00
pear-Horde_HashTable Convert to USES=horde 2014-09-30 22:14:59 +00:00
pear-Horde_Imsp Convert to USES=horde 2014-09-30 22:14:59 +00:00
pear-Horde_Memcache Convert to USES=horde 2014-09-30 22:14:59 +00:00
pear-Horde_Mongo Convert to USES=horde 2014-09-30 22:14:59 +00:00
pear-MDB Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-MDB2 Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-MDB2_Driver_mysql Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-MDB2_Driver_mysqli Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-MDB2_Driver_pgsql Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-MDB2_Schema Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-MDB_QueryTool Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-Structures_DataGrid_DataSource_Array Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-Structures_DataGrid_DataSource_CSV Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-Structures_DataGrid_DataSource_DataObject Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-Structures_DataGrid_DataSource_DB Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-Structures_DataGrid_DataSource_DBQuery Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-Structures_DataGrid_DataSource_DBTable Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-Structures_DataGrid_DataSource_MDB2 Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-Structures_DataGrid_DataSource_PDO Convert to USES=pear 2014-09-23 14:14:19 +00:00
pear-XML_Query2XML Convert to USES=pear 2014-09-23 14:14:19 +00:00
pecl-chdb - Stageify 2014-01-23 16:00:14 +00:00
pecl-dbase - Stageify 2014-01-23 16:00:14 +00:00
pecl-drizzle - fix DEFAULT_VERSIONS usage 2014-09-23 22:24:19 +00:00
pecl-handlersocket Remove indefinite articles and trailing periods from COMMENT, plus 2014-06-10 07:39:01 +00:00
pecl-leveldb Upgrade snappy to 1.1.1, and bump all related PORTREVISION to chase shared library version. 2014-06-03 14:34:06 +00:00
pecl-mdbtools Convert a bunch of EXTRACT_SUFX=... into USES=tar:... 2014-07-29 19:11:51 +00:00
pecl-memcache Cleanup plist 2014-10-20 10:41:12 +00:00
pecl-memcached - Update *_DEPENDS 2014-07-31 17:28:49 +00:00
pecl-mongo - Update to 1.5.2 2014-05-18 07:33:15 +00:00
pecl-mysqlnd_ms These do not build with php 5.6. 2014-10-13 13:20:51 +00:00
pecl-mysqlnd_qc These do not build with php 5.6. 2014-10-13 13:20:51 +00:00
pecl-pdo_user - Stageify 2014-01-23 16:00:14 +00:00
pecl-rrd Clean up databases/rrdtool 2014-07-23 20:11:10 +00:00
pecl-tokyo_tyrant Convert a bunch of EXTRACT_SUFX=... into USES=tar:... 2014-07-29 19:11:51 +00:00
percona-toolkit - Update to 2.2.11 2014-10-02 01:05:56 +00:00
percona55-client Cleanup plist 2014-10-20 10:41:12 +00:00
percona55-server Cleanup plist 2014-10-20 10:41:12 +00:00
percona56-client Cleanup plist 2014-10-20 10:41:12 +00:00
percona56-server Cleanup plist 2014-10-20 10:41:12 +00:00
pg_activity - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
pg_reorg - Fix build 2014-05-29 20:21:45 +00:00
pg_rman Convert to USES=pgsql 2014-05-05 12:40:05 +00:00
pg_statsinfo Cleanup plist 2014-10-20 10:41:12 +00:00
pgaccess Cleanup plist 2014-10-20 10:41:12 +00:00
pgadmin3 Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
pgagent Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
pgbadger Cleanup plist 2014-10-20 10:41:12 +00:00
pgbouncer Fix yet another typo 2014-10-22 08:28:59 +00:00
pgdbf Convert a bunch of USE_XZ to USES=tar:xz. 2014-07-29 21:07:39 +00:00
pgfouine Cleanup plist 2014-10-20 10:41:12 +00:00
pglesslog Cleanup plist 2014-10-20 10:41:12 +00:00
pgloader Cleanup plist 2014-10-20 10:41:12 +00:00
pgpool Cleanup plist 2014-10-20 10:41:12 +00:00
pgpool-II Cleanup plist 2014-10-20 10:41:12 +00:00
pgpool-II-22 Cleanup plist 2014-10-20 10:41:12 +00:00
pgpool-II-23 Cleanup plist 2014-10-20 10:41:12 +00:00
pgpool-II-30 Cleanup plist 2014-10-20 10:41:12 +00:00
pgpool-II-33 Cleanup plist 2014-10-20 10:41:12 +00:00
pgpoolAdmin - update to 3.3.1 2014-08-31 10:25:38 +00:00
pgrouting Cleanup plist 2014-10-20 10:41:12 +00:00
pgsphere - Use PLIST_DIRS instead of deprecated PLIST_DIRSTRY 2014-09-30 15:23:15 +00:00
pgtcl - Bump PORTREVISION after r370351 2014-10-07 16:03:52 +00:00
pgtop Cleanup plist 2014-10-20 10:41:12 +00:00
pgtune Cleanup plist 2014-10-20 10:41:12 +00:00
pgworksheet - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
php-adodb-ext - Allow build with php55 2014-04-06 05:49:11 +00:00
php-mdcached - update to version 1.0.9 2014-01-09 19:12:06 +00:00
php5-creole Cleanup plist 2014-10-20 10:41:12 +00:00
php5-dba Stagify. 2013-10-30 13:32:02 +00:00
php5-interbase - Update to 5.4.25 release [1] 2014-02-09 08:39:00 +00:00
php5-mssql Stagify. 2013-10-30 13:32:02 +00:00
php5-mysql Stagify. 2013-10-30 13:32:02 +00:00
php5-mysqli Stagify. 2013-10-30 13:32:02 +00:00
php5-odbc Stagify. 2013-10-30 13:32:02 +00:00
php5-pdo Stagify. 2013-10-30 13:32:02 +00:00
php5-pdo_cassandra Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
php5-pdo_dblib Stagify. 2013-10-30 13:32:02 +00:00
php5-pdo_firebird - Update to 5.4.25 release [1] 2014-02-09 08:39:00 +00:00
php5-pdo_mysql Stagify. 2013-10-30 13:32:02 +00:00
php5-pdo_odbc Stagify. 2013-10-30 13:32:02 +00:00
php5-pdo_pgsql Stagify. 2013-10-30 13:32:02 +00:00
php5-pdo_sqlite Bump PORTREVISION on all ports with USE_SQLITE=yes or USE_SQLITE=3 that 2014-07-04 09:40:59 +00:00
php5-pgsql Stagify. 2013-10-30 13:32:02 +00:00
php5-propel Cleanup plist 2014-10-20 10:41:12 +00:00
php5-redis - fix DEFAULT_VERSIONS usage 2014-09-23 22:24:19 +00:00
php5-sqlite3 Bump more ports that depend on libsqlite3.so: 2014-07-05 12:19:32 +00:00
php5-sybase_ct Stagify. 2013-10-30 13:32:02 +00:00
php5-tarantool - Stage support 2014-02-14 15:01:25 +00:00
php53-dba - convert php53 ports to STAGE 2013-11-01 23:49:56 +00:00
php53-interbase Update to 5.3.28 2013-12-14 23:30:36 +00:00
php53-mssql - convert php53 ports to STAGE 2013-11-01 23:49:56 +00:00
php53-mysql - convert php53 ports to STAGE 2013-11-01 23:49:56 +00:00
php53-mysqli - convert php53 ports to STAGE 2013-11-01 23:49:56 +00:00
php53-odbc - convert php53 ports to STAGE 2013-11-01 23:49:56 +00:00
php53-pdo - convert php53 ports to STAGE 2013-11-01 23:49:56 +00:00
php53-pdo_dblib - convert php53 ports to STAGE 2013-11-01 23:49:56 +00:00
php53-pdo_firebird Update to 5.3.28 2013-12-14 23:30:36 +00:00
php53-pdo_mysql - convert php53 ports to STAGE 2013-11-01 23:49:56 +00:00
php53-pdo_odbc - convert php53 ports to STAGE 2013-11-01 23:49:56 +00:00
php53-pdo_pgsql - convert php53 ports to STAGE 2013-11-01 23:49:56 +00:00
php53-pdo_sqlite Bump PORTREVISION on all ports with USE_SQLITE=yes or USE_SQLITE=3 that 2014-07-04 09:40:59 +00:00
php53-pgsql - convert php53 ports to STAGE 2013-11-01 23:49:56 +00:00
php53-redis Reset maintainer. 2014-04-09 01:12:52 +00:00
php53-sqlite - convert php53 ports to STAGE 2013-11-01 23:49:56 +00:00
php53-sqlite3 Bump more ports that depend on libsqlite3.so: 2014-07-05 12:19:32 +00:00
php53-sybase_ct - convert php53 ports to STAGE 2013-11-01 23:49:56 +00:00
php55-dba Stagify. 2013-10-30 13:32:02 +00:00
php55-interbase - Update to 5.5.9 release 2014-02-09 12:46:09 +00:00
php55-mssql Stagify. 2013-10-30 13:32:02 +00:00
php55-mysql Stagify. 2013-10-30 13:32:02 +00:00
php55-mysqli Stagify. 2013-10-30 13:32:02 +00:00
php55-odbc Stagify. 2013-10-30 13:32:02 +00:00
php55-pdo Stagify. 2013-10-30 13:32:02 +00:00
php55-pdo_dblib Stagify. 2013-10-30 13:32:02 +00:00
php55-pdo_firebird - Update to 5.5.9 release 2014-02-09 12:46:09 +00:00
php55-pdo_mysql Stagify. 2013-10-30 13:32:02 +00:00
php55-pdo_odbc Stagify. 2013-10-30 13:32:02 +00:00
php55-pdo_pgsql Stagify. 2013-10-30 13:32:02 +00:00
php55-pdo_sqlite Bump PORTREVISION on all ports with USE_SQLITE=yes or USE_SQLITE=3 that 2014-07-04 09:40:59 +00:00
php55-pgsql Stagify. 2013-10-30 13:32:02 +00:00
php55-redis This extension provides an API for communicating with Redis database, 2014-06-04 11:49:48 +00:00
php55-sqlite3 Bump more ports that depend on libsqlite3.so: 2014-07-05 12:19:32 +00:00
php55-sybase_ct Stagify. 2013-10-30 13:32:02 +00:00
php56-dba Import PHP 5.6 branch! 2014-09-04 14:24:25 +00:00
php56-interbase Import PHP 5.6 branch! 2014-09-04 14:24:25 +00:00
php56-mssql Import PHP 5.6 branch! 2014-09-04 14:24:25 +00:00
php56-mysql Import PHP 5.6 branch! 2014-09-04 14:24:25 +00:00
php56-mysqli Import PHP 5.6 branch! 2014-09-04 14:24:25 +00:00
php56-odbc Import PHP 5.6 branch! 2014-09-04 14:24:25 +00:00
php56-pdo Import PHP 5.6 branch! 2014-09-04 14:24:25 +00:00
php56-pdo_dblib Import PHP 5.6 branch! 2014-09-04 14:24:25 +00:00
php56-pdo_firebird Import PHP 5.6 branch! 2014-09-04 14:24:25 +00:00
php56-pdo_mysql Import PHP 5.6 branch! 2014-09-04 14:24:25 +00:00
php56-pdo_odbc Import PHP 5.6 branch! 2014-09-04 14:24:25 +00:00
php56-pdo_pgsql Import PHP 5.6 branch! 2014-09-04 14:24:25 +00:00
php56-pdo_sqlite Import PHP 5.6 branch! 2014-09-04 14:24:25 +00:00
php56-pgsql Import PHP 5.6 branch! 2014-09-04 14:24:25 +00:00
php56-sqlite3 Import PHP 5.6 branch! 2014-09-04 14:24:25 +00:00
php56-sybase_ct Import PHP 5.6 branch! 2014-09-04 14:24:25 +00:00
phpminiadmin Update to 1.9.140405. 2014-08-24 16:20:05 +00:00
phpmyadmin Update to 4.2.11 2014-11-01 13:49:40 +00:00
phppgadmin Cleanup plist 2014-10-20 10:41:12 +00:00
postgis-jdbc Stagify. 2014-06-13 16:36:24 +00:00
postgis20 Cleanup plist 2014-10-20 10:41:12 +00:00
postgis21 Cleanup plist 2014-10-20 10:41:12 +00:00
postgresql-jdbc - Update to 9.2.1004 2014-06-09 06:24:45 +00:00
postgresql-libpgeasy Cleanup plist 2014-10-20 10:41:12 +00:00
postgresql-libpqxx Cleanup plist 2014-10-20 10:41:12 +00:00
postgresql-libpqxx3 Cleanup plist 2014-10-20 10:41:12 +00:00
postgresql-odbc Reset maintainership 2014-10-17 10:23:34 +00:00
postgresql-pllua Cleanup plist 2014-10-20 10:41:12 +00:00
postgresql-plproxy Cleanup plist 2014-10-20 10:41:12 +00:00
postgresql-plruby Cleanup plist 2014-10-20 10:41:12 +00:00
postgresql-plv8js Cleanup plist 2014-10-20 10:41:12 +00:00
postgresql-relay Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql-repmgr Cleanup plist 2014-10-20 10:41:12 +00:00
postgresql84-client Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql84-contrib Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql84-docs Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql84-plperl Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql84-plpython - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
postgresql84-pltcl Fixup any version changes I missed yesterday. 2014-08-26 10:17:30 +00:00
postgresql84-server Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql90-client Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql90-contrib Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql90-docs Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql90-pgtcl Chase USES=pgsql in pgtcl slaves 2014-05-29 08:12:51 +00:00
postgresql90-plperl Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql90-plpython - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
postgresql90-pltcl Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql90-server - Unbreak builds after the lang/python27 update (r363790) 2014-08-02 07:01:53 +00:00
postgresql91-client Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql91-contrib Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql91-docs Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql91-pgtcl Chase USES=pgsql in pgtcl slaves 2014-05-29 08:12:51 +00:00
postgresql91-plperl Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql91-plpython Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql91-pltcl Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql91-server Turn OPTIONS_SINGLE KRB5 into an OPTIONS_RADIO like it is supposed to be 2014-09-10 13:34:53 +00:00
postgresql92-client Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql92-contrib Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql92-docs Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql92-pgtcl Chase USES=pgsql in pgtcl slaves 2014-05-29 08:12:51 +00:00
postgresql92-plperl Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql92-plpython Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql92-pltcl Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql92-server Turn OPTIONS_SINGLE KRB5 into an OPTIONS_RADIO like it is supposed to be 2014-09-10 13:34:53 +00:00
postgresql93-client Convert pgsql ports to use USES+=pgsql 2014-08-25 17:53:26 +00:00
postgresql93-contrib Fixup any version changes I missed yesterday. 2014-08-26 10:17:30 +00:00
postgresql93-docs Fixup any version changes I missed yesterday. 2014-08-26 10:17:30 +00:00
postgresql93-pgtcl Chase USES=pgsql in pgtcl slaves 2014-05-29 08:12:51 +00:00
postgresql93-plperl Fixup any version changes I missed yesterday. 2014-08-26 10:17:30 +00:00
postgresql93-plpython Fixup any version changes I missed yesterday. 2014-08-26 10:17:30 +00:00
postgresql93-pltcl Fixup any version changes I missed yesterday. 2014-08-26 10:17:30 +00:00
postgresql93-plv8js Remove trailing / 2014-10-05 14:37:24 +00:00
postgresql93-server - Unbreak builds after the lang/python27 update (r363790) 2014-08-02 07:01:53 +00:00
postgresql94-client Update to PostgreSQL 9.4 beta3 2014-10-09 15:20:52 +00:00
postgresql94-contrib Update to PostgreSQL 9.4 beta3 2014-10-09 15:20:52 +00:00
postgresql94-docs Fixup any version changes I missed yesterday. 2014-08-26 10:17:30 +00:00
postgresql94-pgtcl Chase USES=pgsql in pgtcl slaves 2014-05-29 08:12:51 +00:00
postgresql94-plperl Fixup any version changes I missed yesterday. 2014-08-26 10:17:30 +00:00
postgresql94-plpython Fixup any version changes I missed yesterday. 2014-08-26 10:17:30 +00:00
postgresql94-pltcl Fixup any version changes I missed yesterday. 2014-08-26 10:17:30 +00:00
postgresql94-server Update to PostgreSQL 9.4 beta3 2014-10-09 15:20:52 +00:00
postgresql_autodoc Cleanup plist 2014-10-20 10:41:12 +00:00
powerarchitect Cleanup plist 2014-10-20 10:41:12 +00:00
proftpd-mod_sql_mysql Add STAGE support to ProFTPD 2014-01-19 11:24:24 +00:00
proftpd-mod_sql_odbc Bump PORTREVISION to fix builds for proftpd-mod_sql_odbc 2014-05-24 06:03:35 +00:00
proftpd-mod_sql_postgres Convert to USES=pgsql 2014-10-08 17:09:39 +00:00
proftpd-mod_sql_sqlite Bump more ports that depend on libsqlite3.so: 2014-07-05 12:19:32 +00:00
proftpd-mod_sql_tds Make proftpd-mod_sql_tds use its own version 2014-03-15 16:55:47 +00:00
puppetdb Simplify plist 2014-09-22 09:33:51 +00:00
puppetdb-terminus Cleanup plist 2014-10-20 10:41:12 +00:00
pure-sql3 1: Stagify. 2014-08-07 14:26:37 +00:00
puredb Cleanup plist 2014-10-20 10:41:12 +00:00
pxlib - Switch to USES=libtool, drop .la files 2014-08-25 22:29:04 +00:00
pxtools Rename all patches that contain '::' as a path separator, and use 2014-07-29 17:12:47 +00:00
py-alembic - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-apsw - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-bsddb - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-bsddb3 databases/py-bsddb3: Fix build with python 3.x 2014-09-20 17:10:36 +00:00
py-carbon Cleanup plist 2014-10-20 10:41:12 +00:00
py-cdb Cleanup plist 2014-10-20 10:41:12 +00:00
py-couchdb Cleanup plist 2014-10-20 10:41:12 +00:00
py-cql Cleanup plist 2014-10-20 10:41:12 +00:00
py-dbf - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-dbutils - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-Elixir - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-fdb - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-firebirdsql - Update to version 0.9.4 [1] 2014-11-02 13:59:24 +00:00
py-flask-sqlalchemy - Update to 2.0 2014-08-29 21:53:51 +00:00
py-forgetsql Cleanup plist 2014-10-20 10:41:12 +00:00
py-gdbm - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-geoalchemy - Convert PYTHON_FEATURES to USE_PYTHON (which was landed several hours ago) 2014-08-15 03:43:54 +00:00
py-geoalchemy2 - Convert PYTHON_FEATURES to USE_PYTHON (which was landed several hours ago) 2014-08-15 03:43:54 +00:00
py-hiredis - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-htsql - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-htsql-mysql - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-htsql-pgsql - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-kyotocabinet - Convert PYTHON_FEATURES to USE_PYTHON (which was landed several hours ago) 2014-08-15 03:43:54 +00:00
py-leveldb - Convert PYTHON_FEATURES to USE_PYTHON (which was landed several hours ago) 2014-08-15 03:43:54 +00:00
py-memcached - Fix build: use USES=python:2 2014-08-30 09:14:29 +00:00
py-mssql Modernise databases/freetds port 2014-09-27 08:31:58 +00:00
py-mysql-connector-python databases/py-mysql-connector-python: Upgrade version 1.2.2 => 1.2.3 2014-10-05 23:03:54 +00:00
py-mysql-connector-python2 Fix pkgname collision 2014-10-06 21:43:08 +00:00
py-mysql2pgsql - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-MySQLdb - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-MySQLdb51 - make py*-MySQLdb ports actually conflict with each other [1] 2014-02-09 14:15:28 +00:00
py-MySQLdb55 - make py*-MySQLdb ports actually conflict with each other [1] 2014-02-09 14:15:28 +00:00
py-MySQLdb56 - make py*-MySQLdb ports actually conflict with each other [1] 2014-02-09 14:15:28 +00:00
py-odbc - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-oops - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-peewee databases/py-peewee: update to 2.3.1 2014-08-23 19:09:35 +00:00
py-pg8000 - Rename PYTHON_FEATURES to USE_PYTHON to comply to USE_PERL5 and to avoid a 2014-08-14 17:04:30 +00:00
py-pg_pqueue Cleanup plist 2014-10-20 10:41:12 +00:00
py-pgxnclient - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-pickledb - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-postgresql Convert USES=pgsql and USES=python:3 2014-10-08 17:14:51 +00:00
py-psycopg Cleanup plist 2014-10-20 10:41:12 +00:00
py-psycopg2 databases/py-psycopg2: allow concurrent install 2014-10-07 14:45:39 +00:00
py-PyGreSQL Convert to USES=pgsql and USES=python 2014-10-08 17:13:17 +00:00
py-pyhs - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-pylibmc - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-pymysql - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-pyPgSQL Cleanup plist 2014-10-20 10:41:12 +00:00
py-Pyrseas - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-pytc - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-python-rrdtool - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-qt4-sql Cleanup plist 2014-10-20 10:41:12 +00:00
py-redis - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-riak databases/py-riak: Update to 2.1.0rc1 2014-08-30 02:32:58 +00:00
py-rrdtool_lgpl - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-south - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-sqlalchemy Cleanup plist 2014-10-20 10:41:12 +00:00
py-sqlalchemy-devel - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-sqlalchemy-migrate - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-sqlalchemy06 Cleanup plist 2014-10-20 10:41:12 +00:00
py-sqlite3 - Convert to USES=python 2014-09-28 16:37:33 +00:00
py-sqlite3dbm - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-sqlkit Cleanup plist 2014-10-20 10:41:12 +00:00
py-sqlobject Remove optional dependency on BROKEN and unstaged databases/kinterbasdb 2014-09-07 07:00:41 +00:00
py-sqlparse - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-sqlrelay Cleanup plist 2014-10-20 10:41:12 +00:00
py-swift Cleanup plist 2014-10-20 10:41:12 +00:00
py-swiftclient - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-sybase - Fix LIB_DEPENDS, this port links against libct no libtds 2014-09-22 17:18:57 +00:00
py-tarantool Convert to USES=python 2014-09-28 17:29:06 +00:00
py-umemcache - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
py-whisper - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
pydbdesigner Cleanup plist 2014-10-20 10:41:12 +00:00
pydbx Cleanup plist 2014-10-20 10:41:12 +00:00
pymongo - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
pyspatialite Cleanup plist 2014-10-20 10:41:12 +00:00
qdbm Prevent the port from hardcoding its own CFLAGS/CXXFLAGS. 2014-05-03 15:49:51 +00:00
qdbm-plus Cleanup plist 2014-10-20 10:41:12 +00:00
qof databases/qof: update 0.8.7 -> 0.8.8 2014-09-26 12:15:35 +00:00
qt4-ibase-plugin Cleanup plist 2014-10-20 10:41:12 +00:00
qt4-mysql-plugin Cleanup plist 2014-10-20 10:41:12 +00:00
qt4-odbc-plugin Cleanup plist 2014-10-20 10:41:12 +00:00
qt4-pgsql-plugin Cleanup plist 2014-10-20 10:41:12 +00:00
qt4-sql Cleanup plist 2014-10-20 10:41:12 +00:00
qt4-sqlite-plugin Cleanup plist 2014-10-20 10:41:12 +00:00
qt4-sqlite3-plugin Cleanup plist 2014-10-20 10:41:12 +00:00
qt5-sql Update Qt5 ports to 5.3.2. 2014-11-05 09:39:21 +00:00
qt5-sqldrivers-ibase KDE/FreeBSD team is happy to present Qt 5 in ports! 2014-03-03 16:50:32 +00:00
qt5-sqldrivers-mysql KDE/FreeBSD team is happy to present Qt 5 in ports! 2014-03-03 16:50:32 +00:00
qt5-sqldrivers-odbc Update Qt5 ports to 5.3.2. 2014-11-05 09:39:21 +00:00
qt5-sqldrivers-pgsql KDE/FreeBSD team is happy to present Qt 5 in ports! 2014-03-03 16:50:32 +00:00
qt5-sqldrivers-sqlite2 Update Qt5 ports to 5.3.2. 2014-11-05 09:39:21 +00:00
qt5-sqldrivers-sqlite3 Update Qt5 ports to 5.3.2. 2014-11-05 09:39:21 +00:00
R-cran-DBI - Update to 0.3.1 2014-09-28 11:57:52 +00:00
R-cran-RMySQL Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
R-cran-RSQLite Update to 1.0.0 2014-10-27 17:31:59 +00:00
R-cran-RSQLite.extfuns Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
R-cran-sqldf Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
rdb Cleanup plist 2014-10-20 10:41:12 +00:00
rdfdb Berkeley DB cleanup, remove versions 4.0 ... 4.7. 2014-08-21 22:50:29 +00:00
recutils Cleanup plist 2014-10-20 10:41:12 +00:00
redigo Cleanup plist 2014-10-20 10:41:12 +00:00
redis Cleanup plist 2014-10-20 10:41:12 +00:00
redis-devel Cleanup plist 2014-10-20 10:41:12 +00:00
riak Simplify more the plist 2014-11-01 00:09:15 +00:00
rocksdb Cleanup plist 2014-10-20 10:41:12 +00:00
rrdman Support staging. 2014-05-19 12:46:54 +00:00
rrdmerge - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
rrdtool Cleanup plist 2014-10-20 10:41:12 +00:00
rrdtool10 - fix build with pod2x from perl5.18+ 2014-10-28 23:17:46 +00:00
rrdtool12 Cleanup plist 2014-10-20 10:41:12 +00:00
ruby-bdb Allow ports using ruby extconf to be built as non root 2014-08-25 18:49:34 +00:00
ruby-cdb Cleanup plist 2014-10-20 10:41:12 +00:00
ruby-gdbm Support stage 2014-04-07 13:19:11 +00:00
ruby-mysql many ruby/rubygem ports: death of rubyforge.org 2014-08-19 15:35:35 +00:00
ruby-o_dbm Cleanup plist 2014-10-20 10:41:12 +00:00
ruby-odbc Support stage 2014-04-07 13:12:49 +00:00
ruby-qdbm Cleanup plist 2014-10-20 10:41:12 +00:00
ruby-rdbc1 Cleanup plist 2014-10-20 10:41:12 +00:00
ruby-sybct - Fix build break due to recent update of databases/freetds 2014-09-22 16:10:38 +00:00
ruby-tokyocabinet Cleanup plist 2014-10-20 10:41:12 +00:00
rubygem-activemodel - Update rails and friend to 3.2.19 2014-07-02 23:26:38 +00:00
rubygem-activemodel4 - Fix RUN_DEPENDS 2014-09-15 06:18:21 +00:00
rubygem-activerecord devel/rubygem-tzinfo: update to 1.2.2 2014-09-06 20:51:04 +00:00
rubygem-activerecord-jdbc-adapter databases/rubygem-activerecord-jdbc-adapter: update to 1.3.10 2014-08-31 14:31:25 +00:00
rubygem-activerecord-jdbcmysql-adapter databases/rubygem-activerecord-jdbcmysql-adapter: update to 1.3.10 2014-08-31 14:39:55 +00:00
rubygem-activerecord-mysql-adapter Remove indefinite articles and trailing periods from COMMENT, plus 2014-06-10 07:39:01 +00:00
rubygem-activerecord4 www/rubygem-rails4: create port for rails4 2014-09-14 02:06:58 +00:00
rubygem-amalgalite many ruby/rubygem ports: death of rubyforge.org 2014-08-19 15:35:35 +00:00
rubygem-arel databases/rubygem-arel: update to 5.0.1.20140414130214 2014-09-06 21:04:38 +00:00
rubygem-arel3 databases/rubygem-arel3: tell portscout to ignore 2014-08-26 20:55:55 +00:00
rubygem-awesome_nested_set An awesome nested set implementation for Active Record 2014-03-29 22:02:32 +00:00
rubygem-bdb1 - Add LICENSE 2014-08-28 16:24:46 +00:00
rubygem-bigrecord - Add LICENSE 2014-08-28 16:24:50 +00:00
rubygem-couchrest
rubygem-data_objects Remove indefinite articles and trailing periods from COMMENT, plus 2014-06-10 07:39:01 +00:00
rubygem-datamapper
rubygem-dbd-mysql Also, use the correct way to depend on a package. And fix a double colon. 2014-09-21 11:52:02 +00:00
rubygem-dbd-odbc Also, use the correct way to depend on a package. And fix a double colon. 2014-09-21 11:52:02 +00:00
rubygem-dbd-pg Also, use the correct way to depend on a package. And fix a double colon. 2014-09-21 11:52:02 +00:00
rubygem-dbd-sqlite3 Also, use the correct way to depend on a package. And fix a double colon. 2014-09-21 11:52:02 +00:00
rubygem-dbi - fix ruby 2.0 2014-10-17 13:59:46 +00:00
rubygem-dm-active_model Remove indefinite articles and trailing periods from COMMENT, plus 2014-06-10 07:39:01 +00:00
rubygem-dm-aggregates
rubygem-dm-chunked_query
rubygem-dm-constraints
rubygem-dm-core - Fix RUN_DEPENDS 2014-05-08 05:21:05 +00:00
rubygem-dm-devise - Add LICENSE 2013-11-20 18:32:25 +00:00
rubygem-dm-do-adapter
rubygem-dm-migrations
rubygem-dm-mysql-adapter
rubygem-dm-observer
rubygem-dm-pager
rubygem-dm-paperclip
rubygem-dm-postgres-adapter
rubygem-dm-rails
rubygem-dm-serializer - Add LICENSE 2013-11-30 18:29:12 +00:00
rubygem-dm-timestamps
rubygem-dm-transactions
rubygem-dm-types - Add LICENSE 2013-12-31 10:09:04 +00:00
rubygem-dm-validations
rubygem-do_mysql many ruby/rubygem ports: death of rubyforge.org 2014-08-19 15:35:35 +00:00
rubygem-do_postgres many ruby/rubygem ports: death of rubyforge.org 2014-08-19 15:35:35 +00:00
rubygem-do_sqlite3 many ruby/rubygem ports: death of rubyforge.org 2014-08-19 15:35:35 +00:00
rubygem-familia - Add LICENSE 2013-11-29 21:10:12 +00:00
rubygem-hiredis databases/rubygem-hiredis: create port 2014-10-06 02:41:57 +00:00
rubygem-jdbc-mysql many ruby/rubygem ports: death of rubyforge.org 2014-08-19 15:35:35 +00:00
rubygem-leo_manager_client Add rubygem-leo_manager_client -- LeoFS-Manager client library for Ruby. 2014-07-06 17:49:00 +00:00
rubygem-memcache databases/rubygem-memcache: 1.5.1 2014-08-23 23:33:17 +00:00
rubygem-memcache-client - Add LICENSE 2013-12-31 13:08:35 +00:00
rubygem-mysql
rubygem-mysql2 databases/rubygem-mysql2: Update to 0.3.16 2014-08-22 18:46:57 +00:00
rubygem-openid-redis-store databases/rubygem-openid-redis-store: create port 2014-10-06 04:38:30 +00:00
rubygem-pg - Update to 0.17.1 2014-01-01 00:08:46 +00:00
rubygem-rbase many ruby/rubygem ports: death of rubyforge.org 2014-08-19 15:35:35 +00:00
rubygem-redis - Update to 3.1.0 2014-06-08 13:23:22 +00:00
rubygem-redis-actionpack - Add LICENSE 2013-11-30 18:29:49 +00:00
rubygem-redis-namespace databases/rubygem-redis-namespace: update to 1.5.1 2014-08-23 18:48:54 +00:00
rubygem-rubyrep - Stage safe 2014-01-24 14:45:58 +00:00
rubygem-seed-fu databases/rubygem-seed-fu: update to 2.3.3 2014-08-23 18:49:57 +00:00
rubygem-sqlite3 - Chase database/sqlite3 slib bump 2014-06-27 17:21:06 +00:00
rubygem-sqlite3-ruby - Chase database/sqlite3 slib bump 2014-06-27 17:21:06 +00:00
rubygem-tarantool Allow installing 2014-10-04 23:31:22 +00:00
sfcgal Cleanup plist 2014-10-20 10:41:12 +00:00
sharedance Cleanup plist 2014-10-20 10:41:12 +00:00
skytools Cleanup plist 2014-10-20 10:41:12 +00:00
slony1v2 Cleanup plist 2014-10-20 10:41:12 +00:00
soci Cleanup plist 2014-10-20 10:41:12 +00:00
spatialite Cleanup plist 2014-10-20 10:41:12 +00:00
spatialite_gui Update the default version of GCC in the Ports Collection from GCC 4.7.4 2014-09-10 20:50:31 +00:00
speedtables - New port: databases/speedtables 2014-10-07 16:01:41 +00:00
sqlbuddy Cleanup plist 2014-10-20 10:41:12 +00:00
sqlcached databases/sqlite2: 2014-09-11 21:54:45 +00:00
sqlcipher - Pass maintainership to submitter 2014-10-24 15:04:22 +00:00
sqlclient Cleanup plist 2014-10-20 10:41:12 +00:00
sqldeveloper Cleanup plist 2014-10-20 10:41:12 +00:00
sqlite-ext-miscfuncs Bump PORTREVISION on all ports with USE_SQLITE=yes or USE_SQLITE=3 that 2014-07-04 09:40:59 +00:00
sqlite-ext-mobigroup Bump PORTREVISION on all ports with USE_SQLITE=yes or USE_SQLITE=3 that 2014-07-04 09:40:59 +00:00
sqlite-ext-pcre New port: databases/sqlite-ext-pcre 2014-08-24 20:00:56 +00:00
sqlite2 Cleanup plist 2014-10-20 10:41:12 +00:00
sqlite3 Add READLINE option and conditionally add readline to USES, this 2014-11-01 10:37:06 +00:00
sqliteman Cleanup plist 2014-10-20 10:41:12 +00:00
sqlitemanager - Drop @dirrm* from plist 2014-09-23 16:13:42 +00:00
sqliteodbc - Update to 0.999 2014-11-05 09:25:04 +00:00
sqlrelay Cleanup plist 2014-10-20 10:41:12 +00:00
sqsh Rename all patches that contain '::' as a path separator, and use 2014-07-29 17:12:47 +00:00
squirrel-sql Cleanup plist 2014-10-20 10:41:12 +00:00
sybtcl Cleanup plist 2014-10-20 10:41:12 +00:00
tablelog Cleanup plist 2014-10-20 10:41:12 +00:00
tarantool Cleanup plist 2014-10-20 10:41:12 +00:00
tcl-Mysql Convert a bunch of EXTRACT_SUFX=... into USES=tar:... 2014-07-29 19:11:51 +00:00
tcl-sqlite3 - Update to 3.8.7 2014-10-31 09:04:12 +00:00
tdb - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
tdbc Cleanup plist 2014-10-20 10:41:12 +00:00
tinycdb USE_GMAKE -> USES=gmake 2013-12-10 18:13:37 +00:00
tokyocabinet Remove indefinite articles and trailing periods from COMMENT, plus 2014-06-10 07:39:01 +00:00
tokyotyrant Cleanup plist 2014-10-20 10:41:12 +00:00
tora Cleanup plist 2014-10-20 10:41:12 +00:00
tuning-primer Part 1 at removing now useless FETCH_ARGS redifition 2014-01-03 00:46:47 +00:00
twemproxy USES=execinfo 2014-08-05 06:36:06 +00:00
unixODBC Cleanup plist 2014-10-20 10:41:12 +00:00
useracc Allow staging as a regular user 2014-09-08 18:27:23 +00:00
usogres Convert a bunch of USE_BZIP2 to USES=tar:bzip2 2014-07-29 18:41:15 +00:00
vfront Stage devel and database ports maintained by me. 2013-12-29 14:50:31 +00:00
virtuoso Cleanup plist 2014-10-20 10:41:12 +00:00
vsqlite Cleanup plist 2014-10-20 10:41:12 +00:00
wfb2sql - Support staging 2014-02-27 13:56:33 +00:00
wmjsql Revert r367333, it doesn't work 2014-09-05 11:44:18 +00:00
WWWdb Cleanup plist 2014-10-20 10:41:12 +00:00
xapian-bindings Cleanup plist 2014-10-20 10:41:12 +00:00
xapian-core Cleanup plist 2014-10-20 10:41:12 +00:00
xapian-core10 Cleanup plist 2014-10-20 10:41:12 +00:00
xtrabackup - Make both cmake and autotools build dependencies only 2014-09-18 07:30:24 +00:00
yasql Cleanup plist 2014-10-20 10:41:12 +00:00
zodb3 - Convert ports from databases/ and deskutils/ to new USES=python 2014-10-19 08:50:17 +00:00
Makefile Remove duplicate port 2014-11-04 21:58:25 +00:00