Changeset 1315
- Timestamp:
- Nov 18, 2010, 3:50:28 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/0.9-stable merged: 1281-1282,1284,1311-1313
- Property svn:mergeinfo changed
-
trunk/Makefile.am
r1308 r1315 83 83 84 84 # run in end of release target 85 RELEASE_HOOK = build_support/Portfile 85 RELEASE_HOOK = build_support/Portfile.v$(VERSION) 86 86 87 87 edit = $(SED) \ … … 89 89 -e 's|@VERSION[@]|$(VERSION)|g' 90 90 91 build_support/Portfile : Makefile build_support/Portfile.in91 build_support/Portfile.v$(VERSION): Makefile build_support/Portfile.in 92 92 @rm -f $@ $@.t 93 93 @openssl version > /dev/null || exit 1 … … 97 97 rmd160=`cut -f 2 -d ' ' $(distdir).tar.gz.rmd160`;\ 98 98 $(edit) -e "s|@SHA1SUM[@]|$$sha1|g" -e "s|@RMD160SUM[@]|$$rmd160|g" \ 99 '$(srcdir)/ $@.in' > $@.t99 '$(srcdir)/build_support/Portfile.in' > $@.t 100 100 @chmod a-w $@.t 101 101 @mv $@.t $@ -
trunk/NEWS
r1293 r1315 12 12 svndigest 0.9.x series from 13 13 http://dev.thep.lu.se/svndigest/svn/branches/0.9-stable 14 15 Version 0.9.1 (released 18 November 2010) 16 - Corrected dependency is test suite when not having test repo (bug #487) 17 - Corrected generated config file (bug #486) 18 19 A complete list of closed tickets can be found here [[br]] 20 http://dev.thep.lu.se/svndigest/query?status=closed&milestone=0.9.1 14 21 15 22 Version 0.9 (released 6 November 2010) -
trunk/lib/Configuration.cc
r1243 r1315 716 716 << "### Right hand side may contain \"$i\", which will be replaced \n" 717 717 << "### with the ith wild card in lhs string.\n"; 718 719 if (!conf.dictionary_.empty()) { 720 os << "\n" 721 << "### Section for setting dictionary for file names.\n" 722 << "### Prior looking for file name pattern in section " 723 << "[parsing-codons],\n" 724 << "### the file name may be translated according to the rules \n" 725 << "### in this section. In default setting there is, for example,\n" 726 << "### a rule to translate `<FILENAME>.in' to `<FILENAME>'.\n" 727 << "### The format of the entries is:\n" 728 << "### file-name-pattern = new-name\n" 729 << "### Left hand side may contain wildcards (such as '*' and '?').\n" 730 << "### Right hand side may contain \"$i\", which will be replaced \n" 731 << "### with the ith wild card in lhs string.\n" 732 << "[file-name-dictionary]\n"; 733 for (size_t i=0; i<conf.dictionary_.size(); ++i) 734 os << conf.dictionary_[i].first << " = " 735 << conf.dictionary_[i].second << "\n"; 736 } 718 os << "[file-name-dictionary]\n"; 719 for (size_t i=0; i<conf.dictionary_.size(); ++i) 720 os << conf.dictionary_[i].first << " = " 721 << conf.dictionary_[i].second << "\n"; 722 737 723 if (!conf.string2codons_.empty()) { 738 724 os << "\n" -
trunk/m4/apache_LICENSE-2.0.txt
- Property svn:mergeinfo changed (with no actual effect on merging)
-
trunk/m4/ax_cxx_check_flag.m4
- Property svn:mergeinfo changed (with no actual effect on merging)
-
trunk/m4/ax_cxxcpp_check_flag.m4
- Property svn:mergeinfo changed (with no actual effect on merging)
-
trunk/m4/ax_ld_check_flag.m4
- Property svn:mergeinfo changed (with no actual effect on merging)
-
trunk/m4/find_apr.m4
- Property svn:mergeinfo changed (with no actual effect on merging)
-
trunk/m4/pkg.m4
- Property svn:mergeinfo changed (with no actual effect on merging)
-
trunk/m4/version.m4
- Property svn:mergeinfo changed
/branches/0.9-stable/m4/version.m4 merged: 1281,1312
- Property svn:mergeinfo changed
-
trunk/m4/yat_add_flag.m4
- Property svn:mergeinfo changed (with no actual effect on merging)
-
trunk/test/Makefile.am
r1308 r1315 86 86 lazycheck:; $(MAKE) $(AM_MAKEFLAGS) check RECHECK_LOGS= 87 87 88 if HAVE_SVN_WC 88 89 repo_stamp = $(srcdir)/repo/db/current 90 else 91 repo_stamp = 92 endif 89 93 90 94 # dependencies for lazycheck … … 98 102 svndigest_copy_cache_test.log:init.sh $(top_builddir)/bin/svndigest-copy-cache $(repo_stamp) 99 103 100 cache_partial.log: $(repo_stamp) $(srcdir)/data/AUTHORS.svndigest-cache-r61104 cache_partial.log: $(repo_stamp) 101 105 copyright.log: $(repo_stamp) 102 106 stats.log: $(repo_stamp)
Note: See TracChangeset
for help on using the changeset viewer.