The debdiff file fixes the problem that is described in this bug as well
as some errors and warning from lintians in order to be compatible with
the debian policy 3.7.3

Thanks
diff -u search-ccsb-0.5/debian/control search-ccsb-0.5/debian/control
--- search-ccsb-0.5/debian/control
+++ search-ccsb-0.5/debian/control
@@ -1,9 +1,10 @@
 Source: search-ccsb
 Section: tex
 Priority: optional
-Maintainer: Otavio Salvador <[EMAIL PROTECTED]>
-Build-Depends-Indep: debhelper (>= 4), cdbs
-Standards-Version: 3.6.1
+Maintainer: Ubuntu MOTU Developers <[EMAIL PROTECTED]>
+XSBC-Original-Maintainer: Otavio Salvador <[EMAIL PROTECTED]>
+Build-Depends: debhelper (>= 4)
+Standards-Version: 3.7.3
 
 Package: search-ccsb
 Architecture: all
diff -u search-ccsb-0.5/debian/copyright search-ccsb-0.5/debian/copyright
--- search-ccsb-0.5/debian/copyright
+++ search-ccsb-0.5/debian/copyright
@@ -5,7 +5,7 @@
 
 Upstream Author: Rodrigo Araujo Real <[EMAIL PROTECTED]>
 
-Copyright:
+Copyright 2002 Rodrigo Araujo Real <[EMAIL PROTECTED]>
 
    This package is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -17,9 +17,9 @@
    GNU General Public License for more details.
 
    You should have received a copy of the GNU General Public License
