Difference between revisions of "Package:Layman"

From Funtoo
Jump to navigation Jump to search
m (moar garbage)
m (add masking information)
Line 5: Line 5:
}}
}}
Layman is an "overlay" external repository management tool.
Layman is an "overlay" external repository management tool.
=== Installation ===
<console>###i## emerge layman</console>
<console>###i## emerge layman</console>
make.conf must source laymans overlays for emerge to pull in packages from external sources.
make.conf must source laymans overlays for emerge to pull in packages from external sources.
<console>###i## echo "source /var/lib/layman/make.conf" >> /etc/portage/make.conf</console>
<console>###i## echo "source /var/lib/layman/make.conf" >> /etc/portage/make.conf</console>


== Using Layman ==
=== Using Layman ===
Fetch, and display a list of overlays:
Fetch, and display a list of overlays:
<console>###i## layman -L</console>
<console>###i## layman -L</console>
Line 18: Line 20:
Delete an overlay from your system:
Delete an overlay from your system:
<console>###i## layman -d <overlay name></console>
<console>###i## layman -d <overlay name></console>
==== Masking Overlay Packages ====
Overlays have the power to override distro packages.  To avoid conflicts, mask everything in the overlay, and unmask the packages that are necessary to your system.
{{file|name=/etc/portage/package.mask|lang=|desc=mask all packages in an overlay|body=
*/*::overlay-name
}}
{{file|name=/etc/portage/package.unmask|lang=|desc=unmask packages to be used|body=
cat-egory/pack-age1
cat-egory/pack-age2
}}
==== Sync ====


Sync a specific overlays ebuilds:
Sync a specific overlays ebuilds:

Revision as of 11:56, January 31, 2015

Layman

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.

Layman is an "overlay" external repository management tool.

Installation

root # emerge layman

make.conf must source laymans overlays for emerge to pull in packages from external sources.

root # echo "source /var/lib/layman/make.conf" >> /etc/portage/make.conf

Using Layman

Fetch, and display a list of overlays:

root # layman -L

Add an overlay to your system:

root # layman -a <overlay name>

Delete an overlay from your system:

root # layman -d <overlay name>

Masking Overlay Packages

Overlays have the power to override distro packages. To avoid conflicts, mask everything in the overlay, and unmask the packages that are necessary to your system.

   /etc/portage/package.mask - mask all packages in an overlay
*/*::overlay-name
   /etc/portage/package.unmask - unmask packages to be used
cat-egory/pack-age1
cat-egory/pack-age2

Sync

Sync a specific overlays ebuilds:

root # layman -s <overlay name>

Sync all overlays:

root # layman -S

Sync all overlays via eix:

root # eix-sync