diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2024-02-20 08:43:16 +0100 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2024-02-20 08:43:28 +0100 |
commit | de3621dc313da3ff551ae2d40720d4e462713ada (patch) | |
tree | abd09c46107806c0d9262f82c9c74a46e1bf11af /www-apps/webmcp/files | |
parent | dev-python/packaging: Stabilize 23.2-r1 ALLARCHES, #925044 (diff) | |
download | gentoo-de3621dc313da3ff551ae2d40720d4e462713ada.tar.gz gentoo-de3621dc313da3ff551ae2d40720d4e462713ada.tar.bz2 gentoo-de3621dc313da3ff551ae2d40720d4e462713ada.zip |
www-apps/webmcp: drop 1.2.6-r1, 2.1.0-r1
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'www-apps/webmcp/files')
-rw-r--r-- | www-apps/webmcp/files/webmcp-1.2.6-gentoo.patch | 143 | ||||
-rw-r--r-- | www-apps/webmcp/files/webmcp-2.1.0-c99.patch | 20 | ||||
-rw-r--r-- | www-apps/webmcp/files/webmcp-2.1.0-gentoo.patch | 73 |
3 files changed, 0 insertions, 236 deletions
diff --git a/www-apps/webmcp/files/webmcp-1.2.6-gentoo.patch b/www-apps/webmcp/files/webmcp-1.2.6-gentoo.patch deleted file mode 100644 index 3b399fe96ad9..000000000000 --- a/www-apps/webmcp/files/webmcp-1.2.6-gentoo.patch +++ /dev/null @@ -1,143 +0,0 @@ ---- a/Makefile 2013-03-12 21:49:03.976676966 +0100 -+++ b/Makefile 2013-03-12 21:50:02.888103540 +0100 -@@ -1,11 +1,11 @@ - include Makefile.options - - all:: -- make documentation -- make accelerator -- make libraries -- make symlinks -- make precompile -+ $(MAKE) documentation -+ $(MAKE) accelerator -+ $(MAKE) libraries -+ $(MAKE) symlinks -+ $(MAKE) precompile - - documentation:: - rm -f doc/autodoc.tmp -@@ -14,12 +14,12 @@ - rm -f doc/autodoc.tmp - - accelerator:: -- cd framework/accelerator; make -+ $(MAKE) -C framework/accelerator - - libraries:: -- cd libraries/extos; make -- cd libraries/mondelefant; make -- cd libraries/multirand; make -+ $(MAKE) -C libraries/extos -+ $(MAKE) -C libraries/mondelefant -+ $(MAKE) -C libraries/multirand - - symlinks:: - ln -s -f ../../libraries/atom/atom.lua framework/lib/ ---- a/Makefile.options 2015-05-26 21:43:41.354197822 +0200 -+++ b/Makefile.options 2015-05-26 22:01:34.594735786 +0200 -@@ -14,13 +14,13 @@ - # C compiler flags - # TODO: check alternatives to -D_GNU_SOURCE -fPIC - # using libtool? --CFLAGS = -O2 -D_GNU_SOURCE -fPIC -Wall -I /usr/include -I /usr/local/include -I /usr/local/include/lua52 -+CPPFLAGS = -D_GNU_SOURCE - - # additional C compiler flags for parts which depend on PostgreSQL --CFLAGS_PGSQL = -I /usr/local/include/postgresql -I /usr/local/include/postgresql/server -+CFLAGS_PGSQL = -I /usr/include/postgresql -I /usr/include/postgresql/server - - # linker flags --LDFLAGS = -shared -L /usr/lib -L /usr/local/lib -+LDFLAGS = -shared $(MYLDFLAGS) - - # additional linker flags for parts which depend on PostgreSQL --LDFLAGS_PGSQL = -L /usr/local/lib/postgresql -rpath /usr/local/lib/postgresql -+LDFLAGS_PGSQL = ---- a/libraries/extos/Makefile 2013-03-13 21:49:19.710360750 +0100 -+++ b/libraries/extos/Makefile 2013-03-13 21:49:47.778096460 +0100 -@@ -1,7 +1,7 @@ - include ../../Makefile.options - - extos.so: extos.o -- $(LD) $(LDFLAGS) -lrt -lcrypt -o extos.$(SLIB_EXT) extos.o -+ $(LD) $(LDFLAGS) -o extos.$(SLIB_EXT) extos.o -lrt -lcrypt -llua - - extos.o: extos.c - $(CC) -c $(CFLAGS) -o extos.o extos.c ---- a/libraries/mondelefant/Makefile 2013-03-13 21:52:54.884250479 +0100 -+++ b/libraries/mondelefant/Makefile 2013-03-13 21:53:27.511932686 +0100 -@@ -1,7 +1,7 @@ - include ../../Makefile.options - - mondelefant_native.so: mondelefant_native.o -- $(LD) $(LDFLAGS) $(LDFLAGS_PGSQL) -o mondelefant_native.$(SLIB_EXT) mondelefant_native.o -lpq -+ $(LD) $(LDFLAGS) $(LDFLAGS_PGSQL) -o mondelefant_native.$(SLIB_EXT) mondelefant_native.o -lpq -llua - - mondelefant_native.o: mondelefant_native.c - $(CC) -c $(CFLAGS) $(CFLAGS_PGSQL) -o mondelefant_native.o mondelefant_native.c ---- a/libraries/multirand/Makefile 2013-03-13 21:54:29.399328173 +0100 -+++ b/libraries/multirand/Makefile 2013-03-13 21:54:58.019048434 +0100 -@@ -1,7 +1,7 @@ - include ../../Makefile.options - - multirand.so: multirand.o -- $(LD) $(LDFLAGS) -o multirand.$(SLIB_EXT) multirand.o -+ $(LD) $(LDFLAGS) -o multirand.$(SLIB_EXT) multirand.o -llua - - multirand.o: multirand.c - $(CC) -c $(CFLAGS) -o multirand.o multirand.c ---- a/libraries/extos/extos.c 2013-04-05 23:19:52.028115226 +0200 -+++ b/libraries/extos/extos.c 2013-04-05 23:20:14.819896253 +0200 -@@ -12,6 +12,7 @@ - #include <fcntl.h> - #include <poll.h> - #include <stdlib.h> -+#include <crypt.h> - - #define EXTOS_MAX_ERRLEN 80 - #define EXTOS_EXEC_MAX_ARGS 64 ---- a/framework/accelerator/Makefile 2014-06-21 20:15:21.019918183 +0200 -+++ b/framework/accelerator/Makefile 2014-06-21 20:15:44.700471794 +0200 -@@ -4,7 +4,7 @@ - $(LD) $(LDFLAGS) -o webmcp_accelerator.$(SLIB_EXT) webmcp_accelerator.o - - webmcp_accelerator.o: webmcp_accelerator.c -- $(CC) -c $(CFLAGS) -o webmcp_accelerator.o webmcp_accelerator.c -+ $(CC) -c $(CFLAGS) $(CPPFLAGS) -fPIC -o webmcp_accelerator.o webmcp_accelerator.c - - clean:: - rm -f webmcp_accelerator.so webmcp_accelerator.o ---- a/libraries/extos/Makefile 2014-06-21 20:18:25.594611956 +0200 -+++ b/libraries/extos/Makefile 2014-06-21 20:18:50.457183029 +0200 -@@ -4,7 +4,7 @@ - $(LD) $(LDFLAGS) -o extos.$(SLIB_EXT) extos.o -lrt -lcrypt -llua - - extos.o: extos.c -- $(CC) -c $(CFLAGS) -o extos.o extos.c -+ $(CC) -c $(CFLAGS) $(CPPFLAGS) -fPIC -o extos.o extos.c - - clean:: - rm -f extos.so extos.o ---- a/libraries/mondelefant/Makefile 2014-06-21 20:19:58.218962359 +0200 -+++ b/libraries/mondelefant/Makefile 2014-06-21 20:20:24.527476578 +0200 -@@ -4,7 +4,7 @@ - $(LD) $(LDFLAGS) $(LDFLAGS_PGSQL) -o mondelefant_native.$(SLIB_EXT) mondelefant_native.o -lpq -llua - - mondelefant_native.o: mondelefant_native.c -- $(CC) -c $(CFLAGS) $(CFLAGS_PGSQL) -o mondelefant_native.o mondelefant_native.c -+ $(CC) -c $(CFLAGS) $(CPPFLAGS) -fPIC $(CFLAGS_PGSQL) -o mondelefant_native.o mondelefant_native.c - - test:: mondelefant_native.so mondelefant.lua - lua -l mondelefant ---- a/libraries/multirand/Makefile 2014-06-21 20:21:36.950197127 +0200 -+++ b/libraries/multirand/Makefile 2014-06-21 20:22:04.967703944 +0200 -@@ -4,7 +4,7 @@ - $(LD) $(LDFLAGS) -o multirand.$(SLIB_EXT) multirand.o -llua - - multirand.o: multirand.c -- $(CC) -c $(CFLAGS) -o multirand.o multirand.c -+ $(CC) -c $(CFLAGS) $(CPPFLAGS) -fPIC -o multirand.o multirand.c - - clean:: - rm -f multirand.so multirand.o diff --git a/www-apps/webmcp/files/webmcp-2.1.0-c99.patch b/www-apps/webmcp/files/webmcp-2.1.0-c99.patch deleted file mode 100644 index ac27ebb43295..000000000000 --- a/www-apps/webmcp/files/webmcp-2.1.0-c99.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/libraries/extos/extos.c 2023-12-15 10:12:53.396506457 +0100 -+++ b/libraries/extos/extos.c 2023-12-15 14:32:20.464092779 +0100 -@@ -262,7 +262,7 @@ - if (result != 1) goto extos_pfilter_error_fd_remapping; - do result = dup(pipe_err[1]); while (result < 0 && errno == EINTR); - if (result != 2) goto extos_pfilter_error_fd_remapping; -- execvp(filename, args); -+ execvp(filename, (char * const*)args); - status_buf[0] = errno; - do result = write(pipe_status[1], status_buf, 1); while (result < 0 && errno == EINTR); - _exit(0); -@@ -287,7 +287,7 @@ - lua_settop(L, 0); - lua_newtable(L); // 1 - while (1) { -- readdir_r(dir, &entry_buffer, &entry); -+ entry = readdir(dir); - if (!entry) break; - // Linux doesn't have d_namlen - //lua_pushlstring(L, entry->d_name, entry->d_namlen); diff --git a/www-apps/webmcp/files/webmcp-2.1.0-gentoo.patch b/www-apps/webmcp/files/webmcp-2.1.0-gentoo.patch deleted file mode 100644 index 90bf0992a608..000000000000 --- a/www-apps/webmcp/files/webmcp-2.1.0-gentoo.patch +++ /dev/null @@ -1,73 +0,0 @@ ---- a/Makefile 2021-04-17 13:46:36.321270501 +0200 -+++ b/Makefile 2021-04-17 13:47:26.019424556 +0200 -@@ -2,10 +2,10 @@ - - all:: -- make documentation -- make accelerator -- make libraries -- make symlinks -- make precompile -+ $(MAKE) documentation -+ $(MAKE) accelerator -+ $(MAKE) libraries -+ $(MAKE) symlinks -+ $(MAKE) precompile - - documentation:: - rm -f doc/autodoc.tmp ---- a/libraries/extos/Makefile 2013-03-13 21:49:19.710360750 +0100 -+++ b/libraries/extos/Makefile 2013-03-13 21:49:47.778096460 +0100 -@@ -1,7 +1,7 @@ - include ../../Makefile.options - - extos.so: extos.o -- $(LD) $(LDFLAGS) -lrt -lcrypt -o extos.$(SLIB_EXT) extos.o -+ $(LD) $(LDFLAGS) -o extos.$(SLIB_EXT) extos.o -lrt -lcrypt $(LUALIBS) - - extos.o: extos.c - $(CC) -c $(CFLAGS) -o extos.o extos.c ---- a/libraries/json/Makefile 2021-04-17 16:57:48.351876836 +0200 -+++ b/libraries/json/Makefile 2021-04-17 16:58:27.806190853 +0200 -@@ -1,7 +1,7 @@ - include ../../Makefile.options - - json.so: json.o -- $(LD) $(LDFLAGS) -o json.$(SLIB_EXT) json.o -+ $(LD) $(LDFLAGS) -o json.$(SLIB_EXT) json.o $(LUALIBS) - - json.o: json.c - $(CC) -c $(CFLAGS) -o json.o json.c ---- a/libraries/mondelefant/Makefile 2013-03-13 21:52:54.884250479 +0100 -+++ b/libraries/mondelefant/Makefile 2013-03-13 21:53:27.511932686 +0100 -@@ -1,7 +1,7 @@ - include ../../Makefile.options - - mondelefant_native.so: mondelefant_native.o -- $(LD) $(LDFLAGS) $(LDFLAGS_PGSQL) -o mondelefant_native.$(SLIB_EXT) mondelefant_native.o -lpq -+ $(LD) $(LDFLAGS) $(LDFLAGS_PGSQL) -o mondelefant_native.$(SLIB_EXT) mondelefant_native.o -lpq $(LUALIBS) - - mondelefant_native.o: mondelefant_native.c - $(CC) -c $(CFLAGS) $(CFLAGS_PGSQL) -o mondelefant_native.o mondelefant_native.c ---- a/libraries/multirand/Makefile 2013-03-13 21:54:29.399328173 +0100 -+++ b/libraries/multirand/Makefile 2013-03-13 21:54:58.019048434 +0100 -@@ -1,7 +1,7 @@ - include ../../Makefile.options - - multirand.so: multirand.o -- $(LD) $(LDFLAGS) -o multirand.$(SLIB_EXT) multirand.o -+ $(LD) $(LDFLAGS) -o multirand.$(SLIB_EXT) multirand.o $(LUALIBS) - - multirand.o: multirand.c - $(CC) -c $(CFLAGS) -o multirand.o multirand.c ---- a/framework/accelerator/Makefile 2021-04-17 18:36:56.402722612 +0200 -+++ b/framework/accelerator/Makefile 2021-04-17 18:37:08.605513867 +0200 -@@ -1,7 +1,7 @@ - include ../../Makefile.options - - webmcp_accelerator.so: webmcp_accelerator.o -- $(LD) $(LDFLAGS) -o webmcp_accelerator.$(SLIB_EXT) webmcp_accelerator.o -+ $(LD) $(LDFLAGS) -o webmcp_accelerator.$(SLIB_EXT) webmcp_accelerator.o $(LUALIBS) - - webmcp_accelerator.o: webmcp_accelerator.c - $(CC) -c $(CFLAGS) -o webmcp_accelerator.o webmcp_accelerator.c |