├── .gitignore ├── BUGS.md ├── CHANGELOG.md ├── FEATURES.md ├── LICENSE.md ├── README.md ├── coffer ├── __init__.py ├── clone.py ├── coffer.py ├── create.py ├── deps │ └── debootstrap.tar.gz ├── enter.py ├── ls.py ├── package.py ├── remove.py ├── rename.py ├── unpackage.py ├── utils │ ├── __init__.py │ ├── ccopy.py │ ├── commands.py │ ├── content.py │ ├── getArg.py │ ├── getFlag.py │ ├── getRootDir.py │ ├── isRoot.py │ ├── setupEnv.py │ ├── templateUtils.py │ └── text.py └── version.py ├── coffer_container.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── entry_points.txt └── top_level.txt ├── docs ├── AddingCommand.md ├── Commands.md ├── GettingStarted.md ├── Templates.md └── UtilityFunctions.md ├── examples ├── hackernews_viewer.py └── irssi_env.py ├── run_coffer.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/.gitignore -------------------------------------------------------------------------------- /BUGS.md: -------------------------------------------------------------------------------- 1 | # Known Bugs 2 | 3 | 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/FEATURES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/README.md -------------------------------------------------------------------------------- /coffer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/__init__.py -------------------------------------------------------------------------------- /coffer/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/clone.py -------------------------------------------------------------------------------- /coffer/coffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/coffer.py -------------------------------------------------------------------------------- /coffer/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/create.py -------------------------------------------------------------------------------- /coffer/deps/debootstrap.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/deps/debootstrap.tar.gz -------------------------------------------------------------------------------- /coffer/enter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/enter.py -------------------------------------------------------------------------------- /coffer/ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/ls.py -------------------------------------------------------------------------------- /coffer/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/package.py -------------------------------------------------------------------------------- /coffer/remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/remove.py -------------------------------------------------------------------------------- /coffer/rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/rename.py -------------------------------------------------------------------------------- /coffer/unpackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/unpackage.py -------------------------------------------------------------------------------- /coffer/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/utils/__init__.py -------------------------------------------------------------------------------- /coffer/utils/ccopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/utils/ccopy.py -------------------------------------------------------------------------------- /coffer/utils/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/utils/commands.py -------------------------------------------------------------------------------- /coffer/utils/content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/utils/content.py -------------------------------------------------------------------------------- /coffer/utils/getArg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/utils/getArg.py -------------------------------------------------------------------------------- /coffer/utils/getFlag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/utils/getFlag.py -------------------------------------------------------------------------------- /coffer/utils/getRootDir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/utils/getRootDir.py -------------------------------------------------------------------------------- /coffer/utils/isRoot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/utils/isRoot.py -------------------------------------------------------------------------------- /coffer/utils/setupEnv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/utils/setupEnv.py -------------------------------------------------------------------------------- /coffer/utils/templateUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/utils/templateUtils.py -------------------------------------------------------------------------------- /coffer/utils/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/utils/text.py -------------------------------------------------------------------------------- /coffer/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer/version.py -------------------------------------------------------------------------------- /coffer_container.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer_container.egg-info/PKG-INFO -------------------------------------------------------------------------------- /coffer_container.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer_container.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /coffer_container.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /coffer_container.egg-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/coffer_container.egg-info/entry_points.txt -------------------------------------------------------------------------------- /coffer_container.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | coffer 2 | -------------------------------------------------------------------------------- /docs/AddingCommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/docs/AddingCommand.md -------------------------------------------------------------------------------- /docs/Commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/docs/Commands.md -------------------------------------------------------------------------------- /docs/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/docs/GettingStarted.md -------------------------------------------------------------------------------- /docs/Templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/docs/Templates.md -------------------------------------------------------------------------------- /docs/UtilityFunctions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/docs/UtilityFunctions.md -------------------------------------------------------------------------------- /examples/hackernews_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/examples/hackernews_viewer.py -------------------------------------------------------------------------------- /examples/irssi_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/examples/irssi_env.py -------------------------------------------------------------------------------- /run_coffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/run_coffer.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-prime/Coffer/HEAD/setup.py --------------------------------------------------------------------------------