diff options
author | Michał Górny <mgorny@gentoo.org> | 2011-09-19 08:26:53 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2011-09-19 08:26:53 +0000 |
commit | f2679c1ddcf2b80ac207e9915d873e7dab897ba1 (patch) | |
tree | 386a179d011ebc8691ca5e146797eda623761a40 /app-portage | |
parent | Add virtual/yacc into DEPEND, bug #383477 thank bay and Dustin Polke for this... (diff) | |
download | gentoo-2-f2679c1ddcf2b80ac207e9915d873e7dab897ba1.tar.gz gentoo-2-f2679c1ddcf2b80ac207e9915d873e7dab897ba1.tar.bz2 gentoo-2-f2679c1ddcf2b80ac207e9915d873e7dab897ba1.zip |
Introduce install-mask, a tool to manage INSTALL_MASK setting.
(Portage version: 2.2.0_alpha58_p6/cvs/Linux x86_64)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/install-mask/ChangeLog | 10 | ||||
-rw-r--r-- | app-portage/install-mask/files/location-db.xml | 21 | ||||
-rw-r--r-- | app-portage/install-mask/install-mask-0.0.1.ebuild | 29 | ||||
-rw-r--r-- | app-portage/install-mask/metadata.xml | 16 |
4 files changed, 76 insertions, 0 deletions
diff --git a/app-portage/install-mask/ChangeLog b/app-portage/install-mask/ChangeLog new file mode 100644 index 000000000000..7d13b9e43b8d --- /dev/null +++ b/app-portage/install-mask/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-portage/install-mask +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-portage/install-mask/ChangeLog,v 1.1 2011/09/19 08:26:53 mgorny Exp $ + +*install-mask-0.0.1 (19 Sep 2011) + + 19 Sep 2011; Michał Górny <mgorny@gentoo.org> +install-mask-0.0.1.ebuild, + +files/location-db.xml, +metadata.xml: + Introduce install-mask, a tool to manage INSTALL_MASK setting. + diff --git a/app-portage/install-mask/files/location-db.xml b/app-portage/install-mask/files/location-db.xml new file mode 100644 index 000000000000..843d08315594 --- /dev/null +++ b/app-portage/install-mask/files/location-db.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<install-mask> + <location id="systemd"> + <path>/lib/systemd/system</path> + <path>/usr/lib/tmpfiles.d</path> + <description> + systemd unit and auxiliary files. + </description> + </location> + + <location id="bash-completion"> + <path>/usr/share/bash-completion</path> + </location> + + <location id="locale"> + <path>/usr/share/locale</path> + <description> + All localizations. + </description> + </location> +</install-mask> diff --git a/app-portage/install-mask/install-mask-0.0.1.ebuild b/app-portage/install-mask/install-mask-0.0.1.ebuild new file mode 100644 index 000000000000..a48b3bc7c6d0 --- /dev/null +++ b/app-portage/install-mask/install-mask-0.0.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-portage/install-mask/install-mask-0.0.1.ebuild,v 1.1 2011/09/19 08:26:53 mgorny Exp $ + +EAPI=3 +PYTHON_DEPEND='*:2.6' +SUPPORT_PYTHON_ABIS=1 +RESTRICT_PYTHON_ABIS='2.4 2.5' + +inherit base distutils + +DESCRIPTION="Handle INSTALL_MASK setting in make.conf" +HOMEPAGE="https://github.com/mgorny/install-mask/" +SRC_URI="http://cloud.github.com/downloads/mgorny/${PN}/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="app-portage/flaggie + dev-python/lxml" + +PYTHON_MODNAME=installmask + +src_prepare() { + base_src_prepare + distutils_src_prepare +} diff --git a/app-portage/install-mask/metadata.xml b/app-portage/install-mask/metadata.xml new file mode 100644 index 000000000000..8547bf2f6743 --- /dev/null +++ b/app-portage/install-mask/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>no-herd</herd> + <maintainer> + <email>mgorny@gentoo.org</email> + <name>Michał Górny</name> + </maintainer> + <upstream> + <maintainer status="active"> + <email>mgorny@gentoo.org</email> + <name>Michał Górny</name> + </maintainer> + <bugs-to>http://bugs.gentoo.org/enter_bug.cgi?product=Gentoo%20Linux&component=Applications&short_desc=app-portage/install-mask:%20</bugs-to> + </upstream> +</pkgmetadata> |