summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2018-03-03 18:10:33 +0100
committerThomas Deutschmann <whissi@gentoo.org>2018-03-03 18:10:33 +0100
commit078f330fe5a44d365eccd9da4d83b90378921da7 (patch)
treebbd4718a2ac1429d964ef1323d8d652552e5e5bf /net-im/mu-conference/files
parentapp-admin/collectd: Security cleanup (diff)
downloadgentoo-078f330fe5a44d365eccd9da4d83b90378921da7.tar.gz
gentoo-078f330fe5a44d365eccd9da4d83b90378921da7.tar.bz2
gentoo-078f330fe5a44d365eccd9da4d83b90378921da7.zip
net-im/mu-conference: Removed from repository
Bug: https://bugs.gentoo.org/629416
Diffstat (limited to 'net-im/mu-conference/files')
-rw-r--r--net-im/mu-conference/files/mu-conference-0.7.init25
-rw-r--r--net-im/mu-conference/files/mu-conference-0.8.81-sha1_64bit.patch31
2 files changed, 0 insertions, 56 deletions
diff --git a/net-im/mu-conference/files/mu-conference-0.7.init b/net-im/mu-conference/files/mu-conference-0.7.init
deleted file mode 100644
index a41c470cc815..000000000000
--- a/net-im/mu-conference/files/mu-conference-0.7.init
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/sbin/openrc-run
-
-depend() {
- need net
- use jabber-server
-}
-
-start() {
- ebegin "Starting MUC Jabber Transport"
- start-stop-daemon \
- --background \
- --start \
- --user jabber:jabber \
- --exec /usr/bin/mu-conference \
- -- -c /etc/jabber/mu-conference.xml
- eend $?
-}
-
-stop() {
- ebegin "Stoping MUC Jabber Transport"
- start-stop-daemon \
- --stop \
- --pidfile /var/run/jabber/mu-conference.pid
- eend $?
-}
diff --git a/net-im/mu-conference/files/mu-conference-0.8.81-sha1_64bit.patch b/net-im/mu-conference/files/mu-conference-0.8.81-sha1_64bit.patch
deleted file mode 100644
index 2764daa10544..000000000000
--- a/net-im/mu-conference/files/mu-conference-0.8.81-sha1_64bit.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- mu-conference-0.8.81/include/lib.h
-+++ mu-conference-0.8.81/include/lib.h
-@@ -114,13 +114,6 @@
- /* SHA calculations */
- /* */
- /* --------------------------------------------------------- */
--#if (SIZEOF_INT == 4)
--typedef unsigned int uint32;
--#elif (SIZEOF_SHORT == 4)
--typedef unsigned short uint32;
--#else
--typedef unsigned int uint32;
--#endif /* HAVEUINT32 */
-
- char *shahash(char *str); /* NOT THREAD SAFE */
- void shahash_r(const char* str, char hashbuf[40]); /* USE ME */
-@@ -301,10 +294,10 @@
-
-
- typedef struct {
-- uint32_t H[5];
-- uint32_t W[80];
-+ guint32 H[5];
-+ guint32 W[80];
- int lenW;
-- uint32_t sizeHi,sizeLo;
-+ guint32 sizeHi,sizeLo;
- } j_SHA_CTX;
-
-
-