Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (8)
Mark libeasybind-java Multi-arch: foreign
· ccf41f92
Tony Mancill
authored
Feb 23, 2019
ccf41f92
Correct Homepage URL in debian/control
· 89fc2e5f
Tony Mancill
authored
Feb 23, 2019
89fc2e5f
Update gradle build patch for javafx
· 7a4958c3
Tony Mancill
authored
Feb 23, 2019
7a4958c3
Add stubbed implementation of getViewIndex() for JavaFX 9 compatibility
· 71f578ac
Tony Mancill
authored
Feb 23, 2019
71f578ac
Update Vcs- URLs to point to Salsa
· 36d34297
Tony Mancill
authored
Feb 23, 2019
36d34297
Bump Standards-Version to 4.3.0
· 1599842a
Tony Mancill
authored
Feb 23, 2019
1599842a
Use debhelper 12
· 35aac603
Tony Mancill
authored
Feb 23, 2019
35aac603
prepare changelog for upload
· 68e8b1cf
Tony Mancill
authored
Feb 23, 2019
68e8b1cf
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
68e8b1cf
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:0
7 -0800
-- tony mancill <tmancill@debian.org>
Sat, 23 Feb 2019 12:02:4
7 -0800
easybind (1.0.3-1) unstable; urgency=medium
...
...
debian/compat
View file @
68e8b1cf
1
0
1
2
debian/control
View file @
68e8b1cf
...
...
@@ -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 (>= 1
0
),
Build-Depends: debhelper (>= 1
2
),
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
...
...
debian/patches/01_build_gradle.patch
View file @
68e8b1cf
...
...
@@ -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,)'
}
debian/patches/02_javafx_9_compatibility.patch
0 → 100644
View file @
68e8b1cf
--- 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));
}
debian/patches/series
View file @
68e8b1cf
01_build_gradle.patch
02_javafx_9_compatibility.patch