Skip to content
GitLab
Explore
Sign in
Register
This is an archived project. Repository and other project resources are read-only.
Commits on Source (4)
Fix homepage
· f6758315
Andreas Tille
authored
Aug 14, 2018
f6758315
Do not make wrong assumptions about directory name
· 13a053fd
Andreas Tille
authored
Aug 14, 2018
13a053fd
Deactivate old overrides in favour of gradle build
· 273b90aa
Andreas Tille
authored
Aug 14, 2018
273b90aa
Build-Depends: ant
· c6a5fb6b
Andreas Tille
authored
Aug 14, 2018
c6a5fb6b
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
c6a5fb6b
...
...
@@ -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
...
...
debian/control
View file @
c6a5fb6b
...
...
@@ -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://s
vnsis
.ethz.ch/
repos/cisd/jhdf5/tags/release/14.12.x/14.12.6
/jhdf5
/
Homepage: http
s
://s
issource
.ethz.ch/
sispub
/jhdf5
Package: libsis-jhdf5-java
Architecture: all
...
...
debian/patches/fix_build_dir.patch
0 → 100644
View file @
c6a5fb6b
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
debian/patches/series
View file @
c6a5fb6b
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
debian/rules
View file @
c6a5fb6b
...
...
@@ -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
...
...