void-packages/srcpkgs/extra-cmake-modules/template
Đ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

26 lines
786 B
Bash

# Template file for 'extra-cmake-modules'
pkgname=extra-cmake-modules
version=5.83.0
revision=1
build_style=cmake
configure_args="-DBUILD_HTML_DOCS=ON"
hostmakedepends="python3-Sphinx qt5-tools"
depends="cmake"
checkdepends="qt5-declarative-devel"
short_desc="Extra modules and scripts for CMake"
maintainer="John <me@johnnynator.dev>"
license="BSD-3-Clause"
homepage="https://invent.kde.org/frameworks/extra-cmake-modules"
distfiles="${KDE_SITE}/frameworks/${version%.*}/${pkgname}-${version}.tar.xz"
checksum=72b7f3b3917f3208fff10f0402b0fa3a65815aca924f0f94a4f96383d8e0f81e
python_version=3
do_check() {
cd build
# expects to be in frameworks/extra-cmake-modules instead of extra-cmake-modules
ctest -E 'KDEFetchTranslations'
}
post_install() {
vlicense COPYING-CMAKE-SCRIPTS
}