WSJT-X/boost
Bill Somerville e4f87db722 Merge commit 'edd0930758f2177025d50dd655514f1ce64bb903' into hotfix-2.0.0-rc4 2018-10-19 02:58:35 +01:00
..
boost Merge commit 'edd0930758f2177025d50dd655514f1ce64bb903' into hotfix-2.0.0-rc4 2018-10-19 02:58:35 +01:00
doc/src Merge commit '4ebe6417a5fce5f0994fc0c31bebf732be96a07c' as 'boost' 2018-06-09 21:48:33 +01:00
libs Merge commit 'edd0930758f2177025d50dd655514f1ce64bb903' into hotfix-2.0.0-rc4 2018-10-19 02:58:35 +01:00
tools/build Merge commit '4ebe6417a5fce5f0994fc0c31bebf732be96a07c' as 'boost' 2018-06-09 21:48:33 +01:00
INSTALL Merge commit '4ebe6417a5fce5f0994fc0c31bebf732be96a07c' as 'boost' 2018-06-09 21:48:33 +01:00
Jamroot Merge commit '4ebe6417a5fce5f0994fc0c31bebf732be96a07c' as 'boost' 2018-06-09 21:48:33 +01:00
LICENSE_1_0.txt Merge commit '4ebe6417a5fce5f0994fc0c31bebf732be96a07c' as 'boost' 2018-06-09 21:48:33 +01:00
README.md Merge commit 'edd0930758f2177025d50dd655514f1ce64bb903' into hotfix-2.0.0-rc4 2018-10-19 02:58:35 +01:00
boost-build.jam Merge commit '4ebe6417a5fce5f0994fc0c31bebf732be96a07c' as 'boost' 2018-06-09 21:48:33 +01:00
boost.css Merge commit '4ebe6417a5fce5f0994fc0c31bebf732be96a07c' as 'boost' 2018-06-09 21:48:33 +01:00
boost.png Merge commit '4ebe6417a5fce5f0994fc0c31bebf732be96a07c' as 'boost' 2018-06-09 21:48:33 +01:00
boostcpp.jam Merge commit '4ebe6417a5fce5f0994fc0c31bebf732be96a07c' as 'boost' 2018-06-09 21:48:33 +01:00
bootstrap.bat Merge commit '4ebe6417a5fce5f0994fc0c31bebf732be96a07c' as 'boost' 2018-06-09 21:48:33 +01:00
bootstrap.sh Merge commit '4ebe6417a5fce5f0994fc0c31bebf732be96a07c' as 'boost' 2018-06-09 21:48:33 +01:00
rst.css Merge commit '4ebe6417a5fce5f0994fc0c31bebf732be96a07c' as 'boost' 2018-06-09 21:48:33 +01:00

README.md

Boost "vendor" repo for K1JT projects

This repository contains a subset of the Boost project with libraries needed by K1JT project s such as WSJT-X. It contains two branches, upstream and master. To upgrade the content do the following:

git checkout upstream
rm -r *
# use the bcp tool to populate with the new Boost libraries
# use git add to stage any new files and directories
git commit -a -m "Updated Boost v1.63 libraries including ..."
git tag boost_1_63
git push origin
git checkout master
git merge upstream
git push origin

The resulting master branch is now ready to be git-subtree merged into any projects that need these libraries.

This is imported here using git-subtree

To update this tree when the upstream Boost libraries are updated use git-subtree-pull to import the changes like this:

git remote add  -f boost git@bitbucket.org:g4wjs/boost.git # for convienence
git subtree pull --prefix boost boost master --squash