mirror of
https://github.com/openwrt/packages.git
synced 2025-12-25 16:17:36 +04: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>
67 lines
2.0 KiB
Makefile
67 lines
2.0 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=prometheus
|
|
PKG_VERSION:=2.25.2
|
|
PKG_RELEASE:=3
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://codeload.github.com/prometheus/prometheus/tar.gz/v${PKG_VERSION}?
|
|
PKG_HASH:=85f50c0cfb4db206a59d2c3301e02d685c3fe4b451b41ca943a4eb94935cf4d4
|
|
|
|
PKG_LICENSE:=Apache-2.0
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
PKG_MAINTAINER:=Paul Spooren <mail@aparcar.org>
|
|
|
|
PKG_BUILD_DEPENDS:=golang/host
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_BUILD_FLAGS:=no-mips16
|
|
|
|
GO_PKG:=github.com/prometheus/prometheus/
|
|
GO_PKG_BUILD_PKG:=github.com/prometheus/prometheus/cmd/prometheus/
|
|
|
|
GO_PKG_LDFLAGS_X:=\
|
|
github.com/prometheus/common/version.Version=v$(PKG_VERSION) \
|
|
github.com/prometheus/common/version.Revision=$(PKG_VERSION) \
|
|
github.com/prometheus/common/version.Branch="release" \
|
|
github.com/prometheus/common/version.BuildUser=openwrt \
|
|
github.com/prometheus/common/version.BuildDate=$(SOURCE_DATE_EPOCH)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../../lang/golang/golang-package.mk
|
|
|
|
define Package/prometheus/Default
|
|
TITLE:=Monitoring system & time series database
|
|
USERID:=prometheus=112:prometheus=112
|
|
URL:=http://prometheus.io
|
|
DEPENDS:=$(GO_ARCH_DEPENDS)
|
|
endef
|
|
|
|
define Package/prometheus
|
|
$(call Package/prometheus/Default)
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
endef
|
|
|
|
define Package/prometheus/description
|
|
Prometheus, a Cloud Native Computing Foundation project, is a systems and
|
|
service monitoring system. It collects metrics from configured targets at given
|
|
intervals, evaluates rule expressions, displays the results, and can trigger
|
|
alerts if some condition is observed to be true.
|
|
|
|
Default tsdb path is /srv/prometheus, you might want to edit /etc/config/prometheus
|
|
in order to place it on USB storage or external SD card.
|
|
endef
|
|
|
|
define Package/prometheus/install
|
|
$(call GoPackage/Package/Install/Bin,$(1))
|
|
|
|
$(CP) ./files/* $(1)/
|
|
endef
|
|
|
|
define Package/prometheus/conffiles
|
|
/etc/prometheus.yml
|
|
endef
|
|
|
|
$(eval $(call GoBinPackage,prometheus))
|
|
$(eval $(call BuildPackage,prometheus))
|