diff options
author | Jani Välimaa <wally@mageia.org> | 2021-01-12 18:06:16 +0200 |
---|---|---|
committer | Jani Välimaa <wally@mageia.org> | 2021-01-12 18:06:16 +0200 |
commit | 32e6ff23efce272c0fb9eee66772cb15b9521788 (patch) | |
tree | 908af2984e5b324716fcb405252d2996d5a8ac63 /Makefile | |
parent | d3e7c94f678ee57f02b407c3e26a8bfaa8ff3431 (diff) | |
download | config-32e6ff23efce272c0fb9eee66772cb15b9521788.tar config-32e6ff23efce272c0fb9eee66772cb15b9521788.tar.gz config-32e6ff23efce272c0fb9eee66772cb15b9521788.tar.bz2 config-32e6ff23efce272c0fb9eee66772cb15b9521788.tar.xz config-32e6ff23efce272c0fb9eee66772cb15b9521788.zip |
Update versioning schema and remove extra '0'
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -6,10 +6,9 @@ NAME = mageia-xfce-config -# Versioning scheme uses Xfce version as base. 'Zero' after $(XFCEVERSION) -# separates our versions from Xfce version. Next part, $(MGAVERSION), identifies -# current Mageia release. Last $(RELEASE) part identifies sequential release -# number of the package. +# Versioning scheme uses Xfce version $(XFCEVERSION) as base. Next part, +# $(MGAVERSION), identifies current Mageia release. Last $(RELEASE) part +# identifies sequential release number of the package. # # So: # * Change $(XFCEVERSION) only when Xfce version changes. @@ -19,14 +18,14 @@ NAME = mageia-xfce-config # and so on. # # Examples of version numbers: -# * 4.100.1.0 (Initial Xfce 4.10 settings version) -# * 4.100.5.2 (Second release of Xfce 4.10 settings for Mageia 5) +# * 4.10.1.0 (Initial Xfce 4.10 settings version for Mageia 1) +# * 4.10.5.2 (Second new feature or bug fix release of Xfce 4.10 settings for Mageia 5) XFCEVERSION = 4.14 MGAVERSION = 8 RELEASE = 5 -VERSION = $(XFCEVERSION)0.$(MGAVERSION).$(RELEASE) +VERSION = $(XFCEVERSION).$(MGAVERSION).$(RELEASE) DESTDIR= prefix=/usr |