Skip to content

Commit

Permalink
Merge #3610 Add year and day of year to RPM versions
Browse files Browse the repository at this point in the history
  • Loading branch information
HebaruSan committed Jul 21, 2022
2 parents 66c595b + d22d617 commit 04f69ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ All notable changes to this project will be documented in this file.

### Internal

- [Build] Generate RPM repo for releases and under dev builds (#3605, #3609 by: HebaruSan)
- [Build] Generate RPM repo for releases and under dev builds (#3605, #3609, #3610 by: HebaruSan)

## v1.31.0 (IKAROS)

Expand Down
2 changes: 1 addition & 1 deletion rpm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ICONSRC:=$(DEBDIR)/ckan.ico
CONFIGURATION?=Release
EXESRC:=$(shell pwd)/../_build/repack/$(CONFIGURATION)/ckan.exe
CHANGELOGSRC:=../CHANGELOG.md
VERSION:=$(shell egrep '^\s*\#\#\s+v.*$$' $(CHANGELOGSRC) | head -1 | sed -e 's/^\s*\#\#\s\+v//' -e 's/-/_/g' )
VERSION:=$(shell egrep '^\s*\#\#\s+v.*$$' $(CHANGELOGSRC) | head -1 | sed -e 's/^\s*\#\#\s\+v//' -e 's/-/_/g' ).$(shell date +'%g%j')
RPM:=$(TOPDIR)/RPMS/noarch/ckan-$(VERSION)-1.noarch.rpm

CREATEREPO:=$(if $(shell which createrepo),createrepo,createrepo_c)
Expand Down

0 comments on commit 04f69ec

Please sign in to comment.