forked from pool/post-build-checks
Accepting request 1056691 from Base:System
- Update to version 84.87+git20230106.3a359c5: * Only delete subarch packages if matching main arch exists - Add hook to delete x86_64 subarches - fix version in git OBS-URL: https://build.opensuse.org/request/show/1056691 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/post-build-checks?expand=0&rev=109
This commit is contained in:
commit
3ec35ed9e7
@ -4,4 +4,4 @@
|
|||||||
<param name="changesrevision">9a72096c56008474c812a087e25d6e84eb357297</param></service>
|
<param name="changesrevision">9a72096c56008474c812a087e25d6e84eb357297</param></service>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">https://github.com/openSUSE/post-build-checks.git</param>
|
<param name="url">https://github.com/openSUSE/post-build-checks.git</param>
|
||||||
<param name="changesrevision">a8b2d0e5fda7010d8d1120e6be8ca3c038f3b78c</param></service></servicedata>
|
<param name="changesrevision">3a359c57f371bceb4ee3ef9e7ce97daa13a237b5</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f985629a7be3f8e48db010f910696d567660fa3582b6b66bfdbb758dfd2c806a
|
|
||||||
size 32764
|
|
3
post-build-checks-84.87+git20230106.3a359c5.tar.xz
Normal file
3
post-build-checks-84.87+git20230106.3a359c5.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0145eb45c130b4173dbc3964f52922e33c673cab900320bf4e24f9728f136cb9
|
||||||
|
size 32924
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 06 20:25:08 UTC 2023 - dmueller@suse.com
|
||||||
|
|
||||||
|
- Update to version 84.87+git20230106.3a359c5:
|
||||||
|
* Only delete subarch packages if matching main arch exists
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 21 12:42:57 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- Add hook to delete x86_64 subarches
|
||||||
|
- fix version in git
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Nov 25 12:59:11 UTC 2022 - ro@suse.de
|
Fri Nov 25 12:59:11 UTC 2022 - ro@suse.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package post-build-checks
|
# spec file for package post-build-checks
|
||||||
#
|
#
|
||||||
# Copyright (c) 2022 SUSE LLC
|
# Copyright (c) 2023 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,13 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define version_unconverted 84.87+git20221125.a8b2d0e
|
|
||||||
|
|
||||||
Name: post-build-checks
|
Name: post-build-checks
|
||||||
Summary: post checks for build after rpms have been created
|
Summary: post checks for build after rpms have been created
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
Version: 84.87+git20221125.a8b2d0e
|
Version: 84.87+git20230106.3a359c5
|
||||||
Release: 0
|
Release: 0
|
||||||
PreReq: aaa_base
|
PreReq: aaa_base
|
||||||
PreReq: permissions
|
PreReq: permissions
|
||||||
@ -39,7 +37,6 @@ URL: https://github.com/openSUSE/post-build-checks
|
|||||||
#
|
#
|
||||||
Source0: %{name}-%{version}.tar.xz
|
Source0: %{name}-%{version}.tar.xz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
some scripts to check for problems like test-installing the newly
|
some scripts to check for problems like test-installing the newly
|
||||||
@ -59,10 +56,12 @@ it may not be a good idea to install this to a running system:
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
install -d $RPM_BUILD_ROOT/usr/lib/build/checks
|
install -d $RPM_BUILD_ROOT/usr/lib/build/checks
|
||||||
|
install -d $RPM_BUILD_ROOT/usr/lib/build/post-mkbaselibs-checks
|
||||||
install -d $RPM_BUILD_ROOT/usr/lib/build/checks-data
|
install -d $RPM_BUILD_ROOT/usr/lib/build/checks-data
|
||||||
install -d $RPM_BUILD_ROOT/usr/lib/build/helper
|
install -d $RPM_BUILD_ROOT/usr/lib/build/helper
|
||||||
install -d $RPM_BUILD_ROOT/usr/lib/build/finalize-system
|
install -d $RPM_BUILD_ROOT/usr/lib/build/finalize-system
|
||||||
install -m 755 checks/* $RPM_BUILD_ROOT/usr/lib/build/checks
|
install -m 755 checks/* $RPM_BUILD_ROOT/usr/lib/build/checks
|
||||||
|
install -m 755 post-mkbaselibs-checks/* $RPM_BUILD_ROOT/usr/lib/build/post-mkbaselibs-checks
|
||||||
install -m 644 checks-data/* $RPM_BUILD_ROOT/usr/lib/build/checks-data
|
install -m 644 checks-data/* $RPM_BUILD_ROOT/usr/lib/build/checks-data
|
||||||
install -m 755 helper/* $RPM_BUILD_ROOT/usr/lib/build/helper
|
install -m 755 helper/* $RPM_BUILD_ROOT/usr/lib/build/helper
|
||||||
install -m 755 finalize-system/* $RPM_BUILD_ROOT/usr/lib/build/finalize-system
|
install -m 755 finalize-system/* $RPM_BUILD_ROOT/usr/lib/build/finalize-system
|
||||||
@ -71,7 +70,6 @@ install -m 644 -D suse-ignored-rpaths.conf $RPM_BUILD_ROOT/etc/suse-ignored-rpat
|
|||||||
chmod 755 $RPM_BUILD_ROOT/usr/lib/build/checks-data/check*
|
chmod 755 $RPM_BUILD_ROOT/usr/lib/build/checks-data/check*
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-, root, root)
|
|
||||||
%license COPYING
|
%license COPYING
|
||||||
/usr/lib/build
|
/usr/lib/build
|
||||||
/etc/profile.d/suse-buildsystem.sh
|
/etc/profile.d/suse-buildsystem.sh
|
||||||
|
Loading…
Reference in New Issue
Block a user