Skip to content

Commit 26aef72

Browse files
committed
chore(scanner)!: Remove the Boyter lc scanner
The scanner has not seen any release since 2018 [1] and no commits for a year [2]. As it was an example implementation only anyway, just remove it to reduce technical debt. [1]: https://github.com/boyter/lc/releases [2]: https://github.com/boyter/lc/commits/master/ Signed-off-by: Sebastian Schuberth <[email protected]>
1 parent 87268bd commit 26aef72

File tree

9 files changed

+2
-320
lines changed

9 files changed

+2
-320
lines changed

.github/workflows/build-and-test.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,6 @@ jobs:
9191
run: sed "s/^ARG //" docker/versions.dockerfile >> $GITHUB_ENV
9292
- name: Install required tools
9393
run: |
94-
# Uninstall mono-devel because it contains the "lc" command which conflicts with BoyterLc.
95-
sudo apt-get -qq remove mono-devel
96-
9794
# Install git-repo.
9895
mkdir -p $HOME/.local/bin
9996
curl https://storage.googleapis.com/git-repo-downloads/repo -o $HOME/.local/bin/repo
@@ -103,10 +100,6 @@ jobs:
103100
curl -LOs https://github.com/amzn/askalono/releases/download/$ASKALONO_VERSION/askalono-Linux.zip
104101
unzip askalono-Linux.zip -d $HOME/.local/bin
105102
106-
# Install Boyter Lc for functional tests.
107-
curl -LOs https://github.com/boyter/lc/releases/download/v$BOYTERLC_VERSION/lc-$BOYTERLC_VERSION-x86_64-unknown-linux.zip
108-
unzip lc-$BOYTERLC_VERSION-x86_64-unknown-linux.zip -d $HOME/.local/bin
109-
110103
# Install Licensee for functional tests.
111104
echo "gem: --bindir $HOME/.local/bin" > $HOME/.gemrc
112105
gem install --user-install licensee -v $LICENSEE_VERSION

docker/versions.dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ ARG ANDROID_CMD_VERSION=13114758
22
ARG ASKALONO_VERSION=0.5.0
33
ARG BAZELISK_VERSION=1.20.0
44
ARG BOWER_VERSION=1.8.14
5-
ARG BOYTERLC_VERSION=1.3.1
65
ARG COCOAPODS_VERSION=1.16.2
76
ARG COMPOSER_VERSION=2.8.4
87
ARG CONAN_VERSION=1.66.0

integrations/jenkins/Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ pipeline {
216216
choice(
217217
name: 'PROJECT_SCANNER',
218218
description: 'The built-in scanner to use for project source code.',
219-
choices: ['ScanCode', 'DOS', 'Askalono', 'BoyterLc', 'Licensee', 'ScanOSS', '<NONE>']
219+
choices: ['ScanCode', 'DOS', 'Askalono', 'Licensee', 'ScanOSS', '<NONE>']
220220
)
221221

222222
string(
@@ -228,7 +228,7 @@ pipeline {
228228
choice(
229229
name: 'PACKAGE_SCANNER',
230230
description: 'The scanner to use for package source code.',
231-
choices: ['ScanCode', 'DOS', 'Askalono', 'BoyterLc', 'Licensee', 'ScanOSS', '<NONE>']
231+
choices: ['ScanCode', 'DOS', 'Askalono', 'Licensee', 'ScanOSS', '<NONE>']
232232
)
233233

234234
string(

plugins/scanners/boyterlc/build.gradle.kts

Lines changed: 0 additions & 38 deletions
This file was deleted.

plugins/scanners/boyterlc/src/funTest/kotlin/BoyterLcFunTest.kt

Lines changed: 0 additions & 42 deletions
This file was deleted.

plugins/scanners/boyterlc/src/main/kotlin/BoyterLc.kt

Lines changed: 0 additions & 131 deletions
This file was deleted.

plugins/scanners/boyterlc/src/main/kotlin/BoyterLcConfig.kt

Lines changed: 0 additions & 58 deletions
This file was deleted.

plugins/scanners/boyterlc/src/main/kotlin/BoyterLcResultModel.kt

Lines changed: 0 additions & 40 deletions
This file was deleted.

website/docs/tools/scanner.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ We recommend using ORT with any of the following scanners as their integrations
1515
Additionally, the following reference implementations exist (in alphabetical order):
1616

1717
* [Askalono](https://github.com/jpeddicord/askalono)
18-
* [lc](https://github.com/boyter/lc)
1918
* [Licensee](https://github.com/licensee/licensee)
2019
* [SCANOSS](https://www.scanoss.com/) (snippet scanner)
2120

0 commit comments

Comments
 (0)