--- aewan-1.0.01.orig/Makefile.in +++ aewan-1.0.01/Makefile.in @@ -29,7 +29,7 @@ # License para obter mais detalhes (uma cópia acompanha este # programa, armazenada no arquivo COPYING). -sources=$(wildcard *.c) $(wildcard aewl/*.c) $(wildcard bores/*.c) +sources=$(sort $(wildcard *.c) $(wildcard aewl/*.c) $(wildcard bores/*.c)) headers=$(wildcard *.h) $(wildcard bores/*.h) $(wildcard aewl/*.h) execs=aewan@EXESUF@ aecat@EXESUF@ aemakeflic@EXESUF@ mainobjs=$(patsubst %@EXESUF@,%.o,$(execs)) --- aewan-1.0.01.orig/debian/aewan.lintian_overrides +++ aewan-1.0.01/debian/aewan.lintian_overrides @@ -0,0 +1,2 @@ +# this is ok since it's an acronym +aewan: description-synopsis-starts-with-a-capital-letter --- aewan-1.0.01.orig/debian/changelog +++ aewan-1.0.01/debian/changelog @@ -0,0 +1,75 @@ +aewan (1.0.01-4.1) unstable; urgency=medium + + * Non-maintainer upload. + * Sort list of sources file so the object files are passed in a deterministic + order to the linker, assuring a reproducible build. + Thanks to Reiner Herrmann for the patch + (Closes: #842864) + + -- Mattia Rizzolo Tue, 08 Aug 2017 17:52:07 +0200 + +aewan (1.0.01-4) unstable; urgency=medium + + * maintenance and cleanup spin: + * fix spelling mistake in manpage + * control and rules file updates to comply with policy and best + practices + * haredening flags in debian/rules + * default targets in debian/rules + * bump standards-version + + -- Robert Lemmen Thu, 02 Jun 2016 20:37:06 +0100 + +aewan (1.0.01-3) unstable; urgency=low + + * use sensible-editor instead of vi by default (closes: #505462) + + -- Robert Lemmen Thu, 12 Mar 2009 19:06:55 +0000 + +aewan (1.0.01-2) unstable; urgency=low + + * Fixed at problem that could make aewan crash on 64-bit archs + (closes: #332288) + * Fixed watch file (closes: #450136) + + -- Robert Lemmen Tue, 31 Jan 2006 12:51:33 +0200 + +aewan (1.0.01-1) unstable; urgency=low + + * New upstream release + + -- Robert Lemmen Sun, 2 Oct 2005 16:55:03 +0200 + +aewan (0.9.6-1) unstable; urgency=low + + * New upstream release (closes: #295982) + + -- Robert Lemmen Sat, 19 Feb 2005 18:57:42 +0100 + +aewan (0.9.5-1) unstable; urgency=low + + * New upstream release with a menu and XHTML output + + -- Robert Lemmen Sat, 19 Feb 2005 15:18:50 +0100 + +aewan (0.9.3-1) unstable; urgency=low + + * New upstream release. + * fixed package description to be more comprehensible + * priority is now "extra" + * fixed $(DESTDIR) handling in Makefile + + -- Robert Lemmen Mon, 15 Nov 2004 15:19:17 +0100 + +aewan (0.9.0-1) unstable; urgency=low + + * New upstream release. + + -- Robert Lemmen Wed, 4 Aug 2004 15:39:35 +0200 + +aewan (0.8.7-1) unstable; urgency=low + + * Initial release. (closes: #244682) + + -- Robert Lemmen Tue, 18 May 2004 18:12:48 +0200 + --- aewan-1.0.01.orig/debian/compat +++ aewan-1.0.01/debian/compat @@ -0,0 +1 @@ +7 --- aewan-1.0.01.orig/debian/control +++ aewan-1.0.01/debian/control @@ -0,0 +1,16 @@ +Source: aewan +Section: text +Priority: extra +Maintainer: Robert Lemmen +Build-Depends: debhelper (>= 7.0.0), libncurses5-dev, zlib1g-dev +Standards-Version: 3.9.8 + +Package: aewan +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: ASCII-art Editor Without A Name + aewan is an ASCII art editor with support for multiple layers that can be + edited individually, colors, rectangular copy and paste, and intelligent + horizontal and vertical flipping (converts '\' to '/', etc). It produces + both stand-alone art files and an easy-to-parse format for integration + into your terminal applications. --- aewan-1.0.01.orig/debian/copyright +++ aewan-1.0.01/debian/copyright @@ -0,0 +1,16 @@ +This package was debianized by Robert Lemmen on +Tue, 18 May 2004 18:12:48 +0200. + +It was downloaded from http://aewan.sourceforge.net/ + +Upstream Author: Bruno Takahashi C. de Oliveira + +Copyright: 2004 Bruno Takahashi C. de Oliveira + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + On Debian systems, the complete text of the GNU General Public + License can be found in the file `/usr/share/common-licenses/GPL-2. --- aewan-1.0.01.orig/debian/docs +++ aewan-1.0.01/debian/docs @@ -0,0 +1 @@ +README --- aewan-1.0.01.orig/debian/menu +++ aewan-1.0.01/debian/menu @@ -0,0 +1,2 @@ +?package(aewan):needs="text" section="Apps/Graphics" \ + title="Aewan" command="/usr/bin/aewan" --- aewan-1.0.01.orig/debian/rules +++ aewan-1.0.01/debian/rules @@ -0,0 +1,60 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +CFLAGS:=$(shell dpkg-buildflags --get CFLAGS) +LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS) + +config.status: configure + dh_testdir + ./configure CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" --prefix=/usr --mandir=/usr/share/man + +build: build-stamp + +build-stamp: config.status + dh_testdir + $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + [ ! -f Makefile ] || $(MAKE) distclean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + $(MAKE) install DESTDIR=$(CURDIR)/debian/aewan + +build-arch: build + +build-indep: build + +binary-indep: install + +binary-arch: install + dh_testdir + dh_testroot + dh_installchangelogs CHANGELOG + dh_installdocs + # install the overrides + mkdir -p debian/aewan/usr/share/lintian/overrides/ + cp debian/aewan.lintian_overrides \ + debian/aewan/usr/share/lintian/overrides/aewan + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- aewan-1.0.01.orig/debian/source/format +++ aewan-1.0.01/debian/source/format @@ -0,0 +1 @@ +1.0 --- aewan-1.0.01.orig/debian/watch +++ aewan-1.0.01/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://sf.net/aewan/ aewan-(.*)\.tar\.gz --- aewan-1.0.01.orig/debug_aewl.c +++ aewan-1.0.01/debug_aewl.c @@ -8,6 +8,7 @@ #include "aewl/label.h" #include "keys.h" +#include "filedlg.h" #include #include --- aewan-1.0.01.orig/editmeta.c +++ aewan-1.0.01/editmeta.c @@ -53,7 +53,7 @@ editor = getenv("VISUAL"); if (!editor) editor = getenv("EDITOR"); - if (!editor) editor = "vi"; + if (!editor) editor = "sensible-editor"; /* create a temporary file */ strcpy(tmpname, "/tmp/aewan-XXXXXX"); --- aewan-1.0.01.orig/man/man5/aewan.5 +++ aewan-1.0.01/man/man5/aewan.5 @@ -47,7 +47,6 @@ >Layer (...there are such blocks...) >Aewan Document v1 -.ff Indentation is ignored, but all other whitespace is significant. In particular, you can't omit the space that immediately follows @@ -69,7 +68,7 @@ .SH REPRESENTATION OF LAYER LINES Each layer-line is a string, but it is specially formatted in order -to convey the characters and attibutes in that line. In order to +to convey the characters and attributes in that line. In order to understand the format of a layer-line string, it is first necessary to introduce the concept of cells. A cell in an aewan layer is each of the spaces that can contain a character. A cell has two pieces