pkgsrc/databases
hiramatsu 6e6384258e Update libpqxx from 2.5.5 to 4.0.1.
Changes from previous
=====================
4.0.1
 - Support for REPEATABLE READ isolation level.
 - Build fix for OS X.
 - Build fixes for clang++ 3.2.
 - Build fixes for clang++ 3.0.
 - Build fix for MinGW.
 - Build fix for BSD (and possibly other grep flavours).
 - Compatibility typedefs: pqxx::result::tuple & pqxx::result::field.
 - Supports C++11.
 - Fixed failure to detect some integer overflows during conversion.
4.0
 - API change: noticers are gone!  Use errorhandlers to capture error output.
 - API change: tablereaders and tablewriters are gone; they weren't safe.
 - API change: prepared statements are now weakly-typed, and much simpler.
 - API change: fields and tuples are now stand-alone classes in ::pqxx.
 - API change: thread-safety field have_strerror_r is now have_safe_strerror.
 - API change: notify_listener has been replaced with notification_receiver.
 - notification_receiver takes a payload parameter.
 - Easier Visual C++ setup.
 - Absolutely requires a libpq version with PQescapeStringConn.
 - Absolutely requires libpq 8.0 or better.
 - Changes for C++0x.
 - Supports clang++.
 - Visual C++ makefiles now support new-style unit tests.
 - Sample headers for more recent Visual Studio versions.
 - Fixes binary-data escaping problems with postgres 9.0.
 - Fixes problems with binary-string handling and escaping.
 - Fixes compatibility problems between 9.x libpq and 7.x backend.
 - quote_name to escape SQL identifiers for use in queries.
 - syntax_error reports error's approximate location in the query.
 - On Windows, now uses ws2_32 instead of wsock32.
 - Various Windows build fixes.
 - Updated for gcc 4.6.0.
 - configure script supports --enable-documentation/--disable-documentation.
 - Streamlined test/release toolchain.
3.1
 - Shared libraries are now versioned by ABI: 3.1 instead of 3.1.0 etc.
 - Threading behaviour is now documented, and can be queried.
 - Version information available at compile time.
 - Supports parameterized statements.
 - Result tuples now support slicing.
 - Configure with --with-tr1=boost to use BOOST shared_ptr.
 - String conversion now has its own header file.
 - Supports read-only transactions.
 - Fixed breakage with Solaris "make".
 - Uses shared_ptr if available.
 - binarystring::str() is no longer cached; no longer returns reference.
 - Fixed problems in Visual C++ Makefile for test suite.
 - Fixed problems with RPM packaging.
 - Fixed build problem on RedHat/CentOS 5.
 - Lets you check whether a prepared statement has been defined.
 - "Varargs" prepared statements.
 - Unnamed prepared statements now supported.
 - Results have iterator as well as const_iterator.
 - Rewrite of robusttransaction logic; may actually do its job now.
 - Connections support async query cancel from signal handler or thread.
 - More documentation for performance features.
3.0
 - Website is now at http://pqxx.org/ (no redirects)
 - Completely replaced cursor classes
 - More helpful error messages on failed connections
 - More detailed hierarchy of constraint-violation exception classes
 - trigger is now called notify_listener, trigger header is now notify-listen
 - New mixin base class pqxx_exception distinguishes libpqxx exception types
 - Quoting is back!  transaction_base::quote() & connection_base::quote()
 - Several build & documentation problems with Visual C++ fixed
 - Compile fixes for gcc 4.2, 4.3
 - Compile fixes for Sun Studio Express 5.9
 - Uses strlcpy() where available, instead of strncpy()
 - Keeps better track of applicable text encodings
 - Fixed bug with prepared statement parameters in separate C++ statements
 - robusttransaction now works for multiple users
 - Pipeline lets you cancel ongoing queries, e.g. because they run for too long
 - Fixed broken escaping of binary values in tablewriter
 - Floating-point types now represented with full precision
 - Proper unit tests for new functionality
 - New traits-based system for adding data types
 - Floating-point infinities now supported
 - Flushing/completing a pipeline now frees up the transaction for other use
 - Completely reworked test suite, builds and runs much faster
 - tablewriter supports writing of raw lines
