This repository has been archived by the owner on Mar 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #132 from stefan-wolfsheimer/master
#131, fixed: extended exclude list, fixed install.json
- Loading branch information
Showing
1 changed file
with
12 additions
and
3 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 |
---|---|---|
|
@@ -76,9 +76,15 @@ rm -rf %{buildroot} | |
# default attributes | ||
%defattr(-,-,-,-) | ||
# files | ||
# exclude .pyc and .py files | ||
# exclude .pyc and .pyo files | ||
%exclude %{_irodsPackage}/packaging/*.pyc | ||
%exclude %{_irodsPackage}/packaging/*.pyo | ||
%exclude %{_irodsPackage}/cmd/*.pyc | ||
%exclude %{_irodsPackage}/cmd/*.pyo | ||
%exclude %{_irodsPackage}/cmd/*.pyo | ||
%exclude %{_irodsPackage}/cmd/Pipefile | ||
%exclude %{_irodsPackage}/cmd/Pipefile.lock | ||
%exclude %{_irodsPackage}/cmd/logs | ||
|
||
#include files | ||
%{_irodsPackage}/cmd | ||
%{_irodsPackage}/conf | ||
|
@@ -124,8 +130,9 @@ cat > $INSTALL_CONF << EOF | |
"handle_owner": "200:0.NA/<ZZZ>", | ||
"handle_reverse_lookup_name": "<ZZZ>", | ||
"handle_reverse_lookup_password": "<reverse_lookup_password>", | ||
"handle_https_verify": True, | ||
"handle_https_verify": "True", | ||
"handle_users": [ "user0#Zone0", "user1#Zone1" ], | ||
"handle_groups": [], | ||
"log_level": "INFO", | ||
"log_directory": "/var/log/irods", | ||
"shared_space": "", | ||
|
@@ -162,6 +169,8 @@ fi | |
|
||
|
||
%changelog | ||
* Wed Jul 24 2019 Stefan Wolfsheimer <[email protected]> 4.2.1 | ||
- exclude python object files, fix install.json | ||
* Tue Mar 26 2019 Robert Verkerk <[email protected]> 4.2.1 | ||
- add python installation/setup script. | ||
* Fri Mar 8 2019 Robert Verkerk <[email protected]> 4.2.1 | ||
|