summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2020-10-10 16:57:27 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2020-10-10 16:57:27 +0200
commite80b5ae32b7913d6f8846f06f96f8f4d9d5110da (patch)
treec9137890d1a68bd7d7066efb0b7ac51ea8b1d897
parent9c21658556b25b2b91282f0d09dca56749b80083 (diff)
downloadpackages-e80b5ae32b7913d6f8846f06f96f8f4d9d5110da.tar.xz
extra/sysprof: removed gsize patch (applied upstream)
-rw-r--r--extra/sysprof/PKGBUILD8
-rw-r--r--extra/sysprof/sysprof-3.36.0-allocs-by-size-gsize-format.patch12
2 files changed, 0 insertions, 20 deletions
diff --git a/extra/sysprof/PKGBUILD b/extra/sysprof/PKGBUILD
deleted file mode 100644
index de23085b..00000000
--- a/extra/sysprof/PKGBUILD
+++ /dev/null
@@ -1,8 +0,0 @@
-source+=('sysprof-3.36.0-allocs-by-size-gsize-format.patch')
-sha256sums+=('cce5ea34047e29327b9a4d127e4db3030c142e43191358d712242383fcba565d')
-eval "$(
- declare -f prepare | \
- sed '
- /cd.*/a patch -p1 -i "$srcdir/sysprof-3.36.0-allocs-by-size-gsize-format.patch"
- '
-)"
diff --git a/extra/sysprof/sysprof-3.36.0-allocs-by-size-gsize-format.patch b/extra/sysprof/sysprof-3.36.0-allocs-by-size-gsize-format.patch
deleted file mode 100644
index 831c2f30..00000000
--- a/extra/sysprof/sysprof-3.36.0-allocs-by-size-gsize-format.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -rauN sysprof-3.36.0/src/tests/allocs-by-size.c sysprof-3.36.0-allocs-by-size-gsize-format-patch/src/tests/allocs-by-size.c
---- sysprof-3.36.0/src/tests/allocs-by-size.c 2020-03-22 20:00:12.677048822 +0100
-+++ sysprof-3.36.0-allocs-by-size-gsize-format-patch/src/tests/allocs-by-size.c 2020-03-22 20:01:07.000418361 +0100
-@@ -109,7 +109,7 @@
- {
- const Item *item = &g_array_index (ar, Item, i);
-
-- g_print ("%"G_GUINT64_FORMAT",%"G_GUINT64_FORMAT",%"G_GUINT64_FORMAT"\n",
-+ g_print ("%"G_GSIZE_FORMAT",%"G_GSIZE_FORMAT",%"G_GSIZE_FORMAT"\n",
- item->size, item->cmp, item->count);
- }
- }