summaryrefslogtreecommitdiff
path: root/databases/postgresql-libpqxx3
diff options
context:
space:
mode:
Diffstat (limited to 'databases/postgresql-libpqxx3')
-rw-r--r--databases/postgresql-libpqxx3/Makefile35
-rw-r--r--databases/postgresql-libpqxx3/distinfo2
-rw-r--r--databases/postgresql-libpqxx3/files/patch-svn_183351
-rw-r--r--databases/postgresql-libpqxx3/pkg-descr18
-rw-r--r--databases/postgresql-libpqxx3/pkg-plist87
5 files changed, 0 insertions, 193 deletions
diff --git a/databases/postgresql-libpqxx3/Makefile b/databases/postgresql-libpqxx3/Makefile
deleted file mode 100644
index 0a28757e7b17..000000000000
--- a/databases/postgresql-libpqxx3/Makefile
+++ /dev/null
@@ -1,35 +0,0 @@
-# Created by: Palle Girgensohn <girgen@pingpong.net>
-# $FreeBSD$
-
-PORTNAME= libpqxx
-PORTVERSION= 3.1.1
-PORTREVISION= 4
-CATEGORIES= databases
-MASTER_SITES= http://pqxx.org/download/software/${PORTNAME}/
-PKGNAMEPREFIX= postgresql-
-PKGNAMESUFFIX= 3
-DIST_SUBDIR= postgresql
-
-MAINTAINER= 20080111.freebsd.org@ab.ote.we.lv
-COMMENT= New C++ interface for PostgreSQL
-
-LICENSE= BSD3CLAUSE
-
-DEPRECATED= Uses deprecated version of python
-EXPIRATION_DATE= 2020-09-15
-
-CONFLICTS= postgresql-libpqxx-2.* postgresql-libpqxx-[4-9].* \
- postgresql-libpqxx4-4.*
-PORTSCOUT= limit:^3\.
-
-USES+= gmake libtool pathfix pgsql pkgconfig python:2.7,build shebangfix
-GNU_CONFIGURE= yes
-USE_LDCONFIG= yes
-PLIST_SUB= PORTVERSION=${PORTVERSION}
-INSTALL_TARGET= install-strip
-
-SHEBANG_FILES= tools/splitconfig
-
-CONFIGURE_ARGS= --enable-shared
-
-.include <bsd.port.mk>
diff --git a/databases/postgresql-libpqxx3/distinfo b/databases/postgresql-libpqxx3/distinfo
deleted file mode 100644
index de5f8114bc56..000000000000
--- a/databases/postgresql-libpqxx3/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (postgresql/libpqxx-3.1.1.tar.gz) = ce443c7c515623b4a68de5f0657460344b6b6320982d8f8efc657c3746e1ee90
-SIZE (postgresql/libpqxx-3.1.1.tar.gz) = 1563338
diff --git a/databases/postgresql-libpqxx3/files/patch-svn_1833 b/databases/postgresql-libpqxx3/files/patch-svn_1833
deleted file mode 100644
index 5c51da50f243..000000000000
--- a/databases/postgresql-libpqxx3/files/patch-svn_1833
+++ /dev/null
@@ -1,51 +0,0 @@
---- ChangeLog.orig 2013-01-17 07:25:02 UTC
-+++ ChangeLog
-@@ -1,3 +1,8 @@
-+2012-08-03 Jeroen T. Vermeulen <jtv@xs4all.nl>
-+ include/pqxx/largeobject.hxx:
-+ - Backported fix for #252: clang++ 3.2 compile error. Thanks Amy Troschinetz.
-+ src/strconv.cxx:
-+ - Backported fix for #253: clang++ 3.2 compile error. Thanks Amy Troschinetz.
- 2013-01-17 Jeroen T. Vermeulen <jtv@xs4all.nl>
- tools/splitconfig:
- - Rewrote in python.
---- include/pqxx/largeobject.hxx.orig 2013-01-17 07:25:00 UTC
-+++ include/pqxx/largeobject.hxx
-@@ -396,7 +396,7 @@ public:
- openmode mode = PGSTD::ios::in | PGSTD::ios::out,
- size_type BufSize=512) : //[t48]
- m_BufSize(BufSize),
-- m_Obj(T, O),
-+ m_Obj(T, O, mode),
- m_G(0),
- m_P(0)
- { initialize(mode); }
-@@ -406,7 +406,7 @@ public:
- openmode mode = PGSTD::ios::in | PGSTD::ios::out,
- size_type BufSize=512) : //[t48]
- m_BufSize(BufSize),
-- m_Obj(T, O),
-+ m_Obj(T, O, mode),
- m_G(0),
- m_P(0)
- { initialize(mode); }
---- src/strconv.cxx.orig 2013-01-17 07:25:01 UTC
-+++ src/strconv.cxx
-@@ -6,7 +6,7 @@
- * DESCRIPTION
- * implementation of string conversions
- *
-- * Copyright (c) 2008, Jeroen T. Vermeulen <jtv@xs4all.nl>
-+ * Copyright (c) 2008-2012, Jeroen T. Vermeulen <jtv@xs4all.nl>
- *
- * See COPYING for copyright license. If you did not receive a file called
- * COPYING with this source code, please notify the distributor of this mistake,
-@@ -230,7 +230,7 @@ template<typename T> inline void from_st
- #if defined(PQXX_HAVE_IMBUE)
- S.imbue(locale("C"));
- #endif
-- ok = (S >> result);
-+ ok = static_cast<bool>(S >> result);
- }
- break;
- }
diff --git a/databases/postgresql-libpqxx3/pkg-descr b/databases/postgresql-libpqxx3/pkg-descr
deleted file mode 100644
index 5697d09a3e4d..000000000000
--- a/databases/postgresql-libpqxx3/pkg-descr
+++ /dev/null
@@ -1,18 +0,0 @@
-Welcome to libpqxx, the official C++ API to the PostgreSQL database
-management system.
-
-There are many similar libraries for PostgreSQL and for other
-databases, some of them database-independent. Most of these, however,
-are fairly C-like in their programming style, and fail to take
-advantage of the full power of the C++ language as it has matured
-since the acceptance of the Standard in 1996. What libpqxx brings you
-is effective use of templates to reduce the inconvenience of dealing
-with type conversions; of standard C++ strings to keep you from having
-to worry about buffer allocation and overflow attacks; of exceptions
-to take the tedious and error-prone plumbing around error handling out
-of your hands; of constructors and destructors to bring resource
-management under control; and even basic object-orientation to give
-you some extra reliability features that would be hard to get with
-most other database interfaces.
-
-WWW: http://pqxx.org/
diff --git a/databases/postgresql-libpqxx3/pkg-plist b/databases/postgresql-libpqxx3/pkg-plist
deleted file mode 100644
index a7c39bf8fc57..000000000000
--- a/databases/postgresql-libpqxx3/pkg-plist
+++ /dev/null
@@ -1,87 +0,0 @@
-bin/pqxx-config
-include/pqxx/basic_connection
-include/pqxx/basic_connection.hxx
-include/pqxx/binarystring
-include/pqxx/binarystring.hxx
-include/pqxx/compiler-internal-post.hxx
-include/pqxx/compiler-internal-pre.hxx
-include/pqxx/compiler-public.hxx
-include/pqxx/config-public-compiler.h
-include/pqxx/connection
-include/pqxx/connection.hxx
-include/pqxx/connection_base
-include/pqxx/connection_base.hxx
-include/pqxx/connectionpolicy
-include/pqxx/connectionpolicy.hxx
-include/pqxx/cursor
-include/pqxx/cursor.hxx
-include/pqxx/dbtransaction
-include/pqxx/dbtransaction.hxx
-include/pqxx/except
-include/pqxx/except.hxx
-include/pqxx/internal/callgate.hxx
-include/pqxx/internal/gates/connection-dbtransaction.hxx
-include/pqxx/internal/gates/connection-largeobject.hxx
-include/pqxx/internal/gates/connection-notify-listener.hxx
-include/pqxx/internal/gates/connection-parameterized_invocation.hxx
-include/pqxx/internal/gates/connection-pipeline.hxx
-include/pqxx/internal/gates/connection-prepare-declaration.hxx
-include/pqxx/internal/gates/connection-prepare-invocation.hxx
-include/pqxx/internal/gates/connection-reactivation_avoidance_exemption.hxx
-include/pqxx/internal/gates/connection-sql_cursor.hxx
-include/pqxx/internal/gates/connection-transaction.hxx
-include/pqxx/internal/gates/icursor_iterator-icursorstream.hxx
-include/pqxx/internal/gates/icursorstream-icursor_iterator.hxx
-include/pqxx/internal/gates/result-connection.hxx
-include/pqxx/internal/gates/result-creation.hxx
-include/pqxx/internal/gates/result-sql_cursor.hxx
-include/pqxx/internal/gates/transaction-subtransaction.hxx
-include/pqxx/internal/gates/transaction-tablereader.hxx
-include/pqxx/internal/gates/transaction-tablewriter.hxx
-include/pqxx/internal/gates/transaction-transactionfocus.hxx
-include/pqxx/internal/statement_parameters.hxx
-include/pqxx/isolation
-include/pqxx/isolation.hxx
-include/pqxx/largeobject
-include/pqxx/largeobject.hxx
-include/pqxx/libpq-forward.hxx
-include/pqxx/nontransaction
-include/pqxx/nontransaction.hxx
-include/pqxx/notify-listen
-include/pqxx/notify-listen.hxx
-include/pqxx/performance.hxx
-include/pqxx/pipeline
-include/pqxx/pipeline.hxx
-include/pqxx/pqxx
-include/pqxx/prepared_statement
-include/pqxx/prepared_statement.hxx
-include/pqxx/result
-include/pqxx/result.hxx
-include/pqxx/robusttransaction
-include/pqxx/robusttransaction.hxx
-include/pqxx/strconv
-include/pqxx/strconv.hxx
-include/pqxx/subtransaction
-include/pqxx/subtransaction.hxx
-include/pqxx/tablereader
-include/pqxx/tablereader.hxx
-include/pqxx/tablestream
-include/pqxx/tablestream.hxx
-include/pqxx/tablewriter
-include/pqxx/tablewriter.hxx
-include/pqxx/transaction
-include/pqxx/transaction.hxx
-include/pqxx/transaction_base
-include/pqxx/transaction_base.hxx
-include/pqxx/transactor
-include/pqxx/transactor.hxx
-include/pqxx/trigger
-include/pqxx/trigger.hxx
-include/pqxx/util
-include/pqxx/util.hxx
-include/pqxx/version
-include/pqxx/version.hxx
-lib/libpqxx-3.1.so
-lib/libpqxx.a
-lib/libpqxx.so
-libdata/pkgconfig/libpqxx.pc