69808c7536
On Github, a large number of projects name their tag vXYZ (i.e v3.0, v0.1, etc.). In some packages we do: <pkg>_VERSION = v0.3 <pkg>_SITE = $(call github foo,bar,$(<pkg>_VERSION)) And in some other packages we do: <pkg>_VERSION = 0.3 <pkg>_SITE = $(call github foo,bar,v$(<pkg>_VERSION)) I.e in one case we consider the version to be v0.3, in the other case we consider 0.3 to be the version. The problem with v0.3 is that when used in conjunction with release-monitoring.org, it doesn't work very well, because release-monitoring.org has the concept of "version prefix" and using that they drop the "v" prefix for the version. Therefore, a number of packages in Buildroot have a version that doesn't match with release-monitoring.org because Buildroot has 'v0.3' and release-monitoring.org has '0.3'. Since really the version number of 0.3, is makes sense to update our packages to drop this 'v'. This commit only addresses the (common) case of github packages where the prefix is simply 'v'. Other cases will be handled by separate commits. Also, there are a few cases that couldn't be handled mechanically that aren't covered by this commit. Signed-off-by: Victor Huesca <victor.huesca@bootlin.com> [Arnout: don't change flatbuffers, json-for-modern-cpp, libpagekite, python-scapy3k, softether] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
70 lines
2.0 KiB
Makefile
70 lines
2.0 KiB
Makefile
################################################################################
|
|
#
|
|
# hiredis
|
|
#
|
|
################################################################################
|
|
|
|
HIREDIS_VERSION_MAJOR = 0.14
|
|
HIREDIS_VERSION = $(HIREDIS_VERSION_MAJOR).0
|
|
HIREDIS_SITE = $(call github,redis,hiredis,v$(HIREDIS_VERSION))
|
|
HIREDIS_LICENSE = BSD-3-Clause
|
|
HIREDIS_LICENSE_FILES = COPYING
|
|
HIREDIS_INSTALL_STAGING = YES
|
|
|
|
HIREDIS_MAKE_OPTS = \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
PREFIX=/usr
|
|
|
|
HIREDIS_TARGETS = hiredis.pc
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
HIREDIS_TARGETS += static
|
|
else ifeq ($(BR2_SHARED_LIBS),y)
|
|
HIREDIS_TARGETS += dynamic
|
|
else ifeq ($(BR2_SHARED_STATIC_LIBS),y)
|
|
HIREDIS_TARGETS += dynamic static
|
|
endif
|
|
|
|
define HIREDIS_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(HIREDIS_MAKE_OPTS) -C $(@D) \
|
|
$(HIREDIS_TARGETS)
|
|
endef
|
|
|
|
HIREDIS_INCLUDE_DIR = $(STAGING_DIR)/usr/include/hiredis
|
|
|
|
ifeq ($(BR2_SHARED_LIBS),)
|
|
define HIREDIS_INSTALL_STAGING_STATIC_LIB
|
|
$(INSTALL) -D -m 0755 $(@D)/libhiredis.a \
|
|
$(STAGING_DIR)/usr/lib/libhiredis.a
|
|
endef
|
|
endif
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),)
|
|
define HIREDIS_INSTALL_STAGING_SHARED_LIB
|
|
$(INSTALL) -D -m 0755 $(@D)/libhiredis.so \
|
|
$(STAGING_DIR)/usr/lib/libhiredis.so.$(HIREDIS_VERSION_MAJOR)
|
|
ln -sf libhiredis.so.$(HIREDIS_VERSION_MAJOR) $(STAGING_DIR)/usr/lib/libhiredis.so
|
|
endef
|
|
define HIREDIS_INSTALL_TARGET_SHARED_LIB
|
|
$(INSTALL) -D -m 0755 $(@D)/libhiredis.so \
|
|
$(TARGET_DIR)/usr/lib/libhiredis.so.$(HIREDIS_VERSION_MAJOR)
|
|
ln -sf libhiredis.so.$(HIREDIS_VERSION_MAJOR) $(TARGET_DIR)/usr/lib/libhiredis.so
|
|
endef
|
|
endif
|
|
|
|
# Do not call make install as this target will build shared and static libraries
|
|
define HIREDIS_INSTALL_STAGING_CMDS
|
|
mkdir -p $(HIREDIS_INCLUDE_DIR)
|
|
cp -dpfr $(@D)/hiredis.h $(@D)/async.h $(@D)/read.h $(@D)/sds.h \
|
|
$(@D)/adapters $(HIREDIS_INCLUDE_DIR)
|
|
$(INSTALL) -D -m 0644 $(@D)/hiredis.pc \
|
|
$(STAGING_DIR)/usr/lib/pkgconfig/hiredis.pc
|
|
$(HIREDIS_INSTALL_STAGING_STATIC_LIB)
|
|
$(HIREDIS_INSTALL_STAGING_SHARED_LIB)
|
|
endef
|
|
|
|
define HIREDIS_INSTALL_TARGET_CMDS
|
|
$(HIREDIS_INSTALL_TARGET_SHARED_LIB)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|