Released version 2.5
git-svn-id: https://shellinabox.googlecode.com/svn/trunk@84 0da03de8-d603-11dd-86c2-0f8696b7b6f9
This commit is contained in:
parent
b2737d02f6
commit
0ac80a7829
8 changed files with 2578 additions and 2209 deletions
|
@ -1,3 +1,9 @@
|
|||
2009-03-21 Markus Gutschke <markus@shellinabox.com>
|
||||
|
||||
* Released version 2.5
|
||||
|
||||
* More testing on older IE versions.
|
||||
|
||||
2009-03-19 Markus Gutschke <markus@shellinabox.com>
|
||||
|
||||
* Fixed cursor positioning. Hopefully, more browsers will be happy
|
||||
|
|
|
@ -233,6 +233,7 @@ sharedstatedir = @sharedstatedir@
|
|||
srcdir = @srcdir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target_alias = @target_alias@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
AM_CPPFLAGS =
|
||||
|
|
6
aclocal.m4
vendored
6
aclocal.m4
vendored
|
@ -13,15 +13,15 @@
|
|||
|
||||
m4_ifndef([AC_AUTOCONF_VERSION],
|
||||
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
|
||||
m4_if(AC_AUTOCONF_VERSION, [2.61],,
|
||||
[m4_warning([this file was generated for autoconf 2.61.
|
||||
m4_if(AC_AUTOCONF_VERSION, [2.63],,
|
||||
[m4_warning([this file was generated for autoconf 2.63.
|
||||
You have another version of autoconf. It may work, but is not guaranteed to.
|
||||
If you have problems, you may need to regenerate the build system entirely.
|
||||
To do so, use the procedure documented by the package, typically `autoreconf'.])])
|
||||
|
||||
# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
|
||||
|
||||
# serial 52 Debian 1.5.26-1ubuntu1 AC_PROG_LIBTOOL
|
||||
# serial 52 Debian 1.5.26-4 AC_PROG_LIBTOOL
|
||||
|
||||
|
||||
# AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED)
|
||||
|
|
57
commit
Executable file
57
commit
Executable file
|
@ -0,0 +1,57 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
trap 'tput bel || :; echo Failed! >&2' EXIT
|
||||
|
||||
yes_no() {
|
||||
local c
|
||||
while :; do
|
||||
c="$(set +e
|
||||
trap 'stty echo -iuclc icanon 2>/dev/null' EXIT INT TERM QUIT
|
||||
stty -echo iuclc -icanon 2>/dev/null
|
||||
dd count=1 bs=1 2>/dev/null | od -An -tx1)"
|
||||
case "$c" in
|
||||
" 0a") if [ -n "$1" ]; then
|
||||
[ $1 -eq 0 ] && echo "Y" || echo "N"
|
||||
return $1
|
||||
fi
|
||||
;;
|
||||
" 79") echo "Y"
|
||||
return 0
|
||||
;;
|
||||
" 6e") echo "N"
|
||||
return 1
|
||||
;;
|
||||
"") echo "Aborted" >&2
|
||||
exit 1
|
||||
;;
|
||||
*) # The user pressed an unrecognized key. As we are not echoing
|
||||
# any incorrect user input, alert the user by ringing the bell.
|
||||
(tput bel) 2>/dev/null || :
|
||||
;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
test -r configure.ac
|
||||
svn update
|
||||
rev=$(($(svn info | sed -e 's/^Revision: \(.*\)/\1/;t1;d;:1;q')+1))
|
||||
prj="$(sed -e 's/^AC_INIT(\([^,]*\),.*/\1/;t1;d;:1;q' configure.ac)"
|
||||
ver="$(sed -e 's/^AC_INIT([^,]*, *\([^,]*\),.*/\1/;t1;d;:1;q' configure.ac)"
|
||||
sed -ie 's/^\(VCS_REVISION=\).*/\1'"${rev}"'/' configure.ac
|
||||
make all distcheck
|
||||
( trap 'rm -rf "${prj}-${ver}"' EXIT
|
||||
rm -f "${prj}-${ver}" &&
|
||||
tar zfx "${prj}-${ver}.tar.gz" &&
|
||||
cd "${prj}-${ver}" &&
|
||||
{ fakeroot dpkg-buildpackage || :; } &&
|
||||
cd .. &&
|
||||
rm -f $(ls "${prj}_${ver}-"*.* | egrep -v '.deb$') ) || :
|
||||
svn diff $(svn st |
|
||||
egrep -v ' configure$| aclocal.m4$|^[?]' |
|
||||
sed -e 's/^[^ ]* *//') | less
|
||||
echo -n 'Commit these changes (Y/n): '
|
||||
yes_no 0 || exit 1
|
||||
svn commit
|
||||
|
||||
trap '' EXIT
|
||||
exit 0
|
8
config.h
8
config.h
|
@ -83,22 +83,22 @@
|
|||
#define PACKAGE_NAME "shellinabox"
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#define PACKAGE_STRING "shellinabox 2.4"
|
||||
#define PACKAGE_STRING "shellinabox 2.5"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define PACKAGE_TARNAME "shellinabox"
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define PACKAGE_VERSION "2.4"
|
||||
#define PACKAGE_VERSION "2.5"
|
||||
|
||||
/* Define to 1 if you have the ANSI C header files. */
|
||||
#define STDC_HEADERS 1
|
||||
|
||||
/* Most recent revision number in the version control system */
|
||||
#define VCS_REVISION "82"
|
||||
#define VCS_REVISION "84"
|
||||
|
||||
/* Version number of package */
|
||||
#define VERSION "2.4"
|
||||
#define VERSION "2.5"
|
||||
|
||||
/* Define to empty if `const' does not conform to ANSI C. */
|
||||
/* #undef const */
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
AC_PREREQ(2.57)
|
||||
|
||||
dnl This is the one location where the authoritative version number is stored
|
||||
AC_INIT(shellinabox, 2.4, markus@shellinabox.com)
|
||||
VCS_REVISION=`echo '$Rev$'|sed 's/.Rev: \(.*\) ./\1/'`
|
||||
AC_INIT(shellinabox, 2.5, markus@shellinabox.com)
|
||||
VCS_REVISION=84
|
||||
AC_SUBST(VCS_REVISION)
|
||||
AC_DEFINE_UNQUOTED(VCS_REVISION, "${VCS_REVISION}",
|
||||
[Most recent revision number in the version control system])
|
||||
|
|
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -1,3 +1,9 @@
|
|||
shellinabox (2.5-1) unstable; urgency=low
|
||||
|
||||
* New upstream release, version 2.5.
|
||||
|
||||
-- Markus Gutschke <markus@shellinabox.com> Sat, 21 Mar 2009 08:31:52 -0800
|
||||
|
||||
shellinabox (2.4-1) unstable; urgency=low
|
||||
|
||||
* New upstream release, version 2.4.
|
||||
|
|
Loading…
Reference in a new issue