Skip to content

Commit 537a6ef

Browse files
committed
Updated build scripts that now use tags without prefixes first.
1 parent b7f79df commit 537a6ef

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
*******************************************************************************
44

55
=== 0.5.9 ===
6+
* Updated build scripts that now use tags without prefixes first.
67

78
=== 0.5.8 ===
89
* Fixed excessive header installation with proper one.

dependencies.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
#
2020

2121
# Variables that describe dependencies
22-
LSP_COMMON_LIB_VERSION := 1.0.7
22+
LSP_COMMON_LIB_VERSION := 1.0.8
2323
LSP_COMMON_LIB_NAME := lsp-common-lib
2424
LSP_COMMON_LIB_TYPE := src
2525
LSP_COMMON_LIB_URL := https://github.com/sadko4u/$(LSP_COMMON_LIB_NAME).git
2626

27-
LSP_TEST_FW_VERSION := 1.0.5
27+
LSP_TEST_FW_VERSION := 1.0.6
2828
LSP_TEST_FW_NAME := lsp-test-fw
2929
LSP_TEST_FW_TYPE := src
3030
LSP_TEST_FW_URL := https://github.com/sadko4u/$(LSP_TEST_FW_NAME).git

make/configure.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ ifeq ($(findstring -devel,$(ARTIFACT_VERSION)),-devel)
4949
else
5050
$(foreach dep, $(DEPENDENCIES), \
5151
$(eval \
52-
$(dep)_BRANCH="$($(dep)_NAME)-$($(dep)_VERSION)" \
52+
$(dep)_BRANCH="$($(dep)_VERSION)" \
5353
) \
5454
)
5555
endif

make/modules.mk

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ ifeq ($(TREE),1)
4141
)
4242
else
4343
$(foreach dep, $(ALL_DEPENDENCIES), \
44-
$(eval $(dep)_BRANCH="$($(dep)_NAME)-$($(dep)_VERSION)") \
44+
$(eval $(dep)_BRANCH="$($(dep)_VERSION)") \
4545
$(eval $(dep)_PATH=$(MODULES)/$($(dep)_NAME)) \
4646
)
4747
endif
@@ -65,7 +65,9 @@ $(ALL_SRC_MODULES) $(ALL_HDR_MODULES):
6565
@$(GIT) -C "$($(@)_PATH)" fetch origin --force
6666
@$(GIT) -C "$($(@)_PATH)" fetch origin '+refs/heads/*:refs/tags/*' --force
6767
@$(GIT) -c advice.detachedHead=false -C "$($(@)_PATH)" checkout origin/$($(@)_BRANCH) || \
68-
$(GIT) -c advice.detachedHead=false -C "$($(@)_PATH)" checkout refs/tags/$($(@)_BRANCH)
68+
$(GIT) -c advice.detachedHead=false -C "$($(@)_PATH)" checkout refs/tags/$($(@)_BRANCH) || \
69+
$(GIT) -c advice.detachedHead=false -C "$($(@)_PATH)" checkout origin/$($(@)_NAME)-$($(@)_BRANCH) || \
70+
$(GIT) -c advice.detachedHead=false -C "$($(@)_PATH)" checkout refs/tags/$($(@)_NAME)-$($(@)_BRANCH)
6971

7072
$(ALL_PATHS):
7173
@echo "Removing $(notdir $(@))"

project.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
#
2020

2121
# Package version
22-
ARTIFACT_DESC = DSP library for digital signal processing
2322
ARTIFACT_NAME = lsp-dsp-lib
23+
ARTIFACT_DESC = DSP library for digital signal processing
2424
ARTIFACT_VARS = LSP_DSP_LIB
2525
ARTIFACT_HEADERS = lsp-plug.in
26-
ARTIFACT_VERSION = 0.5.9-devel
26+
ARTIFACT_VERSION = 0.5.9
2727

2828
# List of dependencies
2929
DEPENDENCIES = \

0 commit comments

Comments
 (0)