├── .coveragerc ├── .github └── workflows │ └── build.yaml ├── .gitignore ├── .readthedocs.yml ├── LICENSE ├── README.rst ├── bu ├── clean ├── conftest.py ├── doc ├── Makefile ├── accessories.rst ├── api.rst ├── cache.svg ├── commands.rst ├── conf.py ├── configuring.rst ├── examples.rst ├── index.rst ├── installing.rst ├── monitoring.rst ├── releases.rst └── requirements.txt ├── emborg ├── __init__.py ├── collection.py ├── command.py ├── emborg.py ├── help.py ├── hooks.py ├── main.py ├── overdue.py ├── patterns.py ├── preferences.py ├── python.py ├── shlib.py └── utilities.py ├── od ├── pyproject.toml ├── tests ├── INITIAL_CONFIGS │ ├── home │ ├── root │ └── settings ├── README ├── STARTING_CONFIGS │ ├── README │ ├── overdue.conf │ ├── settings │ ├── subdir │ │ └── file │ ├── test0 │ ├── test1 │ ├── test2 │ ├── test2excludes │ ├── test2passphrase │ ├── test3 │ ├── test4 │ ├── test5 │ ├── test6 │ ├── test6patterns │ ├── test7 │ ├── test7patterns │ ├── test8 │ └── test9 ├── clean ├── test-cases.nt └── test_emborg.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/README.rst -------------------------------------------------------------------------------- /bu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/bu -------------------------------------------------------------------------------- /clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/clean -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/conftest.py -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/accessories.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/doc/accessories.rst -------------------------------------------------------------------------------- /doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/doc/api.rst -------------------------------------------------------------------------------- /doc/cache.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/doc/cache.svg -------------------------------------------------------------------------------- /doc/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/doc/commands.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/configuring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/doc/configuring.rst -------------------------------------------------------------------------------- /doc/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/doc/examples.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/doc/installing.rst -------------------------------------------------------------------------------- /doc/monitoring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/doc/monitoring.rst -------------------------------------------------------------------------------- /doc/releases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/doc/releases.rst -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /emborg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/emborg/__init__.py -------------------------------------------------------------------------------- /emborg/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/emborg/collection.py -------------------------------------------------------------------------------- /emborg/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/emborg/command.py -------------------------------------------------------------------------------- /emborg/emborg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/emborg/emborg.py -------------------------------------------------------------------------------- /emborg/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/emborg/help.py -------------------------------------------------------------------------------- /emborg/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/emborg/hooks.py -------------------------------------------------------------------------------- /emborg/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/emborg/main.py -------------------------------------------------------------------------------- /emborg/overdue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/emborg/overdue.py -------------------------------------------------------------------------------- /emborg/patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/emborg/patterns.py -------------------------------------------------------------------------------- /emborg/preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/emborg/preferences.py -------------------------------------------------------------------------------- /emborg/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/emborg/python.py -------------------------------------------------------------------------------- /emborg/shlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/emborg/shlib.py -------------------------------------------------------------------------------- /emborg/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/emborg/utilities.py -------------------------------------------------------------------------------- /od: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/od -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/INITIAL_CONFIGS/home: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/INITIAL_CONFIGS/home -------------------------------------------------------------------------------- /tests/INITIAL_CONFIGS/root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/INITIAL_CONFIGS/root -------------------------------------------------------------------------------- /tests/INITIAL_CONFIGS/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/INITIAL_CONFIGS/settings -------------------------------------------------------------------------------- /tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/README -------------------------------------------------------------------------------- /tests/STARTING_CONFIGS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/STARTING_CONFIGS/README -------------------------------------------------------------------------------- /tests/STARTING_CONFIGS/overdue.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/STARTING_CONFIGS/overdue.conf -------------------------------------------------------------------------------- /tests/STARTING_CONFIGS/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/STARTING_CONFIGS/settings -------------------------------------------------------------------------------- /tests/STARTING_CONFIGS/subdir/file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/STARTING_CONFIGS/test0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/STARTING_CONFIGS/test0 -------------------------------------------------------------------------------- /tests/STARTING_CONFIGS/test1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/STARTING_CONFIGS/test1 -------------------------------------------------------------------------------- /tests/STARTING_CONFIGS/test2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/STARTING_CONFIGS/test2 -------------------------------------------------------------------------------- /tests/STARTING_CONFIGS/test2excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/STARTING_CONFIGS/test2excludes -------------------------------------------------------------------------------- /tests/STARTING_CONFIGS/test2passphrase: -------------------------------------------------------------------------------- 1 | pretty-kitty 2 | -------------------------------------------------------------------------------- /tests/STARTING_CONFIGS/test3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/STARTING_CONFIGS/test3 -------------------------------------------------------------------------------- /tests/STARTING_CONFIGS/test4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/STARTING_CONFIGS/test4 -------------------------------------------------------------------------------- /tests/STARTING_CONFIGS/test5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/STARTING_CONFIGS/test5 -------------------------------------------------------------------------------- /tests/STARTING_CONFIGS/test6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/STARTING_CONFIGS/test6 -------------------------------------------------------------------------------- /tests/STARTING_CONFIGS/test6patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/STARTING_CONFIGS/test6patterns -------------------------------------------------------------------------------- /tests/STARTING_CONFIGS/test7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/STARTING_CONFIGS/test7 -------------------------------------------------------------------------------- /tests/STARTING_CONFIGS/test7patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/STARTING_CONFIGS/test7patterns -------------------------------------------------------------------------------- /tests/STARTING_CONFIGS/test8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/STARTING_CONFIGS/test8 -------------------------------------------------------------------------------- /tests/STARTING_CONFIGS/test9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/STARTING_CONFIGS/test9 -------------------------------------------------------------------------------- /tests/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/clean -------------------------------------------------------------------------------- /tests/test-cases.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/test-cases.nt -------------------------------------------------------------------------------- /tests/test_emborg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tests/test_emborg.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenKundert/emborg/HEAD/tox.ini --------------------------------------------------------------------------------