瀏覽代碼

Get rid of $Id$ keywords.

pull/1/head
Sam Hocevar sam 16 年之前
父節點
當前提交
2c63c7ada7
共有 18 個文件被更改,包括 2 次插入35 次删除
  1. +0
    -1
      NEWS
  2. +0
    -1
      README
  3. +0
    -1
      TODO
  4. +0
    -1
      bootstrap
  5. +2
    -8
      configure.ac
  6. +0
    -1
      doc/Makefile.am
  7. +0
    -2
      src/export.c
  8. +0
    -2
      src/export.h
  9. +0
    -2
      src/figlet.c
  10. +0
    -2
      src/filter.c
  11. +0
    -2
      src/filter.h
  12. +0
    -2
      src/main.c
  13. +0
    -2
      src/render.c
  14. +0
    -2
      src/render.h
  15. +0
    -2
      src/term.c
  16. +0
    -2
      src/toilet.h
  17. +0
    -1
      test/Makefile.am
  18. +0
    -1
      tools/Makefile.am

+ 0
- 1
NEWS 查看文件

@@ -1,4 +1,3 @@
$Id$


New in 0.1: New in 0.1:
- initial release - initial release


+ 0
- 1
README 查看文件

@@ -1,4 +1,3 @@
$Id$


This is experimental software. Do not rely on it for strong and This is experimental software. Do not rely on it for strong and
secure ASCII art generation, it will only output ugly things. secure ASCII art generation, it will only output ugly things.


+ 0
- 1
TODO 查看文件

@@ -1,4 +1,3 @@
$Id$


FIGlet features that we are still missing: FIGlet features that we are still missing:
- vertical smushing - vertical smushing


+ 0
- 1
bootstrap 查看文件

@@ -1,5 +1,4 @@
#! /bin/sh #! /bin/sh
# $Id$


# bootstrap: generic bootstrap/autogen.sh script for autotools projects # bootstrap: generic bootstrap/autogen.sh script for autotools projects
# #


+ 2
- 8
configure.ac 查看文件

@@ -1,4 +1,3 @@
# $Id$


AC_INIT(toilet, 0.1) AC_INIT(toilet, 0.1)


@@ -62,13 +61,8 @@ PKG_CHECK_MODULES(CACA, caca >= 0.99.beta17,
AC_MSG_ERROR([you need libcaca version 0.99.beta17 or later])]) AC_MSG_ERROR([you need libcaca version 0.99.beta17 or later])])


AC_MSG_CHECKING([for release date]) AC_MSG_CHECKING([for release date])
stamp="$(sed -ne 's/# \$Id: .*\(....-..-..\).*/\1/p;q' configure.ac)"
if date +"%e %B %Y" -d "$stamp" >/dev/null 2>&1; then
ac_build_date="$(LANG=C date +"%e %B %Y" -d "$stamp" | sed 's/^ //')"
else
tmp="${stamp%-*}"
ac_build_date="${stamp##*-} ${tmp#*-} ${stamp%%-*}"
fi
tmp="${stamp%-*}"
ac_build_date="${stamp##*-} ${tmp#*-} ${stamp%%-*}"
AC_MSG_RESULT([$ac_build_date]) AC_MSG_RESULT([$ac_build_date])
AC_DEFINE_UNQUOTED(DATE, "$ac_build_date", [Define the version date]) AC_DEFINE_UNQUOTED(DATE, "$ac_build_date", [Define the version date])




+ 0
- 1
doc/Makefile.am 查看文件

@@ -1,4 +1,3 @@
# $Id: Makefile.am 871 2006-09-25 15:58:33Z sam $


EXTRA_DIST = toilet.1.in EXTRA_DIST = toilet.1.in
CLEANFILES = toilet.1 CLEANFILES = toilet.1


+ 0
- 2
src/export.c 查看文件

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net> * Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved * All Rights Reserved
* *
* $Id$
*
* This program is free software. It comes without any warranty, to * This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it * the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want * and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 2
src/export.h 查看文件

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net> * Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved * All Rights Reserved
* *
* $Id$
*
* This program is free software. It comes without any warranty, to * This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it * the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want * and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 2
src/figlet.c 查看文件

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net> * Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved * All Rights Reserved
* *
* $Id$
*
* This program is free software. It comes without any warranty, to * This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it * the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want * and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 2
src/filter.c 查看文件

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net> * Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved * All Rights Reserved
* *
* $Id$
*
* This program is free software. It comes without any warranty, to * This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it * the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want * and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 2
src/filter.h 查看文件

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net> * Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved * All Rights Reserved
* *
* $Id$
*
* This program is free software. It comes without any warranty, to * This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it * the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want * and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 2
src/main.c 查看文件

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net> * Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved * All Rights Reserved
* *
* $Id$
*
* This program is free software. It comes without any warranty, to * This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it * the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want * and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 2
src/render.c 查看文件

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net> * Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved * All Rights Reserved
* *
* $Id$
*
* This program is free software. It comes without any warranty, to * This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it * the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want * and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 2
src/render.h 查看文件

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net> * Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved * All Rights Reserved
* *
* $Id$
*
* This program is free software. It comes without any warranty, to * This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it * the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want * and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 2
src/term.c 查看文件

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net> * Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved * All Rights Reserved
* *
* $Id$
*
* This program is free software. It comes without any warranty, to * This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it * the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want * and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 2
src/toilet.h 查看文件

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net> * Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved * All Rights Reserved
* *
* $Id$
*
* This program is free software. It comes without any warranty, to * This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it * the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want * and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 1
test/Makefile.am 查看文件

@@ -1,4 +1,3 @@
# $Id$


EXTRA_DIST = check-build check-fonts EXTRA_DIST = check-build check-fonts




+ 0
- 1
tools/Makefile.am 查看文件

@@ -1,4 +1,3 @@
# $Id: Makefile.am 929 2006-10-20 16:19:41Z sam $


noinst_PROGRAMS = caca2tlf noinst_PROGRAMS = caca2tlf




Loading…
取消
儲存