debian/0000755000000000000000000000000012176430430007166 5ustar debian/lintian-overrides0000644000000000000000000000016012176427030012546 0ustar # empty dummy script to ensure clean upgrades, to be removed after jessie release maintainer-script-empty prerm debian/changelog0000644000000000000000000000430512176430376011053 0ustar yiyantang (0.7.0-5) unstable; urgency=low * QA upload. * Add dummy empty prerm script to ensure clean upgrades. -- Andreas Beckmann Thu, 01 Aug 2013 11:57:18 +0200 yiyantang (0.7.0-4) unstable; urgency=low * QA upload. * Set Maintainer to Debian QA Group. (See #629017) * Convert to 3.0 (quilt) package format. * Bump Standards-Version to 3.9.4. * Switch to debhelper 9 and minimal dh --with autotools_dev rules. * Rebuilding with newer debhelper stops install-info usage. (Closes: #708502) * d/copyright: Refer to GPL-2 and add missing copyright statement. * Fix typo in manpage. * Remove cruft from debian/. * Fix lintian warnings. -- Andreas Beckmann Wed, 31 Jul 2013 11:05:56 +0200 yiyantang (0.7.0-3.1) unstable; urgency=low * Non-maintainer upload. * debian/rules: - Fix bashisms (Closes: #383784). - Fix debian-rules-ignores-make-clean-error lintian warning. - Do not call dh_suidregister * Use python/compat, fix debian-rules-sets-DH_COMPAT lintian warning. * debian/copyright: - Fix copyright-lists-upstream-authors-with-dh_make-boilerplate lintian warning by removing "(s)". -- Luca Falavigna Wed, 16 Jan 2008 13:49:43 +0100 yiyantang (0.7.0-3) unstable; urgency=low * update config.guess and config.sub. (Closes:Bug#300386,Bug#345239) -- Yu Guanghui Wed, 9 Aug 2006 17:16:00 +0800 yiyantang (0.7.0-2) unstable; urgency=low * patch for gcc-3.4. (closes:Bug#263194) -- Yu Guanghui Sat, 7 Aug 2004 23:39:51 +0800 yiyantang (0.7.0-1) unstable; urgency=low * New upstream release -- Yu Guanghui Sun, 17 Jun 2001 10:28:10 +0800 yiyantang (0.3.3-3) unstable; urgency=low * Fixed m68k autobuild fault. (closes: Bug#97347) -- Yu Guanghui Tue, 15 May 2001 10:51:52 +0800 yiyantang (0.3.3-2) unstable; urgency=low * Changed short description. (closes: bug#96187) -- Yu Guanghui Sat, 5 May 2001 18:31:11 +0800 yiyantang (0.3.3-1) unstable; urgency=low * Initial Release. -- Yu Guanghui Tue, 1 May 2001 22:23:01 +0800 Local variables: mode: debian-changelog End: debian/prerm0000644000000000000000000000027012176426502010242 0ustar #!/bin/sh set -e # this is a dummy empty prerm script to ensure clean upgrades # if the prerm from the old package fails # this file can be removed after jessie release #DEBHELPER# debian/rules0000755000000000000000000000011112176151553010245 0ustar #!/usr/bin/make -f #export DH_VERBOSE=1 %: dh $@ --with autotools_dev debian/control0000644000000000000000000000123312176150731010573 0ustar Source: yiyantang Build-Depends: debhelper (>= 9), autotools-dev, libtool, libhz-dev, Section: text Priority: optional Maintainer: Debian QA Group Standards-Version: 3.9.4 Package: yiyantang Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: Terminal-based Chinese automatic encoding converter yyt is a pseudo-tty program that converts Chinese terminal output encoded in GB/BIG5 to a preset encoding automatically. It is useful for users who have to work with multiple Chinese encoding in console applications. Now it also converts input to the incoming encoding if the incoming encoding is set explicitly. debian/patches/0000755000000000000000000000000012176150620010615 5ustar debian/patches/fix-manpage.diff0000644000000000000000000000154612176150600013647 0ustar Description: fix misspelling and hyphenation Author: Andreas Beckmann --- yiyantang-0.7.0.orig/doc/C/yyt.1 +++ yiyantang-0.7.0/doc/C/yyt.1 @@ -13,7 +13,7 @@ along with this program; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. - Use comman 'groff -t -e -mandoc -Tascii yyt.1' to get the file. + Use comman 'groff \-t \-e \-mandoc \-Tascii yyt.1' to get the file. .. .TH YYT 1 "June 2001" YiYanTang "Yi Yan Tang User Manual" .\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" @@ -151,7 +151,7 @@ terminal encoding to the incoming encodi .SH ENVIRONMENT .IP LC_CTYPE If set, the incoming encoding will be set to the encoding of LC_CTYPE. -LC_CTYPE will be Overriden by the +LC_CTYPE will be Overridden by the .B \-\-to command line option. .IP SHELL debian/patches/misc-fixes.diff0000644000000000000000000000215612176150446013530 0ustar Description: misc fixes from before 0.7.0-4 Author: Andreas Beckmann --- yiyantang-0.7.0.orig/doc/C/Makefile.in +++ yiyantang-0.7.0/doc/C/Makefile.in @@ -352,7 +352,8 @@ install-data: install-data-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am -install: install-am +#install: install-am +#we dont install here ;-) uninstall-am: uninstall-info uninstall-man uninstall: uninstall-am all-am: Makefile $(INFO_DEPS) $(MANS) --- yiyantang-0.7.0.orig/src/xmalloc.c +++ yiyantang-0.7.0/src/xmalloc.c @@ -64,11 +64,7 @@ char *xstrdup (char *p); The caller may set it to some other value. */ int xmalloc_exit_failure = EXIT_FAILURE; -#if __STDC__ && (HAVE_VPRINTF || HAVE_DOPRNT) void error (int, int, const char *, ...); -#else -void error (); -#endif static VOID * fixup_null_alloc (n) --- yiyantang-0.7.0.orig/src/setty.c +++ yiyantang-0.7.0/src/setty.c @@ -41,6 +41,11 @@ extern char *ptsname (int); static struct termios save_termios; static int ttysavefd = -1; + +#undef RESET +#undef RAW +#undef CBREAK + static enum { RESET, RAW, CBREAK } ttystate = RESET; debian/patches/series0000644000000000000000000000004112176150515012030 0ustar misc-fixes.diff fix-manpage.diff debian/watch0000644000000000000000000000013112176147473010226 0ustar # the original download location http://yiyantang.on.openave.net/ # does no longer exist debian/copyright0000644000000000000000000000073612176065027011135 0ustar This package was debianized by Yu Guanghui on Tue, 1 May 2001 22:23:01 +0800. It was downloaded from http://yiyantang.on.openave.net/ Upstream Author: hashao Copyright: Copyright (C) 2001 ha shao This program is released under GPL license version 2. Please read COPYING before you use the program. On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2'. debian/manpages0000644000000000000000000000001412176057063010706 0ustar doc/C/yyt.1 debian/info0000644000000000000000000000001712176057054010051 0ustar doc/C/yyt.info debian/source/0000755000000000000000000000000012176147613010476 5ustar debian/source/format0000644000000000000000000000001412176147612011703 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000212176054513010370 0ustar 9 debian/docs0000644000000000000000000000004712176047330010045 0ustar AUTHORS README TODO USAGE HACKING BUGS