Skip to content

Commit

Permalink
release 14.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
marguerite committed Jun 8, 2016
1 parent 0a3aaea commit cddb786
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 1 deletion.
47 changes: 47 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,50 @@
== update version 14.9.1 ==

* simplify rpmsysinfo.rb: don't guess variables'
values can be passed in by RPM environment
variables. use RbConfig to get libdir.
* support s390x architecture

== update version 14.9.0 ==

* Remove runtime dependency for Go API

== update version 14.8.1 ==

* bugfix release
* fix a typo in cli.rb
* increase timeout to 300s, or go install can't
finish itself sometimes

== update version 14.8 ==

* rpmsysinfo.rb: fix encoding problem in open()
* cli.rb: ruby 1.8.7 doesn't support passing environment
variables in open(), some commands/tests need time to
finish, an immediate io.close() will get us wrong
exitstatus (broken pipe, code 13). so use 'timeout'
module with a 30s and process.wait for them to quit
successfully
* golang.req: the oniguruma in ruby 1.8.7 doesn't support
named group in regexp. so ditch the named group used in
go_get_version()

== update version 14.7 ==

* do not hardcode go version

== update version 14.6 ==

* fix rbarch for Power Archtectures

== update version 14.5 ==

* fix a typo that prevent golang.req from working (github#10)

== update version 14.4 ==

* fix github#5 on golang.req

== update version 14.3 ==

* fix: command not found error for go test on SLE
Expand Down
3 changes: 3 additions & 0 deletions golang/rpmsysinfo.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ module RpmSysinfo
if @@rbarch == "powerpc64le"
@@go_arch = "ppc64le"
end
if @@rbarch == "s390x"
@@go_arch = "s390x"
end

def self.get_builddir

Expand Down
2 changes: 1 addition & 1 deletion macros.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
%go_tooldir %{_datadir}/go/pkg/tool/linux_%{go_arch}

%go_exclusivearch \
ExclusiveArch: aarch64 %ix86 x86_64 %arm ppc64 ppc64le
ExclusiveArch: aarch64 %ix86 x86_64 %arm ppc64 ppc64le s390x

%go_provides \
%if 0%{?suse_version} <= 1110 \
Expand Down

0 comments on commit cddb786

Please sign in to comment.