diff options
| author | Rene Ladan <rene@FreeBSD.org> | 2026-07-28 18:59:20 +0000 |
|---|---|---|
| committer | Rene Ladan <rene@FreeBSD.org> | 2026-07-28 18:59:20 +0000 |
| commit | 9dd013fafe24f0706c5b43c204c36b320bcae083 (patch) | |
| tree | 2c380beacdd7b2dd5cc9d6f001e92b9ae5acb8af | |
| parent | 4188e91cdd07a0133af8939ac565e8bf1cd1e7bd (diff) | |
java/sqlitejdbc: Remove expired port
2026-07-28 java/sqlitejdbc: Dead old upstream, replaced by databases/sqlite-jdbc
| -rw-r--r-- | MOVED | 1 | ||||
| -rw-r--r-- | java/Makefile | 1 | ||||
| -rw-r--r-- | java/sqlitejdbc/Makefile | 35 | ||||
| -rw-r--r-- | java/sqlitejdbc/distinfo | 2 | ||||
| -rw-r--r-- | java/sqlitejdbc/files/patch-Makefile | 37 | ||||
| -rw-r--r-- | java/sqlitejdbc/files/patch-Makefile.common | 11 | ||||
| -rw-r--r-- | java/sqlitejdbc/files/patch-src_org_sqlite_Conn.java | 14 | ||||
| -rw-r--r-- | java/sqlitejdbc/pkg-descr | 5 | ||||
| -rw-r--r-- | java/sqlitejdbc/pkg-message | 12 |
9 files changed, 1 insertions, 117 deletions
@@ -5512,3 +5512,4 @@ devel/apache-commons-configuration||2026-07-26|Has expired: 'The 1.x codebase no databases/sqlitestudio|databases/letos|2026-07-26|Project renamed upstream net/jicmp6||2026-07-28|Has expired: several years behind on upstream, no maintainer, moved to https://github.com/OpenNMS/jicmp6 net/jicmp||2026-07-28|Has expired: several years behind on upstream, no maintainer, moved to https://github.com/OpenNMS/jicmp +java/sqlitejdbc|databases/sqlite-jdbc|2026-07-28|Has expired: Dead old upstream, replaced by databases/sqlite-jdbc diff --git a/java/Makefile b/java/Makefile index 087f50baaf31..da8b8482dcfa 100644 --- a/java/Makefile +++ b/java/Makefile @@ -90,7 +90,6 @@ SUBDIR += phpeclipse SUBDIR += proguard SUBDIR += sigar - SUBDIR += sqlitejdbc SUBDIR += trove4j SUBDIR += veditor SUBDIR += visualvm diff --git a/java/sqlitejdbc/Makefile b/java/sqlitejdbc/Makefile deleted file mode 100644 index b74d858c34ca..000000000000 --- a/java/sqlitejdbc/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -PORTNAME= sqlitejdbc -PORTVERSION= 056 -DISTVERSIONPREFIX= v -DISTVERSIONSUFFIX= -src -PORTREVISION= 5 -CATEGORIES= java databases -MASTER_SITES= http://files.zentus.com/sqlitejdbc/ - -MAINTAINER= lapo@lapo.it -COMMENT= Java JDBC driver for SQLite -WWW= http://web.archive.org/web/20120721075310/http://www.zentus.com/sqlitejdbc/ - -DEPRECATED= Dead old upstream, replaced by databases/sqlite-jdbc -EXPIRATION_DATE= 2026-07-28 - -LIB_DEPENDS= libsqlite3.so:databases/sqlite3 - -USES= gmake java tar:tgz -JAVA_VERSION= 8 - -WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSIONPREFIX}${DISTVERSION} -MAKE_ENV= JAVA_HOME="${JAVA_HOME}" -ALL_TARGET= native - -CONFLICTS= sqlite-jdbc - -PLIST_FILES= ${JAVAJARDIR}/sqlitejdbc-native.jar lib/libsqlitejdbc.so - -do-install: - ${INSTALL_DATA} ${WRKSRC}/build/sqlitejdbc-v${PORTVERSION}-native.jar \ - ${STAGEDIR}${JAVAJARDIR}/sqlitejdbc-native.jar - ${INSTALL_DATA} ${WRKSRC}/build/FreeBSD/libsqlitejdbc.so \ - ${STAGEDIR}${PREFIX}/lib/ - -.include <bsd.port.mk> diff --git a/java/sqlitejdbc/distinfo b/java/sqlitejdbc/distinfo deleted file mode 100644 index 1c1d2b3e2ddb..000000000000 --- a/java/sqlitejdbc/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (sqlitejdbc-v056-src.tgz) = 000edd02dc1279da490aa332a9b053ba35a80e220904faab82aff06ed7937a49 -SIZE (sqlitejdbc-v056-src.tgz) = 160491 diff --git a/java/sqlitejdbc/files/patch-Makefile b/java/sqlitejdbc/files/patch-Makefile deleted file mode 100644 index bc48bff6209f..000000000000 --- a/java/sqlitejdbc/files/patch-Makefile +++ /dev/null @@ -1,37 +0,0 @@ ---- Makefile.orig 2009-06-09 10:54:22 UTC -+++ Makefile -@@ -16,6 +16,7 @@ include Makefile.common - # - - include Makefile.common -+target := FreeBSD - - default: test - -@@ -29,13 +30,15 @@ build/$(sqlitejdbc)-native.jar: $(native_classes) - build/$(sqlitejdbc)-native.jar: $(native_classes) - cd build && jar cf $(sqlitejdbc)-native.jar $(java_classlist) - --build/$(target)/$(LIBNAME): build/$(sqlite)-$(target)/sqlite3.o build/org/sqlite/NativeDB.class -+build/$(target)/$(LIBNAME): build/org/sqlite/NativeDB.class - @mkdir -p build/$(target) - $(JAVAH) -classpath build -jni -o build/NativeDB.h org.sqlite.NativeDB - $(CC) $(CFLAGS) -c -o build/$(target)/NativeDB.o \ -+ -I$(LOCALBASE)/include \ - src/org/sqlite/NativeDB.c - $(CC) $(CFLAGS) $(LINKFLAGS) -o build/$(target)/$(LIBNAME) \ -- build/$(target)/NativeDB.o build/$(sqlite)-$(target)/*.o -+ build/$(target)/NativeDB.o \ -+ -L$(LOCALBASE)/lib -lsqlite3 - $(STRIP) build/$(target)/$(LIBNAME) - - build/$(sqlite)-%/sqlite3.o: dl/$(sqlite)-amal.zip -@@ -51,7 +54,7 @@ build/org/%.class: src/org/%.java - - build/org/%.class: src/org/%.java - @mkdir -p build -- $(JAVAC) -source 1.2 -target 1.2 -sourcepath src -d build $< -+ $(JAVAC) -source 1.6 -target 1.6 -sourcepath src -d build $< - - build/test/%.class: src/test/%.java - @mkdir -p build diff --git a/java/sqlitejdbc/files/patch-Makefile.common b/java/sqlitejdbc/files/patch-Makefile.common deleted file mode 100644 index 4b6037d1d6b4..000000000000 --- a/java/sqlitejdbc/files/patch-Makefile.common +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.common.orig 2013-10-30 08:27:27.420880093 +0000 -+++ Makefile.common 2013-10-30 08:27:45.873878420 +0000 -@@ -56,7 +56,7 @@ - target := $(os)-$(arch) - - # os=Default is meant to be generic unix/linux --Default_CC := gcc -+Default_CC := $(CC) - Default_STRIP := strip - Default_CFLAGS := -I$(JAVA_HOME)/include -Os -fPIC - Default_LINKFLAGS := -shared diff --git a/java/sqlitejdbc/files/patch-src_org_sqlite_Conn.java b/java/sqlitejdbc/files/patch-src_org_sqlite_Conn.java deleted file mode 100644 index d5bb495d95b8..000000000000 --- a/java/sqlitejdbc/files/patch-src_org_sqlite_Conn.java +++ /dev/null @@ -1,14 +0,0 @@ ---- src/org/sqlite/Conn.java.orig 2009-07-22 18:33:46.000000000 +0200 -+++ src/org/sqlite/Conn.java 2009-07-22 18:33:53.000000000 +0200 -@@ -214,7 +214,10 @@ class Conn implements Connection - ResultSet.CONCUR_READ_ONLY); - } - public PreparedStatement prepareStatement(String sql, int autoC) -- throws SQLException { throw new SQLException("NYI"); } -+ throws SQLException { -+ return prepareStatement(sql, ResultSet.TYPE_FORWARD_ONLY, -+ ResultSet.CONCUR_READ_ONLY); -+ } - public PreparedStatement prepareStatement(String sql, int[] colInds) - throws SQLException { throw new SQLException("NYI"); } - public PreparedStatement prepareStatement(String sql, String[] diff --git a/java/sqlitejdbc/pkg-descr b/java/sqlitejdbc/pkg-descr deleted file mode 100644 index f870af62e48d..000000000000 --- a/java/sqlitejdbc/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -SQLiteJDBC is a Java JDBC driver for SQLite. - -It runs using either a native code library or a 100% Pure Java driver -based on NestedVM emulation (but in this package only the native version -is installed). diff --git a/java/sqlitejdbc/pkg-message b/java/sqlitejdbc/pkg-message deleted file mode 100644 index 8f4a700dd85a..000000000000 --- a/java/sqlitejdbc/pkg-message +++ /dev/null @@ -1,12 +0,0 @@ -[ -{ type: install - message: <<EOM -Warning: you need a sqlite3 port compiled with SQLITE_ENABLE_COLUMN_METADATA -in order to use the following methods: - String ResultSetMetaData.getCatalogName(int column) - String ResultSetMetaData.getTableName(int column) -any attemp to use them will close the JVM with an error of: - Undefined symbol "sqlite3_column_table_name16" -EOM -} -] |
