public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-misc/tasque: ChangeLog tasque-0.1.11.ebuild
@ 2012-08-30  8:55 Andreas Proschofsky (suka)
  0 siblings, 0 replies; 3+ messages in thread
From: Andreas Proschofsky (suka) @ 2012-08-30  8:55 UTC (permalink / raw
  To: gentoo-commits

suka        12/08/30 08:55:13

  Modified:             ChangeLog
  Added:                tasque-0.1.11.ebuild
  Log:
  Finally a new release of tasque, mostly bug fixes though ;)
  
  (Portage version: 2.2.0_alpha123/cvs/Linux x86_64)

Revision  Changes    Path
1.9                  app-misc/tasque/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tasque/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tasque/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tasque/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/tasque/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	29 May 2012 18:50:55 -0000	1.8
+++ ChangeLog	30 Aug 2012 08:55:13 -0000	1.9
@@ -1,6 +1,11 @@
 # ChangeLog for app-misc/tasque
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/tasque/ChangeLog,v 1.8 2012/05/29 18:50:55 suka Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/tasque/ChangeLog,v 1.9 2012/08/30 08:55:13 suka Exp $
+
+*tasque-0.1.11 (30 Aug 2012)
+
+  30 Aug 2012; Andreas Proschofsky <suka@gentoo.org> +tasque-0.1.11.ebuild:
+  Finally a new release of tasque, mostly bug fixes though ;)
 
   29 May 2012; Andreas Proschofsky <suka@gentoo.org>
   -files/tasque-0.1.8-debug-fixup.patch, tasque-0.1.9.ebuild,



1.1                  app-misc/tasque/tasque-0.1.11.ebuild

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

Index: tasque-0.1.11.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/tasque/tasque-0.1.11.ebuild,v 1.1 2012/08/30 08:55:13 suka Exp $

EAPI="4"

inherit eutils gnome.org mono

DESCRIPTION="Tasky is a simple task management app (TODO list) for the Linux Desktop"
HOMEPAGE="http://live.gnome.org/Tasque"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+rememberthemilk +sqlite hiveminder debug"

RDEPEND=">=dev-dotnet/gtk-sharp-2.12.7-r5
	>=dev-dotnet/gnome-sharp-2.24.0
	>=dev-dotnet/notify-sharp-0.4.0_pre20080912
	>=dev-dotnet/ndesk-dbus-0.6
	>=dev-dotnet/ndesk-dbus-glib-0.4
	sqlite? ( dev-db/sqlite:3 )
	"

DEPEND="${RDEPEND}"

pkg_setup() {
	BACKEND=false
	for usef in sqlite hiveminder rememberthemilk
	do
		use $usef && BACKEND=true
	done
	if [[ "${BACKEND}" != "true" ]]
	then
		eerror "You must select one of the following backends by enabling their useflag:"
		eerror "sqlite		( uses a local, file-backed database to keep track of your TODO list )"
		eerror "rememberthemilk	( integrates with www.rememberthemilk.com )"
		eerror "hiveminder		( integrates with www.hiveminder.com )"
		die "Please select a backend"
	fi
}

src_configure() {
	#http://bugzilla.gnome.org/show_bug.cgi?id=568910
	export	GTK_DOTNET_20_LIBS=" " \
		GTK_DOTNET_20_CFLAGS=" "
	econf	--disable-backend-icecore \
		--disable-backend-eds \
		--disable-appindicator \
		--enable-backend-rtm \
		$(use_enable sqlite backend-sqlite) \
		$(use_enable hiveminder backend-hiveminder) \
		$(use_enable debug)
}

src_install() {
	make DESTDIR="${D}" install || die "emake failed"
	dodoc NEWS TODO README AUTHORS || die "docs installation failed"
	mv_command="cp -pPR" mono_multilib_comply
}





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

