[pkg-java] r18470 - in tags/easymock: . 3.2+ds-3/debian

Emmanuel Bourg ebourg-guest at moszumanska.debian.org
Mon Sep 29 13:35:31 UTC 2014


Author: ebourg-guest
Date: 2014-09-29 13:35:31 +0000 (Mon, 29 Sep 2014)
New Revision: 18470

Added:
   tags/easymock/3.2+ds-3/
   tags/easymock/3.2+ds-3/debian/build.xml
   tags/easymock/3.2+ds-3/debian/changelog
   tags/easymock/3.2+ds-3/debian/control
   tags/easymock/3.2+ds-3/debian/pom.xml
   tags/easymock/3.2+ds-3/debian/rules
Removed:
   tags/easymock/3.2+ds-3/debian/build.xml
   tags/easymock/3.2+ds-3/debian/changelog
   tags/easymock/3.2+ds-3/debian/control
   tags/easymock/3.2+ds-3/debian/pom.xml
   tags/easymock/3.2+ds-3/debian/rules
Log:
[svn-buildpackage] Tagging easymock 3.2+ds-3

Deleted: tags/easymock/3.2+ds-3/debian/build.xml
===================================================================
--- trunk/easymock/debian/build.xml	2014-09-29 12:38:06 UTC (rev 18466)
+++ tags/easymock/3.2+ds-3/debian/build.xml	2014-09-29 13:35:31 UTC (rev 18470)
@@ -1,93 +0,0 @@
-<project name="easymock" default="jar" basedir="../">
-    <description>
-        build file for easymock
-    </description>
-  <!-- set global properties for this build -->
-  <property name="src" location="src"/>
-  <property name="dist" location="dist"/>
-  <property name="build" location="build"/>
-  <property name="build.test" location="tests-build"/>
-  <property name="javadoc" location="api"/>
-  <property name="jarfile" location="${dist}/easymock.jar"/>
-  <property name="lib.dir" location="/usr/share/java"/>
-
-  <path id="classpath">
-    <fileset dir="${lib.dir}" includes="**/*.jar"/>
-  </path>
-  <path id="junit.classpath">
-      <pathelement location="${build}"/>
-      <pathelement location="${build.test}"/>
-      <pathelement location="/usr/share/java/junit4.jar"/>
-      <!-- only needed for version 3.2 and later -->
-      <pathelement location="/usr/share/java/objenesis.jar"/>
-      <pathelement location="/usr/share/java/cglib.jar"/>
-      <pathelement location="/usr/share/java/asm3.jar"/>
-  </path>
-
-  <target name="init">
-    <!-- Create the build directory structure used by compile -->
-    <mkdir dir="${build}"/>
-    <mkdir dir="${build.test}"/>
-    <mkdir dir="${javadoc}"/>
-    <mkdir dir="${dist}"/>
-  </target>
-
-  <target name="compile" depends="init" description="compile the source" >
-    <!-- Compile the java code from ${src} into ${build} -->
-    <javac sourcepath="" target="1.6" source="1.6" includeantruntime="true" srcdir="${src}"
-        classpathref="classpath" destdir="${build}" >
-        <include name="**/*.java"/>
-        <exclude name="**/AndroidClassProxyFactory.java"/>
-    </javac>
-  </target>
-
-  <target name="compile-tests" depends="init,compile" description="compile the unit tests" >
-    <javac sourcepath="" target="1.6" source="1.6" includeantruntime="true" srcdir="tests"
-       destdir="${build.test}" classpathref="classpath" classpath="${build}" >
-        <include name="**/*.java"/>
-        <exclude name="**/ClassExtensionHelperTest.java"/>
-    </javac>
-  </target>
-
-  <target name="test" depends="init,compile,compile-tests" description="run unit tests">
-    <junit printsummary="yes" haltonfailure="yes" haltonerror="yes">
-      <formatter type="plain" usefile="false"/>
-        <classpath refid="junit.classpath"/>
-      <batchtest>
-        <fileset dir="tests">
-          <include name="**/*Test*.java"/>
-          <exclude name="**/*EasyMockPropertiesTest.java"/>
-          <!-- only needed for version 3.2 and later -->
-          <exclude name="**/*BaseEasyMockRunnerTest.java"/>
-          <exclude name="**/*DependencyTest.java"/>
-          <exclude name="**/*ClassExtensionHelperTest.java"/>
-          <exclude name="**/*EasyMockSupportClassTest.java"/>
-        </fileset>
-      </batchtest>
-    </junit>
-  </target>
-
-  <target name="javadoc" depends="init" description="generate api docs">
-    <javadoc destdir="${javadoc}" source="1.6" classpathref="classpath">
-        <fileset dir="${src}"
-            defaultexcludes="yes"
-            excludes="**/*AndroidClassProxyFactory.java"
-        />
-    </javadoc>
-  </target>
-
-  <target name="jar" depends="compile"
-        description="generate the jarfile" >
-
-    <jar jarfile="${jarfile}" basedir="${build}"/>
-  </target>
-
-  <target name="clean"
-        description="clean up" >
-    <!-- Delete the ${build} and ${dist} directory trees -->
-    <delete dir="${build}"/>
-    <delete dir="${build.test}"/>
-    <delete dir="${javadoc}"/>
-    <delete dir="${dist}"/>
-  </target>
-</project>

