diff -Nru lakai-0.1/debian/changelog lakai-0.1/debian/changelog --- lakai-0.1/debian/changelog 2022-04-30 12:43:19.000000000 +0000 +++ lakai-0.1/debian/changelog 2022-03-07 18:31:07.000000000 +0000 @@ -1,3 +1,33 @@ +lakai (0.1-3) unstable; urgency=medium + + * Team upload. + + [ Ondřej Nový ] + * d/copyright: Use https protocol in Format field + * d/control: Update Vcs-* field + * d/changelog: Remove trailing whitespaces + * d/rules: Remove trailing whitespaces + * d/watch: Use https protocol + * Use debhelper-compat instead of debian/compat + + [ Felipe Sateler ] + * Change maintainer address to debian-multimedia@lists.debian.org + + [ IOhannes m zmölnig (Debian/GNU) ] + * Add d/patches + - Add patch to honour build-flags + - Add patch to add missing includes + - Add patch to install to $(DESTDIR)/usr + * Switch build system to shortform dh + * Add salsa-ci configuration + * Declare that building this package does not require 'root' powers. + * Apply 'wrap-and-sort -ast' + * Bump format to 3.0(quilt) + * Bump dh compat to 13 + * Bump standards version to 4.6.0 + + -- IOhannes m zmölnig (Debian/GNU) Mon, 07 Mar 2022 19:31:07 +0100 + lakai (0.1-2) unstable; urgency=medium * Set maintainer to Debian Multimedia (Closes: #838228) @@ -24,7 +54,7 @@ lakai (0.1-1) unstable; urgency=low - * First Debian upload (closes: #269190), sponsored by + * First Debian upload (closes: #269190), sponsored by Cosimo Alfarano * Updated Standards-Version to 3.6.1.1 diff -Nru lakai-0.1/debian/compat lakai-0.1/debian/compat --- lakai-0.1/debian/compat 2022-04-30 12:43:19.000000000 +0000 +++ lakai-0.1/debian/compat 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -9 diff -Nru lakai-0.1/debian/control lakai-0.1/debian/control --- lakai-0.1/debian/control 2022-04-30 12:43:19.000000000 +0000 +++ lakai-0.1/debian/control 2022-03-07 18:31:07.000000000 +0000 @@ -1,17 +1,22 @@ Source: lakai Section: sound Priority: optional -Maintainer: Debian Multimedia Maintainers -Uploaders: Free Ekanayaka -Build-Depends: debhelper (>= 9) -Standards-Version: 3.9.8 +Maintainer: Debian Multimedia Maintainers +Uploaders: + Free Ekanayaka , +Build-Depends: + debhelper-compat (= 13), +Standards-Version: 4.6.0 +Rules-Requires-Root: no Homepage: http://lakai.sf.net/index.shtml -Vcs-Browser: https://anonscm.debian.org/cgit/pkg-multimedia/lakai.git -Vcs-Git: git://anonscm.debian.org/pkg-multimedia/lakai.git +Vcs-Git: https://salsa.debian.org/multimedia-team/lakai.git +Vcs-Browser: https://salsa.debian.org/multimedia-team/lakai Package: lakai Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends} +Depends: + ${misc:Depends}, + ${shlibs:Depends}, Description: transfers samples between a PC and an AKAI sampler Lakai is a small set of tools (+ a link library) used to transfer sampler data (programs, samples) between a PC with a SCSI host adapter and an AKAI diff -Nru lakai-0.1/debian/copyright lakai-0.1/debian/copyright --- lakai-0.1/debian/copyright 2022-04-30 12:43:19.000000000 +0000 +++ lakai-0.1/debian/copyright 2022-03-07 18:31:07.000000000 +0000 @@ -1,4 +1,4 @@ -Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: lakai Upstream-Contact: Frank Neumann Source: http://cesnet.dl.sourceforge.net/sourceforge/lakai/lakai-0.1.tar.gz @@ -26,4 +26,3 @@ . The GNU General Public License version 3 may be found on Debian systems in /usr/share/common-licenses/GPL-2. - diff -Nru lakai-0.1/debian/patches/build-flags.patch lakai-0.1/debian/patches/build-flags.patch --- lakai-0.1/debian/patches/build-flags.patch 1970-01-01 00:00:00.000000000 +0000 +++ lakai-0.1/debian/patches/build-flags.patch 2022-03-07 18:31:07.000000000 +0000 @@ -0,0 +1,44 @@ +Description: honour CPPFLAGS/CFLAGS/LDFLAGS +Author: IOhannes m zmölnig +Origin: Debian +Forwarded: no +Last-Update: 2022-03-07 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- lakai.orig/Makefile ++++ lakai/Makefile +@@ -6,7 +6,7 @@ + PREFIX=$(DESTDIR)/usr + + CC=gcc +-CFLAGS=-g -Wall -Wstrict-prototypes # add -DDEBUG=1 for debugging ++CFLAGS+=-g -Wall -Wstrict-prototypes # add -DDEBUG=1 for debugging + OBJS=lakai.o + LIB=liblakai.a + +@@ -16,13 +16,13 @@ + progs: lakclear lakbak lakres + + lakclear: lakclear.c $(LIB) +- $(CC) $< -o $@ -L. -llakai ++ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) $< -o $@ -L. -llakai + + lakbak: lakbak.c $(LIB) +- $(CC) $< -o $@ -L. -llakai ++ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) $< -o $@ -L. -llakai + + lakres: lakres.c $(LIB) +- $(CC) $< -o $@ -L. -llakai ++ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) $< -o $@ -L. -llakai + + $(LIB): $(OBJS) + rm -f $@ +@@ -30,7 +30,7 @@ + ranlib $@ + + lakai.o: lakai.c lakai.h +- $(CC) $(CFLAGS) -c $< -o $@ ++ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -c $< -o $@ + + install: $(LIB) progs + install -d $(PREFIX)/bin diff -Nru lakai-0.1/debian/patches/install-to-destdir.patch lakai-0.1/debian/patches/install-to-destdir.patch --- lakai-0.1/debian/patches/install-to-destdir.patch 1970-01-01 00:00:00.000000000 +0000 +++ lakai-0.1/debian/patches/install-to-destdir.patch 2022-03-07 18:31:07.000000000 +0000 @@ -0,0 +1,18 @@ +Description: make sure to honour $(DESTDIR) +Author: IOhannes m zmölnig +Origin: Debian +Forwarded: no +Last-Update: 2022-03-07 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- lakai.orig/Makefile ++++ lakai/Makefile +@@ -3,7 +3,7 @@ + # Frank Neumann, February 2004 + # + +-PREFIX=/usr/local ++PREFIX=$(DESTDIR)/usr + + CC=gcc + CFLAGS=-g -Wall -Wstrict-prototypes # add -DDEBUG=1 for debugging diff -Nru lakai-0.1/debian/patches/missing-includes.patch lakai-0.1/debian/patches/missing-includes.patch --- lakai-0.1/debian/patches/missing-includes.patch 1970-01-01 00:00:00.000000000 +0000 +++ lakai-0.1/debian/patches/missing-includes.patch 2022-03-07 18:31:07.000000000 +0000 @@ -0,0 +1,18 @@ +Description: add missing includes +Author: IOhannes m zmölnig +Origin: Debian +Forwarded: no +Last-Update: 2022-03-07 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +--- lakai.orig/lakbak.c ++++ lakai/lakbak.c +@@ -7,6 +7,8 @@ + */ + + #include ++#include ++#include + + #include "lakai.h" + diff -Nru lakai-0.1/debian/patches/series lakai-0.1/debian/patches/series --- lakai-0.1/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ lakai-0.1/debian/patches/series 2022-03-07 18:31:07.000000000 +0000 @@ -0,0 +1,3 @@ +missing-includes.patch +install-to-destdir.patch +build-flags.patch diff -Nru lakai-0.1/debian/rules lakai-0.1/debian/rules --- lakai-0.1/debian/rules 2022-04-30 12:43:19.000000000 +0000 +++ lakai-0.1/debian/rules 2022-03-07 18:31:07.000000000 +0000 @@ -1,96 +1,8 @@ #!/usr/bin/make -f # -*- makefile -*- -# Sample debian/rules that uses debhelper. -# GNU copyright 1997 to 1999 by Joey Hess. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -CFLAGS = -Wall -g - -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 -else - CFLAGS += -O2 -endif -ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) - INSTALL_PROGRAM += -s -endif - -configure: configure-stamp -configure-stamp: - dh_testdir - # Add here commands to configure the package. - - touch configure-stamp - - -build-indep: -build-arch: build-stamp - -build-stamp: configure-stamp - dh_testdir - - # Add here commands to compile the package. - $(MAKE) - #/usr/bin/docbook-to-man debian/lakai.sgml > lakai.1 - - touch build-stamp - -clean: - dh_testdir - dh_testroot - rm -f build-stamp configure-stamp - - # Add here commands to clean up after the build process. - $(MAKE) clean - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean - dh_installdirs - - # Add here commands to install the package into debian/lakai. - $(MAKE) install PREFIX=$(CURDIR)/debian/lakai/usr - - -# Build architecture-independent files here. -binary-indep: build install -# We have nothing to do by default. - -# Build architecture-dependent files here. -binary-arch: build install - dh_testdir - dh_testroot - dh_installchangelogs - dh_installdocs - dh_installexamples -# dh_install -# dh_installmenu -# dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installpam -# dh_installmime -# dh_installinit -# dh_installcron -# dh_installinfo - dh_installman - dh_link - dh_strip - dh_compress - dh_fixperms -# dh_perl -# dh_python -# dh_makeshlibs - dh_installdeb - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install configure +%: + dh $@ diff -Nru lakai-0.1/debian/salsa-ci.yml lakai-0.1/debian/salsa-ci.yml --- lakai-0.1/debian/salsa-ci.yml 1970-01-01 00:00:00.000000000 +0000 +++ lakai-0.1/debian/salsa-ci.yml 2022-03-07 18:31:07.000000000 +0000 @@ -0,0 +1,4 @@ +--- +include: + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml diff -Nru lakai-0.1/debian/source/format lakai-0.1/debian/source/format --- lakai-0.1/debian/source/format 1970-01-01 00:00:00.000000000 +0000 +++ lakai-0.1/debian/source/format 2022-03-07 18:31:07.000000000 +0000 @@ -0,0 +1 @@ +3.0 (quilt) diff -Nru lakai-0.1/debian/watch lakai-0.1/debian/watch --- lakai-0.1/debian/watch 2022-04-30 12:43:19.000000000 +0000 +++ lakai-0.1/debian/watch 2022-03-07 18:31:07.000000000 +0000 @@ -1,2 +1,2 @@ version=4 -http://sf.net/lakai/lakai-(\d\S+)\.tar\.(?:bz2|gz|xz) debian uupdate +https://sf.net/lakai/lakai-(\d\S+)\.tar\.(?:bz2|gz|xz) debian uupdate