public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-mail/notmuch: ChangeLog notmuch-0.9-r1.ebuild
@ 2011-11-03 13:54 Amadeusz Zolnowski (aidecoe)
  0 siblings, 0 replies; 3+ messages in thread
From: Amadeusz Zolnowski (aidecoe) @ 2011-11-03 13:54 UTC (permalink / raw
  To: gentoo-commits

aidecoe     11/11/03 13:54:53

  Modified:             ChangeLog
  Added:                notmuch-0.9-r1.ebuild
  Log:
  net-mail/notmuch: Added python bindings.
  
  (Portage version: 2.1.10.31/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  net-mail/notmuch/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/notmuch/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	2 Nov 2011 17:46:33 -0000	1.3
+++ ChangeLog	3 Nov 2011 13:54:52 -0000	1.4
@@ -1,6 +1,12 @@
 # ChangeLog for net-mail/notmuch
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/notmuch/ChangeLog,v 1.3 2011/11/02 17:46:33 aidecoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/notmuch/ChangeLog,v 1.4 2011/11/03 13:54:52 aidecoe Exp $
+
+*notmuch-0.9-r1 (03 Nov 2011)
+
+  03 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org>
+  +notmuch-0.9-r1.ebuild:
+  Added python bindings.
 
   02 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org>
   files/0.9-emacsetcdir.patch, files/0.9-fix-lib-makefile-local.patch,



1.1                  net-mail/notmuch/notmuch-0.9-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/notmuch-0.9-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/notmuch-0.9-r1.ebuild?rev=1.1&content-type=text/plain

Index: notmuch-0.9-r1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/notmuch/notmuch-0.9-r1.ebuild,v 1.1 2011/11/03 13:54:52 aidecoe Exp $

EAPI=4

PYTHON_DEPEND="python? 2:2.5"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 3.*"

inherit elisp-common distutils
inherit autotools-utils

DESCRIPTION="The mail indexer"
HOMEPAGE="http://notmuchmail.org/"
SRC_URI="${HOMEPAGE}/releases/${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="bash-completion debug emacs python vim zsh-completion"

DEPEND="
	>=dev-libs/glib-2.14
	dev-libs/gmime:2.4
	dev-libs/xapian
	sys-libs/talloc
	debug? ( dev-util/valgrind )
	emacs? ( >=virtual/emacs-23 )
	x86? ( >=dev-libs/xapian-1.2.7-r2 )
	vim? ( || ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 ) )
	"
RDEPEND="${DEPEND}
	zsh-completion? ( app-shells/zsh )
	"

DOCS=( AUTHORS NEWS README TODO )
PATCHES=(
	"${FILESDIR}/${PV}-fix-lib-makefile-local.patch"
	"${FILESDIR}/${PV}-emacsetcdir.patch"
	)
SITEFILE="50${PN}-gentoo.el"

py_bindings() {
	if use python; then
		pushd bindings/python || die
		$@
		popd || die
	fi
}

pkg_setup() {
	if use emacs; then
		elisp-need-emacs 23 || die "Emacs version too low"
	fi
	use python && python_pkg_setup
}

src_prepare() {
	autotools-utils_src_prepare
	py_bindings distutils_src_prepare
}

src_configure() {
	local myeconfargs=(
		--bashcompletiondir="${ROOT}/usr/share/bash-completion"
		--emacslispdir="${ROOT}/${SITELISP}/${PN}"
		--emacsetcdir="${ROOT}/${SITEETC}/${PN}"
		--zshcompletiondir="${ROOT}/usr/share/zsh/site-functions"
		$(use_with bash-completion)
		$(use_with emacs)
		$(use_with zsh-completion)
	)
	autotools-utils_src_configure
}

src_compile() {
	autotools-utils_src_compile
	py_bindings distutils_src_compile
}

src_install() {
	autotools-utils_src_install

	if use emacs; then
		elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
	fi

	if use vim; then
		insinto /usr/share/vim/vimfiles
		doins -r vim/plugin vim/syntax
	fi

	DOCS="" py_bindings distutils_src_install
}

pkg_postinst() {
	use emacs && elisp-site-regen
	use python && distutils_pkg_postinst
}

pkg_postrm() {
	use emacs && elisp-site-regen
	use python && distutils_pkg_postrm
}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-mail/notmuch: ChangeLog notmuch-0.9-r1.ebuild
@ 2011-11-03 17:35 Amadeusz Zolnowski (aidecoe)
  0 siblings, 0 replies; 3+ messages in thread
From: Amadeusz Zolnowski (aidecoe) @ 2011-11-03 17:35 UTC (permalink / raw
  To: gentoo-commits

aidecoe     11/11/03 17:35:07

  Modified:             ChangeLog notmuch-0.9-r1.ebuild
  Log:
  net-mail/notmuch:  Added support for test suite.
  
  (Portage version: 2.1.10.31/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  net-mail/notmuch/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/notmuch/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	3 Nov 2011 13:54:52 -0000	1.4
+++ ChangeLog	3 Nov 2011 17:35:07 -0000	1.5
@@ -1,6 +1,9 @@
 # ChangeLog for net-mail/notmuch
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/notmuch/ChangeLog,v 1.4 2011/11/03 13:54:52 aidecoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/notmuch/ChangeLog,v 1.5 2011/11/03 17:35:07 aidecoe Exp $
+
+  03 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.9-r1.ebuild:
+  Added support for test suite.
 
 *notmuch-0.9-r1 (03 Nov 2011)
 



1.2                  net-mail/notmuch/notmuch-0.9-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/notmuch-0.9-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/notmuch-0.9-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/notmuch-0.9-r1.ebuild?r1=1.1&r2=1.2

Index: notmuch-0.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/notmuch/notmuch-0.9-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- notmuch-0.9-r1.ebuild	3 Nov 2011 13:54:52 -0000	1.1
+++ notmuch-0.9-r1.ebuild	3 Nov 2011 17:35:07 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/notmuch/notmuch-0.9-r1.ebuild,v 1.1 2011/11/03 13:54:52 aidecoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/notmuch/notmuch-0.9-r1.ebuild,v 1.2 2011/11/03 17:35:07 aidecoe Exp $
 
 EAPI=4
 
@@ -18,9 +18,10 @@
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="bash-completion debug emacs python vim zsh-completion"
+REQUIRED_USE="test? ( emacs )"
+IUSE="bash-completion debug emacs python test vim zsh-completion"
 
-DEPEND="
+CDEPEND="
 	>=dev-libs/glib-2.14
 	dev-libs/gmime:2.4
 	dev-libs/xapian
@@ -30,7 +31,10 @@
 	x86? ( >=dev-libs/xapian-1.2.7-r2 )
 	vim? ( || ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 ) )
 	"
-RDEPEND="${DEPEND}
+DEPEND="${CDEPEND}
+	test? ( sys-devel/gdb )
+	"
+RDEPEND="${CDEPEND}
 	zsh-completion? ( app-shells/zsh )
 	"
 






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-mail/notmuch: ChangeLog notmuch-0.9-r1.ebuild
@ 2011-11-05 11:35 Amadeusz Zolnowski (aidecoe)
  0 siblings, 0 replies; 3+ messages in thread
From: Amadeusz Zolnowski (aidecoe) @ 2011-11-05 11:35 UTC (permalink / raw
  To: gentoo-commits

aidecoe     11/11/05 11:35:18

  Modified:             ChangeLog
  Removed:              notmuch-0.9-r1.ebuild
  Log:
  net-mail/notmuch: Removed old 0.9-r1 revision.
  
  (Portage version: 2.1.10.32/cvs/Linux x86_64)

Revision  Changes    Path
1.11                 net-mail/notmuch/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/notmuch/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-mail/notmuch/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	5 Nov 2011 11:33:36 -0000	1.10
+++ ChangeLog	5 Nov 2011 11:35:17 -0000	1.11
@@ -1,6 +1,10 @@
 # ChangeLog for net-mail/notmuch
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/notmuch/ChangeLog,v 1.10 2011/11/05 11:33:36 aidecoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/notmuch/ChangeLog,v 1.11 2011/11/05 11:35:17 aidecoe Exp $
+
+  05 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org>
+  -notmuch-0.9-r1.ebuild:
+  Removed old 0.9-r1 revision.
 
   05 Nov 2011; Amadeusz Żołnowski <aidecoe@gentoo.org> notmuch-0.9-r2.ebuild:
   Use elog instead of einfo in postinst.






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-11-05 11:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-03 13:54 [gentoo-commits] gentoo-x86 commit in net-mail/notmuch: ChangeLog notmuch-0.9-r1.ebuild Amadeusz Zolnowski (aidecoe)
  -- strict thread matches above, loose matches on Subject: below --
2011-11-03 17:35 Amadeusz Zolnowski (aidecoe)
2011-11-05 11:35 Amadeusz Zolnowski (aidecoe)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox