diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-doc/selflinux | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-doc/selflinux')
-rw-r--r-- | app-doc/selflinux/Manifest | 1 | ||||
-rw-r--r-- | app-doc/selflinux/metadata.xml | 10 | ||||
-rw-r--r-- | app-doc/selflinux/selflinux-0.13.0.ebuild | 22 |
3 files changed, 33 insertions, 0 deletions
diff --git a/app-doc/selflinux/Manifest b/app-doc/selflinux/Manifest new file mode 100644 index 000000000000..28c6e00810a6 --- /dev/null +++ b/app-doc/selflinux/Manifest @@ -0,0 +1 @@ +DIST SelfLinux-0.13.0-html.tar.gz 7379682 SHA256 229a44159eead00f8dcb96478167812b5425a47c65d15cf080f5054115684069 SHA512 bb7f16006863f958dd24c8f82db5e4538f00fc66f1b2efe7c52ed28d241fdcfdd366e973c91b730118ff485c2343f5a0fac293f080f0d6e86d24fca4beaaab72 WHIRLPOOL bce3a79ecfbc760f8005de09981a96db2e8a86c566a0a5f18f5bae8535a390b647e0219ba3570256d56fa9006b1369f89b90c039a9b150867b5fc9eb4a905f47 diff --git a/app-doc/selflinux/metadata.xml b/app-doc/selflinux/metadata.xml new file mode 100644 index 000000000000..5f112f79dad5 --- /dev/null +++ b/app-doc/selflinux/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>maintainer-needed@gentoo.org</email> + </maintainer> + <upstream> + <remote-id type="sourceforge">selflinux</remote-id> + </upstream> +</pkgmetadata> diff --git a/app-doc/selflinux/selflinux-0.13.0.ebuild b/app-doc/selflinux/selflinux-0.13.0.ebuild new file mode 100644 index 000000000000..2f00d68eac3b --- /dev/null +++ b/app-doc/selflinux/selflinux-0.13.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +MY_P="SelfLinux-${PV}" + +DESCRIPTION="german-language hypertext tutorial about Linux" +HOMEPAGE="http://selflinux.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}-html.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ppc x86" +IUSE="" + +S="${WORKDIR}/${MY_P}" + +src_install() { + dohtml * -r +} |