Copied: tags/easymock/3.2+ds-3/debian/build.xml (from rev 18469, trunk/easymock/debian/build.xml)
===================================================================
--- tags/easymock/3.2+ds-3/debian/build.xml	                        (rev 0)
+++ tags/easymock/3.2+ds-3/debian/build.xml	2014-09-29 13:35:31 UTC (rev 18470)
@@ -0,0 +1,95 @@
+<project name="easymock" default="jar" basedir="../">
+    <description>
+        build file for easymock
+    </description>
+  <!-- set global properties for this build -->
+  <property name="src" location="src"/>
+  <property name="dist" location="dist"/>
+  <property name="build" location="build"/>
+  <property name="build.test" location="tests-build"/>
+  <property name="javadoc" location="api"/>
+  <property name="jarfile" location="${dist}/easymock.jar"/>
+  <property name="lib.dir" location="/usr/share/java"/>
+
+  <path id="classpath">
+<!--
+    <fileset dir="${lib.dir}" includes="**/*.jar"/>
+-->
+  </path>
+  <path id="junit.classpath">
+      <pathelement location="${build}"/>
+      <pathelement location="${build.test}"/>
+      <pathelement location="/usr/share/java/junit4.jar"/>
+      <!-- only needed for version 3.2 and later -->
+      <pathelement location="/usr/share/java/objenesis.jar"/>
+      <pathelement location="/usr/share/java/cglib3.jar"/>
+      <pathelement location="/usr/share/java/asm4.jar"/>
+  </path>
+
+  <target name="init">
+    <!-- Create the build directory structure used by compile -->
+    <mkdir dir="${build}"/>
+    <mkdir dir="${build.test}"/>
+    <mkdir dir="${javadoc}"/>
+    <mkdir dir="${dist}"/>
+  </target>
+
+  <target name="compile" depends="init" description="compile the source" >
+    <!-- Compile the java code from ${src} into ${build} -->
+    <javac sourcepath="" target="1.6" source="1.6" includeantruntime="true" srcdir="${src}"
+        classpathref="classpath" destdir="${build}" >
+        <include name="**/*.java"/>
+        <exclude name="**/AndroidClassProxyFactory.java"/>
+    </javac>
+  </target>
+
+  <target name="compile-tests" depends="init,compile" description="compile the unit tests" >
+    <javac sourcepath="" target="1.6" source="1.6" includeantruntime="true" srcdir="tests"
+       destdir="${build.test}" classpathref="classpath" classpath="${build}" >
+        <include name="**/*.java"/>
+        <exclude name="**/ClassExtensionHelperTest.java"/>
+    </javac>
+  </target>
+
+  <target name="test" depends="init,compile,compile-tests" description="run unit tests">
+    <junit printsummary="yes" haltonfailure="yes" haltonerror="yes">
+      <formatter type="plain" usefile="false"/>
+        <classpath refid="junit.classpath"/>
+      <batchtest>
+        <fileset dir="tests">
+          <include name="**/*Test*.java"/>
+          <exclude name="**/*EasyMockPropertiesTest.java"/>
+          <!-- only needed for version 3.2 and later -->
+          <exclude name="**/*BaseEasyMockRunnerTest.java"/>
+          <exclude name="**/*DependencyTest.java"/>
+          <exclude name="**/*ClassExtensionHelperTest.java"/>
+          <exclude name="**/*EasyMockSupportClassTest.java"/>
+        </fileset>
+      </batchtest>
+    </junit>
+  </target>
+
+  <target name="javadoc" depends="init" description="generate api docs">
+    <javadoc destdir="${javadoc}" source="1.6" classpathref="classpath">
+        <fileset dir="${src}"
+            defaultexcludes="yes"
+            excludes="**/*AndroidClassProxyFactory.java"
+        />
+    </javadoc>
+  </target>
+
+  <target name="jar" depends="compile"
+        description="generate the jarfile" >
+
+    <jar jarfile="${jarfile}" basedir="${build}"/>
+  </target>
+
+  <target name="clean"
+        description="clean up" >
+    <!-- Delete the ${build} and ${dist} directory trees -->
+    <delete dir="${build}"/>
+    <delete dir="${build.test}"/>
+    <delete dir="${javadoc}"/>
+    <delete dir="${dist}"/>
+  </target>
+</project>

