| 1 |
# Copyright 1999-2012 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/obs-service.eclass,v 1.5 2012/10/02 10:52:31 scarabeus Exp $ |
| 4 |
|
| 5 |
# @ECLASS: obs-service.eclass |
| 6 |
# @MAINTAINER: |
| 7 |
# suse@gentoo.org |
| 8 |
# @BLURB: Reduces code duplication in the Open Build Service services. |
| 9 |
# @DESCRIPTION: |
| 10 |
# This eclass makes it easier to package Open Build Service services. Based on |
| 11 |
# provided information it will set all needed variables and takes care of |
| 12 |
# installation. |
| 13 |
# |
| 14 |
# @EXAMPLE: |
| 15 |
# Typical ebuild using obs-service.eclass: |
| 16 |
# |
| 17 |
# @CODE |
| 18 |
# EAPI=4 |
| 19 |
# |
| 20 |
# inherit obs-service |
| 21 |
# |
| 22 |
# KEYWORDS="" |
| 23 |
# |
| 24 |
# DEPEND="" |
| 25 |
# RDEPEND="${DEPEND}" |
| 26 |
# |
| 27 |
# @CODE |
| 28 |
|
| 29 |
# @ECLASS-VARIABLE: OBS_SERVICE_NAME |
| 30 |
# @DESCRIPTION: |
| 31 |
# Name of the service. If not set, it is taken from ${PN}. |
| 32 |
|
| 33 |
# @ECLASS-VARIABLE: ADDITIONAL_FILES |
| 34 |
# @DEFAULT_UNSET |
| 35 |
# @DESCRIPTION: |
| 36 |
# If any additional files are needed. |
| 37 |
|
| 38 |
case "${EAPI:-0}" in |
| 39 |
4|5) : ;; |
| 40 |
*) die "EAPI=${EAPI} is not supported" ;; |
| 41 |
esac |
| 42 |
|
| 43 |
HOMEPAGE="http://en.opensuse.org/openSUSE:OSC" |
| 44 |
LICENSE="GPL-2" |
| 45 |
SLOT="0" |
| 46 |
IUSE="" |
| 47 |
RDEPEND="dev-util/osc" |
| 48 |
|
| 49 |
[[ -n ${OBS_SERVICE_NAME} ]] || OBS_SERVICE_NAME=${PN/obs-service-/} |
| 50 |
OBS_PROJECT="openSUSE:Tools" |
| 51 |
|
| 52 |
DESCRIPTION="Open Build Service client module - ${OBS_SERVICE_NAME} service" |
| 53 |
|
| 54 |
inherit obs-download |
| 55 |
|
| 56 |
# As it aint versioned at all use arrows to deal with it |
| 57 |
SRC_URI="${OBS_URI}/${OBS_SERVICE_NAME} -> ${OBS_SERVICE_NAME}-${PV}" |
| 58 |
SRC_URI+=" ${OBS_URI}/${OBS_SERVICE_NAME}.service -> ${OBS_SERVICE_NAME}-${PV}.service" |
| 59 |
|
| 60 |
for i in ${ADDITIONAL_FILES}; do |
| 61 |
SRC_URI+=" ${OBS_URI}/${i}" |
| 62 |
done |
| 63 |
|
| 64 |
# @FUNCTION: obs-service_src_unpack |
| 65 |
# @DESCRIPTION: |
| 66 |
# Just copy files. Files are not compressed. |
| 67 |
obs-service_src_unpack() { |
| 68 |
debug-print-function ${FUNCNAME} "$@" |
| 69 |
cd "${DISTDIR}" |
| 70 |
mkdir -p "${S}" |
| 71 |
cp ${A} "${S}" |
| 72 |
} |
| 73 |
|
| 74 |
# @FUNCTION: obs-service_src_prepare |
| 75 |
# @DESCRIPTION: |
| 76 |
# Replaces all /usr/lib/build directories with /usr/share/suse-build to reflect |
| 77 |
# where suse-build is installed in Gentoo. |
| 78 |
obs-service_src_prepare() { |
| 79 |
debug-print-function ${FUNCNAME} "$@" |
| 80 |
debug-print "Replacing all paths to find suse-build in Gentoo" |
| 81 |
find "${S}" -type f -exec \ |
| 82 |
sed -i 's|/usr/lib/build|/usr/share/suse-build|g' {} + |
| 83 |
} |
| 84 |
|
| 85 |
# @FUNCTION: obs-service_src_install |
| 86 |
# @DESCRIPTION: |
| 87 |
# Does the installation of the downloaded files. |
| 88 |
obs-service_src_install() { |
| 89 |
debug-print-function ${FUNCNAME} "$@" |
| 90 |
debug-print "Installing service \"${OBS_SERVICE_NAME}\"" |
| 91 |
exeinto /usr/lib/obs/service |
| 92 |
newexe "${S}"/${OBS_SERVICE_NAME}-${PV} "${S}"/${OBS_SERVICE_NAME} |
| 93 |
insinto /usr/lib/obs/service |
| 94 |
newins "${S}"/${OBS_SERVICE_NAME}-${PV}.service "${S}"/${OBS_SERVICE_NAME}.service |
| 95 |
if [[ -n ${ADDITIONAL_FILES} ]]; then |
| 96 |
debug-print "Installing following additional files:" |
| 97 |
debug-print " ${ADDITIONAL_FILES}" |
| 98 |
exeinto /usr/lib/obs/service/${OBS_SERVICE_NAME}.files |
| 99 |
for i in ${ADDITIONAL_FILES}; do |
| 100 |
doexe "${S}"/${i} |
| 101 |
done |
| 102 |
fi |
| 103 |
} |
| 104 |
|
| 105 |
EXPORT_FUNCTIONS src_install src_prepare src_unpack |