summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2021-04-05 14:54:54 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2021-04-26 01:11:36 +0200
commit77ae86b54ac33d5590534eacd066932ed4a7f5fd (patch)
tree808c00a66722f0d8f4e2f204e4e473257a20d1e2 /app-crypt/libnitrokey/files
parentapp-eselect/eselect-infinality: Remove last-rited package (diff)
downloadgentoo-77ae86b54ac33d5590534eacd066932ed4a7f5fd.tar.gz
gentoo-77ae86b54ac33d5590534eacd066932ed4a7f5fd.tar.bz2
gentoo-77ae86b54ac33d5590534eacd066932ed4a7f5fd.zip
app-crypt/libnitrokey: Drop 3.5
Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-crypt/libnitrokey/files')
-rw-r--r--app-crypt/libnitrokey/files/libnitrokey-3.5-tests-version-gitless.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/app-crypt/libnitrokey/files/libnitrokey-3.5-tests-version-gitless.patch b/app-crypt/libnitrokey/files/libnitrokey-3.5-tests-version-gitless.patch
deleted file mode 100644
index 99fc5af03787..000000000000
--- a/app-crypt/libnitrokey/files/libnitrokey-3.5-tests-version-gitless.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -129,7 +129,14 @@
- ERROR_QUIET
- )
- ENDIF()
--IF((NOT ${ADD_GIT_INFO}) OR (${PROJECT_VERSION_GIT_RETURN_CODE}))
-+# the version.h generation logic is tricky in a number of ways:
-+# 1. git describe on a release tarball will always fail with
-+# a non-zero return code, usually 128
-+# 2. If git is not installed, PROJECT_VERSION_GIT_RETURN_CODE
-+# will contain the string 'No such file or directory'
-+# Hence fallback to PROJECT_VERSION when the return code is NOT 0.
-+IF((NOT ${ADD_GIT_INFO}) OR (NOT ${PROJECT_VERSION_GIT_RETURN_CODE} STREQUAL "0"))
-+ MESSAGE(STATUS "Setting fallback Git library version")
- SET(PROJECT_VERSION_GIT "v${PROJECT_VERSION}")
- ENDIF()
- MESSAGE(STATUS "Setting Git library version to: " ${PROJECT_VERSION_GIT} )