void-packages/srcpkgs/terminal_markdown_viewer/template
Đoàn Trần Công Danh 4f75cf25fd srcpkgs/t*: 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

19 lines
620 B
Bash

# Template file for 'terminal_markdown_viewer'
pkgname=terminal_markdown_viewer
version=1.6.3
revision=3
build_style=python3-module
pycompile_module="mdv"
hostmakedepends="python3-setuptools"
depends="python3-docopt python3-Markdown python3-Pygments python3-tabulate python3-yaml"
short_desc="Styled Terminal Markdown Viewer"
maintainer="Andrew Benson <abenson@gmail.com>"
license="BSD-3-Clause"
homepage="https://github.com/axiros/terminal_markdown_viewer"
distfiles="${homepage}/archive/${version}.tar.gz"
checksum=58dbdf8c051a2d7f8c00e4dc13c655c335cbc2bc96851dd0388d73a21c4507b6
post_install() {
vlicense LICENSE
}