Deleted: tags/easymock/3.2+ds-3/debian/changelog
===================================================================
--- trunk/easymock/debian/changelog	2014-09-29 12:38:06 UTC (rev 18466)
+++ tags/easymock/3.2+ds-3/debian/changelog	2014-09-29 13:35:31 UTC (rev 18470)
@@ -1,141 +0,0 @@
-easymock (3.2+ds-2) unstable; urgency=medium
-
-  * Team upload.
-  * Upload to unstable
-
- -- Emmanuel Bourg <ebourg at apache.org>  Thu, 13 Mar 2014 17:08:51 +0100
-
-easymock (3.2+ds-1) experimental; urgency=low
-
-  * New upstream release.
-  * Bump Standards-Version to 3.9.5, no changes.
-  * Drop java7-compat.patch. Fixed upstream.
-  * Update build.xml and pom.xml for new upstream release.
-  * debian/control:
-    - Add libcglib-java and libobjenesis-java to Build-Depends-Indep.
-    - Remove Suggests: junit4. Make it a full dependency instead.
-  * Add README.Debian. This version of EasyMock comes without support for the
-    Android platform.
-  * Update get-orig-source target.
-  * Update package description and remove hints to version 2 of EasyMock.
-  * Add no-android.patch because the dexmaker library has not been packaged for
-    Debian yet.
-  * Drop libeasymock-java-doc.doc-base because javahelper registers the
-    documentation with doc-base automatically.
-
- -- Markus Koschany <apo at gambaru.de>  Fri, 15 Nov 2013 10:22:23 +0100
-
-easymock (2.5.2+ds-1) unstable; urgency=low
-
-  * New upstream release. (Closes: #713751)
-  * Bump Standards-Version to 3.9.4, no changes.
-  * Bump compat level to 9 and require debhelper >= 9.
-  * debian/rules:
-    - Add a new get-orig-source and get-orig-pom target.
-    - Use dh sequencer instead of cdbs and simplify debian/rules.
-    - Build with javahelper and jh_maven_repo_helper.
-  * Remove the following files, no longer needed.
-    - get-orig-source script.
-    - ant.properties.
-    - uscan helper files.
-  * debian/control:
-    - Add myself to Uploaders.
-    - Remove obsolete DM-Upload-allowed flag.
-    - Use canonical Vcs-URI.
-    - Add javahelper and ant to Build-Depends, remove cdbs.
-    - Move junit4 and default-jdk to Build-Depends-Indep.
-    - libeasymock-java: Suggest junit4.
-  * Update debian/watch file to detect the latest upstream release.
-  * debian/patches:
-    - Refresh java7-compat.patch.
-    - Drop 10_create_link_to_samples_and_javadocs_in_Documentation.dpatch
-      because the rest of the documentation is easy to find in the same place
-      as Documentation.html.
-  * Update debian/copyright to copyright format 1.0. The new upstream license
-    for EasyMock is Apache-2.0.
-  * Update pom.xml for easymock 2.5.2.
-  * Update build.xml and extend classpath locations, so that compile and test
-    targets can be run successfully.
-
- -- Markus Koschany <apo at gambaru.de>  Tue, 06 Aug 2013 19:33:38 +0200
-
-easymock (2.4+ds1-7) unstable; urgency=low
-
-  * Team upload.
-  * Apply patch from James Page to fix FTBFS with OpenJDK-7
-    as default-java.  (Closes: #678170, LP: #888122)
-
- -- Niels Thykier <niels at thykier.net>  Wed, 20 Jun 2012 00:19:13 +0200
-
-easymock (2.4+ds1-6) unstable; urgency=low
-
-  * Team upload.
-  * Add a publish rule for the old groupId 'easymock'.
-
- -- Torsten Werner <twerner at debian.org>  Tue, 23 Aug 2011 22:29:09 +0200
-
-easymock (2.4+ds1-5) unstable; urgency=low
-
-  * Team upload.
-
-  [ Matthias Schmitz ]
-  * Install the pom.xml (Closes:#593160):
-    - Remove unneeded d/libeasymock-java.dirs.
-
-  [ Damien Raude-Morvan ]
-  * Drop Depends on JRE packages since it's a library (as per Debian Java
-    Policy).
-  * Update Standards-Version: 3.9.2:
-    - Rename d/README.Debian-source to debian/README.source
-
- -- Damien Raude-Morvan <drazzib at debian.org>  Mon, 25 Apr 2011 13:41:59 +0200
-
-easymock (2.4+ds1-4) unstable; urgency=low
-
-  * Team upload.
-  * Switch to default-jdk and default-jre-headless. Thanks to Thierry Carrez.
-  * Switch to source format 3.0.
-  * Update Standards-Version: 3.8.4.
-
- -- Torsten Werner <twerner at debian.org>  Mon, 03 May 2010 20:12:00 +0200
-
-easymock (2.4+ds1-3) unstable; urgency=low
-
-  * Updated dependency version of junit4 (Closes: #534017).
-  * Bump standards-version to 3.8.1 (no changes needed).
-
- -- Jan-Pascal van Best <janpascal at vanbest.org>  Tue, 23 Jun 2009 12:10:43 +0200
-
-easymock (2.4+ds1-2) unstable; urgency=low
-
-  * Updated debian/watch to work again with upstream version numbering
-  * Added DM-Upload-Allowed: yes to debian/control
-  * Moved build.xml to debian/ to silence Lintian about it
-
- -- Jan-Pascal van Best <janpascal at vanbest.org>  Mon, 08 Sep 2008 16:03:48 +0200
-
-easymock (2.4+ds1-1) unstable; urgency=low
-
-  * New upstream version
-  * Build with OpenJDK (gcj hangs 'sometimes' during builds)
-  * Reformatted debian/copyright to pacify lintian
-  * Update build.xml to build javadocs with source=5
-  * Update standards-version to 3.8.0
-  * Update doc-base section to Programming/Java
-
- -- Jan-Pascal van Best <janpascal at vanbest.org>  Mon, 11 Aug 2008 20:21:27 +0200
-
-easymock (2.3+ds1-2) unstable; urgency=low
-
-  * Updated Vcs-* and Homepage fields in control file
-  * Updated watch file to match upstream version correctly (M. Koch)
-  * Updated dependency to current gcj-java-compat-dev (Closes: #450422)
-  * Updated standards version to 3.7.3
-
- -- Jan-Pascal van Best <janpascal at vanbest.org>  Fri, 11 Jan 2008 16:14:31 +0100
-
-easymock (2.3+ds1-1) unstable; urgency=low
-
-  * Initial release. (Closes: #441839)
-
- -- Jan-Pascal van Best <janpascal at vanbest.org>  Thu, 13 Sep 2007 20:21:48 +0200

Copied: tags/easymock/3.2+ds-3/debian/changelog (from rev 18469, trunk/easymock/debian/changelog)
===================================================================
--- tags/easymock/3.2+ds-3/debian/changelog	                        (rev 0)
+++ tags/easymock/3.2+ds-3/debian/changelog	2014-09-29 13:35:31 UTC (rev 18470)
@@ -0,0 +1,149 @@
+easymock (3.2+ds-3) unstable; urgency=medium
+
+  * Team upload.
+  * Depend on libcglib3-java instead of libcglib-java
+  * Standards-Version updated to 3.9.6 (no changes)
+
+ -- Emmanuel Bourg <ebourg at apache.org>  Mon, 29 Sep 2014 15:13:39 +0200
+
+easymock (3.2+ds-2) unstable; urgency=medium
+
+  * Team upload.
+  * Upload to unstable
+
+ -- Emmanuel Bourg <ebourg at apache.org>  Thu, 13 Mar 2014 17:08:51 +0100
+
+easymock (3.2+ds-1) experimental; urgency=low
+
+  * New upstream release.
+  * Bump Standards-Version to 3.9.5, no changes.
+  * Drop java7-compat.patch. Fixed upstream.
+  * Update build.xml and pom.xml for new upstream release.
+  * debian/control:
+    - Add libcglib-java and libobjenesis-java to Build-Depends-Indep.
+    - Remove Suggests: junit4. Make it a full dependency instead.
+  * Add README.Debian. This version of EasyMock comes without support for the
+    Android platform.
+  * Update get-orig-source target.
+  * Update package description and remove hints to version 2 of EasyMock.
+  * Add no-android.patch because the dexmaker library has not been packaged for
+    Debian yet.
+  * Drop libeasymock-java-doc.doc-base because javahelper registers the
+    documentation with doc-base automatically.
+
+ -- Markus Koschany <apo at gambaru.de>  Fri, 15 Nov 2013 10:22:23 +0100
+
+easymock (2.5.2+ds-1) unstable; urgency=low
+
+  * New upstream release. (Closes: #713751)
+  * Bump Standards-Version to 3.9.4, no changes.
+  * Bump compat level to 9 and require debhelper >= 9.
+  * debian/rules:
+    - Add a new get-orig-source and get-orig-pom target.
+    - Use dh sequencer instead of cdbs and simplify debian/rules.
+    - Build with javahelper and jh_maven_repo_helper.
+  * Remove the following files, no longer needed.
+    - get-orig-source script.
+    - ant.properties.
+    - uscan helper files.
+  * debian/control:
+    - Add myself to Uploaders.
+    - Remove obsolete DM-Upload-allowed flag.
+    - Use canonical Vcs-URI.
+    - Add javahelper and ant to Build-Depends, remove cdbs.
+    - Move junit4 and default-jdk to Build-Depends-Indep.
+    - libeasymock-java: Suggest junit4.
+  * Update debian/watch file to detect the latest upstream release.
+  * debian/patches:
+    - Refresh java7-compat.patch.
+    - Drop 10_create_link_to_samples_and_javadocs_in_Documentation.dpatch
+      because the rest of the documentation is easy to find in the same place
+      as Documentation.html.
+  * Update debian/copyright to copyright format 1.0. The new upstream license
+    for EasyMock is Apache-2.0.
+  * Update pom.xml for easymock 2.5.2.
+  * Update build.xml and extend classpath locations, so that compile and test
+    targets can be run successfully.
+
+ -- Markus Koschany <apo at gambaru.de>  Tue, 06 Aug 2013 19:33:38 +0200
+
+easymock (2.4+ds1-7) unstable; urgency=low
+
+  * Team upload.
+  * Apply patch from James Page to fix FTBFS with OpenJDK-7
+    as default-java.  (Closes: #678170, LP: #888122)
+
+ -- Niels Thykier <niels at thykier.net>  Wed, 20 Jun 2012 00:19:13 +0200
+
+easymock (2.4+ds1-6) unstable; urgency=low
+
+  * Team upload.
+  * Add a publish rule for the old groupId 'easymock'.
+
+ -- Torsten Werner <twerner at debian.org>  Tue, 23 Aug 2011 22:29:09 +0200
+
+easymock (2.4+ds1-5) unstable; urgency=low
+
+  * Team upload.
+
+  [ Matthias Schmitz ]
+  * Install the pom.xml (Closes:#593160):
+    - Remove unneeded d/libeasymock-java.dirs.
+
+  [ Damien Raude-Morvan ]
+  * Drop Depends on JRE packages since it's a library (as per Debian Java
+    Policy).
+  * Update Standards-Version: 3.9.2:
+    - Rename d/README.Debian-source to debian/README.source
+
+ -- Damien Raude-Morvan <drazzib at debian.org>  Mon, 25 Apr 2011 13:41:59 +0200
+
+easymock (2.4+ds1-4) unstable; urgency=low
+
+  * Team upload.
+  * Switch to default-jdk and default-jre-headless. Thanks to Thierry Carrez.
+  * Switch to source format 3.0.
+  * Update Standards-Version: 3.8.4.
+
+ -- Torsten Werner <twerner at debian.org>  Mon, 03 May 2010 20:12:00 +0200
+
+easymock (2.4+ds1-3) unstable; urgency=low
+
+  * Updated dependency version of junit4 (Closes: #534017).
+  * Bump standards-version to 3.8.1 (no changes needed).
+
+ -- Jan-Pascal van Best <janpascal at vanbest.org>  Tue, 23 Jun 2009 12:10:43 +0200
+
+easymock (2.4+ds1-2) unstable; urgency=low
+
+  * Updated debian/watch to work again with upstream version numbering
+  * Added DM-Upload-Allowed: yes to debian/control
+  * Moved build.xml to debian/ to silence Lintian about it
+
+ -- Jan-Pascal van Best <janpascal at vanbest.org>  Mon, 08 Sep 2008 16:03:48 +0200
+
+easymock (2.4+ds1-1) unstable; urgency=low
+
+  * New upstream version
+  * Build with OpenJDK (gcj hangs 'sometimes' during builds)
+  * Reformatted debian/copyright to pacify lintian
+  * Update build.xml to build javadocs with source=5
+  * Update standards-version to 3.8.0
+  * Update doc-base section to Programming/Java
+
+ -- Jan-Pascal van Best <janpascal at vanbest.org>  Mon, 11 Aug 2008 20:21:27 +0200
+
+easymock (2.3+ds1-2) unstable; urgency=low
+
+  * Updated Vcs-* and Homepage fields in control file
+  * Updated watch file to match upstream version correctly (M. Koch)
+  * Updated dependency to current gcj-java-compat-dev (Closes: #450422)
+  * Updated standards version to 3.7.3
+
+ -- Jan-Pascal van Best <janpascal at vanbest.org>  Fri, 11 Jan 2008 16:14:31 +0100
+
+easymock (2.3+ds1-1) unstable; urgency=low
+
+  * Initial release. (Closes: #441839)
+
+ -- Jan-Pascal van Best <janpascal at vanbest.org>  Thu, 13 Sep 2007 20:21:48 +0200

Deleted: tags/easymock/3.2+ds-3/debian/control
===================================================================
--- trunk/easymock/debian/control	2014-09-29 12:38:06 UTC (rev 18466)
+++ tags/easymock/3.2+ds-3/debian/control	2014-09-29 13:35:31 UTC (rev 18470)
@@ -1,50 +0,0 @@
-Source: easymock
-Section: java
-Priority: optional
-Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
-Uploaders:
- Jan-Pascal van Best <janpascal at vanbest.org>,
- Markus Koschany <apo at gambaru.de>
-Build-Depends:
- ant,
- ant-optional,
- debhelper (>= 9),
- javahelper,
- maven-repo-helper
-Build-Depends-Indep:
- default-jdk,
- junit4,
- libcglib-java,
- libobjenesis-java
-Standards-Version: 3.9.5
-Homepage: http://www.easymock.org
-Vcs-Svn: svn://anonscm.debian.org/pkg-java/trunk/easymock/
-Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-java/trunk/easymock/
-
-Package: libeasymock-java
-Architecture: all
-Depends:
- ${java:Depends},
- ${misc:Depends}
-Suggests:
- libeasymock-java-doc
-Description: Java library to generate Mock Objects for given interfaces
- EasyMock is a library that provides an easy way to use Mock Objects for
- given interfaces. Mock Objects simulate parts of the behavior of domain code,
- and are able to check whether they are used as defined. Domain classes can be
- tested in isolation by simulating their collaborators with Mock Objects.
-
-Package: libeasymock-java-doc
-Architecture: all
-Depends:
- ${misc:Depends}
-Section: doc
-Enhances:
- libeasymock-java
-Description: Java library to generate Mock Objects for given interfaces (documentation)
- EasyMock is a library that provides an easy way to use Mock Objects for
- given interfaces. Mock Objects simulate parts of the behavior of domain code,
- and are able to check whether they are used as defined. Domain classes can be
- tested in isolation by simulating their collaborators with Mock Objects.
- .
- This package contains the documentation for the Mock Objects library.

Copied: tags/easymock/3.2+ds-3/debian/control (from rev 18468, trunk/easymock/debian/control)
===================================================================
--- tags/easymock/3.2+ds-3/debian/control	                        (rev 0)
+++ tags/easymock/3.2+ds-3/debian/control	2014-09-29 13:35:31 UTC (rev 18470)
@@ -0,0 +1,50 @@
+Source: easymock
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders:
+ Jan-Pascal van Best <janpascal at vanbest.org>,
+ Markus Koschany <apo at gambaru.de>
+Build-Depends:
+ ant,
+ ant-optional,
+ debhelper (>= 9),
+ javahelper,
+ maven-repo-helper
+Build-Depends-Indep:
+ default-jdk,
+ junit4,
+ libcglib3-java,
+ libobjenesis-java
+Standards-Version: 3.9.6
+Vcs-Svn: svn://anonscm.debian.org/pkg-java/trunk/easymock/
+Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-java/trunk/easymock/
+Homepage: http://www.easymock.org
+
+Package: libeasymock-java
+Architecture: all
+Depends:
+ ${java:Depends},
+ ${misc:Depends}
+Suggests:
+ libeasymock-java-doc
+Description: Java library to generate Mock Objects for given interfaces
+ EasyMock is a library that provides an easy way to use Mock Objects for
+ given interfaces. Mock Objects simulate parts of the behavior of domain code,
+ and are able to check whether they are used as defined. Domain classes can be
+ tested in isolation by simulating their collaborators with Mock Objects.
+
+Package: libeasymock-java-doc
+Architecture: all
+Depends:
+ ${misc:Depends}
+Section: doc
+Enhances:
+ libeasymock-java
+Description: Java library to generate Mock Objects for given interfaces (documentation)
+ EasyMock is a library that provides an easy way to use Mock Objects for
+ given interfaces. Mock Objects simulate parts of the behavior of domain code,
+ and are able to check whether they are used as defined. Domain classes can be
+ tested in isolation by simulating their collaborators with Mock Objects.
+ .
+ This package contains the documentation for the Mock Objects library.

Deleted: tags/easymock/3.2+ds-3/debian/pom.xml
===================================================================
--- trunk/easymock/debian/pom.xml	2014-09-29 12:38:06 UTC (rev 18466)
+++ tags/easymock/3.2+ds-3/debian/pom.xml	2014-09-29 13:35:31 UTC (rev 18470)
@@ -1,150 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
-
-  <modelVersion>4.0.0</modelVersion>
-
-  <parent>
-    <groupId>org.easymock</groupId>
-    <artifactId>easymock-parent</artifactId>
-    <version>3.2</version>
-  </parent>
-  
-  <artifactId>easymock</artifactId>
-  <packaging>jar</packaging>
-  <name>EasyMock</name>
-  <description>EasyMock provides an easy way to create Mock Objects for interfaces and classes generating them on the fly</description>
-  <inceptionYear>2001</inceptionYear>
-  <organization>
-    <name>OFFIS, Tammo Freese, Henri Tremblay</name>
-  </organization>
-  <developers>
-    <developer>
-      <id>tammo</id>
-      <name>Tammo Freese</name>
-      <timezone>+1</timezone>
-    </developer>
-    <developer>
-      <id>henri</id>
-      <name>Henri Tremblay</name>
-      <url>http://henritremblay.blogspot.fr/</url>
-      <timezone>+1</timezone>
-    </developer>
-  </developers>
-  <dependencies>
-    <!-- Used for class mocking -->
-    <dependency>
-      <groupId>cglib</groupId>
-      <artifactId>cglib-nodep</artifactId>
-      <version>2.2.2</version>
-    </dependency>
-    <!-- Used for class mocking -->
-    <dependency>
-      <groupId>org.objenesis</groupId>
-      <artifactId>objenesis</artifactId>
-      <version>1.3</version>
-    </dependency>
-    <!-- Used for class mocking on Android (cglib replacement) -->
-    <dependency>
-        <groupId>com.google.dexmaker</groupId>
-        <artifactId>dexmaker</artifactId>
-        <version>1.0</version>
-        <optional>true</optional>
-    </dependency>     
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <optional>true</optional>
-    </dependency>    
-  </dependencies>
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>build-helper-maven-plugin</artifactId>
-        <executions>
-          <execution>
-            <phase>generate-test-sources</phase>
-            <goals>
-              <goal>add-test-source</goal>
-            </goals>
-            <configuration>
-              <sources>
-                <source>${basedir}/src/samples/java</source>
-              </sources>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.felix</groupId>
-        <artifactId>maven-bundle-plugin</artifactId>
-        <configuration>
-          <instructions>
-            <Export-Package>org.easymock.internal.*;poweruser=true;mandatory:=poweruser,org.easymock</Export-Package>
-            <Import-Package>net.sf.cglib.core;resolution:=optional,net.sf.cglib.proxy;resolution:=optional,net.sf.cglib.reflect;resolution:=optional,org.easymock,org.easymock.internal;poweruser=true,org.objenesis;resolution:=optional</Import-Package>
-          </instructions>
-        </configuration>
-        <executions>
-          <execution>
-            <id>bundle-manifest</id>
-            <phase>prepare-package</phase>
-            <goals>
-              <goal>manifest</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
-  <profiles>
-    <profile>
-      <id>fullBuild</id>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>com.atlassian.maven.plugins</groupId>
-            <artifactId>maven-clover2-plugin</artifactId>
-            <configuration>
-              <excludes>
-                <exclude>**/org/easymock/tests/IMethods.java</exclude>
-                <exclude>**/org/easymock/tests/IVarArgs.java</exclude>
-                <exclude>**/org/easymock/tests/Util.java</exclude>
-                <exclude>**/org/easymock/samples/*.java</exclude>
-              </excludes>
-            </configuration>
-            <executions>
-              <execution>
-                <phase>verify</phase>
-                <goals>
-                  <goal>instrument</goal>
-                  <goal>clover</goal>
-                  <goal>check</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-          <plugin>
-            <groupId>com.mycila.maven-license-plugin</groupId>
-            <artifactId>maven-license-plugin</artifactId>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-    <profile>
-      <id>deployBuild</id>
-      <build>
-        <plugins>
-          <plugin>
-            <artifactId>maven-assembly-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>easymock-bundle</id>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-  </profiles>
-</project>

Copied: tags/easymock/3.2+ds-3/debian/pom.xml (from rev 18468, trunk/easymock/debian/pom.xml)
===================================================================
--- tags/easymock/3.2+ds-3/debian/pom.xml	                        (rev 0)
+++ tags/easymock/3.2+ds-3/debian/pom.xml	2014-09-29 13:35:31 UTC (rev 18470)
@@ -0,0 +1,150 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.easymock</groupId>
+    <artifactId>easymock-parent</artifactId>
+    <version>3.2</version>
+  </parent>
+  
+  <artifactId>easymock</artifactId>
+  <packaging>jar</packaging>
+  <name>EasyMock</name>
+  <description>EasyMock provides an easy way to create Mock Objects for interfaces and classes generating them on the fly</description>
+  <inceptionYear>2001</inceptionYear>
+  <organization>
+    <name>OFFIS, Tammo Freese, Henri Tremblay</name>
+  </organization>
+  <developers>
+    <developer>
+      <id>tammo</id>
+      <name>Tammo Freese</name>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <id>henri</id>
+      <name>Henri Tremblay</name>
+      <url>http://henritremblay.blogspot.fr/</url>
+      <timezone>+1</timezone>
+    </developer>
+  </developers>
+  <dependencies>
+    <!-- Used for class mocking -->
+    <dependency>
+      <groupId>cglib</groupId>
+      <artifactId>cglib-nodep</artifactId>
+      <version>3.1</version>
+    </dependency>
+    <!-- Used for class mocking -->
+    <dependency>
+      <groupId>org.objenesis</groupId>
+      <artifactId>objenesis</artifactId>
+      <version>1.3</version>
+    </dependency>
+    <!-- Used for class mocking on Android (cglib replacement) -->
+    <dependency>
+        <groupId>com.google.dexmaker</groupId>
+        <artifactId>dexmaker</artifactId>
+        <version>1.0</version>
+        <optional>true</optional>
+    </dependency>     
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <optional>true</optional>
+    </dependency>    
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>build-helper-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>generate-test-sources</phase>
+            <goals>
+              <goal>add-test-source</goal>
+            </goals>
+            <configuration>
+              <sources>
+                <source>${basedir}/src/samples/java</source>
+              </sources>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <configuration>
+          <instructions>
+            <Export-Package>org.easymock.internal.*;poweruser=true;mandatory:=poweruser,org.easymock</Export-Package>
+            <Import-Package>net.sf.cglib.core;resolution:=optional,net.sf.cglib.proxy;resolution:=optional,net.sf.cglib.reflect;resolution:=optional,org.easymock,org.easymock.internal;poweruser=true,org.objenesis;resolution:=optional</Import-Package>
+          </instructions>
+        </configuration>
+        <executions>
+          <execution>
+            <id>bundle-manifest</id>
+            <phase>prepare-package</phase>
+            <goals>
+              <goal>manifest</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+  <profiles>
+    <profile>
+      <id>fullBuild</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>com.atlassian.maven.plugins</groupId>
+            <artifactId>maven-clover2-plugin</artifactId>
+            <configuration>
+              <excludes>
+                <exclude>**/org/easymock/tests/IMethods.java</exclude>
+                <exclude>**/org/easymock/tests/IVarArgs.java</exclude>
+                <exclude>**/org/easymock/tests/Util.java</exclude>
+                <exclude>**/org/easymock/samples/*.java</exclude>
+              </excludes>
+            </configuration>
+            <executions>
+              <execution>
+                <phase>verify</phase>
+                <goals>
+                  <goal>instrument</goal>
+                  <goal>clover</goal>
+                  <goal>check</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <groupId>com.mycila.maven-license-plugin</groupId>
+            <artifactId>maven-license-plugin</artifactId>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+    <profile>
+      <id>deployBuild</id>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>easymock-bundle</id>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+</project>

Deleted: tags/easymock/3.2+ds-3/debian/rules
===================================================================
--- trunk/easymock/debian/rules	2014-09-29 12:38:06 UTC (rev 18466)
+++ tags/easymock/3.2+ds-3/debian/rules	2014-09-29 13:35:31 UTC (rev 18470)
@@ -1,58 +0,0 @@
-#!/usr/bin/make -f
-export JAVA_HOME=/usr/lib/jvm/default-java
-export CLASSPATH=/usr/share/java/objenesis.jar:/usr/share/java/cglib.jar:/usr/share/java/junit4.jar
-PKD  = $(abspath $(dir $(MAKEFILE_LIST)))
-PKG  = $(word 2,$(shell dpkg-parsechangelog -l$(PKD)/changelog | grep ^Source))
-VER ?= $(shell dpkg-parsechangelog -l$(PKD)/changelog | perl -ne 'print $$1 if m{^Version:\s*([\d\.]+)}')
-DTYPE = +ds
-
-%:
-	dh $@ --with javahelper,jh_maven_repo_helper
-
-override_dh_auto_build:
-	ant -f $(CURDIR)/debian/build.xml jar javadoc test
-
-override_dh_auto_clean:
-	dh_auto_clean
-	ant -f $(CURDIR)/debian/build.xml clean
-
-.PHONY: get-orig-source
-## http://wiki.debian.org/onlyjob/get-orig-source
-get-orig-source: $(PKG)_$(VER)$(DTYPE).orig.tar.xz $(info I: $(PKG)_$(VER)$(DTYPE))
-	@
-
-$(PKG)-$(VER):
-	@echo "# Downloading..."
-	uscan --noconf --verbose --rename --repack --destdir=$(CURDIR) --check-dirname-level=0 --force-download --download-version $(VER) $(PKD)
-	@echo "# Extracting..."
-	mkdir -p \
-		$(PKG)-$(VER)-PRE \
-		$(PKG)-$(VER)/src \
-		$(PKG)-$(VER)/samples \
-		$(PKG)-$(VER)/tests \
-	&& tar -xf $(PKG)_$(VER).orig.tar.* --directory $(PKG)-$(VER)-PRE --strip-components 1 \
-	|| $(RM) -r $(PKG)-$(VER)-PRE
-	unzip $(PKG)-$(VER)-PRE/easymock-$(VER)-sources.jar -d $(PKG)-$(VER)/src
-	unzip $(PKG)-$(VER)-PRE/easymock-$(VER)-samples.jar -d $(PKG)-$(VER)/samples
-	unzip $(PKG)-$(VER)-PRE/easymock-$(VER)-tests.jar -d $(PKG)-$(VER)/tests
-	@echo "# Cleaning-up..."
-	$(RM) -r -v \
-		$(PKG)-$(VER)-PRE/*.jar
-	cp -v $(PKG)-$(VER)-PRE/* $(PKG)-$(VER)
-	cd $(PKG)-$(VER) \
-	&& $(RM) -r -v \
-		samples/META-INF/ \
-		tests/META-INF/ \
-		src/META-INF/ \
-	&& find . -depth -type f -name "*.class" -exec $(RM) '{}' \;
-
-$(PKG)_$(VER)$(DTYPE).orig.tar.xz: $(PKG)-$(VER)
-	@echo "# Packing..."
-	find -L "$(PKG)-$(VER)" -xdev -type f -print | sort \
-	| XZ_OPT="-6v" tar -caf "$(PKG)_$(VER)$(DTYPE).orig.tar.xz" -T- --owner=root --group=root --mode=a+rX \
-	&& $(RM) -r "$(PKG)-$(VER)" "$(PKG)-$(VER)-PRE"
-
-
-get-orig-pom:
-	wget -O debian/pom.xml \
-	http://repo1.maven.org/maven2/org/easymock/easymock/$(VER)/easymock-$(VER).pom

Copied: tags/easymock/3.2+ds-3/debian/rules (from rev 18468, trunk/easymock/debian/rules)
===================================================================
--- tags/easymock/3.2+ds-3/debian/rules	                        (rev 0)
+++ tags/easymock/3.2+ds-3/debian/rules	2014-09-29 13:35:31 UTC (rev 18470)
@@ -0,0 +1,58 @@
+#!/usr/bin/make -f
+export JAVA_HOME=/usr/lib/jvm/default-java
+export CLASSPATH=/usr/share/java/objenesis.jar:/usr/share/java/cglib3.jar:/usr/share/java/junit4.jar
+PKD  = $(abspath $(dir $(MAKEFILE_LIST)))
+PKG  = $(word 2,$(shell dpkg-parsechangelog -l$(PKD)/changelog | grep ^Source))
+VER ?= $(shell dpkg-parsechangelog -l$(PKD)/changelog | perl -ne 'print $$1 if m{^Version:\s*([\d\.]+)}')
+DTYPE = +ds
+
+%:
+	dh $@ --with javahelper,jh_maven_repo_helper
+
+override_dh_auto_build:
+	ant -f $(CURDIR)/debian/build.xml jar javadoc test
+
+override_dh_auto_clean:
+	dh_auto_clean
+	ant -f $(CURDIR)/debian/build.xml clean
+
+.PHONY: get-orig-source
+## http://wiki.debian.org/onlyjob/get-orig-source
+get-orig-source: $(PKG)_$(VER)$(DTYPE).orig.tar.xz $(info I: $(PKG)_$(VER)$(DTYPE))
+	@
+
+$(PKG)-$(VER):
+	@echo "# Downloading..."
+	uscan --noconf --verbose --rename --repack --destdir=$(CURDIR) --check-dirname-level=0 --force-download --download-version $(VER) $(PKD)
+	@echo "# Extracting..."
+	mkdir -p \
+		$(PKG)-$(VER)-PRE \
+		$(PKG)-$(VER)/src \
+		$(PKG)-$(VER)/samples \
+		$(PKG)-$(VER)/tests \
+	&& tar -xf $(PKG)_$(VER).orig.tar.* --directory $(PKG)-$(VER)-PRE --strip-components 1 \
+	|| $(RM) -r $(PKG)-$(VER)-PRE
+	unzip $(PKG)-$(VER)-PRE/easymock-$(VER)-sources.jar -d $(PKG)-$(VER)/src
+	unzip $(PKG)-$(VER)-PRE/easymock-$(VER)-samples.jar -d $(PKG)-$(VER)/samples
+	unzip $(PKG)-$(VER)-PRE/easymock-$(VER)-tests.jar -d $(PKG)-$(VER)/tests
+	@echo "# Cleaning-up..."
+	$(RM) -r -v \
+		$(PKG)-$(VER)-PRE/*.jar
+	cp -v $(PKG)-$(VER)-PRE/* $(PKG)-$(VER)
+	cd $(PKG)-$(VER) \
+	&& $(RM) -r -v \
+		samples/META-INF/ \
+		tests/META-INF/ \
+		src/META-INF/ \
+	&& find . -depth -type f -name "*.class" -exec $(RM) '{}' \;
+
+$(PKG)_$(VER)$(DTYPE).orig.tar.xz: $(PKG)-$(VER)
+	@echo "# Packing..."
+	find -L "$(PKG)-$(VER)" -xdev -type f -print | sort \
+	| XZ_OPT="-6v" tar -caf "$(PKG)_$(VER)$(DTYPE).orig.tar.xz" -T- --owner=root --group=root --mode=a+rX \
+	&& $(RM) -r "$(PKG)-$(VER)" "$(PKG)-$(VER)-PRE"
+
+
+get-orig-pom:
+	wget -O debian/pom.xml \
+	http://repo1.maven.org/maven2/org/easymock/easymock/$(VER)/easymock-$(VER).pom




More information about the pkg-java-commits mailing list