forked from pool/yast2-proxy
Accepting request 312276 from YaST:Head
submit new version 3.1.6 OBS-URL: https://build.opensuse.org/request/show/312276 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yast2-proxy?expand=0&rev=14
This commit is contained in:
commit
d421a1190b
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a4a03c6011c41a2432d1791ab27ce18ec777c3384a4a2fab428c9ec86e392260
|
|
||||||
size 25404
|
|
3
yast2-proxy-3.1.6.tar.bz2
Normal file
3
yast2-proxy-3.1.6.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0b0f25f52901027025cfbca70add92d9dc06e408ec1dad955083eb685a915e8f
|
||||||
|
size 24422
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jun 12 16:13:53 UTC 2015 - mvidner@suse.com
|
||||||
|
|
||||||
|
- If PROXY_ENABLED is not set, interpret it as disabled,
|
||||||
|
like the rest of the system does (boo#934925).
|
||||||
|
- Internal cleanups:
|
||||||
|
- Got rid of autotools.
|
||||||
|
- Converted legacy testsuite to RSpec.
|
||||||
|
- Moved code out of clients for better testability.
|
||||||
|
- 3.1.6
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 11 12:01:30 UTC 2015 - mvidner@suse.com
|
||||||
|
|
||||||
|
- Fixed the last change not to crash with "internal error in
|
||||||
|
WriteCurlrc" when installing with a proxy (boo#929868).
|
||||||
|
- 3.1.5
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 9 15:35:53 UTC 2015 - mvidner@suse.com
|
Thu Apr 9 15:35:53 UTC 2015 - mvidner@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package yast2-proxy
|
# spec file for package yast2-proxy
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# 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
|
||||||
@ -17,20 +17,16 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: yast2-proxy
|
Name: yast2-proxy
|
||||||
Version: 3.1.4
|
Version: 3.1.6
|
||||||
Release: 0
|
Release: 0
|
||||||
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Source0: %{name}-%{version}.tar.bz2
|
Source0: %{name}-%{version}.tar.bz2
|
||||||
|
|
||||||
# should be required by devtools
|
|
||||||
BuildRequires: perl-XML-Writer
|
|
||||||
BuildRequires: pkgconfig
|
|
||||||
BuildRequires: rpm
|
|
||||||
BuildRequires: update-desktop-files
|
BuildRequires: update-desktop-files
|
||||||
BuildRequires: yast2-devtools >= 3.1.10
|
BuildRequires: yast2-buildtools >= 3.1.10
|
||||||
BuildRequires: yast2-testsuite
|
|
||||||
BuildRequires: rubygem(rspec)
|
BuildRequires: rubygem(rspec)
|
||||||
|
BuildRequires: rubygem(yast-rake)
|
||||||
|
|
||||||
BuildRequires: yast2
|
BuildRequires: yast2
|
||||||
Requires: yast2
|
Requires: yast2
|
||||||
@ -38,7 +34,6 @@ Requires: yast2
|
|||||||
# we split off that one
|
# we split off that one
|
||||||
Conflicts: yast2-network < 2.22.6
|
Conflicts: yast2-network < 2.22.6
|
||||||
|
|
||||||
PreReq: /bin/rm
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
Requires: yast2-ruby-bindings >= 1.0.0
|
Requires: yast2-ruby-bindings >= 1.0.0
|
||||||
@ -54,22 +49,24 @@ This package contains the YaST2 component for proxy configuration.
|
|||||||
%prep
|
%prep
|
||||||
%setup -n %{name}-%{version}
|
%setup -n %{name}-%{version}
|
||||||
|
|
||||||
|
%check
|
||||||
|
rake test:unit
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%yast_build
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%yast_install
|
rake install DESTDIR="%{buildroot}"
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{yast_clientdir}/*.rb
|
%{yast_clientdir}/*.rb
|
||||||
|
%{yast_libdir}/proxy
|
||||||
%{yast_moduledir}/*.rb
|
%{yast_moduledir}/*.rb
|
||||||
%{yast_yncludedir}/proxy
|
%{yast_yncludedir}/proxy
|
||||||
%{yast_desktopdir}/*.desktop
|
%{yast_desktopdir}/*.desktop
|
||||||
%{yast_scrconfdir}/*.scr
|
%{yast_scrconfdir}/*.scr
|
||||||
%{yast_schemadir}/autoyast/rnc/proxy.rnc
|
%{yast_schemadir}/autoyast/rnc/proxy.rnc
|
||||||
|
|
||||||
%dir %{yast_docdir}
|
%doc %{yast_docdir}
|
||||||
%{yast_docdir}/COPYING
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user