[PATCH v2 0/4] New patch for updating userstorage package
by Albert Esteve
Sanlock is using an old version of userstorage in its tests. The package it's been
installable through package manager for a while now, and it has been recently updated to
its version 0.5.1.
So I have created a patch to use the latest version that can be installed from PyPI, and
remove the old embedded package. The structure of the test storage folder remains the
same.
Also added a couple commits to add latest python versions, and a prerrequisite to the
documentation that I needed to install to be able to compile. But I can remove these
unrelated commits.
Albert Esteve (4):
README.dev: update prerequisites
tox.ini: add py310 to environments
userstorage: replace by PyPI userstorage
README.dev: update userstorage doc
README.dev | 22 +++++--
requirements.txt | 1 +
tests/conftest.py | 22 ++++---
tests/storage.py | 161 +++++++---------------------------------------
tox.ini | 5 +-
5 files changed, 55 insertions(+), 156 deletions(-)
create mode 100644 requirements.txt
--
2.37.3
1 year, 1 month
[sanlock] branch master updated: Add python3-setuptools build
requirement
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
nsoffer pushed a commit to branch master
in repository sanlock.
The following commit(s) were added to refs/heads/master by this push:
new 635f797 Add python3-setuptools build requirement
635f797 is described below
commit 635f797aeffbce5dbbc3f6327cb121763ee853ef
Author: Nir Soffer <nsoffer(a)redhat.com>
AuthorDate: Tue Oct 18 17:44:57 2022 +0300
Add python3-setuptools build requirement
Fixes: commit 75758fc10db2 (python: Replace distutils with setuptools)
Signed-off-by: Nir Soffer <nsoffer(a)redhat.com>
---
sanlock.spec.in | 1 +
1 file changed, 1 insertion(+)
diff --git a/sanlock.spec.in b/sanlock.spec.in
index 975bd4e..c8f264a 100644
--- a/sanlock.spec.in
+++ b/sanlock.spec.in
@@ -20,6 +20,7 @@ BuildRequires: libuuid-devel
BuildRequires: make
BuildRequires: python3
BuildRequires: python3-devel
+BuildRequires: python3-setuptools
BuildRequires: systemd-units
Requires: %{name}-lib = %{version}-%{release}
Requires(pre): /usr/sbin/groupadd
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
1 year, 1 month
[PATCH] Add python3-setuptools build requirement
by Nir Soffer
Fixes: commit 75758fc10db2 (python: Replace distutils with setuptools)
Signed-off-by: Nir Soffer <nsoffer(a)redhat.com>
---
sanlock.spec.in | 1 +
1 file changed, 1 insertion(+)
diff --git a/sanlock.spec.in b/sanlock.spec.in
index 975bd4e..c8f264a 100644
--- a/sanlock.spec.in
+++ b/sanlock.spec.in
@@ -13,20 +13,21 @@ Summary: A shared storage lock manager
License: GPLv2 and GPLv2+ and LGPLv2+
URL: https://pagure.io/sanlock/
BuildRequires: gcc
BuildRequires: libaio-devel
BuildRequires: libblkid-devel
BuildRequires: libuuid-devel
BuildRequires: make
BuildRequires: python3
BuildRequires: python3-devel
+BuildRequires: python3-setuptools
BuildRequires: systemd-units
Requires: %{name}-lib = %{version}-%{release}
Requires(pre): /usr/sbin/groupadd
Requires(pre): /usr/sbin/useradd
Requires(post): systemd-units
Requires(post): systemd-sysv
Requires(preun): systemd-units
Requires(postun): systemd-units
Source0: https://releases.pagure.org/sanlock/%{name}-%{version}.tar.gz
--
2.37.3
1 year, 1 month
[sanlock] branch master updated: release 3.8.5
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
teigland pushed a commit to branch master
in repository sanlock.
The following commit(s) were added to refs/heads/master by this push:
new b820c63 release 3.8.5
b820c63 is described below
commit b820c63093c4ae85d7da4f719cf3026d7fca5d09
Author: David Teigland <teigland(a)redhat.com>
AuthorDate: Tue Oct 18 08:45:33 2022 -0500
release 3.8.5
---
VERSION | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/VERSION b/VERSION
index ff313b8..0cbfaed 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.8.4
+3.8.5
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
1 year, 1 month
[PATCH 0/4] New patch for updating userstorage package
by Albert Esteve
Sanlock is using an old version of userstorage in its tests. The package it's been
installable through package manager for a while now, and it has been recently updated to
its version 0.5.1.
So I have created a patch to use the latest version that can be installed from PyPI, and
remove the old embedded package. The structure of the test storage folder remains the
same.
Also added a couple commits to add latest python versions, and a prerrequisite to the
documentation that I needed to install to be able to compile. But I can remove these
unrelated commits.
Albert Esteve (4):
README.dev: update prerequisites
tox.ini: add py310 to environments
userstorage: replace by PyPI userstorage
README.dev: update userstorage doc
README.dev | 14 ++--
tests/conftest.py | 21 +++---
tests/storage.py | 161 +++++++---------------------------------------
tox.ini | 5 +-
4 files changed, 45 insertions(+), 156 deletions(-)
--
2.37.3
1 year, 2 months
New patch for updating userstorage package
by Albert Esteve
Sanlock is using an old version of userstorage in its tests. The package it's been installable through package manager for a while now, and it has been recently updated to its version 0.5.1.
So I have created a patch to use the latest version that can be installed from PyPI, and remove the old embedded package. The structure of the test storage folder remains the same.
Also added a couple commits to add latest python versions, and a prerrequisite to the documentation that I needed to install to be able to compile. But I can remove these unrelated commits.
Note that I am posting it here since the PRs are disabled in the project host.
This is the branch in my fork (last 4 commits): https://pagure.io/fork/aesteve/sanlock/commits/aesteve/replace-userstorage
I'll address any feedback received :)
BR,
Albert.
1 year, 2 months