jer 14/08/13 11:08:25 Modified: ChangeLog Added: libhid-0.2.16-r4.ebuild Log: EAPI bump. Migrate to python-*-r1.eclass. Use configure flag instead of sed script for disabling -Werror / "debug" flags. Add USE=static-libs (bug #446748). Disable buggy swig version detection (bug #427010). (Portage version: 2.2.11-r1/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Revision Changes Path 1.11 dev-libs/libhid/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libhid/ChangeLog?rev=1.11&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libhid/ChangeLog?rev=1.11&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libhid/ChangeLog?r1=1.10&r2=1.11 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/libhid/ChangeLog,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- ChangeLog 13 Aug 2014 09:12:28 -0000 1.10 +++ ChangeLog 13 Aug 2014 11:08:25 -0000 1.11 @@ -1,6 +1,15 @@ # ChangeLog for dev-libs/libhid # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libhid/ChangeLog,v 1.10 2014/08/13 09:12:28 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libhid/ChangeLog,v 1.11 2014/08/13 11:08:25 jer Exp $ + +*libhid-0.2.16-r4 (13 Aug 2014) + + 13 Aug 2014; Jeroen Roovers <j...@gentoo.org> +libhid-0.2.16-r4.ebuild, + +files/libhid-0.2.16-gentoo.patch, +files/libhid-0.2.16-libusb.patch, + +files/libhid-0.2.16-swig.patch: + EAPI bump. Migrate to python-*-r1.eclass. Use configure flag instead of sed + script for disabling -Werror / "debug" flags. Add USE=static-libs (bug + #446748). Disable buggy swig version detection (bug #427010). 13 Aug 2014; Jeroen Roovers <j...@gentoo.org> libhid-0.2.16-r3.ebuild: Disable "debugging" which merely adds compiler flags. 1.1 dev-libs/libhid/libhid-0.2.16-r4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libhid/libhid-0.2.16-r4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libhid/libhid-0.2.16-r4.ebuild?rev=1.1&content-type=text/plain Index: libhid-0.2.16-r4.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libhid/libhid-0.2.16-r4.ebuild,v 1.1 2014/08/13 11:08:25 jer Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) inherit autotools eutils python-single-r1 DESCRIPTION="Provides a generic and flexible way to access and interact with USB HID devices" HOMEPAGE="http://libhid.alioth.debian.org/" SRC_URI="http://beta.magicaltux.net/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" IUSE="doc python static-libs" RDEPEND=" python? ( ${PYTHON_DEPS} ) virtual/libusb:0 " DEPEND=" ${RDEPEND} doc? ( app-doc/doxygen ) python? ( dev-lang/swig ) " src_prepare() { epatch "${FILESDIR}"/${P}-gentoo.patch epatch "${FILESDIR}"/${P}-swig.patch epatch "${FILESDIR}"/${P}-libusb.patch eautoreconf } src_configure() { export OS_LDFLAGS="${LDFLAGS}" use python && export PYTHON_LDFLAGS=$(${EPYTHON}-config --ldflags) econf \ $(use_enable python swig) \ $(use_enable static-libs static) \ $(use_with doc doxygen) \ --disable-debug \ --disable-werror } DOCS=( AUTHORS ChangeLog NEWS README README.licence TODO ) src_install() { default use doc && dohtml -r doc/html/* prune_libtool_files }