tag 636740 patch pending tag 636886 patch pending thanks dioc...@debian.org <dioc...@debian.org> (06/08/2011): > Source: aylet > Version: 0.5-2 > Severity: serious > User: dioc...@debian.org > Usertags: remove-yada
Thanks to IRILL for sponsoring this BSP in Paris. The patch is attached. Mraw, KiBi.
diff -u aylet-0.5/debian/changelog aylet-0.5/debian/changelog --- aylet-0.5/debian/changelog +++ aylet-0.5/debian/changelog @@ -1,3 +1,12 @@ +aylet (0.5-3) unstable; urgency=low + + * QA upload (Closes: #636740). + * Switch away from yada (Closes: #636886) to dh. + * Move homepage from descriptions to the source stanza. + * Thanks to IRILL for sponsoring this BSP in Paris. + + -- Cyril Brulebois <k...@debian.org> Sun, 19 Feb 2012 17:42:35 +0000 + aylet (0.5-2) unstable; urgency=low * Fix FTBFS when build twice in a row diff -u aylet-0.5/debian/rules aylet-0.5/debian/rules --- aylet-0.5/debian/rules +++ aylet-0.5/debian/rules @@ -2,316 +2,17 @@ -# Generated automatically from debian/packages -# by yada v0.53, of Fri, 4 May 2007 -DEB_HOST_ARCH := $(shell dpkg-architecture -qDEB_HOST_ARCH 2>/dev/null) -DEB_HOST_ARCH_OS := $(shell dpkg-architecture -qDEB_HOST_ARCH_OS 2>/dev/null) -DEB_HOST_ARCH_CPU := $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU 2>/dev/null) -DEB_HOST_GNU_CPU := $(shell dpkg-architecture -qDEB_HOST_GNU_CPU 2>/dev/null) -DEB_HOST_GNU_TYPE := $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE 2>/dev/null) -DEB_HOST_GNU_SYSTEM := $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM 2>/dev/null) +CFLAGS += -DDRIVER_OSS -DEB_BUILD_ARCH := $(shell dpkg-architecture -qDEB_BUILD_ARCH 2>/dev/null) -DEB_BUILD_ARCH_OS := $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS 2>/dev/null) -DEB_BUILD_ARCH_CPU := $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU 2>/dev/null) -DEB_BUILD_GNU_CPU := $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU 2>/dev/null) -DEB_BUILD_GNU_TYPE := $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE 2>/dev/null) -DEB_BUILD_GNU_SYSTEM := $(shell dpkg-architecture -qDEB_BUILD_GNU_SYSTEM 2>/dev/null) +override_dh_auto_build: + dh_auto_build -- gtk2 + mv xaylet aylet-gtk + cp aylet.1 aylet-gtk.1 + +override_dh_clean: + dh_clean + rm -f aylet-gtk aylet-gtk.1 xaylet.1 -# Take account of old dpkg-architecture output. -ifeq ($(DEB_HOST_ARCH_CPU),) - DEB_HOST_ARCH_CPU := $(DEB_HOST_GNU_CPU)) - ifeq ($(DEB_HOST_ARCH_CPU),i486) - DEB_HOST_ARCH_OS := i386 - else - ifeq ($(DEB_HOST_ARCH_CPU),x86_64) - DEB_HOST_ARCH_OS := amd64 - endif - endif -endif -ifeq ($(DEB_HOST_ARCH_OS),) - DEB_HOST_ARCH_OS := $(subst -gnu,,$(DEB_HOST_GNU_SYSTEM)) - ifeq ($(DEB_HOST_ARCH_OS),gnu) - DEB_HOST_ARCH_OS := hurd - endif -endif -ifeq ($(DEB_BUILD_ARCH_CPU),) - DEB_BUILD_ARCH_CPU := $(DEB_BUILD_GNU_CPU)) - ifeq ($(DEB_BUILD_ARCH_CPU),i486) - DEB_BUILD_ARCH_OS := i386 - else - ifeq ($(DEB_BUILD_ARCH_CPU),x86_64) - DEB_BUILD_ARCH_OS := amd64 - endif - endif -endif -ifeq ($(DEB_BUILD_ARCH_OS),) - DEB_BUILD_ARCH_OS := $(subst -gnu,,$(DEB_BUILD_GNU_SYSTEM)) - ifeq ($(DEB_BUILD_ARCH_OS),gnu) - DEB_BUILD_ARCH_OS := hurd - endif -endif +override_dh_auto_install: + # No-op, let's do everything through dh_install. -LEFT_PARENTHESIS:=( -VERSION:=$(shell head -n1 debian/changelog | sed -e "s/^[0-9a-zA-Z.-]* $(LEFT_PARENTHESIS)//" -e "s/[^0-9a-zA-Z.:+~-].*//") - -SHELL=/bin/bash - -.PHONY: default -default: - @echo "Specify a target:"; \ - echo " build compile the package"; \ - echo " build-arch compile the architecture-dependent package"; \ - echo " build-indep compile the architecture-independent package"; \ - echo " binary make all binary packages"; \ - echo " binary-arch make all architecture-dependent binary packages"; \ - echo " binary-indep make all architecture-independent binary packages"; \ - echo " clean clean up the source package"; \ - echo; \ - echo " clean-install-tree clean up only under debian/"; \ - echo - -# Build the package and prepare the install tree - -.PHONY: build-only build -build-only: debian/build-stamp -build: build-only - -.PHONY: build-arch-only build-arch -build-arch-only: debian/build-arch-stamp -build-arch: build-arch-only - -.PHONY: build-indep-only build-indep -build-indep-only: debian/build-indep-stamp -build-indep: build-indep-only - -# Make sure these rules and the control file are up-to-date - -.PHONY: rules control templates -rules: debian/rules -debian/rules: $(shell which yada) debian/packages-tmp - yada rebuild rules - -control: debian/control -debian/control: $(shell which yada) debian/packages-tmp - yada rebuild control - -templates: debian/templates debian/po/POTFILES.in -debian/templates: $(shell which yada) debian/packages-tmp - yada rebuild templates -debian/po/POTFILES.in: $(shell which yada) debian/packages-tmp - yada rebuild templates - -debian/build-stamp: debian/build-arch-stamp debian/build-indep-stamp - @[ -f $(shell which yada) -a -f debian/rules ] - yada patch "debian/patches/*.diff" - @umask 022 \ - && export pwd="$$(pwd)" \ - && export TMPROOT="$$(pwd)/debian/tmp" \ - && export SOURCE="aylet" \ - && export VERSION="$(VERSION)" \ - && export DEB_HOST_GNU_CPU="$(DEB_HOST_GNU_CPU)" \ - && export DEB_HOST_GNU_TYPE="$(DEB_HOST_GNU_TYPE)" \ - && export DEB_HOST_GNU_SYSTEM="$(DEB_HOST_GNU_SYSTEM)" \ - && export DEB_BUILD_GNU_CPU="$(DEB_BUILD_GNU_CPU)" \ - && export DEB_BUILD_GNU_TYPE="$(DEB_BUILD_GNU_TYPE)" \ - && export DEB_BUILD_GNU_SYSTEM="$(DEB_BUILD_GNU_SYSTEM)" && (\ - echo -E 'eval "yada () { perl $$(which yada) \"\$$@\"; }"; set -e; set -v';\ - echo -E 'CC=$${CC:-gcc}';\ - echo -E 'CFLAGS=$${CFLAGS:--Wall -g}';\ - echo -E 'LDFLAGS=$${LDFLAGS:-}';\ - echo -E 'if [ "$${DEB_BUILD_OPTIONS#*noopt}" != "$$DEB_BUILD_OPTIONS" ]; then';\ - echo -E ' CFLAGS="$$CFLAGS -O0"';\ - echo -E 'else';\ - echo -E ' CFLAGS="$$CFLAGS -O2"';\ - echo -E 'fi';\ - echo -E 'make CFLAGS="$$CFLAGS -DDRIVER_OSS" CC="$$CC" clean gtk2';\ - echo -E 'cp xaylet aylet-gtk2') | /bin/sh - touch debian/build-stamp - -debian/build-arch-stamp: - @[ -f $(shell which yada) -a -f debian/rules ] - yada patch "debian/patches/*.diff" - touch debian/build-arch-stamp - -debian/build-indep-stamp: debian/build-arch-stamp - @[ -f $(shell which yada) -a -f debian/rules ] - yada patch "debian/patches/*.diff" - touch debian/build-indep-stamp - -.PHONY: install-tree -install-tree: install-tree-any -install-tree-any: \ - debian/tmp-aylet/DEBIAN/control \ - debian/tmp-aylet-gtk/DEBIAN/control - -debian/tmp-aylet/DEBIAN/control: debian/build-stamp debian/control - rm -rf debian/tmp-aylet - umask 022 && install -d debian/tmp-aylet/DEBIAN - install -d debian/tmp-aylet/usr/share/doc/aylet - umask 022; yada generate copyright \ - > debian/tmp-aylet/usr/share/doc/aylet/copyright - install -m 644 -p debian/changelog \ - debian/tmp-aylet/usr/share/doc/aylet/changelog.Debian - @umask 022 \ - && export pwd="$$(pwd)" \ - && export ROOT="$$(pwd)/debian/tmp-aylet" \ - && export TMPROOT="$$(pwd)/debian/tmp" \ - && export CONTROL="$$(pwd)/debian/tmp-aylet/DEBIAN" \ - && export PACKAGE="aylet" \ - && export SOURCE="aylet" \ - && export VERSION="$(VERSION)" \ - && export DEB_HOST_GNU_CPU="$(DEB_HOST_GNU_CPU)" \ - && export DEB_HOST_GNU_TYPE="$(DEB_HOST_GNU_TYPE)" \ - && export DEB_HOST_GNU_SYSTEM="$(DEB_HOST_GNU_SYSTEM)" \ - && export DEB_BUILD_GNU_CPU="$(DEB_BUILD_GNU_CPU)" \ - && export DEB_BUILD_GNU_TYPE="$(DEB_BUILD_GNU_TYPE)" \ - && export DEB_BUILD_GNU_SYSTEM="$(DEB_BUILD_GNU_SYSTEM)" && (\ - echo -E 'eval "yada () { perl $$(which yada) \"\$$@\"; }"; set -e; set -v';\ - echo -E 'yada install -bin aylet';\ - echo -E 'yada install -man -section 1 -gzip aylet.1';\ - echo -E 'yada install -doc -as changelog ChangeLog';\ - echo -E 'yada install -doc NEWS README TODO') | /bin/sh - @umask 022 \ - && export pwd="$$(pwd)" \ - && export ROOT="$$(pwd)/debian/tmp-aylet" \ - && export TMPROOT="$$(pwd)/debian/tmp" \ - && export CONTROL="$$(pwd)/debian/tmp-aylet/DEBIAN" \ - && export PACKAGE="aylet" \ - && export SOURCE="aylet" \ - && export VERSION="$(VERSION)" && (\ - echo -E 'eval "yada () { perl $$(which yada) \"\$$@\"; }"; set -e; set -v';\ - echo -E 'yada perl';\ - echo -E 'yada python';\ - echo -E 'yada strip';\ - echo -E 'yada shlibdeps') | /bin/sh - yada compress aylet - yada generate maintscripts aylet - find debian/tmp-aylet -type f -print \ - | sed -n 's/^debian\/tmp-aylet\(\/etc\/.*\)$$/\1/p' \ - > debian/tmp-aylet/DEBIAN/conffiles - test -s debian/tmp-aylet/DEBIAN/conffiles || rm -f debian/tmp-aylet/DEBIAN/conffiles - yada rebuild control - yada generate substvars aylet - umask 022 && dpkg-gencontrol -isp -paylet -Pdebian/tmp-aylet - -debian/tmp-aylet-gtk/DEBIAN/control: debian/build-stamp debian/control - rm -rf debian/tmp-aylet-gtk - umask 022 && install -d debian/tmp-aylet-gtk/DEBIAN - install -d debian/tmp-aylet-gtk/usr/share/doc/aylet-gtk - umask 022; yada generate copyright \ - > debian/tmp-aylet-gtk/usr/share/doc/aylet-gtk/copyright - install -m 644 -p debian/changelog \ - debian/tmp-aylet-gtk/usr/share/doc/aylet-gtk/changelog.Debian - @umask 022 \ - && export pwd="$$(pwd)" \ - && export ROOT="$$(pwd)/debian/tmp-aylet-gtk" \ - && export TMPROOT="$$(pwd)/debian/tmp" \ - && export CONTROL="$$(pwd)/debian/tmp-aylet-gtk/DEBIAN" \ - && export PACKAGE="aylet-gtk" \ - && export SOURCE="aylet" \ - && export VERSION="$(VERSION)" \ - && export DEB_HOST_GNU_CPU="$(DEB_HOST_GNU_CPU)" \ - && export DEB_HOST_GNU_TYPE="$(DEB_HOST_GNU_TYPE)" \ - && export DEB_HOST_GNU_SYSTEM="$(DEB_HOST_GNU_SYSTEM)" \ - && export DEB_BUILD_GNU_CPU="$(DEB_BUILD_GNU_CPU)" \ - && export DEB_BUILD_GNU_TYPE="$(DEB_BUILD_GNU_TYPE)" \ - && export DEB_BUILD_GNU_SYSTEM="$(DEB_BUILD_GNU_SYSTEM)" && (\ - echo -E 'eval "yada () { perl $$(which yada) \"\$$@\"; }"; set -e; set -v';\ - echo -E 'yada install -bin aylet-gtk2 -as aylet-gtk';\ - echo -E 'yada install -bin xaylet -as aylet-gtk';\ - echo -E 'yada symlink -bin aylet-gtk -as xaylet';\ - echo -E 'yada install -man -section 1 -gzip -as aylet-gtk.1 aylet.1';\ - echo -E 'yada symlink -man -section 1 -as xaylet.1 aylet-gtk.1';\ - echo -E 'yada install -doc -as changelog ChangeLog';\ - echo -E 'yada install -doc NEWS README TODO') | /bin/sh - @umask 022 \ - && export pwd="$$(pwd)" \ - && export ROOT="$$(pwd)/debian/tmp-aylet-gtk" \ - && export TMPROOT="$$(pwd)/debian/tmp" \ - && export CONTROL="$$(pwd)/debian/tmp-aylet-gtk/DEBIAN" \ - && export PACKAGE="aylet-gtk" \ - && export SOURCE="aylet" \ - && export VERSION="$(VERSION)" && (\ - echo -E 'eval "yada () { perl $$(which yada) \"\$$@\"; }"; set -e; set -v';\ - echo -E 'yada perl';\ - echo -E 'yada python';\ - echo -E 'yada strip';\ - echo -E 'yada shlibdeps') | /bin/sh - yada compress aylet-gtk - yada generate maintscripts aylet-gtk - find debian/tmp-aylet-gtk -type f -print \ - | sed -n 's/^debian\/tmp-aylet-gtk\(\/etc\/.*\)$$/\1/p' \ - > debian/tmp-aylet-gtk/DEBIAN/conffiles - test -s debian/tmp-aylet-gtk/DEBIAN/conffiles || rm -f debian/tmp-aylet-gtk/DEBIAN/conffiles - yada rebuild control - yada generate substvars aylet-gtk - umask 022 && dpkg-gencontrol -isp -paylet-gtk -Pdebian/tmp-aylet-gtk - -# Build package files - -.PHONY: binary binary-arch binary-indep -binary: binary-arch binary-indep -binary-arch: binary-arch-any - -.PHONY: binary-arch-any -binary-arch-any: \ - binary-package-aylet \ - binary-package-aylet-gtk -binary-indep: - -.PHONY: binary-package-aylet -binary-package-aylet: check-root debian/tmp-aylet/DEBIAN/control - @[ -f $(shell which yada) -a -f debian/rules ] - chown -R 0.0 debian/tmp-aylet - chmod -R u=rwX,go=rX debian/tmp-aylet - @if [ -d debian/tmp-aylet/usr/doc/aylet ]; then \ - echo "*** Yada warning: /usr/doc/aylet should be /usr/share/doc/aylet";\ - fi - dpkg-deb --build debian/tmp-aylet .. - -.PHONY: binary-package-aylet-gtk -binary-package-aylet-gtk: check-root debian/tmp-aylet-gtk/DEBIAN/control - @[ -f $(shell which yada) -a -f debian/rules ] - chown -R 0.0 debian/tmp-aylet-gtk - chmod -R u=rwX,go=rX debian/tmp-aylet-gtk - @if [ -d debian/tmp-aylet-gtk/usr/doc/aylet-gtk ]; then \ - echo "*** Yada warning: /usr/doc/aylet-gtk should be /usr/share/doc/aylet-gtk";\ - fi - dpkg-deb --build debian/tmp-aylet-gtk .. - -.PHONY: check-root -check-root: - @[ `id -u` = 0 ] || (echo "You must be root to do this!"; false) - -debian/packages-tmp: debian/packages - yada rebuild packages - -## Clean up afterwards - -.PHONY: clean clean-install-tree clean-build - -clean: clean-install-tree clean-build debian/control debian/rules - rm -f debian/packages-tmp debian/packages-tmp-new debian/packages-tmp-include - -clean-build: - @[ -f $(shell which yada) -a -f debian/rules ] - rm -f debian/build-stamp debian/build-arch-stamp debian/build-indep-stamp - @umask 022 \ - && export pwd="$$(pwd)" \ - && export TMPROOT="$$(pwd)/debian/tmp" \ - && export SOURCE="aylet" \ - && export VERSION="$(VERSION)" \ - && export DEB_HOST_GNU_CPU="$(DEB_HOST_GNU_CPU)" \ - && export DEB_HOST_GNU_TYPE="$(DEB_HOST_GNU_TYPE)" \ - && export DEB_HOST_GNU_SYSTEM="$(DEB_HOST_GNU_SYSTEM)" \ - && export DEB_BUILD_GNU_CPU="$(DEB_BUILD_GNU_CPU)" \ - && export DEB_BUILD_GNU_TYPE="$(DEB_BUILD_GNU_TYPE)" \ - && export DEB_BUILD_GNU_SYSTEM="$(DEB_BUILD_GNU_SYSTEM)" && (\ - echo -E 'eval "yada () { perl $$(which yada) \"\$$@\"; }"; set -e; set -v';\ - echo -E 'make clean || true') | /bin/sh - yada unpatch - rm -rf debian/tmp - -clean-install-tree: debian/rules - @[ -f $(shell which yada) -a -f debian/rules ] - rm -f debian/install-tree-stamp - rm -rf debian/tmp-* debian/files* debian/substvars debian/shlibs.local debian/ucf +%: + dh $@ --with quilt reverted: --- aylet-0.5/debian/packages +++ aylet-0.5.orig/debian/packages @@ -1,79 +0,0 @@ -# $Id: /svn/trunk/debian/dists/aylet/debian/packages 2422 2007-09-24T15:08:19.987362Z dexter $ -## debian/packages for aylet -## Customised for aylet by Krystian Wlosek - -Source: aylet -Section: otherosfs -Priority: optional -Maintainer: Krystian Wlosek <tyg...@waw.pdi.net> -Uploaders: Piotr Roszatycki <dex...@debian.org> -Standards-Version: 3.7.2 -Upstream-Source: <URL:ftp://ftp.ibiblio.org/pub/Linux/apps/sound/players/aylet-0.5.tar.gz> -Home-Page: <URL:http://rus.members.beeb.net/aylet.html> -Description: player for Spectrum '.ay' music files - aylet plays music files in the `.ay' format. These files are - essentially wrappers around bits of Z80 code which play music on the - Sinclair ZX Spectrum 128's sound hardware - either the beeper, or - (eponymously) the AY-3-8912 sound chip. Files using the Amstrad CPC - ports are also supported. -#Build-Depends: libncurses5-dev, libgtk1.2-dev, libgtk2.0-dev -Build-Depends: libncurses5-dev, libgtk2.0-dev -Copyright: GPL - Copyright (C) 2001-2005 Russell Marks. - Z80 emulation copyright (C) 1994 Ian Collier. -Patches: patches/*.diff -Major-Changes: - [001] Remove gcc warnings. - [002] GTK2 port and replace gtk1.2 version. -Build: sh - CC=${CC:-gcc} - CFLAGS=${CFLAGS:--Wall -g} - LDFLAGS=${LDFLAGS:-} - if [ "${DEB_BUILD_OPTIONS#*noopt}" != "$DEB_BUILD_OPTIONS" ]; then - CFLAGS="$CFLAGS -O0" - else - CFLAGS="$CFLAGS -O2" - fi -# make CFLAGS="$CFLAGS -DDRIVER_OSS" CC="$CC" gtk1 -# cp xaylet aylet-gtk - make CFLAGS="$CFLAGS -DDRIVER_OSS" CC="$CC" clean gtk2 - cp xaylet aylet-gtk2 -Clean: sh - make clean || true - -Package: aylet -Suggests: aylet-gtk -Architecture: any -Description: ncurses-based player for Spectrum '.ay' music files - One source of `.ay' files playable with aylet is "Project AY" - on the World of Spectrum website: - . - http://www.worldofspectrum.org/ -Install: sh - yada install -bin aylet - yada install -man -section 1 -gzip aylet.1 - yada install -doc -as changelog ChangeLog - yada install -doc NEWS README TODO - -Package: aylet-gtk -Suggests: aylet -Architecture: any -Description: X-GTK2-based player for Spectrum '.ay' music files - One source of `.ay' files playable with aylet-gtk is "Project AY" - on the World of Spectrum website: - . - http://www.worldofspectrum.org/ -#Menu: -# ?package(aylet-gtk): needs="X11" \ -# section="Apps/Sound" \ -# title="Aylet" \ -# command="/usr/bin/xaylet" \ -# hints="Player for .ay files" -Install: sh - yada install -bin aylet-gtk2 -as aylet-gtk - yada install -bin xaylet -as aylet-gtk - yada symlink -bin aylet-gtk -as xaylet - yada install -man -section 1 -gzip -as aylet-gtk.1 aylet.1 - yada symlink -man -section 1 -as xaylet.1 aylet-gtk.1 - yada install -doc -as changelog ChangeLog - yada install -doc NEWS README TODO diff -u aylet-0.5/debian/control aylet-0.5/debian/control --- aylet-0.5/debian/control +++ aylet-0.5/debian/control @@ -1,13 +1,16 @@ Source: aylet -Maintainer: Krystian Wlosek <tyg...@waw.pdi.net> -Uploaders: Piotr Roszatycki <dex...@debian.org> +Maintainer: Debian QA Group <packa...@qa.debian.org> Section: otherosfs Priority: optional Standards-Version: 3.7.2 -Build-Depends: libncurses5-dev, libgtk2.0-dev, yada (>= 0.53) +Homepage: http://www.worldofspectrum.org/ +Build-Depends: libncurses5-dev, libgtk2.0-dev, debhelper (>= 8), quilt Package: aylet Architecture: any +Depends: + ${shlibs:Depends}, + ${misc:Depends} Suggests: aylet-gtk Description: ncurses-based player for Spectrum '.ay' music files aylet plays music files in the `.ay' format. These files are @@ -18,11 +21,12 @@ . One source of `.ay' files playable with aylet is "Project AY" on the World of Spectrum website: - . - http://www.worldofspectrum.org/ Package: aylet-gtk Architecture: any +Depends: + ${shlibs:Depends}, + ${misc:Depends} Suggests: aylet Description: X-GTK2-based player for Spectrum '.ay' music files aylet plays music files in the `.ay' format. These files are @@ -36,2 +39,0 @@ - . - http://www.worldofspectrum.org/ only in patch2: unchanged: --- aylet-0.5.orig/debian/aylet-gtk.links +++ aylet-0.5/debian/aylet-gtk.links @@ -0,0 +1,2 @@ +usr/bin/aylet-gtk usr/bin/xaylet +usr/share/man/man1/aylet-gtk.1.gz usr/share/man/man1/xaylet.1.gz only in patch2: unchanged: --- aylet-0.5.orig/debian/aylet-gtk.manpages +++ aylet-0.5/debian/aylet-gtk.manpages @@ -0,0 +1 @@ +aylet-gtk.1 only in patch2: unchanged: --- aylet-0.5.orig/debian/aylet-gtk.install +++ aylet-0.5/debian/aylet-gtk.install @@ -0,0 +1 @@ +aylet-gtk usr/bin only in patch2: unchanged: --- aylet-0.5.orig/debian/compat +++ aylet-0.5/debian/compat @@ -0,0 +1 @@ +8 only in patch2: unchanged: --- aylet-0.5.orig/debian/aylet-gtk.docs +++ aylet-0.5/debian/aylet-gtk.docs @@ -0,0 +1,3 @@ +NEWS +README +TODO only in patch2: unchanged: --- aylet-0.5.orig/debian/aylet.docs +++ aylet-0.5/debian/aylet.docs @@ -0,0 +1,3 @@ +NEWS +README +TODO only in patch2: unchanged: --- aylet-0.5.orig/debian/copyright +++ aylet-0.5/debian/copyright @@ -0,0 +1,15 @@ +This is a prepackaged version of player for Spectrum '.ay' music files. +It was Debianised by Krystian Wlosek <tyg...@waw.pdi.net>, and uploaded +by Piotr Roszatycki <dex...@debian.org>, using files obtained from +<URL:ftp://ftp.ibiblio.org/pub/Linux/apps/sound/players/aylet-0.5.tar.gz>. + +More information about player for Spectrum '.ay' music files is available +from <URL:http://rus.members.beeb.net/aylet.html> + +Copyright and licence notice: + + Copyright (C) 2001-2005 Russell Marks. + Z80 emulation copyright (C) 1994 Ian Collier. + +On any Debian system, you can find the complete text of the GNU GPL +(GNU General Public License) in the file /usr/share/common-licenses/GPL only in patch2: unchanged: --- aylet-0.5.orig/debian/aylet.manpages +++ aylet-0.5/debian/aylet.manpages @@ -0,0 +1 @@ +aylet.1 only in patch2: unchanged: --- aylet-0.5.orig/debian/aylet.install +++ aylet-0.5/debian/aylet.install @@ -0,0 +1 @@ +aylet usr/bin only in patch2: unchanged: --- aylet-0.5.orig/debian/patches/series +++ aylet-0.5/debian/patches/series @@ -0,0 +1,6 @@ +1_ui.c.diff +2_uigtk.diff +3_gtk2_Makefile.diff +3_gtk2_uigtk.c.diff +4_Makefile_clean_bug442501.diff +5_aylet.1_hypen.diff
signature.asc
Description: Digital signature