From 19db4bb844403504efe8db77e49c9af5f2ace4b0 Mon Sep 17 00:00:00 2001 From: George Oastler Date: Wed, 17 Jul 2024 19:24:22 +0100 Subject: [PATCH 1/3] script to work out which packages to build given a set of file changes --- dev/gh-actions/src/listChangedPackages.ts | 139 ++++++++++++++++++++++ 1 file changed, 139 insertions(+) create mode 100644 dev/gh-actions/src/listChangedPackages.ts diff --git a/dev/gh-actions/src/listChangedPackages.ts b/dev/gh-actions/src/listChangedPackages.ts new file mode 100644 index 0000000000..cd764cf989 --- /dev/null +++ b/dev/gh-actions/src/listChangedPackages.ts @@ -0,0 +1,139 @@ +// Copyright 2021-2024 Prosopo (UK) Ltd. +// +// 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 agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +import { exec } from "node:child_process" +import { z } from "zod" +import readline from 'node:readline'; + +const exe = async (cmd: string): Promise => { + return new Promise((resolve, reject) => { + exec(cmd, (err, stdout, stderr) => { + if (err) { + console.error(stderr) + reject(err) + } else { + resolve(stdout) + } + }) + }) +} + +const main = async () => { + // stdin is a list of changed files + const changedFiles: string[]= [] + + const rl = readline.createInterface({ + input: process.stdin, + }) + + // listen for lines of input + rl.on("line", (line) => { + changedFiles.push(line); + }) + + // wait for the input to end + await new Promise((resolve) => { + rl.on("close", resolve) + }) + + // console.log("changedFiles:", changedFiles) + + // list all the packages in the workspace + const pkgs = (await exe( + `npm run --workspaces env | grep npm_package_name | cut -d '=' -f 2`, + )).split("\n").filter((f) => f !== ""); + // console.log("packages:", pkgs); + + const pkgInfoSpec = z.object({ + dependencies: z.record( + z.object({ + resolved: z.string().optional(), + dependencies: z.record(z.object({})).optional(), + }), + ), + }); + type PkgInfo = z.infer; + + // get all the pkgs used in the workspace + const workspaceInfo = ([await exe("npm list --json")] + .map((info) => JSON.parse(info)) + .map((info) => + pkgInfoSpec.parse({ ...info, name: "workspace" }), + )[0] as PkgInfo + ).dependencies + + // for each package, find its info from the workspace info + const pkgInfos = pkgs.map((pkg) => { + const info = workspaceInfo[pkg] + if (info === undefined) { + throw new Error(`Package ${pkg} not found in workspace dependencies`) + } + // path to the package prefixed with "file://" + // strip the prefix + // for some reason, all the paths have "../../" in front of them, so remove them + return { name: pkg, deps: info.dependencies ? Object.keys(info.dependencies) : [], path: info.resolved ? info.resolved.slice("file://".length).replaceAll('/../', '').replaceAll("../", "") : ''} + }) + + // find out which packages have changed by going through each changed file and finding what package it belongs to, if any + const changedPkgs = changedFiles.map(file => { + for (const pkgInfo of pkgInfos) { + const pth = pkgInfo.path; + // if the change file is in this package + if (file.startsWith(pth)) { + // console.log(`File ${file} belongs to package ${pkgInfo.name}`) + // add the package to the list of changed packages + return pkgInfo + } + } + // console.log(`File ${file} not in any npm workspace package`); + return null + }).filter((pkgInfo) => pkgInfo !== null); + // console.log("changedPkgs:", changedPkgs.map(info => info.name)) + + // we now have a list of packages which have changed + // now we need to find any packages which depend on these packages + // start off with the list of changed packages + const changePkgsWithDeps: typeof changedPkgs = [] + const queue = [...changedPkgs] // process the queue of pkgs + while (queue.length > 0) { + const pkg = queue.pop() + if (pkg === undefined) { + throw new Error("pop() returned undefined") + } + + if(changePkgsWithDeps.includes(pkg)) { + // already processed + // console.log('Already processed', pkg.name) + continue + } + + // add the package to the set of changed packages + changePkgsWithDeps.push(pkg) + + // find all the packages which depend on this package + for(const pkgInfo of pkgInfos) { + if(pkgInfo.deps.includes(pkg.name)) { + queue.push(pkgInfo) + } + } + } + + // now we have a set of pkgs which have changed and all the pkgs which depend on them + // console.log("changedPkgsWithDeps:", changePkgsWithDeps.map(info => info.name)) + for(const pkg of changePkgsWithDeps) { + console.log(pkg.name) + } +} + +main() From c56bbd123ea83b6a1277b902c6e356e072b0ea8b Mon Sep 17 00:00:00 2001 From: George Oastler Date: Fri, 19 Jul 2024 13:21:42 +0100 Subject: [PATCH 2/3] rename script --- .../src/{listChangedPackages.ts => resolvePackages.ts} | 3 +++ 1 file changed, 3 insertions(+) rename dev/gh-actions/src/{listChangedPackages.ts => resolvePackages.ts} (97%) diff --git a/dev/gh-actions/src/listChangedPackages.ts b/dev/gh-actions/src/resolvePackages.ts similarity index 97% rename from dev/gh-actions/src/listChangedPackages.ts rename to dev/gh-actions/src/resolvePackages.ts index cd764cf989..4103a021e5 100644 --- a/dev/gh-actions/src/listChangedPackages.ts +++ b/dev/gh-actions/src/resolvePackages.ts @@ -29,6 +29,9 @@ const exe = async (cmd: string): Promise => { }) } +/** + * Given a set of files that have changed, work out which packages in the workspace have changed. Include dependencies. + */ const main = async () => { // stdin is a list of changed files const changedFiles: string[]= [] From 3176630eb1065aae1df396a7865e79f15fb8e60f Mon Sep 17 00:00:00 2001 From: George Oastler Date: Fri, 19 Jul 2024 13:26:07 +0100 Subject: [PATCH 3/3] Update package-lock.json --- package-lock.json | 223 +++------------------------------------------- 1 file changed, 12 insertions(+), 211 deletions(-) diff --git a/package-lock.json b/package-lock.json index bc0ec6e6b4..32f130d95e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -26,7 +26,6 @@ "@html-eslint/parser": "^0.22.0", "@polkadot/x-textdecoder": "12.6.2", "@polkadot/x-textencoder": "12.6.2", - "@prosopo/typechain-polkadot": "^1.1.15", "@types/node": "^20.2.5", "@typescript-eslint/eslint-plugin": "^6.13.2", "@typescript-eslint/parser": "^6.0.0", @@ -74,9 +73,7 @@ "@polkadot/types-codec": "10.13.1", "@polkadot/types-create": "10.13.1", "@polkadot/util": "12.6.2", - "@polkadot/util-crypto": "12.6.2", - "@prosopo/typechain-polkadot": "1.1.15", - "@prosopo/typechain-types": "1.1.15" + "@polkadot/util-crypto": "12.6.2" }, "devDependencies": { "tslib": "2.6.2", @@ -97,9 +94,7 @@ "@polkadot/types-codec": "10.13.1", "@polkadot/types-create": "10.13.1", "@polkadot/util": "12.6.2", - "@polkadot/util-crypto": "12.6.2", - "@prosopo/typechain-polkadot": "1.1.15", - "@prosopo/typechain-types": "1.1.15" + "@polkadot/util-crypto": "12.6.2" }, "devDependencies": { "tslib": "2.6.2", @@ -120,9 +115,7 @@ "@polkadot/types-codec": "10.13.1", "@polkadot/types-create": "10.13.1", "@polkadot/util": "12.6.2", - "@polkadot/util-crypto": "12.6.2", - "@prosopo/typechain-polkadot": "1.1.15", - "@prosopo/typechain-types": "1.1.15" + "@polkadot/util-crypto": "12.6.2" }, "devDependencies": { "tslib": "2.6.2", @@ -3323,26 +3316,6 @@ "node": ">=0.1.90" } }, - "node_modules/@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "dependencies": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, "node_modules/@cypress/request": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@cypress/request/-/request-3.0.1.tgz", @@ -6628,92 +6601,6 @@ "resolved": "packages/tx", "link": true }, - "node_modules/@prosopo/typechain-polkadot": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/@prosopo/typechain-polkadot/-/typechain-polkadot-1.1.15.tgz", - "integrity": "sha512-WC6SQqgEp1aOTcQupxf5DO5TTLdFZl3V4Kbp5yJTqe7zWYwoXvyAgP1Ogw9mpDYojM5kH4+RXFmvQvetk4swkA==", - "dependencies": { - "@polkadot/api": "10.13.1", - "@polkadot/api-contract": "10.13.1", - "@polkadot/keyring": "12.6.2", - "@prosopo/typechain-polkadot-parser": "1.1.15", - "@types/fs-extra": "^9.0.13", - "@types/node": "^18.11.18", - "@types/yargs": "^17.0.10", - "camelcase": "^6.3.0", - "eslint": "^8.18.0", - "fs-extra": "^9.1.0", - "handlebars": "^4.7.7", - "prettier": "^2.7.1", - "ts-node": "^10.7.0", - "tslib": "^2.6.2", - "yargs": "^17.5.1" - }, - "bin": { - "typechain-polkadot": "bin/index.js" - }, - "engines": { - "node": ">=18.0.0", - "npm": ">=9.0.0" - } - }, - "node_modules/@prosopo/typechain-polkadot-parser": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/@prosopo/typechain-polkadot-parser/-/typechain-polkadot-parser-1.1.15.tgz", - "integrity": "sha512-Lk54bbYwxApsAFRdm2NpdiOskIJ+cXngjbR3GXK+EMBmRDvHmInAjysiBFN4RTQBt/e5jR78NKVjFcAQnlCHjQ==", - "dependencies": { - "@polkadot/api": "10.13.1", - "@polkadot/api-contract": "10.13.1", - "@types/bn.js": "^5.1.0", - "@types/node": "^18.0.3", - "camelcase": "^6.3.0", - "tslib": "^2.6.2" - } - }, - "node_modules/@prosopo/typechain-polkadot-parser/node_modules/@types/node": { - "version": "18.19.39", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.39.tgz", - "integrity": "sha512-nPwTRDKUctxw3di5b4TfT3I0sWDiWoPQCZjXhvdkINntwr8lcoVCKsTgnXeRubKIlfnV+eN/HYk6Jb40tbcEAQ==", - "dependencies": { - "undici-types": "~5.26.4" - } - }, - "node_modules/@prosopo/typechain-polkadot/node_modules/@types/node": { - "version": "18.19.39", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.39.tgz", - "integrity": "sha512-nPwTRDKUctxw3di5b4TfT3I0sWDiWoPQCZjXhvdkINntwr8lcoVCKsTgnXeRubKIlfnV+eN/HYk6Jb40tbcEAQ==", - "dependencies": { - "undici-types": "~5.26.4" - } - }, - "node_modules/@prosopo/typechain-polkadot/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@prosopo/typechain-polkadot/node_modules/prettier": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", - "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, "node_modules/@prosopo/typechain-types": { "version": "1.1.15", "resolved": "https://registry.npmjs.org/@prosopo/typechain-types/-/typechain-types-1.1.15.tgz", @@ -7950,26 +7837,6 @@ "node": ">= 10" } }, - "node_modules/@tsconfig/node10": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", - "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==" - }, - "node_modules/@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==" - }, - "node_modules/@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==" - }, - "node_modules/@tsconfig/node16": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", - "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==" - }, "node_modules/@typegoose/auto-increment": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/@typegoose/auto-increment/-/auto-increment-3.3.0.tgz", @@ -8194,6 +8061,7 @@ "version": "9.0.13", "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz", "integrity": "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==", + "dev": true, "dependencies": { "@types/node": "*" } @@ -8465,6 +8333,7 @@ "version": "17.0.32", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dev": true, "dependencies": { "@types/yargs-parser": "*" } @@ -8472,7 +8341,8 @@ "node_modules/@types/yargs-parser": { "version": "21.0.3", "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", - "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", + "dev": true }, "node_modules/@types/yauzl": { "version": "2.10.3", @@ -9513,11 +9383,6 @@ "node": ">= 6" } }, - "node_modules/arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" - }, "node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", @@ -9824,6 +9689,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true, "engines": { "node": ">= 4.0.0" } @@ -11721,7 +11587,8 @@ "node_modules/create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true }, "node_modules/cron": { "version": "2.4.4", @@ -17791,6 +17658,7 @@ "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, "dependencies": { "universalify": "^2.0.0" }, @@ -18686,11 +18554,6 @@ "semver": "bin/semver.js" } }, - "node_modules/make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" - }, "node_modules/make-fetch-happen": { "version": "10.2.1", "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", @@ -24927,56 +24790,6 @@ "typescript": ">=4.2.0" } }, - "node_modules/ts-node": { - "version": "10.9.2", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", - "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", - "dependencies": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "bin": { - "ts-node": "dist/bin.js", - "ts-node-cwd": "dist/bin-cwd.js", - "ts-node-esm": "dist/bin-esm.js", - "ts-node-script": "dist/bin-script.js", - "ts-node-transpile-only": "dist/bin-transpile.js", - "ts-script": "dist/bin-script-deprecated.js" - }, - "peerDependencies": { - "@swc/core": ">=1.2.50", - "@swc/wasm": ">=1.2.50", - "@types/node": "*", - "typescript": ">=2.7" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "@swc/wasm": { - "optional": true - } - } - }, - "node_modules/ts-node/node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "engines": { - "node": ">=0.3.1" - } - }, "node_modules/tsc-alias": { "version": "1.8.10", "resolved": "https://registry.npmjs.org/tsc-alias/-/tsc-alias-1.8.10.tgz", @@ -25856,6 +25669,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, "engines": { "node": ">= 10.0.0" } @@ -26052,11 +25866,6 @@ "uuid": "dist/bin/uuid" } }, - "node_modules/v8-compile-cache-lib": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", - "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==" - }, "node_modules/v8-to-istanbul": { "version": "9.3.0", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", @@ -27839,14 +27648,6 @@ "fd-slicer": "~1.1.0" } }, - "node_modules/yn": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", - "engines": { - "node": ">=6" - } - }, "node_modules/yocto-queue": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz",