From 3d820e1a5f12651bd20e614fda8f962cab269618 Mon Sep 17 00:00:00 2001 From: joey Date: Thu, 4 Oct 2001 23:32:41 +0000 Subject: [PATCH] * Wrote elmer fudd filter in perl, replacment for a long-removed lex filter of uncertian authorship and copyright. Closes: #109157 --- Makefile | 2 +- debian/changelog | 7 +++++++ filters.6 | 4 +++- fudd | 14 ++++++++++++++ 4 files changed, 25 insertions(+), 2 deletions(-) create mode 100755 fudd diff --git a/Makefile b/Makefile index e80d129..3e05b6e 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ LEX = flex BUILD = jethro kraut cockney jive nyc ken ky00te newspeak -OTHER = eleet b1ff chef jibberish upside-down rasterman studly +OTHER = eleet b1ff chef jibberish upside-down rasterman studly fudd all: $(OTHER) $(BUILD) diff --git a/debian/changelog b/debian/changelog index a46f423..7550862 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +filters (2.21) unstable; urgency=low + + * Wrote elmer fudd filter in perl, replacment for a long-removed + lex filter of uncertian authorship and copyright. Closes: #109157 + + -- Joey Hess Thu, 4 Oct 2001 19:32:00 -0400 + filters (2.20) unstable; urgency=low * Woo hoo! JWZ has placed newspeak under a BSD-ish license, so it moves diff --git a/filters.6 b/filters.6 index aa36a3d..9499740 100644 --- a/filters.6 +++ b/filters.6 @@ -1,6 +1,6 @@ .TH FILTERS 6 .SH NAME -ken, b1ff, chef, cockney, eleet, jethro, jibberish, jive, kraut, ky00te, newspeak, nyc, rasterman, studly, upside-down \- assorted text filters +ken, b1ff, chef, cockney, eleet, fudd, jethro, jibberish, jive, kraut, ky00te, newspeak, nyc, rasterman, studly, upside-down \- assorted text filters .SH SYNOPSIS $SHELL | chef .SH "DESCRIPTION" @@ -17,6 +17,8 @@ Cockney English convert English on stdin to Mock Swedish on stdout .IP eleet K3wl hacker slang +.IP fudd +Elmer Fudd .IP jethro Hillbilly text filter .IP jive diff --git a/fudd b/fudd new file mode 100755 index 0000000..71460f2 --- /dev/null +++ b/fudd @@ -0,0 +1,14 @@ +#!/usr/bin/perl -p +# Elmer Fudd. GPL 2001 by Joey Hess +s/[rl]/w/g; +s/qu/qw/g; +s/th\b/f/g; +s/th\B/d/g; +s/n\./n, uh-hah-hah-hah. /g; +s/[RL]/W/g; +s/Qu/Qw/g; +s/QU/QW/g; +s/TH\b/F/g; +s/TH\B/D/g; +s/Th/D/g; +s/N\./N, uh-hah-hah-hah./g; -- 2.30.2