Hello community, here is the log from the commit of package go for openSUSE:Factory checked in at 2015-08-13 18:10:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/go (Old) and /work/SRC/openSUSE:Factory/.go.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "go" Changes: -------- --- /work/SRC/openSUSE:Factory/go/go.changes 2015-07-23 15:23:02.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.go.new/go.changes 2015-08-13 18:10:49.000000000 +0200 @@ -1,0 +2,14 @@ +Tue Aug 11 16:06:28 UTC 2015 - [email protected] + +- fix update from 1.3.3 + + Update from 1.3.3 was broken in this commit + + https://build.opensuse.org/package/rdiff/devel:languages:go/go?linkrev=base&rev=205 + + That commit fixed a dangling symlink in src (src/pkg) by instead + symlinking src, which broke compatibility. + + This commit fixes it by, instead, symlinking all the files in src. + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ go.spec ++++++ --- /var/tmp/diff_new_pack.gJOgLa/_old 2015-08-13 18:10:50.000000000 +0200 +++ /var/tmp/diff_new_pack.gJOgLa/_new 2015-08-13 18:10:50.000000000 +0200 @@ -150,8 +150,10 @@ for ext in *.{go,c,h,s,S,py}; do find src -name ${ext} -exec install -Dm644 \{\} %{buildroot}%{_datadir}/go/\{\} \; done -mkdir -p $GOROOT -ln -s /usr/share/go/src $GOROOT/src +mkdir -p $GOROOT/src +for i in $(ls %{buildroot}/usr/share/go/src);do + ln -s /usr/share/go/src/$i $GOROOT/src/$i +done # copy document templates, packages, obj libs and command utilities mkdir -p %{buildroot}%{_bindir}
