From 8c62419cd8d6011e3de0e33aa03a1709357dd06e Mon Sep 17 00:00:00 2001 From: Jens Wagner Date: Fri, 15 May 2026 18:01:35 +0200 Subject: [PATCH] perl: fix dependency issues in archive, pod and test perlbase-archive, perlbase-pod and perlbase-test had executable utilities with missing dependencies. Fixes: https://github.com/openwrt/packages/issues/29425 Fixes: https://github.com/openwrt/packages/issues/29426 Fixes: https://github.com/openwrt/packages/issues/29427 As discussed in PR 29463 https://github.com/openwrt/packages/pull/29463 those are either non-working or useless on OpenWrt, therefore they have been removed. Signed-off-by: Jens Wagner --- lang/perl/perlbase.mk | 9 --------- 1 file changed, 9 deletions(-) diff --git a/lang/perl/perlbase.mk b/lang/perl/perlbase.mk index 9de7d92d85..ac1b9935da 100644 --- a/lang/perl/perlbase.mk +++ b/lang/perl/perlbase.mk @@ -42,10 +42,6 @@ endef define Package/perlbase-archive/install $(call perlmod/Install,$(1),Archive,) $(call perlmod/InstallBaseTests,$(1),cpan/Archive-Tar/bin cpan/Archive-Tar/t) - $(INSTALL_DIR) $(1)/usr/bin - $(CP) $(PKG_INSTALL_DIR)/usr/bin/ptar $(1)/usr/bin/ - $(CP) $(PKG_INSTALL_DIR)/usr/bin/ptardiff $(1)/usr/bin/ - $(CP) $(PKG_INSTALL_DIR)/usr/bin/ptargrep $(1)/usr/bin/ endef $(eval $(call BuildPackage,perlbase-archive)) @@ -1128,9 +1124,6 @@ define Package/perlbase-pod/install $(call perlmod/Install,$(1),Pod,Pod/Usage.pm) $(call perlmod/Install/NoStrip,$(1),Pod/Usage.pm,) $(call perlmod/InstallBaseTests,$(1),cpan/Pod-Checker/t cpan/Pod-Escapes/t cpan/Pod-Perldoc/t cpan/Pod-Simple/t cpan/Pod-Usage/scripts cpan/Pod-Usage/t cpan/podlators/t ext/Pod-Functions/Functions.pm ext/Pod-Functions/t ext/Pod-Html/t lib/Pod/t) - $(INSTALL_DIR) $(1)/usr/bin - $(CP) $(PKG_INSTALL_DIR)/usr/bin/pod2man $(1)/usr/bin/ - $(CP) $(PKG_INSTALL_DIR)/usr/bin/pod2text $(1)/usr/bin/ endef $(eval $(call BuildPackage,perlbase-pod)) @@ -1369,8 +1362,6 @@ define Package/perlbase-test/install $(call perlmod/Install,$(1),Test Test2 Test.pm Test2.pm ok.pm,Test/Builder.pm Test/More.pm Test/Tutorial.pod Test2/Transition.pod) $(call perlmod/Install/NoStrip,$(1),Test/Builder.pm Test/More.pm,) $(call perlmod/InstallBaseTests,$(1),cpan/Test-Harness/t cpan/Test-Simple/t dist/Test/t) - $(INSTALL_DIR) $(1)/usr/bin - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/prove $(1)/usr/bin endef $(eval $(call BuildPackage,perlbase-test))