Skip to content
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

DPDK: Fix source for tarball #3505

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open

DPDK: Fix source for tarball #3505

wants to merge 5 commits into from

Commits on Nov 11, 2024

  1. urlparse tar fix

    Fixing one bug uncovered a few others.
    Fixes the way the Tar tool handles fetching
    the filename of the tar file it downloads.
    mcgov committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    fa372b0 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2024

  1. Wget: add caching

    mcgov committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    f996ba6 View commit details
    Browse the repository at this point in the history
  2. Tar: Allow skip-old-files option

    When running Wget.get(..., force_run=False) and Tar.extract it is
    useful to allow Tar to skip extracting existing files on the second
    pass.
    
    Allow the skip-old-files option, so Tar.extract will not overwrite
    existing files in the output directory.
    
    Note: it's important to not use this option if you are providing LISA
    with a default filename for your tarballs. This option could silently
    allow Tar.extract to not update the contents of a directory with the
    newer file contents.
    
    I don't see anyone using that schema now. My apologies to future devs who
    find this commit message while debugging that issue.
    
    Tar: chi comments
    mcgov committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    252f54a View commit details
    Browse the repository at this point in the history
  3. TarDownloader: enable skip_old_files option in tar extract

    Dpdk: chi comments
    mcgov committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    57fd240 View commit details
    Browse the repository at this point in the history
  4. Tar: fix subclass prototype

    mcgov committed Nov 19, 2024
    Configuration menu
    Copy the full SHA
    701b267 View commit details
    Browse the repository at this point in the history