jlec        14/07/01 06:46:16

  Modified:             ChangeLog
  Added:                zeitgeist-0.9.14-r1.ebuild
  Removed:              zeitgeist-0.9.12-r1.ebuild zeitgeist-0.9.12.ebuild
                        zeitgeist-0.9.5-r1.ebuild
  Log:
  gnome-extra/zeitgeist: Drop old; backport patch for missing gio in vala 
bindings
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key B9D4F231BD1558AB!)

Revision  Changes    Path
1.42                 gnome-extra/zeitgeist/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/zeitgeist/ChangeLog?rev=1.42&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/zeitgeist/ChangeLog?rev=1.42&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/zeitgeist/ChangeLog?r1=1.41&r2=1.42

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/zeitgeist/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog   8 Dec 2013 19:59:31 -0000       1.41
+++ ChangeLog   1 Jul 2014 06:46:16 -0000       1.42
@@ -1,6 +1,15 @@
 # ChangeLog for gnome-extra/zeitgeist
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/zeitgeist/ChangeLog,v 1.41 
2013/12/08 19:59:31 pacho Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/zeitgeist/ChangeLog,v 1.42 
2014/07/01 06:46:16 jlec Exp $
+
+*zeitgeist-0.9.14-r1 (01 Jul 2014)
+
+  01 Jul 2014; Justin Lecher <[email protected]> -zeitgeist-0.9.5-r1.ebuild,
+  -zeitgeist-0.9.12.ebuild, -zeitgeist-0.9.12-r1.ebuild,
+  +zeitgeist-0.9.14-r1.ebuild, -files/zeitgeist-0.9.0-doc.patch,
+  -files/zeitgeist-0.9.12-download_monitor.patch,
+  +files/zeitgeist-0.9.14-gio-backport.patch:
+  Drop old; backport patch for missing gio in vala bindings
 
   08 Dec 2013; Pacho Ramos <[email protected]> zeitgeist-0.9.14.ebuild:
   x86 stable, bug #478252



1.1                  gnome-extra/zeitgeist/zeitgeist-0.9.14-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/zeitgeist/zeitgeist-0.9.14-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/zeitgeist/zeitgeist-0.9.14-r1.ebuild?rev=1.1&content-type=text/plain

Index: zeitgeist-0.9.14-r1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/gnome-extra/zeitgeist/zeitgeist-0.9.14-r1.ebuild,v 1.1 
2014/07/01 06:46:16 jlec Exp $

EAPI=5

AUTOTOOLS_AUTORECONF=true
PYTHON_COMPAT=( python{2_6,2_7} )

VALA_MIN_API_VERSION=0.20

inherit autotools-utils bash-completion-r1 eutils python-r1 versionator vala

DIR_PV=$(get_version_component_range 1-2)

DESCRIPTION="Service to log activities and present to other apps"
HOMEPAGE="http://launchpad.net/zeitgeist/";
SRC_URI="http://launchpad.net/zeitgeist/${DIR_PV}/${PV}/+download/${P}.tar.xz";

LICENSE="LGPL-2+ LGPL-3+ GPL-2+"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
IUSE="+datahub downloads-monitor extensions +fts icu introspection nls plugins 
sql-debug telepathy"

REQUIRED_USE="
        ${PYTHON_REQUIRED_USE}
        downloads-monitor? ( datahub )"

RDEPEND="
        ${PYTHON_DEPS}
        !gnome-extra/zeitgeist-datahub
        dev-libs/json-glib
        dev-python/dbus-python[${PYTHON_USEDEP}]
        dev-python/pygobject:2[${PYTHON_USEDEP}]
        dev-python/pyxdg[${PYTHON_USEDEP}]
        dev-python/rdflib[${PYTHON_USEDEP}]
        media-libs/raptor:2
        >=dev-libs/glib-2.26.0:2
        >=dev-db/sqlite-3.7.11:3
        sys-apps/dbus
        datahub? ( x11-libs/gtk+:3 )
        extensions? ( gnome-extra/zeitgeist-extensions  )
        fts? ( dev-libs/xapian[inmemory] )
        icu? ( dev-libs/dee[icu?,${PYTHON_USEDEP}] )
        introspection? ( dev-libs/gobject-introspection )
        plugins? ( gnome-extra/zeitgeist-datasources )
        telepathy? ( net-libs/telepathy-glib )
"
DEPEND="${RDEPEND}
        $(vala_depend)
        virtual/pkgconfig"

src_prepare() {
        local PYTHON
        python_export_best
        sed \
                -e 's:python::g' \
                -i Makefile.am || die
        vala_src_prepare

        sed \
                -e "/import/s: python : ${PYTHON} :g" \
                -i configure.ac || die

        epatch "${FILESDIR}"/${P}-gio-backport.patch

        autotools-utils_src_prepare
}

src_configure() {
        local myeconfargs=(
                --docdir="${EPREFIX}/usr/share/doc/${PF}"
                
--with-session-bus-services-dir="${EPREFIX}/usr/share/dbus-1/services"
                $(use_enable sql-debug explain-queries)
                $(use_enable datahub)
                $(use_enable downloads-monitor)
                $(use_enable telepathy)
                $(use_enable introspection)
                $(use_with icu dee-icu)
        )

        use nls || myeconfargs+=( --disable-nls )
        use fts && myeconfargs+=( --enable-fts )
        autotools-utils_src_configure
}

src_install() {
        dobashcomp data/completions/zeitgeist-daemon
        autotools-utils_src_install
        cd python || die
        python_moduleinto ${PN}
        python_foreach_impl python_domodule *py
}




Reply via email to