aboutsummaryrefslogtreecommitdiffstats
path: root/package/utils/util-linux/patches/120-meson-get-the-project-version-from-the-version-gen-s.patch
diff options
context:
space:
mode:
authorThomas Weißschuh <thomas@t-8ch.de>2023-05-17 16:58:19 +0200
committerHauke Mehrtens <hauke@hauke-m.de>2023-05-18 16:56:45 +0200
commit628a410ed149ca2bf17abd3159e44acc2920743e (patch)
treefb5eeb9b7d94561189db7374a6c2d5105e527055 /package/utils/util-linux/patches/120-meson-get-the-project-version-from-the-version-gen-s.patch
parent13fec6830684d7711018060651d37fd25df832d6 (diff)
downloadupstream-628a410ed149ca2bf17abd3159e44acc2920743e.tar.gz
upstream-628a410ed149ca2bf17abd3159e44acc2920743e.tar.bz2
upstream-628a410ed149ca2bf17abd3159e44acc2920743e.zip
util-linux: update to 2.39
Release Notes: https://cdn.kernel.org/pub/linux/utils/util-linux/v2.39/v2.39-ReleaseNotes Remove upstreamed: 030-meson-don-t-use-run.patch 040-meson-fix-cpu_set_t-test.patch 050-meson-fix-environ-search.patch 060-meson-add-_GNU_SOURCE-for-sighandler_t.patch 070-meson-fix-isnan-check.patch 080-meson-fix-tzname-check.patch 090-meson-libpam.patch 100-meson-make-libcap-ng-dependent-on-setpriv.patch 120-meson-get-the-project-version-from-the-version-gen-s.patch 130-meson-fix-error-in-processing-version-for-pc-files.patch New: 0001-test_enosys-add-support-for-mips.patch Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de> [Refresh patches] Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'package/utils/util-linux/patches/120-meson-get-the-project-version-from-the-version-gen-s.patch')
-rw-r--r--package/utils/util-linux/patches/120-meson-get-the-project-version-from-the-version-gen-s.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/package/utils/util-linux/patches/120-meson-get-the-project-version-from-the-version-gen-s.patch b/package/utils/util-linux/patches/120-meson-get-the-project-version-from-the-version-gen-s.patch
deleted file mode 100644
index 8529c8268e..0000000000
--- a/package/utils/util-linux/patches/120-meson-get-the-project-version-from-the-version-gen-s.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-From e0c1a86bf88b568a7afe8ebaea1b9f84afb892c2 Mon Sep 17 00:00:00 2001
-From: Eli Schwartz <eschwartz@archlinux.org>
-Date: Wed, 4 May 2022 23:52:31 -0400
-Subject: [PATCH] meson: get the project version from the version-gen script
-
-This matches autotools and ensures that the version number is actually
-reliable.
----
- meson.build | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/meson.build
-+++ b/meson.build
-@@ -1,5 +1,5 @@
- project('util-linux', 'c',
-- version : '2.37',
-+ version : run_command('tools/git-version-gen', check: true).stdout(),
- license : 'GPLv2+')
-
- pkgconfig = import('pkgconfig')