void-packages/srcpkgs/enyo-doom/patches/cmake.patch
Đoàn Trần Công Danh a03d116397 srcpkgs/e*: convert patches to -Np1
```sh

git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" |
while read template; do
	for p in ${template%/template}/patches/*; do
		sed -i '
			\,^[+-][+-][+-] /dev/null,b
			/^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b
			s,^[*][*][*] ,&a/,
			/^--- /{
				s,\(^--- \)\(./\)*,\1a/,
				s,[.][Oo][Rr][Ii][Gg]\([	/]\),\1,
				s/[.][Oo][Rr][Ii][Gg]$//
				s/[.]patched[.]\([^.]\)/.\1/
				h
			}
			/^+++ -/{
				g
				s/^--- a/+++ b/
				b
			}
			s,\(^+++ \)\(./\)*,\1b/,
		' "$p"
	done
	sed -i '/^patch_args=/d' $template
done
```
2021-06-20 13:17:29 +07:00

13 lines
623 B
Diff

--- a/CMakeLists.txt 2020-09-20 23:03:04.000000000 +0200
+++ b/CMakeLists.txt 2020-09-20 23:03:04.000000000 +0200
@@ -22,8 +22,8 @@
include_directories ( ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR} )
find_package ( Qt5Core REQUIRED )
find_package (Qt5Widgets REQUIRED )
-add_definitions ( $(Qt5Core_DEFINITIONS) )
-add_definitions ( $(Qt5Widgets_DEFINITIONS) )
+add_definitions ( ${Qt5Core_DEFINITIONS} )
+add_definitions ( ${Qt5Widgets_DEFINITIONS} )
qt5_wrap_ui ( UI_HEADERS ${ENYO_DOOM_UIS} )
qt5_wrap_cpp ( MOC_SOURCES ${ENYO_DOOM_HDRS} )
qt5_add_resources ( RC_SOURCES ${ENYO_DOOM_RCS} )