Accepting request 593983 from Base:System

->

OBS-URL: https://build.opensuse.org/request/show/593983
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/rpm?expand=0&rev=260
This commit is contained in:
Yuchen Lin 2018-04-10 07:52:29 +00:00 committed by Git OBS Bridge
commit 5c1a3c3996
4 changed files with 13 additions and 6 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Apr 6 14:11:01 CEST 2018 - mls@suse.de
- remove rpmlint-Factory buildignore
-------------------------------------------------------------------
Tue Mar 20 13:59:45 UTC 2018 - tchvatal@suse.com

View File

@ -41,7 +41,6 @@ BuildRequires: popt-devel
BuildRequires: python-rpm-macros
BuildRequires: xz-devel
BuildRequires: zlib-devel
#!BuildIgnore: rpmlint-Factory
Requires: rpm = %{version}
%{expand:%(sed -n -e '/^Source:/,/^BuildRoot:/p' <%{_sourcedir}/rpm.spec)}
%if "%{python_flavor}" == "python2"

View File

@ -222,11 +222,8 @@
# for %post
%install_info(:-:) \
ALL_ARGS=(%{**}) \
NUM_ARGS=${#ALL_ARGS[@]} \
if test -x /sbin/install-info ; then \
if test -e "${ALL_ARGS[$((NUM_ARGS-1))]}" ; then \
/sbin/install-info "${ALL_ARGS[@]}" \
fi \
/sbin/install-info "${ALL_ARGS[@]}" || : \
fi ;
# for %preun
@ -234,7 +231,7 @@
test -n "$FIRST_ARG" || FIRST_ARG=$1 \
if test -x /sbin/install-info ; then \
if [ "$FIRST_ARG" = 0 ]; then \
/sbin/install-info --quiet --delete %{**} \
/sbin/install-info --quiet --delete %{**} || : \
fi ; \
fi ;

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Fri Apr 6 10:05:18 UTC 2018 - adam.majer@suse.de
- %install_info: if we are going to fail, at least fail on install
not on attempted upgrades or uninstall [bsc#1084997]
-------------------------------------------------------------------
Tue Mar 27 14:31:28 CEST 2018 - mls@suse.de