language
stringlengths
0
24
filename
stringlengths
9
214
code
stringlengths
99
9.93M
CMake
hhvm/build/fbcode_builder/CMake/FindZstd.cmake
# Copyright (c) Facebook, Inc. and its affiliates. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or ...
Python
hhvm/build/fbcode_builder/CMake/make_fbpy_archive.py
#!/usr/bin/env python3 # # Copyright (c) Facebook, Inc. and its affiliates. # import argparse import collections import errno import os import shutil import sys import tempfile import zipapp MANIFEST_SEPARATOR = " :: " MANIFEST_HEADER_V1 = "FBPY_MANIFEST 1\n" class UsageError(Exception): def __init__(self, messa...
CMake
hhvm/build/fbcode_builder/CMake/RustStaticLibrary.cmake
# Copyright (c) Meta Platforms, Inc. and affiliates. include(FBCMakeParseArgs) set( USE_CARGO_VENDOR AUTO CACHE STRING "Download Rust Crates from an internally vendored location" ) set_property(CACHE USE_CARGO_VENDOR PROPERTY STRINGS AUTO ON OFF) set( GENERATE_CARGO_VENDOR_CONFIG AUTO CACHE STRING "Whether t...
Python
hhvm/build/fbcode_builder/getdeps/builder.py
#!/usr/bin/env python3 # Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import glob import json import os import pathlib import shutil import stat import subprocess import sys import typing...
Python
hhvm/build/fbcode_builder/getdeps/buildopts.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import errno import glob import ntpath import os import subprocess import sys import tempfile from typing import Mapping, Optional from .co...
Python
hhvm/build/fbcode_builder/getdeps/cache.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. class ArtifactCache(object): """The ArtifactCache is a small abstraction that allows caching named things in some external storage ...
Python
hhvm/build/fbcode_builder/getdeps/cargo.py
#!/usr/bin/env python3 # Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import os import re import shutil import typing from .builder import BuilderBase if typing.TYPE_CHECKING: from ...
Python
hhvm/build/fbcode_builder/getdeps/copytree.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import os import shutil import subprocess from .platform import is_windows PREFETCHED_DIRS = set() def containing_repo_type(path): ...
Python
hhvm/build/fbcode_builder/getdeps/dyndeps.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import errno import glob import os import re import shlex import shutil import stat import subprocess import sys from struct import unpack f...
Python
hhvm/build/fbcode_builder/getdeps/envfuncs.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import os import shlex import sys from typing import Optional class Env(object): def __init__(self, src=None) -> None: self._d...
Python
hhvm/build/fbcode_builder/getdeps/errors.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. class TransientFailure(Exception): """Raising this error causes getdeps to return with an error code that Sandcastle will consider ...
Python
hhvm/build/fbcode_builder/getdeps/expr.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import re import shlex def parse_expr(expr_text, valid_variables): """parses the simple criteria expression syntax used in depende...
Python
hhvm/build/fbcode_builder/getdeps/fetcher.py
#!/usr/bin/env python3 # Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import errno import hashlib import os import re import shutil import stat import subprocess import sys import tarfile...
Python
hhvm/build/fbcode_builder/getdeps/load.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import base64 import copy import hashlib import os from . import fetcher from .envfuncs import path_search from .errors import ManifestNotF...
Python
hhvm/build/fbcode_builder/getdeps/manifest.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import configparser import io import os from typing import List from .builder import ( AutoconfBuilder, Boost, CMakeBootStrapBu...
Python
hhvm/build/fbcode_builder/getdeps/platform.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import os import platform import re import shlex import sys from typing import Optional, Tuple def is_windows() -> bool: """Returns t...
Python
hhvm/build/fbcode_builder/getdeps/py_wheel_builder.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import codecs import collections import email import os import re import stat from typing import Dict, List from .builder import BuilderBas...
Python
hhvm/build/fbcode_builder/getdeps/runcmd.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import os import select import subprocess import sys from .envfuncs import Env from .platform import is_windows try: from shlex impor...
Python
hhvm/build/fbcode_builder/getdeps/subcmd.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. class SubCmd(object): NAME = None HELP = None def run(self, args) -> int: """perform the command""" return 0 ...
Python
hhvm/build/fbcode_builder/getdeps/test/expr_test.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import unittest from ..expr import parse_expr class ExprTest(unittest.TestCase): def test_equal(self) -> None: valid_variabl...
Python
hhvm/build/fbcode_builder/getdeps/test/manifest_test.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import sys import unittest from ..load import load_all_manifests, patch_loader from ..manifest import ManifestParser class ManifestTest(...
Python
hhvm/build/fbcode_builder/getdeps/test/platform_test.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import unittest from ..platform import HostType class PlatformTest(unittest.TestCase): def test_create(self) -> None: p = Ho...
Python
hhvm/build/fbcode_builder/getdeps/test/scratch_test.py
# Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import unittest from ..buildopts import find_existing_win32_subst_for_path class Win32SubstTest(unittest.TestCase): def test_no_exis...
hhvm/build/fbcode_builder/manifests/airstore
[manifest] name = airstore fbsource_path = fbcode/fair_infra/data/airstore/ shipit_project = AIRStore shipit_fbcode_builder = true [git] repo_url = https://github.com/fairinternal/AIRStore.git [build.os=linux] builder = cmake [build.not(os=linux)] # We only support Linux builder = nop [dependencies] boost libcurl f...
hhvm/build/fbcode_builder/manifests/autoconf
[manifest] name = autoconf [debs] autoconf [homebrew] autoconf [rpms] autoconf [download] url = http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz sha256 = 954bd69b391edc12d6a4a51a2dd1476543da5c6bbf05a95b59dc0dd6fd4c2969 [build] builder = autoconf subdir = autoconf-2.69
hhvm/build/fbcode_builder/manifests/automake
[manifest] name = automake [homebrew] automake [debs] automake [rpms] automake [download] url = http://ftp.gnu.org/gnu/automake/automake-1.16.1.tar.gz sha256 = 608a97523f97db32f1f5d5615c98ca69326ced2054c9f82e65bade7fc4c9dea8 [build] builder = autoconf subdir = automake-1.16.1 [dependencies] autoconf
hhvm/build/fbcode_builder/manifests/benchmark
[manifest] name = benchmark [download] url = https://github.com/google/benchmark/archive/refs/tags/v1.8.0.tar.gz sha256 = ea2e94c24ddf6594d15c711c06ccd4486434d9cf3eca954e2af8a20c88f9f172 [build] builder = cmake subdir = benchmark-1.8.0/ [cmake.defines] BENCHMARK_ENABLE_TESTING=OFF
hhvm/build/fbcode_builder/manifests/blake3
[manifest] name = blake3 [download] url = https://github.com/BLAKE3-team/BLAKE3/archive/refs/tags/1.3.3.tar.gz sha256 = 27d2bc4ee5945ba75434859521042c949463ee7514ff17aaef328e23ef83fec0 [build] builder = cmake subdir = BLAKE3-1.3.3/c patchfile = blake3_CMakeLists_txt.patch
hhvm/build/fbcode_builder/manifests/boost
[manifest] name = boost [download.not(os=windows)] url = https://boostorg.jfrog.io/artifactory/main/release/1.78.0/source/boost_1_78_0.tar.gz sha256 = 94ced8b72956591c4775ae2207a9763d3600b30d9d7446562c552f0a14a63be7 [download.os=windows] url = https://boostorg.jfrog.io/artifactory/main/release/1.78.0/source/boost_1_7...
hhvm/build/fbcode_builder/manifests/bz2
[manifest] name = bz2 [debs] libbz2-dev [homebrew] bzip2 [rpms] bzip2-devel [download] url = https://sourceware.org/pub/bzip2/bzip2-1.0.8.tar.gz sha256 = ab5a03176ee106d3f0fa90e381da478ddae405918153cca248e682cd0c4a2269 [build.not(os=windows)] builder = make subdir = bzip2-1.0.8 [make.build_args.os=linux] # python...
hhvm/build/fbcode_builder/manifests/CLI11
[manifest] name = CLI11 [download] url = https://github.com/CLIUtils/CLI11/archive/v2.0.0.tar.gz sha256 = 2c672f17bf56e8e6223a3bfb74055a946fa7b1ff376510371902adb9cb0ab6a3 [build] builder = cmake subdir = CLI11-2.0.0 [cmake.defines] CLI11_BUILD_TESTS = OFF CLI11_BUILD_EXAMPLES = OFF
hhvm/build/fbcode_builder/manifests/cmake
[manifest] name = cmake [homebrew] cmake # 18.04 cmake is too old [debs.not(all(distro=ubuntu,distro_vers="18.04"))] cmake [rpms] cmake [dependencies] ninja [download.os=windows] url = https://github.com/Kitware/CMake/releases/download/v3.20.2/cmake-3.20.2-windows-x86_64.zip sha256 = 15a49e2ab81c1822d75b1b1a92f786...
hhvm/build/fbcode_builder/manifests/cpptoml
[manifest] name = cpptoml [homebrew] cpptoml [download] url = https://github.com/chadaustin/cpptoml/archive/refs/tags/v0.1.2.tar.gz sha256 = beda37e94f9746874436c8090c045fd80ae6f8a51f7c668c932a2b110a4fc277 [build] builder = cmake subdir = cpptoml-0.1.2 [cmake.defines.os=freebsd] ENABLE_LIBCXX=NO
hhvm/build/fbcode_builder/manifests/date
[manifest] name = date [download] url = https://github.com/HowardHinnant/date/archive/refs/tags/v3.0.1.tar.gz sha256 = 7a390f200f0ccd207e8cff6757e04817c1a0aec3e327b006b7eb451c57ee3538 [build] builder = cmake subdir = date-3.0.1
hhvm/build/fbcode_builder/manifests/delos_core
[manifest] name = delos_core fbsource_path = fbcode/delos_core shipit_project = delos_core shipit_fbcode_builder = true [git] repo_url = https://github.com/facebookincubator/delos_core.git [build.os=linux] builder = cmake [build.not(os=linux)] builder = nop [dependencies] glog googletest folly fbthrift fb303 re2 [...
hhvm/build/fbcode_builder/manifests/double-conversion
[manifest] name = double-conversion [download] url = https://github.com/google/double-conversion/archive/v3.1.4.tar.gz sha256 = 95004b65e43fefc6100f337a25da27bb99b9ef8d4071a36a33b5e83eb1f82021 [homebrew] double-conversion [debs] libdouble-conversion-dev [rpms] double-conversion double-conversion-devel [build] buil...
hhvm/build/fbcode_builder/manifests/eden
[manifest] name = eden fbsource_path = fbcode/eden shipit_project = eden shipit_fbcode_builder = true [git] repo_url = https://github.com/facebookexperimental/eden.git [github.actions] run_tests = off [sandcastle] run_tests = off [build] builder = cmake [dependencies] blake3 googletest folly fbthrift fb303 cpptoml...
hhvm/build/fbcode_builder/manifests/edencommon
[manifest] name = edencommon fbsource_path = fbcode/eden/common shipit_project = edencommon shipit_fbcode_builder = true [git] repo_url = https://github.com/facebookexperimental/edencommon.git [build] builder = cmake [dependencies] fmt folly gflags glog [cmake.defines.test=on] BUILD_TESTS=ON [cmake.defines.test=of...
hhvm/build/fbcode_builder/manifests/exprtk
[manifest] name = exprtk [download] url = https://github.com/ArashPartow/exprtk/archive/refs/tags/0.0.1.tar.gz sha256 = fb72791c88ae3b3426e14fdad630027715682584daf56b973569718c56e33f28 [build.not(os=windows)] builder = nop subdir = exprtk-0.0.1 [install.files] exprtk.hpp = exprtk.hpp [dependencies]
hhvm/build/fbcode_builder/manifests/f4d
[manifest] name = f4d fbsource_path = fbcode/f4d shipit_project = f4d shipit_fbcode_builder = true [git] repo_url = https://github.com/facebookexternal/f4d.git rev = master [build.os=windows] builder = nop [build.not(os=windows)] builder = cmake [dependencies] double-conversion folly glog googletest boost protobuf ...
hhvm/build/fbcode_builder/manifests/fatal
[manifest] name = fatal fbsource_path = fbcode/fatal shipit_project = fatal [git] repo_url = https://github.com/facebook/fatal.git [shipit.pathmap] fbcode/fatal = fatal fbcode/fatal/public_tld = . [build] builder = nop subdir = . [install.files] fatal/portability.h = fatal/portability.h fatal/preprocessor.h = fatal...
hhvm/build/fbcode_builder/manifests/fb303
[manifest] name = fb303 fbsource_path = fbcode/fb303 shipit_project = fb303 shipit_fbcode_builder = true [git] repo_url = https://github.com/facebook/fb303.git [cargo] cargo_config_file = source/fb303/thrift/.cargo/config.toml [crate.pathmap] fb303_core = fb303/thrift [build] builder = cmake [dependencies] folly g...
hhvm/build/fbcode_builder/manifests/fb303-source
[manifest] name = fb303-source fbsource_path = fbcode/fb303 shipit_project = fb303 shipit_fbcode_builder = false [git] repo_url = https://github.com/facebook/fb303.git [build] builder = nop [shipit.pathmap] fbcode/fb303/github = . fbcode/fb303/public_autocargo = fb303 fbcode/fb303 = fb303 [shipit.strip] ^fbcode/fb3...
hhvm/build/fbcode_builder/manifests/fboss
[manifest] name = fboss fbsource_path = fbcode/fboss shipit_project = fboss shipit_fbcode_builder = true [git] repo_url = https://github.com/facebook/fboss.git [build.os=linux] builder = cmake # fboss files take a lot of RAM to compile. job_weight_mib = 3072 [build.not(os=linux)] builder = nop [dependencies] folly ...
hhvm/build/fbcode_builder/manifests/fbthrift
[manifest] name = fbthrift fbsource_path = fbcode/thrift shipit_project = fbthrift shipit_fbcode_builder = true [git] repo_url = https://github.com/facebook/fbthrift.git [cargo] cargo_config_file = source/thrift/lib/rust/.cargo/config.toml [crate.pathmap] fbthrift = thrift/lib/rust [build] builder = cmake job_weig...
hhvm/build/fbcode_builder/manifests/fbthrift-source
[manifest] name = fbthrift-source fbsource_path = fbcode/thrift shipit_project = fbthrift shipit_fbcode_builder = true [git] repo_url = https://github.com/facebook/fbthrift.git [build] builder = nop [shipit.pathmap] fbcode/thrift/public_tld = . fbcode/thrift = thrift [shipit.strip] ^fbcode/thrift/thrift-config\.h$ ...
hhvm/build/fbcode_builder/manifests/fbzmq
[manifest] name = fbzmq fbsource_path = facebook/fbzmq shipit_project = fbzmq shipit_fbcode_builder = true [git] repo_url = https://github.com/facebook/fbzmq.git [build.os=linux] builder = cmake [build.not(os=linux)] # boost.fiber is required and that is not available on macos. # libzmq doesn't currently build on wi...
hhvm/build/fbcode_builder/manifests/fizz
[manifest] name = fizz fbsource_path = fbcode/fizz shipit_project = fizz shipit_fbcode_builder = true [git] repo_url = https://github.com/facebookincubator/fizz.git [build] builder = cmake subdir = fizz [cmake.defines] BUILD_EXAMPLES = OFF [cmake.defines.test=on] BUILD_TESTS = ON [cmake.defines.all(os=windows, tes...
hhvm/build/fbcode_builder/manifests/fmt
[manifest] name = fmt [download] url = https://github.com/fmtlib/fmt/archive/refs/tags/9.1.0.tar.gz sha256 = 5dea48d1fcddc3ec571ce2058e13910a0d4a6bab4cc09a809d8b1dd1c88ae6f2 [build] builder = cmake subdir = fmt-9.1.0 [cmake.defines] FMT_TEST = OFF FMT_DOC = OFF
hhvm/build/fbcode_builder/manifests/folly
[manifest] name = folly fbsource_path = fbcode/folly shipit_project = folly shipit_fbcode_builder = true [git] repo_url = https://github.com/facebook/folly.git [build] builder = cmake job_weight_mib = 1024 [dependencies] gflags glog googletest boost libevent libsodium double-conversion fmt lz4 snappy zstd # no opens...
hhvm/build/fbcode_builder/manifests/gflags
[manifest] name = gflags [download] url = https://github.com/gflags/gflags/archive/v2.2.2.tar.gz sha256 = 34af2f15cf7367513b352bdcd2493ab14ce43692d2dcd9dfc499492966c64dcf [build] builder = cmake subdir = gflags-2.2.2 [cmake.defines] BUILD_SHARED_LIBS = ON BUILD_STATIC_LIBS = ON #BUILD_gflags_nothreads_LIB = OFF BUIL...
hhvm/build/fbcode_builder/manifests/git-lfs
[manifest] name = git-lfs [download.os=linux] url = https://github.com/git-lfs/git-lfs/releases/download/v2.9.1/git-lfs-linux-amd64-v2.9.1.tar.gz sha256 = 2a8e60cf51ec45aa0f4332aa0521d60ec75c76e485d13ebaeea915b9d70ea466 [build] builder = nop [install.files] git-lfs = bin/git-lfs
hhvm/build/fbcode_builder/manifests/glog
[manifest] name = glog [download] url = https://github.com/google/glog/archive/v0.5.0.tar.gz sha256 = eede71f28371bf39aa69b45de23b329d37214016e2055269b3b5e7cfd40b59f5 [build] builder = cmake subdir = glog-0.5.0 [dependencies] gflags [cmake.defines] BUILD_SHARED_LIBS=ON BUILD_TESTING=NO WITH_PKGCONFIG=ON [cmake.def...
hhvm/build/fbcode_builder/manifests/gnu-bash
[manifest] name = gnu-bash [download.os=darwin] url = https://ftp.gnu.org/gnu/bash/bash-5.1-rc1.tar.gz sha256 = 0b2684eb1990329d499c96decfe2459f3e150deb915b0a9d03cf1be692b1d6d3 [build.os=darwin] # The buildin FreeBSD bash on OSX is both outdated and incompatible with the # modern GNU bash, so for the sake of being cr...
hhvm/build/fbcode_builder/manifests/gnu-coreutils
[manifest] name = gnu-coreutils [download.os=darwin] url = https://ftp.gnu.org/gnu/coreutils/coreutils-8.32.tar.gz sha256 = d5ab07435a74058ab69a2007e838be4f6a90b5635d812c2e26671e3972fca1b8 [build.os=darwin] # The buildin FreeBSD version incompatible with the GNU one, so for the sake of # being cross-platform friendly...
hhvm/build/fbcode_builder/manifests/gnu-grep
[manifest] name = gnu-grep [download.os=darwin] url = https://ftp.gnu.org/gnu/grep/grep-3.5.tar.gz sha256 = 9897220992a8fd38a80b70731462defa95f7ff2709b235fb54864ddd011141dd [build.os=darwin] # The buildin FreeBSD version incompatible with the GNU one, so for the sake of # being cross-platform friendly this manifest p...
hhvm/build/fbcode_builder/manifests/gnu-sed
[manifest] name = gnu-sed [download.os=darwin] url = https://ftp.gnu.org/gnu/sed/sed-4.8.tar.gz sha256 = 53cf3e14c71f3a149f29d13a0da64120b3c1d3334fba39c4af3e520be053982a [build.os=darwin] # The buildin FreeBSD version incompatible with the GNU one, so for the sake of # being cross-platform friendly this manifest prov...
hhvm/build/fbcode_builder/manifests/googletest
[manifest] name = googletest [download] url = https://github.com/google/googletest/archive/refs/tags/release-1.12.1.tar.gz sha256 = 81964fe578e9bd7c94dfdb09c8e4d6e6759e19967e397dbea48d1c10e45d0df2 [build] builder = cmake subdir = googletest-release-1.12.1 [cmake.defines] # Everything else defaults to the shared runt...
hhvm/build/fbcode_builder/manifests/googletest_1_8
[manifest] name = googletest_1_8 [download] url = https://github.com/google/googletest/archive/release-1.8.0.tar.gz sha256 = 58a6f4277ca2bc8565222b3bbd58a177609e9c488e8a72649359ba51450db7d8 [build] builder = cmake subdir = googletest-release-1.8.0 [cmake.defines] # Everything else defaults to the shared runtime, so ...
hhvm/build/fbcode_builder/manifests/gperf
[manifest] name = gperf [download] url = http://ftp.gnu.org/pub/gnu/gperf/gperf-3.1.tar.gz sha256 = 588546b945bba4b70b6a3a616e80b4ab466e3f33024a352fc2198112cdbb3ae2 [build.not(os=windows)] builder = autoconf subdir = gperf-3.1 [build.os=windows] builder = nop
hhvm/build/fbcode_builder/manifests/iproute2
[manifest] name = iproute2 [download] url = https://mirrors.edge.kernel.org/pub/linux/utils/net/iproute2/iproute2-4.12.0.tar.gz sha256 = 46612a1e2d01bb31932557bccdb1b8618cae9a439dfffc08ef35ed8e197f14ce [build.os=linux] builder = iproute2 subdir = iproute2-4.12.0 [build.not(os=linux)] builder = nop
hhvm/build/fbcode_builder/manifests/jq
[manifest] name = jq [rpms] jq [debs] jq [download.not(os=windows)] url = https://github.com/stedolan/jq/releases/download/jq-1.5/jq-1.5.tar.gz sha256 = c4d2bfec6436341113419debf479d833692cc5cdab7eb0326b5a4d4fbe9f493c [build.not(os=windows)] builder = autoconf subdir = jq-1.5 [build.os=windows] builder = nop [aut...
hhvm/build/fbcode_builder/manifests/katran
[manifest] name = katran fbsource_path = fbcode/katran shipit_project = katran shipit_fbcode_builder = true [git] repo_url = https://github.com/facebookincubator/katran.git [build.not(os=linux)] builder = nop [build.os=linux] builder = cmake subdir = . [cmake.defines.test=on] BUILD_TESTS=ON [cmake.defines.test=off...
hhvm/build/fbcode_builder/manifests/libbpf
[manifest] name = libbpf [download] url = https://github.com/libbpf/libbpf/archive/refs/tags/v0.7.0.tar.gz sha256 = 5083588ce5a3a620e395ee1e596af77b4ec5771ffc71cff2af49dfee38c06361 # BPF only builds on linux, so make it a NOP on other platforms [build.not(os=linux)] builder = nop [build.os=linux] builder = make subd...
hhvm/build/fbcode_builder/manifests/libbpf_0_2_0_beta
[manifest] name = libbpf_0_2_0_beta [download] url = https://github.com/libbpf/libbpf/archive/b6dd2f2.tar.gz sha256 = 8db9dca90f5c445ef2362e3c6a00f3d6c4bf36e8782f8e27704109c78e541497 # BPF only builds on linux, so make it a NOP on other platforms [build.not(os=linux)] builder = nop [build.os=linux] builder = make su...
hhvm/build/fbcode_builder/manifests/libcurl
[manifest] name = libcurl [rpms] libcurl-devel libcurl [debs] libcurl4-openssl-dev [download] url = https://curl.haxx.se/download/curl-7.65.1.tar.gz sha256 = 821aeb78421375f70e55381c9ad2474bf279fc454b791b7e95fc83562951c690 [dependencies] nghttp2 # We use system OpenSSL on Linux (see folly's manifest for details) [...
hhvm/build/fbcode_builder/manifests/libelf
[manifest] name = libelf [rpms] elfutils-libelf-devel-static [debs] libelf-dev [download] url = https://ftp.osuosl.org/pub/blfs/conglomeration/libelf/libelf-0.8.13.tar.gz sha256 = 591a9b4ec81c1f2042a97aa60564e0cb79d041c52faa7416acb38bc95bd2c76d # libelf only makes sense on linux, so make it a NOP on other platforms...
hhvm/build/fbcode_builder/manifests/libevent
[manifest] name = libevent [debs] libevent-dev [homebrew] libevent [rpms] libevent-devel # Note that the CMakeLists.txt file is present only in # git repo and not in the release tarball, so take care # to use the github generated source tarball rather than # the explicitly uploaded source tarball [download] url = h...
hhvm/build/fbcode_builder/manifests/libffi
[manifest] name = libffi [debs] libffi-dev [homebrew] libffi [rpms] libffi-devel libffi [download] url = https://github.com/libffi/libffi/releases/download/v3.4.2/libffi-3.4.2.tar.gz sha256 = 540fb721619a6aba3bdeef7d940d8e9e0e6d2c193595bc243241b77ff9e93620 [build] builder = autoconf subdir = libffi-3.4.2
hhvm/build/fbcode_builder/manifests/libgit2
[manifest] name = libgit2 [homebrew] libgit2 [rpms] libgit2-devel # Ubuntu 18.04 libgit2 has clash with libcurl4-openssl-dev as it depends on # libcurl4-gnutls-dev. Should be ok from 20.04 again # There is a description at https://github.com/r-hub/sysreqsdb/issues/77 # [debs] # libgit2-dev [download] url = https:/...
hhvm/build/fbcode_builder/manifests/libicu
[manifest] name = libicu [rpms] libicu-devel [debs] libicu-dev [download] url = https://github.com/unicode-org/icu/releases/download/release-68-2/icu4c-68_2-src.tgz sha256 = c79193dee3907a2199b8296a93b52c5cb74332c26f3d167269487680d479d625 [build.not(os=windows)] builder = autoconf subdir = icu/source [build.os=win...
hhvm/build/fbcode_builder/manifests/libmnl
[manifest] name = libmnl [rpms] libmnl-devel # all centos 8 distros are missing this, # but its in fedora so may be back in a later version [rpms.not(all(any(distro=centos_stream,distro=centos),distro_vers=8))] libmnl-static [debs] libmnl-dev [download] url = http://www.netfilter.org/pub/libmnl/libmnl-1.0.4.tar.bz2...
hhvm/build/fbcode_builder/manifests/libnl
[manifest] name = libnl [rpms] libnl3-devel libnl3 [debs] libnl-3-dev libnl-route-3-dev [download] url = https://www.infradead.org/~tgr/libnl/files/libnl-3.2.25.tar.gz sha256 = 8beb7590674957b931de6b7f81c530b85dc7c1ad8fbda015398bc1e8d1ce8ec5 [build.os=linux] builder = autoconf subdir = libnl-3.2.25
hhvm/build/fbcode_builder/manifests/libsai
[manifest] name = libsai [download] url = https://github.com/opencomputeproject/SAI/archive/v1.12.0.tar.gz sha256 = 1e7f43599baf1dcca122bbbb2baaeb9b20e5632d2ca6aaa61a568d1d58afaa97 [build] builder = nop subdir = SAI-1.12.0 [install.files] inc = include experimental = experimental
hhvm/build/fbcode_builder/manifests/libsodium
[manifest] name = libsodium [debs] libsodium-dev [homebrew] libsodium [rpms] libsodium-devel libsodium-static [download.not(os=windows)] url = https://github.com/jedisct1/libsodium/releases/download/1.0.17/libsodium-1.0.17.tar.gz sha256 = 0cc3dae33e642cc187b5ceb467e0ad0e1b51dcba577de1190e9ffa17766ac2b1 [build.not(...
hhvm/build/fbcode_builder/manifests/libtool
[manifest] name = libtool [homebrew] libtool [rpms] libtool [debs] libtool [download] url = http://ftp.gnu.org/gnu/libtool/libtool-2.4.6.tar.gz sha256 = e3bd4d5d3d025a36c21dd6af7ea818a2afcd4dfc1ea5a17b39d7854bcd0c06e3 [build] builder = autoconf subdir = libtool-2.4.6 [dependencies] automake [autoconf.args] --ena...
hhvm/build/fbcode_builder/manifests/libusb
[manifest] name = libusb [debs] libusb-1.0-0-dev [homebrew] libusb [rpms] libusb-devel libusb [download] url = https://github.com/libusb/libusb/releases/download/v1.0.22/libusb-1.0.22.tar.bz2 sha256 = 75aeb9d59a4fdb800d329a545c2e6799f732362193b465ea198f2aa275518157 [build.os=linux] builder = autoconf subdir = libu...
hhvm/build/fbcode_builder/manifests/libyaml
[manifest] name = libyaml [download] url = http://pyyaml.org/download/libyaml/yaml-0.1.7.tar.gz sha256 = 8088e457264a98ba451a90b8661fcb4f9d6f478f7265d48322a196cec2480729 [build.os=linux] builder = autoconf subdir = yaml-0.1.7 [build.not(os=linux)] builder = nop
hhvm/build/fbcode_builder/manifests/libzmq
[manifest] name = libzmq [debs] libzmq3-dev [homebrew] zeromq [rpms] zeromq-devel zeromq [download] url = https://github.com/zeromq/libzmq/releases/download/v4.3.1/zeromq-4.3.1.tar.gz sha256 = bcbabe1e2c7d0eec4ed612e10b94b112dd5f06fcefa994a0c79a45d835cd21eb [build] builder = autoconf subdir = zeromq-4.3.1 [autoc...
hhvm/build/fbcode_builder/manifests/lz4
[manifest] name = lz4 [homebrew] lz4 [rpms] lz4-devel # centos 8 and centos_stream 9 are missing this rpm [rpms.not(any(all(distro=centos,distro_vers=8),all(distro=centos_stream,distro_vers=9)))] lz4-static [debs] liblz4-dev [download] url = https://github.com/lz4/lz4/archive/v1.8.3.tar.gz sha256 = 33af5936ac065368...
hhvm/build/fbcode_builder/manifests/lzo
[manifest] name = lzo [debs] liblzo2-dev [homebrew] lzo [rpms] lzo-devel [download] url = http://www.oberhumer.com/opensource/lzo/download/lzo-2.10.tar.gz sha256 = c0f892943208266f9b6543b3ae308fab6284c5c90e627931446fb49b4221a072 [build.not(os=windows)] builder = autoconf subdir = lzo-2.10 [build.os=windows] buil...
hhvm/build/fbcode_builder/manifests/mononoke
[manifest] name = mononoke fbsource_path = fbcode/eden shipit_project = eden shipit_fbcode_builder = true [git] repo_url = https://github.com/facebookexperimental/eden.git [build.not(os=windows)] builder = cargo [build.os=windows] # building Mononoke on windows is not supported builder = nop [cargo] build_doc = tru...
hhvm/build/fbcode_builder/manifests/mvfst
[manifest] name = mvfst fbsource_path = fbcode/quic shipit_project = mvfst shipit_fbcode_builder = true [git] repo_url = https://github.com/facebook/mvfst.git [build] builder = cmake subdir = . [cmake.defines.test=on] BUILD_TESTS = ON [cmake.defines.all(os=windows, test=on)] BUILD_TESTS = OFF [cmake.defines.test=o...
hhvm/build/fbcode_builder/manifests/ncurses
[manifest] name = ncurses [debs] libncurses-dev [homebrew] ncurses [rpms] ncurses-devel [download] url = https://ftp.gnu.org/pub/gnu/ncurses/ncurses-6.3.tar.gz sha256 = 97fc51ac2b085d4cde31ef4d2c3122c21abc217e9090a43a30fc5ec21684e059 [build.not(os=windows)] builder = autoconf subdir = ncurses-6.3 [autoconf.args] ...
hhvm/build/fbcode_builder/manifests/nghttp2
[manifest] name = nghttp2 [rpms] libnghttp2-devel libnghttp2 [debs] libnghttp2-dev [download] url = https://github.com/nghttp2/nghttp2/releases/download/v1.47.0/nghttp2-1.47.0.tar.gz sha256 = 62f50f0e9fc479e48b34e1526df8dd2e94136de4c426b7680048181606832b7c [build] builder = autoconf subdir = nghttp2-1.47.0 [autoco...
hhvm/build/fbcode_builder/manifests/ninja
[manifest] name = ninja [debs] ninja-build [homebrew] ninja [rpms] ninja-build [download.os=windows] url = https://github.com/ninja-build/ninja/releases/download/v1.10.2/ninja-win.zip sha256 = bbde850d247d2737c5764c927d1071cbb1f1957dcabda4a130fa8547c12c695f [build.os=windows] builder = nop [install.files.os=windo...
hhvm/build/fbcode_builder/manifests/nlohmann-json
[manifest] name = nlohmann-json [download] url = https://github.com/nlohmann/json/archive/refs/tags/v3.10.5.tar.gz sha256 = 5daca6ca216495edf89d167f808d1d03c4a4d929cef7da5e10f135ae1540c7e4 [dependencies] [build] builder = cmake subdir = json-3.10.5
hhvm/build/fbcode_builder/manifests/nmap
[manifest] name = nmap [rpms] nmap [debs] nmap [download.not(os=windows)] url = https://api.github.com/repos/nmap/nmap/tarball/ef8213a36c2e89233c806753a57b5cd473605408 sha256 = eda39e5a8ef4964fac7db16abf91cc11ff568eac0fa2d680b0bfa33b0ed71f4a [build.not(os=windows)] builder = autoconf subdir = nmap-nmap-ef8213a buil...
hhvm/build/fbcode_builder/manifests/openr
[manifest] name = openr fbsource_path = facebook/openr shipit_project = openr shipit_fbcode_builder = true [git] repo_url = https://github.com/facebook/openr.git [build.os=linux] builder = cmake # openr files take a lot of RAM to compile. job_weight_mib = 3072 [build.not(os=linux)] # boost.fiber is required and that...
hhvm/build/fbcode_builder/manifests/openssl
[manifest] name = openssl [debs] libssl-dev [homebrew] openssl@1.1 # on homebrew need the matching curl and ca- [rpms] openssl openssl-devel openssl-libs [download] url = https://www.openssl.org/source/openssl-1.1.1l.tar.gz sha256 = 0b7a3e5e59c34827fe0c3a74b7ec8baef302b98fa80088d7f9153aa16fa76bd1 # We use the syst...
hhvm/build/fbcode_builder/manifests/osxfuse
[manifest] name = osxfuse [download] url = https://github.com/osxfuse/osxfuse/archive/osxfuse-3.8.3.tar.gz sha256 = 93bab6731bdfe8dc1ef069483437270ce7fe5a370f933d40d8d0ef09ba846c0c [build] builder = nop [install.files] osxfuse-osxfuse-3.8.3/common = include
hhvm/build/fbcode_builder/manifests/patchelf
[manifest] name = patchelf [rpms] patchelf [debs] patchelf [download] url = https://github.com/NixOS/patchelf/archive/0.10.tar.gz sha256 = b3cb6bdedcef5607ce34a350cf0b182eb979f8f7bc31eae55a93a70a3f020d13 [build] builder = autoconf subdir = patchelf-0.10
hhvm/build/fbcode_builder/manifests/pcre
[manifest] name = pcre [homebrew] pcre [rpms] pcre-devel pcre-static [debs] libpcre3-dev [download] url = https://versaweb.dl.sourceforge.net/project/pcre/pcre/8.43/pcre-8.43.tar.gz sha256 = 0b8e7465dc5e98c757cc3650a20a7843ee4c3edf50aaf60bb33fd879690d2c73 [build] builder = cmake subdir = pcre-8.43
hhvm/build/fbcode_builder/manifests/pcre2
[manifest] name = pcre2 [homebrew] pcre2 [rpms] pcre2-devel pcre-static [debs] libpcre2-dev [download] url = https://github.com/PCRE2Project/pcre2/releases/download/pcre2-10.40/pcre2-10.40.tar.bz2 sha256 = 14e4b83c4783933dc17e964318e6324f7cae1bc75d8f3c79bc6969f00c159d68 [build] builder = cmake subdir = pcre2-10.40
hhvm/build/fbcode_builder/manifests/perl
[manifest] name = perl [download.os=windows] url = http://strawberryperl.com/download/5.28.1.1/strawberry-perl-5.28.1.1-64bit-portable.zip sha256 = 935c95ba096fa11c4e1b5188732e3832d330a2a79e9882ab7ba8460ddbca810d [build.os=windows] builder = nop subdir = perl
hhvm/build/fbcode_builder/manifests/pexpect
[manifest] name = pexpect [download] url = https://files.pythonhosted.org/packages/0e/3e/377007e3f36ec42f1b84ec322ee12141a9e10d808312e5738f52f80a232c/pexpect-4.7.0-py2.py3-none-any.whl sha256 = 2094eefdfcf37a1fdbfb9aa090862c1a4878e5c7e0e7e7088bdb511c558e5cd1 [build] builder = python-wheel [dependencies] python-ptypr...
hhvm/build/fbcode_builder/manifests/protobuf
[manifest] name = protobuf [rpms] protobuf-devel [debs] libprotobuf-dev [git] repo_url = https://github.com/protocolbuffers/protobuf.git rev = master [build.not(os=windows)] builder = autoconf [build.os=windows] builder = nop
hhvm/build/fbcode_builder/manifests/proxygen
[manifest] name = proxygen fbsource_path = fbcode/proxygen shipit_project = proxygen shipit_fbcode_builder = true [git] repo_url = https://github.com/facebook/proxygen.git [build.os=windows] builder = nop [build] builder = cmake subdir = . job_weight_mib = 3072 [cmake.defines] BUILD_QUIC = ON [cmake.defines.test=o...
hhvm/build/fbcode_builder/manifests/python
[manifest] name = python [homebrew] python@3.8 [rpms] python3 python3-devel # sapling needs dataclasses which arrive in 3.7, and the bionic python is 3.6 [debs.all(distro=ubuntu,distro_vers="18.04")] python3.8-dev [debs.not(all(distro=ubuntu,distro_vers="18.04"))] python3-all-dev [download] url = https://www.pytho...
hhvm/build/fbcode_builder/manifests/python-click
[manifest] name = python-click [download] url = https://files.pythonhosted.org/packages/d2/3d/fa76db83bf75c4f8d338c2fd15c8d33fdd7ad23a9b5e57eb6c5de26b430e/click-7.1.2-py2.py3-none-any.whl sha256 = dacca89f4bfadd5de3d7489b7c8a566eee0d3676333fbb50030263894c38c0dc [build] builder = python-wheel