[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542

Lokesh Mandvekar  changed:

   What|Removed |Added

Summary|Review Request: |Review Request: go-bindata
   |golang-github-jteeuwen-go-b |- A small utility which
   |indata - A small utility|generates Go code from any
   |which generates Go code |file
   |from any file   |
  Flags|needinfo?(l...@redhat.com)  |



--- Comment #7 from Lokesh Mandvekar  ---
(In reply to Matthew Miller from comment #6)
> Except the package should actually be renamed to "go-bindata". :)

yup :)

%changelog
* Mon Oct 14 2013 Lokesh Mandvekar   0-0.3.git79847ab
- package name change to go-bindata


Spec URL: http://lsm5.fedorapeople.org/rpmbuild/SPECS/go-bindata.spec
SRPM URL:
http://lsm5.fedorapeople.org/rpmbuild/SRPMS/go-bindata-0-0.3.git79847ab.fc21.src.rpm

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542

Matthew Miller  changed:

   What|Removed |Added

  Flags||fedora-review+



--- Comment #8 from Matthew Miller  ---
Looks good. As with all of the Go packages this may need to be updated as the
draft packaging guidelines are developed.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542

Lokesh Mandvekar  changed:

   What|Removed |Added

  Flags||fedora-cvs?



--- Comment #9 from Lokesh Mandvekar  ---
New Package SCM Request
===
Package Name: go-bindata
Short Description: A small utility which generates Go code from any file
Owners: lsm5
Branches: f19 f20 el6
InitialCC:

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542

Matthew Miller  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED



-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542

Jens Petersen  changed:

   What|Removed |Added

  Flags|fedora-cvs? |fedora-cvs+



-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-14 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542



--- Comment #10 from Jens Petersen  ---
Git done (by process-git-requests).

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-16 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542



--- Comment #11 from Vincent Batts  ---
(In reply to Matthew Miller from comment #4)
> I think this should do it for the %build section:
> 
> 
> %build
> 
> mkdir -p src/github.com/jteeuwen/
> ln -s $(pwd) src/github.com/jteeuwen/go-bindata
> export GOPATH=$(pwd)
> go build -v -a

does this still build fine if the rpm is installed on the host that is trying
to do a new build of the RPM?
Is setting of GOBIN needed? or passing '-o %{buildroot}/usr/bin/go-bindata' to
go build?

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-16 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542



--- Comment #12 from Matthew Miller  ---
(In reply to Vincent Batts from comment #11)
> does this still build fine if the rpm is installed on the host that is
> trying to do a new build of the RPM?
> Is setting of GOBIN needed? or passing '-o %{buildroot}/usr/bin/go-bindata'
> to go build?

I'm pretty sure go-bindata just needs to be in the path. However, I see that
etcd's mod/dashboard build script wants to build the binary into $PWD (not even
$GOBIN!) and calls it as ./go-bindata.

We should either patch or ignore that build script (which we'll have to do
anyway because it's got other oddities).

Let me know if I'm missing something here.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-18 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542



--- Comment #13 from Lokesh Mandvekar  ---
(In reply to Vincent Batts from comment #11)
> 
> does this still build fine if the rpm is installed on the host that is
> trying to do a new build of the RPM?
> Is setting of GOBIN needed? or passing '-o %{buildroot}/usr/bin/go-bindata'
> to go build?

It does build fine when already installed.

I'm guessing everything else is good to go for this package (?)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-18 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542



--- Comment #14 from Lokesh Mandvekar  ---
%changelog
* Fri Oct 18 2013 Lokesh Mandvekar   0-0.4.git79847ab
- buildrequires golang

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-18 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542



--- Comment #15 from Matthew Miller  ---
Yeah I think it's just waiting builds :)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-18 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542

Fedora Update System  changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED



-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-18 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542



--- Comment #16 from Fedora Update System  ---
go-bindata-0-0.4.git79847ab.fc20 has been submitted as an update for Fedora 20.
https://admin.fedoraproject.org/updates/go-bindata-0-0.4.git79847ab.fc20

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-18 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542



--- Comment #17 from Fedora Update System  ---
go-bindata-0-0.4.git79847ab.fc19 has been submitted as an update for Fedora 19.
https://admin.fedoraproject.org/updates/go-bindata-0-0.4.git79847ab.fc19

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-18 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542



--- Comment #18 from Fedora Update System  ---
go-bindata-0-0.4.git79847ab.el6 has been submitted as an update for Fedora EPEL
6.
https://admin.fedoraproject.org/updates/go-bindata-0-0.4.git79847ab.el6

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-18 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542

Lokesh Mandvekar  changed:

   What|Removed |Added

 Status|MODIFIED|CLOSED
 Resolution|--- |RAWHIDE
Last Closed||2013-10-18 14:24:54



-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-18 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542

Fedora Update System  changed:

   What|Removed |Added

 Status|CLOSED  |ON_QA
 Resolution|RAWHIDE |---
   Keywords||Reopened



--- Comment #19 from Fedora Update System  ---
go-bindata-0-0.4.git79847ab.fc20 has been pushed to the Fedora 20 testing
repository.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542

Peter Lemenkov  changed:

   What|Removed |Added

  Flags|fedora-cvs+ |fedora-cvs?



--- Comment #20 from Peter Lemenkov  ---
Package Change Request
==
Package Name: go-bindata
InitialCC: golang-sig

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542

Jon Ciesla  changed:

   What|Removed |Added

  Flags|fedora-cvs? |



-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542



--- Comment #21 from Jon Ciesla  ---
Done.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-10-28 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version||go-bindata-0-0.4.git79847ab
   ||.fc19
 Resolution|--- |ERRATA
Last Closed|2013-10-18 14:24:54 |2013-10-28 23:41:22



--- Comment #22 from Fedora Update System  ---
go-bindata-0-0.4.git79847ab.fc19 has been pushed to the Fedora 19 stable
repository.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-11-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542

Fedora Update System  changed:

   What|Removed |Added

   Fixed In Version|go-bindata-0-0.4.git79847ab |go-bindata-0-0.4.git79847ab
   |.fc19   |.el6



--- Comment #23 from Fedora Update System  ---
go-bindata-0-0.4.git79847ab.el6 has been pushed to the Fedora EPEL 6 stable
repository.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review

[Bug 1018542] Review Request: go-bindata - A small utility which generates Go code from any file

2013-11-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1018542

Fedora Update System  changed:

   What|Removed |Added

   Fixed In Version|go-bindata-0-0.4.git79847ab |go-bindata-0-0.4.git79847ab
   |.el6|.fc20



--- Comment #24 from Fedora Update System  ---
go-bindata-0-0.4.git79847ab.fc20 has been pushed to the Fedora 20 stable
repository.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list
package-review@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/package-review