--- konfont-0.1.orig/debian/changelog +++ konfont-0.1/debian/changelog @@ -0,0 +1,62 @@ +konfont (0.1-8.1) unstable; urgency=medium + + * Non maintainer upload by the Reproducible Builds team. + * No source change upload to rebuild on buildd with .buildinfo files. + + -- Holger Levsen Mon, 04 Jan 2021 15:38:23 +0100 + +konfont (0.1-8) unstable; urgency=low + + * cleanup debian/rules, closes: #477590 + + -- ISHIKAWA Mutsumi Thu, 05 Jun 2008 08:56:34 +0900 + +konfont (0.1-7) unstable; urgency=low + + * maintainer mail address change + * migrate to Colin's build system + + -- ISHIKAWA Mutsumi Thu, 22 May 2003 03:11:15 +0900 + +konfont (0.1-6) unstable; urgency=low + + * cleanup debian/rules + * adapt policy 3.5.8 + + -- ISHIKAWA Mutsumi Sun, 22 Dec 2002 03:21:53 +0900 + +konfont (0.1-5) unstable; urgency=low + + * change rules to use debhelper + * adopt policy 3.5.2.0 + * close: Bug#91528 + + -- ISHIKAWA Mutsumi Mon, 26 Mar 2001 17:28:31 +0900 + +konfont (0.1-4) unstable; urgency=low + + * New maintainer. + * adopt FHS. + * source cleanup + + -- ISHIKAWA Mutsumi Thu, 20 May 1999 00:47:31 +0900 + +konfont (0.1-3) unstable; urgency=low + + * Initial Release for Debian Project. + + -- Yoshiaki Yanagihara Fri, 21 Mar 1997 12:22:45 +0900 + +konfont (0.1-2) unstable; urgency=low + + * Change section from misc to utils. + * New Standards-Version: 2.1.2.2 + * Change priority to important. + + -- Yoshiaki Yanagihara Wed, 29 Jan 1997 01:51:25 +0900 + +konfont (0.1-1) unstable; urgency=high + + * Initial Release. (For Debian-JP project) + + -- Yoshiaki Yanagihara Wed, 11 Dec 1996 03:03:36 +0900 --- konfont-0.1.orig/debian/compat +++ konfont-0.1/debian/compat @@ -0,0 +1 @@ +7 --- konfont-0.1.orig/debian/control +++ konfont-0.1/debian/control @@ -0,0 +1,14 @@ +Source: konfont +Section: utils +Priority: optional +Maintainer: ISHIKAWA Mutsumi +Build-Depends: debhelper (>= 7) +Standards-Version: 3.7.3.0 + +Package: konfont +Architecture: all +Conflicts: kon-font, pubfont +Replaces: kon-font, pubfont +Description: Public domain japanese fonts for KON2 + This package is public domain japanese fonts + customized for kon2 Japanese console package. --- konfont-0.1.orig/debian/copyright +++ konfont-0.1/debian/copyright @@ -0,0 +1,13 @@ +This package was debianized by Yoshiaki Yanagihara yochi@linux.or.jp on +Wed, 29 Jan 1997 01:51:25 +0900. + +Maintainer Change from Yoshiaki Yanagihara to +ISHIKAWA Mutsumi on Thu May 20 00:50:27 JST 1999 + +It was downloaded from ftp.tut.ac.jp:/Linux/JE-0.9.8a/install/konfont.tgz + +Copyright: + +COPYRIGHT "Public domain font. Share and enjoy." +Donated by H. Kagotani ; +Public domain font from Japan. --- konfont-0.1.orig/debian/konfont.install +++ konfont-0.1/debian/konfont.install @@ -0,0 +1 @@ +fonts/pubfont.* usr/share/fonts/kon --- konfont-0.1.orig/debian/rules +++ konfont-0.1/debian/rules @@ -0,0 +1,61 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +configure: configure-stamp +configure-stamp: + dh_testdir + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_install + dh_installman + dh_link + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build install + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure