-
Notifications
You must be signed in to change notification settings - Fork 5
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
29 changed files
with
802 additions
and
284 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Changes | ||
======= | ||
|
||
0.0.1 (2018-XX-XX) | ||
0.0.1 (2019-04-11) | ||
------------------ | ||
|
||
* TBD | ||
* First official BETA-release of *LoggedFS-python* |
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,7 +4,7 @@ | |
# | ||
# makefile: GNU makefile for project management | ||
# | ||
# Copyright (C) 2017-2018 Sebastian M. Ernst <[email protected]> | ||
# Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
# | ||
# <LICENSE_BLOCK> | ||
# The contents of this file are subject to the Apache License | ||
|
@@ -21,15 +21,29 @@ | |
|
||
T = "" | ||
|
||
clean: | ||
-rm -r build/* | ||
-rm -r dist/* | ||
-rm -r src/*.egg-info | ||
# -rm -r htmlconv/* | ||
# -rm .coverage* | ||
coverage erase | ||
find src/ tests/ -name '*.pyc' -exec rm -f {} + | ||
find src/ tests/ -name '*.pyo' -exec rm -f {} + | ||
# find src/ tests/ -name '*~' -exec rm -f {} + | ||
find src/ tests/ -name '__pycache__' -exec rm -fr {} + | ||
# find src/ tests/ -name '*.htm' -exec rm -f {} + | ||
# find src/ tests/ -name '*.html' -exec rm -f {} + | ||
# find src/ tests/ -name '*.so' -exec rm -f {} + | ||
|
||
# docu: | ||
# @(cd docs; make clean; make html) | ||
|
||
release: | ||
-rm dist/* | ||
-rm -r src/*.egg-info | ||
make clean | ||
python setup.py sdist bdist_wheel | ||
gpg --detach-sign -a dist/literatur*.whl | ||
gpg --detach-sign -a dist/literatur*.tar.gz | ||
gpg --detach-sign -a dist/loggedfs*.whl | ||
gpg --detach-sign -a dist/loggedfs*.tar.gz | ||
|
||
upload: | ||
for filename in $$(ls dist/*.tar.gz dist/*.whl) ; do \ | ||
|
@@ -42,31 +56,47 @@ upload_test: | |
done | ||
|
||
install: | ||
pip install --process-dependency-links .[dev] | ||
pip install .[dev] | ||
make install_fstest | ||
make install_fsx | ||
|
||
install_link: | ||
pip install --process-dependency-links -e .[dev] | ||
pip install -e .[dev] | ||
make install_fstest | ||
make install_fsx | ||
|
||
install_fstest: | ||
python3 -c 'import sys; import os; sys.path.append(os.path.join(os.getcwd(), "tests")); import loggedfs_libtest; loggedfs_libtest.install_fstest()' | ||
python3 -c 'import tests; tests.lib.install_fstest()' | ||
|
||
install_fsx: | ||
python3 -c 'import sys; import os; sys.path.append(os.path.join(os.getcwd(), "tests")); import loggedfs_libtest; loggedfs_libtest.install_fsx()' | ||
python3 -c 'import tests; tests.lib.install_fsx()' | ||
|
||
mount: | ||
python3 -c 'import sys; import os; sys.path.append(os.path.join(os.getcwd(), "tests")); import loggedfs_libtest; loggedfs_libtest.quick_cli_mount()' | ||
cleanup: | ||
python3 -c 'import tests; tests.lib.quick_cli_clean()' | ||
init: | ||
python3 -c 'import tests; tests.lib.quick_cli_init()' | ||
init_parentfs: | ||
python3 -c 'import tests; tests.lib.quick_cli_init_parentfs()' | ||
init_childfs: | ||
python3 -c 'import tests; tests.lib.quick_cli_init_childfs()' | ||
destroy: | ||
python3 -c 'import tests; tests.lib.quick_cli_destroy()' | ||
destroy_parentfs: | ||
python3 -c 'import tests; tests.lib.quick_cli_destroy_parentfs()' | ||
destroy_childfs: | ||
python3 -c 'import tests; tests.lib.quick_cli_destroy_childfs()' | ||
|
||
test: | ||
make test_posix | ||
make test_stress | ||
|
||
test_posix: | ||
# make docu | ||
-rm tests/__pycache__/*.pyc | ||
-rm tests/loggedfs_libtest/__pycache__/*.pyc | ||
-rm tests/lib/__pycache__/*.pyc | ||
# USAGE: make test T="-T chmod/01.t -T chmod/02.t" | ||
# REFERENCE TEST WITH EXT4: make test T="-M ext4" | ||
pytest $(T) | ||
|
||
umount: | ||
python3 -c 'import sys; import os; sys.path.append(os.path.join(os.getcwd(), "tests")); import loggedfs_libtest; loggedfs_libtest.quick_cli_umount()' | ||
test_stress: | ||
tests/scripts/fsx |
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
setup.py: Used for package distribution | ||
Copyright (C) 2017-2018 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the Apache License | ||
|
@@ -43,13 +43,13 @@ | |
|
||
|
||
# Bump version HERE! | ||
_version_ = '0.0.0' | ||
_version_ = '0.0.1' | ||
|
||
|
||
# List all versions of Python which are supported | ||
confirmed_python_versions = [ | ||
('Programming Language :: Python :: %s' % x) | ||
for x in '3.4 3.5 3.6'.split(' ') | ||
for x in '3.4 3.5 3.6 3.7'.split(' ') | ||
] | ||
|
||
|
||
|
@@ -98,12 +98,9 @@ | |
license = 'Apache License 2.0', | ||
keywords = ['filesystem', 'fuse', 'logging', 'monitoring'], | ||
include_package_data = True, | ||
dependency_links = [ | ||
'https://github.com/s-m-e/fusepy/tarball/master#egg=fusepy-2.0.99' | ||
], | ||
install_requires = [ | ||
'click', | ||
'fusepy==2.0.99', | ||
'fusepy @ git+https://github.com/s-m-e/fusepy@master#egg=fusepy-2.0.99', | ||
'xmltodict' | ||
], | ||
extras_require = {'dev': development_deps_list}, | ||
|
@@ -113,7 +110,7 @@ | |
''', | ||
zip_safe = False, | ||
classifiers = [ | ||
'Development Status :: 3 - Alpha', | ||
'Development Status :: 4 - Beta', | ||
'Environment :: Console', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Information Technology', | ||
|
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
src/loggedfs/__init__.py: Module init | ||
Copyright (C) 2017-2018 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the Apache License | ||
|
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
src/loggedfs/cli.py: Command line interface | ||
Copyright (C) 2017-2018 Sebastian M. Ernst <[email protected]> | ||
Copyright (C) 2017-2019 Sebastian M. Ernst <[email protected]> | ||
<LICENSE_BLOCK> | ||
The contents of this file are subject to the Apache License | ||
|
Oops, something went wrong.