From 70adb60173e18c5e02c6e604b0451a672ec2e4c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Mon, 11 Mar 2019 11:09:36 +0100 Subject: Try to split updater-ng to multiple packages --- updater-supervisor/Makefile | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 updater-supervisor/Makefile (limited to 'updater-supervisor/Makefile') diff --git a/updater-supervisor/Makefile b/updater-supervisor/Makefile new file mode 100644 index 0000000..30f1d42 --- /dev/null +++ b/updater-supervisor/Makefile @@ -0,0 +1,41 @@ +# +## Copyright (C) 2019 CZ.NIC z.s.p.o. (http://www.nic.cz/) +# +## This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# # +# +include $(TOPDIR)/rules.mk + +PKG_NAME:=updater-supervisor +PKG_SOURCE_URL:=https://gitlab.labs.nic.cz/turris/updater/supervisor.git +PKG_SOURCE_BRANCH:=master +PKG_MAINTAINER:=CZ.NIC + +include $(INCLUDE_DIR)/autopkg-branch.mk +include $(INCLUDE_DIR)/package.mk +include $(TOPDIR)/feeds/packages/lang/python/python3-package.mk + + +define Package/$(PKG_NAME) + TITLE:=Next generation updater supervisor and its library + DEPENDS:=+updater-ng +python3-light +python3-uci +pkglists +l10n_supported + VARIANT:=python3 +endef + +define Py3Package/$(PKG_NAME)/install + $(INSTALL_DIR) $(1)/usr/bin + $(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/ + + $(INSTALL_DIR) $(1)/etc/init.d + $(INSTALL_BIN) $(PKG_BUILD_DIR)/files/immediate_reboot.init $(1)/etc/init.d/updater-journal-recover + $(INSTALL_DIR) $(1)/etc/cron.d + $(INSTALL_CONF) $(PKG_BUILD_DIR)/files/cron $(1)/etc/cron.d/updater + $(INSTALL_DIR) $(1)/etc/updater/hook_postupdate + $(INSTALL_BIN) $(PKG_BUILD_DIR)/files/hook_postupdate $(1)/etc/updater/hook_postupdate/99_approvals_cleanup +endef + + +$(eval $(call Py3Package,$(PKG_NAME))) +$(eval $(call BuildPackage,$(PKG_NAME))) +$(eval $(call BuildPackage,$(PKG_NAME)-src)) -- cgit v1.2.3