├── .gitmodules └── release.json /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "CoreOSMakefiles"] 2 | path = CoreOSMakefiles 3 | url = https://github.com/apple-oss-distributions/CoreOSMakefiles 4 | [submodule "bison"] 5 | path = bison 6 | url = https://github.com/apple-oss-distributions/bison 7 | [submodule "bootstrap_cmds"] 8 | path = bootstrap_cmds 9 | url = https://github.com/apple-oss-distributions/bootstrap_cmds 10 | [submodule "cctools"] 11 | path = cctools 12 | url = https://github.com/apple-oss-distributions/cctools 13 | [submodule "developer_cmds"] 14 | path = developer_cmds 15 | url = https://github.com/apple-oss-distributions/developer_cmds 16 | [submodule "gm4"] 17 | path = gm4 18 | url = https://github.com/apple-oss-distributions/gm4 19 | [submodule "gnumake"] 20 | path = gnumake 21 | url = https://github.com/apple-oss-distributions/gnumake 22 | [submodule "gperf"] 23 | path = gperf 24 | url = https://github.com/apple-oss-distributions/gperf 25 | [submodule "headerdoc"] 26 | path = headerdoc 27 | url = https://github.com/apple-oss-distributions/headerdoc 28 | [submodule "ld64"] 29 | path = ld64 30 | url = https://github.com/apple-oss-distributions/ld64 31 | [submodule "pb_makefiles"] 32 | path = pb_makefiles 33 | url = https://github.com/apple-oss-distributions/pb_makefiles 34 | [submodule "Git"] 35 | path = Git 36 | url = https://github.com/apple-oss-distributions/Git 37 | [submodule "libgit2"] 38 | path = libgit2 39 | url = https://github.com/apple-oss-distributions/libgit2 40 | [submodule "tapi"] 41 | path = tapi 42 | url = https://github.com/apple-oss-distributions/tapi 43 | [submodule "flex"] 44 | path = flex 45 | url = https://github.com/apple-oss-distributions/flex 46 | -------------------------------------------------------------------------------- /release.json: -------------------------------------------------------------------------------- 1 | { 2 | "major_release": "Developer Tools 16", 3 | "release": "Developer Tools 16.0", 4 | "projects": [ 5 | { 6 | "project": "CoreOSMakefiles", 7 | "tag": "CoreOSMakefiles-79" 8 | }, 9 | { 10 | "project": "Git", 11 | "tag": "Git-154" 12 | }, 13 | { 14 | "project": "bison", 15 | "tag": "bison-16" 16 | }, 17 | { 18 | "project": "bootstrap_cmds", 19 | "tag": "bootstrap_cmds-129" 20 | }, 21 | { 22 | "project": "cctools", 23 | "tag": "cctools-1021.4" 24 | }, 25 | { 26 | "project": "developer_cmds", 27 | "tag": "developer_cmds-83" 28 | }, 29 | { 30 | "project": "flex", 31 | "tag": "flex-35" 32 | }, 33 | { 34 | "project": "gm4", 35 | "tag": "gm4-19" 36 | }, 37 | { 38 | "project": "gnumake", 39 | "tag": "gnumake-136" 40 | }, 41 | { 42 | "project": "gperf", 43 | "tag": "gperf-15" 44 | }, 45 | { 46 | "project": "headerdoc", 47 | "tag": "headerdoc-8.9.32" 48 | }, 49 | { 50 | "project": "ld64", 51 | "tag": "ld64-954.16" 52 | }, 53 | { 54 | "project": "libgit2", 55 | "tag": "libgit2-30" 56 | }, 57 | { 58 | "project": "pb_makefiles", 59 | "tag": "pb_makefiles-1009" 60 | }, 61 | { 62 | "project": "tapi", 63 | "tag": "tapi-1600.0.11.8" 64 | } 65 | ] 66 | } 67 | --------------------------------------------------------------------------------