Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: koalaman/shellcheck
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: koalaman/shellcheck
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ebuild
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 11 commits
  • 14 files changed
  • 3 contributors

Commits on Aug 4, 2023

  1. Configuration menu
    Copy the full SHA
    e3d8483 View commit details
    Browse the repository at this point in the history
  2. New IO interface to scan for Gentoo eclass vars

    Uses the `portageq` command to scan for repositories, which in turn are
    scanned for eclasses, which are then scanned for eclass variables.
    
    The variables are scanned using a heuristic which looks for
    
        "# @ECLASS_VARIABLE: "
    
    at the start of each line, which means only properly documented
    variables will be found.
    
    Signed-off-by: hololeap <hololeap@users.noreply.github.com>
    hololeap committed Aug 4, 2023
    Configuration menu
    Copy the full SHA
    08ae7ef View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2023

  1. Scan for Gentoo eclass variables

    Creates a Map of eclass names to eclass variables by scanning the
    system for repositories and their respective eclasses. Runs `portageq`
    to determine repository names and locations. Emits a warning if an
    IOException is caught when attempting to run `portageq`.
    
    This Map is passed via CheckSpec to AnalysisSpec and finally to
    Parameters, where it is read by `checkUnusedAssignments` in order to
    determine which variables can be safely ignored by this check.
    
    Signed-off-by: hololeap <hololeap@users.noreply.github.com>
    hololeap committed Aug 5, 2023
    Configuration menu
    Copy the full SHA
    272ef81 View commit details
    Browse the repository at this point in the history
  2. Remove PortageAutoInternalVariables and python

    The Gentoo eclass list is now populated using pure Haskell. The old
    python generators and generated module are no longer needed.
    
    Signed-off-by: hololeap <hololeap@users.noreply.github.com>
    hololeap committed Aug 5, 2023
    Configuration menu
    Copy the full SHA
    fc9b63f View commit details
    Browse the repository at this point in the history
  3. Switch to attoparsec for gentoo scan

    Signed-off-by: hololeap <hololeap@users.noreply.github.com>
    hololeap committed Aug 5, 2023
    Configuration menu
    Copy the full SHA
    dfa920c View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2023

  1. Configuration menu
    Copy the full SHA
    0138a6f View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2023

  1. Configuration menu
    Copy the full SHA
    87ef5ae View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    feebbbb View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2023

  1. Configuration menu
    Copy the full SHA
    ce3414e View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2023

  1. Configuration menu
    Copy the full SHA
    e59fbfe View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2023

  1. Configuration menu
    Copy the full SHA
    c9b8ad3 View commit details
    Browse the repository at this point in the history
Loading