From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- net-p2p/opendchub/files/0.7.14-overflow.patch | 12 +++++++++ net-p2p/opendchub/files/0.7.14-telnet.patch | 12 +++++++++ .../opendchub/files/opendchub-0.8.2-telnet.patch | 11 ++++++++ net-p2p/opendchub/files/opendchub-gentoo.patch | 30 ++++++++++++++++++++++ net-p2p/opendchub/files/opendchub_setup.sh | 20 +++++++++++++++ 5 files changed, 85 insertions(+) create mode 100644 net-p2p/opendchub/files/0.7.14-overflow.patch create mode 100644 net-p2p/opendchub/files/0.7.14-telnet.patch create mode 100644 net-p2p/opendchub/files/opendchub-0.8.2-telnet.patch create mode 100644 net-p2p/opendchub/files/opendchub-gentoo.patch create mode 100644 net-p2p/opendchub/files/opendchub_setup.sh (limited to 'net-p2p/opendchub/files') diff --git a/net-p2p/opendchub/files/0.7.14-overflow.patch b/net-p2p/opendchub/files/0.7.14-overflow.patch new file mode 100644 index 000000000000..996ff65fd0ae --- /dev/null +++ b/net-p2p/opendchub/files/0.7.14-overflow.patch @@ -0,0 +1,12 @@ +diff -Naur opendchub-0.7.14.vanilla/src/commands.c opendchub-0.7.14/src/commands.c +--- opendchub-0.7.14.vanilla/src/commands.c 2003-11-15 08:07:43.000000000 -0600 ++++ opendchub-0.7.14/src/commands.c 2004-11-27 09:54:57.113410240 -0600 +@@ -2842,7 +2842,7 @@ + { + char move_string[MAX_HOST_LEN+20]; + +- sprintf(move_string, "$ForceMove %s", buf); ++ snprintf(move_string, MAX_HOST_LEN, "$ForceMove %s", buf); + + send_to_humans(move_string, REGULAR | REGISTERED | OP, user); + remove_all(UNKEYED | NON_LOGGED | REGULAR | REGISTERED | OP, 1, 1); diff --git a/net-p2p/opendchub/files/0.7.14-telnet.patch b/net-p2p/opendchub/files/0.7.14-telnet.patch new file mode 100644 index 000000000000..f5254cbbbe11 --- /dev/null +++ b/net-p2p/opendchub/files/0.7.14-telnet.patch @@ -0,0 +1,12 @@ +diff -Naur opendchub-0.7.14.vanilla/src/main.c opendchub-0.7.14/src/main.c +--- opendchub-0.7.14.vanilla/src/main.c 2003-11-15 08:01:16.000000000 -0600 ++++ opendchub-0.7.14/src/main.c 2004-08-23 15:58:33.119710184 -0500 +@@ -1056,7 +1056,7 @@ + /* The chat command, starts with */ + else if(*temp == '<') + { +- if((user->type & (SCRIPT | UNKEYED | LINKED | NON_LOGGED)) == 0) ++ if((user->type & (SCRIPT | UNKEYED | LINKED | NON_LOGGED | NON_LOGGED_ADM)) == 0) + chat(temp, user); + } + diff --git a/net-p2p/opendchub/files/opendchub-0.8.2-telnet.patch b/net-p2p/opendchub/files/opendchub-0.8.2-telnet.patch new file mode 100644 index 000000000000..f81bf44cbc69 --- /dev/null +++ b/net-p2p/opendchub/files/opendchub-0.8.2-telnet.patch @@ -0,0 +1,11 @@ +--- opendchub-0.8.2/src/main.c.orig ++++ opendchub-0.8.2/src/main.c +@@ -1073,7 +1073,7 @@ + /* The chat command, starts with */ + else if(*temp == '<') + { +- if((user->type & (SCRIPT | UNKEYED | LINKED | NON_LOGGED)) == 0) ++ if((user->type & (SCRIPT | UNKEYED | LINKED | NON_LOGGED | NON_LOGGED_ADM)) == 0) + chat(temp, user); + } + diff --git a/net-p2p/opendchub/files/opendchub-gentoo.patch b/net-p2p/opendchub/files/opendchub-gentoo.patch new file mode 100644 index 000000000000..c6854e2178ca --- /dev/null +++ b/net-p2p/opendchub/files/opendchub-gentoo.patch @@ -0,0 +1,30 @@ +--- configure~ 2004-04-11 18:31:55.000000000 +0000 ++++ configure 2004-04-11 18:40:42.068793280 +0000 +@@ -4343,12 +4343,6 @@ + fi + fi + +-if test ! -d $HOME/.opendchub; then +- echo "creating config directory: $HOME/.opendchub" +- mkdir $HOME/.opendchub +- chmod 700 $HOME/.opendchub; +-fi +- + # Check whether --enable-perl or --disable-perl was given. + if test "${enable_perl+set}" = set; then + enableval="$enable_perl" +@@ -4406,14 +4400,6 @@ + + perl_libs=`perl -MExtUtils::Embed -e ldopts` + +- if test ! -d $HOME/.opendchub/scripts; then +- echo "creating script directory: $HOME/.opendchub/scripts" +- mkdir $HOME/.opendchub/scripts +- chmod 700 $HOME/.opendchub/scripts; +- for i in Samplescripts/*; do +- cp $i $HOME/.opendchub/scripts; +- done +- fi + fi + else + echo "Perl script support is disabled." diff --git a/net-p2p/opendchub/files/opendchub_setup.sh b/net-p2p/opendchub/files/opendchub_setup.sh new file mode 100644 index 000000000000..2944a02c395e --- /dev/null +++ b/net-p2p/opendchub/files/opendchub_setup.sh @@ -0,0 +1,20 @@ +#!/bin/bash +if test ! -d $HOME/.opendchub; then + echo "creating config directory: $HOME/.opendchub" + mkdir $HOME/.opendchub + chmod 700 $HOME/.opendchub +else + echo "$HOME/.opendchub already exists!" +fi +if test ! -d $HOME/.opendchub/scripts; then + echo "creating script directory: $HOME/.opendchub/scripts" + mkdir $HOME/.opendchub/scripts + chmod 700 $HOME/.opendchub/scripts; + echo "copying scripts..." + for i in /usr/share/opendchub/scripts/*; do + cp $i $HOME/.opendchub/scripts; + done +else + echo "$HOME/.opendchub/scripts already exists!" +fi +echo "done!" -- cgit v1.2.3-65-gdbad