diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-05-03 06:19:04 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-05-03 06:19:04 +0000 |
commit | 6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07 (patch) | |
tree | 1f70b259fe7fb5c82f437c6b006284893cf4eb5a /testing/evolution-data-server | |
parent | 66765c30ac7a9c9a560ab43d5618de820fb373c6 (diff) | |
download | aports-6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07.tar.bz2 aports-6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07.tar.xz |
testing/*: removed
We dont ship testing things in a stable release
Diffstat (limited to 'testing/evolution-data-server')
3 files changed, 0 insertions, 153 deletions
diff --git a/testing/evolution-data-server/APKBUILD b/testing/evolution-data-server/APKBUILD deleted file mode 100644 index 74db2d670f..0000000000 --- a/testing/evolution-data-server/APKBUILD +++ /dev/null @@ -1,51 +0,0 @@ -# Contributor: William Pitcock <nenolod@dereferenced.org> -# Maintainer: William Pitcock <nenolod@dereferenced.org> -pkgname=evolution-data-server -pkgver=2.32.3 -pkgrel=0 -pkgdesc="data server for evolution" -url="http://projects.gnome.org/evolution" -arch="all" -license="GPL" -depends= -depends_dev="gtk+-dev glib-dev libsoup-dev libxml2-dev gconf-dev libgdata-dev db-dev libgweather-dev libgnome-keyring-dev libical-dev nspr-dev nss-dev sqlite-dev" -makedepends="$depends_dev gperf flex bison" -install="" -subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" -source="ftp://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2 - g_unicode_canonical_decomposition.patch - g_atomic_int_exchange_and_add.patch - " - -_builddir="${srcdir}/${pkgname}-${pkgver}" -prepare() { - local i - cd "$_builddir" - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done - - # to build against gtk+-2.24 - # http://bugs.gentoo.org/show_bug.cgi?id=352400 - sed -i -e "s:-DGTK_DISABLE_DEPRECATED::" configure -} - -build() { - cd "$_builddir" - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - || return 1 - make || return 1 -} - -package() { - cd "$_builddir" - make DESTDIR="$pkgdir" install || return 1 - find "$pkgdir" -name '*.la' -delete -} - -md5sums="480bab0702991692f9dee9fecfc49f48 evolution-data-server-2.32.3.tar.bz2 -464467c7a90ca790002356046dae8356 g_unicode_canonical_decomposition.patch -2578f99935e070bd4db96a08f1bdb819 g_atomic_int_exchange_and_add.patch" diff --git a/testing/evolution-data-server/g_atomic_int_exchange_and_add.patch b/testing/evolution-data-server/g_atomic_int_exchange_and_add.patch deleted file mode 100644 index 59c114134b..0000000000 --- a/testing/evolution-data-server/g_atomic_int_exchange_and_add.patch +++ /dev/null @@ -1,45 +0,0 @@ -From 1886d3d0573388aa5c13af99f714687ba6a66ec6 Mon Sep 17 00:00:00 2001 -From: Milan Crha <mcrha@redhat.com> -Date: Wed, 01 Jun 2011 05:22:14 +0000 -Subject: Replace deprecated g_atomic_int_exchange_and_add() - ---- -(limited to 'addressbook/libedata-book/e-data-book.c') - -diff --git a/addressbook/libedata-book/e-data-book.c b/addressbook/libedata-book/e-data-book.c -index 9e17703..1a29e4b 100644 ---- a/addressbook/libedata-book/e-data-book.c -+++ b/addressbook/libedata-book/e-data-book.c -@@ -117,7 +117,7 @@ construct_bookview_path (void) - - return g_strdup_printf ("/org/gnome/evolution/dataserver/AddressBookView/%d/%d", - getpid (), -- g_atomic_int_exchange_and_add ((int*)&counter, 1)); -+ g_atomic_int_add ((int*)&counter, 1)); - } - - static void --- -cgit v0.9.0.2 ---- ./addressbook/libedata-book/e-data-book-factory.c.orig -+++ ./addressbook/libedata-book/e-data-book-factory.c -@@ -229,7 +229,7 @@ - - return g_strdup_printf ( - "/org/gnome/evolution/dataserver/addressbook/%d/%u", -- getpid (), g_atomic_int_exchange_and_add (&counter, 1)); -+ getpid (), g_atomic_int_add (&counter, 1)); - } - - static gboolean ---- ./calendar/libedata-cal/e-data-cal-factory.c.orig -+++ ./calendar/libedata-cal/e-data-cal-factory.c -@@ -245,7 +245,7 @@ - - return g_strdup_printf ( - "/org/gnome/evolution/dataserver/calendar/%d/%u", -- getpid (), g_atomic_int_exchange_and_add (&counter, 1)); -+ getpid (), g_atomic_int_add (&counter, 1)); - } - - static gboolean diff --git a/testing/evolution-data-server/g_unicode_canonical_decomposition.patch b/testing/evolution-data-server/g_unicode_canonical_decomposition.patch deleted file mode 100644 index d00a06ddce..0000000000 --- a/testing/evolution-data-server/g_unicode_canonical_decomposition.patch +++ /dev/null @@ -1,57 +0,0 @@ -From f1c9292caa3b26c890d628e99677dd05d62eba99 Mon Sep 17 00:00:00 2001 -From: Vincent Untz <vuntz@gnome.org> -Date: Tue, 06 Sep 2011 14:43:04 +0000 -Subject: Bug #655837 - Avoid use of deprecated g_unicode_canonical_decomposition - ---- -(limited to 'libedataserver/e-data-server-util.c') - -diff --git a/libedataserver/e-data-server-util.c b/libedataserver/e-data-server-util.c -index 4c0310a..3f2ff02 100644 ---- a/libedataserver/e-data-server-util.c -+++ b/libedataserver/e-data-server-util.c -@@ -251,7 +251,12 @@ e_util_utf8_strstrcase (const gchar *haystack, - static gunichar - stripped_char (gunichar ch) - { -- gunichar *decomp, retval; -+#if GLIB_CHECK_VERSION(2,29,12) -+ gunichar decomp[4]; -+#else -+ gunichar *decomp; -+#endif -+ gunichar retval; - GUnicodeType utype; - gsize dlen; - -@@ -268,11 +273,18 @@ stripped_char (gunichar ch) - /* Convert to lowercase, fall through */ - ch = g_unichar_tolower (ch); - case G_UNICODE_LOWERCASE_LETTER: -+#if GLIB_CHECK_VERSION(2,29,12) -+ if ((dlen = g_unichar_fully_decompose (ch, FALSE, decomp, 4))) { -+ retval = decomp[0]; -+ return retval; -+ } -+#else - if ((decomp = g_unicode_canonical_decomposition (ch, &dlen))) { - retval = decomp[0]; - g_free (decomp); - return retval; - } -+#endif - break; - } - --- -cgit v0.9.0.2 ---- ./libedataserver/e-data-server-util.c.orig -+++ ./libedataserver/e-data-server-util.c -@@ -260,7 +260,6 @@ - case G_UNICODE_CONTROL: - case G_UNICODE_FORMAT: - case G_UNICODE_UNASSIGNED: -- case G_UNICODE_COMBINING_MARK: - /* Ignore those */ - return 0; - default: |