Просмотр исходного кода

Get rid of $Id$ keywords.

pull/1/head
Sam Hocevar sam 16 лет назад
Родитель
Сommit
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




Загрузка…
Отмена
Сохранить