changed debian/source/format to native

This commit is contained in:
luoyaoming 2024-05-07 09:19:48 +08:00
parent 2687a1c133
commit 8c75a42300
5 changed files with 1 additions and 60 deletions

View File

@ -1,22 +0,0 @@
commit 5e90b12a7703e108d0183c86c2cf577271865afe
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date: Sat May 6 21:23:56 2023 +0200
Fix checking for ATK_STATE_COLLAPSED
ATK_STATE_COLLAPSED is not actually a macro, so replace #ifdef with a
version check, since we know it appeared in atk 2.38.
diff --git a/jni/src/jawutil.c b/jni/src/jawutil.c
index a6c894c..8b2a16d 100644
--- a/jni/src/jawutil.c
+++ b/jni/src/jawutil.c
@@ -589,7 +589,7 @@ jaw_util_get_atk_state_type_from_java_state (JNIEnv *jniEnv, jobject jobj)
return ATK_STATE_CHECKED;
if (is_same_java_state( jniEnv, jobj, "COLLAPSED" ))
-#ifdef ATK_STATE_COLLAPSED
+#if ATK_CHECK_VERSION (2,38,0)
return ATK_STATE_COLLAPSED;
#else
return ATK_STATE_INVALID;

View File

@ -1,16 +0,0 @@
We already include the patch for atk_bridge_set_event_context
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/configure.ac
+++ b/configure.ac
@@ -27,7 +27,7 @@ m4_define([req_ver_atk], [1.18.0])
PKG_CHECK_MODULES(JAW, [
atk >= 2.36.0
- atk-bridge-2.0 >= 2.33.1
+ atk-bridge-2.0
atspi-2 >= 2.14.0
dbus-1
glib-2.0 >= 2.32.0

View File

@ -1,17 +0,0 @@
jaw-jdk9 needs java 9, but only module-info needs it
---
wrapper/Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/wrapper/Makefile.am
+++ b/wrapper/Makefile.am
@@ -19,7 +19,7 @@ EXTRA_DIST = $(properties_DATA) \
if MODULAR_JAR
module-info.class : $(srcdir)/module-info.java
- $(JAVAC) -cp $(top_builddir)/wrapper -sourcepath $(top_srcdir)/wrapper:$(top_builddir)/wrapper $(JAVACFLAGS) -d $(top_builddir)/wrapper $<
+ $(JAVAC) -cp $(top_builddir)/wrapper -sourcepath $(top_srcdir)/wrapper:$(top_builddir)/wrapper $(JAVACFLAGS) -source 9 -target 9 -d $(top_builddir)/wrapper $<
$(JARFILES) : $(DEP_CLASSES) module-info.class
$(JAR) cfm $(JARFILES) $(srcdir)/manifest.txt org/GNOME/Accessibility/*.class module-info.class -C $(srcdir) META-INF/services/javax.accessibility.AccessibilityProvider

View File

@ -1,4 +0,0 @@
java-1.7
atk-dep
ATK_STATE_COLLAPSED

View File

@ -1 +1 @@
3.0 (quilt)
3.0 (native)