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-util/obs-service-source_validator | |
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-util/obs-service-source_validator')
3 files changed, 43 insertions, 0 deletions
diff --git a/dev-util/obs-service-source_validator/Manifest b/dev-util/obs-service-source_validator/Manifest new file mode 100644 index 000000000000..cdc10cebc842 --- /dev/null +++ b/dev-util/obs-service-source_validator/Manifest @@ -0,0 +1 @@ +DIST obs-service-source_validator-0.3.tar.bz2 18472 SHA256 7c2131cb5edda57c7f187c55f425c021167b36e2b0c246fd4a703d9b32baf8fe SHA512 129d69a896bbd157b781f6d9014420fa7a9717f6a48b677bbe99d5d92a242ff25be470108d6f6da00a170b3133b9fceaf8d7447f356e9ddc1090ba7f7d79c164 WHIRLPOOL b86727b0d67d5359ff098af02a5f36c5d61f964905801fcc84548e781ec765ccbe82562b728315532bfa9a2f49566501267193baca531b2d5e133cbe2fbf316b diff --git a/dev-util/obs-service-source_validator/metadata.xml b/dev-util/obs-service-source_validator/metadata.xml new file mode 100644 index 000000000000..bf2692f5562e --- /dev/null +++ b/dev-util/obs-service-source_validator/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>suse</herd> +<longdescription lang="en"> +This is a source service for Open Build Service. This service runs all checks from osc-source_validator. This can be used to guarantee that all checks succeed also on the service side. This plugin can be used via project wide defined services. +</longdescription> +</pkgmetadata> diff --git a/dev-util/obs-service-source_validator/obs-service-source_validator-0.3.ebuild b/dev-util/obs-service-source_validator/obs-service-source_validator-0.3.ebuild new file mode 100644 index 000000000000..a6b258ed79eb --- /dev/null +++ b/dev-util/obs-service-source_validator/obs-service-source_validator-0.3.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 obs-service + +# only one sanely packed service +SRC_URI="${OBS_URI}/${P}.tar.bz2" + +KEYWORDS="amd64 x86" +IUSE="" + +DEPEND="dev-perl/TimeDate" +RDEPEND="${DEPEND}" + +src_unpack() { + default +} + +src_install() { + # different folder and files in this module + exeinto /usr/libexec/obs/service + doexe ${OBS_SERVICE_NAME} + + insinto /usr/libexec/obs/service + doins ${OBS_SERVICE_NAME}.service + + exeinto /usr/libexec/obs/service/${OBS_SERVICE_NAME}s + doexe [0-9]* + exeinto /usr/libexec/obs/service/${OBS_SERVICE_NAME}s/helpers/ + doexe helpers/* +} |