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 /sci-misc/repsnapper | |
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 'sci-misc/repsnapper')
-rw-r--r-- | sci-misc/repsnapper/Manifest | 2 | ||||
-rw-r--r-- | sci-misc/repsnapper/metadata.xml | 10 | ||||
-rw-r--r-- | sci-misc/repsnapper/repsnapper-2.2.0b_p3.ebuild | 34 | ||||
-rw-r--r-- | sci-misc/repsnapper/repsnapper-2.3.2a_p3.ebuild | 34 | ||||
-rw-r--r-- | sci-misc/repsnapper/repsnapper-9999.ebuild | 29 |
5 files changed, 109 insertions, 0 deletions
diff --git a/sci-misc/repsnapper/Manifest b/sci-misc/repsnapper/Manifest new file mode 100644 index 000000000000..1c51da697a9f --- /dev/null +++ b/sci-misc/repsnapper/Manifest @@ -0,0 +1,2 @@ +DIST repsnapper-2.2.0b3.tar.gz 1314244 SHA256 2f55ce6bc19bba84bb6dbcda12f6546fa306fa163527d009ea8d730b85d80513 SHA512 52828b06734976369347cd1daa87cf027eea88bbf53e9a8501511f9dbdacf0388a64ec9e87b2cf3a546d332f80a069ee7934d4ac33d6b2d6e831ef326ae69b98 WHIRLPOOL c7b072ab9f465969e9b3f35c7c2fc8d9c4864e2b59aa9a983f6f8c9f8e7b21d6f29627fd0e6098035911b451790b54a72554e2737ab7da92938cb3bd89e8c242 +DIST repsnapper-2.3.2a3.tar.gz 1344447 SHA256 7c4bc3603401847ce1f15298435c511f76fd74c5d5ae4fc1561c7f378c182fe5 SHA512 f68510baefb898954f58aa5e35909b8215edcd8ee74028e717ad97293091f4b323628ca0ba80ff685d1aef0db4785a2887986b89a95769a70f8f23ab031dafa4 WHIRLPOOL 0693876194c5837091b9f9df7d359833b86222345239f3cf946a0e6efd2f87efc35380745cb2a4dd5587a5193c9a3e54d36454fabb0d38722a02ac70d510645d diff --git a/sci-misc/repsnapper/metadata.xml b/sci-misc/repsnapper/metadata.xml new file mode 100644 index 000000000000..072d3e24dc46 --- /dev/null +++ b/sci-misc/repsnapper/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>slis@gentoo.org</email> + </maintainer> + <upstream> + <remote-id type="github">timschmidt/repsnapper</remote-id> + </upstream> +</pkgmetadata> diff --git a/sci-misc/repsnapper/repsnapper-2.2.0b_p3.ebuild b/sci-misc/repsnapper/repsnapper-2.2.0b_p3.ebuild new file mode 100644 index 000000000000..559738303653 --- /dev/null +++ b/sci-misc/repsnapper/repsnapper-2.2.0b_p3.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit autotools versionator + +MY_PV="$(get_version_component_range 1-4)$(get_version_component_range 5)" +MY_PV=${MY_PV/p/} + +DESCRIPTION="Host software for controlling the RepRap open source 3D printer" +HOMEPAGE="https://github.com/timschmidt/repsnapper" +SRC_URI="https://github.com/timschmidt/${PN}/archive/${MY_PV}.tar.gz -> ${PN}-${MY_PV}.tar.gz" + +S="${WORKDIR}/${PN}-${MY_PV}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + >=dev-cpp/gtkglextmm-1.2 + dev-cpp/gtkmm:2.4 + dev-cpp/libxmlpp + dev-libs/libzip + virtual/opengl +" +RDEPEND=${DEPEND} + +src_prepare() { + eautoreconf +} diff --git a/sci-misc/repsnapper/repsnapper-2.3.2a_p3.ebuild b/sci-misc/repsnapper/repsnapper-2.3.2a_p3.ebuild new file mode 100644 index 000000000000..559738303653 --- /dev/null +++ b/sci-misc/repsnapper/repsnapper-2.3.2a_p3.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit autotools versionator + +MY_PV="$(get_version_component_range 1-4)$(get_version_component_range 5)" +MY_PV=${MY_PV/p/} + +DESCRIPTION="Host software for controlling the RepRap open source 3D printer" +HOMEPAGE="https://github.com/timschmidt/repsnapper" +SRC_URI="https://github.com/timschmidt/${PN}/archive/${MY_PV}.tar.gz -> ${PN}-${MY_PV}.tar.gz" + +S="${WORKDIR}/${PN}-${MY_PV}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + >=dev-cpp/gtkglextmm-1.2 + dev-cpp/gtkmm:2.4 + dev-cpp/libxmlpp + dev-libs/libzip + virtual/opengl +" +RDEPEND=${DEPEND} + +src_prepare() { + eautoreconf +} diff --git a/sci-misc/repsnapper/repsnapper-9999.ebuild b/sci-misc/repsnapper/repsnapper-9999.ebuild new file mode 100644 index 000000000000..3d04fe6ee6c5 --- /dev/null +++ b/sci-misc/repsnapper/repsnapper-9999.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit autotools git-2 + +DESCRIPTION="Host software for controlling the RepRap open source 3D printer" +HOMEPAGE="https://github.com/timschmidt/repsnapper" +EGIT_REPO_URI="git://github.com/timschmidt/${PN}.git" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="" +IUSE="" + +DEPEND=" + >=dev-cpp/gtkglextmm-1.2 + >=dev-cpp/gtkmm-2.4 + dev-cpp/libxmlpp + dev-libs/libzip + virtual/opengl +" +RDEPEND=${DEPEND} + +src_prepare() { + eautoreconf +} |