aboutsummaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2021-06-26 10:57:46 +0000
committerRene Ladan <rene@FreeBSD.org>2021-06-26 10:57:46 +0000
commit5e1a89f37052232dfbbf8d53d9812e170ef0a2c4 (patch)
treebfe7b4978f8a692ea805189d999d619660fb1be8 /databases
parenta04b7cd0bd163e1874c4a3de556c56c278831db9 (diff)
downloadports-5e1a89f37052232dfbbf8d53d9812e170ef0a2c4.tar.gz
ports-5e1a89f37052232dfbbf8d53d9812e170ef0a2c4.zip
*/*: Remove expired ports:
2020-12-31 lang/pypy3: Uses Python 2.7 which is EOLed upstream 2020-12-31 lang/pypy: Uses Python 2.7 which is EOLed upstream 2021-06-23 databases/pypy-gdbm: Uses EOL Python 2.7 via lang/pypy 2021-06-23 databases/pypy-sqlite3: Uses EOL Python 2.7 via lang/pypy 2021-06-23 x11-toolkits/pypy-tkinter: Uses EOL Python 2.7 via lang/pypy
Diffstat (limited to 'databases')
-rw-r--r--databases/Makefile2
-rw-r--r--databases/pypy-gdbm/Makefile20
-rw-r--r--databases/pypy-gdbm/pkg-descr1
-rw-r--r--databases/pypy-sqlite3/Makefile17
-rw-r--r--databases/pypy-sqlite3/pkg-descr8
5 files changed, 0 insertions, 48 deletions
diff --git a/databases/Makefile b/databases/Makefile
index 7b00de9342ce..6399ccf24d9e 100644
--- a/databases/Makefile
+++ b/databases/Makefile
@@ -834,8 +834,6 @@
SUBDIR += py-xapian
SUBDIR += py-zodbpickle
SUBDIR += pymongo
- SUBDIR += pypy-gdbm
- SUBDIR += pypy-sqlite3
SUBDIR += qdbm
SUBDIR += qdbm-plus
SUBDIR += qof
diff --git a/databases/pypy-gdbm/Makefile b/databases/pypy-gdbm/Makefile
deleted file mode 100644
index 349241545243..000000000000
--- a/databases/pypy-gdbm/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-# Created by: David Naylor <dbn@FreeBSD.org>
-
-PORTNAME= gdbm
-PORTREVISION= 1
-CATEGORIES= databases python
-
-MAINTAINER= python@FreeBSD.org
-COMMENT= PyPy bindings to the GNU dbm library
-
-LICENSE= GPLv2+
-
-DEPRECATED= Uses EOL Python 2.7 via lang/pypy
-EXPIRATION_DATE=2021-06-23
-
-LIB_DEPENDS= libgdbm.so:databases/gdbm
-
-CFFI_NAME= ffi
-
-.include "${.CURDIR}/../../lang/pypy/bsd.pypy.cffi.mk"
-.include <bsd.port.mk>
diff --git a/databases/pypy-gdbm/pkg-descr b/databases/pypy-gdbm/pkg-descr
deleted file mode 100644
index df0b3614ce1d..000000000000
--- a/databases/pypy-gdbm/pkg-descr
+++ /dev/null
@@ -1 +0,0 @@
-PyPy bindings to the GNU dbm library.
diff --git a/databases/pypy-sqlite3/Makefile b/databases/pypy-sqlite3/Makefile
deleted file mode 100644
index 98a796015205..000000000000
--- a/databases/pypy-sqlite3/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-# Created by: David Naylor <dbn@FreeBSD.org>
-
-PORTNAME= sqlite3
-CATEGORIES= databases python
-
-MAINTAINER= python@FreeBSD.org
-COMMENT= Standard PyPy binding to the SQLite3 library
-
-DEPRECATED= Uses EOL Python 2.7 via lang/pypy
-EXPIRATION_DATE=2021-06-23
-
-LIB_DEPENDS= libsqlite3.so:databases/sqlite3
-
-CFFI_NAME= _ffi
-
-.include "${.CURDIR}/../../lang/pypy/bsd.pypy.cffi.mk"
-.include <bsd.port.mk>
diff --git a/databases/pypy-sqlite3/pkg-descr b/databases/pypy-sqlite3/pkg-descr
deleted file mode 100644
index 8d91da89239a..000000000000
--- a/databases/pypy-sqlite3/pkg-descr
+++ /dev/null
@@ -1,8 +0,0 @@
-SQLite is a library that provides a SQL-language database that
-stores data in disk files without requiring a separate server
-process. pysqlite provides a SQL interface compliant with the DB-API
-2.0 specification described by PEP 249. This means that it should
-be possible to write the first version of your applications using
-SQLite for data storage. If switching to a larger database such as
-PostgreSQL or Oracle is later necessary, the switch should be
-relatively easy.