Skip to content
Commits on Source (4)
......@@ -3,6 +3,9 @@ libsis-jhdf5-java (18.08~pre+git20180805.da55947+dfsg-1) UNRELEASED; urgency=med
* Pre-release to adapt to HDF5 1.10.3-pre1
* Use git mode in watch file
* Drop now unneeded get-orig-source target
* Fix homepage
* Use gradle build system
* Build-Depends: ant
-- Andreas Tille <tille@debian.org> Mon, 13 Aug 2018 14:30:28 +0200
......
......@@ -8,6 +8,8 @@ Priority: optional
Build-Depends: debhelper (>= 11~),
default-jdk,
javahelper,
gradle-debian-helper,
ant,
libcommons-lang-java,
libcommons-io-java,
libsis-base-java,
......@@ -18,7 +20,7 @@ Build-Depends: debhelper (>= 11~),
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/med-team/libsis-jhdf5-java
Vcs-Git: https://salsa.debian.org/med-team/libsis-jhdf5-java.git
Homepage: http://svnsis.ethz.ch/repos/cisd/jhdf5/tags/release/14.12.x/14.12.6/jhdf5/
Homepage: https://sissource.ethz.ch/sispub/jhdf5
Package: libsis-jhdf5-java
Architecture: all
......
Author: Andreas Tille <tille@debian.org>
Last-Update: Mon, 13 Aug 2018 14:30:28 +0200
Description: Do not make wrong assumptions about directory name
--- a/javaproject.gradle
+++ b/javaproject.gradle
@@ -50,7 +50,7 @@ sourceSets {
buildDir = 'targets/gradle'
buildscript {
- apply from: '../jhdf5/repository.gradle'
+ apply from: 'repository.gradle'
repositories repositoryConfig
fix_dodgy_cast.patch
remove_ch_rinn_imports.patch
load_native_debian.patch
# fix_dodgy_cast.patch
# remove_ch_rinn_imports.patch
# load_native_debian.patch
fix_build_dir.patch
......@@ -17,9 +17,9 @@ TESTIGNORE = sourceTest/java/ch/systemsx/cisd/hdf5/HDF5RoundtripTest.java \
sourceTest/java/ch/systemsx/cisd/hdf5/io/HDF5DataSetRandomAccessFileTest.java
%:
dh $@ --with javahelper
dh $@ --buildsystem=gradle --with javahelper
override_dh_auto_clean:
_override_dh_auto_clean:
rm -rf build *.jar
rm -rf source/c/*.log
rm -rf source/c/*.so
......@@ -31,7 +31,7 @@ override_dh_auto_clean:
#Things that we'd probably exclude from the orig.tar.gz anyway
rm -rf jsrc lib ./sourceTest/java/jni
override_dh_auto_build:
_override_dh_auto_build:
# C build
cd source/c && \
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -shared -fPIC -Wl,--exclude-libs,ALL \
......@@ -43,7 +43,7 @@ override_dh_auto_build:
# This line is still needed on Ubuntu 14.04
jh_build sis-jhdf5.jar jsrc
override_dh_auto_test:
_override_dh_auto_test:
# FIXME
# Due to bug #842815 several tests are failing
# To get at least some installable package these tests are ignored here
......