Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Merged in trunk changes |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | v3.2.5 | release |
Files: | files | file ages | folders |
SHA3-256: |
e61010433e92dd8212b0edf27704735b |
User & Date: | tangent 2019-07-21 11:06:28.264 |
Context
2019-07-21
| ||
11:24 | Re-released 3.2.5 with latest trunk dist tarball and release process improvements. check-in: c06618ea81 user: tangent tags: v3.2.5, release | |
11:06 | Merged in trunk changes check-in: e61010433e user: tangent tags: v3.2.5, release | |
11:04 | Added *.md to dist tarball check-in: d9c7adf2c0 user: tangent tags: trunk | |
10:58 | Updated the mysql++.spec.in file to track README.txt -> README.md renaming. check-in: 0cf0e8fdde user: tangent tags: trunk | |
10:47 | Merged trunk changes for v3.2.5 into release branch check-in: 596aa10b32 user: tangent tags: v3.2.5, release | |
Changes
Changes to mysql++.bkl.
︙ | ︙ | |||
519 520 521 522 523 524 525 | mkdir -p $(PKGNAME)/$(DDD) ; \ done </command> <!-- Copy files into package directory --> <!-- top directory --> <command> | | | 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 | mkdir -p $(PKGNAME)/$(DDD) ; \ done </command> <!-- Copy files into package directory --> <!-- top directory --> <command> cp -RL *.bat *.in *.md *.txt abi.xml aclocal.m4 Bakefiles.bkgen \ bootstrap ChangeLog.md cleanmf config.guess config.h \ config.sub configure* dtest exrun HACKERS.md install* \ Makefile.* mysql++.* osver $(PKGNAME) </command> <!-- VC++ project file subdirs --> <command> |
︙ | ︙ |
Changes to mysql++.spec.in.
︙ | ︙ | |||
76 77 78 79 80 81 82 | %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) | | | 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc ChangeLog.md COPYING.txt CREDITS.txt LICENSE.txt README.md %{_libdir}/libmysqlpp.so.* %files devel %defattr(-,root,root,-) %doc doc/examples doc/README-devel-RPM.txt README-examples.txt %{_includedir}/mysql++ %{_libdir}/libmysqlpp.so |
︙ | ︙ |
Changes to tools/mkrel.
︙ | ︙ | |||
47 48 49 50 51 52 53 54 55 56 57 58 59 60 | f update && ( test -z "$(f changes --no-classify)" || f ci -m "Released v$ver" ) && cd ../release && f update release && f merge trunk && test -z "$(f changes --conflict)" && f diff -w --tk && tools/mmake && $make dist && cp mysql++-${ver}.tar.gz ~/tangentsoft.com/mysqlpp/releases && cd ~/tangentsoft.com && $make synch && cd - && f ci --tag v$ver -m "Merged trunk changes for v$ver into release branch" | > | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | f update && ( test -z "$(f changes --no-classify)" || f ci -m "Released v$ver" ) && cd ../release && f update release && f merge trunk && test -z "$(f changes --conflict)" && f diff -w --tk && ./bootstrap && tools/mmake && $make dist && cp mysql++-${ver}.tar.gz ~/tangentsoft.com/mysqlpp/releases && cd ~/tangentsoft.com && $make synch && cd - && f ci --tag v$ver -m "Merged trunk changes for v$ver into release branch" |