From 098ec8c804a30fb49ba618d9e04453e3af5bbb5d Mon Sep 17 00:00:00 2001 From: Paul Dreik Date: Sun, 30 Jun 2019 17:38:22 +0200 Subject: [PATCH] [libfmt] use upstream repo (#2552) The fuzzers have been merged upstream, see https://github.com/fmtlib/fmt/pull/1199 --- projects/libfmt/Dockerfile | 8 ++------ projects/libfmt/build.sh | 1 - projects/libfmt/project.yaml | 3 +-- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/projects/libfmt/Dockerfile b/projects/libfmt/Dockerfile index a4e99d8d8..3249bb07b 100644 --- a/projects/libfmt/Dockerfile +++ b/projects/libfmt/Dockerfile @@ -20,12 +20,8 @@ RUN echo "CXX=$CXX" RUN echo "CXXFLAGS=$CXXFLAGS" RUN apt-get update && apt-get install -y cmake ninja-build -RUN git clone --single-branch --branch fuzz \ - https://github.com/pauldreik/fmt.git \ - --recursive -# this requires git>=2.9.0 -#--shallow-submodules +RUN git clone --depth 1 --branch master \ + https://github.com/fmtlib/fmt.git WORKDIR fmt COPY build.sh $SRC/ - diff --git a/projects/libfmt/build.sh b/projects/libfmt/build.sh index b67fbba12..8d38ff760 100755 --- a/projects/libfmt/build.sh +++ b/projects/libfmt/build.sh @@ -40,4 +40,3 @@ cmake .. \ cmake --build . cp bin/fuzzer_* $OUT - diff --git a/projects/libfmt/project.yaml b/projects/libfmt/project.yaml index 41549407b..a8510891a 100644 --- a/projects/libfmt/project.yaml +++ b/projects/libfmt/project.yaml @@ -1,5 +1,4 @@ -homepage: "https://github.com/pauldreik/fmt" +homepage: "https://github.com/fmtlib/fmt" primary_contact: "pauldreikossfuzz@gmail.com" auto_ccs: - "victor.zverovich@gmail.com" -