From b365aa99f139e8187f7d5efdb11c16f49f650ad6 Mon Sep 17 00:00:00 2001 From: Bryan Gurney Date: Mon, 19 Jul 2021 11:46:10 -0400 Subject: [PATCH] Remove psutil dependency from setup.py - Remove psutil dependency from setup.py - Resolves: rhbz#1983689 Signed-off-by: Bryan Gurney --- .gitignore | 1 + remove-semantic_version-and-wcwidth-deps.patch | 8 ++++---- sources | 2 +- stratis-cli.spec | 13 ++++++------- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 7e944f9..bec4891 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /stratis-cli-2.3.0.tar.gz /stratis-cli-2.4.1.tar.gz /stratis-cli-2.4.2.tar.gz +/stratis-cli-2.4.3.tar.gz diff --git a/remove-semantic_version-and-wcwidth-deps.patch b/remove-semantic_version-and-wcwidth-deps.patch index 232a06c..ea09778 100644 --- a/remove-semantic_version-and-wcwidth-deps.patch +++ b/remove-semantic_version-and-wcwidth-deps.patch @@ -1,8 +1,8 @@ ---- setup.py.orig 2021-06-28 12:47:21.861294270 -0400 -+++ setup.py 2021-06-28 12:47:36.575294270 -0400 -@@ -51,8 +51,6 @@ setuptools.setup( +--- setup.py.orig 2021-07-19 10:27:56.107557330 -0400 ++++ setup.py 2021-07-19 10:29:17.047557330 -0400 +@@ -50,8 +50,6 @@ setuptools.setup( + "dbus-python-client-gen>=0.7", "justbytes>=0.14", - "psutil", "python-dateutil", - "semantic_version", - "wcwidth", diff --git a/sources b/sources index 2c009e5..aa0a6a5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (stratis-cli-2.4.2.tar.gz) = 7bfeafa6a52ba05ecd4cb3db791305effabeb73f4aff4d520ddad5da693ba3107311148f164f1092997fc4afcbaa65abfdd01cab4b2eef61c7f91ff5d2979921 +SHA512 (stratis-cli-2.4.3.tar.gz) = ba253fbbaaa3daecd1a798425c6dd6bfeeeb0c74924613fed8134862a4b91e3add63e4e04312088bd38c6ef19dfbbe4707cea67cea79c6c737b08055676754ae diff --git a/stratis-cli.spec b/stratis-cli.spec index ac5fcce..a8a2acd 100644 --- a/stratis-cli.spec +++ b/stratis-cli.spec @@ -1,6 +1,6 @@ Name: stratis-cli -Version: 2.4.2 -Release: 3%{?dist} +Version: 2.4.3 +Release: 1%{?dist} Summary: Command-line tool for interacting with the Stratis daemon License: ASL 2.0 @@ -13,11 +13,6 @@ BuildRequires: python3-setuptools BuildRequires: %{_bindir}/a2x Requires: platform-python -Requires: python3-dateutil -Requires: python3-psutil -Requires: python3-dbus-client-gen >= 0.4 -Requires: python3-dbus-python-client-gen >= 0.7 -Requires: python3-justbytes >= 0.14 # It runs without, but totally useless Requires: stratisd >= 2.4 @@ -62,6 +57,10 @@ a2x -f manpage docs/stratis.txt %{python3_sitelib}/stratis_cli-*.egg-info/ %changelog +* Mon Jul 19 2021 Bryan Gurney - 2.4.3-1 +- Remove psutil dependency from setup.py +- Resolves: rhbz#1983689 + * Mon Jun 28 2021 Bryan Gurney - 2.4.2-3 - Remove semantic_version and wcwidth dependencies from setup.py - Resolves: rhbz#1976731