From 2804ff509b865e9f965a531844bc87fe520a9236 Mon Sep 17 00:00:00 2001 From: Yanase Yuki Date: Wed, 14 Jan 2026 17:16:33 +0900 Subject: [PATCH] ostiary: remove package This software seems no longer maintained by upstream. Both PKG_SOURCE_URL and URL are dead, and no package depends on this. Signed-off-by: Yanase Yuki --- net/ostiary/Makefile | 47 ----------------------------- net/ostiary/files/ostiaryd.init | 19 ------------ net/ostiary/patches/010-gcc14.patch | 11 ------- 3 files changed, 77 deletions(-) delete mode 100644 net/ostiary/Makefile delete mode 100755 net/ostiary/files/ostiaryd.init delete mode 100644 net/ostiary/patches/010-gcc14.patch diff --git a/net/ostiary/Makefile b/net/ostiary/Makefile deleted file mode 100644 index dac881073c..0000000000 --- a/net/ostiary/Makefile +++ /dev/null @@ -1,47 +0,0 @@ -include $(TOPDIR)/rules.mk - -PKG_NAME:=ostiary -PKG_VERSION:=4.0 -PKG_RELEASE:=2 - -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=http://ingles.homeunix.net/software/ost/latest/ -PKG_HASH:=1b6a0a8a17fd3aa0f6511cdda81558d54f11023a0c953201ddaaef35f56a82c4 - -PKG_MAINTAINER:=Chris Geraghty -PKG_LICENSE:=GPL-2.0-only -PKG_LICENSE_FILES:=COPYING - -PKG_BUILD_PARALLEL:=1 - -include $(INCLUDE_DIR)/package.mk - -define Package/ostiary - SECTION:=base - CATEGORY:=Network - TITLE:=Secure remote execution utility - URL:=http://ingles.homeunix.net/software/ost/index.html -endef - -define Package/ostiary/description - Replay-resistent predefined remote-command trigger -endef - -define Package/ostiary/conffiles -/etc/ostiary.cfg -endef - -MAKE_FLAGS += all - -define Package/ostiary/install - $(INSTALL_DIR) $(1)/usr/bin - $(INSTALL_BIN) $(PKG_BUILD_DIR)/ostiaryd $(1)/usr/bin/ - $(INSTALL_BIN) $(PKG_BUILD_DIR)/ostclient $(1)/usr/bin/ - $(INSTALL_DIR) $(1)/etc - $(INSTALL_CONF) $(PKG_BUILD_DIR)/tests/ostiary.cfg $(1)/etc/ostiary.cfg - $(INSTALL_DIR) $(1)/etc/init.d - $(INSTALL_BIN) ./files/ostiaryd.init $(1)/etc/init.d/ostiary -endef - - -$(eval $(call BuildPackage,ostiary)) diff --git a/net/ostiary/files/ostiaryd.init b/net/ostiary/files/ostiaryd.init deleted file mode 100755 index da79a45222..0000000000 --- a/net/ostiary/files/ostiaryd.init +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh /etc/rc.common - -START=99 -STOP=85 - -USE_PROCD=1 - -start_service() -{ - - procd_open_instance - procd_set_param command /usr/bin/ostiaryd -c /etc/ostiary.cfg - procd_close_instance -} - - -reload_service() { - procd_send_signal ostiaryd -} diff --git a/net/ostiary/patches/010-gcc14.patch b/net/ostiary/patches/010-gcc14.patch deleted file mode 100644 index 287f905570..0000000000 --- a/net/ostiary/patches/010-gcc14.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/ost_main.c -+++ b/ost_main.c -@@ -788,7 +788,7 @@ void Hup_Handler(int sig) - int main(int argc, char *argv[]) - { - int i, listen_sock, clnt_sock, success; -- size_t struct_len; -+ socklen_t struct_len; - char hash_out_buf[HASH_TEXT_SIZE]; /* for debug output */ - #if HAVE_SIGACTION - struct sigaction sigact;