-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error when some of the dependencies are already installed #36
Comments
krupkat
referenced
this issue
in krupkat/xpano
Jul 25, 2022
awalsh128
pushed a commit
that referenced
this issue
Jul 26, 2022
Started a possible fix. It is succeeding locally but still need to run against new regression test. If you want, you can try it out yourself from |
The fix from the |
Great to hear. I'll update the issue once I have a release. |
awalsh128
added a commit
that referenced
this issue
Aug 3, 2022
* Bump license year. * Fix pre-existing dep bug in issue #36. * Account for packages without deps. * Fix bug in issue #37 by combining install and dep listing reads. Ensures only installed deps are cached. * Fix bad log lines. * Use apt-fast to show package information and remove CLI warning message. * Switch to apt-cache for package verification and remove CLI warning message.
awalsh128
added a commit
that referenced
this issue
Aug 3, 2022
* Bump license year. * Fix pre-existing dep bug in issue #36. * Account for packages without deps. * Fix bug in issue #37 by combining install and dep listing reads. Ensures only installed deps are cached. * Fix bad log lines. * Use apt-fast to show package information and remove CLI warning message. * Switch to apt-cache for package verification and remove CLI warning message.
awalsh128
added a commit
that referenced
this issue
Aug 3, 2022
* Fix issues #36, #37, and minor refactors. (#40) (#41) * Bump license year. * Fix pre-existing dep bug in issue #36. * Account for packages without deps. * Fix bug in issue #37 by combining install and dep listing reads. Ensures only installed deps are cached. * Fix bad log lines. * Use apt-fast to show package information and remove CLI warning message. * Switch to apt-cache for package verification and remove CLI warning message. * Update README.md to use latest release in examples.
awalsh128
added a commit
that referenced
this issue
Aug 3, 2022
* Fix issues #36, #37, and minor refactors. (#40) (#41) * Bump license year. * Fix pre-existing dep bug in issue #36. * Account for packages without deps. * Fix bug in issue #37 by combining install and dep listing reads. Ensures only installed deps are cached. * Fix bad log lines. * Use apt-fast to show package information and remove CLI warning message. * Switch to apt-cache for package verification and remove CLI warning message. * Update README.md to use latest release in examples.
Thank you! Working great now! |
awalsh128
added a commit
that referenced
this issue
Sep 1, 2022
* Fix issues #36, #37, and minor refactors. (#40) * Bump license year. * Fix pre-existing dep bug in issue #36. * Account for packages without deps. * Fix bug in issue #37 by combining install and dep listing reads. Ensures only installed deps are cached. * Fix bad log lines. * Use apt-fast to show package information and remove CLI warning message. * Switch to apt-cache for package verification and remove CLI warning message. * Merge master to staging. (#43) * Fix issues #36, #37, and minor refactors. (#40) (#41) * Bump license year. * Fix pre-existing dep bug in issue #36. * Account for packages without deps. * Fix bug in issue #37 by combining install and dep listing reads. Ensures only installed deps are cached. * Fix bad log lines. * Use apt-fast to show package information and remove CLI warning message. * Switch to apt-cache for package verification and remove CLI warning message. * Update README.md to use latest release in examples.
awalsh128
added a commit
that referenced
this issue
Sep 1, 2022
* Fix issues #36, #37, and minor refactors. (#40) (#41) * Bump license year. * Fix pre-existing dep bug in issue #36. * Account for packages without deps. * Fix bug in issue #37 by combining install and dep listing reads. Ensures only installed deps are cached. * Fix bad log lines. * Use apt-fast to show package information and remove CLI warning message. * Switch to apt-cache for package verification and remove CLI warning message. * Update README.md to use latest release in examples.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello, thanks for the super useful repo!
I have an issue when caching the libgtk-3-dev package on Ubuntu 22.04, excerpt from my workflow:
Here is the error log:
I believe the get_dep_packages function will have to be updated to better handle the output from
apt --dry-run
. Here is what I get when runningapt install --dry-run --yes libgtk-3-dev | grep "^Inst" | grep harfbuzz
:See the extra version number in square brackets on line 1 which means that there is already a 2.7.4-1ubuntu3 version of the libharfbuzz0b package installed and it will be replaced by the 2.7.4-1ubuntu3.1 version.
The other dependencies are fresh installs, so
awk '{print $2 $3}'
works fine to extract the version number.The text was updated successfully, but these errors were encountered: