Created attachment 169292 [details] patch Fix WWW with Web Archive, as the original site is long dead. BTW: the project itself is very old (and has since been forked by different people and changed from BSD to APACHE license), but since we're using it as a small wrapper around native libsqlite3.so.0 from Ports it's always using the latest release, as can be verified with: public static void main(String[] args) throws Exception { Class.forName("org.sqlite.JDBC"); Connection conn = DriverManager.getConnection("jdbc:sqlite:test.sqlite"); DatabaseMetaData db = conn.getMetaData(); System.out.println("Database: " +db.getDatabaseProductName()); System.out.println("Version: " +db.getDatabaseProductVersion()); } which currently prints: Database: SQLite Version: 3.11.1
Committed. Thanks!
A commit references this bug: Author: madpilot Date: Wed Apr 13 16:21:42 UTC 2016 New revision: 413215 URL: https://svnweb.freebsd.org/changeset/ports/413215 Log: Point WWW link to the archived home page of the project due to the site being unavailable otherwise. PR: 208781 Submitted by: Lapo Luchini <lapo at lapo.it> (maintainer) Changes: head/java/sqlitejdbc/pkg-descr