-   along with this package; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA.
+   along with this package; if not, write to the 
+       Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+       MA 02110-1301, USA.
 
 On Debian GNU/Linux systems, the complete text of the GNU General
 Public License can be found in `/usr/share/common-licenses/GPL'.
diff -u search-ccsb-0.5/debian/changelog search-ccsb-0.5/debian/changelog
--- search-ccsb-0.5/debian/changelog
+++ search-ccsb-0.5/debian/changelog
@@ -1,3 +1,15 @@
+search-ccsb (0.5-2ubuntu1) intrepid; urgency=low
+
+  * Changed url (LP: #102876)
+  * Changed Standards Version to 3.7.3
+  * Corrected debian/copyright file
+  * added patch system to debian/rules file
+  * added debian/compat file
+  * Changed debhelper from Build-Depends-Indep to Build-Depends
+  * Changed Maintainer Field
+
+ -- Ralph Janke <[EMAIL PROTECTED]>  Sat, 07 Jun 2008 20:07:31 +0100
+
 search-ccsb (0.5-2) unstable; urgency=low
 
   * Merged packages since the search-ccsb is so small.
@@ -25,7 +37,7 @@
 
  -- Otavio Salvador <[EMAIL PROTECTED]>  Mon,  8 Dec 2003 22:40:05 -0200
 
-search-ccsb (0.5-1) unstable; urgency=low
+search -ccsb (0.5-1) unstable; urgency=low
 
   * New upstream release
   * Update the packaging, now conforming to policy version 3.6.0.
@@ -41,7 +53,7 @@
     - Updated the Build-Depends-Indep to depends of debhelper >= 4
 
  -- Otavio Salvador <[EMAIL PROTECTED]>  Thu, 19 Dec 2002 14:02:04 -0200
-
+ 
 search-ccsb (0.4-3) unstable; urgency=low
 
   * Updated the package to policy version 3.5.7
diff -u search-ccsb-0.5/debian/patches/00_fix_url.patch 
search-ccsb-0.5/debian/patches/00_fix_url.patch
--- search-ccsb-0.5/debian/patches/00_fix_url.patch
+++ search-ccsb-0.5/debian/patches/00_fix_url.patch
@@ -1,27 +1,11 @@
-# Apply patches to the package
-patch: patch-stamp
-patch-stamp:
-        dh_testdir
-        @patches=debian/patches/*.patch; for patch in $$patches; do \
-                test -f $$patch || continue; \
-                echo "Applying $$patch"; \
-                patch -stuN -p1 < $$patch || exit 1; \
-        done
-        touch $@
-
-# Remove patches from the package
-unpatch:
-        dh_testdir
-        @if test -f patch-stamp; then \
-                patches=debian/patches/*.patch; \
-                for patch in $$patches; do \
-                        reversepatches="$$patch $$reversepatches"; \
-                done; \
-                for patch in $$reversepatches; do \
-                        test -f $$patch || continue; \
-                        echo "Reversing $$patch"; \
-                        patch -suRf -p1 < $$patch || exit 1; \
-                done; \
-                rm -f patch-stamp; \
-        fi
-
+--- ./search-ccsb      2008-06-07 20:57:52.000000000 +0100
++++ ./search-ccsb.new  2008-06-07 20:57:39.000000000 +0100
+@@ -24,7 +24,7 @@ use LWP::UserAgent;
+ $Ua = LWP::UserAgent->new;
+ $Ua->agent("Mozilla (compatible: LWP $LWP::VERSION)");
+ 
+-$res = $Ua->request(POST 'http://liinwww.ira.uka.de/searchbib/index', [query 
=> $ARGV[0], results => "bibtex"]);
++$res = $Ua->request(POST 'http://liinwww.ira.uka.de/csbib', [query => 
$ARGV[0], results => "bibtex"]);
+ die "Error while getting ", $res->request->uri,
+           " -- ", $res->status_line, "\nAborting"
+          unless $res->is_success;
diff -u search-ccsb-0.5/debian/rules search-ccsb-0.5/debian/rules
--- search-ccsb-0.5/debian/rules
+++ search-ccsb-0.5/debian/rules
@@ -10,7 +10,7 @@
 #export DH_VERBOSE=1
 
 # This is the debhelper compatibility version to use.
-export DH_COMPAT=4
+#export DH_COMPAT=4
 
 # ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
 #      CFLAGS += -g
@@ -20,7 +20,7 @@
 # endif
 
 # Apply patches to the package
-patch: patch-stamp
+patch: patch-stamp 
 patch-stamp:
        dh_testdir
        @patches=debian/patches/*.patch; for patch in $$patches; do \
@@ -50,7 +50,6 @@
 configure-stamp:
        dh_testdir
        # Add here commands to configure the package.
-
        touch configure-stamp
 
 
@@ -74,9 +73,9 @@
 
        touch build-indep-stamp
 
-build: build-arch build-indep
+build: patch build-arch build-indep
 
-clean:
+clean: unpatch 
        dh_testdir
        dh_testroot
        rm -f build-arch-stamp build-indep-stamp configure-stamp
@@ -131,2 +130,4 @@
+binary-arch:
+
 binary: binary-indep
-.PHONY: build clean binary-indep binary install configure
+.PHONY: build clean binary-indep binary install configure patch unpatch
reverted:
--- search-ccsb-0.5/search-ccsb
+++ search-ccsb-0.5.orig/search-ccsb
@@ -24,7 +24,7 @@
 $Ua = LWP::UserAgent->new;
 $Ua->agent("Mozilla (compatible: LWP $LWP::VERSION)");
 
+$res = $Ua->request(POST 'http://liinwww.ira.uka.de/searchbib/index', [query 
=> $ARGV[0], results => "bibtex"]);
-$res = $Ua->request(POST 'http://liinwww.ira.uka.de/csbib', [query => 
$ARGV[0], results => "bibtex"]);
 die "Error while getting ", $res->request->uri,
           " -- ", $res->status_line, "\nAborting"
          unless $res->is_success;
only in patch2:
unchanged:
--- search-ccsb-0.5.orig/debian/compat
+++ search-ccsb-0.5/debian/compat
@@ -0,0 +1 @@
+4

Reply via email to