public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Julian Ospald (hasufell)" <hasufell@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in app-text/keepnote: ChangeLog keepnote-0.7.9.ebuild keepnote-0.7.8.ebuild
Date: Tue, 14 Aug 2012 08:23:20 +0000 (UTC)	[thread overview]
Message-ID: <20120814082320.3B1E92004B@flycatcher.gentoo.org> (raw)

hasufell    12/08/14 08:23:20

  Modified:             ChangeLog keepnote-0.7.8.ebuild
  Added:                keepnote-0.7.9.ebuild
  Log:
  version bump, inherit python eclass explicitly
  
  (Portage version: 2.2.0_alpha121/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  app-text/keepnote/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/keepnote/ChangeLog?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/keepnote/ChangeLog?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/keepnote/ChangeLog?r1=1.1&r2=1.2

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/keepnote/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog	14 Aug 2012 08:18:33 -0000	1.1
+++ ChangeLog	14 Aug 2012 08:23:19 -0000	1.2
@@ -1,6 +1,12 @@
 # ChangeLog for app-text/keepnote
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/keepnote/ChangeLog,v 1.1 2012/08/14 08:18:33 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/keepnote/ChangeLog,v 1.2 2012/08/14 08:23:19 hasufell Exp $
+
+*keepnote-0.7.9 (14 Aug 2012)
+
+  14 Aug 2012; Julian Ospald <hasufell@gentoo.org> keepnote-0.7.8.ebuild,
+  +keepnote-0.7.9.ebuild:
+  version bump, inherit python eclass explicitly
 
 *keepnote-0.7.8 (14 Aug 2012)
 



1.2                  app-text/keepnote/keepnote-0.7.8.ebuild

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

Index: keepnote-0.7.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/keepnote/keepnote-0.7.8.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- keepnote-0.7.8.ebuild	14 Aug 2012 08:18:33 -0000	1.1
+++ keepnote-0.7.8.ebuild	14 Aug 2012 08:23:20 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/keepnote/keepnote-0.7.8.ebuild,v 1.1 2012/08/14 08:18:33 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/keepnote/keepnote-0.7.8.ebuild,v 1.2 2012/08/14 08:23:20 hasufell Exp $
 
 EAPI=4
 
@@ -9,7 +9,7 @@
 SUPPORT_PYTHON_ABIS="1"
 RESTRICT_PYTHON_ABIS="2.[45] 3.*"
 
-inherit eutils gnome2-utils distutils
+inherit eutils gnome2-utils python distutils
 
 DESCRIPTION="A note taking application"
 HOMEPAGE="http://keepnote.org/"



1.1                  app-text/keepnote/keepnote-0.7.9.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/keepnote/keepnote-0.7.9.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/keepnote/keepnote-0.7.9.ebuild?rev=1.1&content-type=text/plain

Index: keepnote-0.7.9.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/keepnote/keepnote-0.7.9.ebuild,v 1.1 2012/08/14 08:23:19 hasufell Exp $

EAPI=4

PYTHON_DEPEND="2:2.6"
PYTHON_USE_WITH="sqlite xml"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.[45] 3.*"

inherit eutils gnome2-utils python distutils

DESCRIPTION="A note taking application"
HOMEPAGE="http://keepnote.org/"
SRC_URI="http://keepnote.org/download-test/${P}.tar.gz"

LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE=""

RDEPEND="dev-python/pygobject:2
	dev-python/pygtk:2
	x11-misc/xdg-utils"

DOCS="CHANGES"

src_prepare() {
	distutils_src_prepare

	epatch "${FILESDIR}"/${PN}-0.7.8-desktopfile.patch
}

src_test() {
	testing() {
		PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" test/testing.py
	}
	python_execute_function testing
}

pkg_preinst() {
	gnome2_icon_savelist
}

pkg_postinst() {
	distutils_pkg_postinst
	gnome2_icon_cache_update

	einfo
	elog "optional dependencies:"
	elog "  app-text/gtkspell:2 (spell checking)"
	einfo
}

pkg_postrm() {
	distutils_pkg_postrm
	gnome2_icon_cache_update
}





             reply	other threads:[~2012-08-14  8:23 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-08-14  8:23 Julian Ospald (hasufell) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2014-07-04 22:16 [gentoo-commits] gentoo-x86 commit in app-text/keepnote: ChangeLog keepnote-0.7.9.ebuild keepnote-0.7.8.ebuild Julian Ospald (hasufell)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120814082320.3B1E92004B@flycatcher.gentoo.org \
    --to=hasufell@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox