diff options
author | 2007-04-26 02:36:45 +0000 | |
---|---|---|
committer | 2007-04-26 02:36:45 +0000 | |
commit | f15421e2f224c14ba49867e6ece83490d9793553 (patch) | |
tree | a090dd3ab96aca60f50ecfd64aa630e4f4f72b1c /x11-plugins/tomboy-reminder | |
parent | Version bump wrt bug #155351. (diff) | |
download | gentoo-2-f15421e2f224c14ba49867e6ece83490d9793553.tar.gz gentoo-2-f15421e2f224c14ba49867e6ece83490d9793553.tar.bz2 gentoo-2-f15421e2f224c14ba49867e6ece83490d9793553.zip |
fixy fixy
(Portage version: 2.1.2.4)
Diffstat (limited to 'x11-plugins/tomboy-reminder')
3 files changed, 23 insertions, 5 deletions
diff --git a/x11-plugins/tomboy-reminder/ChangeLog b/x11-plugins/tomboy-reminder/ChangeLog index 1efa8dc718e4..f2b79c16ba44 100644 --- a/x11-plugins/tomboy-reminder/ChangeLog +++ b/x11-plugins/tomboy-reminder/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-plugins/tomboy-reminder -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/tomboy-reminder/ChangeLog,v 1.4 2006/12/28 18:02:28 compnerd Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/tomboy-reminder/ChangeLog,v 1.5 2007/04/26 02:36:45 compnerd Exp $ + + 26 Apr 2007; Saleem Abdulrasool <compnerd@gentoo.org> + +files/tomboy-reminder-0.9-unicode-regex.patch, + tomboy-reminder-0.9.ebuild: + Add a patch to drop the a accent grave for now to allow usage and keyword + ~amd64 28 Dec 2006; Saleem Abdulrasool <compnerd@gentoo.org> tomboy-reminder-0.9.ebuild: diff --git a/x11-plugins/tomboy-reminder/files/tomboy-reminder-0.9-unicode-regex.patch b/x11-plugins/tomboy-reminder/files/tomboy-reminder-0.9-unicode-regex.patch new file mode 100644 index 000000000000..6fbf74d7fe9a --- /dev/null +++ b/x11-plugins/tomboy-reminder/files/tomboy-reminder-0.9-unicode-regex.patch @@ -0,0 +1,11 @@ +--- src/MagicParser.cs 2007-04-23 17:03:52.000000000 -0500 ++++ src/MagicParser.cs 2007-04-23 17:04:02.000000000 -0500 +@@ -28,7 +28,7 @@ + private MagicDate md = new MagicDate(); + private MagicTime mt = new MagicTime(); + +- private static string DATE_TIME_SEP = "at|a|à|@"; ++ private static string DATE_TIME_SEP = "at|a|@"; + + private static Regex[] GENERIC = { + new Regex("^(?<date>.*)\\W+("+DATE_TIME_SEP+")\\W+(?<time>.*)$", RegexOptions.IgnoreCase | RegexOptions.Compiled), diff --git a/x11-plugins/tomboy-reminder/tomboy-reminder-0.9.ebuild b/x11-plugins/tomboy-reminder/tomboy-reminder-0.9.ebuild index 3e551768f8c8..2566d37a9cad 100644 --- a/x11-plugins/tomboy-reminder/tomboy-reminder-0.9.ebuild +++ b/x11-plugins/tomboy-reminder/tomboy-reminder-0.9.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/tomboy-reminder/tomboy-reminder-0.9.ebuild,v 1.4 2006/12/28 18:02:28 compnerd Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/tomboy-reminder/tomboy-reminder-0.9.ebuild,v 1.5 2007/04/26 02:36:45 compnerd Exp $ inherit autotools eutils mono @@ -10,7 +10,7 @@ SRC_URI="http://raphael.slinckx.net/files/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="~amd64 ~x86" IUSE="" RDEPEND=">=dev-lang/mono-1.0 @@ -23,6 +23,7 @@ src_unpack() { cd ${S} epatch ${FILESDIR}/${PN}-0.9-mcs-to-gmcs.patch + epatch ${FILESDIR}/${PN}-0.9-unicode-regex.patch eautomake } |