floppym     14/11/23 17:47:50

  Modified:             ChangeLog
  Added:                dbus-python-1.2.0-r1.ebuild
  Removed:              dbus-python-1.2.0.ebuild
  Log:
  Revbump for last change.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 0BBEEA1FEA4843A4)

Revision  Changes    Path
1.142                dev-python/dbus-python/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dbus-python/ChangeLog?rev=1.142&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dbus-python/ChangeLog?rev=1.142&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dbus-python/ChangeLog?r1=1.141&r2=1.142

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/dbus-python/ChangeLog,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -r1.141 -r1.142
--- ChangeLog   23 Nov 2014 16:26:09 -0000      1.141
+++ ChangeLog   23 Nov 2014 17:47:50 -0000      1.142
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/dbus-python
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/dbus-python/ChangeLog,v 1.141 
2014/11/23 16:26:09 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/dbus-python/ChangeLog,v 1.142 
2014/11/23 17:47:50 floppym Exp $
+
+*dbus-python-1.2.0-r1 (23 Nov 2014)
+
+  23 Nov 2014; Mike Gilbert <[email protected]> +dbus-python-1.2.0-r1.ebuild,
+  -dbus-python-1.2.0.ebuild:
+  Revbump for last change.
 
   23 Nov 2014; Mike Gilbert <[email protected]> dbus-python-1.2.0.ebuild:
   Update py-compile to fix pyc file installation, bug 529502.



1.1                  dev-python/dbus-python/dbus-python-1.2.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dbus-python/dbus-python-1.2.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/dbus-python/dbus-python-1.2.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: dbus-python-1.2.0-r1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-python/dbus-python/dbus-python-1.2.0-r1.ebuild,v 
1.1 2014/11/23 17:47:50 floppym Exp $

EAPI=5

PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )

inherit autotools eutils python-r1

DESCRIPTION="Python bindings for the D-Bus messagebus"
HOMEPAGE="http://www.freedesktop.org/wiki/Software/DBusBindings 
http://dbus.freedesktop.org/doc/dbus-python/";
SRC_URI="http://dbus.freedesktop.org/releases/${PN}/${P}.tar.gz";

LICENSE="MIT"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~m68k-mint"
IUSE="doc examples test"
# API docs generated with epydoc, which is python2-only
REQUIRED_USE="doc? ( python_targets_python2_7 )"

RDEPEND=">=dev-libs/dbus-glib-0.100:=
        >=sys-apps/dbus-1.6:=
        ${PYTHON_DEPS}"
DEPEND="${RDEPEND}
        virtual/pkgconfig
        doc? (
                dev-python/docutils[python_targets_python2_7?]
                =dev-python/epydoc-3*[python_targets_python2_7?] )
        test? ( dev-python/pygobject:3[${PYTHON_USEDEP}] )"

src_prepare() {
        # Update py-compile, bug 529502.
        eautoreconf
        python_copy_sources
}

src_configure() {
        configuring() {
                # epydoc is python2-only, bug #447642
                local apidocs=--disable-api-docs
                [[ ${EPYTHON/.*} = "python2" ]] && apidocs=$(use_enable doc 
api-docs)

                econf \
                        --docdir="${EPREFIX}"/usr/share/doc/${PF} \
                        --disable-html-docs \
                        ${apidocs} \
                        PYTHON_LIBS="$(python-config --ldflags)"
                # configure assumes that ${PYTHON}-config executable exists :/
        }
        python_foreach_impl run_in_build_dir configuring
}

src_compile() {
        python_foreach_impl run_in_build_dir default
}

src_test() {
        unset DBUS_SESSION_BUS_ADDRESS
        python_foreach_impl run_in_build_dir default
}

src_install() {
        installing() {
                default
                [[ ${EPYTHON/.*} = "python2" ]] && use doc && dohtml -r api/*
        }
        python_foreach_impl run_in_build_dir installing
        prune_libtool_files --modules

        if use examples; then
                insinto /usr/share/doc/${PF}
                doins -r examples
        fi
}

run_in_build_dir() {
        pushd "${BUILD_DIR}" > /dev/null || die
        "$@"
        popd > /dev/null
}




Reply via email to