summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2023-04-01 17:57:07 +0200
committerConrad Kostecki <conikost@gentoo.org>2023-04-01 21:12:30 +0200
commitfccdc0a5265706d1dd79c668e56dd73a4f497417 (patch)
tree0eccf205e63202facbbeeffd498f40b1e710140a /media-gfx/pencil
parentwww-apps/sonarr: remove unused files (diff)
downloadgentoo-fccdc0a5265706d1dd79c668e56dd73a4f497417.tar.gz
gentoo-fccdc0a5265706d1dd79c668e56dd73a4f497417.tar.bz2
gentoo-fccdc0a5265706d1dd79c668e56dd73a4f497417.zip
media-gfx/pencil: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/30437 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'media-gfx/pencil')
-rw-r--r--media-gfx/pencil/files/pencil-0.6.5-skip-building-tests.patch53
1 files changed, 0 insertions, 53 deletions
diff --git a/media-gfx/pencil/files/pencil-0.6.5-skip-building-tests.patch b/media-gfx/pencil/files/pencil-0.6.5-skip-building-tests.patch
deleted file mode 100644
index dd7c80f2893c..000000000000
--- a/media-gfx/pencil/files/pencil-0.6.5-skip-building-tests.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-From f949445894fa6da9eaa9f26f54bac59888822011 Mon Sep 17 00:00:00 2001
-From: Matt Chang <chchwy@gmail.com>
-Date: Wed, 5 Aug 2020 15:06:29 +1000
-Subject: [PATCH] qmake CONFIG+=NO_TESTS to skip building tests
-
----
- pencil2d.pro | 24 ++++++++++++------------
- 1 file changed, 12 insertions(+), 12 deletions(-)
-
-diff --git a/pencil2d.pro b/pencil2d.pro
-index f9fbca5a2..e1bc4a179 100644
---- a/pencil2d.pro
-+++ b/pencil2d.pro
-@@ -4,22 +4,23 @@
-
- TEMPLATE = subdirs
-
--SUBDIRS = \ # sub-project names
-- core_lib \
-- app \
-- tests
--
- # build the project sequentially as listed in SUBDIRS !
- CONFIG += ordered
-
--# where to find the sub projects - give the folders
-+SUBDIRS += core_lib
- core_lib.subdir = core_lib
--app.subdir = app
--tests.subdir = tests
-
--# what subproject depends on others
--app.depends = core_lib
--tests.depends = core_lib
-+SUBDIRS += app
-+app.subdir = app
-+app.depends = core_lib
-+
-+SUBDIRS += tests
-+tests.subdir = tests
-+tests.depends = core_lib
-+
-+NO_TESTS {
-+ SUBDIRS -= tests
-+}
-
- TRANSLATIONS += translations/pencil.ts \
- translations/pencil_ar.ts \
-@@ -48,4 +49,3 @@ TRANSLATIONS += translations/pencil.ts \
- translations/pencil_zh_CN.ts \
- translations/pencil_zh_TW.ts
-
--macx: LIBS += -framework AppKit