Changeset 1392
- Timestamp:
- Jul 12, 2011, 4:56:29 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 12 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/0.9-stable merged: 1374-1375,1382-1383,1387-1390
- Property svn:mergeinfo changed
-
trunk/Makefile.am
r1373 r1392 64 64 .PHONY: check-svn_revision 65 65 66 FORCE: 67 66 68 check-svn_revision: 67 69 @$(SVNVERSION) | $(EGREP) '^[0-9]+$$' || \ … … 80 82 81 83 # run in end of release target 82 RELEASE_HOOK = build_support/Portfile.v$(VERSION) 84 RELEASE_HOOK = build_support/Portfile.diff 85 86 macport_url = http://svn.macports.org/repository/macports/trunk/dports/devel/svndigest 87 88 build_support/Portfile.diff: build_support/Portfile FORCE 89 test -e build_support/macport \ 90 || svn co $(macport_url) build_support/macport 91 svn revert -R build_support/macport 92 svn update build_support/macport 93 cp build_support/Portfile build_support/macport/Portfile 94 svn diff build_support/macport/Portfile > $@ 95 svn revert build_support/macport/Portfile 83 96 84 97 edit = $(SED) \ … … 86 99 -e 's|@VERSION[@]|$(VERSION)|g' 87 100 88 build_support/Portfile .v$(VERSION):Makefile build_support/Portfile.in101 build_support/Portfile: $(distdir).tar.gz Makefile build_support/Portfile.in 89 102 @rm -f $@ $@.t 90 103 @openssl version > /dev/null || exit 1 -
trunk/NEWS
r1373 r1392 14 14 http://dev.thep.lu.se/svndigest/svn/branches/0.9-stable 15 15 16 Version 0.9.3 (released 12 July 2011) 17 - svncopyright now preserves file permissions (bug #505) 18 19 A complete list of closed tickets can be found here [[br]] 20 http://dev.thep.lu.se/svndigest/query?status=closed&milestone=svndigest+0.9.3 21 16 22 Version 0.9.2 (released 10 June 2011) 17 23 - Section [svn-props] in config file is now respected (bug #501). 18 24 19 25 A complete list of closed tickets can be found here [[br]] 20 http://dev.thep.lu.se/svndigest/query?status=closed&milestone= 0.9.226 http://dev.thep.lu.se/svndigest/query?status=closed&milestone=svndigest+0.9.2 21 27 22 28 Version 0.9.1 (released 18 November 2010) … … 25 31 26 32 A complete list of closed tickets can be found here [[br]] 27 http://dev.thep.lu.se/svndigest/query?status=closed&milestone= 0.9.133 http://dev.thep.lu.se/svndigest/query?status=closed&milestone=svndigest+0.9.1 28 34 29 35 Version 0.9 (released 6 November 2010) … … 37 43 38 44 A complete list of closed tickets can be found here [[br]] 39 http://dev.thep.lu.se/svndigest/query?status=closed&milestone= 0.945 http://dev.thep.lu.se/svndigest/query?status=closed&milestone=svndigest+0.9 40 46 41 47 svndigest 0.8.x series from … … 46 52 47 53 A complete list of closed tickets can be found here [[br]] 48 http://dev.thep.lu.se/svndigest/query?status=closed&milestone= 0.8.154 http://dev.thep.lu.se/svndigest/query?status=closed&milestone=svndigest+0.8.1 49 55 50 56 Version 0.8 (released 25 August 2010) … … 63 69 64 70 A complete list of closed tickets can be found here [[br]] 65 http://dev.thep.lu.se/svndigest/query?status=closed&milestone= 0.871 http://dev.thep.lu.se/svndigest/query?status=closed&milestone=svndigest+0.8 66 72 67 73 svndigest 0.7.x series from -
trunk/lib/CopyrightVisitor.cc
r1376 r1392 179 179 180 180 // finally rename file 181 struct stat nodestat; 182 stat(path.c_str(), &nodestat); 181 183 rename(tmpname, path); 184 chmod(path, nodestat.st_mode); 182 185 } 183 186 -
trunk/lib/utility.cc
r1322 r1392 3 3 /* 4 4 Copyright (C) 2006, 2007, 2008, 2009 Jari Häkkinen, Peter Johansson 5 Copyright (C) 2010 Peter Johansson5 Copyright (C) 2010, 2011 Peter Johansson 6 6 7 7 This file is part of svndigest, http://dev.thep.lu.se/svndigest … … 75 75 76 76 77 void chmod(const std::string& filename, mode_t mode) 78 { 79 if (::chmod(filename.c_str(), mode)) 80 throw yat::utility::errno_error("chmod: "); 81 } 82 83 77 84 std::string concatenate_path(std::string dir, std::string base) 78 85 { -
trunk/lib/utility.h
r1203 r1392 7 7 Copyright (C) 2005 Peter Johansson 8 8 Copyright (C) 2006, 2007, 2008 Jari Häkkinen, Peter Johansson 9 Copyright (C) 2009, 2010 Peter Johansson9 Copyright (C) 2009, 2010, 2011 Peter Johansson 10 10 11 11 This file is part of svndigest, http://dev.thep.lu.se/svndigest … … 59 59 60 60 /** 61 */ 62 void chmod(const std::string& filename, mode_t mode); 63 64 /** 61 65 wrapper around GNU C Library function chdir 62 66 -
trunk/m4/apache_LICENSE-2.0.txt
- 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: 1374,1389
- Property svn:mergeinfo changed
-
trunk/m4/yat_add_flag.m4
- Property svn:mergeinfo changed (with no actual effect on merging)
-
trunk/test/Makefile.am
r1376 r1392 46 46 distributed_TESTS += error_test.sh 47 47 distributed_TESTS += link_root_test.sh 48 distributed_TESTS += permission_test.sh 48 49 distributed_TESTS += repo_status_test.sh 49 50 distributed_TESTS += repo_test.sh … … 103 104 copyright_cache_test.log:init.sh $(top_builddir)/bin/svncopyright$(EXEEXT) $(repo_stamp) 104 105 link_root_test.log:init.sh $(top_builddir)/bin/svndigest$(EXEEXT) $(repo_stamp) 106 permission_test.log:init.sh $(top_builddir)/bin/svncopyright$(EXEEXT) $(repo_stamp) 105 107 repo_status_test.log:init.sh 106 108 repo_test.log:init.sh $(top_builddir)/bin/svndigest$(EXEEXT) $(repo_stamp)
Note: See TracChangeset
for help on using the changeset viewer.