x11-terms/terminator: remove unused patches

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18804
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Michael Mair-Keimberger
2020-12-24 09:56:10 +01:00
committed by Andreas Sturmlechner
parent a879915c57
commit ec839b32fc
2 changed files with 0 additions and 57 deletions

View File

@@ -1,25 +0,0 @@
commit 9f855d41f3e6d610bd01df9688467fdbb341917c
Author: Alexey Sokolov <sokolov@google.com>
Date: Fri May 1 08:36:09 2020 +0100
Make failed tests fail the test
diff --git a/run_tests b/run_tests
index 3bf51e4a..cc7fb56a 100755
--- a/run_tests
+++ b/run_tests
@@ -4,10 +4,10 @@ for t in tests/test*; do
echo $t
file_type=$(file -b $t)
case ${file_type} in
- *[Pp]ython*) python ${t} ;;
- *Bourne*) bash ${t} ;;
- *bash*) bash ${t} ;;
- *perl*) perl ${t} ;;
+ *[Pp]ython*) python ${t} || exit 1 ;;
+ *Bourne*) bash ${t} || exit 1 ;;
+ *bash*) bash ${t} || exit 1 ;;
+ *perl*) perl ${t} || exit 1 ;;
*) echo "Unknown" ;;
esac
echo

View File

@@ -1,32 +0,0 @@
commit 39fb5fb9586e9974c2bf4772e18c86b07e3a4a41
Author: Alexey Sokolov <sokolov@google.com>
Date: Fri May 1 20:38:00 2020 +0100
Install AppStream data as .metainfo.xml
Following advice from https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html
diff --git a/setup.py b/setup.py
index 7c54977e..38a819a9 100755
--- a/setup.py
+++ b/setup.py
@@ -72,7 +72,7 @@ class BuildData(build):
[file_data.write(line.lstrip('_')) for line in file_in]
appdata_in='data/terminator.appdata.xml.in'
- appdata_data='data/terminator.appdata.xml'
+ appdata_data='data/terminator.metainfo.xml'
rc = os.system ("C_ALL=C " + INTLTOOL_MERGE + " -x -u -c " + TOP_BUILDDIR +
"/po/.intltool-merge-cache " + TOP_BUILDDIR + "/po " +
appdata_in + " " + appdata_data)
@@ -205,9 +205,9 @@ setup(name=APP_NAME,
license='GNU GPL v2',
scripts=['terminator', 'remotinator'],
data_files=[
('bin', ['terminator.wrapper']),
- ('share/appdata', ['data/terminator.appdata.xml']),
('share/applications', ['data/terminator.desktop']),
+ ('share/metainfo', ['data/terminator.metainfo.xml']),
(os.path.join(man_dir, 'man1'), ['doc/terminator.1']),
(os.path.join(man_dir, 'man5'), ['doc/terminator_config.5']),
('share/pixmaps', ['data/icons/hicolor/48x48/apps/terminator.png']),