* [gentoo-commits] gentoo-x86 commit in app-misc/tasque: ChangeLog tasque-0.1.11.ebuild
@ 2012-09-16 23:10 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-09-16 23:10 UTC (permalink / raw
  To: gentoo-commits

ago         12/09/16 23:10:46

  Modified:             ChangeLog tasque-0.1.11.ebuild
  Log:
  Stable for amd64, wrt bug #435202
  
  (Portage version: 2.1.11.9/cvs/Linux x86_64)

Revision  Changes    Path
1.10                 app-misc/tasque/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tasque/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tasque/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/tasque/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/tasque/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	30 Aug 2012 08:55:13 -0000	1.9
+++ ChangeLog	16 Sep 2012 23:10:46 -0000	1.10
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/tasque
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/tasque/ChangeLog,v 1.9 2012/08/30 08:55:13 suka Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/tasque/ChangeLog,v 1.10 2012/09/16 23:10:46 ago Exp $
+
+  16 Sep 2012; Agostino Sarubbo <ago@gentoo.org> tasque-0.1.11.ebuild:
+  Stable for amd64, wrt bug #435202
 
 *tasque-0.1.11 (30 Aug 2012)
 



1.2                  app-misc/tasque/tasque-0.1.11.ebuild

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

Index: tasque-0.1.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/tasque/tasque-0.1.11.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- tasque-0.1.11.ebuild	30 Aug 2012 08:55:13 -0000	1.1
+++ tasque-0.1.11.ebuild	16 Sep 2012 23:10:46 -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-misc/tasque/tasque-0.1.11.ebuild,v 1.1 2012/08/30 08:55:13 suka Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/tasque/tasque-0.1.11.ebuild,v 1.2 2012/09/16 23:10:46 ago Exp $
 
 EAPI="4"
 
@@ -11,7 +11,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="+rememberthemilk +sqlite hiveminder debug"
 
 RDEPEND=">=dev-dotnet/gtk-sharp-2.12.7-r5





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

* [gentoo-commits] gentoo-x86 commit in app-misc/tasque: ChangeLog tasque-0.1.11.ebuild
@ 2012-12-07  4:51 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 3+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2012-12-07  4:51 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    12/12/07 04:51:40

  Modified:             ChangeLog tasque-0.1.11.ebuild
  Log:
  x86 stable wrt bug #435202
  
  (Portage version: 2.1.11.31/cvs/Linux i686, signed Manifest commit with key 30427902)

Revision  Changes    Path
1.11                 app-misc/tasque/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/tasque/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	16 Sep 2012 23:10:46 -0000	1.10
+++ ChangeLog	7 Dec 2012 04:51:40 -0000	1.11
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/tasque
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/tasque/ChangeLog,v 1.10 2012/09/16 23:10:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/tasque/ChangeLog,v 1.11 2012/12/07 04:51:40 phajdan.jr Exp $
+
+  07 Dec 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> tasque-0.1.11.ebuild:
+  x86 stable wrt bug #435202
 
   16 Sep 2012; Agostino Sarubbo <ago@gentoo.org> tasque-0.1.11.ebuild:
   Stable for amd64, wrt bug #435202



1.3                  app-misc/tasque/tasque-0.1.11.ebuild

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

Index: tasque-0.1.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/tasque/tasque-0.1.11.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- tasque-0.1.11.ebuild	16 Sep 2012 23:10:46 -0000	1.2
+++ tasque-0.1.11.ebuild	7 Dec 2012 04:51:40 -0000	1.3
@@ -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-misc/tasque/tasque-0.1.11.ebuild,v 1.2 2012/09/16 23:10:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/tasque/tasque-0.1.11.ebuild,v 1.3 2012/12/07 04:51:40 phajdan.jr Exp $
 
 EAPI="4"
 
@@ -11,7 +11,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="+rememberthemilk +sqlite hiveminder debug"
 
 RDEPEND=">=dev-dotnet/gtk-sharp-2.12.7-r5





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

end of thread, other threads:[~2012-12-07  4:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-07  4:51 [gentoo-commits] gentoo-x86 commit in app-misc/tasque: ChangeLog tasque-0.1.11.ebuild PaweA Hajdan (phajdan.jr)
  -- strict thread matches above, loose matches on Subject: below --
2012-09-16 23:10 Agostino Sarubbo (ago)
2012-08-30  8:55 Andreas Proschofsky (suka)

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