pacho 15/07/04 17:14:47 Modified: ChangeLog Added: upower-0.99.3.ebuild Removed: upower-0.99.2.ebuild upower-0.99.0-r1.ebuild Log: Version bump, gtk-doc files need to be built and were installed in unproper location (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Revision Changes Path 1.180 sys-power/upower/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/ChangeLog?rev=1.180&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/ChangeLog?rev=1.180&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/ChangeLog?r1=1.179&r2=1.180 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-power/upower/ChangeLog,v retrieving revision 1.179 retrieving revision 1.180 diff -u -r1.179 -r1.180 --- ChangeLog 3 Jul 2015 10:10:00 -0000 1.179 +++ ChangeLog 4 Jul 2015 17:14:47 -0000 1.180 @@ -1,6 +1,17 @@ # ChangeLog for sys-power/upower # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/upower/ChangeLog,v 1.179 2015/07/03 10:10:00 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-power/upower/ChangeLog,v 1.180 2015/07/04 17:14:47 pacho Exp $ + +*upower-0.99.3 (04 Jul 2015) + + 04 Jul 2015; Pacho Ramos <pa...@gentoo.org> +upower-0.99.3.ebuild, + -files/upower-0.99.0-create-dir-runtime.patch, + -files/upower-0.99.0-fix-segfault.patch, + -files/upower-0.99.0-fix-shutdown-on-boot.patch, + -files/upower-0.99.0-fix-typing-error.patch, -upower-0.99.0-r1.ebuild, + -upower-0.99.2.ebuild: + Version bump, gtk-doc files need to be built and were installed in unproper + location 03 Jul 2015; Agostino Sarubbo <a...@gentoo.org> upower-0.99.2-r1.ebuild: Stable for alpha, wrt bug #537878 1.1 sys-power/upower/upower-0.99.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/upower-0.99.3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-power/upower/upower-0.99.3.ebuild?rev=1.1&content-type=text/plain Index: upower-0.99.3.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-power/upower/upower-0.99.3.ebuild,v 1.1 2015/07/04 17:14:47 pacho Exp $ EAPI=5 inherit eutils systemd DESCRIPTION="D-Bus abstraction for enumerating power devices and querying history and statistics" HOMEPAGE="http://upower.freedesktop.org/" SRC_URI="http://${PN}.freedesktop.org/releases/${P}.tar.xz" LICENSE="GPL-2" SLOT="0/3" # based on SONAME of libupower-glib.so KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" # gtk-doc files are not available as prebuilt in the tarball IUSE="doc +introspection ios kernel_FreeBSD kernel_linux selinux" COMMON_DEPS=" >=dev-libs/dbus-glib-0.100 >=dev-libs/glib-2.34:2 sys-apps/dbus:= introspection? ( dev-libs/gobject-introspection:= ) kernel_linux? ( virtual/libusb:1 virtual/libgudev:= virtual/udev ios? ( >=app-pda/libimobiledevice-1:= >=app-pda/libplist-1:= ) ) " RDEPEND=" ${COMMON_DEPS} selinux? ( sec-policy/selinux-devicekit ) " DEPEND="${COMMON_DEPS} doc? ( dev-util/gtk-doc ) dev-libs/libxslt app-text/docbook-xsl-stylesheets dev-util/intltool virtual/pkgconfig " QA_MULTILIB_PATHS="usr/lib/${PN}/.*" DOCS="AUTHORS HACKING NEWS README" src_prepare() { sed -i -e '/DISABLE_DEPRECATED/d' configure || die } src_configure() { local backend myconf if use kernel_linux; then backend=linux elif use kernel_FreeBSD; then backend=freebsd else backend=dummy fi econf \ $(use_enable doc gtk-doc) \ --libexecdir="${EPREFIX}"/usr/lib/${PN} \ --localstatedir="${EPREFIX}"/var \ $(use_enable introspection) \ --disable-static \ ${myconf} \ --enable-man-pages \ --disable-tests \ --with-backend=${backend} \ $(use_with ios idevice) \ "$(systemd_with_utildir)" \ "$(systemd_with_unitdir)" } src_install() { default keepdir /var/lib/upower #383091 prune_libtool_files }