-
Notifications
You must be signed in to change notification settings - Fork 9
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
Alpine clearing for package identifier and creater #113
Conversation
@@ -23,6 +23,7 @@ public static class Dataconstant | |||
{"MAVEN", "pkg:maven"}, | |||
{"PYTHON", "pkg:pypi"}, | |||
{"CONAN", "pkg:conan"}, | |||
{"ALPINE", "pkg:apk/alpine"}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this the official package url format?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes,Its official
@@ -0,0 +1,172 @@ | |||
// -------------------------------------------------------------------------------------------------------------------- | |||
// SPDX-FileCopyrightText: 2023 Siemens AG | |||
// |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
correct the year to 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
@@ -0,0 +1,193 @@ | |||
// -------------------------------------------------------------------------------------------------------------------- | |||
// SPDX-FileCopyrightText: 2023 Siemens AG |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change the year
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
@@ -0,0 +1,18 @@ | |||
// -------------------------------------------------------------------------------------------------------------------- | |||
// SPDX-FileCopyrightText: 2023 Siemens AG |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change the year
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
namespace LCT.PackageIdentifier | ||
{ | ||
/// <summary> | ||
/// The DebianProcessor class |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change this to alpine
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
@@ -0,0 +1,31 @@ | |||
// -------------------------------------------------------------------------------------------------------------------- | |||
// SPDX-FileCopyrightText: 2023 Siemens AG |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct the year
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
@@ -0,0 +1,168 @@ | |||
// -------------------------------------------------------------------------------------------------------------------- | |||
// SPDX-FileCopyrightText: 2023 Siemens AG |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change the year
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
src/SW360IntegrationTest/Alpine/PackageIdentifierInitialAlpine.cs
Outdated
Show resolved
Hide resolved
src/TestUtilities/TestParamAlpine.cs
Outdated
@@ -0,0 +1,43 @@ | |||
// -------------------------------------------------------------------------------------------------------------------- | |||
// SPDX-FileCopyrightText: 2023 Siemens AG |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change the year
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
@@ -29,6 +29,7 @@ public class CommonAppSettings | |||
public static string SnapshotDownloadURL { get; set; } = $"https://snapshot.debian.org/archive/"; | |||
public static string PyPiURL { get; set; } = $"https://pypi.org/pypi/"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update the version in appsettings and ca nuspec 6.1.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved
No description provided.