|
4 | 4 | # DOTNET_MINOR: Minor .NET version number from the latest changelog entry. |
5 | 5 | # DOTNET_RUNTIME_ID: .NET runtime identifier of the current host. |
6 | 6 | # DOTNET_ARCH: .NET architecture identifier of the current host. |
7 | | -# DOTNET_GIT_REPO: URI of the repository where the origiinal source is from. |
8 | | -# DOTNET_GIT_COMMIT: Commit hash of the original source in the repository. |
9 | 7 | # DOTNET_DEB_VERSION_SDK_ONLY: The version for binary deb packages that only contain SDK components in compliance with FO127. |
10 | 8 | # DOTNET_DEB_VERSION_RUNTIME_ONLY: The version for binary deb packages that only contain Runtime components in compliance with FO127. |
11 | 9 | # DOTNET_CONTAINS_BOOTSTRAPPING_SDK: A boolean (true/false) that indicates if the source packages contains an embedded SDK for initial bootstrapping. |
@@ -83,19 +81,6 @@ export DOTNET_RUNTIME_ID = $(shell . /etc/os-release; echo "$${ID}.$${VERSION_ID |
83 | 81 | ifeq ($(DOTNET_80_OR_GREATER), true) |
84 | 82 | DOTNET_DEB_VERSION_SDK_ONLY = $(shell $(CURDIR)/debian/eng/dotnet-version.py --sdk-only-deb-version) |
85 | 83 | DOTNET_DEB_VERSION_RUNTIME_ONLY = $(shell $(CURDIR)/debian/eng/dotnet-version.py --runtime-only-deb-version) |
86 | | - |
87 | | - ifeq ($(wildcard $(CURDIR)/release.info),) |
88 | | - $(error "No release.info file in the source tarball found") |
89 | | - endif |
90 | | - |
91 | | - DOTNET_GIT_REPO = $(shell grep --only-matching --perl-regexp '(?<=^RM_GIT_REPO=).+$$' $(CURDIR)/release.info) |
92 | | - DOTNET_GIT_COMMIT = $(shell grep --only-matching --perl-regexp '(?<=^RM_GIT_COMMIT=).+$$' $(CURDIR)/release.info) |
93 | | - |
94 | | - ifeq ($(DOTNET_GIT_REPO),) |
95 | | - $(error ".NET git source repository is NOT specified in release.info file.") |
96 | | - else ifeq ($(DOTNET_GIT_COMMIT),) |
97 | | - $(error ".NET git commit hash is NOT specified in release.info file.") |
98 | | - endif |
99 | 84 | endif |
100 | 85 |
|
101 | 86 | ifeq ($(DOTNET_90_OR_GREATER), true) |
|
0 commit comments