Changeset 874


Ignore:
Timestamp:
Nov 22, 2009, 11:53:21 PM (14 years ago)
Author:
Peter Johansson
Message:

merging release 0.7. Delta /tags/0.7 - /branches/0.7-stable@848

Due to problems with 'svn merge' (skipping added files?), I've copied
added files manually.

Location:
trunk
Files:
1 deleted
5 edited
4 copied

Legend:

Unmodified
Added
Removed
  • trunk/Makefile.am

    r853 r874  
    3232  rm -rf svndigest *~
    3333
    34 if ENABLE_SVN_SUPPORT
    35 include build_support/svn_support.am
    36 else
    37 release:
    38   @echo "ERROR: target 'release' not activated."
    39   @echo "       You need to run configure with '--enable-svn-support'."
    40   @exit 1
    41 endif
    42 
    43 
    4434# This is a workaround to avoid a broken make when .m4 files are
    4535# renamed or deleted. Something similar will be provided by Automake 1.11
    4636$(am__aclocal_m4_deps):
    4737
    48 ## FIXME remove this (when 0.7 has been merged into trunk)
    49 # avoid broken Makefile at future removal of am file
    50 $(srcdir)/build_support/svn_support.am:
     38##############################################################
     39##
     40## Some rules useful for maintainer
     41##
     42
     43include $(srcdir)/maintainer.am
     44
     45# called within maintainer-check
     46## We do wanna run all tests here since test repository is not
     47## included in tarball, and thus some tests are skiped in distcheck.
     48MAINTAINER_CHECK_LOCAL = all check
     49# extra check in release rule
     50#RELEASE_LOCAL =
  • trunk/NEWS

    r849 r874  
    1111    http://dev.thep.lu.se/svndigest/svn/branches/0.7-stable
    1212
    13 Version 0.7 (released DATE)
     13Version 0.7 (released 22 November 2009)
    1414  - Upgraded to GLPv3 (ticket:339)
    1515  - configure option --enable-staticbin is removed (ticket:340)
    1616  - configure option --enable-wctests is removed (ticket:295)
     17  - configure option --enable-svn-support is removed
    1718  - parsing rules can be set in config file (ticket:283)
     19  - Statistics is now cached (ticket:5)
     20  - More statistics: StatsType Blame (ticket:24) and StatsType Add (ticket:82)
    1821
    1922  A complete list of closed tickets can be found here [[br]]
     
    2831version 0.6.7 (released 1 February 2009)
    2932  - Improved TracLinks (issue #353)
    30   - Daylight saving time is now handled correctly (issue #353)
     33  - Daylight saving time is now handled correctly (issue #356)
    3134
    3235  A complete list of closed tickets can be found here [[br]]
  • trunk/README.developer

    r847 r874  
    116116shared between authors.
    117117
     118== Design and Motivation ==
     119
     120Please refer to source:trunk/doc/HACKING for a list of design
     121decisions we try to follow.
    118122
    119123== Releasing ==
  • trunk/configure.ac

    r858 r874  
    5454
    5555AC_CONFIG_HEADER([config.h])
    56 AM_INIT_AUTOMAKE([1.10 std-options check-news])
     56AM_INIT_AUTOMAKE([1.10 std-options])
    5757
    5858# Set default programming language
     
    106106  [YAT_CPP_ADD_FLAG([SD_CPPFLAGS],[-DNDEBUG])
    107107   YAT_CXX_ADD_FLAG([SD_CXXFLAGS],[-O3])])
    108 
    109 # enable svn-support
    110 AC_ARG_ENABLE([svn-support],
    111               [AS_HELP_STRING([--enable-svn-support],
    112                               [enable svn support - used by maintainer])])
    113 
    114 AS_IF([test "x$enable_svn_support" = xyes],
    115       [AS_IF([test -d $srcdir/.svn], [],
    116              [AC_MSG_ERROR([svn support cannot be enabled: `$srcdir' is not an svn wc.])])])
    117 AM_CONDITIONAL([ENABLE_SVN_SUPPORT], [test "x$enable_svn_support" = "xyes"])
    118108
    119109# Apache Portable Runtime (APR) API checks
     
    210200                [chmod +x test/check_repo_status.sh])   
    211201
     202# maintainer make rukes from yat project
     203YAT_SVN_RELEASE
    212204
    213205AC_CONFIG_FILES([Makefile
  • trunk/lib/Makefile.am

    r858 r874  
    3636  Graph.h \
    3737  HtmlBuf.h HtmlStream.h html_utility.h LineTypeParser.h \
    38   Node.h
     38  Node.h \
    3939  OptionVersion.h rmdirhier.h \
    4040  Stats.h StatsCollection.h subversion_info.h SVN.h SVNblame.h  \
Note: See TracChangeset for help on using the changeset viewer.