From c8654a69b75c4f52fa4da372d997708c8a4ecdcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Mon, 27 Aug 2018 13:35:53 +0200 Subject: Temporally drop all advanced packages --- shellrc/Makefile | 58 -------------------------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 shellrc/Makefile (limited to 'shellrc/Makefile') diff --git a/shellrc/Makefile b/shellrc/Makefile deleted file mode 100644 index 628dd9f..0000000 --- a/shellrc/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# -## Copyright (C) 2018 Karel Kočí -# -## This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# # -# -include $(TOPDIR)/rules.mk - -PKG_NAME:=shellrc -PKG_RELEASE:=1 -PKG_SOURCE_URL:=https://git.cynerd.cz/shellrc -PKG_MAINTAINER:=Karel Kočí - -$(call include_mk, autopkg-tag.mk) -include $(INCLUDE_DIR)/package.mk - -define Package/$(PKG_NAME) - TITLE:=Shell initialization files -endef - -define Package/$(PKG_NAME)-bash - TITLE:=Shell initialization files bash specific - DEPENDS:=$(PKG_NAME) bash -endef - -define Package/$(PKG_NAME)-zsh - TITLE:=Shell initialization files zsh specific - DEPENDS:=$(PKG_NAME) zsh -endef - -define Package/$(PKG_NAME)-ash - TITLE:=Shell initialization files ash specific - DEPENDS:=$(PKG_NAME) -endef - -define Build/Compile - true -endef - -define Package/$(PKG_NAME)/install - $(PKG_BUILD_DIR)/install --prefix "$(1)" -endef - -define Package/$(PKG_NAME)-bash/install - $(PKG_BUILD_DIR)/install --prefix "$(1)" --bash --no-base -endef - -define Package/$(PKG_NAME)-zsh/install - $(PKG_BUILD_DIR)/install --prefix "$(1)" --zsh --no-base -endef - -define Package/$(PKG_NAME)-ash/install - # TODO - #$(PKG_BUILD_DIR)/install --prefix "$(1)" --ash --no-base -endef - -$(eval $(call BuildPackage,$(PKG_NAME))) -- cgit v1.2.3 From cef196855f630f7bfd1850e0e50c8fb21bfe8891 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 30 Aug 2018 11:16:06 +0200 Subject: Revert "Temporally drop all advanced packages" This reverts commit c8654a69b75c4f52fa4da372d997708c8a4ecdcf. --- shellrc/Makefile | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 shellrc/Makefile (limited to 'shellrc/Makefile') diff --git a/shellrc/Makefile b/shellrc/Makefile new file mode 100644 index 0000000..628dd9f --- /dev/null +++ b/shellrc/Makefile @@ -0,0 +1,58 @@ +# +## Copyright (C) 2018 Karel Kočí +# +## This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# # +# +include $(TOPDIR)/rules.mk + +PKG_NAME:=shellrc +PKG_RELEASE:=1 +PKG_SOURCE_URL:=https://git.cynerd.cz/shellrc +PKG_MAINTAINER:=Karel Kočí + +$(call include_mk, autopkg-tag.mk) +include $(INCLUDE_DIR)/package.mk + +define Package/$(PKG_NAME) + TITLE:=Shell initialization files +endef + +define Package/$(PKG_NAME)-bash + TITLE:=Shell initialization files bash specific + DEPENDS:=$(PKG_NAME) bash +endef + +define Package/$(PKG_NAME)-zsh + TITLE:=Shell initialization files zsh specific + DEPENDS:=$(PKG_NAME) zsh +endef + +define Package/$(PKG_NAME)-ash + TITLE:=Shell initialization files ash specific + DEPENDS:=$(PKG_NAME) +endef + +define Build/Compile + true +endef + +define Package/$(PKG_NAME)/install + $(PKG_BUILD_DIR)/install --prefix "$(1)" +endef + +define Package/$(PKG_NAME)-bash/install + $(PKG_BUILD_DIR)/install --prefix "$(1)" --bash --no-base +endef + +define Package/$(PKG_NAME)-zsh/install + $(PKG_BUILD_DIR)/install --prefix "$(1)" --zsh --no-base +endef + +define Package/$(PKG_NAME)-ash/install + # TODO + #$(PKG_BUILD_DIR)/install --prefix "$(1)" --ash --no-base +endef + +$(eval $(call BuildPackage,$(PKG_NAME))) -- cgit v1.2.3 From a6abd46888c5780377786b50e7a1ca8812ab0960 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 30 Aug 2018 12:37:44 +0200 Subject: Packages fixes --- shellrc/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'shellrc/Makefile') diff --git a/shellrc/Makefile b/shellrc/Makefile index 628dd9f..618343e 100644 --- a/shellrc/Makefile +++ b/shellrc/Makefile @@ -51,6 +51,7 @@ define Package/$(PKG_NAME)-zsh/install endef define Package/$(PKG_NAME)-ash/install + true # TODO #$(PKG_BUILD_DIR)/install --prefix "$(1)" --ash --no-base endef -- cgit v1.2.3 From 7a4e7809358548e24a5debb375e6e6a368247f79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 30 Aug 2018 12:42:30 +0200 Subject: autopkg: move it back --- shellrc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shellrc/Makefile') diff --git a/shellrc/Makefile b/shellrc/Makefile index 618343e..1c6c5fd 100644 --- a/shellrc/Makefile +++ b/shellrc/Makefile @@ -12,7 +12,7 @@ PKG_RELEASE:=1 PKG_SOURCE_URL:=https://git.cynerd.cz/shellrc PKG_MAINTAINER:=Karel Kočí -$(call include_mk, autopkg-tag.mk) +include $(TOPDIR)/feeds/personal/autopkg-tag.mk include $(INCLUDE_DIR)/package.mk define Package/$(PKG_NAME) -- cgit v1.2.3 From 9e6b567ec2c7eca1b0299b048c9f1872857b6579 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 30 Aug 2018 12:54:03 +0200 Subject: shellrc: fix --- shellrc/Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'shellrc/Makefile') diff --git a/shellrc/Makefile b/shellrc/Makefile index 1c6c5fd..55f7dcb 100644 --- a/shellrc/Makefile +++ b/shellrc/Makefile @@ -57,3 +57,6 @@ define Package/$(PKG_NAME)-ash/install endef $(eval $(call BuildPackage,$(PKG_NAME))) +$(eval $(call BuildPackage,$(PKG_NAME)-bash)) +$(eval $(call BuildPackage,$(PKG_NAME)-zsh)) +$(eval $(call BuildPackage,$(PKG_NAME)-ash)) -- cgit v1.2.3