golang:ver bump

This commit is contained in:
blue-devil
2020-05-18 21:14:06 +03:00
parent 665504d2dc
commit b01982f05e
2 changed files with 19 additions and 9 deletions
+7 -6
View File
@@ -4,10 +4,10 @@
# Licensed under the GNU General Public License, version 3. # Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt # See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import shelltools
from pisi.actionsapi import pisitools
from pisi.actionsapi import autotools
from pisi.actionsapi import get from pisi.actionsapi import get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
NoStrip = ["/"] NoStrip = ["/"]
@@ -15,12 +15,13 @@ def build():
shelltools.export("go_platform","linux-amd64") shelltools.export("go_platform","linux-amd64")
shelltools.export("go_linker","/lib/ld-linux-x86-64.so.2") shelltools.export("go_linker","/lib/ld-linux-x86-64.so.2")
shelltools.export("GOROOT", "%s/go-go1.14.1" % get.workDIR()) #0 shelltools.export("GOROOT", "%s/go-go1.14.3" % get.workDIR()) #0
shelltools.export("GOBIN", "$GOROOT/bin") #1 shelltools.export("GOBIN", "$GOROOT/bin") #1
shelltools.export("GOPATH", "%s" % get.workDIR()) shelltools.export("GOPATH", "%s" % get.workDIR())
shelltools.export("GOROOT_FINAL", "/usr/lib/go") shelltools.export("GOROOT_FINAL", "/usr/lib/go")
shelltools.export("GOROOT_BOOTSTRAP", "%s/go-go1.14.1/go-linux-amd64-bootstrap" % get.workDIR()) #2 shelltools.export("GOROOT_BOOTSTRAP", "%s/go-go1.14.3/go" % get.workDIR()) #2
#shelltools.export("GOROOT_BOOTSTRAP", "/usr/lib/go")
shelltools.export("GOOS","linux") shelltools.export("GOOS","linux")
shelltools.export("GOARCH","amd64") shelltools.export("GOARCH","amd64")
@@ -31,7 +32,7 @@ def build():
def install(): def install():
shelltools.export("GOROOT_FINAL", "/usr/lib/go") shelltools.export("GOROOT_FINAL", "/usr/lib/go")
shelltools.cd("%s/go-go1.14.1" % get.workDIR()) shelltools.cd("%s/go-go1.14.3" % get.workDIR())
pisitools.dodir("/usr/lib/go") pisitools.dodir("/usr/lib/go")
shelltools.system("cp -r api bin doc lib pkg src %s/usr/lib/go" % get.installDIR()) shelltools.system("cp -r api bin doc lib pkg src %s/usr/lib/go" % get.installDIR())
+11 -2
View File
@@ -13,8 +13,10 @@
<IsA>app:console</IsA> <IsA>app:console</IsA>
<Summary>Compiler and tools for the Go programming language from Google</Summary> <Summary>Compiler and tools for the Go programming language from Google</Summary>
<Description>Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.</Description> <Description>Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.</Description>
<Archive sha1sum="9bbe8ecb0d18b93b7d0de76720d2672258c42d01" type="targz">https://github.com/golang/go/archive/go1.14.1.tar.gz</Archive> <Archive sha1sum="00afd4600fe690a7a0d21217c2667fe56b342d1a" type="targz">https://github.com/golang/go/archive/go1.14.3.tar.gz</Archive>
<Archive sha1sum="6ecdf5a03974462119c051a0d53f825c851ffdbe" type="tarbz2" target="go-go1.14.1">https://dev.gentoo.org/~williamh/dist/go-linux-amd64-bootstrap-1.13.6.tbz</Archive> <!--<Archive sha1sum="6ecdf5a03974462119c051a0d53f825c851ffdbe" type="tarbz2" target="go-go1.14.3">https://dev.gentoo.org/~williamh/dist/go-linux-amd64-bootstrap-1.13.6.tbz</Archive>-->
<!-- for using as a bootstrap -->
<Archive sha1sum="27576c9e0bd40ed98c14404a9ac83678a63bc000" type="targz" target="go-go1.14.3">https://dl.google.com/go/go1.14.3.linux-amd64.tar.gz</Archive>
</Source> </Source>
<Package> <Package>
@@ -37,6 +39,13 @@
</Package> </Package>
<History> <History>
<Update release="13">
<Date>2020-05-18</Date>
<Version>1.14.3</Version>
<Comment>Patch version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="12"> <Update release="12">
<Date>2020-03-27</Date> <Date>2020-03-27</Date>
<Version>1.14.1</Version> <Version>1.14.1</Version>