2.6.9
 - Removed old 1.x API (that means all identifiers with capital letters!)
 - Tested with all current libpq versions and oldest/newest supported backends
 - No longer have old OnCommit()/OnAbort()/OnDoubt() callbacks in transactor!
 - Fixes failure when closing cursors with upper-case letters in their names
 - Fixes bug when adding triggers to connections that aren't open yet
 - Fixes bug when removing triggers
 - Fixes small memory leak when preparing statements
 - Fixes many problems with older backends
 - Fixes bug in result::swap(): protocol versions were not swapped
 - Some errors went undetected when using certain libpq versions
 - Fixes prepared statements on new libpq versions talking to old backends
 - Can estimate server version if libpq does not know how to obtain it
 - Greatly reduced memory usage while escaping strings
 - With Visual C++, creates lib/ directory if not already present
 - Useful error messages when preparing statements
 - Allows prepared statements to be registered explicitly
 - Support for "long long" types; enable with PQXX_ALLOW_LONG_LONG macro
 - Compilation errors for older libpq versions fixed
 - Some new small utility classes for disabling notice processing etc.
 - Result sets remember the queries that yielded them
 - New test script, pqxx-fulltest, tests against all current postgres versions
 - Connections can simulate failure
 - Adds password encryption function
2.6.8
 - Fixes bug: binary parameters to prepared statements truncated at nul bytes
 - New, more specific exception types to distinguish errors from server
 - Resolved serious problems with generated reference documentation
 - Automatically detect Windows socket library with MinGW
 - Windows "make" fixed to run from main directory, not win32
 - Fixes "mktemp" problems on some BSD-based platforms
 - pqxx-config is deprecated; use pkg-config instead
 - On GNU/Linux, uses poll() instead of select() to avoid file descriptor limit
 - Will provide server and protocol version information where available
 - New cursor class, absolute_cursor
2.6.7
 - New escape functions for binary data: transaction_base::esc_raw()
 - Improved detection of socket libraries, especially for MinGW
 - Works around bug in some versions of GNU grep 2.5.1
 - Fixes problem with configuration headers
 - Fixes PQprepare() detection
 - Fixes incomplete Visual C++ Makefile
 - Fixes compile error in workaround for older libpq versions
 - Removes "rpath" link option
2.6.6
 - New, encoding-safe string-escaping functions
 - Upper-case letters now allowed in prepared-statement names
 - Fixes crash in test005
 - More Visual C++ improvements
 - Removed collaboration diagrams from reference docs
 - New templating system for generating Windows Makefiles etc.
2.6.5
 - Visual C++ users: copy win32/common-sample to win32/common before editing it
 - Should fix problems finding socket library on MinGW
 - Even more work on Visual C++ problems
 - Updated documentation for Visual C++ users
 - Fixed bug in prepared statements (mostly visible on Visual C++)
 - Nested transactions work harder to detect backend support
2.6.4
 - Massively improved compatibility with Windows and Visual C++
 - Fixed late initialization of "direct" connection state
 - Fixed problem with initialization of connection capabilities
 - Fixed configuration bug for libpq in nonstandard locations
 - Sample configuration header for libpq found in PostgreSQL 8.1
2.6.3
 - Radical rework of prepared statements; INCOMPATIBLE INTERFACE CHANGE!
 - Dropped support for g++ 2.95
 - Emulate prepared statements support on old libpq or old backend
 - Bug fix: missing tutorial (release script now tests for this)
 - Automatically links in socket library on Windows or Solaris, if needed
 - Bug fix: check for std namespace didn't work
 - Fixes for Cygwin/MSYS/MinGW
