- bnc#845534
- fixed internal error which appeared when attempting to add an alias - 3.1.2 - 3.0.7 OBS-URL: https://build.opensuse.org/package/show/YaST:Head/yast2-network?expand=0&rev=476
This commit is contained in:
parent
8594aead7f
commit
0c59ddb5b9
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:108878feffaee9540344734222be241be36664a384f07ad4029a38f28456eb66
|
|
||||||
size 294255
|
|
3
yast2-network-3.1.2.tar.bz2
Normal file
3
yast2-network-3.1.2.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0c09914d6e54dfc5538697fc8fe8d99e2aba9c9d57d976212a67d67da351741c
|
||||||
|
size 281511
|
@ -1,10 +1,34 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 16 07:09:13 UTC 2013 - mfilka@suse.com
|
||||||
|
|
||||||
|
- bnc#845534
|
||||||
|
- fixed internal error which appeared when attempting to add an
|
||||||
|
alias
|
||||||
|
- 3.1.2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Sep 25 07:00:21 UTC 2013 - mfilka@suse.com
|
||||||
|
|
||||||
|
- bnc#572202
|
||||||
|
- separated IP forwarding enablement for IPv4 and IPv6 because
|
||||||
|
IPv6 forwarding disables IPv6 stateless address autoconfiguration
|
||||||
|
(SLAAC)
|
||||||
|
- 3.1.1
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 19 11:23:14 UTC 2013 - lslezak@suse.cz
|
||||||
|
|
||||||
|
- do not use *.spec.in template, use *.spec file with RPM macros
|
||||||
|
instead
|
||||||
|
- 3.1.0
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 18 09:12:23 UTC 2013 - mfilka@suse.com
|
Wed Sep 18 09:12:23 UTC 2013 - mfilka@suse.com
|
||||||
|
|
||||||
- Refactoring
|
- Refactoring
|
||||||
- removing ycp artifacts
|
- removing ycp artifacts
|
||||||
- separated dialog for editing nic name into own class
|
- separated dialog for editing nic name into own class
|
||||||
- 3.0.7
|
- 3.0.7
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Sep 11 09:34:47 UTC 2013 - mfilka@suse.com
|
Wed Sep 11 09:34:47 UTC 2013 - mfilka@suse.com
|
||||||
|
@ -17,11 +17,11 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: yast2-network
|
Name: yast2-network
|
||||||
Version: 3.0.7
|
Version: 3.1.2
|
||||||
Release: 0
|
Release: 0
|
||||||
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Source0: yast2-network-%{version}.tar.bz2
|
Source0: %{name}-%{version}.tar.bz2
|
||||||
|
|
||||||
# should be required by devtools
|
# should be required by devtools
|
||||||
BuildRequires: perl-XML-Writer
|
BuildRequires: perl-XML-Writer
|
||||||
@ -29,7 +29,7 @@ BuildRequires: pkgconfig
|
|||||||
BuildRequires: rpm
|
BuildRequires: rpm
|
||||||
BuildRequires: update-desktop-files
|
BuildRequires: update-desktop-files
|
||||||
BuildRequires: yast2-country
|
BuildRequires: yast2-country
|
||||||
BuildRequires: yast2-devtools
|
BuildRequires: yast2-devtools >= 3.0.6
|
||||||
BuildRequires: yast2-installation >= 2.15.27
|
BuildRequires: yast2-installation >= 2.15.27
|
||||||
BuildRequires: yast2-testsuite
|
BuildRequires: yast2-testsuite
|
||||||
|
|
||||||
@ -49,6 +49,9 @@ Requires: yast2-country-data >= 2.16.3
|
|||||||
BuildRequires: yast2-storage >= 2.21.11
|
BuildRequires: yast2-storage >= 2.21.11
|
||||||
Requires: yast2-storage >= 2.21.11
|
Requires: yast2-storage >= 2.21.11
|
||||||
|
|
||||||
|
# testsuite
|
||||||
|
BuildRequires: rubygem-rspec
|
||||||
|
|
||||||
PreReq: /bin/rm
|
PreReq: /bin/rm
|
||||||
|
|
||||||
# carrier detection
|
# carrier detection
|
||||||
@ -71,39 +74,21 @@ This package contains the YaST2 component for network configuration.
|
|||||||
This package contains autogenerated documentation for yast2-network
|
This package contains autogenerated documentation for yast2-network
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -n yast2-network-%{version}
|
%setup -n %{name}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{_prefix}/bin/y2tool y2autoconf
|
%yast_build
|
||||||
%{_prefix}/bin/y2tool y2automake
|
|
||||||
autoreconf --force --install
|
|
||||||
|
|
||||||
export CFLAGS="$RPM_OPT_FLAGS -DNDEBUG"
|
|
||||||
export CXXFLAGS="$RPM_OPT_FLAGS -DNDEBUG"
|
|
||||||
|
|
||||||
./configure --libdir=%{_libdir} --prefix=%{_prefix} --mandir=%{_mandir}
|
|
||||||
# V=1: verbose build in case we used AM_SILENT_RULES(yes)
|
|
||||||
# so that RPM_OPT_FLAGS check works
|
|
||||||
make %{?jobs:-j%jobs} V=1
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make install DESTDIR="$RPM_BUILD_ROOT"
|
%yast_install
|
||||||
[ -e "%{_prefix}/share/YaST2/data/devtools/NO_MAKE_CHECK" ] || Y2DIR="$RPM_BUILD_ROOT/usr/share/YaST2" make check DESTDIR="$RPM_BUILD_ROOT"
|
|
||||||
for f in `find $RPM_BUILD_ROOT/%{_prefix}/share/applications/YaST2/ -name "*.desktop"` ; do
|
|
||||||
d=${f##*/}
|
|
||||||
%suse_update_desktop_file -d ycc_${d%.desktop} ${d%.desktop}
|
|
||||||
done
|
|
||||||
|
|
||||||
%ifarch s390 s390x
|
%ifarch s390 s390x
|
||||||
/bin/rm -f $RPM_BUILD_ROOT/%{_prefix}/share/applications/YaST2/dsl.desktop
|
/bin/rm -f $RPM_BUILD_ROOT/%{yast_desktopdir}/dsl.desktop
|
||||||
/bin/rm -f $RPM_BUILD_ROOT/%{_prefix}/share/applications/YaST2/isdn.desktop
|
/bin/rm -f $RPM_BUILD_ROOT/%{yast_desktopdir}/isdn.desktop
|
||||||
/bin/rm -f $RPM_BUILD_ROOT/%{_prefix}/share/applications/YaST2/modem.desktop
|
/bin/rm -f $RPM_BUILD_ROOT/%{yast_desktopdir}/modem.desktop
|
||||||
%endif
|
%endif
|
||||||
/bin/rm -f $RPM_BUILD_ROOT/%{_prefix}/share/applications/YaST2/network.desktop
|
/bin/rm -f $RPM_BUILD_ROOT/%{yast_desktopdir}/network.desktop
|
||||||
/bin/rm -f $RPM_BUILD_ROOT/%{_prefix}/share/applications/YaST2/provider.desktop
|
/bin/rm -f $RPM_BUILD_ROOT/%{yast_desktopdir}/provider.desktop
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf "$RPM_BUILD_ROOT"
|
|
||||||
|
|
||||||
%post -p /bin/bash
|
%post -p /bin/bash
|
||||||
# This fixes the files that were touched when #24842 was in effect.
|
# This fixes the files that were touched when #24842 was in effect.
|
||||||
@ -117,28 +102,27 @@ fi
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_prefix}/lib/YaST2/bin/*
|
%{yast_ybindir}/*
|
||||||
/usr/share/YaST2/data/*
|
%{yast_ydatadir}/*
|
||||||
/usr/share/YaST2/include/network
|
%{yast_yncludedir}/network
|
||||||
/usr/share/YaST2/clients/*.rb
|
%{yast_clientdir}/*.rb
|
||||||
/usr/share/YaST2/modules/YaPI/NETWORK.pm
|
%{yast_moduledir}/YaPI/NETWORK.pm
|
||||||
/usr/share/YaST2/modules/*.rb
|
%{yast_moduledir}/*.rb
|
||||||
%{_prefix}/share/applications/YaST2/*.desktop
|
%{yast_desktopdir}/*.desktop
|
||||||
/usr/share/YaST2/scrconf/*.scr
|
%{yast_scrconfdir}/*.scr
|
||||||
/usr/lib/YaST2/servers_non_y2/ag_udev_persistent
|
%{yast_agentdir}/ag_udev_persistent
|
||||||
/usr/share/YaST2/schema/autoyast/rnc/networking.rnc
|
%{yast_schemadir}/autoyast/rnc/networking.rnc
|
||||||
/usr/share/YaST2/schema/autoyast/rnc/host.rnc
|
%{yast_schemadir}/autoyast/rnc/host.rnc
|
||||||
/usr/share/YaST2/lib/
|
%dir %{_datadir}/YaST2/lib/
|
||||||
/usr/share/YaST2/lib/network
|
%{_datadir}/YaST2/lib/network/
|
||||||
|
|
||||||
%dir %{_prefix}/share/doc/packages/yast2-network
|
%dir %{yast_docdir}
|
||||||
%{_prefix}/share/doc/packages/yast2-network/COPYING
|
%{yast_docdir}/COPYING
|
||||||
%readme %{_prefix}/share/doc/packages/yast2-network/README
|
|
||||||
|
|
||||||
%files devel-doc
|
%files devel-doc
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc %{_prefix}/share/doc/packages/yast2-network
|
%doc %{yast_docdir}
|
||||||
%exclude %{_prefix}/share/doc/packages/yast2-network/COPYING
|
%exclude %{yast_docdir}/COPYING
|
||||||
%exclude %{_prefix}/share/doc/packages/yast2-network/README
|
%exclude %{yast_docdir}/README
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user