johu        15/05/30 21:00:17

  Modified:             ChangeLog
  Added:                cmocka-1.0.1.ebuild
  Log:
  Version bump, bug #550496. Fixes build with gcc-5.1, bug #547662.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
0xF3CFD2BD)

Revision  Changes    Path
1.23                 dev-util/cmocka/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmocka/ChangeLog?rev=1.23&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmocka/ChangeLog?rev=1.23&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmocka/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmocka/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog   30 May 2015 10:53:05 -0000      1.22
+++ ChangeLog   30 May 2015 21:00:17 -0000      1.23
@@ -1,6 +1,11 @@
 # ChangeLog for dev-util/cmocka
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cmocka/ChangeLog,v 1.22 2015/05/30 
10:53:05 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmocka/ChangeLog,v 1.23 2015/05/30 
21:00:17 johu Exp $
+
+*cmocka-1.0.1 (30 May 2015)
+
+  30 May 2015; Johannes Huber <[email protected]> +cmocka-1.0.1.ebuild:
+  Version bump, bug #550496. Fixes build with gcc-5.1, bug #547662.
 
   30 May 2015; Markus Meier <[email protected]> cmocka-0.4.1.ebuild:
   arm stable, bug #538798



1.1                  dev-util/cmocka/cmocka-1.0.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmocka/cmocka-1.0.1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmocka/cmocka-1.0.1.ebuild?rev=1.1&content-type=text/plain

Index: cmocka-1.0.1.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/cmocka/cmocka-1.0.1.ebuild,v 1.1 
2015/05/30 21:00:17 johu Exp $

EAPI=5

inherit cmake-multilib

DESCRIPTION="A unit testing framework for C"
HOMEPAGE="http://cmocka.org/";
SRC_URI="https://cmocka.org/files/1.0/${P}.tar.xz";

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
IUSE="doc static-libs test"

DEPEND="
        doc? ( app-doc/doxygen[latex] )
"
RDEPEND=""

DOCS=( AUTHORS ChangeLog README )

multilib_src_configure() {
        local mycmakeargs=(
                $(cmake-utils_use_with static-libs STATIC_LIB)
                $(cmake-utils_use test UNIT_TESTING)
                $(multilib_is_native_abi && cmake-utils_use_find_package doc 
Doxygen \
                        || echo -DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=ON)
        )
        cmake-utils_src_configure
}

multilib_src_install() {
        if multilib_is_native_abi && use doc; then
                pushd doc || die
                doxygen Doxyfile || die
                rm -f html/*.md5 latex/*.md5 latex/Manifest man/man3/_* || die
                dohtml html/*
                dodoc latex/*
                doman man/man3/*.3
                popd || die
        fi
        cmake-utils_src_install
}




Reply via email to