debian/0000755000000000000000000000000011571536242007174 5ustar debian/patches/0000755000000000000000000000000011571536242010623 5ustar debian/patches/03_easymock_upgrade.diff0000644000000000000000000002246311267440676015317 0ustar Description: Fix compatibility with EasyMock version in Debian. - EasyMock.controlFor() replaced with MockControl.createControl() - testControl.activate() replaced with testControl.replay() Forwarded: no Author: Damien Raude-Morvan Last-Update: 2009-10-21 --- a/pmti/sources/ut/net/sourceforge/groboutils/pmti/v1/autodoc/v1/ITFJUnitListenerJDK13UTest.java +++ b/pmti/sources/ut/net/sourceforge/groboutils/pmti/v1/autodoc/v1/ITFJUnitListenerJDK13UTest.java @@ -76,7 +76,7 @@ super.setUp(); // set ourself up - this.testControl = EasyMock.controlFor( Test.class ); + this.testControl = MockControl.createControl( Test.class ); this.mockTest = (Test)this.testControl.getMock(); } @@ -121,7 +121,7 @@ public void testAddFailure3() { - this.testControl.activate(); + this.testControl.replay(); createListener().addFailure( this.mockTest, new AssertionFailedError( "ignore error") ); @@ -166,7 +166,7 @@ public void testAddError3() { - this.testControl.activate(); + this.testControl.replay(); createListener().addError( this.mockTest, new Throwable( "ignore error") ); --- a/testing-autodoc/sources/ut/net/sourceforge/groboutils/autodoc/v1/AutoDocJDK13UTest.java +++ b/testing-autodoc/sources/ut/net/sourceforge/groboutils/autodoc/v1/AutoDocJDK13UTest.java @@ -82,16 +82,16 @@ super.setUp(); // set ourself up - this.factoryControl = EasyMock.controlFor( AutoDocFactory.class ); + this.factoryControl = MockControl.createControl( AutoDocFactory.class ); this.mockFactory = (AutoDocFactory)this.factoryControl.getMock(); - this.logControl = EasyMock.controlFor( AutoDocLog.class ); + this.logControl = MockControl.createControl( AutoDocLog.class ); this.mockLog = (AutoDocLog)this.logControl.getMock(); - this.itControl = EasyMock.controlFor( AutoDocIT.class ); + this.itControl = MockControl.createControl( AutoDocIT.class ); this.mockIT = (AutoDocIT)this.itControl.getMock(); - this.tpControl = EasyMock.controlFor( AutoDocTP.class ); + this.tpControl = MockControl.createControl( AutoDocTP.class ); this.mockTP = (AutoDocTP)this.tpControl.getMock(); } @@ -131,10 +131,10 @@ this.mockFactory.createTP( this.getClass() ); this.factoryControl.setReturnValue( this.mockTP, 1 ); - this.factoryControl.activate(); - this.logControl.activate(); - this.itControl.activate(); - this.tpControl.activate(); + this.factoryControl.replay(); + this.logControl.replay(); + this.itControl.replay(); + this.tpControl.replay(); MockAutoDoc mad = new MockAutoDoc( this.getClass(), this.mockFactory ); --- a/testing-autodoc/sources/ut/net/sourceforge/groboutils/autodoc/v1/junit/AutoDocJUnitListenerJDK13UTest.java +++ b/testing-autodoc/sources/ut/net/sourceforge/groboutils/autodoc/v1/junit/AutoDocJUnitListenerJDK13UTest.java @@ -75,7 +75,7 @@ super.setUp(); // set ourself up - this.testControl = EasyMock.controlFor( Test.class ); + this.testControl = MockControl.createControl( Test.class ); this.mockTest = (Test)this.testControl.getMock(); } --- a/testing-autodoc/sources/ut/net/sourceforge/groboutils/autodoc/v1/junit/AutoDocJUnitListenerUTestI.java +++ b/testing-autodoc/sources/ut/net/sourceforge/groboutils/autodoc/v1/junit/AutoDocJUnitListenerUTestI.java @@ -78,7 +78,7 @@ super.setUp(); // set ourself up - this.testControl = EasyMock.controlFor( Test.class ); + this.testControl = MockControl.createControl( Test.class ); this.mockTest = (Test)this.testControl.getMock(); } @@ -105,7 +105,7 @@ public void testAddFailure3() { - this.testControl.activate(); + this.testControl.replay(); // failures can occur without a startTest being called! createListener().addFailure( this.mockTest, @@ -117,7 +117,7 @@ public void testAddFailure4() { - this.testControl.activate(); + this.testControl.replay(); AutoDocJUnitListener adjul = createListener(); adjul.startTest( this.mockTest ); @@ -148,7 +148,7 @@ public void testAddError3() { - this.testControl.activate(); + this.testControl.replay(); // errors can occur without a startTest being called! createListener().addError( this.mockTest, @@ -160,7 +160,7 @@ public void testAddError4() { - this.testControl.activate(); + this.testControl.replay(); AutoDocJUnitListener adjul = createListener(); adjul.startTest( this.mockTest ); --- a/testing-autodoc/sources/ut/net/sourceforge/groboutils/autodoc/v1/testserver/junit/JUnitTestInfoJDK13UTest.java +++ b/testing-autodoc/sources/ut/net/sourceforge/groboutils/autodoc/v1/testserver/junit/JUnitTestInfoJDK13UTest.java @@ -79,13 +79,13 @@ super.setUp(); // set ourself up - this.logControl = EasyMock.controlFor( AutoDocLog.class ); + this.logControl = MockControl.createControl( AutoDocLog.class ); this.mockLog = (AutoDocLog)this.logControl.getMock(); - this.itControl = EasyMock.controlFor( AutoDocIT.class ); + this.itControl = MockControl.createControl( AutoDocIT.class ); this.mockIT = (AutoDocIT)this.itControl.getMock(); - this.tpControl = EasyMock.controlFor( AutoDocTP.class ); + this.tpControl = MockControl.createControl( AutoDocTP.class ); this.mockTP = (AutoDocTP)this.tpControl.getMock(); } --- a/testing-mbtf/sources/ut/net/sourceforge/groboutils/mbtf/v1/engine/ErrorImplJDK13UTest.java +++ b/testing-mbtf/sources/ut/net/sourceforge/groboutils/mbtf/v1/engine/ErrorImplJDK13UTest.java @@ -70,7 +70,7 @@ super.setUp(); // set ourself up - this.phControl = EasyMock.controlFor( IPathHistory.class ); + this.phControl = MockControl.createControl( IPathHistory.class ); this.mockPH = (IPathHistory)this.phControl.getMock(); } @@ -99,7 +99,7 @@ { String msg = "blah"; Throwable t = new Throwable(); - this.phControl.activate(); + this.phControl.replay(); ErrorImpl ei = new ErrorImpl( msg, t, this.mockPH ); --- a/testing-mbtf/sources/ut/net/sourceforge/groboutils/mbtf/v1/engine/ErrorsImplJDK13UTest.java +++ b/testing-mbtf/sources/ut/net/sourceforge/groboutils/mbtf/v1/engine/ErrorsImplJDK13UTest.java @@ -71,7 +71,7 @@ super.setUp(); // set ourself up - this.phControl = EasyMock.controlFor( IPathHistory.class ); + this.phControl = MockControl.createControl( IPathHistory.class ); this.mockPH = (IPathHistory)this.phControl.getMock(); } @@ -131,7 +131,7 @@ ErrorsImpl ei = new ErrorsImpl(); this.mockPH.copy(); this.phControl.setReturnValue( this.mockPH, 1 ); - this.phControl.activate(); + this.phControl.replay(); ei.setCurrentPathHistory( this.mockPH ); @@ -179,7 +179,7 @@ ErrorsImpl ei = new ErrorsImpl(); this.mockPH.copy(); this.phControl.setReturnValue( this.mockPH, 1 ); - this.phControl.activate(); + this.phControl.replay(); ei.setCurrentPathHistory( this.mockPH ); @@ -222,7 +222,7 @@ ErrorsImpl ei = new ErrorsImpl(); this.mockPH.copy(); this.phControl.setReturnValue( this.mockPH, 1 ); - this.phControl.activate(); + this.phControl.replay(); ei.setCurrentPathHistory( this.mockPH ); @@ -265,7 +265,7 @@ ErrorsImpl ei = new ErrorsImpl(); this.mockPH.copy(); this.phControl.setReturnValue( this.mockPH, 1 ); - this.phControl.activate(); + this.phControl.replay(); ei.setCurrentPathHistory( this.mockPH ); @@ -308,7 +308,7 @@ ErrorsImpl ei = new ErrorsImpl(); this.mockPH.copy(); this.phControl.setReturnValue( this.mockPH, 1 ); - this.phControl.activate(); + this.phControl.replay(); ei.setCurrentPathHistory( this.mockPH ); --- a/uicapture/sources/ut/net/sourceforge/groboutils/uicapture/v1/ScriptGeneratorUTest.java +++ b/uicapture/sources/ut/net/sourceforge/groboutils/uicapture/v1/ScriptGeneratorUTest.java @@ -77,7 +77,7 @@ super.setUp(); // set ourself up - this.scriptmakerControl = EasyMock.controlFor( IScriptMaker.class ); + this.scriptmakerControl = MockControl.createControl( IScriptMaker.class ); this.mockScriptmaker = (IScriptMaker)this.scriptmakerControl.getMock(); } @@ -99,7 +99,7 @@ //this.mockScriptmaker.removeText("Text"); //this.scriptmakerControl.setVoidCallable(); - this.scriptmakerControl.activate(); + this.scriptmakerControl.replay(); ScriptGenerator sg = new ScriptGenerator( null, null, this.mockScriptmaker, "base" ); MouseWheelCaptureEvent mwce = new MouseWheelCaptureEvent( 10 ); debian/patches/02_dont_stop_on_junit_failure.diff0000644000000000000000000002052211267440676017413 0ustar Description: Don't launch unit test with main Ant targets and don't return failure of build if one unit test fail. Forwarded: not-needed Author: Damien Raude-Morvan Last-Update: 2009-10-21 --- a/_shared/common-ant/common-ant-tasks-deploy.ant-inc.xml +++ b/_shared/common-ant/common-ant-tasks-deploy.ant-inc.xml @@ -7,7 +7,7 @@ + javac,jar,doc,java-doc" > - - @@ -84,7 +82,6 @@ - --- a/build.xml +++ b/build.xml @@ -107,6 +107,15 @@ + + + + + + + + --- a/codecoverage/build.xml +++ b/codecoverage/build.xml @@ -100,8 +100,8 @@ - - + + --- a/pmti/build.xml +++ b/pmti/build.xml @@ -83,8 +83,8 @@ - - + + --- a/testing-autodoc/build.xml +++ b/testing-autodoc/build.xml @@ -70,8 +70,8 @@ - - + + --- a/testing-junit/build.xml +++ b/testing-junit/build.xml @@ -79,8 +79,8 @@ - - + + --- a/testing-mbtf/build.xml +++ b/testing-mbtf/build.xml @@ -77,8 +77,8 @@ - - + + --- a/testing-tp/build.xml +++ b/testing-tp/build.xml @@ -74,8 +74,8 @@ - - + + --- a/uicapture/build.xml +++ b/uicapture/build.xml @@ -75,8 +75,8 @@ - - + + --- a/util-classes/build.xml +++ b/util-classes/build.xml @@ -67,8 +67,8 @@ - - + + --- a/util-datastruct/build.xml +++ b/util-datastruct/build.xml @@ -75,8 +75,8 @@ - - + + --- a/util-io/build.xml +++ b/util-io/build.xml @@ -75,8 +75,8 @@ - - + + --- a/util-states/build.xml +++ b/util-states/build.xml @@ -75,8 +75,8 @@ - - + + --- a/util-thread/build.xml +++ b/util-thread/build.xml @@ -77,8 +77,8 @@ - - + + --- a/util-xml/build.xml +++ b/util-xml/build.xml @@ -73,8 +73,8 @@ - - + + debian/patches/06_support_others_jdk.diff0000644000000000000000000000557211571534552015725 0ustar Description: Support for new JDK >= 1.4 (read from ant.java.version property) Author: Damien Raude-Morvan Last-Update: 2011-06-02 Forwarded: no --- a/_shared/common-ant/common-ant-tasks-init.ant-inc.xml +++ b/_shared/common-ant/common-ant-tasks-init.ant-inc.xml @@ -60,6 +60,9 @@ + + + @@ -67,17 +70,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + debian/patches/series0000644000000000000000000000025511571534341012040 0ustar 01_reduce_junit_logging.diff 02_dont_stop_on_junit_failure.diff 03_easymock_upgrade.diff 04_coverage_zip_archives.diff 05_rename_subprojects.diff 06_support_others_jdk.diff debian/patches/01_reduce_junit_logging.diff0000644000000000000000000001361711267440676016162 0ustar Description: Reduce Log4j logging verbosity of unit tests from DEBUG to ERROR. Forwarded: not-needed Author: Damien Raude-Morvan Last-Update: 2009-10-21 --- a/codecoverage/log4j.properties +++ b/codecoverage/log4j.properties @@ -1,4 +1,4 @@ -log4j.rootCategory=WARN, stdout +log4j.rootCategory=ERROR, stdout # A1 is set to be a ConsoleAppender. @@ -7,5 +7,5 @@ log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n -log4j.category.net.sourceforge.groboutils.codecoverage=DEBUG +log4j.category.net.sourceforge.groboutils.codecoverage=ERROR --- a/pmti/log4j.properties +++ b/pmti/log4j.properties @@ -1,4 +1,4 @@ -log4j.rootCategory=WARN, stdout +log4j.rootCategory=ERROR, stdout # A1 is set to be a ConsoleAppender. @@ -7,5 +7,5 @@ log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n -log4j.category.net.sourceforge.groboutils.pmti=DEBUG +log4j.category.net.sourceforge.groboutils.pmti=ERROR --- a/testing-autodoc/log4j.properties +++ b/testing-autodoc/log4j.properties @@ -1,4 +1,4 @@ -log4j.rootCategory=WARN, stdout +log4j.rootCategory=ERROR, stdout # A1 is set to be a ConsoleAppender. @@ -7,6 +7,6 @@ log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n -log4j.category.net.sourceforge.groboutils.testing.autodoc=DEBUG -log4j.category.net.sourceforge.groboutils.util.classes=DEBUG +log4j.category.net.sourceforge.groboutils.testing.autodoc=ERROR +log4j.category.net.sourceforge.groboutils.util.classes=ERROR --- a/testing-junit/log4j.properties +++ b/testing-junit/log4j.properties @@ -1,4 +1,4 @@ -log4j.rootCategory=WARN, stdout +log4j.rootCategory=ERROR, stdout # A1 is set to be a ConsoleAppender. @@ -7,5 +7,5 @@ log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n -log4j.category.net.sourceforge.groboutils.junit=DEBUG +log4j.category.net.sourceforge.groboutils.junit=ERROR --- a/testing-mbtf/log4j.properties +++ b/testing-mbtf/log4j.properties @@ -1,4 +1,4 @@ -log4j.rootCategory=WARN, stdout +log4j.rootCategory=ERROR, stdout # A1 is set to be a ConsoleAppender. @@ -7,5 +7,5 @@ log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n -log4j.category.net.sourceforge.groboutils.testing.mbtf=DEBUG +log4j.category.net.sourceforge.groboutils.testing.mbtf=ERROR --- a/testing-tp/log4j.properties +++ b/testing-tp/log4j.properties @@ -1,4 +1,4 @@ -log4j.rootCategory=WARN, stdout +log4j.rootCategory=ERROR, stdout # A1 is set to be a ConsoleAppender. @@ -7,5 +7,5 @@ log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n -log4j.category.net.sourceforge.groboutils.tp=DEBUG +log4j.category.net.sourceforge.groboutils.tp=ERROR --- a/uicapture/log4j.properties +++ b/uicapture/log4j.properties @@ -1,4 +1,4 @@ -log4j.rootCategory=WARN, stdout +log4j.rootCategory=ERROR, stdout # A1 is set to be a ConsoleAppender. @@ -7,5 +7,5 @@ log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n -log4j.category.net.sourceforge.groboutils.uicapture=DEBUG +log4j.category.net.sourceforge.groboutils.uicapture=ERROR --- a/util-classes/log4j.properties +++ b/util-classes/log4j.properties @@ -1,4 +1,4 @@ -log4j.rootCategory=WARN, stdout +log4j.rootCategory=ERROR, stdout # A1 is set to be a ConsoleAppender. @@ -7,5 +7,5 @@ log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n -log4j.category.net.sourceforge.groboutils.util.classes=DEBUG +log4j.category.net.sourceforge.groboutils.util.classes=ERROR --- a/util-datastruct/log4j.properties +++ b/util-datastruct/log4j.properties @@ -1,4 +1,4 @@ -log4j.rootCategory=WARN, stdout +log4j.rootCategory=ERROR, stdout # A1 is set to be a ConsoleAppender. @@ -7,5 +7,5 @@ log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n -log4j.category.net.sourceforge.groboutils.util.datastruct=DEBUG +log4j.category.net.sourceforge.groboutils.util.datastruct=ERROR --- a/util-io/log4j.properties +++ b/util-io/log4j.properties @@ -1,4 +1,4 @@ -log4j.rootCategory=WARN, stdout +log4j.rootCategory=ERROR, stdout # A1 is set to be a ConsoleAppender. @@ -7,5 +7,5 @@ log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n -log4j.category.net.sourceforge.groboutils.util.io=DEBUG +log4j.category.net.sourceforge.groboutils.util.io=ERROR --- a/util-states/log4j.properties +++ b/util-states/log4j.properties @@ -1,4 +1,4 @@ -log4j.rootCategory=WARN, stdout +log4j.rootCategory=ERROR, stdout # A1 is set to be a ConsoleAppender. @@ -7,5 +7,5 @@ log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n -log4j.category.net.sourceforge.groboutils.util.states=DEBUG +log4j.category.net.sourceforge.groboutils.util.states=ERROR --- a/util-thread/log4j.properties +++ b/util-thread/log4j.properties @@ -1,4 +1,4 @@ -log4j.rootCategory=WARN, stdout +log4j.rootCategory=ERROR, stdout # A1 is set to be a ConsoleAppender. @@ -7,5 +7,5 @@ log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n -log4j.category.net.sourceforge.groboutils.util.thread=DEBUG +log4j.category.net.sourceforge.groboutils.util.thread=ERROR --- a/util-xml/log4j.properties +++ b/util-xml/log4j.properties @@ -1,4 +1,4 @@ -log4j.rootCategory=WARN, stdout +log4j.rootCategory=ERROR, stdout # A1 is set to be a ConsoleAppender. @@ -7,5 +7,5 @@ log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n -log4j.category.net.sourceforge.groboutils.util.xml=DEBUG +log4j.category.net.sourceforge.groboutils.util.xml=ERROR --- a/website/log4j.properties +++ b/website/log4j.properties @@ -1,4 +1,4 @@ -log4j.rootCategory=WARN, stdout +log4j.rootCategory=ERROR, stdout # A1 is set to be a ConsoleAppender. @@ -7,5 +7,5 @@ log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n -log4j.category.net.sourceforge.groboutils.website=DEBUG +log4j.category.net.sourceforge.groboutils.website=ERROR debian/patches/04_coverage_zip_archives.diff0000644000000000000000000000120311267440676016324 0ustar Description: Don't bundle dependencies inside Groboutils JAR's Forwarded: not-needed Author: Damien Raude-Morvan Last-Update: 2009-10-21 --- a/codecoverage/build.xml +++ b/codecoverage/build.xml @@ -162,8 +162,6 @@ - - debian/patches/05_rename_subprojects.diff0000644000000000000000000002725511264726455015674 0ustar #! /bin/sh /usr/share/dpatch/dpatch-run ## 05_rename_subprojects.dpatch by Damien Raude-Morvan ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: No description. @DPATCH@ --- a/codecoverage/build.xml +++ b/codecoverage/build.xml @@ -15,7 +15,7 @@ - + --- a/codecoverage/deployed.ant-inc.xml +++ b/codecoverage/deployed.ant-inc.xml @@ -1,8 +1,8 @@ + value="${basedir}/../codecoverage/groboutils-codecoverage-1.1.0-core.jar" /> - \ No newline at end of file + --- a/pmti/build.xml +++ b/pmti/build.xml @@ -12,7 +12,7 @@ - + --- a/pmti/deployed.ant-inc.xml +++ b/pmti/deployed.ant-inc.xml @@ -1,8 +1,8 @@ + value="${basedir}/../pmti/groboutils-pmti-1.0.0alpha2-core.jar" /> - \ No newline at end of file + --- a/testing-autodoc/build.xml +++ b/testing-autodoc/build.xml @@ -12,7 +12,7 @@ - + --- a/testing-autodoc/deployed.ant-inc.xml +++ b/testing-autodoc/deployed.ant-inc.xml @@ -1,9 +1,9 @@ + value="${basedir}/../testing-autodoc/groboutils-testingautodoc-1.0.0alpha2-core.jar" /> + value="${basedir}/../testing-autodoc/deploy/groboutils-testingautodoc-1.0.0alpha2/lib/groboutils-testingautodoc-1.0.0alpha2-utests.jar" /> + - \ No newline at end of file --- a/testing-junit/build.xml +++ b/testing-junit/build.xml @@ -12,7 +12,7 @@ - + --- a/testing-junit/deployed.ant-inc.xml +++ b/testing-junit/deployed.ant-inc.xml @@ -1,8 +1,8 @@ + value="${basedir}/../testing-junit/groboutils-testingjunit-1.2.1-core.jar" /> - \ No newline at end of file + --- a/testing-mbtf/build.xml +++ b/testing-mbtf/build.xml @@ -12,7 +12,7 @@ - + --- a/testing-mbtf/deployed.ant-inc.xml +++ b/testing-mbtf/deployed.ant-inc.xml @@ -1,8 +1,8 @@ + value="${basedir}/../testing-mbtf/groboutils-testingmbtf-1.0.0alpha2-core.jar" /> - \ No newline at end of file + --- a/testing-tp/build.xml +++ b/testing-tp/build.xml @@ -12,7 +12,7 @@ - + --- a/testing-tp/deployed.ant-inc.xml +++ b/testing-tp/deployed.ant-inc.xml @@ -1,8 +1,8 @@ + value="${basedir}/../testing-tp/groboutils-testingtp-1.0.0alpha2-core.jar" /> - \ No newline at end of file + --- a/uicapture/build.xml +++ b/uicapture/build.xml @@ -12,7 +12,7 @@ - + --- a/uicapture/deployed.ant-inc.xml +++ b/uicapture/deployed.ant-inc.xml @@ -1,8 +1,8 @@ + value="${basedir}/../uicapture/grobotesting-uicapture-1.0.0alpha2-core.jar" /> - \ No newline at end of file + --- a/util-classes/build.xml +++ b/util-classes/build.xml @@ -12,7 +12,7 @@ - + --- a/util-classes/deployed.ant-inc.xml +++ b/util-classes/deployed.ant-inc.xml @@ -1,10 +1,10 @@ + value="${basedir}/../util-classes/groboutils-classes-1.0.0-core.jar" /> + value="${basedir}/../util-classes/deploy/groboutils-classes-1.0.0/lib/groboutils-classes-1.0.0-utests.jar" /> + - \ No newline at end of file --- a/util-datastruct/build.xml +++ b/util-datastruct/build.xml @@ -12,7 +12,7 @@ - + --- a/util-datastruct/deployed.ant-inc.xml +++ b/util-datastruct/deployed.ant-inc.xml @@ -1,8 +1,8 @@ + value="${basedir}/../util-datastruct/groboutils-datastruct-1.0.0alpha3-core.jar" /> - \ No newline at end of file + --- a/util-io/build.xml +++ b/util-io/build.xml @@ -12,7 +12,7 @@ - + --- a/util-io/deployed.ant-inc.xml +++ b/util-io/deployed.ant-inc.xml @@ -1,8 +1,8 @@ + value="${basedir}/../util-io/groboutils-io-1.0.0alpha2-core.jar" /> - \ No newline at end of file + --- a/util-states/build.xml +++ b/util-states/build.xml @@ -12,7 +12,7 @@ - + --- a/util-states/deployed.ant-inc.xml +++ b/util-states/deployed.ant-inc.xml @@ -1,8 +1,8 @@ + value="${basedir}/../util-states/groboutils-states-1.0.0alpha2-core.jar" /> - \ No newline at end of file + --- a/util-thread/build.xml +++ b/util-thread/build.xml @@ -12,7 +12,7 @@ - + --- a/util-thread/deployed.ant-inc.xml +++ b/util-thread/deployed.ant-inc.xml @@ -1,8 +1,8 @@ + value="${basedir}/../util-thread/groboutils-thread-1.0.0alpha2-core.jar" /> - \ No newline at end of file + --- a/util-xml/build.xml +++ b/util-xml/build.xml @@ -12,7 +12,7 @@ - + --- a/util-xml/deployed.ant-inc.xml +++ b/util-xml/deployed.ant-inc.xml @@ -1,4 +1,4 @@ + value="${basedir}/../util-xml/groboutils-xml-1.1.0-core.jar" /> debian/control0000644000000000000000000000162611571536026010604 0ustar Source: libgroboutils-java Section: java Priority: optional Maintainer: Damien Raude-Morvan Build-Depends: libgroboutils-java, ant, cdbs, debhelper (>= 7), default-jdk Build-Depends-Indep: ant-optional, junit, liblog4j1.2-java, libeasymock-java, libbcel-java Standards-Version: 3.9.2 Homepage: http://groboutils.sourceforge.net/ Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libgroboutils-java/ Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libgroboutils-java/ Package: libgroboutils-java Architecture: all Depends: ${misc:Depends} Description: Java-based testing tools and JUnit extensions GroboUtils is a group of Java-based testing tools and JUnit extensions aimed at increasing quality awareness and ease of introduction of testing tools into the development cycle. . GroboUtils include, for example, multi-threaded tests, hierarchial unit tests, and a code coverage tool. debian/watch0000644000000000000000000000013211271163363010216 0ustar version=3 http://sf.net/groboutils/GroboUtils-(.*)-src\.tar\.gz debian debian/orig-tar.sh debian/source/0000755000000000000000000000000011571536242010474 5ustar debian/source/format0000644000000000000000000000001411571535771011710 0ustar 3.0 (quilt) debian/libgroboutils-java.docs0000644000000000000000000000002511264723066013643 0ustar CHANGES.TXT TODO.txt debian/ant.properties0000644000000000000000000000025411264723066012076 0ustar # Don't try to connect to internet global.offline = true # Force using a 1.4 class format ant.java.version = 1.4 ant.build.javac.source = 1.4 ant.build.javac.target = 1.4 debian/changelog0000644000000000000000000000074111571536236011053 0ustar libgroboutils-java (5-2) unstable; urgency=low * Bump Standards-Version to 3.9.2: no changes needed. * Switch to 3.0 (quilt) source format. * debian/patches/06_support_others_jdk.diff: Support for OpenJDK6 (Closes: #628301). -- Damien Raude-Morvan Thu, 02 Jun 2011 00:26:25 +0200 libgroboutils-java (5-1) unstable; urgency=low * Initial release (Closes: #551812) -- Damien Raude-Morvan Tue, 27 Oct 2009 00:21:17 +0100 debian/rules0000755000000000000000000000154611571536001010253 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/ant.mk JAVA_HOME := /usr/lib/jvm/default-java ANT_HOME := /usr/share/ant DEB_JARS := groboutils-testingautodoc-core groboutils-codecoverage-runtime \ groboutils-codecoverage-core groboutils-codecoverage-ant groboutils-classes-core \ junit log4j-1.2 easymock bcel \ ant-apache-bcel ant-junit ant-nodeps ant-trax DEB_ANT_BUILD_TARGET := main DEB_ANT_CHECK_TARGET := test-all DEB_ANT_CLEAN_TARGET := clean ALL_JARS = $(wildcard */*.jar) binary-post-install/libgroboutils-java:: for jar in $(ALL_JARS); do \ BASE_NAME=`basename $$jar`; \ CLEAN_NAME=`basename $$jar .jar | cut -d '-' -f '1,2,4'`; \ dh_link usr/share/java/$$BASE_NAME usr/share/java/$$CLEAN_NAME.jar; \ done get-orig-source: uscan --upstream-version 0 --rename debian/copyright0000644000000000000000000001027711271427016011131 0ustar Format-Specification: http://dep.debian.net/deps/dep5/ Name: GroboUtils Maintainer: Matt Albrech , Keith Johnston Source: http://groboutils.sourceforge.net/downloads.html Files: * Copyright: Copyright (C) 2002-2003 Matt Albrecht Licence: BSD Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Files: codecoverage/sources/dev/net/sourceforge/groboutils/codecoverage/v2/ant/zip/*, codecoverage/sources/ut/org/apache/tools/ant/BuildFileTestA.java Copyright: Copyright 2001,2004 The Apache Software Foundation Licence: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. On Debian systems the full text of the Apache License, Version 2.0 License can be found in the `/usr/share/common-licenses/Apache-2.0' file. Files: codecoverage/sources/ut/net/sourceforge/groboutils/codecoverage/v2/IAnalysisModuleUTestI.java, codecoverage/sources/ut/net/sourceforge/groboutils/codecoverage/v2/IChannelLoggerUTestI.java, codecoverage/sources/ut/net/sourceforge/groboutils/codecoverage/v2/IChannelLogReaderUTestI.java, codecoverage/sources/ut/net/sourceforge/groboutils/codecoverage/v2/IChannelLoggerFactoryUTestI.java, codecoverage/sources/ut/net/sourceforge/groboutils/codecoverage/v2/IChannelLogRecordUTestI.java, codecoverage/sources/ut/net/sourceforge/groboutils/codecoverage/v2/IClassChannelLogReaderUTestI.java, util-io/sources/dev/net/sourceforge/groboutils/util/io/v1/MimeOutputStream.java, util-io/sources/dev/net/sourceforge/groboutils/util/io/v1/MimeInputStream.java Copyright: Copyright (C) 2002-2003 Matt Albrecht Licence: LGPL-2.1+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. On Debian systems the full text of the GNU Library General License can be found in the `/usr/share/common-licenses/LGPL-2' file. Files: debian/* Copyright: 2009, Damien Raude-Morvan License: BSD Copying and distribution of this package, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. debian/README.source0000644000000000000000000000036211264726455011362 0ustar This package uses quilt to manage all modifications to the upstream source. Changes are stored in the source package as diffs in debian/patches and applied during the build. See /usr/share/doc/quilt/README.source for a detailed explanation. debian/orig-tar.sh0000755000000000000000000000060111271163363011251 0ustar #!/bin/sh -e # $2 = version # $3 = file DIR=libgroboutils-java-$2.orig TAR=libgroboutils-java_$2.orig.tar.gz # clean up the upstream tarball mkdir $DIR tar -C $DIR -z -x -f $3 GZIP=--best tar czf $TAR -X debian/orig-tar.exclude $DIR rm -rf $DIR # move to directory 'tarballs' if [ -r .svn/deb-layout ]; then . .svn/deb-layout mv $TAR $origDir echo "moved $TAR to $origDir" fi debian/compat0000644000000000000000000000000211264723066010373 0ustar 7 debian/orig-tar.exclude0000644000000000000000000000165211271427016012272 0ustar # License ? website/import/Belief.jar codecoverage/sources/example1/* codecoverage/sources/example2/* testing-junit/sources/iut/net/sourceforge/groboutils/junit/v1/iftc/Sample* # Binary ? _shared/bootstrap/* # Cruft ? _shared/3rdparty/ant/1.6beta/bin/* _shared/3rdparty/ant/1.6beta/etc/* out.log website/import/ website/xdocs/ *.old # Others licences _shared/3rdparty/bcel/5.1/LICENSE.txt _shared/3rdparty/junit/3.7/license-cpl.html _shared/3rdparty/sax/2.0.1/license.html _shared/3rdparty/easymock/0.8/license.html _shared/3rdparty/ant/1.6beta/LICENSE.xerces _shared/3rdparty/ant/1.6beta/LICENSE _shared/3rdparty/ant/1.6beta/LICENSE.sax _shared/3rdparty/ant/1.6beta/LICENSE.dom _shared/3rdparty/log4j/1.2.8/LICENSE.txt _shared/3rdparty/xerces/2.4.0/LICENSE _shared/3rdparty/xerces/2.4.0/LICENSE-SAX.html _shared/3rdparty/xerces/2.4.0/LICENSE-DOM.html _shared/3rdparty/xalan/2.5.1/License _shared/3rdparty/mockobjects/0.4rc1/LICENSE.txt debian/libgroboutils-java.install0000644000000000000000000000176411271163363014370 0ustar testing-junit/groboutils-testingjunit-1.2.1-core.jar /usr/share/java testing-tp/groboutils-testingtp-1.0.0alpha2-core.jar /usr/share/java testing-autodoc/groboutils-testingautodoc-1.0.0alpha2-core.jar /usr/share/java #testing-mbtf/groboutils-testingmbtf-1.0.0alpha2-core.jar /usr/share/java util-xml/groboutils-xml-1.1.0-core.jar /usr/share/java util-thread/groboutils-thread-1.0.0alpha2-core.jar /usr/share/java #util-states/groboutils-states-1.0.0alpha2-core.jar /usr/share/java util-io/groboutils-io-1.0.0alpha2-core.jar /usr/share/java util-datastruct/groboutils-datastruct-1.0.0alpha3-core.jar /usr/share/java util-classes/groboutils-classes-1.0.0-core.jar /usr/share/java codecoverage/groboutils-codecoverage-1.1.0-core.jar /usr/share/java codecoverage/groboutils-codecoverage-1.1.0-ant.jar /usr/share/java codecoverage/groboutils-codecoverage-1.1.0-runtime.jar /usr/share/java pmti/groboutils-pmti-1.0.0alpha3-core.jar /usr/share/java uicapture/groboutils-uicapture-1.0.0alpha2-core.jar /usr/share/java