[pkg-java] r5179 - in trunk/java-snmp/debian: . patches

werner at alioth.debian.org werner at alioth.debian.org
Thu Dec 27 21:46:43 UTC 2007


Author: werner
Date: 2007-12-27 21:46:43 +0000 (Thu, 27 Dec 2007)
New Revision: 5179

Removed:
   trunk/java-snmp/debian/patches/010_build_clean_target.diff
Modified:
   trunk/java-snmp/debian/changelog
   trunk/java-snmp/debian/control
   trunk/java-snmp/debian/patches/020_shadowing_SNMPVarBindList.diff
   trunk/java-snmp/debian/patches/030_shadowing_SNMPBitString.diff
Log:
new upstream release

Modified: trunk/java-snmp/debian/changelog
===================================================================
--- trunk/java-snmp/debian/changelog	2007-12-27 21:19:38 UTC (rev 5178)
+++ trunk/java-snmp/debian/changelog	2007-12-27 21:46:43 UTC (rev 5179)
@@ -1,3 +1,16 @@
+java-snmp (1.4.2-1) unstable; urgency=low
+
+  * New upstream release.
+     - used dos2unix -b -d on source/snmp/SNMPVarBindList.java and
+       source/snmp/SNMPBitString.java before creating the .orig.tar.gz
+       to be able to continue applying the debian/patches/*
+     - remove patches/010_build_clean_target.diff (included upstream)
+  * Bumped standards-version to 3.7.3 (no changes).
+  * Added Homepage-field to debian/control.
+  * Changed my lastname.
+
+ -- Morten Werner Forsbring <werner at debian.org>  Tue, 27 Dec 2007 11:22:14 +0200
+
 java-snmp (1.4-5) unstable; urgency=low
 
   * Added new clean-target patch from upstream (although it doesn't

Modified: trunk/java-snmp/debian/control
===================================================================
--- trunk/java-snmp/debian/control	2007-12-27 21:19:38 UTC (rev 5178)
+++ trunk/java-snmp/debian/control	2007-12-27 21:46:43 UTC (rev 5179)
@@ -2,9 +2,10 @@
 Section: libs
 Priority: optional
 Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
-Uploaders: Morten Werner Olsen <werner at debian.org>, Wolfgang Baer <WBaer at gmx.de>
+Uploaders: Morten Werner Forsbring <werner at debian.org>, Wolfgang Baer <WBaer at gmx.de>
 Build-Depends-Indep: debhelper (>= 4.1.16), cdbs, kaffe, ant
-Standards-Version: 3.6.2
+Standards-Version: 3.7.3
+Homepage: http://gicl.cs.drexel.edu/people/sevy/snmp/
 
 Package: libsnmp1.4-java
 Architecture: all
@@ -16,4 +17,3 @@
  deployed). The package provides a mechanism for "getting and setting" SNMP
  object identifier (OID) values through a simple communication interface, and
  represents SNMP structures and datatypes as corresponding Java objects.
-

Deleted: trunk/java-snmp/debian/patches/010_build_clean_target.diff
===================================================================
--- trunk/java-snmp/debian/patches/010_build_clean_target.diff	2007-12-27 21:19:38 UTC (rev 5178)
+++ trunk/java-snmp/debian/patches/010_build_clean_target.diff	2007-12-27 21:46:43 UTC (rev 5179)
@@ -1,57 +0,0 @@
---- build.xml	2004-12-31 02:16:58.000000000 +0100
-+++ /home/werner/build.xml	2006-03-23 00:19:22.000000000 +0100
-@@ -4,6 +4,19 @@
-         Ant build file for the Java SNMP Package
-     </description>
-   
-+  <target name="SNMPPackage" description="Build the SNMP package">
-+    <!-- Set the build directory -->
-+    <property name="buildDir" value="build_package"/>
-+    <!-- Create the build directory -->
-+    <mkdir dir="${buildDir}"/>
-+    <!-- Compile the java code from source into build -->
-+    <javac srcdir="source" destdir="${buildDir}" includes="snmp/*.java"/>
-+    <!-- Put everything in build into the ${mainClass}.jar file -->
-+    <jar jarfile="snmp.jar" basedir="${buildDir}"/>
-+    <!-- Delete the build directory tree -->
-+    <delete dir="${buildDir}"/>
-+  </target>
-+
-   <target name="SNMPInquisitor" description="Build the SNMP Inquisitor application">
-     <!-- Set the main class to be SNMPInquisitor -->
-     <property name="mainClass" value="SNMPInquisitor"/>
-@@ -48,19 +61,6 @@
-     <delete dir="${buildDir}"/>
-   </target>
- 
--  <target name="SNMPPackage" description="Build the SNMP package">
--    <!-- Set the build directory -->
--    <property name="buildDir" value="build_package"/>
--    <!-- Create the build directory -->
--    <mkdir dir="${buildDir}"/>
--    <!-- Compile the java code from source into build -->
--    <javac srcdir="source" destdir="${buildDir}" includes="snmp/*.java"/>
--    <!-- Put everything in build into the ${mainClass}.jar file -->
--    <jar jarfile="snmp.jar" basedir="${buildDir}"/>
--    <!-- Delete the build directory tree -->
--    <delete dir="${buildDir}"/>
--  </target>
--
-   <target name="SNMPDistribution" description="Build the SNMP source distribution">
-     <!-- Zip up the source, manifests, and build files -->
-     <zip destfile="snmp_source.zip">
-@@ -70,6 +70,14 @@
-     </zip>
-   </target>
- 
-+  <target name="clean" description="Clean up any previously built binaries">
-+    <!-- Clean up any jar files -->
-+    <delete quiet="true" file="snmp.jar"/>
-+    <delete quiet="true" file="SNMPInquisitor.jar"/>
-+    <delete quiet="true" file="SNMPAgentTest.jar"/>
-+    <delete quiet="true" file="SNMPTrapTest.jar"/>
-+  </target>
-+
- 
- </project>
-    

Modified: trunk/java-snmp/debian/patches/020_shadowing_SNMPVarBindList.diff
===================================================================
--- trunk/java-snmp/debian/patches/020_shadowing_SNMPVarBindList.diff	2007-12-27 21:19:38 UTC (rev 5178)
+++ trunk/java-snmp/debian/patches/020_shadowing_SNMPVarBindList.diff	2007-12-27 21:46:43 UTC (rev 5179)
@@ -1,6 +1,6 @@
-diff -ruN source.orig/snmp/SNMPVarBindList.java source/snmp/SNMPVarBindList.java
---- source.orig/snmp/SNMPVarBindList.java	2005-03-21 18:28:37.000000000 +0100
-+++ source/snmp/SNMPVarBindList.java	2005-03-21 19:51:32.346715760 +0100
+diff -ruN java-snmp-1.4.2.orig/source/snmp/SNMPVarBindList.java java-snmp-1.4.2/source/snmp/SNMPVarBindList.java
+--- java-snmp-1.4.2.orig/source/snmp/SNMPVarBindList.java	2007-12-25 17:52:37.000000000 +0100
++++ java-snmp-1.4.2/source/snmp/SNMPVarBindList.java	2007-12-25 17:54:58.000000000 +0100
 @@ -82,13 +82,13 @@
      
      public String toString()

Modified: trunk/java-snmp/debian/patches/030_shadowing_SNMPBitString.diff
===================================================================
--- trunk/java-snmp/debian/patches/030_shadowing_SNMPBitString.diff	2007-12-27 21:19:38 UTC (rev 5178)
+++ trunk/java-snmp/debian/patches/030_shadowing_SNMPBitString.diff	2007-12-27 21:46:43 UTC (rev 5179)
@@ -1,6 +1,6 @@
-diff -ruN source.orig/snmp/SNMPBitString.java source/snmp/SNMPBitString.java
---- source.orig/snmp/SNMPBitString.java	2005-03-21 18:28:37.000000000 +0100
-+++ source/snmp/SNMPBitString.java	2005-03-21 20:03:40.521016440 +0100
+diff -ruN java-snmp-1.4.2.orig/source/snmp/SNMPBitString.java java-snmp-1.4.2/source/snmp/SNMPBitString.java
+--- java-snmp-1.4.2.orig/source/snmp/SNMPBitString.java	2005-03-21 18:28:37.000000000 +0100
++++ java-snmp-1.4.2/source/snmp/SNMPBitString.java	2005-03-21 20:03:40.521016440 +0100
 @@ -39,15 +39,13 @@
  public class SNMPBitString extends SNMPOctetString
  {




More information about the pkg-java-commits mailing list