boost: move download to github

Boost is having significant issues hosting on jfrog. Move to github. The
current patch is not applying cleanly so remove that until we can figure
it out. Getting most repos to build is better then none at this point
(the patch was for bmcweb)

https://lists.boost.org/Archives/boost/2024/01/255654.php

Change-Id: I594eac7666f96a7ec7f6991270d140357cf43aaf
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
diff --git a/scripts/build-unit-test-docker b/scripts/build-unit-test-docker
index 2521d4f..bde9f3d 100755
--- a/scripts/build-unit-test-docker
+++ b/scripts/build-unit-test-docker
@@ -82,16 +82,12 @@
     "boost": PackageDef(
         rev="1.83.0",
         url=(
-            lambda pkg, rev: f"https://boostorg.jfrog.io/artifactory/main/release/{rev}/source/{pkg}_{rev.replace('.', '_')}.tar.gz"  # noqa: E501
+            lambda pkg, rev: f"https://github.com/boostorg/{pkg}/releases/download/{pkg}-{rev}/{pkg}-{rev}.tar.gz"
         ),
         build_type="custom",
         build_steps=[
             (
-                "curl --remote-name"
-                " https://github.com/williamspatrick/beast/commit/98f8b1fbd059a35754c2c7b2841769cf8d021272.patch"
-                " && patch -p2 <"
-                " 98f8b1fbd059a35754c2c7b2841769cf8d021272.patch &&"
-                " ./bootstrap.sh"
+                "./bootstrap.sh"
                 f" --prefix={prefix} --with-libraries=context,coroutine,url"
             ),
             "./b2",