void-packages/srcpkgs/zimg/patches/fix-size_t.patch
Đoàn Trần Công Danh e2a21ccfd6 srcpkgs/z*: 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

50 lines
1.1 KiB
Diff

--- a/src/zimg/colorspace/matrix3.cpp 2020-03-02 05:50:02.000000000 +0100
+++ b/src/zimg/colorspace/matrix3.cpp 2020-08-23 20:46:14.298311898 +0200
@@ -17,7 +17,7 @@
{
Vector3 ret;
- for (size_t i = 0; i < 3; ++i) {
+ for (std::size_t i = 0; i < 3; ++i) {
ret[i] = v1[i] * v2[i];
}
return ret;
@@ -27,10 +27,10 @@
{
Vector3 ret;
- for (size_t i = 0; i < 3; ++i) {
+ for (std::size_t i = 0; i < 3; ++i) {
double accum = 0;
- for (size_t k = 0; k < 3; ++k) {
+ for (std::size_t k = 0; k < 3; ++k) {
accum += m[i][k] * v[k];
}
ret[i] = accum;
@@ -42,11 +42,11 @@
{
Matrix3x3 ret;
- for (size_t i = 0; i < 3; ++i) {
- for (size_t j = 0; j < 3; ++j) {
+ for (std::size_t i = 0; i < 3; ++i) {
+ for (std::size_t j = 0; j < 3; ++j) {
double accum = 0;
- for (size_t k = 0; k < 3; ++k) {
+ for (std::size_t k = 0; k < 3; ++k) {
accum += a[i][k] * b[k][j];
}
ret[i][j] = accum;
@@ -98,8 +98,8 @@
{
Matrix3x3 ret;
- for (size_t i = 0; i < 3; ++i) {
- for (size_t j = 0; j < 3; ++j) {
+ for (std::size_t i = 0; i < 3; ++i) {
+ for (std::size_t j = 0; j < 3; ++j) {
ret[i][j] = m[j][i];
}
}