Bug 208781 - [MAINTAINER] java/sqlitejdbc: fix WWW
Summary: [MAINTAINER] java/sqlitejdbc: fix WWW
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: --- Affects Only Me
Assignee: Guido Falsi
URL: http://web.archive.org/web/2012072107...
Keywords:
Depends on:
Blocks:
 
Reported: 2016-04-13 15:25 UTC by Lapo Luchini
Modified: 2016-04-13 16:22 UTC (History)
1 user (show)

See Also:


Attachments
patch (498 bytes, patch)
2016-04-13 15:25 UTC, Lapo Luchini
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Lapo Luchini 2016-04-13 15:25:39 UTC
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
Comment 1 Guido Falsi freebsd_committer freebsd_triage 2016-04-13 16:22:04 UTC
Committed. Thanks!
Comment 2 commit-hook freebsd_committer freebsd_triage 2016-04-13 16:22:05 UTC
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