diff --git a/README b/README index 6f3d1f8..4bde3c8 100644 --- a/README +++ b/README @@ -1,19 +1,19 @@ Lua-iconv: performs character set conversions in Lua - (c) 2005-06 Alexandre Erwin Ittner - Project page: http://lua-iconv.luaforge.net/ + (c) 2005-07 Alexandre Erwin Ittner + Project page: http://lua-iconv.luaforge.net/ === INTRODUCTION === -Lua-iconv is a Lua binding to the POSIX 'iconv' library. The iconv -library converts a sequence of characters from one codeset into a +Lua-iconv is POSIX 'iconv' binding for the Lua Programming Language. The +iconv library converts a sequence of characters from one codeset into a sequence of corresponding characters in another codeset. The codesets are those specified in the iconv.new() call that returned the conversion descriptor, cd. -Lua-iconv r2 *requires* Lua 5.1. If you are using Lua 5.0, please use the -previous version (lua-iconv-r1). +Lua-iconv r3 *requires* Lua 5.1. If you are using Lua 5.0, please use the +first release (lua-iconv-r1). Details regarding iconv may be obtained from: http://www.opengroup.org/onlinepubs/007908799/xsh/iconv.h.html @@ -22,7 +22,7 @@ http://www.opengroup.org/onlinepubs/007908799/xsh/iconv.h.html === LICENSE === -Lua-iconv is (c) 2005-06 Alexandre Erwin Ittner +Lua-iconv is (c) 2005-07 Alexandre Erwin Ittner Lua-iconv is copyrighted free software: it can be used for both academic and commercial purposes at absolutely no cost. There are no royalties @@ -122,3 +122,6 @@ nstr, err = cd:iconv(str) iconv.ERROR_UNKNOWN There was an unknown error. + +=== EOF === + diff --git a/debian/changelog b/debian/changelog index fcdd039..26192e4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ -lua-iconv (3r3-1) unstable; urgency=low +lua-iconv (0.r3-1) unstable; urgency=low - * Initial release Closes: #nnnn (nnnn is the bug number of your ITP) + * First release in .deb format. -- Alexandre Erwin Ittner Wed, 3 Feb 2007 00:20:09 -0200 diff --git a/debian/control b/debian/control index e6f666b..dd71793 100644 --- a/debian/control +++ b/debian/control @@ -10,6 +10,6 @@ Architecture: any Depends: ${shlibs:Depends} Recommends: lua5.1 Description: iconv bindings for the Lua Programming Language - Lua-iconv is a Lua binding to the POSIX 'iconv' library, that converts a - sequence of characters from one codeset into a sequence of corresponding - characters in another codeset. + Lua-iconv is POSIX 'iconv' binding for the Lua Programming Language. It + converts a sequence of characters from one codeset into a sequence of + corresponding characters in another codeset. diff --git a/debian/rules b/debian/rules index 17c88f6..4a41597 100755 --- a/debian/rules +++ b/debian/rules @@ -8,7 +8,7 @@ #export DH_VERBOSE=1 # This is the debhelper compatability version to use. -export DH_COMPAT=3 +export DH_COMPAT=4 LUAPKG=lua5.1 INSTALL_PATH=`pkg-config $(LUAPKG) --variable=INSTALL_CMOD` @@ -42,7 +42,7 @@ install: build dh_installdirs mkdir -p debian/lua-iconv/usr/share/doc/lua-iconv - mkdir -p debian/lua-iconvs/$(INSTALL_PATH) + mkdir -p debian/lua-iconv/$(INSTALL_PATH) cp iconv.so debian/lua-iconv/$(INSTALL_PATH) cp README COPYING test_iconv.lua debian/lua-iconv/usr/share/doc/lua-iconv/ diff --git a/maketargz.sh b/maketargz.sh index 907bec3..4e40d98 100755 --- a/maketargz.sh +++ b/maketargz.sh @@ -1,7 +1,7 @@ #!/bin/sh PACKAGE=lua-iconv -VERSION=r2 +VERSION=r3 DIRNAME=$PACKAGE-$VERSION TGZNAME=$DIRNAME.tar.gz @@ -9,7 +9,7 @@ TGZNAME=$DIRNAME.tar.gz rm -f $TGZNAME mkdir $DIRNAME -cp COPYING Makefile README luaiconv.c test_iconv.lua $DIRNAME +cp -r debian COPYING Makefile README luaiconv.c test_iconv.lua $DIRNAME tar -czf $TGZNAME $DIRNAME rm -rf $DIRNAME