├── .gitignore ├── CHANGELOG ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYING ├── LICENSE ├── README.md ├── VERSION ├── bin ├── e-file └── pfl ├── cron └── pfl ├── man ├── Makefile ├── e-file.1 ├── e-file.1.md ├── pfl.1 └── pfl.1.md ├── pfl ├── __init__.py ├── e_file.py └── pfl.py ├── pyproject.toml └── systemd ├── pfl.service └── pfl.timer /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.5.3 2 | -------------------------------------------------------------------------------- /bin/e-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/bin/e-file -------------------------------------------------------------------------------- /bin/pfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/bin/pfl -------------------------------------------------------------------------------- /cron/pfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/cron/pfl -------------------------------------------------------------------------------- /man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/man/Makefile -------------------------------------------------------------------------------- /man/e-file.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/man/e-file.1 -------------------------------------------------------------------------------- /man/e-file.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/man/e-file.1.md -------------------------------------------------------------------------------- /man/pfl.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/man/pfl.1 -------------------------------------------------------------------------------- /man/pfl.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/man/pfl.1.md -------------------------------------------------------------------------------- /pfl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pfl/e_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/pfl/e_file.py -------------------------------------------------------------------------------- /pfl/pfl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/pfl/pfl.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/pyproject.toml -------------------------------------------------------------------------------- /systemd/pfl.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/systemd/pfl.service -------------------------------------------------------------------------------- /systemd/pfl.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/portagefilelist/client/HEAD/systemd/pfl.timer --------------------------------------------------------------------------------