mirror of
https://github.com/openwrt/packages.git
synced 2025-02-12 00:00:55 +00:00
Automatically compute and substitute current values for all $(AUTORELEASE) instances as this feature is deprecated and shouldn't be used. The following temporary change was made to the core: diff --git a/rules.mk b/rules.mk index 57d7995d4fa8..f16367de87a8 100644 --- a/rules.mk +++ b/rules.mk @@ -429,7 +429,7 @@ endef abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1)))) COMMITCOUNT = $(if $(DUMP),0,$(call commitcount)) -AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1)) +AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile)) all: FORCE: ; And this command used to fix affected packages: for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \ sed 's^.*/\([^/]*\)/Makefile^\1^';); do make package/$i/download done Signed-off-by: Paul Fertser <fercerpav@gmail.com>
57 lines
1.7 KiB
Makefile
57 lines
1.7 KiB
Makefile
#
|
|
# Copyright (C) 2015-2016 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=crelay
|
|
PKG_VERSION:=0.14.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://codeload.github.com/ondrej1024/crelay/tar.gz/V$(PKG_VERSION)?
|
|
PKG_HASH:=291f51d60c3003ad594ac2c10f75b0c5d0b40e49b298f73caf6a47afe3279fde
|
|
|
|
PKG_MAINTAINER:=Ted Hess <thess@kitschensync.net>
|
|
PKG_LICENSE:=GPL-3.0-or-later
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
include $(INCLUDE_DIR)/meson.mk
|
|
|
|
define Package/crelay
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=USB relay remote control daemon
|
|
URL:=https://github.com/ondrej1024/crelay
|
|
DEPENDS:=+libftdi1 +hidapi +libusb-1.0
|
|
endef
|
|
|
|
define Package/crelay/description
|
|
crelay is used to control different relay cards in a unified manner. It provides
|
|
several interfaces for controlling the relays locally or remotely by a web browser
|
|
or a smartphone. The card which is detected first will be used. A WebUI control is
|
|
available on port 8000 (default)
|
|
.
|
|
Currently supported relay cards:
|
|
- Conrad USB 4-channel relay card
|
|
- Sainsmart USB 4/8-channel relay board
|
|
- Sainsmart USB 16-channel relay control module
|
|
- Generic GPIO relays
|
|
- HID API compatible relay card
|
|
endef
|
|
|
|
define Package/crelay/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/crelay $(1)/usr/bin/
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/crelay.init $(1)/etc/init.d/crelay
|
|
$(INSTALL_CONF) $(PKG_BUILD_DIR)/conf/crelay.conf $(1)/etc
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,crelay))
|