-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Liming Sun <[email protected]>
- Loading branch information
Showing
3 changed files
with
15 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,11 +28,10 @@ via the virtual console or network interface. | |
%build | ||
./bootstrap.sh | ||
%configure | ||
make | ||
%make_build | ||
|
||
%install | ||
%make_install | ||
%__spec_install_post | ||
|
||
%post | ||
%systemd_post rshim.service | ||
|
@@ -51,6 +50,12 @@ make | |
%{_mandir}/man8/rshim.8.gz | ||
|
||
%changelog | ||
* Thu Apr 09 2020 Liming Sun <[email protected]> - 2.0.2-1 | ||
- Remove unnecessary dependency in .spec and use make_build | ||
- Add package build for debian/ubuntu | ||
- Fix some format in the man page | ||
- Add check for syslog headers | ||
|
||
* Mon Mar 23 2020 Liming Sun <[email protected]> - 2.0.1-1 | ||
- Rename bfrshim to rshim | ||
- Remove rshim.spec since it's auto-generated from rshim.spec.in | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ tar -axf %{SOURCE0} -C %{name}-%{version} --strip-components 1 | |
%build | ||
./bootstrap.sh | ||
%configure | ||
make | ||
%make_build | ||
|
||
%install | ||
%undefine _missing_build_ids_terminate_build | ||
|
@@ -42,7 +42,6 @@ make | |
%endif | ||
%{__install} -d %{buildroot}%{_mandir}/man8 | ||
%{__install} -m 0644 man/rshim.8 %{buildroot}%{_mandir}/man8 | ||
%__spec_install_post | ||
|
||
%post | ||
%if "%{with_systemd}" == "1" | ||
|
@@ -69,6 +68,12 @@ make | |
%{_mandir}/man8/rshim.8.gz | ||
|
||
%changelog | ||
* Thu Apr 09 2020 Liming Sun <[email protected]> - 2.0.2-1 | ||
- Remove unnecessary dependency in .spec and use make_build | ||
- Add package build for debian/ubuntu | ||
- Fix some format in the man page | ||
- Add check for syslog headers | ||
|
||
* Mon Mar 23 2020 Liming Sun <[email protected]> - 2.0.1-1 | ||
- Rename bfrshim to rshim | ||
- Remove rshim.spec since it's auto-generated from rshim.spec.in | ||
|