diff options
author | Hans de Graaff <graaff@gentoo.org> | 2009-08-29 07:16:17 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2009-08-29 07:16:17 +0000 |
commit | 401655efdab7e943dbe0fc90ffef32bc4b751f99 (patch) | |
tree | dc5de6b8a1587610234538df3c1f1105af3ae310 /gnome-extra/gnome-do-plugins | |
parent | Remove old version. (diff) | |
download | gentoo-2-401655efdab7e943dbe0fc90ffef32bc4b751f99.tar.gz gentoo-2-401655efdab7e943dbe0fc90ffef32bc4b751f99.tar.bz2 gentoo-2-401655efdab7e943dbe0fc90ffef32bc4b751f99.zip |
Remove old versions.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'gnome-extra/gnome-do-plugins')
8 files changed, 10 insertions, 565 deletions
diff --git a/gnome-extra/gnome-do-plugins/ChangeLog b/gnome-extra/gnome-do-plugins/ChangeLog index 9ad050509567..a1fd067480b7 100644 --- a/gnome-extra/gnome-do-plugins/ChangeLog +++ b/gnome-extra/gnome-do-plugins/ChangeLog @@ -1,6 +1,15 @@ # ChangeLog for gnome-extra/gnome-do-plugins # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-do-plugins/ChangeLog,v 1.14 2009/07/27 05:44:24 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-do-plugins/ChangeLog,v 1.15 2009/08/29 07:16:17 graaff Exp $ + + 29 Aug 2009; Hans de Graaff <graaff@gentoo.org> + -files/gnome-do-plugins-0.6.0.1-disable-evo-flickr.patch, + -gnome-do-plugins-0.8.1.3.ebuild, -gnome-do-plugins-0.8.1.3-r1.ebuild, + -gnome-do-plugins-0.8.1.3-r2.ebuild, + -files/gnome-do-plugins-0.8.1.3-fix-for-twitpocolypse.patch, + -files/gnome-do-plugins-0.8.1.3-update-twitter-api.patch, + -files/do-plugins-optional-ext-dep.patch: + Remove old versions. 27 Jul 2009; Hans de Graaff <graaff@gentoo.org> metadata.xml: Add missing herd tag, fixes #279219. diff --git a/gnome-extra/gnome-do-plugins/files/do-plugins-optional-ext-dep.patch b/gnome-extra/gnome-do-plugins/files/do-plugins-optional-ext-dep.patch deleted file mode 100644 index 48f6fcba7125..000000000000 --- a/gnome-extra/gnome-do-plugins/files/do-plugins-optional-ext-dep.patch +++ /dev/null @@ -1,93 +0,0 @@ -diff -urN do-plugins-0.3.0-orig/Makefile.am do-plugins-0.3.0/Makefile.am ---- do-plugins-0.3.0-orig/Makefile.am 2008-02-26 10:16:37.000000000 +0530 -+++ do-plugins-0.3.0/Makefile.am 2008-02-27 10:35:14.000000000 +0530 -@@ -1,3 +1,21 @@ --SUBDIRS = Evolution Epiphany Rhythmbox Pidgin LocateFiles Thunderbird GoogleCalculator OpenSearch Pastebin Templates Amarok GNOME-Session SimplePlugins -+ENABLED_SUBDIRS = -+ -+if ENABLE_EVO_PLUGIN -+ENABLED_SUBDIRS += Evolution -+endif -+ -+if ENABLE_AMAROK_PLUGIN -+ENABLED_SUBDIRS += Amarok -+endif -+ -+if ENABLE_OPENSEARCH_PLUGIN -+ENABLED_SUBDIRS += OpenSearch -+endif -+ -+if ENABLE_PASTEBIN_PLUGIN -+ENABLED_SUBDIRS += Pastebin -+endif -+ -+SUBDIRS = $(ENABLED_SUBDIRS) Epiphany Rhythmbox Pidgin LocateFiles Thunderbird GoogleCalculator Templates GNOME-Session SimplePlugins - - EXTRA_DIST = DoPlugins.mds Packages.mdse COPYRIGHT -diff -urN do-plugins-0.3.0-orig/configure.ac do-plugins-0.3.0/configure.ac ---- do-plugins-0.3.0-orig/configure.ac 2008-02-26 10:16:37.000000000 +0530 -+++ do-plugins-0.3.0/configure.ac 2008-02-27 10:34:42.000000000 +0530 -@@ -38,11 +38,61 @@ - - PKG_CHECK_MODULES([DO_ADDINS], [do.addins]) - PKG_CHECK_MODULES([DO_DBUS], [do.dbus]) --PKG_CHECK_MODULES([EVOLUTION_SHARP], [evolution-sharp]) -- - AC_SUBST(DO_ADDINS_LIBS) - AC_SUBST(DO_DBUS_LIBS) -+ -+dnl - Evolution plugin -+ -+AC_ARG_ENABLE([evolution-plugin], -+ AC_HELP_STRING([--enable-evolution-plugin], [Enable the Evolution plugin]), -+ enable_evo_plugin=$enableval, -+ enable_evo_plugin=yes) -+ -+if test "x$enable_evo_plugin" = "xyes" ; then -+PKG_CHECK_MODULES([EVOLUTION_SHARP], -+ [evolution-sharp], -+ has_evo_deps=yes, -+ has_evo_deps=no) - AC_SUBST(EVOLUTION_SHARP_LIBS) -+fi -+ -+if test "x$has_evo_deps" != "xyes" ; then -+ if test "x$enable_evo_plugin" = "xyes" ; then -+ dnl Error out if explicitly asked for the Evolution plugin -+ AC_MSG_ERROR([Could not find evolution-sharp]) -+ fi -+ enable_evo_plugin="no" -+else -+ if test "x$enable_evo_plugin" != "xyes" ; then -+ enable_evo_plugin="no" -+ fi -+fi -+ -+AM_CONDITIONAL(ENABLE_EVO_PLUGIN, test "x$enable_evo_plugin" = "xyes") -+ -+dnl - Amarok plugin -+AC_ARG_ENABLE([amarok-plugin], -+ AC_HELP_STRING([--enable-amarok-plugin], [Enable the Amarok plugin]), -+ enable_amarok_plugin=$enableval, -+ enable_amarok_plugin=yes) -+ -+AM_CONDITIONAL(ENABLE_AMAROK_PLUGIN, test "x$enable_amarok_plugin" = "xyes") -+ -+dnl - OpenSearch plugin -+AC_ARG_ENABLE([opensearch-plugin], -+ AC_HELP_STRING([--enable-opensearch-plugin], [Enable the OpenSearch plugin]), -+ enable_opensearch_plugin=$enableval, -+ enable_opensearch_plugin=yes) -+ -+AM_CONDITIONAL(ENABLE_OPENSEARCH_PLUGIN, test "x$enable_opensearch_plugin" = "xyes") -+ -+dnl - Pastebin plugin -+AC_ARG_ENABLE([pastebin-plugin], -+ AC_HELP_STRING([--enable-pastebin-plugin], [Enable the Pastebin plugin]), -+ enable_pastebin_plugin=$enableval, -+ enable_pastebin_plugin=yes) -+ -+AM_CONDITIONAL(ENABLE_PASTEBIN_PLUGIN, test "x$enable_pastebin_plugin" = "xyes") - - dnl Plugin install paths - diff --git a/gnome-extra/gnome-do-plugins/files/gnome-do-plugins-0.6.0.1-disable-evo-flickr.patch b/gnome-extra/gnome-do-plugins/files/gnome-do-plugins-0.6.0.1-disable-evo-flickr.patch deleted file mode 100644 index fc5d529fb545..000000000000 --- a/gnome-extra/gnome-do-plugins/files/gnome-do-plugins-0.6.0.1-disable-evo-flickr.patch +++ /dev/null @@ -1,48 +0,0 @@ -diff --git a/Makefile.am b/Makefile.am -index 0b90d3a..da31e16 100644 ---- a/Makefile.am -+++ b/Makefile.am -@@ -6,10 +6,8 @@ SUBDIRS = po BundledLibraries \ - del.icio.us \ - DiskMounter \ - Epiphany \ -- Evolution \ - File \ - Firefox \ -- Flickr \ - GCalendar \ - GMailContacts \ - GNOME-Dictionary \ -diff --git a/configure.ac b/configure.ac -index 5f681c7..2f21e92 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -30,8 +30,6 @@ SHAMROCK_EXPAND_LIBDIR - SHAMROCK_EXPAND_BINDIR - SHAMROCK_EXPAND_DATADIR - --PKG_CHECK_MODULES([EVOLUTION_SHARP], [evolution-sharp]) --PKG_CHECK_MODULES([FLICKRNET], [flickrnet]) - PKG_CHECK_MODULES([GCONF_SHARP_20], [gconf-sharp-2.0]) - PKG_CHECK_MODULES([GLADE_SHARP_20], [glade-sharp-2.0]) - PKG_CHECK_MODULES([GLIB_SHARP_20], [glib-sharp-2.0]) -@@ -51,8 +49,6 @@ PKG_CHECK_MODULES([WNCK_SHARP_10], [wnck-sharp-1.0]) - PKG_CHECK_MODULES([DOADDINS], [do.addins]) - PKG_CHECK_MODULES([DODBUS], [do.dbus]) - --AC_SUBST([EVOLUTION_SHARP_LIBS]) --AC_SUBST([FLICKRNET_LIBS]) - AC_SUBST([GCONF_SHARP_20_LIBS]) - AC_SUBST([GLADE_SHARP_20_LIBS]) - AC_SUBST([GLIB_SHARP_20_LIBS]) -@@ -106,10 +102,8 @@ Banshee/Makefile - del.icio.us/Makefile - DiskMounter/Makefile - Epiphany/Makefile --Evolution/Makefile - File/Makefile - Firefox/Makefile --Flickr/Makefile - GCalendar/Makefile - GMailContacts/Makefile - GNOME-Dictionary/Makefile diff --git a/gnome-extra/gnome-do-plugins/files/gnome-do-plugins-0.8.1.3-fix-for-twitpocolypse.patch b/gnome-extra/gnome-do-plugins/files/gnome-do-plugins-0.8.1.3-fix-for-twitpocolypse.patch deleted file mode 100644 index 407c48f61866..000000000000 --- a/gnome-extra/gnome-do-plugins/files/gnome-do-plugins-0.8.1.3-fix-for-twitpocolypse.patch +++ /dev/null @@ -1,118 +0,0 @@ -=== modified file 'Microblogging/src/MicroblogClient.cs' ---- Microblogging/src/MicroblogClient.cs 2009-05-18 06:07:11 +0000 -+++ Microblogging/src/MicroblogClient.cs 2009-06-13 16:08:28 +0000 -@@ -103,7 +103,7 @@ - UpdateStatus (status, null); - } - -- public void UpdateStatus (string status, Nullable<int> inReplyToID) -+ public void UpdateStatus (string status, Nullable<long> inReplyToID) - { - string errorMessage = ""; - try { - -=== modified file 'Microblogging/src/MicroblogStatus.cs' ---- Microblogging/src/MicroblogStatus.cs 2009-02-28 19:17:08 +0000 -+++ Microblogging/src/MicroblogStatus.cs 2009-06-13 16:08:28 +0000 -@@ -8,7 +8,7 @@ - - public class MicroblogStatus : Item - { -- public MicroblogStatus (int id, string status, string owner, DateTime time) -+ public MicroblogStatus (long id, string status, string owner, DateTime time) - { - Id = id; - Owner = owner; -@@ -28,7 +28,7 @@ - get { return "microblogging.svg@" + GetType ().Assembly.FullName; } - } - -- public int Id { get; private set; } -+ public long Id { get; private set; } - public string Owner { get; private set; } - public string Status { get; private set; } - public DateTime Created { get; private set; } -@@ -36,13 +36,13 @@ - - public class MicroblogStatusReply - { -- public MicroblogStatusReply (Nullable<int> inReplyToID, string status) -+ public MicroblogStatusReply (Nullable<long> inReplyToID, string status) - { - Status = status; - InReplyToId = inReplyToID; - } - -- public Nullable<int> InReplyToId { get; private set; } -+ public Nullable<long> InReplyToId { get; private set; } - public string Status { get; private set; } - } - } - -=== modified file 'Microblogging/src/Twitterizer/Twitterizer.Framework/DataTransferObjects/TwitterStatus.cs' ---- Microblogging/src/Twitterizer/Twitterizer.Framework/DataTransferObjects/TwitterStatus.cs 2008-12-11 04:16:01 +0000 -+++ Microblogging/src/Twitterizer/Twitterizer.Framework/DataTransferObjects/TwitterStatus.cs 2009-06-13 16:08:28 +0000 -@@ -40,8 +40,8 @@ - set { created = value; }
- }
-
-- private int id;
-- public int ID
-+ private long id;
-+ public long ID
- {
- get { return id; }
- set { id = value; }
-@@ -82,8 +82,8 @@ - set { isFavorited = value; }
- }
-
-- private int inReplyToStatusID;
-- public int InReplyToStatusID
-+ private long inReplyToStatusID;
-+ public long InReplyToStatusID
- {
- get { return inReplyToStatusID; }
- set { inReplyToStatusID = value; }
- -=== modified file 'Microblogging/src/Twitterizer/Twitterizer.Framework/MethodClasses/TwitterStatusMethods.cs' ---- Microblogging/src/Twitterizer/Twitterizer.Framework/MethodClasses/TwitterStatusMethods.cs.~1~ 2009-06-21 13:48:03.966312847 +0200 -+++ Microblogging/src/Twitterizer/Twitterizer.Framework/MethodClasses/TwitterStatusMethods.cs 2009-06-21 13:48:37.557938534 +0200 -@@ -131,7 +131,7 @@ - /// <param name="Status">Required. The text of your status update.</param>
- /// <param name="InReplyToStatusID">Optional. The ID of an existing status that the status to be posted is in reply to.</param>
- /// <returns></returns>
-- public TwitterStatus Update(string Status, int? InReplyToStatusID)
-+ public TwitterStatus Update(string Status, long? InReplyToStatusID)
- {
- TwitterRequest Request = new TwitterRequest();
- TwitterRequestData Data = new TwitterRequestData();
-=== modified file 'Microblogging/src/Twitterizer/Twitterizer.Framework/TwitterRequest.cs' ---- Microblogging/src/Twitterizer/Twitterizer.Framework/TwitterRequest.cs 2009-04-17 02:15:08 +0000 -+++ Microblogging/src/Twitterizer/Twitterizer.Framework/TwitterRequest.cs 2009-06-13 16:08:28 +0000 -@@ -159,13 +159,13 @@ - if (Element == null) return null;
-
- //Mon May 12 15:56:07 +0000 2008
-- Status.ID = int.Parse(Element["id"].InnerText);
-+ Status.ID = long.Parse(Element["id"].InnerText);
- Status.Created = ParseDateString(Element["created_at"].InnerText);
- Status.Text = Element["text"].InnerText;
- Status.Source = Element["source"].InnerText;
- Status.IsTruncated = bool.Parse(Element["truncated"].InnerText);
- if (Element["in_reply_to_status_id"].InnerText != string.Empty)
-- Status.InReplyToStatusID = int.Parse(Element["in_reply_to_status_id"].InnerText);
-+ Status.InReplyToStatusID = long.Parse(Element["in_reply_to_status_id"].InnerText);
- if (Element["in_reply_to_user_id"].InnerText != string.Empty)
- Status.InReplyToUserID = int.Parse(Element["in_reply_to_user_id"].InnerText);
-
-@@ -198,7 +198,7 @@ -
- TwitterStatus Status = new TwitterStatus();
-
-- Status.ID = int.Parse(Element["id"].InnerText);
-+ Status.ID = long.Parse(Element["id"].InnerText);
- Status.Created = ParseDateString(Element["created_at"].InnerText);
- Status.Text = Element["text"].InnerText;
-
- diff --git a/gnome-extra/gnome-do-plugins/files/gnome-do-plugins-0.8.1.3-update-twitter-api.patch b/gnome-extra/gnome-do-plugins/files/gnome-do-plugins-0.8.1.3-update-twitter-api.patch deleted file mode 100644 index d286c49aba04..000000000000 --- a/gnome-extra/gnome-do-plugins/files/gnome-do-plugins-0.8.1.3-update-twitter-api.patch +++ /dev/null @@ -1,121 +0,0 @@ -Patch taken from upstream bug report to fix twitter by using the new API. - -https://code.launchpad.net/~alexlauni/do-plugins/twitter-api-fixes - -=== modified file 'Microblogging/src/MicroblogClient.cs' ---- Microblogging/src/MicroblogClient.cs 2009-02-28 19:53:07 +0000 -+++ Microblogging/src/MicroblogClient.cs 2009-04-13 04:10:11 +0000 -@@ -45,9 +45,9 @@ - readonly string FailedPostMsg = Catalog.GetString ("Unable to post tweet. Check your login settings. If you " - + "are behind a proxy make sure that the settings in /system/http_proxy are correct."); - -- const int UpdateTimelineTimeout = 30 * 1000; -- const int UpdateContactsTimeout = 10 * 60 * 1000; -- const int CheckForMessagesTimeout = 5 * 60 * 1000; -+ const int UpdateTimelineTimeout = 60 * 1000; // every 60 seconds -+ const int UpdateContactsTimeout = 30 * 1000 * 60; // every 30 minutes -+ const int CheckForMessagesTimeout = 5 * 1000 * 60; // every 5 minutespr - - #endregion - -@@ -61,6 +61,7 @@ - - static MicroblogClient () - { -+ Log<MicroblogClient>.Debug ("Using limited version!!!~~~~~"); - PhotoDirectory = new [] { Services.Paths.UserDataDirectory, "Microblogging", "photos"}.Aggregate (Path.Combine); - } - -@@ -121,11 +122,13 @@ - newContacts = new List<FriendItem> (); - friends = blog.User.Friends (); - } catch (TwitterizerException e) { -+ Log.Error("{0} {1}", e.RequestData.ResponseException.Message, e.RequestData.ResponseException.StackTrace); - Log<MicroblogClient>.Debug (GenericErrorMsg, "UpdateContacts", e.Message); - return; - } - - foreach (TwitterUser friend in friends) { -+ Log<MicroblogClient>.Error ("we had friendzzz"); - if (friend.Status != null) { - status = new MicroblogStatus (friend.Status.ID, friend.Status.Text, friend.ScreenName, friend.Status.Created); - newContact = new FriendItem (friend.ID, friend.ScreenName, status); - -=== modified file 'Microblogging/src/Twitterizer/Twitterizer.Framework/MethodClasses/TwitterStatusMethods.cs' ---- Microblogging/src/Twitterizer/Twitterizer.Framework/MethodClasses/TwitterStatusMethods.cs 2009-02-28 16:16:48 +0000 -+++ Microblogging/src/Twitterizer/Twitterizer.Framework/MethodClasses/TwitterStatusMethods.cs 2009-04-13 04:10:11 +0000 -@@ -109,7 +109,7 @@ -
- string actionUri = (Parameters == null ? Twitter.Urls.FriendsTimelineUrl : Parameters.BuildActionUri(Twitter.Urls.FriendsTimelineUrl));
- Data.ActionUri = new Uri(actionUri);
--
-+
- Data = Request.PerformWebRequest(Data);
-
- return Data.Statuses;
-@@ -141,7 +141,7 @@ - Data.ActionUri = new Uri(
- string.Format(Twitter.Urls.UpdateUrl, HttpUtility.UrlEncode(Status), InReplyToStatusID));
-
-- Data = Request.PerformWebRequest(Data);
-+ Data = Request.PerformWebRequest(Data, "POST");
-
- return Data.Statuses[0];
- }
- -=== modified file 'Microblogging/src/Twitterizer/Twitterizer.Framework/MethodClasses/TwitterUserMethods.cs' ---- Microblogging/src/Twitterizer/Twitterizer.Framework/MethodClasses/TwitterUserMethods.cs 2008-12-11 04:16:01 +0000 -+++ Microblogging/src/Twitterizer/Twitterizer.Framework/MethodClasses/TwitterUserMethods.cs 2009-04-13 04:10:11 +0000 -@@ -87,6 +87,7 @@ - /// <returns></returns>
- public TwitterUserCollection Friends(TwitterParameters Parameters)
- {
-+ Console.Error.WriteLine ("Goona get friends");
- // page 0 == page 1 is the start
- TwitterRequest Request = new TwitterRequest();
- TwitterRequestData Data = new TwitterRequestData();
-@@ -95,9 +96,9 @@ -
- string actionUri = (Parameters == null ? Twitter.Urls.FriendsUrl : Parameters.BuildActionUri(Twitter.Urls.FriendsUrl));
- Data.ActionUri = new Uri(actionUri);
--
-+ Console.Error.WriteLine ("GOING TO GET EM");
- Data = Request.PerformWebRequest(Data);
--
-+ Console.Error.WriteLine ("I have {0} frienz", Data.Users.Count);
- return Data.Users;
- }
- }
- -=== modified file 'Microblogging/src/Twitterizer/Twitterizer.Framework/TwitterRequest.cs' ---- Microblogging/src/Twitterizer/Twitterizer.Framework/TwitterRequest.cs 2008-12-11 04:16:01 +0000 -+++ Microblogging/src/Twitterizer/Twitterizer.Framework/TwitterRequest.cs 2009-04-13 04:10:11 +0000 -@@ -40,7 +40,7 @@ - {
- public TwitterRequestData PerformWebRequest(TwitterRequestData Data)
- {
-- PerformWebRequest(Data, "POST");
-+ PerformWebRequest(Data, "GET");
-
- return (Data);
-
-@@ -48,7 +48,8 @@ -
- public TwitterRequestData PerformWebRequest(TwitterRequestData Data, string HTTPMethod)
- {
-- HttpWebRequest Request = (HttpWebRequest)WebRequest.Create(Data.ActionUri);
-+ Console.Error.WriteLine ("Posting {0} via {1}", Data.ActionUri, HTTPMethod);
-+ HttpWebRequest Request = (HttpWebRequest)WebRequest.Create(Data.ActionUri);
-
-
- Request.Method = HTTPMethod;
-@@ -99,7 +100,7 @@ - {
- XmlDocument ResultXmlDocument = new XmlDocument();
- ResultXmlDocument.LoadXml(Data.Response);
--
-+
- if (ResultXmlDocument.DocumentElement != null)
- switch (ResultXmlDocument.DocumentElement.Name.ToLower())
- {
- diff --git a/gnome-extra/gnome-do-plugins/gnome-do-plugins-0.8.1.3-r1.ebuild b/gnome-extra/gnome-do-plugins/gnome-do-plugins-0.8.1.3-r1.ebuild deleted file mode 100644 index 9b7c120edde0..000000000000 --- a/gnome-extra/gnome-do-plugins/gnome-do-plugins-0.8.1.3-r1.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-do-plugins/gnome-do-plugins-0.8.1.3-r1.ebuild,v 1.1 2009/05/31 09:54:31 graaff Exp $ - -inherit eutils autotools gnome2 mono versionator - -MY_PN="do-plugins" -PVC=$(get_version_component_range 1-3) - -DESCRIPTION="Plugins to put the Do in Gnome Do" -HOMEPAGE="http://do.davebsd.com/" -SRC_URI="https://launchpad.net/${MY_PN}/0.8/${PVC}/+download/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="banshee evo" - -RDEPEND=">=gnome-extra/gnome-do-${PV} - dev-dotnet/wnck-sharp - banshee? ( >=media-sound/banshee-1.4.2 ) - evo? ( dev-dotnet/evolution-sharp )" -DEPEND="${RDEPEND} - dev-util/pkgconfig - dev-util/monodevelop" - -src_unpack() { - unpack ${A} - cd "${S}" - - # Fix use of Twitter API in Microblogging plugin. - epatch "${FILESDIR}/${P}-update-twitter-api.patch" - - sed -i -r -e "/(FLICKR|Flickr)/d" configure.ac Makefile.am - use banshee || sed -i -r -e "/(BANSHEE|Banshee)/d" configure.ac Makefile.am - use evo || sed -i -r -e "/(EVOLUTION|Evolution)/d" configure.ac Makefile.am - eautoreconf -} - -src_compile() -{ - econf --enable-debug=no --enable-release=yes || die "configure failed" - # The make system is unfortunately broken for parallel builds and - # upstream indicated on IRC that they have no intention to fix - # that. - emake -j1 || die "make failed" -} - -pkg_postinst() -{ - ewarn "Plugin handling has changed since gnome-do 0.4." - ewarn "If you install the gnome-do-plugins package you will have local copies" - ewarn "of the plugins, but you still need to manually enable them in Preferences." - ewarn "Also note that plugins installed from upstream may not be compatible with" - ewarn "your system. When in doubt check the output from gnome-do itself". - ewarn "Old plugins may not be compatible either." - ewarn "Check ~/.local/share/gnome-do/ if you have problems with plugins." - - # To be removed when bumping from 0.8.1.3 - ewarn - ewarn "This revision contains an update for the Microblogging.dll plugin." - ewarn "You will need to copy the updated version from /usr/share/gnome-do/plugins" - ewarn "to ~/.local/share/gnome-do/plugins-${PV}/addins/Do.Microblog.1.0/ manually" -} diff --git a/gnome-extra/gnome-do-plugins/gnome-do-plugins-0.8.1.3-r2.ebuild b/gnome-extra/gnome-do-plugins/gnome-do-plugins-0.8.1.3-r2.ebuild deleted file mode 100644 index 371dd674a2be..000000000000 --- a/gnome-extra/gnome-do-plugins/gnome-do-plugins-0.8.1.3-r2.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-do-plugins/gnome-do-plugins-0.8.1.3-r2.ebuild,v 1.1 2009/06/21 12:01:46 graaff Exp $ - -inherit eutils autotools gnome2 mono versionator - -MY_PN="do-plugins" -PVC=$(get_version_component_range 1-3) - -DESCRIPTION="Plugins to put the Do in Gnome Do" -HOMEPAGE="http://do.davebsd.com/" -SRC_URI="https://launchpad.net/${MY_PN}/0.8/${PVC}/+download/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="banshee evo" - -RDEPEND=">=gnome-extra/gnome-do-${PV} - dev-dotnet/wnck-sharp - banshee? ( >=media-sound/banshee-1.4.2 ) - evo? ( dev-dotnet/evolution-sharp )" -DEPEND="${RDEPEND} - dev-util/pkgconfig - dev-util/monodevelop" - -src_unpack() { - unpack ${A} - cd "${S}" - - # Fix use of Twitter API in Microblogging plugin. - epatch "${FILESDIR}/${P}-update-twitter-api.patch" - # Fix handling of Twitter id's in Microblogging plugin. - epatch "${FILESDIR}/${P}-fix-for-twitpocolypse.patch" - - sed -i -r -e "/(FLICKR|Flickr)/d" configure.ac Makefile.am - use banshee || sed -i -r -e "/(BANSHEE|Banshee)/d" configure.ac Makefile.am - use evo || sed -i -r -e "/(EVOLUTION|Evolution)/d" configure.ac Makefile.am - eautoreconf -} - -src_compile() -{ - econf --enable-debug=no --enable-release=yes || die "configure failed" - # The make system is unfortunately broken for parallel builds and - # upstream indicated on IRC that they have no intention to fix - # that. - emake -j1 || die "make failed" -} - -pkg_postinst() -{ - ewarn "Plugin handling has changed since gnome-do 0.4." - ewarn "If you install the gnome-do-plugins package you will have local copies" - ewarn "of the plugins, but you still need to manually enable them in Preferences." - ewarn "Also note that plugins installed from upstream may not be compatible with" - ewarn "your system. When in doubt check the output from gnome-do itself". - ewarn "Old plugins may not be compatible either." - ewarn "Check ~/.local/share/gnome-do/ if you have problems with plugins." - - # To be removed when bumping from 0.8.1.3 - ewarn - ewarn "This revision contains an update for the Microblogging.dll plugin." - ewarn "You will need to copy the updated version from /usr/share/gnome-do/plugins" - ewarn "to ~/.local/share/gnome-do/plugins-${PV}/addins/Do.Microblog.1.0/ manually" -} diff --git a/gnome-extra/gnome-do-plugins/gnome-do-plugins-0.8.1.3.ebuild b/gnome-extra/gnome-do-plugins/gnome-do-plugins-0.8.1.3.ebuild deleted file mode 100644 index 523ad41982b7..000000000000 --- a/gnome-extra/gnome-do-plugins/gnome-do-plugins-0.8.1.3.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-do-plugins/gnome-do-plugins-0.8.1.3.ebuild,v 1.1 2009/03/17 20:30:27 graaff Exp $ - -inherit eutils autotools gnome2 mono versionator - -MY_PN="do-plugins" -PVC=$(get_version_component_range 1-3) - -DESCRIPTION="Plugins to put the Do in Gnome Do" -HOMEPAGE="http://do.davebsd.com/" -SRC_URI="https://launchpad.net/${MY_PN}/0.8/${PVC}/+download/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="banshee evo" - -RDEPEND=">=gnome-extra/gnome-do-${PV} - dev-dotnet/wnck-sharp - banshee? ( >=media-sound/banshee-1.4.2 ) - evo? ( dev-dotnet/evolution-sharp )" -DEPEND="${RDEPEND} - dev-util/pkgconfig - dev-util/monodevelop" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i -r -e "/(FLICKR|Flickr)/d" configure.ac Makefile.am - use banshee || sed -i -r -e "/(BANSHEE|Banshee)/d" configure.ac Makefile.am - use evo || sed -i -r -e "/(EVOLUTION|Evolution)/d" configure.ac Makefile.am - eautoreconf -} - -src_compile() -{ - econf --enable-debug=no --enable-release=yes || die "configure failed" - # The make system is unfortunately broken for parallel builds and - # upstream indicated on IRC that they have no intention to fix - # that. - emake -j1 || die "make failed" -} - -pkg_postinst() -{ - ewarn "Plugin handling has changed since gnome-do 0.4." - ewarn "If you install the gnome-do-plugins package you will have local copies" - ewarn "of the plugins, but you still need to manually enable them in Preferences." - ewarn "Also note that plugins installed from upstream may not be compatible with" - ewarn "your system. When in doubt check the output from gnome-do itself". - ewarn "Old plugins may not be compatible either." - ewarn "Check ~/.local/share/gnome-do/ if you have problems with plugins." -} |