Skip to content
Commits on Source (8)
easybind (1.0.3-2) UNRELEASED; urgency=medium
easybind (1.0.3-2) unstable; urgency=medium
* Update Vcs-Git URL.
* Mark libeasybind-java Multi-arch: foreign
* Correct Homepage URL in debian/control
* Update gradle build patch for javafx (Closes: #915208)
* Add stubbed implementation of getViewIndex() for JavaFX 9
* Update Vcs- URLs to point to Salsa
* Bump Standards-Version to 4.3.0
* Use debhelper 12
-- tony mancill <tmancill@debian.org> Mon, 26 Dec 2016 20:49:07 -0800
-- tony mancill <tmancill@debian.org> Sat, 23 Feb 2019 12:02:47 -0800
easybind (1.0.3-1) unstable; urgency=medium
......
......@@ -3,19 +3,20 @@ Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: tony mancill <tmancill@debian.org>
Build-Depends: debhelper (>= 10),
Build-Depends: debhelper (>= 12),
default-jdk (>= 1:1.8),
gradle-debian-helper,
junit4,
libopenjfx-java,
maven-repo-helper
Standards-Version: 3.9.8
Homepage: https://github.com/bkromhout/java-diff-utils
Vcs-Git: https://anonscm.debian.org/git/pkg-java/easybind.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/easybind.git
Standards-Version: 4.3.0
Homepage: https://github.com/TomasMikula/EasyBind
Vcs-Git: https://salsa.debian.org/java-team/easybind.git
Vcs-Browser: https://salsa.debian.org/java-team/easybind
Package: libeasybind-java
Architecture: all
Multi-arch: foreign
Depends: ${misc:Depends}
Description: helper library for custom JavaFX bindings using lamdas
EasyBind leverages lambdas to reduce boilerplate
......
......@@ -15,7 +15,7 @@ Forwarded: not-needed
group = 'org.fxmisc.easybind'
dependencies {
+ compile fileTree(include: ['*.jar'], dir: '/usr/share/java/openjfx/jre/lib/ext')
+ compile fileTree(include: ['javafx-*.jar'], dir: '/usr/share/java')
testCompile group: 'junit', name: 'junit', version: '[4.0,)'
}
--- a/src/main/java/org/fxmisc/easybind/MappedList.java
+++ b/src/main/java/org/fxmisc/easybind/MappedList.java
@@ -23,6 +23,11 @@
}
@Override
+ public int getViewIndex(int index) {
+ return index;
+ }
+
+ @Override
public E get(int index) {
return mapper.apply(getSource().get(index));
}
01_build_gradle.patch
02_javafx_9_compatibility.patch