forked from pool/aaa_base
Accepting request 546407 from Base:System
- Update to version 84.87+git20171129.a45b936: * Remove RC_* variables from language sysconf template (bsc#1069971 as well as FATE#319454) - Update to version 84.87+git20171128.945b960: * lang.(c)sh: catch if ROOT_USES_LANG becomes not set - Update to version 84.87+git20171128.aa232d3: * Add wsl specific code to profile.d/wsl.csh * move wsl specific code from profile into profile.d/wsl.sh * Remove obsolete "make package" - Update to version 84.87+git20171128.a6752e8: * lang.(c)sh: handle locale.conf if sysconfig does not - lang.(c)sh: handle locale.conf if sysconfig does not provide default locale (bsc#1069971, FATE#319454) - Update to version 84.87+git20171128.17ae554: * Check for /proc/version before using it * Remove legacy code for /proc/iSeries * Move fillup-templates to /usr/share (boo#1069468) - Fix installation of fillup-templates. - Replace references to /var/adm/fillup-templates with new OBS-URL: https://build.opensuse.org/request/show/546407 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/aaa_base?expand=0&rev=440
This commit is contained in:
commit
462c25fa40
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">git://github.com/openSUSE/aaa_base.git</param>
|
||||
<param name="changesrevision">d36b8b114ae6d2526b414aa1cbe8b44e5dfafe49</param></service></servicedata>
|
||||
<param name="changesrevision">a45b9366c8d8aa8c616656fe8b2b6809e99104f9</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b0245b969dec8c1a9aba3ba71d57828cbf2c7cc1efbd1538b19c3e4ce01bd62e
|
||||
size 80532
|
3
aaa_base-84.87+git20171129.a45b936.tar.xz
Normal file
3
aaa_base-84.87+git20171129.a45b936.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:91d4affc9372bf82e545a0a3d7418bbcced7c837fa570872418a2048cf26f87b
|
||||
size 78800
|
@ -1,3 +1,49 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 29 11:27:37 UTC 2017 - opensuse-packaging@opensuse.org
|
||||
|
||||
- Update to version 84.87+git20171129.a45b936:
|
||||
* Remove RC_* variables from language sysconf template
|
||||
(bsc#1069971 as well as FATE#319454)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 28 16:17:16 UTC 2017 - opensuse-packaging@opensuse.org
|
||||
|
||||
- Update to version 84.87+git20171128.945b960:
|
||||
* lang.(c)sh: catch if ROOT_USES_LANG becomes not set
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 28 15:20:53 UTC 2017 - opensuse-packaging@opensuse.org
|
||||
|
||||
- Update to version 84.87+git20171128.aa232d3:
|
||||
* Add wsl specific code to profile.d/wsl.csh
|
||||
* move wsl specific code from profile into profile.d/wsl.sh
|
||||
* Remove obsolete "make package"
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 28 11:49:03 UTC 2017 - opensuse-packaging@opensuse.org
|
||||
|
||||
- Update to version 84.87+git20171128.a6752e8:
|
||||
* lang.(c)sh: handle locale.conf if sysconfig does not
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 28 10:54:12 UTC 2017 - werner@suse.de
|
||||
|
||||
- lang.(c)sh: handle locale.conf if sysconfig does not provide
|
||||
default locale (bsc#1069971, FATE#319454)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 28 08:51:38 UTC 2017 - lnussel@suse.de
|
||||
|
||||
- Update to version 84.87+git20171128.17ae554:
|
||||
* Check for /proc/version before using it
|
||||
* Remove legacy code for /proc/iSeries
|
||||
* Move fillup-templates to /usr/share (boo#1069468)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 27 08:44:34 UTC 2017 - dimstar@opensuse.org
|
||||
|
||||
- Fix installation of fillup-templates.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 23 13:39:19 UTC 2017 - rbrown@suse.com
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
%endif
|
||||
|
||||
Name: aaa_base
|
||||
Version: 84.87+git20171120.d36b8b1
|
||||
Version: 84.87+git20171129.a45b936
|
||||
Release: 0
|
||||
Url: https://github.com/openSUSE/aaa_base
|
||||
Provides: aaa_skel = %{version}-%{release}
|
||||
@ -135,6 +135,22 @@ install -d -m 755 %buildroot/usr/lib/initscripts/legacy-actions
|
||||
# keep as ghost for migration
|
||||
touch %buildroot/etc/inittab
|
||||
|
||||
mkdir -p %{buildroot}%{_fillupdir}
|
||||
%if "%{_fillupdir}" != "/var/adm/fillup-templates"
|
||||
for f in %{buildroot}/var/adm/fillup-templates/* ; do
|
||||
test -e "$f" || continue
|
||||
mv $f %{buildroot}%{_fillupdir}/
|
||||
done
|
||||
rm -vrf %{buildroot}/var/adm/fillup-templates
|
||||
%endif
|
||||
%if "%{_fillupdir}" != "/usr/share/fillup-templates"
|
||||
for f in %{buildroot}/usr/share/fillup-templates/* ; do
|
||||
test -e "$f" || continue
|
||||
mv $f %{buildroot}%{_fillupdir}/
|
||||
done
|
||||
rm -vrf %{buildroot}/usr/share/fillup-templates
|
||||
%endif
|
||||
|
||||
%pre -f aaa_base.pre
|
||||
|
||||
%post -f aaa_base.post
|
||||
@ -245,6 +261,7 @@ rm -f /root/.gnupg/secring.gpg.aaa_save
|
||||
|
||||
%files wsl
|
||||
%defattr(-,root,root)
|
||||
%config /etc/profile.d/wsl.csh
|
||||
%config /etc/profile.d/wsl.sh
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user