I am uploading a NMU to fix this. The debdiff is attached.
diff -Nru itop-0.1/debian/changelog itop-0.1/debian/changelog
--- itop-0.1/debian/changelog   2023-08-07 23:04:36.000000000 +0200
+++ itop-0.1/debian/changelog   2023-08-07 22:48:00.000000000 +0200
@@ -1,3 +1,13 @@
+itop (0.1-4.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Remove unavailable Homepage.
+  * Update debhelper to compat 10. (Closes: #965601)
+  * Split build target into build-{indep,arch}. (Closes: #999317)
+  * Convert to source format 3.0.
+
+ -- Bastian Germann <b...@debian.org>  Mon, 07 Aug 2023 22:48:00 +0200
+
 itop (0.1-4) unstable; urgency=low
 
   * Removed debian/docs, hello Ubuntu! (Closes: #489956)
diff -Nru itop-0.1/debian/compat itop-0.1/debian/compat
--- itop-0.1/debian/compat      2023-08-07 23:04:36.000000000 +0200
+++ itop-0.1/debian/compat      1970-01-01 01:00:00.000000000 +0100
@@ -1 +0,0 @@
-5
diff -Nru itop-0.1/debian/control itop-0.1/debian/control
--- itop-0.1/debian/control     2023-08-07 23:04:36.000000000 +0200
+++ itop-0.1/debian/control     2023-08-07 22:48:00.000000000 +0200
@@ -1,10 +1,9 @@
 Source: itop
 Section: admin
-Priority: extra
+Priority: optional
 Maintainer: Jose Parrella <bure...@debian.org>
-Build-Depends: debhelper (>= 5)
+Build-Depends: debhelper-compat (= 10)
 Standards-Version: 3.8.0
-Homepage: http://www.hunz.org/
 
 Package: itop
 Architecture: any
diff -Nru itop-0.1/debian/patches/debian.patch 
itop-0.1/debian/patches/debian.patch
--- itop-0.1/debian/patches/debian.patch        1970-01-01 01:00:00.000000000 
+0100
+++ itop-0.1/debian/patches/debian.patch        2023-08-07 22:48:00.000000000 
+0200
@@ -0,0 +1,17 @@
+Description: Add a Makefile
+---
+--- /dev/null
++++ itop-0.1/Makefile
+@@ -0,0 +1,12 @@
++CC=gcc
++
++all: itop
++
++itop:
++      (cd src/ ; make)
++
++clean:
++      rm -f src/itop src/*.o src/*~
++
++install: itop
++      cp src/itop $(DESTDIR)/usr/bin
diff -Nru itop-0.1/debian/patches/max_ints.patch 
itop-0.1/debian/patches/max_ints.patch
--- itop-0.1/debian/patches/max_ints.patch      1970-01-01 01:00:00.000000000 
+0100
+++ itop-0.1/debian/patches/max_ints.patch      2023-08-07 22:48:00.000000000 
+0200
@@ -0,0 +1,9 @@
+Description: Increased MAX_INTS from 256 to 1024, thanks David Futcher
+Bug-Debian: https://bugs.debian.org/449246
+---
+--- itop-0.1.orig/src/config.h
++++ itop-0.1/src/config.h
+@@ -1,2 +1,2 @@
+ #define MAX_NAME_LEN 18
+-#define MAX_INTS 256
++#define MAX_INTS 1024
diff -Nru itop-0.1/debian/patches/series itop-0.1/debian/patches/series
--- itop-0.1/debian/patches/series      1970-01-01 01:00:00.000000000 +0100
+++ itop-0.1/debian/patches/series      2023-08-07 22:48:00.000000000 +0200
@@ -0,0 +1,2 @@
+debian.patch
+max_ints.patch
diff -Nru itop-0.1/debian/rules itop-0.1/debian/rules
--- itop-0.1/debian/rules       2023-08-07 23:04:36.000000000 +0200
+++ itop-0.1/debian/rules       2023-08-07 22:48:00.000000000 +0200
@@ -13,9 +13,9 @@
        dh_testdir
        touch configure-stamp
 
-build: build-stamp
+build: build-indep build-arch
 
-build-stamp: configure-stamp 
+build-arch: configure-stamp 
        dh_testdir
        $(MAKE)
        touch $@
@@ -34,9 +34,9 @@
        dh_installdirs
        $(MAKE) DESTDIR=$(CURDIR)/debian/itop install
 
-binary-indep: build install
+binary-indep: build-indep install
 
-binary-arch: build install
+binary-arch: build-arch install
        dh_testdir
        dh_testroot
        dh_installchangelogs CHANGELOG
@@ -53,5 +53,6 @@
        dh_md5sums
        dh_builddeb
 
+build-indep:
 binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure
+.PHONY: build build-indep clean binary-indep binary-arch binary install 
configure
diff -Nru itop-0.1/debian/source/format itop-0.1/debian/source/format
--- itop-0.1/debian/source/format       1970-01-01 01:00:00.000000000 +0100
+++ itop-0.1/debian/source/format       2023-08-07 22:48:00.000000000 +0200
@@ -0,0 +1 @@
+3.0 (quilt)
diff -Nru itop-0.1/debian/watch itop-0.1/debian/watch
--- itop-0.1/debian/watch       2023-08-07 23:04:36.000000000 +0200
+++ itop-0.1/debian/watch       1970-01-01 01:00:00.000000000 +0100
@@ -1,3 +0,0 @@
-version=3
-http://www.hunz.org/ itop/itop-(.*)\.tar\.bz2
-
diff -Nru itop-0.1/Makefile itop-0.1/Makefile
--- itop-0.1/Makefile   2023-08-07 23:04:36.000000000 +0200
+++ itop-0.1/Makefile   1970-01-01 01:00:00.000000000 +0100
@@ -1,12 +0,0 @@
-CC=gcc
-
-all: itop
-
-itop:
-       (cd src/ ; make)
-
-clean:
-       rm -f src/itop src/*.o src/*~
-
-install: itop
-       cp src/itop $(DESTDIR)/usr/bin
diff -Nru itop-0.1/src/config.h itop-0.1/src/config.h
--- itop-0.1/src/config.h       2023-08-07 23:04:36.000000000 +0200
+++ itop-0.1/src/config.h       2001-08-26 15:55:05.000000000 +0200
@@ -1,2 +1,2 @@
 #define MAX_NAME_LEN 18
-#define MAX_INTS 1024
+#define MAX_INTS 256

Reply via email to