till pushed to dircproxy (el5). "2015-04-13: Retired orphaned package, because it was orphaned for more than six weeks. (..more)"

notifications at fedoraproject.org notifications at fedoraproject.org
Mon Apr 13 15:51:45 UTC 2015


>From 9287fe628231fb12b957db0aa1cec8970134e6db Mon Sep 17 00:00:00 2001
From: Till Maas <opensource at till.name>
Date: Mon, 13 Apr 2015 17:51:37 +0200
Subject: 2015-04-13: Retired orphaned package, because it was orphaned for
 more than six weeks. Reference: https://fedorahosted.org/epel/ticket/7


diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 7582288..0000000
--- a/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-dircproxy-1.2.0-beta2.tar.bz
diff --git a/README.ssl b/README.ssl
deleted file mode 100644
index 2c8e9d9..0000000
--- a/README.ssl
+++ /dev/null
@@ -1,91 +0,0 @@
- --------------------------
-[ Using SSL with dircproxy ]
- --------------------------
-
-* DISCLAIMER :
-*
-* THIS IS AN UNSTABLE DEVELOPMENT RELEASE OF DIRCPROXY.  IT HAS HIGHER
-* THAN USUAL RISK OF DESTROYING YOUR SYSTEM OR LOSING YOUR DATA OR
-* CORRUPTING YOUR BOX.
-*
-* DO NOT USE IT IF YOU DO NOT ACCEPT THE RISKS
-*
-* RESPONSABILITY OF DIRCPROXY STAFF COULD NOT BE ENGAGED IN ANY CASE
-
-
-What has changed in this branch
-===============================
-
-This branch adds SSL support for both client-side and server-side.
-Both features may be used independently.
-
-  o Client-side : dircproxy connects to SSL-enabled servers, allowing
-    you to identify the IRC server you are connecting to, eventually
-    identifying yourself to the server  and securing communications with
-    a crypted socket.
-  o Server-side : dircproxy offers SSL services, allowing you to identify
-    the dircproxy server you are connecting to, eventually identifying
-    yourself to the server and securing communications with a crypted socket.
-
-These changes are useful for people worried about their talk privacy.
-
-What has been done
-==================
-
-- Client-side :
-  o Connecting to any SSL-enabled server, using the "server_ssl" var in
-  config-file
-  
-- Server-side :
-  o Presenting the certificate to any client and allow any client to connect
-
-What needs to be done
-=====================
-
-[P] = Priority   [E] = Enhancement
-
-- Client-side :
-  o [E] Checking the certificate validity (date, server name, fingerprint)
-  o [E] Allow users to manually validate certificate
-  o [E] Allow dircproxy to present a certificate to identify user on server
-  
-- Server-side :
-  o [P] dircproxy hangs when SSL is enabled and client connects without
-        SSL (due to "while(SSL_accept(p->cliSSL.ssl) != 1);" in irc_net.c on
-        line 235, need to find a smarter way to handle this)
-  o [E] Allow user to present a certificate to identify user on server
-  
-How to use dircproxy-SSL
-========================
-
-- Client-side : Add 'server_ssl yes' (without quotes) to your config file
-  and dircproxy will connect to server using a SSL socket
-  
-- Server-side : Add 'pk_file "/path/to/privkey.pem"' and 
-  'cert_file "/path/to/cacert.pem"' (both without simple quotes) and
-  dircproxy will present the certificate to connecting users.
-
-To generate a test certificate with OpenSSL (http://www.openssl.org/),
-generate a private key with "openssl genrsa -out privkey.pem 2048" then
-generate a self-signed certificate 
-"openssl req -new -x509 -key privkey.pem -out cacert.pem -days 1095"
-
-* BEWARE NOT TO USE SELF-SIGNED CERTIFICATE IN PRODUCTION ENVIRONMENT *
-
-  
-More Information
-================
-
-The dircproxy home page is at:
-  http://dircproxy.securiweb.net/
-
-Please submit bug reports at:
-  http://dircproxy.securiweb.net/newticket
-
-Also join us on the #dircproxy IRC channel on irc.openprojects.net.
-
-dircproxy is distributed according to the GNU General Public License.
-See the file COPYING for details.
-
-Copyright (C) 2000,2001,2002,2003 Scott James Remnant <scott at netsplit.com>.
-Copyright (C) 2004 Francois Harvey and Mike Taylor.  
\ No newline at end of file
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..b634127
--- /dev/null
+++ b/dead.package
@@ -0,0 +1,3 @@
+2015-04-13: Retired orphaned package, because it was orphaned for more than six weeks.
+Reference: https://fedorahosted.org/epel/ticket/7
+
diff --git a/dircproxy-1.2.0-blank-me-segfault.patch b/dircproxy-1.2.0-blank-me-segfault.patch
deleted file mode 100644
index 110edc3..0000000
--- a/dircproxy-1.2.0-blank-me-segfault.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -urN dircproxy-1.2.0-beta2.orig/src/irc_server.c dircproxy-1.2.0-beta2/src/irc_server.c
---- dircproxy-1.2.0-beta2.orig/src/irc_server.c	2006-10-07 17:07:08.000000000 -0400
-+++ dircproxy-1.2.0-beta2/src/irc_server.c	2007-10-04 17:45:57.000000000 -0400
-@@ -1155,7 +1155,7 @@
-       
-         if (!strcmp(cmsg.cmd, "ACTION")) {
-           irclog_log(p, IRC_LOG_ACTION, logdest, msg.src.orig,
--                     "%s", cmsg.paramstarts[0]);
-+                     "%s", (cmsg.paramstarts != NULL) ?  cmsg.paramstarts[0]: "none");
- 
-         } else if (!strcmp(cmsg.cmd, "DCC")
-                    && p->conn_class->dcc_proxy_incoming) {
diff --git a/dircproxy.init b/dircproxy.init
deleted file mode 100644
index 35178db..0000000
--- a/dircproxy.init
+++ /dev/null
@@ -1,71 +0,0 @@
-#!/bin/sh
-#
-# chkconfig: - 92 5
-# description: dircproxy is an IRC proxy server
-#
-
-DIRCPROXY=/usr/bin/dircproxy
-
-# Source function library.
-. /etc/init.d/functions
-
-# Source networking configuration.
-. /etc/sysconfig/network
-
-# Check that networking is up.
-[ ${NETWORKING} = "no" ] && exit 0
-
-# Default params, override in /etc/sysconfig/dircproxy
-RUN_AS="dircproxy"
-CONFIG="/etc/dircproxyrc"
-
-if [ -f /etc/sysconfig/dircproxy ]; then
-  . /etc/sysconfig/dircproxy
-fi
-
-RETVAL="0"
-
-[ -x "$DIRCPROXY" ] || exit 0
-
-# See how we were called.
-case "$1" in
-  start)
-	echo -n "Starting dircproxy: "
-	su $RUN_AS -c ". /etc/init.d/functions && daemon $DIRCPROXY -f $CONFIG"
-	RETVAL=$?
-	echo
-	[ $RETVAL -eq 0 ] && touch /var/lock/subsys/dircproxy
-	;;
-  stop)
-	echo -n "Stopping dircproxy: "
-	killproc dircproxy
-	RETVAL=$?
-	echo
-	[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/dircproxy
-	;;
-  status)
-	status dircproxy
-	RETVAL=$?
-	;;
-  restart)
-	$0 status >/dev/null && $0 stop
-	$0 start
-	RETVAL=$?
-	;;
-  condrestart)
-	[ -f "/var/lock/subsys/dircproxy" ] && $0 restart || :
-	RETVAL=$?
-	echo
-	;;
-  reload)
-	echo -n "Reloading dircproxy: "
-	killproc dircproxy -HUP
-	RETVAL=$?
-	echo
-	;;
-  *)
-	echo "Usage: $0 {start|stop|status|restart|reload}"
-	exit 1
-esac
-
-exit $RETVAL
diff --git a/dircproxy.spec b/dircproxy.spec
deleted file mode 100644
index 76bb19c..0000000
--- a/dircproxy.spec
+++ /dev/null
@@ -1,100 +0,0 @@
-Name:           dircproxy
-Version:        1.2.0
-%define betaver beta2
-Release:        0.6%{betaver}%{?dist}.1
-Summary:        IRC proxy server
-
-Group:          Applications/Internet
-License:        GPL
-URL:            http://dircproxy.securiweb.net/
-Source0:        http://dircproxy.securiweb.net/pub/1.2/%{name}-%{version}-%{betaver}.tar.bz
-Source1:        dircproxy.init
-Source2:        dircproxy.sysconfig
-Patch0:         dircproxy-1.2.0-blank-me-segfault.patch
-BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-
-BuildRequires:  openssl-devel
-
-%description
-dircproxy is an IRC proxy server ("bouncer") designed for people
-who use IRC from lots of different workstations or clients, but
-wish to remain connected and see what they missed while they
-were away. You connect to IRC through dircproxy, and it keeps
-you connected to the server, even after you detach your client
-from it. While you're detached, it logs channel and private
-messages as well as important events, and when you reattach
-it'll let you know what you missed.
-
-%prep
-%setup -q -n %{name}-%{version}-%{betaver}
-%patch0 -p1
-
-%build
-%configure --enable-ssl
-make %{?_smp_mflags}
-
-%install
-rm -rf $RPM_BUILD_ROOT
-make DESTDIR=$RPM_BUILD_ROOT install
-mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/init.d/
-mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/
-mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/%{name}
-install -m 0644 conf/dircproxyrc.sample $RPM_BUILD_ROOT%{_sysconfdir}/dircproxyrc
-install -m 0755 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/init.d/dircproxy
-install -m 0644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/dircproxy
-chmod +x $RPM_BUILD_ROOT%{_datadir}/dircproxy/*.{sh,pl}
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-%pre
-# Add the "dircproxy" user
-/usr/sbin/useradd -c "Detatchable IRC Proxy" \
-  -s /bin/sh -r -d %{_localstatedir}/lib/%{name} dircproxy 2> /dev/null || :
-
-%post
-/sbin/chkconfig --add dircproxy
-
-%preun
-if [ "$1" = 0 ]; then
-  /sbin/service dircproxy stop >/dev/null 2>&1 || :
-  /sbin/chkconfig --del dircproxy
-fi
-
-%postun
-if [ "$1" -ge 1 ]; then
-  /sbin/service dircproxy condrestart >/dev/null 2>&1 || :
-fi
-
-%files
-%defattr(-,root,root,-)
-%doc AUTHORS ChangeLog COPYING FAQ NEWS README*
-%doc doc/PROTOCOL doc/RFC* doc/*SPEC
-%config(noreplace) %{_sysconfdir}/dircproxyrc
-%config(noreplace) %{_sysconfdir}/sysconfig/dircproxy
-%dir %{_localstatedir}/lib/%{name}
-%{_sysconfdir}/init.d/dircproxy
-%{_mandir}/man?/*
-%{_bindir}/*
-%{_datadir}/dircproxy/
-
-%changelog
-* Thu Oct 04 2007 Warren Togami <wtogami at redhat.com> - 1.2.0-0.6.beta2
-- Fix segfault on blank /me
-
-* Tue Oct 10 2006 Jarod Wilson <jwilson at redhat.com> - 1.2.0-0.5.beta2
-- Update to 1.2.0-beta2
-
-* Thu Sep 14 2006 Jarod Wilson <jwilson at redhat.com> - 1.2.0-0.4.beta
-- Correct perms on sysconfig file
-
-* Tue Sep 05 2006 Jarod Wilson <jwilson at redhat.com> - 1.2.0-0.3.beta
-- Fix up versioning
-- Clean up spec
-- Run as non-root
-
-* Wed Aug 02 2006 Jarod Wilson <jwilson at redhat.com> - 1.2.0-0.2.beta
-- Turn on ssl support, add README.ssl
-
-* Wed Jul 05 2006 Jarod Wilson <jwilson at redhat.com> - 1.2.0-0.1.beta
-- Initial Fedora Extras build
diff --git a/dircproxy.sysconfig b/dircproxy.sysconfig
deleted file mode 100644
index b89c49e..0000000
--- a/dircproxy.sysconfig
+++ /dev/null
@@ -1,3 +0,0 @@
-# command line options for dircproxy
-RUN_AS="dircproxy"
-CONFIG="/etc/dircproxyrc"
diff --git a/sources b/sources
deleted file mode 100644
index fb7191a..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-850443437f709276ff21a173bbf98456  dircproxy-1.2.0-beta2.tar.bz
-- 
cgit v0.10.2


	http://pkgs.fedoraproject.org/cgit/dircproxy.git/commit/?h=el5&id=9287fe628231fb12b957db0aa1cec8970134e6db


More information about the scm-commits mailing list