libyubikey: remove package
authorYanase Yuki <[email protected]>
Sat, 22 Nov 2025 11:19:28 +0000 (20:19 +0900)
committerJosef Schlehofer <[email protected]>
Sun, 23 Nov 2025 07:18:41 +0000 (08:18 +0100)
Upstream stopped libyubikey developments.
https://github.com/Yubico/yubico-c
ykpers and yubico-pam depends on this,
but both packages has been removed from repo.

Signed-off-by: Yanase Yuki <[email protected]>
libs/libyubikey/Makefile [deleted file]

diff --git a/libs/libyubikey/Makefile b/libs/libyubikey/Makefile
deleted file mode 100644 (file)
index 37e20f3..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-include $(TOPDIR)/rules.mk
-
-PKG_NAME:=libyubikey
-PKG_VERSION:=1.13
-PKG_RELEASE:=2
-
-PKG_SOURCE:=libyubikey-$(PKG_VERSION).tar.gz
-PKG_SOURCE_URL:=https://developers.yubico.com/yubico-c/Releases
-PKG_HASH:=04edd0eb09cb665a05d808c58e1985f25bb7c5254d2849f36a0658ffc51c3401
-PKG_MAINTAINER:=Stuart B. Wilkins <[email protected]>
-PKG_LICENSE_FILES:=COPYING
-PKG_LICENSE:=BSD-2-Clause
-
-include $(INCLUDE_DIR)/package.mk
-
-define Package/libyubikey
-  SECTION:=libs
-  CATEGORY:=Libraries
-  TITLE:=The Yubico yubikey c library
-  URL:=https://developers.yubico.com/yubico-c/
-endef
-
-define Package/libyubikey/description
-       The c library for the yubikey from Yubico
-endef
-
-define Build/InstallDev
-       $(INSTALL_DIR) $(STAGING_DIR)/usr/include
-       $(CP) $(PKG_BUILD_DIR)/yubikey.h $(STAGING_DIR)/usr/include
-       $(INSTALL_DIR) $(STAGING_DIR)/usr/lib
-       $(CP) $(PKG_BUILD_DIR)/.libs/libyubikey.so* $(STAGING_DIR)/usr/lib
-endef
-
-CONFIGURE_ARGS += \
-       --enable-shared \
-       --disable-static
-
-define Package/libyubikey/install
-       $(INSTALL_DIR) $(1)/usr/bin
-       $(INSTALL_BIN) $(PKG_BUILD_DIR)/.libs/modhex $(1)/usr/bin/
-       $(INSTALL_BIN) $(PKG_BUILD_DIR)/.libs/ykgenerate $(1)/usr/bin/
-       $(INSTALL_BIN) $(PKG_BUILD_DIR)/.libs/ykparse $(1)/usr/bin/
-       $(INSTALL_DIR) $(1)/usr/lib
-       $(CP) $(PKG_BUILD_DIR)/.libs/libyubikey.so.* $(1)/usr/lib
-endef
-
-$(eval $(call BuildPackage,libyubikey))