From owner-freebsd-ports@FreeBSD.ORG Tue Apr 7 21:53:23 2015 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 860C7F6A; Tue, 7 Apr 2015 21:53:23 +0000 (UTC) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id 3AB2EC4; Tue, 7 Apr 2015 21:53:22 +0000 (UTC) X-Auth-ID: anat Received: from devlanhide.timeinc.net (HELO utka.zajac) ([209.251.200.245]) by smtp02.lnh.mail.rcn.net with ESMTP; 07 Apr 2015 17:53:23 -0400 Message-ID: <552451D1.4020102@aldan.algebra.com> Date: Tue, 07 Apr 2015 17:53:21 -0400 From: "Mikhail T." User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: Matthew Seaman Subject: Re: databases/mysql-connector-java: Looks broken to me References: <20150401173142.1b36d256@rsbsd.rsb> <551C2260.5050904@freebsd.org> <55226070.1060909@FreeBSD.org> <55228EFF.6090904@aldan.algebra.com> <5522E5CF.3090902@FreeBSD.org> <5522F796.10709@aldan.algebra.com> <55237C20.7060406@FreeBSD.org> In-Reply-To: <55237C20.7060406@FreeBSD.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Apr 2015 21:53:23 -0000 On 07.04.2015 02:41, Matthew Seaman wrote: > So anyone using JDBC3 would be disappointed by our chopping it out. I > have precisely zero idea how many people that might be, or indeed how > much call there is for JDBC3 adaptors in general. If the difference between JDBC3 and 4 is the compiler-version used to compile them, then JDBC3 must only be of interest to those, who still use Java-1.5 for whatever reason. These would not be new FreeBSD installations... Various other packages have stopped supporting JDBC3 long ago . I'd recommend dropping it too. But if you think, we should not drop it, there is still no need for the older JDKs. Any newer javac can be asked to generate older bytecode. For example: javac -source 1.5 -target 1.5 ... Yours, -mi