summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Helmert III <ajak@gentoo.org>2022-10-20 23:43:09 -0500
committerJohn Helmert III <ajak@gentoo.org>2022-10-21 01:04:32 -0500
commite9190b5e72e5f6feaa7053fd04369b9a86b1f429 (patch)
tree947cccd9765892371cf7fca7be1e7d3357fb2c8b /sys-process/glances/files
parentdev-libs/icu-layoutex: add 72.1, drop 72_rc (diff)
downloadgentoo-e9190b5e72e5f6feaa7053fd04369b9a86b1f429.tar.gz
gentoo-e9190b5e72e5f6feaa7053fd04369b9a86b1f429.tar.bz2
gentoo-e9190b5e72e5f6feaa7053fd04369b9a86b1f429.zip
sys-process/glances: drop 3.2.2, 3.2.4.2, 3.2.5, 3.2.6.4
Signed-off-by: John Helmert III <ajak@gentoo.org>
Diffstat (limited to 'sys-process/glances/files')
-rw-r--r--sys-process/glances/files/disable-update-check.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/sys-process/glances/files/disable-update-check.patch b/sys-process/glances/files/disable-update-check.patch
deleted file mode 100644
index 3706959c2fbb..000000000000
--- a/sys-process/glances/files/disable-update-check.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-Description: Disable nagging suggestion to upgrade using pip
-Author: Sebastien Badia <sbadia@debian.org>
-Bug-Debian: https://bugs.debian.org/877127
-Forwarded: not-needed
-Last-Update: 2019-02-07
-
---- a/glances/standalone.py
-+++ b/glances/standalone.py
-@@ -92,9 +92,6 @@
- # Init screen
- self.screen = GlancesCursesStandalone(config=config, args=args)
-
-- # Check the latest Glances version
-- self.outdated = Outdated(config=config, args=args)
--
- @property
- def quiet(self):
- return self._quiet
-@@ -156,9 +153,3 @@
-
- # Exit from export modules
- self.stats.end()
--
-- # Check Glances version versus PyPI one
-- if self.outdated.is_outdated():
-- print("You are using Glances version {}, however version {} is available.".format(
-- self.outdated.installed_version(), self.outdated.latest_version()))
-- print("You should consider upgrading using: pip install --upgrade glances")