public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] New eclass: multilib-minimal (was New eclass: autotools-multilib-minimal)
@ 2013-03-02 16:43 hasufell
  2013-03-02 16:48 ` Michał Górny
  0 siblings, 1 reply; 2+ messages in thread
From: hasufell @ 2013-03-02 16:43 UTC (permalink / raw
  To: gentoo-dev

[-- Attachment #1: Type: text/plain, Size: 188 bytes --]

Since mgorny is working on compatibility with multilib-portage I
stripped all of the related code.

So this should be the final version. If there are no objections I would
like to commit.

[-- Attachment #2: multilib-minimal.eclass --]
[-- Type: text/plain, Size: 2558 bytes --]

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

# @ECLASS: multilib-minimal.eclass
# @MAINTAINER:
# Julian Ospald <hasufell@gentoo.org>
# @BLURB: wrapper for multilib builds providing convenient multilib_src_* functions
# @DESCRIPTION:
#
# src_configure, src_compile, src_test and src_install are exported
# use multilib_src_* instead of src_* which runs this phase for
# all enabled ABIs
# multilib-minimal should _always_ go last in inherit order!!
#
# If you are using in-source builds, then you must run multilib_copy_sources
# at the end of src_prepare!!
#
# If you need generic install rules, use multilib_src_install_all function.


# EAPI=5 is required for meaningful MULTILIB_USEDEP.
case ${EAPI:-0} in
	5) ;;
	*) die "EAPI=${EAPI} is not supported" ;;
esac


inherit multilib-build

EXPORT_FUNCTIONS src_configure src_compile src_test src_install


multilib_copy_sources() {
	multilib-minimal_abi_copy_sources() {
		einfo "${ABI}: copying to ${BUILD_DIR}"
		cp -pR "${S}" "${BUILD_DIR}" || die "failed to copy sources"
	}

	multilib_foreach_abi multilib-minimal_abi_copy_sources
}

multilib-minimal_src_configure() {
	multilib-minimal_abi_src_configure() {
		mkdir -p "${BUILD_DIR}" || die
		pushd "${BUILD_DIR}" >/dev/null || die
		if declare -f multilib_src_configure >/dev/null ; then
			multilib_src_configure
		else
			default_src_configure
		fi
		popd >/dev/null || die
	}

	multilib_foreach_abi multilib-minimal_abi_src_configure
}

multilib-minimal_src_compile() {
	multilib-minimal_abi_src_compile() {
		pushd "${BUILD_DIR}" >/dev/null || die
		if declare -f multilib_src_compile >/dev/null ; then
			multilib_src_compile
		else
			default_src_compile
		fi
		popd >/dev/null || die
	}

	multilib_foreach_abi multilib-minimal_abi_src_compile
}

multilib-minimal_src_test() {
	multilib-minimal_abi_src_test() {
		pushd "${BUILD_DIR}" >/dev/null || die
		if declare -f multilib_src_test >/dev/null ; then
			multilib_src_test
		else
			default_src_test
		fi
		popd >/dev/null || die
	}

	multilib_foreach_abi multilib-minimal_abi_src_test
}

multilib-minimal_src_install() {
	multilib-minimal_abi_src_install() {
		pushd "${BUILD_DIR}" >/dev/null || die
		if declare -f multilib_src_install >/dev/null ; then
			multilib_src_install
		else
			default_src_install	
		fi
		multilib_check_headers
		popd >/dev/null || die
	}
	multilib_foreach_abi multilib-minimal_abi_src_install

	if declare -f multilib_src_install_all >/dev/null ; then
		multilib_src_install_all
	fi
}

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [gentoo-dev] New eclass: multilib-minimal (was New eclass: autotools-multilib-minimal)
  2013-03-02 16:43 [gentoo-dev] New eclass: multilib-minimal (was New eclass: autotools-multilib-minimal) hasufell
@ 2013-03-02 16:48 ` Michał Górny
  0 siblings, 0 replies; 2+ messages in thread
From: Michał Górny @ 2013-03-02 16:48 UTC (permalink / raw
  To: gentoo-dev; +Cc: hasufell

[-- Attachment #1: Type: text/plain, Size: 417 bytes --]

On Sat, 02 Mar 2013 17:43:52 +0100
hasufell <hasufell@gentoo.org> wrote:

> Since mgorny is working on compatibility with multilib-portage I
> stripped all of the related code.
> 
> So this should be the final version. If there are no objections I would
> like to commit.

Please wait for the multibuild patches to be applied, then i will add
multilib_copy_sources().

-- 
Best regards,
Michał Górny

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 966 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-03-02 16:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-02 16:43 [gentoo-dev] New eclass: multilib-minimal (was New eclass: autotools-multilib-minimal) hasufell
2013-03-02 16:48 ` Michał Górny

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox