mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-31 12:00:38 +00:00
regular procedure... bumping PKGBUILDs, GMQCC_VERSION macros, adding back GMQCC_VERSION_TYPE_DEVEL
This commit is contained in:
parent
7f2b2061e6
commit
99de3cf4f5
5 changed files with 12 additions and 12 deletions
|
@ -2,13 +2,13 @@
|
|||
# Contributor: Wolfgang Bumiller <blub@speed.at>
|
||||
|
||||
pkgname=gmqcc-git
|
||||
pkgver=20130127
|
||||
pkgver=20131031
|
||||
pkgrel=1
|
||||
pkgdesc="An Improved Quake C Compiler"
|
||||
arch=('i686' 'x86_64')
|
||||
depends=()
|
||||
conflicts=('gmqcc')
|
||||
provides=('gmqcc=0.2.4')
|
||||
provides=('gmqcc=0.3.5')
|
||||
makedepends=('git')
|
||||
url="https://github.com/graphitemaster/gmqcc.git"
|
||||
license=('MIT')
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# Contributor: Wolfgang Bumiller <blub@speed.at>
|
||||
|
||||
pkgname=gmqcc
|
||||
pkgver=0.2.9
|
||||
pkgver=0.3.5
|
||||
pkgrel=1
|
||||
pkgdesc="An Improved Quake C Compiler"
|
||||
arch=('i686' 'x86_64')
|
||||
|
@ -10,9 +10,9 @@ depends=()
|
|||
url="https://github.com/graphitemaster/gmqcc.git"
|
||||
license=('MIT')
|
||||
source=(gmqcc-$pkgver.zip::https://github.com/graphitemaster/gmqcc/zipball/$pkgver)
|
||||
sha1sums=('adf972360c0b3d2f032a688952f6fb4715e4d45b')
|
||||
sha1sums=('69085478f48f04eefbd2a088c1bd8c266b59f952')
|
||||
|
||||
_gitname=graphitemaster-gmqcc-219508e/
|
||||
_gitname=graphitemaster-gmqcc-7f2b206/
|
||||
|
||||
build() {
|
||||
msg "Starting compilation..."
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Contributor: matthiaskrgr <matthiaskrgr _strange_curverd_character_ freedroid D0T org>
|
||||
|
||||
pkgname=gmqcc-git
|
||||
pkgver=0.3.0
|
||||
pkgver=0.3.5
|
||||
pkgver(){
|
||||
cd gmqcc
|
||||
git describe --tags | sed -e 's/^gmqcc\-//' -e 's/-/./g'
|
||||
|
@ -11,7 +11,7 @@ pkgdesc="An Improved Quake C Compiler"
|
|||
arch=('i686' 'x86_64')
|
||||
depends=('glibc')
|
||||
conflicts=('gmqcc')
|
||||
provides=('gmqcc=0.2.4')
|
||||
provides=('gmqcc=0.3.5')
|
||||
makedepends=('git')
|
||||
url="https://github.com/graphitemaster/gmqcc.git"
|
||||
license=('MIT')
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# Contributor: Wolfgang Bumiller <blub@speed.at>
|
||||
|
||||
pkgname=gmqcc
|
||||
pkgver=0.3.0
|
||||
pkgver=0.3.5
|
||||
pkgrel=1
|
||||
pkgdesc="An Improved Quake C Compiler"
|
||||
arch=('i686' 'x86_64')
|
||||
|
@ -10,9 +10,9 @@ depends=('glibc')
|
|||
url="https://github.com/graphitemaster/gmqcc.git"
|
||||
license=('MIT')
|
||||
source=(gmqcc-$pkgver.zip::https://github.com/graphitemaster/gmqcc/zipball/$pkgver)
|
||||
sha1sums=('27f59ce53c77bc2cf97eb49704b1bc9e8d892d2e')
|
||||
sha1sums=('69085478f48f04eefbd2a088c1bd8c266b59f952')
|
||||
|
||||
_gitname=graphitemaster-gmqcc-963e93e/
|
||||
_gitname=graphitemaster-gmqcc-7f2b206/
|
||||
|
||||
build() {
|
||||
msg "Starting compilation..."
|
||||
|
|
4
gmqcc.h
4
gmqcc.h
|
@ -37,12 +37,12 @@
|
|||
|
||||
#define GMQCC_VERSION_MAJOR 0
|
||||
#define GMQCC_VERSION_MINOR 3
|
||||
#define GMQCC_VERSION_PATCH 5
|
||||
#define GMQCC_VERSION_PATCH 6
|
||||
#define GMQCC_VERSION_BUILD(J,N,P) (((J)<<16)|((N)<<8)|(P))
|
||||
#define GMQCC_VERSION \
|
||||
GMQCC_VERSION_BUILD(GMQCC_VERSION_MAJOR, GMQCC_VERSION_MINOR, GMQCC_VERSION_PATCH)
|
||||
/* Undefine the following on a release-tag: */
|
||||
/* #define GMQCC_VERSION_TYPE_DEVEL */
|
||||
#define GMQCC_VERSION_TYPE_DEVEL
|
||||
|
||||
/* Full version string in case we need it */
|
||||
#ifdef GMQCC_VERSION_TYPE_DEVEL
|
||||
|
|
Loading…
Reference in a new issue