pimlico/dates: remove recipe

* pimlico project is dead for long time
* the only commits seen here were fix build / blacklist / unblacklist - so drop
  this maintenace burden
* it does not build with recent evolution-data-server

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
Andreas Müller
2018-01-17 09:34:12 +01:00
committed by Armin Kuster
parent db39cbcd42
commit a8a247c138
7 changed files with 0 additions and 164 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

@@ -1,11 +0,0 @@
DESCRIPTION = "Dates is a calendar application."
HOMEPAGE = "http://pimlico-project.org/dates.html"
BUGTRACKER = "https://bugzilla.gnome.org/"
LICENSE = "GPLv2 & GPLv2+ & LGPLv2+"
SECTION = "x11"
DEPENDS = "glib-2.0 gtk+ libglade evolution-data-server intltool-native"
RDEPENDS_${PN} = "libedata-cal"
inherit autotools gettext pkgconfig gtk-icon-cache
@@ -1,54 +0,0 @@
From 687881c5fa342686c8724adcdac0f9d555a351c3 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Wed, 5 Apr 2017 18:10:57 -0700
Subject: [PATCH] Fix format security warnings
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
src/dates_callbacks.c | 2 +-
src/dates_gtk.c | 2 +-
src/gconf-bridge.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/dates_callbacks.c b/src/dates_callbacks.c
index d704c8f..46b8cb1 100644
--- a/src/dates_callbacks.c
+++ b/src/dates_callbacks.c
@@ -365,7 +365,7 @@ dates_about_cb (GtkWidget *widget, DatesData *d)
if (!pixb) {
g_assert (error);
- g_warning (error->message);
+ g_warning ("%s", error->message);
g_clear_error (&error);
}
diff --git a/src/dates_gtk.c b/src/dates_gtk.c
index 403bc25..fd691d2 100644
--- a/src/dates_gtk.c
+++ b/src/dates_gtk.c
@@ -1114,7 +1114,7 @@ calendar_do_edit_dialog_response_cb (GtkDialog *dialog, gint response_id, gpoint
GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_WARNING,
GTK_BUTTONS_NONE,
- prompt);
+ "%s", prompt);
g_free (prompt);
diff --git a/src/gconf-bridge.c b/src/gconf-bridge.c
index 49754cf..67d3757 100644
--- a/src/gconf-bridge.c
+++ b/src/gconf-bridge.c
@@ -1220,7 +1220,7 @@ error_handler (GConfClient *client,
dlg = gtk_message_dialog_new (NULL, 0,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
- message);
+ "%s", message);
g_free (message);
gtk_message_dialog_format_secondary_text
--
2.12.2
@@ -1,44 +0,0 @@
after gcc linking has changed, all the libraries must be explicitely specified
This patch avoids these linking errors:
| make[2]: Entering directory `/disk0/pokybuild/build1/tmp/work/i586-poky-linux/dates-0.4.11+git0+514185dc1f6588085fda41eb59898b93d0487dd4-r2/git/src'^M
...
| /disk0/pokybuild/build1/tmp/sysroots/x86_64-linux/usr/libexec/i586-poky-linux/gcc/i586-poky-linux/4.5.1/ld: e: invalid DSO for symbol `pow@@GLIBC_2.0' definition^M
| /disk0/pokybuild/build1/tmp/sysroots/i586-poky-linux/usr/lib/libm.so: could not read symbols: Bad value^M
| collect2: ld returned 1 exit status^M
| make[2]: *** [dates] Error 1
| /disk0/pokybuild/build1/tmp/sysroots/x86_64-linux/usr/libexec/i586-poky-linux/gcc/i586-poky-linux/4.5.1/ld: z: invalid DSO for symbol `pango_layout_get_extents' definition
| /disk0/pokybuild/build1/tmp/sysroots/i586-poky-linux/usr/lib/libpango-1.0.so: could not read symbols: Bad value
| collect2: ld returned 1 exit status
| make[2]: *** [dates] Error 1
Nitin A Kamble <nitin.a.kamble@intel.com>
Date: 2011/01/11
Update:
This is identified as a libtool issue. While creating the libgtkdatesview.la
file, libtool should have added these needed libraries in there.
A bug has been created for this issue:
http://bugzilla.pokylinux.org/show_bug.cgi?id=664
Nitin A Kamble <nitin.a.kamble@intel.com>
Date: 2011/01/19
Upstream-Status: Pending
Index: git/src/Makefile.am
===================================================================
--- git.orig/src/Makefile.am
+++ git/src/Makefile.am
@@ -34,6 +34,6 @@ dates_SOURCES = $(platform) \
gconf-bridge.h \
gconf-bridge.c
-dates_LDADD = $(DATES_LIBS) $(OWL_LIBS) libgtkdatesview.la
+dates_LDADD = $(DATES_LIBS) $(OWL_LIBS) libgtkdatesview.la -lm -lpango-1.0
MAINTAINERCLEANFILES = config.h.in Makefile.in
@@ -1,37 +0,0 @@
uclibc has langinfo.h but it does not define _NL_TIME_FIRST_WEEKDAY
therefore we introduce a check in configure for the this define
and then we make sure that we use it when it really exists
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Upstream-Status: Pending
Index: git/configure.ac
===================================================================
--- git.orig/configure.ac 2011-07-18 10:34:15.000000000 -0700
+++ git/configure.ac 2011-07-18 10:54:26.403798188 -0700
@@ -98,6 +98,8 @@
src/libgtkdatesview.pc
])
+AC_CHECK_DECLS([_NL_TIME_FIRST_WEEKDAY],[],[],[[#include <langinfo.h>]])
+
AC_OUTPUT
echo " "
Index: git/src/dates_view.c
===================================================================
--- git.orig/src/dates_view.c 2011-07-18 10:34:15.000000000 -0700
+++ git/src/dates_view.c 2011-07-18 10:58:46.093798136 -0700
@@ -1505,7 +1505,11 @@
priv->days = 1;
priv->months = 0;
priv->months_in_row = 4;
+#if HAVE_DECL__NL_TIME_FIRST_WEEKDAY
priv->week_start = *nl_langinfo (_NL_TIME_FIRST_WEEKDAY) - 1;
+#else
+ priv->week_start = 0;
+#endif
priv->dragbox = TRUE;
priv->single_click = TRUE;
priv->double_click = FALSE;
@@ -1,18 +0,0 @@
require dates.inc
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \
file://src/dates_view.h;endline=22;md5=29f934f356eb970309cdeb6693b3123a \
file://src/dates_hildon.c;endline=19;md5=63938904198b25de429abb65fbdbdb8a \
file://src/gconf-bridge.c;endline=22;md5=ad7626c6daf4aec590474a243f4912fa"
SRCREV = "c8e30fa3211dcdfcda48184f4c57746a552b9c7a"
PV = "0.4.11+git${SRCPV}"
PR = "r9"
S = "${WORKDIR}/git"
SRC_URI = "git://git.gnome.org/${BPN} \
file://dso_linking_change_build_fix.patch \
file://uclibc-NL_TIME_FIRST_WEEKDAY-absent.patch \
file://0001-Fix-format-security-warnings.patch \
"