├── .gitignore ├── .travis.yml ├── Makefile ├── README.rst ├── app-laptop └── tlp │ ├── Manifest │ ├── files │ ├── gentoo.conf │ └── tlp-init.openrc-r3 │ ├── metadata.xml │ ├── tlp-1.5.0.ebuild │ ├── tlp-1.6.0.ebuild │ ├── tlp-1.6.1.ebuild │ └── tlp-9999-r6.ebuild ├── layman.xml ├── metadata └── layout.conf ├── profiles ├── categories ├── package.mask └── repo_name ├── repos.conf └── sys-power └── linux-x86-power-tools ├── Manifest ├── files └── turbostat-include-limits.patch ├── linux-x86-power-tools-4.20.ebuild ├── linux-x86-power-tools-6.4.ebuild └── metadata.xml /.gitignore: -------------------------------------------------------------------------------- 1 | /local 2 | /metadata/md5-cache 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dywisor/tlp-portage/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dywisor/tlp-portage/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dywisor/tlp-portage/HEAD/README.rst -------------------------------------------------------------------------------- /app-laptop/tlp/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dywisor/tlp-portage/HEAD/app-laptop/tlp/Manifest -------------------------------------------------------------------------------- /app-laptop/tlp/files/gentoo.conf: -------------------------------------------------------------------------------- 1 | TLP_ENABLE=0 2 | -------------------------------------------------------------------------------- /app-laptop/tlp/files/tlp-init.openrc-r3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dywisor/tlp-portage/HEAD/app-laptop/tlp/files/tlp-init.openrc-r3 -------------------------------------------------------------------------------- /app-laptop/tlp/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dywisor/tlp-portage/HEAD/app-laptop/tlp/metadata.xml -------------------------------------------------------------------------------- /app-laptop/tlp/tlp-1.5.0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dywisor/tlp-portage/HEAD/app-laptop/tlp/tlp-1.5.0.ebuild -------------------------------------------------------------------------------- /app-laptop/tlp/tlp-1.6.0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dywisor/tlp-portage/HEAD/app-laptop/tlp/tlp-1.6.0.ebuild -------------------------------------------------------------------------------- /app-laptop/tlp/tlp-1.6.1.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dywisor/tlp-portage/HEAD/app-laptop/tlp/tlp-1.6.1.ebuild -------------------------------------------------------------------------------- /app-laptop/tlp/tlp-9999-r6.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dywisor/tlp-portage/HEAD/app-laptop/tlp/tlp-9999-r6.ebuild -------------------------------------------------------------------------------- /layman.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dywisor/tlp-portage/HEAD/layman.xml -------------------------------------------------------------------------------- /metadata/layout.conf: -------------------------------------------------------------------------------- 1 | repo-name = tlp 2 | masters = gentoo 3 | -------------------------------------------------------------------------------- /profiles/categories: -------------------------------------------------------------------------------- 1 | app-laptop 2 | sys-power 3 | -------------------------------------------------------------------------------- /profiles/package.mask: -------------------------------------------------------------------------------- 1 | # André Erdmann (2014-09-15) 2 | # live ebuild 3 | >=app-laptop/tlp-9999 4 | -------------------------------------------------------------------------------- /profiles/repo_name: -------------------------------------------------------------------------------- 1 | tlp 2 | -------------------------------------------------------------------------------- /repos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dywisor/tlp-portage/HEAD/repos.conf -------------------------------------------------------------------------------- /sys-power/linux-x86-power-tools/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dywisor/tlp-portage/HEAD/sys-power/linux-x86-power-tools/Manifest -------------------------------------------------------------------------------- /sys-power/linux-x86-power-tools/files/turbostat-include-limits.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dywisor/tlp-portage/HEAD/sys-power/linux-x86-power-tools/files/turbostat-include-limits.patch -------------------------------------------------------------------------------- /sys-power/linux-x86-power-tools/linux-x86-power-tools-4.20.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dywisor/tlp-portage/HEAD/sys-power/linux-x86-power-tools/linux-x86-power-tools-4.20.ebuild -------------------------------------------------------------------------------- /sys-power/linux-x86-power-tools/linux-x86-power-tools-6.4.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dywisor/tlp-portage/HEAD/sys-power/linux-x86-power-tools/linux-x86-power-tools-6.4.ebuild -------------------------------------------------------------------------------- /sys-power/linux-x86-power-tools/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dywisor/tlp-portage/HEAD/sys-power/linux-x86-power-tools/metadata.xml --------------------------------------------------------------------------------