From 170f1a4eb705f73ecf7471d348c2e34ff4ca8c17 Mon Sep 17 00:00:00 2001 From: Michael Olbrich Date: Fri, 22 Jul 2016 19:48:46 +0200 Subject: sitecopy: remove old package It was in staging for a year and nobody cared. Signed-off-by: Michael Olbrich --- patches/sitecopy-0.16.6/series | 1 - patches/sitecopy-0.16.6/sitecopy-neon-openssl.diff | 36 ------- rules/sitecopy.in | 62 ------------ rules/sitecopy.make | 108 --------------------- 4 files changed, 207 deletions(-) delete mode 100644 patches/sitecopy-0.16.6/series delete mode 100644 patches/sitecopy-0.16.6/sitecopy-neon-openssl.diff delete mode 100644 rules/sitecopy.in delete mode 100644 rules/sitecopy.make diff --git a/patches/sitecopy-0.16.6/series b/patches/sitecopy-0.16.6/series deleted file mode 100644 index c295b758f..000000000 --- a/patches/sitecopy-0.16.6/series +++ /dev/null @@ -1 +0,0 @@ -sitecopy-neon-openssl.diff diff --git a/patches/sitecopy-0.16.6/sitecopy-neon-openssl.diff b/patches/sitecopy-0.16.6/sitecopy-neon-openssl.diff deleted file mode 100644 index b4f9b49ab..000000000 --- a/patches/sitecopy-0.16.6/sitecopy-neon-openssl.diff +++ /dev/null @@ -1,36 +0,0 @@ -From: Bernhard Walle -Subject: Fix build with OpenSSL 1.x - -See http://lists.manyfish.co.uk/pipermail/neon-commits/2009-September/000827.html. - -Signed-off-by: Bernhard Walle ---- - lib/neon/ne_openssl.c | 10 ++++++++++ - 1 file changed, 10 insertions(+) - ---- a/lib/neon/ne_openssl.c -+++ b/lib/neon/ne_openssl.c -@@ -36,6 +36,7 @@ - #include - #include - #include -+#include - - #ifdef NE_HAVE_TS_SSL - #include /* for abort() */ -@@ -615,6 +616,15 @@ void ne_ssl_context_destroy(ne_ssl_conte - ne_free(ctx); - } - -+/* OpenSSL 1.0 removed SSL_SESSION_cmp for no apparent reason - hoping -+ * it is reasonable to assume that comparing the session IDs is -+ * sufficient. */ -+static int SSL_SESSION_cmp(SSL_SESSION *a, SSL_SESSION *b) -+{ -+ return a->session_id_length == b->session_id_length -+ && memcmp(a->session_id, b->session_id, a->session_id_length) == 0; -+} -+ - /* For internal use only. */ - int ne__negotiate_ssl(ne_session *sess) - { diff --git a/rules/sitecopy.in b/rules/sitecopy.in deleted file mode 100644 index 791d168f8..000000000 --- a/rules/sitecopy.in +++ /dev/null @@ -1,62 +0,0 @@ -## SECTION=staging -## old section: -### SECTION=networking - -menuconfig SITECOPY - tristate - prompt "sitecopy " - select EXPAT if SITECOPY_XML_EXPAT - select LIBXML2 if SITECOPY_XML_LIBXML2 - select OPENSSL if SITECOPY_OPENSSL - help - Synchronize local and remote web site via FTP or WebDAV - - STAGING: remove in ptxdist-2016.08.0 - Archives are gone and no reliable new URL found. - -if SITECOPY - -config SITECOPY_FTP - bool - prompt "FTP support enabled" - help - Build with FTP support. No additional dependencies. - -config SITECOPY_RSH - bool - prompt "rsh/rcp support enabled" - help - Build with rsh/rcp support. No additional dependencies. - -config SITECOPY_SFTP - bool - prompt "sftp/scp support enabled" - help - Build with sftp/scp support. No additional dependencies. - -config SITECOPY_WEBDAV - bool - prompt "WebDAV support enabled" - help - Build with WebDAV support. No additional dependencies. - -config SITECOPY_OPENSSL - bool - prompt "SSL support with OpenSSL" - help - Build with SSL support. Required OpenSSL to be built. - -choice - prompt "xml library " - default SITECOPY_XML_EXPAT - - config SITECOPY_XML_EXPAT - bool - prompt "expat " - - config SITECOPY_XML_LIBXML2 - bool - prompt "libxml2" -endchoice - -endif diff --git a/rules/sitecopy.make b/rules/sitecopy.make deleted file mode 100644 index 4434fe991..000000000 --- a/rules/sitecopy.make +++ /dev/null @@ -1,108 +0,0 @@ -# -*-makefile-*- -# -# Copyright (C) 2011 by Bernhard Walle -# -# See CREDITS for details about who has contributed to this project. -# -# For further information about the PTXdist project and license conditions -# see the README file. -# - -# -# We provide this package -# -PACKAGES-$(PTXCONF_SITECOPY) += sitecopy - -# -# Paths and names -# -SITECOPY_VERSION := 0.16.6 -SITECOPY_MD5 := b3aeb5a5f00af3db90b408e8c32a6c01 -SITECOPY := sitecopy-$(SITECOPY_VERSION) -SITECOPY_SUFFIX := tar.gz -SITECOPY_URL := http://www.manyfish.co.uk/sitecopy/$(SITECOPY).$(SITECOPY_SUFFIX) -SITECOPY_SOURCE := $(SRCDIR)/$(SITECOPY).$(SITECOPY_SUFFIX) -SITECOPY_DIR := $(BUILDDIR)/$(SITECOPY) -SITECOPY_LICENSE := unknown - -# ---------------------------------------------------------------------------- -# Prepare -# ---------------------------------------------------------------------------- - -# -# autoconf -# -SITECOPY_AUTOCONF := $(CROSS_AUTOCONF_USR) \ - --disable-gnomefe \ - --enable-threadsafe-ssl=posix \ - --disable-nls \ - --enable-threads=posix \ - --disable-rpath \ - --without-pakchois \ - --without-socks \ - --without-gssapi - -# m4/neon/neon.m4 uses uname to check for Darwin and adds some special compiler -# options in that case. sitecopy doesn't build host tools, so anything built -# is for the target. We can force the target operating system to Linux. That's simpler -# than fixing the m4/neon/neon.m4 and doesn't need autoreconf to run. -SITECOPY_CONF_ENV := \ - $(CROSS_ENV) \ - ne_cv_os_uname=Linux - -ifdef PTXCONF_SITECOPY_SFTP -SITECOPY_AUTOCONF += --enable-sftp -else -SITECOPY_AUTOCONF += --disable-sftp -endif - -ifdef PTXCONF_SITECOPY_RSH -SITECOPY_AUTOCONF += --enable-rsh -else -SITECOPY_AUTOCONF += --disable-rsh -endif - -ifdef PTXCONF_SITECOPY_FTP -SITECOPY_AUTOCONF += --enable-ftp -else -SITECOPY_AUTOCONF += --disable-ftp -endif - -ifdef PTXCONF_SITECOPY_WEBDAV -SITECOPY_AUTOCONF += --enable-webdav -else -SITECOPY_AUTOCONF += --disable-webdav -endif - -ifdef PTXCONF_SITECOPY_XML_EXPAT -SITECOPY_AUTOCONF += --with-expat -endif - -ifdef PTXCONF_SITECOPY_XML_LIBXML2 -SITECOPY_AUTOCONF += --with-libxml2 -endif - -ifdef PTXCONF_SITECOPY_OPENSSL -SITECOPY_AUTOCONF += --with-ssl=openssl -endif - -# ---------------------------------------------------------------------------- -# Target-Install -# ---------------------------------------------------------------------------- - -$(STATEDIR)/sitecopy.targetinstall: - @$(call targetinfo) - - @$(call install_init, sitecopy) - @$(call install_fixup, sitecopy,PRIORITY,optional) - @$(call install_fixup, sitecopy,SECTION,base) - @$(call install_fixup, sitecopy,AUTHOR,"Bernhard Walle ") - @$(call install_fixup, sitecopy,DESCRIPTION,missing) - - @$(call install_copy, sitecopy, 0, 0, 0755, -, /usr/bin/sitecopy) - - @$(call install_finish, sitecopy) - - @$(call touch) - -# vim: syntax=make -- cgit v1.2.3