diff -Nru sc-im-0.8.3+ds/debian/changelog sc-im-0.8.3+ds/debian/changelog --- sc-im-0.8.3+ds/debian/changelog 2023-01-16 16:06:57.000000000 +0000 +++ sc-im-0.8.3+ds/debian/changelog 2023-03-28 16:35:11.000000000 +0000 @@ -1,3 +1,11 @@ +sc-im (0.8.3+ds-1ubuntu1) lunar; urgency=medium + + * Ensure ncurses is linked + * Copyright: Fix upstream license, add missing clause + * Add libncursesw-dev as acceptable build dep + + -- Joshua Peisach Tue, 28 Mar 2023 12:35:11 -0400 + sc-im (0.8.3+ds-1) unstable; urgency=medium * New upstream version 0.8.3+ds diff -Nru sc-im-0.8.3+ds/debian/control sc-im-0.8.3+ds/debian/control --- sc-im-0.8.3+ds/debian/control 2023-01-16 16:06:57.000000000 +0000 +++ sc-im-0.8.3+ds/debian/control 2023-03-28 16:35:11.000000000 +0000 @@ -1,14 +1,15 @@ Source: sc-im Section: math Priority: optional -Maintainer: Debian Math Team +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Debian Math Team Uploaders: Joshua Peisach Build-Depends: debhelper-compat (= 13), bison, gnuplot, liblua5.4-dev, - libncurses-dev, + libncurses-dev | libncursesw-dev, libtinfo-dev, libxml2-dev, libzip-dev diff -Nru sc-im-0.8.3+ds/debian/copyright sc-im-0.8.3+ds/debian/copyright --- sc-im-0.8.3+ds/debian/copyright 2023-01-16 16:06:57.000000000 +0000 +++ sc-im-0.8.3+ds/debian/copyright 2023-03-28 16:35:11.000000000 +0000 @@ -10,28 +10,30 @@ All rights reserved. . Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: + modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. + 3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + This product includes software developed by Andrés Martinelli + . + 4. Neither the name of the Andrés Martinelli nor the + names of other contributors may be used to endorse or promote products + derived from this software without specific prior written permission. . - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. + THIS SOFTWARE IS PROVIDED BY ANDRES MARTINELLI ''AS IS'' AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL ANDRES MARTINELLI BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Files: debian/* Copyright: 2021 Joshua Peisach diff -Nru sc-im-0.8.3+ds/debian/patches/ensure-ncurses-linked.patch sc-im-0.8.3+ds/debian/patches/ensure-ncurses-linked.patch --- sc-im-0.8.3+ds/debian/patches/ensure-ncurses-linked.patch 1970-01-01 00:00:00.000000000 +0000 +++ sc-im-0.8.3+ds/debian/patches/ensure-ncurses-linked.patch 2023-03-28 16:35:11.000000000 +0000 @@ -0,0 +1,17 @@ +Description: Ensure ncurses is linked + It looks like once the Makefile checks for ncurses, and the platform + isn't any of the defaults, LDFLAGS isn't enough - LDLIBS needs to have + ncurses included for the linker to link properly. +Author: Joshua Peisach +Last-Update: 2023-03-28 + +--- sc-im-0.8.3+ds.orig/src/Makefile ++++ sc-im-0.8.3+ds/src/Makefile +@@ -165,6 +165,7 @@ else ifeq ($(shell uname -s),NetBSD) + + LDLIBS += -lncursesw + else ++ LDLIBS += -lncursesw + LDFLAGS += -lncursesw + endif + diff -Nru sc-im-0.8.3+ds/debian/patches/series sc-im-0.8.3+ds/debian/patches/series --- sc-im-0.8.3+ds/debian/patches/series 2023-01-16 16:06:57.000000000 +0000 +++ sc-im-0.8.3+ds/debian/patches/series 2023-03-28 16:35:11.000000000 +0000 @@ -1 +1,2 @@ adjust-makefile-for-packaging.patch +ensure-ncurses-linked.patch