summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Schendel2022-01-16 13:48:44 +0100
committerChristian Schendel2022-01-16 13:48:44 +0100
commitc2bcc86ff45b29a8ede01c63c82617ba238e94be (patch)
treead9b9b6b2f87baad6a9d76732ddbc34b70bf0ff1
parente021efbdb2df54c307a91a2e5b2ec8a7922d93be (diff)
downloadaur-c2bcc86ff45b29a8ede01c63c82617ba238e94be.tar.gz
remove patch file
-rw-r--r--no_update_icon_cache_from_setup.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/no_update_icon_cache_from_setup.patch b/no_update_icon_cache_from_setup.patch
deleted file mode 100644
index 4b0febef9aa2..000000000000
--- a/no_update_icon_cache_from_setup.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-diff -Naur ./rabbitvcs.orig/setup.py ./rabbitvcs/setup.py
---- ./rabbitvcs.orig/setup.py 2017-02-02 19:07:28.477399332 -0500
-+++ ./rabbitvcs/setup.py 2017-02-02 19:07:42.327399603 -0500
-@@ -11,7 +11,7 @@
- # For more information see: http://docs.python.org/dist/dist.html
- #
-
--# TODO: this all feels just a little too shell scripty, refactoring it later
-+# TODO: this all feels just a little too shell scripty, refactoring it later
- # might be a good idea.
-
- # NOTES:
-@@ -120,8 +120,8 @@
- # Ready to install
- #==============================================================================
-
--# Calling the setup function will actually install RabbitVCS and also creates
--# an .egg-info file in /usr/lib/python<version>/site-packages/ or
-+# Calling the setup function will actually install RabbitVCS and also creates
-+# an .egg-info file in /usr/lib/python<version>/site-packages/ or
- # /usr/share/python-support/rabbitvcs when generating a Debian package.
- dist = setup(
- # The following arguments will be included in the .egg.info file,
-@@ -151,18 +151,3 @@
- },
- data_files=translations + icons + documentation + config_spec
- )
--
--#
--# Post installation
--#
--
--# Make sure the icon cache is deleted and recreated
--if sys.argv[1] == "install":
--
-- if os.uname()[0] != 'Darwin':
-- print "Running gtk-update-icon-cache-3.0"
--
-- subprocess.Popen(
-- ["gtk-update-icon-cache-3.0", icon_theme_directory],
-- stdout=subprocess.PIPE
-- ).communicate()[0]