From d37b97a25b8b10f748eead6574b01f893f140b01 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 6 Dec 2017 18:23:20 +0000 Subject: gentoo resync : 06.12.2017 --- x11-plugins/wmgtemp/Manifest | 3 - x11-plugins/wmgtemp/files/wmgtemp-1.0-list.patch | 127 ----------------------- x11-plugins/wmgtemp/wmgtemp-1.0-r1.ebuild | 42 -------- 3 files changed, 172 deletions(-) delete mode 100644 x11-plugins/wmgtemp/files/wmgtemp-1.0-list.patch delete mode 100644 x11-plugins/wmgtemp/wmgtemp-1.0-r1.ebuild (limited to 'x11-plugins/wmgtemp') diff --git a/x11-plugins/wmgtemp/Manifest b/x11-plugins/wmgtemp/Manifest index cd6cf3cd684a..c84f3d1714f2 100644 --- a/x11-plugins/wmgtemp/Manifest +++ b/x11-plugins/wmgtemp/Manifest @@ -1,6 +1,3 @@ -AUX wmgtemp-1.0-list.patch 2977 BLAKE2B 6b1d49d6a72620853dc2206361fe83fcb9699f0d91af05f578edb904357b56022aa223b3039f7ef2c2270ba324a9409bcfae08acee514fdc00fc528d937b7c24 SHA512 efce721b1c08960fcc545552cc7362b9b8b5794f3ef43a3fc0b23281c38e4274eb048530916a859ba1d55e7ee4c5c913d56450acd549ec8b63cbc98fabc353bc -DIST wmgtemp-1.0.tar.bz2 21090 SHA256 3de2e15358695ce6b9c8f2d4aae33730b90085f31ff3cd7d01647d76370c45d4 SHA512 d174eda017131bee0b96c795acd7146835dfea89df61fb1e8cd3105566372caef817b1a9bb1d12691a69024df303d78a43ca720b3fb84473bfa19d863b53e7c4 WHIRLPOOL c88cefbd5c565daba8254616fd6236423301af7313df7fb4a14fa3f1b7799b17baf94b118707a627cb244470ad117b702efeed0822fcfa55fab8c0af2704dc16 DIST wmgtemp-1.2.tar.gz 96949 SHA256 dabf70bfaa11c35ec630b1e5d7455570165c937bfe826a3b4d1278d21f0ff6cb SHA512 ab76eabb5459b6a8dde28c23b8c8d39587e7874daaf368afcbe7aabe57ce499285d4151b53afa8295991742c481ca18617e71107ae264c05ab28b24b67c00b9b WHIRLPOOL f96660d1f77e3a5d1e71b9bd4808b8aeca0d3a2747257d5306a5d0a9a6b7c3f78c1bd7447b406943dc25dfb4c7e544437c717d597cae589e0aa420c01f8ce562 -EBUILD wmgtemp-1.0-r1.ebuild 983 BLAKE2B 346ac7c35c2ce3e17538ab3d1c7307c05211db26693045584da60f61e6165a4c40175d9e7c6dde7a27df4aba8cba809c8deffbba4014ee7973cf84ddb2524637 SHA512 5c3ff69f60e378a35cfd621b5143b87d5b63db20796e1f560802e6453b547eb1117ec77f5fe7a8c8da9e8374de5763528b97e95e1c1b8dc4a41363b8dd190698 EBUILD wmgtemp-1.2.ebuild 418 BLAKE2B 3dd5fb1966b2aea8647a0a01b75ac8cb43fd000a3cc3cb5104789c3121181caf1b230f2af14aee0d8cd21125e9dd33c8bce7d75b29c2bdc9140a539920d7beb0 SHA512 2144434bcde9e1d104cccc8aceac80b2371f19af0301e63ca3cbd9b886294421c84c079c35cbd2ee364f7d6c769b29742a157824af6a892f9301fbc4b76cd5c8 MISC metadata.xml 739 BLAKE2B 791f77c670ef085fed4481719f4f56e7135b2bce849981d87e2d97ca6b9fa8d2c1a30c22baa9c4177404af70d1dbcecaa5b4d2587965d75bd4a014788b127434 SHA512 a8750419c79941025fbd79e72f9a0e646bb08cdfa341dd531b77c755f48f97c07574e095b57d9cba3fcbc27404c5f35b0ff52617828623e48cfcc42bbfba552f diff --git a/x11-plugins/wmgtemp/files/wmgtemp-1.0-list.patch b/x11-plugins/wmgtemp/files/wmgtemp-1.0-list.patch deleted file mode 100644 index 54a2eb2c2887..000000000000 --- a/x11-plugins/wmgtemp/files/wmgtemp-1.0-list.patch +++ /dev/null @@ -1,127 +0,0 @@ -diff -Naur src/wmgeneral.orig/list.c src/wmgeneral/list.c ---- src/wmgeneral.orig/list.c 2016-01-04 13:10:41.091981064 +0100 -+++ src/wmgeneral/list.c 2016-01-04 13:10:56.428986326 +0100 -@@ -38,7 +38,7 @@ - - /* Return a cons cell produced from (head . tail) */ - --INLINE LinkedList* -+LinkedList* - list_cons(void* head, LinkedList* tail) - { - LinkedList* cell; -@@ -51,7 +51,7 @@ - - /* Return the length of a list, list_length(NULL) returns zero */ - --INLINE int -+int - list_length(LinkedList* list) - { - int i = 0; -@@ -66,7 +66,7 @@ - /* Return the Nth element of LIST, where N count from zero. If N - larger than the list length, NULL is returned */ - --INLINE void* -+void* - list_nth(int index, LinkedList* list) - { - while(index-- != 0) -@@ -81,7 +81,7 @@ - - /* Remove the element at the head by replacing it by its successor */ - --INLINE void -+void - list_remove_head(LinkedList** list) - { - if (!*list) return; -@@ -101,7 +101,7 @@ - - /* Remove the element with `car' set to ELEMENT */ - /* --INLINE void -+void - list_remove_elem(LinkedList** list, void* elem) - { - while (*list) -@@ -112,7 +112,7 @@ - } - }*/ - --INLINE LinkedList * -+LinkedList * - list_remove_elem(LinkedList* list, void* elem) - { - LinkedList *tmp; -@@ -132,7 +132,7 @@ - - /* Return element that has ELEM as car */ - --INLINE LinkedList* -+LinkedList* - list_find(LinkedList* list, void* elem) - { - while(list) -@@ -146,7 +146,7 @@ - - /* Free list (backwards recursive) */ - --INLINE void -+void - list_free(LinkedList* list) - { - if(list) -@@ -158,7 +158,7 @@ - - /* Map FUNCTION over all elements in LIST */ - --INLINE void -+void - list_mapcar(LinkedList* list, void(*function)(void*)) - { - while(list) -diff -Naur src/wmgeneral.orig/list.h src/wmgeneral/list.h ---- src/wmgeneral.orig/list.h 2016-01-04 13:10:41.091981064 +0100 -+++ src/wmgeneral/list.h 2016-01-04 13:10:42.883981679 +0100 -@@ -29,31 +29,25 @@ - #ifndef __LIST_H_ - #define __LIST_H_ - --#if defined(__GNUC__) && !defined(__STRICT_ANSI__) --# define INLINE inline --#else --# define INLINE --#endif -- - typedef struct LinkedList { - void *head; - struct LinkedList *tail; - } LinkedList; - --INLINE LinkedList* list_cons(void* head, LinkedList* tail); -+LinkedList* list_cons(void* head, LinkedList* tail); - --INLINE int list_length(LinkedList* list); -+int list_length(LinkedList* list); - --INLINE void* list_nth(int index, LinkedList* list); -+void* list_nth(int index, LinkedList* list); - --INLINE void list_remove_head(LinkedList** list); -+void list_remove_head(LinkedList** list); - --INLINE LinkedList *list_remove_elem(LinkedList* list, void* elem); -+LinkedList *list_remove_elem(LinkedList* list, void* elem); - --INLINE void list_mapcar(LinkedList* list, void(*function)(void*)); -+void list_mapcar(LinkedList* list, void(*function)(void*)); - --INLINE LinkedList*list_find(LinkedList* list, void* elem); -+LinkedList*list_find(LinkedList* list, void* elem); - --INLINE void list_free(LinkedList* list); -+void list_free(LinkedList* list); - - #endif diff --git a/x11-plugins/wmgtemp/wmgtemp-1.0-r1.ebuild b/x11-plugins/wmgtemp/wmgtemp-1.0-r1.ebuild deleted file mode 100644 index 0e7ce1d8bbf7..000000000000 --- a/x11-plugins/wmgtemp/wmgtemp-1.0-r1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils toolchain-funcs - -DESCRIPTION="CPU and SYS temperature dockapp" -HOMEPAGE="http://www.fluxcode.net" -SRC_URI="http://www.fluxcode.net/${P}.tar.bz2" - -LICENSE="Artistic" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="x11-libs/libX11 - x11-libs/libXext - x11-libs/libXpm" -DEPEND="${RDEPEND} - x11-proto/xextproto - =sys-apps/lm_sensors-3* - >=sys-apps/sed-4" - -src_prepare() { - epatch "${FILESDIR}"/${P}-list.patch - - sed -i -e "s:-Wall -g:\$(CFLAGS):" src/Makefile || die "sed failed." - - #Honour Gentoo LDFLAGS, rationalizing Makefile - see bug #337411. - sed -i -e "s:LDFLAGS =:LIBS =:" src/Makefile || die "sed failed." - sed -i -e "s:\$(LDFLAGS) -o \$(BINARY):\$(LDFLAGS) -o \$(BINARY) \$(LIBS):" src/Makefile || die "sed failed." -} - -src_compile() { - emake CC=$(tc-getCC) -} - -src_install() { - dodoc BUGS CREDITS README TODO - dobin src/wmgtemp - doman wmgtemp.1 -} -- cgit v1.2.3