[pkg-java] r8300 - in trunk/substance/debian: . patches

Varun Hiremath varun at alioth.debian.org
Mon May 25 07:23:21 UTC 2009


Author: varun
Date: 2009-05-25 07:23:21 +0000 (Mon, 25 May 2009)
New Revision: 8300

Modified:
   trunk/substance/debian/build.xml
   trunk/substance/debian/changelog
   trunk/substance/debian/patches/Drop_EDT_Check.diff
Log:
* Include *.colorscheme files in the jar
* Update patches/Drop_EDT_Check.diff to disable one more check

Modified: trunk/substance/debian/build.xml
===================================================================
--- trunk/substance/debian/build.xml	2009-05-25 06:22:48 UTC (rev 8299)
+++ trunk/substance/debian/build.xml	2009-05-25 07:23:21 UTC (rev 8300)
@@ -4,6 +4,7 @@
   <property file="build.properties"/>
   <patternset id="compiler.resources">
 	<include name="**/?*.properties" />
+	<include name="**/?*.colorscheme" />
 	<include name="**/?*.xml" />
 	<include name="**/?*.gif" />
 	<include name="**/?*.png" />

Modified: trunk/substance/debian/changelog
===================================================================
--- trunk/substance/debian/changelog	2009-05-25 06:22:48 UTC (rev 8299)
+++ trunk/substance/debian/changelog	2009-05-25 07:23:21 UTC (rev 8300)
@@ -1,3 +1,10 @@
+substance (5.2-2) UNRELEASED; urgency=low
+
+  * Include *.colorscheme files in the jar
+  * Update patches/Drop_EDT_Check.diff to disable one more check
+
+ -- Varun Hiremath <varun at debian.org>  Mon, 25 May 2009 01:44:07 -0400
+
 substance (5.2-1) unstable; urgency=low
 
   [ Damien Raude-Morvan ]

Modified: trunk/substance/debian/patches/Drop_EDT_Check.diff
===================================================================
--- trunk/substance/debian/patches/Drop_EDT_Check.diff	2009-05-25 06:22:48 UTC (rev 8299)
+++ trunk/substance/debian/patches/Drop_EDT_Check.diff	2009-05-25 07:23:21 UTC (rev 8300)
@@ -1,8 +1,10 @@
-Index: substance-5.0/src/org/jvnet/substance/utils/SubstanceCoreUtilities.java
+Author: Varun Hiremath
+Description: Disable EDT checks to enable Jajuk work properly.
+Index: substance-5.2/src/org/jvnet/substance/utils/SubstanceCoreUtilities.java
 ===================================================================
---- substance-5.0.orig/src/org/jvnet/substance/utils/SubstanceCoreUtilities.java	2008-11-28 16:58:19.000000000 -0500
-+++ substance-5.0/src/org/jvnet/substance/utils/SubstanceCoreUtilities.java	2008-11-28 16:59:53.000000000 -0500
-@@ -2308,11 +2308,11 @@
+--- substance-5.2.orig/src/org/jvnet/substance/utils/SubstanceCoreUtilities.java	2009-05-25 03:01:14.000000000 -0400
++++ substance-5.2/src/org/jvnet/substance/utils/SubstanceCoreUtilities.java	2009-05-25 03:01:38.000000000 -0400
+@@ -2364,12 +2364,12 @@
  	 *             If the component is created off Event Dispatch Thread.
  	 */
  	public static void testComponentCreationThreadingViolation(Component comp) {
@@ -19,4 +21,24 @@
 +// 			throw uiThreadingViolationError;
 +// 		}
  	}
- }
+ 
+ 	/**
+@@ -2382,12 +2382,12 @@
+ 	 *             If the component is changing state off Event Dispatch Thread.
+ 	 */
+ 	public static void testComponentStateChangeThreadingViolation(Component comp) {
+-		if (!SwingUtilities.isEventDispatchThread()) {
+-			UiThreadingViolationException uiThreadingViolationError = new UiThreadingViolationException(
+-					"Component state change must be done on Event Dispatch Thread");
+-			uiThreadingViolationError.printStackTrace(System.err);
+-			throw uiThreadingViolationError;
+-		}
++// 		if (!SwingUtilities.isEventDispatchThread()) {
++// 			UiThreadingViolationException uiThreadingViolationError = new UiThreadingViolationException(
++// 					"Component state change must be done on Event Dispatch Thread");
++// 			uiThreadingViolationError.printStackTrace(System.err);
++// 			throw uiThreadingViolationError;
++// 		}
+ 	}
+ 
+ 	public static void traceSubstanceApiUsage(Component comp, String message) {




More information about the pkg-java-commits mailing list