2.6.2
 - Bug fix: connection state was not set up properly in some common cases
 - Bug fix: headers were installed in "include" instead of "include/pqxx"
 - Bug fix: sqlesc(string) broke with multibyte or multiple encodings
 - namedclass is now used as a virtual base; affects all subclass constructors
 - Initial implementation of subtransactions
 - Detect more connection capabilities
 - Standard library namespace can be set from configure script's command line
 - Completely reworked connection hierarchy, with separate policy objects
 - Clients can now define their own connection policies
 - Paved the way for client-defined thread synchronization
 - Now lives at http://thaiopensource.org/development/libpqxx/
2.6.1
 - Hugely improved recognition of different strerror_r() versions
 - Resolved link problems with gcc 4.0 and shared library
2.6.0
 - New macro PQXX_SHARED defines whether to use/build libpqxx as shared library
 - Robusttransaction compatible with PostgreSQL 8.1
 - Infrastructure for querying connection/backend capabilities at runtime
 - Greatly improved cursor support
 - Connection reactivation can be inhibited explicitly
 - Tries even harder to make sense of conflicting strerror_r() definitions
 - Detects connection failures that libpq glosses over
 - Reference documentation grouped into more coherent sections
 - Assumes strerror() is threadsafe on systems that have no strerror_r()
 - Now allows connection's socket number to be queried
 - New internal_error class for libpqxx-internal errors
 - With Visual C++, doesn't redefine NOMINMAX if it is defined already
 - Several compatibility improvements for Visual C++
 - Fixes and workarounds for HP-UX and HP aCC compiler
 - Phased old cursor interface out of test suite; tests ported to new interface
 - Added documentation on thread safety
 - New thread safety model
 - Large objects have functions to tell current position
 - Minor updates to tutorial (somebody pay me and I'll do more :)
 - No longer needs libpq-fs.h header
 - Meaningful error messages for ambiguous string conversions fixed
2.5.6
 - Support null parameters to prepared statements (use C-style char pointers)
2013-02-12 04:35:24 +00:00
..
abook Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
adodb Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
apache-cassandra Update to the more recent version Apache Cassandra 0.7.6. 2011-05-20 00:27:59 +00:00
bdb-xml Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
cdb Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
clisp-bdb database/clisp-bsd: Add gettext-lib buildlink3 for DragonFly 2011-11-28 22:51:41 +00:00
clisp-gdbm Recursive dependency bump for databases/gdbm ABI_DEPENDS change. 2012-01-24 09:10:50 +00:00
clisp-pgsql Bump PKGREVISION for change of PostgreSQL default version to 9.1. 2012-08-05 10:02:09 +00:00
couchdb PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
csharp-mysql Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
cstore Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
datadraw Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
db Set LICENSE. 2012-12-13 00:57:23 +00:00
db3 Set LICENSE. 2012-12-13 00:57:23 +00:00
db4 Set LICENSE. 2012-12-13 00:19:37 +00:00
db5 Set LICENSE. 2012-12-13 00:57:23 +00:00
db46 Set LICENSE. 2012-12-13 00:33:19 +00:00
dbh Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
edb Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
freetds PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
gdbm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
gdbm_compat Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
gdbm_primitive Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
geneweb Fix build with ocaml4. 2012-12-16 22:39:47 +00:00
gigabase Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
gnats Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
gnome-mime-data Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
gourmet Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
gq PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
gramps3 PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
gtkdbfeditor Revbump after updating graphics/pango 2012-10-08 23:00:34 +00:00
gtksql Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
guile-pg Update to 0.44. Because guile-pg now works with mainstream guile, 2012-11-07 13:45:35 +00:00
idzebra PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
iodbc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
ipa_sdb Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
java-db3 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
java-qdbm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
java-tokyocabinet Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
jdbc-mysql5 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
jdbc-mysql31 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
jdbc-postgresql83 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
jdbc-postgresql84 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
jdbc-postgresql92 Import jdbc-postgresql92-1002 as databases/jdbc-postgresql92. 2012-11-26 15:50:31 +00:00
kmysqladmin Bump PKGREVISION from audio/jack. 2013-02-09 22:11:28 +00:00
krecipes Bump PKGREVISION from audio/jack. 2013-02-09 22:11:28 +00:00
lbdb Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
ldapvi PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
libcassandra PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
libdbi Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
libdbi-driver-mysql PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
libdbi-driver-pgsql Bump PKGREVISION for change of PostgreSQL default version to 9.1. 2012-08-05 10:02:09 +00:00
libdbi-driver-sqlite Files related to libdbi DB drivers have been moved to 2011-09-15 21:22:34 +00:00
libdbi-driver-sqlite3 Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
libgda Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
libgda-mysql Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
libgda-postgres Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
libgnomedb PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
libpqxx Update libpqxx from 2.5.5 to 4.0.1. 2013-02-12 04:35:24 +00:00
libpqxx-doc Update libpqxx from 2.5.5 to 4.0.1. 2013-02-12 04:35:24 +00:00
lua-sqlite Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
lua-tokyocabinet Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
luma Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
maatkit Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
mergeant PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
metakit-lib Don't redefine a local variable. 2012-11-16 00:40:44 +00:00
myodbc Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
mysql-workbench PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
mysql5-client PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
mysql5-server PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
mysql51-client PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
mysql51-server PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
mysql55-client PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
mysql55-server PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
mysqlcc PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
mytop Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
nss_ldap PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
ocaml-dbm Added databases/ocaml-dbm version 1.0 to pkgsrc. This is an OCaml binding for 2012-12-15 10:25:52 +00:00
ocaml-mysql Changed buildlink include to generic mysql file instead of specific package 2012-12-13 13:02:16 +00:00
ocaml-sqlite3 Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
odbc-postgresql PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
openldap PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
openldap-client PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
openldap-cloak PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
openldap-doc Handover maintainership to Adam. 2012-10-22 09:41:07 +00:00
openldap-nops PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
openldap-server recursive bump from cyrus-sasl libsasl2 shlib major bump. 2012-12-16 01:51:57 +00:00
openldap-smbk5pwd PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
oraedit Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
p5-AddressBook Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-AnyEvent-BDB Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Apache-DBI Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-BDB Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-BerkeleyDB Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Catalyst-Model-DBIC-Schema Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Catalyst-Model-RDBO Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-CatalystX-CRUD Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-CatalystX-CRUD-Model-RDBO Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-CatalystX-CRUD-ModelAdapter-DBIC Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-CDB_File Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Class-DBI Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Class-DBI-AbstractSearch Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Class-DBI-Pg Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Class-DBI-Plugin Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Class-DBI-Plugin-DeepAbstractSearch Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Dancer-Plugin-DBIC Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 16:07:12 +00:00
p5-Data-Table Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DB_File Update to 1.827: 2012-10-21 22:07:36 +00:00
p5-DB_File-Lock Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBD-CSV Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBD-DB2 Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBD-Google Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBD-Mock Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBD-mysql - Updated to 4.022 2013-01-25 23:45:28 +00:00
p5-DBD-ODBC Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBD-Oracle Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBD-PgPP Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBD-postgresql Update to 2.19.3: 2012-10-21 22:05:40 +00:00
p5-DBD-SQLite Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
p5-DBD-SQLite2 Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBD-Sybase PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
p5-DBD-XBase Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBI - Updated to 1.623 2013-01-26 20:01:54 +00:00
p5-DBI-Shell Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBICx-Deploy Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBICx-MapMaker Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBICx-TestDatabase Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIWrapper Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-Abstract Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-Class - updated to 0.08205 2013-01-26 13:20:11 +00:00
p5-DBIx-Class-Candy Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 16:07:12 +00:00
p5-DBIx-Class-Cursor-Cached Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-Class-DigestColumns Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-Class-DynamicDefault Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-Class-EncodedColumn Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-Class-Fixtures Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-Class-Helpers Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-23 16:07:12 +00:00
p5-DBIx-Class-InflateColumn-IP Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-Class-IntrospectableM2M Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-Class-Loader Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-Class-RDBOHelpers Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-Class-Schema-Loader Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-Class-TimeStamp Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-Class-UUIDColumns Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-Class-Validation Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-Connector Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-ContextualFetch Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-Datasource Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-DBSchema Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-Schema Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBIx-SearchBuilder Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DBM-Deep Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-DublinCore-Record Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Fsdb Replace /usr/bin/perl everywhere. Bump PKGREVISION for those 2012-10-15 12:31:00 +00:00
p5-gdbm Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Ima-DBI Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Jifty-DBI Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-MARC Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-MARC-Record Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-MARC-XML Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-MLDBM Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-MLDBM-Serializer-JSON Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-MLDBM-Sync Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Net-Cassandra Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Net-MySQL Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-ORLite - Updated to 1.98 2013-01-26 19:37:21 +00:00
p5-ORLite-Migrate Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Palm Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-perl-ldap Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-postgresql Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-qdbm Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Redis Update to 1.958 2013-01-19 11:53:55 +00:00
p5-Rose-DB Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Rose-DB-Object Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Rose-DBx-AutoReconnect Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Rose-DBx-Garden Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Rose-DBx-Garden-Catalyst Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Rose-DBx-Object-MoreHelpers Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Rose-DBx-TestDB Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-RRD-Simple Revbump after updating graphics/pango 2012-10-08 23:00:34 +00:00
p5-Search-QueryParser Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Search-QueryParser-SQL Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Sort-SQL Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-SQL-Abstract Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-SQL-Abstract-Limit Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-SQL-ReservedWords Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-SQL-Statement Update to 1.402 2013-01-10 15:11:57 +00:00
p5-SQL-Translator Updating package for CPAN module SQL::Translator from 0.11010nb2 to 2012-10-19 08:08:25 +00:00
p5-sybperl PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
p5-Template-DBI Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-Tie-DBI Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-tokyocabinet Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-tokyotyrant Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
p5-YAML-MLDBM Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
palm-db-tools Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
pear-DB Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
pear-MDB2 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
pear-MDB2_Driver_mysql Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
pear-MDB2_Driver_mysqli Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
pear-MDB2_Driver_pgsql Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
pear-MDB2_Driver_sqlite Remove left over "52" (php52) from PHP_VERSIONS_ACCEPTED. 2012-11-08 14:28:56 +00:00
percona-toolkit fix MASTER_SITES: 2013-01-27 08:56:01 +00:00
pgadmin3 Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
pgbouncer PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
pgbuildfarm Remove the unneeded lang/perl5/dirs.mk inclusion. 2012-11-02 07:55:31 +00:00
pgpool Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
pgtcl Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
pgtclng Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
php-dba Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
php-dbx Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
php-ldap PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
php-mssql PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
php-mysql Reset PKGREVISION by updating both php53 and php54. 2012-10-19 14:58:31 +00:00
php-mysqli Reset PKGREVISION by updating both php53 and php54. 2012-10-19 14:58:31 +00:00
php-oci8 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
php-pdo Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
php-pdo_dblib PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
php-pdo_mysql Reset PKGREVISION by updating both php53 and php54. 2012-10-19 14:58:31 +00:00
php-pdo_pgsql Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
php-pdo_sqlite Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
php-pgsql Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
php-redis Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
php-sqlite Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
phpldapadmin Note CVE-2012-0834 2013-01-22 11:49:33 +00:00
phpmyadmin Update "phpmyadmin" package to version 3.5.5. Changes since 3.5.4: 2012-12-22 10:31:31 +00:00
phppgadmin Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
poco-data PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
poco-data-mysql PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
poco-data-odbc PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
poco-data-sqlite PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
postgresql-pgbench Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
postgresql-postgis Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
postgresql-uuid PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
postgresql83 The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql83-adminpack The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql83-client The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql83-plperl The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql83-plpython The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql83-pltcl The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql83-server The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql83-uuid Remove PKGREVISION 2012-07-01 19:21:13 +00:00
postgresql84 The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql84-adminpack The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql84-client The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql84-dblink The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql84-pgcrypto The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql84-plperl The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql84-plpython The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql84-pltcl The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql84-server The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql84-uuid Security update to version 8.4.12. 2012-07-01 19:30:23 +00:00
postgresql90 The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql90-adminpack The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql90-client The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql90-datatypes The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql90-dblink The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql90-docs The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql90-fuzzystrmatch The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql90-monitoring The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql90-pgcrypto The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql90-plperl The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql90-plpython The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql90-pltcl The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql90-replicationtools The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql90-server The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql90-upgrade The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql90-uuid Security update to version 9.0.8. 2012-07-01 19:42:06 +00:00
postgresql91 The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql91-adminpack The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql91-client The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql91-datatypes The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql91-dblink The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql91-docs The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql91-fuzzystrmatch The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql91-monitoring The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql91-pgcrypto The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql91-plperl The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql91-plpython The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql91-pltcl The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql91-replicationtools The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql91-server The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql91-upgrade The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql92 The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql92-adminpack The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql92-client The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql92-datatypes The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql92-dblink The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql92-docs The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql92-fuzzystrmatch The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql92-monitoring The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql92-pgcrypto The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql92-plperl The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql92-plpython The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql92-pltcl The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql92-replicationtools The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql92-server The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
postgresql92-upgrade The PostgreSQL Global Development Group has released a security update to all current versions of the PostgreSQL database system, including versions 9.2.3, 9.1.8, 9.0.12, 8.4.16, and 8.3.23. This update fixes a denial-of-service (DOS) vulnerability. All users should update their PostgreSQL installations as soon as possible. 2013-02-09 11:19:08 +00:00
pxtools Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
py-bdb-xml Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
py-bsddb3 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
py-cassa Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
py-cdb Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
py-ckanclient Update for python25 removal. 2012-10-03 22:14:00 +00:00
py-cx_Oracle Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
py-datapkg Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
py-elixir Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
py-gdbm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
py-ldap PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
py-metakit Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
py-mssql PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
py-mysqldb Simplify a lot by using egg.mk. 2012-10-16 07:39:10 +00:00
py-pgnotify Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
py-PgSQL Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
py-postgresql Upgrade to version 4.1.1 2013-01-08 15:09:59 +00:00
py-psycopg2 Update to 2.4.6. Fix python interpreter in installed files. 2012-12-16 16:04:12 +00:00
py-sqlalchemy Mark as ready for python-3.x. 2012-10-16 06:48:14 +00:00
py-sqlalchemy-migrate Remove unnecessary python restriction (to all supported versions). 2012-10-04 07:05:53 +00:00
py-sqlite Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
py-sqlite2 Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
py-sqlite3 Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
py-sybase PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
py-table Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
py-tokyocabinet Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
qdbm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
qdbm-cgi Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
qdbm-plus Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
quicklist Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
rdb Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
rrdtool Revbump after updating graphics/pango 2012-10-08 23:00:34 +00:00
rrdtool12 Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
ruby-activeldap Update ruby-activeldap to 3.2.2. 2012-09-03 15:08:45 +00:00
ruby-activerecord-cassandra Switch to use RUBY_RAILS_SUPPORTED. 2011-12-13 15:48:34 +00:00
ruby-activerecord-odbc Switch to use RUBY_RAILS_SUPPORTED. 2011-12-13 15:48:34 +00:00
ruby-activerecord3 Update ruby-activerecord3 to 3.0.20. 2013-01-29 15:40:43 +00:00
ruby-activerecord31 Update ruby-activerecord31 to 3.1.10. 2013-01-09 12:36:36 +00:00
ruby-activerecord32 Update ruby-activerecord32 to 3.2.11. 2013-01-09 12:43:18 +00:00
ruby-acts-as-versioned Bump PKGREVISION for those RUBY_RAILS_STRICT_DEP is set to no implicitly now. 2012-06-14 15:14:09 +00:00
ruby-arel Update ruby-arel to 3.0.2. 2012-03-18 05:55:03 +00:00
ruby-arel20 Importing current ruby-arel version 2.0.10 as databases/ruby-arel20 to 2011-12-14 16:24:28 +00:00
ruby-arel22 Importing ruby-arel22 verison 2.2.3 as databases/ruby-arel22. 2012-03-18 05:53:12 +00:00
ruby-cassandra Update ruby-cassandra to 0.17.0. 2012-12-17 12:29:00 +00:00
ruby-data_objects Update ruby-data_objects to 0.10.11. 2013-01-12 04:42:35 +00:00
ruby-datamapper Update ruby-datamapper to 1.2.0. (This is meta-gem package.) 2011-12-16 14:51:38 +00:00
ruby-dbd-mysql
ruby-dbd-odbc
ruby-dbd-pg
ruby-dbd-sqlite
ruby-dbd-sqlite3
ruby-dbi * Don't use Deprecate but Deprecated of devel/ruby-deprecated package. 2011-08-12 15:58:36 +00:00
ruby-dm-active_model ruby-dm-active_model can work with all 3.x versions of Ruby on Rails. 2013-01-31 15:43:25 +00:00
ruby-dm-adjust Importing databases/ruby-dm-adjust package version 1.2.0. 2011-12-17 17:18:55 +00:00
ruby-dm-aggregates Update ruby-dm-migrations package to 1.2.0. 2011-12-16 14:40:32 +00:00
ruby-dm-ar-finders Importing databases/ruby-dm-ar-finders package version 1.2.0. 2011-12-17 17:20:58 +00:00
ruby-dm-cli Importing databases/ruby-dm-cli package version 1.2.0. 2011-12-17 17:21:55 +00:00
ruby-dm-constraints Update ruby-dm-constraints package to 1.2.0. 2011-12-16 14:33:59 +00:00
ruby-dm-core Relax dependency to ruby-addressable. 2012-07-31 11:45:22 +00:00
ruby-dm-do-adapter Importing databases/ruby-dm-do-adapter package version 1.2.0. 2011-12-17 17:19:49 +00:00
ruby-dm-ferret-adapter Importing databases/ruby-dm-ferret-adapter package version 1.2.0. 2011-12-17 17:22:52 +00:00
ruby-dm-is-list Importing databases/ruby-dm-is-list package version 1.2.0. 2011-12-17 17:23:47 +00:00
ruby-dm-is-nested_set Importing databases/ruby-dm-is-nested_set package version 1.2.0. 2011-12-17 17:24:43 +00:00
ruby-dm-is-remixable Importing databases/ruby-dm-is-remixable package 1.2.0. 2011-12-17 17:25:33 +00:00
ruby-dm-is-searchable Importing databases/ruby-dm-is-searchable package version 1.2.0. 2011-12-17 17:26:08 +00:00
ruby-dm-is-state_machine Importing databases/ruby-dm-is-state_machine package version 1.2.0. 2011-12-17 17:26:53 +00:00
ruby-dm-is-tree Importing databases/ruby-dm-is-tree package version 1.2.0. 2011-12-17 17:27:34 +00:00
ruby-dm-is-versioned Imporring databases/ruby-dm-is-versioned package version 1.2.0. 2011-12-17 17:28:21 +00:00
ruby-dm-migrations Update ruby-dm-migrations package to 1.2.0. 2011-12-16 14:35:37 +00:00
ruby-dm-mysql-adapter Recursive bump from mysql51-client library changed to use openssl. 2012-09-15 15:03:21 +00:00
ruby-dm-observer Importing databases/ruby-dm-observer package version 1.2.0. 2011-12-17 17:29:57 +00:00
ruby-dm-postgres-adapter Imporring databases/ruby-dm-postgres-adapter pacakge version 1.2.0. 2011-12-17 17:30:36 +00:00
ruby-dm-rails ruby-dm-rails can work with all 3.x versions of Ruby on Rails. 2013-01-31 15:46:51 +00:00
ruby-dm-rest-adapter Importing databases/ruby-dm-rest-adapter package version 1.2.0. 2011-12-17 17:31:17 +00:00
ruby-dm-serializer Update ruby-dm-serializer to 1.2.2. 2012-09-16 05:17:52 +00:00
ruby-dm-sqlite-adapter Imporring databases/ruby-dm-sqlite-adapter package version 1.2.0. 2011-12-17 17:31:56 +00:00
ruby-dm-sweatshop Importing databases/ruby-dm-sweatshop package version 1.2.0. 2011-12-17 17:32:33 +00:00
ruby-dm-tags Importing databases/ruby-dm-tags package version 1.2.0. 2011-12-17 17:33:20 +00:00
ruby-dm-timestamps Update databases/ruby-dm-timestamps package to 1.2.0. 2011-12-16 14:43:50 +00:00
ruby-dm-transactions Update databases/ruby-dm-transactions to 1.2.0. 2011-12-16 14:46:07 +00:00
ruby-dm-types Update ruby-dm-types to 1.2.2. 2012-09-16 05:18:14 +00:00
ruby-dm-validations Update databases/ruby-dm-validations to 1.2.0. 2011-12-16 14:48:48 +00:00
ruby-dm-yaml-adapter Importing databases/ruby-dm-yaml-adapter package version 1.2.0. 2011-12-17 17:34:06 +00:00
ruby-do_mysql Update ruby-do_mysql to 0.10.11. 2013-01-12 04:43:24 +00:00
ruby-do_postgres Update ruby-do_postgres to 0.10.11. 2013-01-12 04:44:11 +00:00
ruby-do_sqlite3 Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
ruby-gdbm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
ruby-hiera Add ruby-hiera package version 1.0.0, newer puppet needs it. 2013-02-09 15:39:09 +00:00
ruby-ldap PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
ruby-mysql Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
ruby-mysql2 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
ruby-odbc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
ruby-pg Update ruby-pg to 0.14.1. 2012-09-03 15:13:47 +00:00
ruby-postgres-pr
ruby-qdbm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
ruby-rrdtool Revbump after updating graphics/pango 2012-10-08 23:00:34 +00:00
ruby-sequel Update ruby-sequel to 3.44.0. 2013-02-09 15:41:43 +00:00
ruby-sqlite
ruby-sqlite3 Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
ruby-tokyocabinet Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
ruby-tokyotyrant Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
ruby-vapor Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
sdbm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
shared-mime-info Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
slony1 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
sqlite Clean up out-of-srcdir build handling. 2013-01-04 13:33:42 +00:00
sqlite3 Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
sqlite3-docs Fix PLIST 2013-01-11 22:49:48 +00:00
sqlite3-tcl Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
sqlitebrowser Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
sqlrelay PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
sqsh PKGREVISION bumps for the security/openssl 1.0.1d update. 2013-02-06 23:20:50 +00:00
sqsh-motif Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
sqsh-x11 Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
tcl-fbsql Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
tcl-gdbm Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
tdb update to 1.2.11 2012-12-14 19:35:05 +00:00
tinycdb Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
tokyocabinet Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
tokyotyrant Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
unixodbc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
xsqlmenu Revbump after graphics/jpeg and textproc/icu 2013-01-26 21:36:13 +00:00
yap2lc Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. 2012-10-02 21:25:15 +00:00
yasql Bump all packages that use perl, or depend on a p5-* package, or 2012-10-03 21:53:53 +00:00
Makefile Add and enable ruby-hiera. 2013-02-09 15:39:38 +00:00