# Generated by go2rpm # Consumes too much memory %bcond_with check # https://github.com/etcd-io/bbolt %global goipath go.etcd.io/bbolt %global forgeurl https://github.com/etcd-io/bbolt Version: 1.3.2 %gometa %global goaltipaths github.com/coreos/bbolt %global common_description %{expand: Package Bbolt implements a low-level key/value store in pure Go. It supports fully serializable transactions, ACID semantics, and lock-free MVCC with multiple readers and a single writer. Bolt can be used for projects that want a simple data store without the need to add large dependencies such as Postgres or MySQL. Bolt is a single-level, zero-copy, B+tree data store. This means that Bolt is optimized for fast read access and does not require recovery in the event of a system crash. Transactions which have not finished committing will simply be rolled back in the event of a crash. The design of Bolt is based on Howard Chu's LMDB database project.} %global golicenses LICENSE %global godocs README.md Name: %{goname} Release: 3%{?dist} Summary: Embedded key/value database for Go License: MIT URL: %{gourl} Source0: %{gosource} %description %{common_description} %gopkg %prep %goprep %build for cmd in cmd/* ; do %gobuild -o %{gobuilddir}/bin/$(basename $cmd) %{goipath}/$cmd done %install %gopkginstall install -m 0755 -vd %{buildroot}%{_bindir} install -m 0755 -vp %{gobuilddir}/bin/* %{buildroot}%{_bindir}/ %if %{with check} %check %gocheck %endif %files %license %{golicenses} %doc %{godocs} %{_bindir}/* %gopkgfiles %changelog * Sat Apr 27 16:44:29 CEST 2019 Robert-André Mauchin - 1.3.2-3 - Update to new macros * Wed Mar 06 2019 Robert-André Mauchin - 1.3.2-2 - Update to release v1.3.2 - New import path go.etcd.io/bbolt * Fri Jul 13 2018 Fedora Release Engineering - 1.3.1-0.3.coreos.5.20180309git32c383e - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Sat Jun 09 2018 Jan Chaloupka - 1.3.1-0.2.coreos.5.20180309git32c383e - Upload glide files * Fri Mar 09 2018 Jan Chaloupka - 1.3.1-0.1.coreos.5.20180309git32c383e - First package for Fedora resolves: #1553730