--- dis51-0.5.orig/debian/changelog +++ dis51-0.5/debian/changelog @@ -0,0 +1,21 @@ +dis51 (0.5-1.1build1) bionic; urgency=high + + * No change rebuild to pick up -fPIE compiler default + + -- Balint Reczey Tue, 03 Apr 2018 12:19:39 +0000 + +dis51 (0.5-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix "FTBFS: pass2.c:186:4: error: format not a string literal and no + format arguments [-Werror=format-security]": apply patch from Eric + Alexander to add a format argument. + (Closes: #643374) + + -- gregor herrmann Sun, 20 Nov 2011 14:51:07 +0100 + +dis51 (0.5-1) unstable; urgency=low + + * Initial release (Closes: #466165). + + -- Uwe Hermann Sun, 17 Feb 2008 15:52:20 +0100 --- dis51-0.5.orig/debian/compat +++ dis51-0.5/debian/compat @@ -0,0 +1 @@ +5 --- dis51-0.5.orig/debian/control +++ dis51-0.5/debian/control @@ -0,0 +1,16 @@ +Source: dis51 +Section: devel +Priority: extra +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Uwe Hermann +Build-Depends: cdbs, debhelper (>= 5) +Standards-Version: 3.7.3 +Homepage: http://members.naspa.net/djs/software/dis51.html + +Package: dis51 +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Disassembler for 8051 code in Intel Hex format + Dis51 is a simple 8051 disassembler. It takes an object file in + Intel Hex (*.ihx or *.hex) format as input, and outputs an assembly + language file. --- dis51-0.5.orig/debian/copyright +++ dis51-0.5/debian/copyright @@ -0,0 +1,28 @@ +This package was debianized by Uwe Hermann on +Sat, 16 Feb 2008 15:01:54 +0100. + +It was downloaded from: + + http://members.naspa.net/djs/software/dis51.html + +Upstream Author: + + David Sullins + +------------------------------------------------------------------------------- + +Files: * +Copyright: © 2001-2003 David Sullins +License: GPL-2 + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL-2'. + +------------------------------------------------------------------------------- + +Files: debian/* +Copyright: © 2008 Uwe Hermann +License: GPL-2+ + The Debian packaging is (C) 2008, Uwe Hermann and + is licensed under the GPL (version 2 or later), see above. + --- dis51-0.5.orig/debian/dirs +++ dis51-0.5/debian/dirs @@ -0,0 +1 @@ +usr/bin --- dis51-0.5.orig/debian/docs +++ dis51-0.5/debian/docs @@ -0,0 +1,3 @@ +README +HISTORY +NOTES --- dis51-0.5.orig/debian/rules +++ dis51-0.5/debian/rules @@ -0,0 +1,10 @@ +#!/usr/bin/make -f + +CFLAGS = -c -I. + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/makefile.mk + +binary-install/dis51:: + install dis51 debian/dis51/usr/bin + --- dis51-0.5.orig/debian/watch +++ dis51-0.5/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://members.naspa.net/djs/software/dis51-(.*)\.tar\.gz --- dis51-0.5.orig/pass2.c +++ dis51-0.5/pass2.c @@ -183,7 +183,7 @@ fprintf(ofile, "DB 85h ; illegal opcode"); case 1: /* no operands */ - fprintf(ofile, mnemonic[opcode]); + fprintf(ofile, "%s", mnemonic[opcode]); break; case 2: /* one immediate operand */