-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'apel:dev' into rpm_and_deb_naming_convention
- Loading branch information
Showing
26 changed files
with
152 additions
and
523 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
* Fri Aug 30 2024 Adrian Coveney <[email protected]> - 3.4.1-1 | ||
- Improved error logging to store full traceback on unexpected exceptions. | ||
- Changed more code to use pyOpenSSL to improve compatibility with newer OpenSSL versions. | ||
- Added a check to prevent a host certificate being to used for target server encryption. | ||
- Changed which version of exit function is used to avoid edge case. | ||
- Various changes and improvements to build scripts and processes. | ||
|
||
* Wed Feb 21 2024 Adrian Coveney <[email protected]> - 3.4.0-1 | ||
- Fixed compatability with newer versions of OpenSSL that only provide comma separated DNs. | ||
- Fixed Python 3 compatability (indirectly fixing EL8+ compatability) by performing explicit | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
%define __python /usr/bin/python3 | ||
|
||
# Conditionally define python_sitelib | ||
%if ! (0%{?fedora} > 12 || 0%{?rhel} > 5) | ||
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")} | ||
%endif | ||
|
||
Name: apel-ssm | ||
Version: 3.4.0 | ||
Version: 3.4.1 | ||
%define releasenumber 1 | ||
Release: %{releasenumber}%{?dist} | ||
Summary: Secure stomp messenger | ||
|
@@ -21,7 +23,7 @@ BuildArch: noarch | |
BuildRequires: python-devel | ||
%endif | ||
|
||
Requires: stomppy < 5.0.0, python-ldap < 3.4.0, python-setuptools, openssl | ||
Requires: stomppy < 8.1.1, python-setuptools, openssl | ||
Requires(pre): shadow-utils | ||
|
||
%define ssmconf %_sysconfdir/apel | ||
|
@@ -100,6 +102,13 @@ rm -rf $RPM_BUILD_ROOT | |
%doc %_defaultdocdir/%{name} | ||
|
||
%changelog | ||
* Fri Aug 30 2024 Adrian Coveney <[email protected]> - 3.4.1-1 | ||
- Improved error logging to store full traceback on unexpected exceptions. | ||
- Changed more code to use pyOpenSSL to improve compatibility with newer OpenSSL versions. | ||
- Added a check to prevent a host certificate being to used for target server encryption. | ||
- Changed which version of exit function is used to avoid edge case. | ||
- Various changes and improvements to build scripts and processes. | ||
|
||
* Wed Feb 21 2024 Adrian Coveney <[email protected]> - 3.4.0-1 | ||
- Fixed compatability with newer versions of OpenSSL that only provide comma separated DNs. | ||
- Fixed Python 3 compatability (indirectly fixing EL8+ compatability) by performing explicit | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.