Package: ncurses Version: 5.9-1 Severity: minor Tags: patch User: [email protected] Usertag: multiarch
Hi, I started working on multiarching ncurses, but half-way noticed that it was already done in git. The work in git looks fine, just a couple of minor details need fixing. 1) DEB_HOST_MULTIARCH comes with dpkg-dev 1.16, bump the build-depends 2) libncursesw5-devi and libncurses5-dev can be multiarch: same, and ncurses-bin multiarch: foreign Riku
diff --git a/debian/control b/debian/control index 8978086..5df90f2 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Priority: required Maintainer: Craig Small <[email protected]> Uploaders: Sven Joachim <[email protected]> Build-Depends: debhelper (>= 8.1.3), - dpkg-dev (>= 1.15.7), + dpkg-dev (>= 1.16), g++-multilib [amd64 i386 kfreebsd-amd64 powerpc ppc64 s390 sparc], libgpm-dev [linux-any], pkg-config, @@ -32,6 +32,7 @@ Section: libdevel Priority: optional Depends: libncurses5 (= ${binary:Version}), ncurses-bin (= ${binary:Version}), libc-dev, ${misc:Depends} +Multi-Arch: same Conflicts: ncurses-dev, libncurses-dev Replaces: ncurses-dev, libncurses-dev Provides: libncurses-dev, ncurses-dev @@ -76,6 +77,7 @@ Section: libdevel Priority: optional Depends: libncursesw5 (= ${binary:Version}), ncurses-bin (= ${binary:Version}), libc-dev, ${misc:Depends} +Multi-Arch: same Suggests: ncurses-doc Description: developer's libraries for ncursesw The ncurses library routines are a terminal-independent method of @@ -207,6 +209,7 @@ Architecture: any Section: utils Essential: yes Pre-Depends: ${shlibs:Depends}, ${misc:Depends} +Multi-Arch: foreign Description: terminal-related programs and man pages The ncurses library routines are a terminal-independent method of updating character screens with reasonable optimization.

