mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
Update made automatically due to pressing build
This commit is contained in:
parent
5d9648429a
commit
8dd4cdb6d0
5 changed files with 21 additions and 17 deletions
|
@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.6.2.18")]
|
[assembly: AssemblyVersion("1.6.2.19")]
|
||||||
[assembly: AssemblyFileVersion("1.6.2.18")]
|
[assembly: AssemblyFileVersion("1.6.2.19")]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Package: hisp
|
Package: hisp
|
||||||
Version: 1.6.2.17
|
Version: 1.6.2.19
|
||||||
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
|
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
|
||||||
Maintainer: Li
|
Maintainer: Li
|
||||||
Homepage: https://islehorse.com
|
Homepage: https://islehorse.com
|
||||||
|
|
|
@ -30,5 +30,5 @@ using System.Runtime.InteropServices;
|
||||||
//
|
//
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
[assembly: AssemblyVersion("1.6.2.18")]
|
[assembly: AssemblyVersion("1.6.2.19")]
|
||||||
[assembly: AssemblyFileVersion("1.6.2.18")]
|
[assembly: AssemblyFileVersion("1.6.2.19")]
|
||||||
|
|
|
@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.6.2.18")]
|
[assembly: AssemblyVersion("1.6.2.19")]
|
||||||
[assembly: AssemblyFileVersion("1.6.2.18")]
|
[assembly: AssemblyFileVersion("1.6.2.19")]
|
||||||
|
|
|
@ -11,13 +11,13 @@ def update_asm_info(assemblyinfofile):
|
||||||
global commit_tag
|
global commit_tag
|
||||||
global commit_branch
|
global commit_branch
|
||||||
global assembly_version
|
global assembly_version
|
||||||
lines = open(assemblyinfofile, "r").readlines()
|
lines = open(assemblyinfofile, "rb").readlines()
|
||||||
for i in range(0,len(lines)):
|
for i in range(0,len(lines)):
|
||||||
if lines[i].startswith("[assembly: AssemblyVersion(\""):
|
if lines[i].startswith(b"[assembly: AssemblyVersion(\""):
|
||||||
lines[i] = "[assembly: AssemblyVersion(\""+assembly_version+"\")]\n"
|
lines[i] = b"[assembly: AssemblyVersion(\""+bytes(assembly_version, "UTF-8")+b"\")]\n"
|
||||||
if lines[i].startswith("[assembly: AssemblyFileVersion(\""):
|
if lines[i].startswith(b"[assembly: AssemblyFileVersion(\""):
|
||||||
lines[i] = "[assembly: AssemblyFileVersion(\""+assembly_version+"\")]\n"
|
lines[i] = b"[assembly: AssemblyFileVersion(\""+bytes(assembly_version, "UTF-8")+b"\")]\n"
|
||||||
open(assemblyinfofile, "w").writelines(lines)
|
open(assemblyinfofile, "wb").writelines(lines)
|
||||||
|
|
||||||
|
|
||||||
# Determine git stuff.
|
# Determine git stuff.
|
||||||
|
@ -31,14 +31,12 @@ commit_tag = "v0.0.0"
|
||||||
commit_branch = "master"
|
commit_branch = "master"
|
||||||
|
|
||||||
try:
|
try:
|
||||||
subprocess.run(['git', 'add', '-A'], stdout=subprocess.PIPE)
|
|
||||||
subprocess.run(['git', 'commit', '-m', 'Update made automatically due to pressing build'], stdout=subprocess.PIPE)
|
|
||||||
commit_hash = subprocess.run(['git', 'rev-parse', '--verify', 'HEAD'], stdout=subprocess.PIPE).stdout.replace(b"\r", b"").replace(b"\n", b"").decode("UTF-8")
|
commit_hash = subprocess.run(['git', 'rev-parse', '--verify', 'HEAD'], stdout=subprocess.PIPE).stdout.replace(b"\r", b"").replace(b"\n", b"").decode("UTF-8")
|
||||||
commit_tag = subprocess.run(['git', 'describe', '--abbrev=0', '--tags'], stdout=subprocess.PIPE).stdout.replace(b"\r", b"").replace(b"\n", b"").decode("UTF-8")
|
commit_tag = subprocess.run(['git', 'describe', '--abbrev=0', '--tags'], stdout=subprocess.PIPE).stdout.replace(b"\r", b"").replace(b"\n", b"").decode("UTF-8")
|
||||||
commit_tag += "." + subprocess.run(['git', 'rev-list', commit_tag+'..HEAD', '--count'], stdout=subprocess.PIPE).stdout.replace(b"\r", b"").replace(b"\n", b"").decode("UTF-8")
|
commit_tag += "." + subprocess.run(['git', 'rev-list', commit_tag+'..HEAD', '--count'], stdout=subprocess.PIPE).stdout.replace(b"\r", b"").replace(b"\n", b"").decode("UTF-8")
|
||||||
commit_branch = subprocess.run(['git', 'branch', '--show-current'], stdout=subprocess.PIPE).stdout.replace(b"\r", b"").replace(b"\n", b"").decode("UTF-8")
|
commit_branch = subprocess.run(['git', 'branch', '--show-current'], stdout=subprocess.PIPE).stdout.replace(b"\r", b"").replace(b"\n", b"").decode("UTF-8")
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
print("Git not installed")
|
pass
|
||||||
|
|
||||||
commit_date = datetime.datetime.now().strftime("%d/%m/%Y")
|
commit_date = datetime.datetime.now().strftime("%d/%m/%Y")
|
||||||
commit_time = datetime.datetime.now().strftime("%H:%M:%S")
|
commit_time = datetime.datetime.now().strftime("%H:%M:%S")
|
||||||
|
@ -64,4 +62,10 @@ lines = open(control_file, "rb").readlines()
|
||||||
for i in range(0,len(lines)):
|
for i in range(0,len(lines)):
|
||||||
if lines[i].startswith(b"Version: "):
|
if lines[i].startswith(b"Version: "):
|
||||||
lines[i] = b"Version: "+bytes(commit_tag.replace("v", ""), "UTF-8")+b"\n"
|
lines[i] = b"Version: "+bytes(commit_tag.replace("v", ""), "UTF-8")+b"\n"
|
||||||
open(control_file, "wb").writelines(lines)
|
open(control_file, "wb").writelines(lines)
|
||||||
|
|
||||||
|
try:
|
||||||
|
subprocess.run(['git', 'add', '-A'], stdout=subprocess.PIPE)
|
||||||
|
subprocess.run(['git', 'commit', '-m', 'Update made automatically due to pressing build'], stdout=subprocess.PIPE)
|
||||||
|
except FileNotFoundError:
|
||||||
|
pass
|
Loading…
Add table
Reference in a new issue