dev-java/jdbc-mssqlserver: Version bump to 6.2.2

I tried to build this from source but it needs Azure libraries, which
are optional at runtime. We weren't building from source before so
nothing lost, I suppose.

I'm guessing the 4.0 SLOT referred to JDBC 4.0 for Java 6 so I have
bumped this to JDBC 4.2 for Java 8.

Package-Manager: Portage-2.3.17, Repoman-2.3.6
This commit is contained in:
James Le Cuirot
2017-12-10 20:05:57 +00:00
parent c1dd842d01
commit 83344e40d7
2 changed files with 29 additions and 1 deletions

View File

@@ -1 +1,2 @@
DIST sqljdbc_4.0.2206.100_enu.tar.gz 2391092 SHA256 9bc2b6c216e1a82eedcde2ad10ef2fbd9629aab6806544596639fe080f914423 SHA512 7b18d56552f08976b2da5216f3f5504bc8b3db02c072a696115bbee1f5bb35e7125d4880e8e0e034116378b479465315df530eee7eb8a73e90467e1a67265084 WHIRLPOOL 92d20517c6068475c916cffde922fa597eaad4d08eae62f5c74ff59698f0caf0509d19ea1f07cabfed861b0b725ed13a2e4e1416c6dd67d34ba6119303e869bc
DIST mssql-jdbc-6.2.2.jre8.jar 825389 BLAKE2B 3b3290e80652e1085729f7a3391bea7f3542af6598ea855c6e1430fef2b12009dbfccc761d347491ea85c22d2acfa12d5a55e79b44f23306b6c4f4b6a5aa2ebb SHA512 e381fe9444c706a8a019c5006fe5d238065c20387d3c5b9a4c632ff30033596cea26036b804fc4f6610ad1418bb7d94b024871c7deb865028f5770ffca353d49
DIST sqljdbc_4.0.2206.100_enu.tar.gz 2391092 BLAKE2B 0d473a56634bdffb206e46700fe96f7addc2c42dfbf2a38eb02f8acd959fa7477c10c03bb93bac847fd609ad40f6c11597de5ed07203789c1ae1aee76f31eb48 SHA512 7b18d56552f08976b2da5216f3f5504bc8b3db02c072a696115bbee1f5bb35e7125d4880e8e0e034116378b479465315df530eee7eb8a73e90467e1a67265084

View File

@@ -0,0 +1,27 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit java-pkg-2 versionator
DESCRIPTION="JDBC driver for Microsoft SQL Server"
HOMEPAGE="https://github.com/Microsoft/mssql-jdbc"
SRC_URI="https://github.com/Microsoft/mssql-jdbc/releases/download/v${PV}/mssql-jdbc-${PV}.jre8.jar"
KEYWORDS="~amd64 ~x86"
LICENSE="MIT"
SLOT="4.2"
DEPEND=""
RDEPEND=">=virtual/jre-1.8"
S="${WORKDIR}"
src_unpack() {
:
}
src_install() {
java-pkg_newjar "${DISTDIR}/${A}"
}