vapier      15/05/06 05:57:23

  Modified:             ChangeLog
  Added:                dtc-1.4.1-r1.ebuild
  Log:
  Add fix from upstream for missing symbols.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
D2E96200)

Revision  Changes    Path
1.23                 sys-apps/dtc/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/dtc/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog   1 May 2015 06:08:05 -0000       1.22
+++ ChangeLog   6 May 2015 05:57:23 -0000       1.23
@@ -1,6 +1,12 @@
 # ChangeLog for sys-apps/dtc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dtc/ChangeLog,v 1.22 2015/05/01 
06:08:05 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dtc/ChangeLog,v 1.23 2015/05/06 
05:57:23 vapier Exp $
+
+*dtc-1.4.1-r1 (06 May 2015)
+
+  06 May 2015; Mike Frysinger <[email protected]> +dtc-1.4.1-r1.ebuild,
+  +files/dtc-1.4.1-echo-n.patch, +files/dtc-1.4.1-missing-syms.patch:
+  Add fix from upstream for missing symbols.
 
   01 May 2015; Jeroen Roovers <[email protected]> dtc-1.4.1.ebuild:
   Stable for PPC64 (bug #535644).



1.1                  sys-apps/dtc/dtc-1.4.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dtc/dtc-1.4.1-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dtc/dtc-1.4.1-r1.ebuild?rev=1.1&content-type=text/plain

Index: dtc-1.4.1-r1.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/dtc/dtc-1.4.1-r1.ebuild,v 1.1 
2015/05/06 05:57:23 vapier Exp $

EAPI="4"

inherit multilib toolchain-funcs eutils
if [[ ${PV} == "9999" ]] ; then
        EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/dtc/dtc.git"
        inherit git-2
else
        SRC_URI="mirror://kernel/software/utils/${PN}/${P}.tar.xz"
        KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
fi

DESCRIPTION="Open Firmware device tree compiler"
HOMEPAGE="http://devicetree.org/Device_Tree_Compiler";

LICENSE="GPL-2"
SLOT="0"
IUSE="static-libs"

RDEPEND=""
DEPEND="app-arch/xz-utils
        sys-devel/flex
        sys-devel/bison"

src_prepare() {
        epatch "${FILESDIR}"/${P}-missing-syms.patch
        epatch "${FILESDIR}"/${P}-echo-n.patch
        sed -i \
                -e '/^CFLAGS =/s:=:+=:' \
                -e '/^CPPFLAGS =/s:=:+=:' \
                -e 's:-Werror::' \
                -e 's:-g -Os::' \
                -e "/^PREFIX =/s:=.*:= ${EPREFIX}/usr:" \
                -e "/^LIBDIR =/s:=.*:= \$(PREFIX)/$(get_libdir):" \
                Makefile || die
        tc-export AR CC
        export V=1
}

src_test() {
        # Enable parallel tests.
        emake check
}

src_install() {
        default
        use static-libs || find "${ED}" -name '*.a' -delete
        dodoc Documentation/manual.txt
}




Reply via email to