From f837921654c6da9e14c06d71664f0ab08fdbea94 Mon Sep 17 00:00:00 2001 From: Danny Rawlins Date: Thu, 26 Jan 2017 20:18:32 +1100 Subject: [PATCH] libsexy: dropped --- libsexy/.footprint | 18 ---------- libsexy/.md5sum | 3 -- libsexy/Pkgfile | 25 -------------- libsexy/libsexy-0.1.11-fix-null-list.patch | 34 ------------------- .../libsexy-0.1.11-pkgconfig-pollution.patch | 12 ------- 5 files changed, 92 deletions(-) delete mode 100644 libsexy/.footprint delete mode 100644 libsexy/.md5sum delete mode 100644 libsexy/Pkgfile delete mode 100644 libsexy/libsexy-0.1.11-fix-null-list.patch delete mode 100644 libsexy/libsexy-0.1.11-pkgconfig-pollution.patch diff --git a/libsexy/.footprint b/libsexy/.footprint deleted file mode 100644 index c963f2be7..000000000 --- a/libsexy/.footprint +++ /dev/null @@ -1,18 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/include/ -drwxr-xr-x root/root usr/include/libsexy/ --rw-r--r-- root/root usr/include/libsexy/sexy-enum-types.h --rw-r--r-- root/root usr/include/libsexy/sexy-icon-entry.h --rw-r--r-- root/root usr/include/libsexy/sexy-spell-entry.h --rw-r--r-- root/root usr/include/libsexy/sexy-tooltip.h --rw-r--r-- root/root usr/include/libsexy/sexy-tree-view.h --rw-r--r-- root/root usr/include/libsexy/sexy-url-label.h --rw-r--r-- root/root usr/include/libsexy/sexy.h -drwxr-xr-x root/root usr/lib/ --rw-r--r-- root/root usr/lib/libsexy.a --rwxr-xr-x root/root usr/lib/libsexy.la -lrwxrwxrwx root/root usr/lib/libsexy.so -> libsexy.so.2.0.4 -lrwxrwxrwx root/root usr/lib/libsexy.so.2 -> libsexy.so.2.0.4 --rwxr-xr-x root/root usr/lib/libsexy.so.2.0.4 -drwxr-xr-x root/root usr/lib/pkgconfig/ --rw-r--r-- root/root usr/lib/pkgconfig/libsexy.pc diff --git a/libsexy/.md5sum b/libsexy/.md5sum deleted file mode 100644 index 2713e0a49..000000000 --- a/libsexy/.md5sum +++ /dev/null @@ -1,3 +0,0 @@ -52f2ca41f833cc1258f893c237922b18 libsexy-0.1.11-fix-null-list.patch -7f641d872f76d42c069b2eee932981f6 libsexy-0.1.11-pkgconfig-pollution.patch -33c079a253270ec8bfb9508e4bb30754 libsexy-0.1.11.tar.gz diff --git a/libsexy/Pkgfile b/libsexy/Pkgfile deleted file mode 100644 index e2eced53d..000000000 --- a/libsexy/Pkgfile +++ /dev/null @@ -1,25 +0,0 @@ -# Description: A collection of GTK+ widgets that extend the standard widgets. -# URL: http://www.chipx86.com/wiki/Libsexy -# Maintainer: Danny Rawlins, crux at romster dot me -# Packager: Antonio SJ Musumeci, bile at landofbile dot com -# Depends on: gtk - -name=libsexy -version=0.1.11 -release=2 -source=(http://releases.chipx86.com/libsexy/libsexy/libsexy-$version.tar.gz - libsexy-0.1.11-fix-null-list.patch - libsexy-0.1.11-pkgconfig-pollution.patch) - -build() { - cd $name-$version - - patch -p1 -i $SRC/libsexy-0.1.11-fix-null-list.patch - patch -p0 -i $SRC/libsexy-0.1.11-pkgconfig-pollution.patch - - sed -i -e "/^SUBDIRS = /s/docs //" Makefile.in - - ./configure --prefix=/usr - make - make DESTDIR=$PKG install -} diff --git a/libsexy/libsexy-0.1.11-fix-null-list.patch b/libsexy/libsexy-0.1.11-fix-null-list.patch deleted file mode 100644 index 5330e12e3..000000000 --- a/libsexy/libsexy-0.1.11-fix-null-list.patch +++ /dev/null @@ -1,34 +0,0 @@ -diff -Nur libsexy-0.1.11/libsexy/sexy-spell-entry.c libsexy-0.1.11_patched/libsexy/sexy-spell-entry.c ---- libsexy-0.1.11/libsexy/sexy-spell-entry.c 2006-08-17 21:11:09.000000000 +0300 -+++ libsexy-0.1.11_patched/libsexy/sexy-spell-entry.c 2009-05-17 15:15:25.000000000 +0300 -@@ -56,7 +56,7 @@ - static void (*enchant_dict_add_to_session) (struct EnchantDict * dict, const char *const word, ssize_t len); - static int (*enchant_dict_check) (struct EnchantDict * dict, const char *const word, ssize_t len); - static void (*enchant_dict_describe) (struct EnchantDict * dict, EnchantDictDescribeFn fn, void * user_data); --static void (*enchant_dict_free_suggestions) (struct EnchantDict * dict, char **suggestions); -+static void (*enchant_dict_free_string_list) (struct EnchantDict * dict, char **suggestions); - static void (*enchant_dict_store_replacement) (struct EnchantDict * dict, const char *const mis, ssize_t mis_len, const char *const cor, ssize_t cor_len); - static char ** (*enchant_dict_suggest) (struct EnchantDict * dict, const char *const word, ssize_t len, size_t * out_n_suggs); - static gboolean have_enchant = FALSE; -@@ -156,8 +156,8 @@ - MODULE_SYMBOL("enchant_dict_add_to_session", enchant_dict_add_to_session) - MODULE_SYMBOL("enchant_dict_check", enchant_dict_check) - MODULE_SYMBOL("enchant_dict_describe", enchant_dict_describe) -- MODULE_SYMBOL("enchant_dict_free_suggestions", -- enchant_dict_free_suggestions) -+ MODULE_SYMBOL("enchant_dict_free_string_list", -+ enchant_dict_free_string_list) - MODULE_SYMBOL("enchant_dict_store_replacement", - enchant_dict_store_replacement) - MODULE_SYMBOL("enchant_dict_suggest", enchant_dict_suggest) -@@ -435,9 +435,8 @@ - gtk_widget_show(mi); - gtk_menu_shell_append(GTK_MENU_SHELL(menu), mi); - } -+ enchant_dict_free_string_list(dict, suggestions); - } -- -- enchant_dict_free_suggestions(dict, suggestions); - } - - static GtkWidget * diff --git a/libsexy/libsexy-0.1.11-pkgconfig-pollution.patch b/libsexy/libsexy-0.1.11-pkgconfig-pollution.patch deleted file mode 100644 index faf16dea7..000000000 --- a/libsexy/libsexy-0.1.11-pkgconfig-pollution.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- libsexy.pc.in -+++ libsexy.pc.in -@@ -6,7 +6,8 @@ - Name: libsexy - Description: Doing naughty things to good widgets - Version: @VERSION@ --Libs: -L${libdir} -lsexy @PACKAGE_LIBS@ -+Libs: -L${libdir} -lsexy -+Libs.private: @PACKAGE_LIBS@ - Cflags: -I${includedir} @PACKAGE_CFLAGS@ - -