This repository has been archived by the owner on Dec 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
piper.spec
70 lines (46 loc) · 1.76 KB
/
piper.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
###############################################################################
# rpmbuilder:relative-pack true
###############################################################################
%define debug_package %{nil}
###############################################################################
Summary: Utility for log rotation for 12-factor apps
Name: piper
Version: 1.1.1
Release: 0%{?dist}
Group: Development/Tools
License: MIT
URL: https://github.com/gongled/piper
Source0: %{name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: golang >= 1.8
Provides: %{name} = %{version}-%{release}
###############################################################################
%description
%{name} is a tiny and ease-to-use utility for log rotation for 12-factor apps
that write their logs to stdout.
###############################################################################
%prep
%setup -q
%build
mkdir src && mv {github.com,pkg.re} src
export GOPATH=$(pwd)
pushd src/github.com/gongled/%{name}/
%{__make} %{?_smp_mflags} all
popd
%install
rm -rf %{buildroot}
install -dm 755 %{buildroot}%{_bindir}/
install -pm 755 src/github.com/gongled/%{name}/%{name} \
%{buildroot}%{_bindir}/
%clean
rm -rf %{buildroot}
###############################################################################
%files
%defattr(-,root,root,-)
%{_bindir}/%{name}
###############################################################################
%changelog
* Mon Nov 20 2017 Gleb Goncharov <[email protected]> - 1.1.1-0
- Updated to the latest release.
* Fri Oct 27 2017 Gleb Goncharov <[email protected]> - 1.0.0-0
- Initial build.