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 /dev-embedded/upslug2 | |
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 'dev-embedded/upslug2')
-rw-r--r-- | dev-embedded/upslug2/Manifest | 1 | ||||
-rw-r--r-- | dev-embedded/upslug2/metadata.xml | 9 | ||||
-rw-r--r-- | dev-embedded/upslug2/upslug2-11.ebuild | 19 |
3 files changed, 29 insertions, 0 deletions
diff --git a/dev-embedded/upslug2/Manifest b/dev-embedded/upslug2/Manifest new file mode 100644 index 000000000000..1bf8765b2529 --- /dev/null +++ b/dev-embedded/upslug2/Manifest @@ -0,0 +1 @@ +DIST upslug2-11.tar.gz 129619 SHA256 24859c992fb58f0bf4840e1378da91b942c73263b0213096e6755436af8d16bc SHA512 6814a237387b60aa20cc26bbd7ff9e886510d627849b13097e7473aa38501810b1d1871cfdc4f5a44eea2b375c3b58b1e59dcfd5b39178de33600b2a0aa94117 WHIRLPOOL 4d943dbd33a1bfe8b56d814808d7a45d3fe24d6239db8129a347b1c20ce89b92feb361f5dd8e082d831c9937dae43e1aa0db8ba16e53d8bdbaf378591c907dbd diff --git a/dev-embedded/upslug2/metadata.xml b/dev-embedded/upslug2/metadata.xml new file mode 100644 index 000000000000..581cfc473675 --- /dev/null +++ b/dev-embedded/upslug2/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>embedded</herd> + <herd>arm</herd> + <upstream> + <remote-id type="sourceforge">nslu</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-embedded/upslug2/upslug2-11.ebuild b/dev-embedded/upslug2/upslug2-11.ebuild new file mode 100644 index 000000000000..d2a4a952373c --- /dev/null +++ b/dev-embedded/upslug2/upslug2-11.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +DESCRIPTION="util for flashing NSLU2 machines remotely" +HOMEPAGE="http://www.nslu2-linux.org/wiki/Main/UpSlug2" +SRC_URI="mirror://sourceforge/nslu/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 ~arm x86" +IUSE="" + +src_install() { + emake install DESTDIR="${D}" || die + mv "${D}"/usr/{sbin,bin} || die + fperms 4711 /usr/bin/upslug2 + dodoc AUTHORS ChangeLog NEWS README* +} |