-
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.
- Loading branch information
Showing
6 changed files
with
112 additions
and
71 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
language: python | ||
python: | ||
- "2.6" | ||
- "2.7" | ||
- "3.4" | ||
matrix: | ||
allow_failures: | ||
- python: "2.7" | ||
- python: "3.4" | ||
fast_finish: true | ||
|
||
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors | ||
install: | ||
- pip install stomp.py | ||
- pip install python-daemon | ||
- pip install python-ldap | ||
- pip install dirq | ||
- pip install unittest2 | ||
|
||
before_script: | ||
- export TMPDIR=$PWD/tmp | ||
- mkdir $TMPDIR | ||
# command to run tests, e.g. python setup.py test | ||
script: | ||
- export PYTHONPATH=$PYTHONPATH:`pwd -P` | ||
- cd test | ||
#- unit2 -b discover | ||
# Don't run test_crypto until it's fixed | ||
- unit2 -b test_brokers test_ssm |
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,6 +1,15 @@ | ||
Changelog for ssm | ||
================= | ||
|
||
* Mon Jul 21 2014 Adrian Coveney <[email protected]> - 2.1.3-1 | ||
- (No changes from pre-release version.) | ||
|
||
* Thu Jul 17 2014 Adrian Coveney <[email protected]> - 2.1.3-0.2.alpha1 | ||
- RPM now enforces the use of stomppy < 4.0.0 as versions greater than this are | ||
currently incompatible with SSM. | ||
- Changes made to disconnection method which should prevent threading | ||
exceptions (mostly during shutdown). | ||
|
||
* Mon Jun 02 2014 Adrian Coveney <[email protected]> - 2.1.2-0 | ||
- The output of brokers.py has been improved so that it can be used to query | ||
the BDII for valid brokers. | ||
|
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 |
---|---|---|
|
@@ -4,18 +4,19 @@ | |
%endif | ||
|
||
Name: apel-ssm | ||
Version: 2.1.2 | ||
Release: 0%{?dist} | ||
Version: 2.1.3 | ||
Release: 1%{?dist} | ||
Summary: Secure stomp messenger | ||
|
||
Group: Development/Languages | ||
License: ASL 2.0 | ||
URL: https://wiki.egi.eu/wiki/APEL/SSM | ||
Source0: %{name}-%{version}.tar.gz | ||
# Value between %{version} and extension must match "Release" without %{dist} | ||
Source0: %{name}-%{version}-1.tar.gz | ||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) | ||
BuildArch: noarch | ||
|
||
Requires: stomppy, python-daemon, python-dirq, python-ldap | ||
Requires: stomppy < 4.0.0, python-daemon, python-dirq, python-ldap | ||
Requires(pre): shadow-utils | ||
|
||
%define ssmconf %_sysconfdir/apel | ||
|
@@ -29,7 +30,8 @@ can act as either a sender or receiver. | |
The SSM is written in python. | ||
|
||
%prep | ||
%setup -q -n %{name}-%{version} | ||
# Value after %{version} must match "Release" without %{dist} | ||
%setup -q -n %{name}-%{version}-1 | ||
|
||
%build | ||
|
||
|
@@ -57,7 +59,7 @@ cp -rp conf/dns %{buildroot}%{ssmconf} | |
cp -rp ssm %{buildroot}%{python_sitelib} | ||
cp -rp conf/ssm.logrotate %{buildroot}%_sysconfdir/logrotate.d/%{name} | ||
# Readme | ||
cp -rp README %{buildroot}%_defaultdocdir/%{name} | ||
cp -rp README.md %{buildroot}%_defaultdocdir/%{name} | ||
|
||
%clean | ||
rm -rf $RPM_BUILD_ROOT | ||
|
@@ -91,6 +93,15 @@ rm -rf $RPM_BUILD_ROOT | |
%doc %_defaultdocdir/%{name} | ||
|
||
%changelog | ||
* Mon Jul 21 2014 Adrian Coveney <[email protected]> - 2.1.3-1 | ||
- (No changes from pre-release version.) | ||
|
||
* Thu Jul 17 2014 Adrian Coveney <[email protected]> - 2.1.3-0.2.alpha1 | ||
- RPM now enforces the use of stomppy < 4.0.0 as versions greater than this are | ||
currently incompatible with SSM. | ||
- Changes made to disconnection method which should prevent threading | ||
exceptions (mostly during shutdown). | ||
|
||
* Mon Jun 02 2014 Adrian Coveney <[email protected]> - 2.1.2-0 | ||
- The output of brokers.py has been improved so that it can be used to query | ||
the BDII for valid brokers. | ||
|
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