Drop patches applied upstream
authorIOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org>
Tue, 5 Sep 2023 21:11:30 +0000 (23:11 +0200)
committerIOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org>
Tue, 5 Sep 2023 21:11:30 +0000 (23:11 +0200)
debian/patches/build-without-git.patch [deleted file]
debian/patches/manpage.patch [deleted file]
debian/patches/series

diff --git a/debian/patches/build-without-git.patch b/debian/patches/build-without-git.patch
deleted file mode 100644 (file)
index ea88a3f..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-Description: Allow building without git installed
- Upstream runs 'git' during configure to inject commit info into the binary.
- We don't have 'git' installed on our buildds.
-Author: IOhannes m zmölnig
-Origin: Debian
-Bug: https://github.com/jacktrip/jacktrip/issues/1184
-Last-Update: 2023-08-30
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- jacktrip.orig/meson.build
-+++ jacktrip/meson.build
-@@ -36,12 +36,15 @@
-       c_defines += ['-DNDEBUG']
- endif
--git_tags_cmd = run_command('git', 'describe', '--tags', check: false)
--git_hash_cmd = run_command('git', 'rev-parse', '--short', 'HEAD', check: false)
--if git_tags_cmd.returncode() == 0 and git_hash_cmd.returncode() == 0
-+git = find_program('git', required: false)
-+if git.found()
-+  git_tags_cmd = run_command(git, 'describe', '--tags', check: false)
-+  git_hash_cmd = run_command(git, 'rev-parse', '--short', 'HEAD', check: false)
-+  if git_tags_cmd.returncode() == 0 and git_hash_cmd.returncode() == 0
-       git_tags = git_tags_cmd.stdout().strip()
-       git_hash = git_hash_cmd.stdout().strip()
-       defines += ['-DJACKTRIP_BUILD_INFO=' + git_tags + '-' + git_hash]
-+  endif
- endif
- src = [       'src/DataProtocol.cpp',
diff --git a/debian/patches/manpage.patch b/debian/patches/manpage.patch
deleted file mode 100644 (file)
index 2f46d3c..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-Description: Provide a useful whatis entry in the manpage
-Author: IOhannes m zmölnig
-Origin: Debian
-Bug: https://github.com/jacktrip/jacktrip/issues/1185
-Last-Update: 2023-08-30
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- jacktrip.orig/meson.build
-+++ jacktrip/meson.build
-@@ -293,6 +293,7 @@
-       if help2man.found()
-               gzip = find_program('gzip', required: false)
-               help2man_opts = [
-+                      '--name="Network Music Performance over the Internet"',
-                       '--no-info',
-                       '--section=1']
-               manfile = custom_target('jacktrip.1',
-@@ -317,4 +318,4 @@
- summary({'Application ID': application_id,
-       'GUI': not get_option('nogui'),
-       'WAIR': get_option('wair'),
--      'Manpage': help2man.found()}, bool_yn: true, section: 'Configuration')
-\ No newline at end of file
-+      'Manpage': help2man.found()}, bool_yn: true, section: 'Configuration')
index 30016a2150a200e274a3fbfec2b08a069521fbba..0d8f1eeb376a6eca67dd4b6f6f3d1fdbb709a602 100644 (file)
@@ -1,3 +1 @@
-build-without-git.patch
 gui-launcher.patch
-manpage.patch