From 9e9a0ea24fd1c8d01e214778f8b9122762db2f40 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Sat, 17 Sep 2011 13:03:17 -0400 Subject: New release --- CHANGELOG | 16 +++++++++++++--- configure | 22 +++++++++++----------- configure.ac | 4 ++-- ltmain.sh | 4 ++-- urweb.ebuild | 5 +---- 5 files changed, 29 insertions(+), 22 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 0e677365..fb7d6704 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,14 +1,24 @@ ======== -Next +20110917 ======== - Start of official tutorial - Compiler support for generating nice tutorial HTML from literate source files - New protocol 'static' for generating static pages -- Replace GCCARGS configure variable with CCARGS +- Replace GCCARGS 'configure' variable with CCARGS +- Better support for compilation with Clang (including on OS X) +- Fancier 'configure' script with versioning - Applications consult URWEB_STACK_SIZE environment variable to determine thread stack size -- Bug fixes +- HTML tag IDs now drawn from an abstract type +- New Basis functions: diffInSeconds, mkMonad, onClick, onDblclick, onKeydown, + onKeypress, onKeyup, onMousedown, onMouseup, preventDefault, stopPropagation, + toSeconds +- Add tag +- Add 'target' attribute for +- New compiler command-line option: -dumpTypes +- New syntactic sugar for computed ORDER BY clauses +- Bug fixes and optimization improvements ======== 20110715 diff --git a/configure b/configure index bdcb5eb1..567c9461 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.68 for urweb 20110715. +# Generated by GNU Autoconf 2.68 for urweb 20110917. # # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, @@ -567,8 +567,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='urweb' PACKAGE_TARNAME='urweb' -PACKAGE_VERSION='20110715' -PACKAGE_STRING='urweb 20110715' +PACKAGE_VERSION='20110917' +PACKAGE_STRING='urweb 20110917' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -1305,7 +1305,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures urweb 20110715 to adapt to many kinds of systems. +\`configure' configures urweb 20110917 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1375,7 +1375,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of urweb 20110715:";; + short | recursive ) echo "Configuration of urweb 20110917:";; esac cat <<\_ACEOF @@ -1478,7 +1478,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -urweb configure 20110715 +urweb configure 20110917 generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. @@ -1843,7 +1843,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by urweb $as_me 20110715, which was +It was created by urweb $as_me 20110917, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ @@ -2191,7 +2191,7 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $ ac_compiler_gnu=$ac_cv_c_compiler_gnu -WORKING_VERSION=1 +WORKING_VERSION=0 ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -3970,7 +3970,7 @@ fi # Define the identity of the package. PACKAGE='urweb' - VERSION='20110715' + VERSION='20110917' # Some tools Automake needs. @@ -13126,7 +13126,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by urweb $as_me 20110715, which was +This file was extended by urweb $as_me 20110917, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -13192,7 +13192,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -urweb config.status 20110715 +urweb config.status 20110917 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 970ceee0..eda0c7a7 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ -AC_INIT([urweb], [20110715]) -WORKING_VERSION=1 +AC_INIT([urweb], [20110917]) +WORKING_VERSION=0 AC_USE_SYSTEM_EXTENSIONS AM_INIT_AUTOMAKE([-Wall -Werror foreign no-define]) AC_PROG_CC() diff --git a/ltmain.sh b/ltmain.sh index 6f650ae8..c7bf234f 100755 --- a/ltmain.sh +++ b/ltmain.sh @@ -69,7 +69,7 @@ # compiler: $LTCC # compiler flags: $LTCFLAGS # linker: $LD (gnu? $with_gnu_ld) -# $progname: (GNU libtool) 2.4 Debian-2.4-2 +# $progname: (GNU libtool) 2.4 Debian-2.4-4 # automake: $automake_version # autoconf: $autoconf_version # @@ -79,7 +79,7 @@ PROGRAM=libtool PACKAGE=libtool -VERSION="2.4 Debian-2.4-2" +VERSION="2.4 Debian-2.4-4" TIMESTAMP="" package_revision=1.3293 diff --git a/urweb.ebuild b/urweb.ebuild index 5b4693d1..750e0db6 100644 --- a/urweb.ebuild +++ b/urweb.ebuild @@ -1,9 +1,6 @@ # Distributed under the terms of the BSD3 license -# This file needs to be renamed to something like "urweb-20110123.ebuild", to reflect the Ur/Web version to use. -# It won't work with versions from Ur/Web Mercurial repository snapshots older than this file. -# (The specific version number referenced above is an example of a version that _won't_ work! -# There hasn't yet been an official release that will.) +# This file needs to be renamed to something like "urweb-20110917.ebuild", to reflect the Ur/Web version to use. inherit eutils -- cgit v1.2.3