From 0e78dd8e1757555a97045bee3e4723b0f621beaa Mon Sep 17 00:00:00 2001 From: "Ycarus (Yannick Chabanois)" Date: Mon, 1 Mar 2021 14:32:54 +0100 Subject: [PATCH] Remove whois to use upstream package --- whois/Makefile | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 whois/Makefile diff --git a/whois/Makefile b/whois/Makefile deleted file mode 100644 index ae17cb7f7..000000000 --- a/whois/Makefile +++ /dev/null @@ -1,46 +0,0 @@ - -include $(TOPDIR)/rules.mk - -PKG_NAME:=whois -PKG_VERSION:=5.5.7 -PKG_RELEASE:=1 - -PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)/$(PKG_NAME) -PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.xz -PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/w/whois -PKG_HASH:=3efa700dbf38d127c31b21af3176cd6e5a69f96a056be60ac1dcd13df7717393 -PKG_CAT:=xzcat - -PKG_INSTALL:=1 -PKG_BUILD_PARALLEL:=1 - -include $(INCLUDE_DIR)/package.mk - -define Package/whois - SECTION:=net - CATEGORY:=Network - TITLE:=WHOIS commandline utility - URL:=http://ftp.debian.org/debian/pool/main/w/whois - MAINTAINER:=Kihamo -endef - -define Package/whois/description - Utility to display information from WHOIS servers -endef - -define Package/whois/conffiles -/etc/whois.conf -endef - -MAKE_FLAGS += \ - prefix=$(PKG_BUILD_DIR) - -define Package/whois/install - $(INSTALL_DIR) $(1)/usr/sbin - $(INSTALL_BIN) $(PKG_BUILD_DIR)/whois $(1)/usr/sbin - $(INSTALL_DIR) $(1)/etc - $(INSTALL_DATA) $(PKG_BUILD_DIR)/whois.conf $(1)/etc/whois.conf -endef - -$(eval $(call BuildPackage,whois)) -