The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Creating Your Own Overlay"
Line 12: | Line 12: | ||
###i## rm /usr/share/portage/config/repos.conf | ###i## rm /usr/share/portage/config/repos.conf | ||
}} | }} | ||
Notice that by default guide entire /etc/portage/repos.conf is a symlink to <code>/var/git/meta-repo/repos.conf. This will not let using custom repositories (overlays). For that we will setup a flat file symlink, called <code>funtoo</code> (just an example name). | Notice that by default guide entire /etc/portage/repos.conf is a symlink to <code>/var/git/meta-repo/repos.conf</code>. This will not let using custom repositories (overlays). For that we will setup a flat file symlink, called <code>funtoo</code> (just an example name). | ||
{{console|body= | {{console|body= | ||
###i## rm -rf /etc/portage/repos.conf/ | ###i## rm -rf /etc/portage/repos.conf/ |
Revision as of 04:08, October 20, 2017
This page intends to get your local overlay going.
Using overlay with Funtoo's kits system
For the overlays we will use a minor change for the main meta-repo described in Funtoo kits: https://github.com/funtoo/meta-repo/blob/master/README.rst
root # install -d /var/git root # cd /var/git root # git clone https://github.com/funtoo/meta-repo.git root # cd meta-repo root # git submodule init root # git submodule update root # rm /usr/share/portage/config/repos.conf
Notice that by default guide entire /etc/portage/repos.conf is a symlink to /var/git/meta-repo/repos.conf
. This will not let using custom repositories (overlays). For that we will setup a flat file symlink, called funtoo
(just an example name).
root # rm -rf /etc/portage/repos.conf/ root # mkdir etc/portage/repos.conf/ root # ln -s /var/git/meta-repo/repos.conf/ /etc/portage/repos.conf/funtoo root # chown -R portage:portage /var/git/meta-repo
In above shown commands we created the "funtoo" symlink to the regular portage tree. This allows to add any configuration files of any names you prefer for any custom repositories you like, such as overlays, and will not interfere with the meta-repo.
Creating the overlay
We will use /var/git/overlay
as primary location directory for the overlay. The location can be anywhere on your system, below is an example location tied with /var/git/
, is where regular tree located too.
root # mkdir /var/git/overlay
Clone the skeleton overlay from github. Change the repository's name from skeleton to a name as it will appear when emerging. Here we use myoverlayname
as an example, choose your name accordingly.
root # cd /var/git/overlay root # git clone http://github.com/funtoo/skeleton-overlay.git root # mv skeleton-overlay myoverlayname
Configure the overlay
We will enable portage settings required for the overlay to be functional.
root # echo "myoverlayname" > /var/git/overlay/myoverlayname/profiles/repo_name root # echo "masters = core-kit" >> /var/git/overlay/myoverlayname/metadata/layout.conf
/etc/portage/repos.conf/myoverlayname.conf
- Add your overlay to portage[myoverlayname] location = /var/git/overlay/myoverlayname masters = core-kit auto-sync = no priority = 10
The priority
key is needed to ensure, that your overlay has higher priority to the kit's overlays, which are default priority 1
This would be starting point for your own overlay. You're ready to add new ebuilds that are not present in portage tree or fix the ebuilds from portage tree you are no satisfied with, updating of old versions or removing of new ebuild versions.