Accepting request 41237 from home:dimstar:branches:GNOME:Factory
Copy from home:dimstar:branches:GNOME:Factory/libproxy via accept of submit request 41237 revision 4. Request was accepted with message: Forwarding to openSUSE:Factory OBS-URL: https://build.opensuse.org/request/show/41237 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/libproxy?expand=0&rev=48
This commit is contained in:
parent
6cd87759cf
commit
2a91c6526c
@ -1,4 +1,4 @@
|
||||
libmodman0_0_0
|
||||
libmodman0
|
||||
libproxy1
|
||||
libproxy1-config-gnome
|
||||
supplements "packageand(libproxy1-<targettype>:libproxy1-gnome)"
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bececbf4aa6f01479a1166f818347884e2d99d2104b0ff9bdd8a3f54f18ff8fa
|
||||
size 63868
|
3
libproxy-0.4.3.tar.bz2
Normal file
3
libproxy-0.4.3.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:453bb246a06aae706df5e3252b597c1c7c69121f4f8c69e60024101d9f11e59e
|
||||
size 64182
|
@ -1,3 +1,18 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 7 17:01:55 UTC 2010 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 0.4.3:
|
||||
+ Test can now be out-compiled using BUILD_TESTING=OFF
|
||||
+ Fixed python binding not handling NULL pointer
|
||||
+ Pyhton binding now support Python version 3
|
||||
+ Rewrote URL parser to comply with unit test (bnc#612007)
|
||||
+ Username and password are now URL encoded
|
||||
+ Scheme comparison is now non-case sensitive
|
||||
+ Fixed deadlock using WebKit as PAC runner
|
||||
+ Fixed OS X compilation of Perl bindings
|
||||
- libmodman0_0_0 is now correctly called libmodman0, follow this
|
||||
change also in baselibs.conf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 16:04:53 UTC 2010 - dimstar@opensuse.org
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package libproxy-plugins (Version 0.4.2)
|
||||
# spec file for package libproxy (Version 0.4.2)
|
||||
#
|
||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 Dominique Leuenberger, Amsterdam, Netherlands.
|
||||
@ -38,7 +38,7 @@ Url: http://code.google.com/p/libproxy/
|
||||
Name: libproxy-plugins
|
||||
Group: System/Libraries
|
||||
Summary: Libproxy provides consistent proxy configuration to applications
|
||||
Version: 0.4.2
|
||||
Version: 0.4.3
|
||||
Release: 1
|
||||
Source: http://libproxy.googlecode.com/files/%{_name}-%{version}.tar.bz2
|
||||
Source99: baselibs.conf
|
||||
@ -133,12 +133,14 @@ libproxy offers the following features: * extremely small core
|
||||
|
||||
* a standard way of dealing with proxy settings across all scenarios
|
||||
|
||||
%package -n libmodman0_0_0
|
||||
%package -n libmodman0
|
||||
License: GPLv2+ ; LGPLv2.1+
|
||||
Summary: Libproxy's Module Management Library
|
||||
Group: System/Libraries
|
||||
Obsoletes: libmodman0_0_0 < %{version}
|
||||
Provides: libmodman0_0_0 = %{version}
|
||||
|
||||
%description -n libmodman0_0_0
|
||||
%description -n libmodman0
|
||||
A module management library taking care of loading / unload modules
|
||||
including heuristics in detecting which bindings might already
|
||||
be used by an application and favouring this one.
|
||||
@ -297,7 +299,7 @@ cmake \
|
||||
-DWITH_VALA=yes \
|
||||
-DPERL_VENDORINSTALL=yes \
|
||||
..
|
||||
%{__make} %{?jobs:-j%jobs} VERBOSE=1
|
||||
%{__make} %{?jobs:-j%jobs}
|
||||
|
||||
%install
|
||||
cd build
|
||||
@ -325,11 +327,11 @@ rm %{buildroot}%{perl_vendorarch}/auto/Net/Libproxy/Libproxy.so
|
||||
|
||||
%post -n libproxy1 -p /sbin/ldconfig
|
||||
|
||||
%post -n libmodman0_0_0 -p /sbin/ldconfig
|
||||
%post -n libmodman0 -p /sbin/ldconfig
|
||||
|
||||
%postun -n libproxy1 -p /sbin/ldconfig
|
||||
|
||||
%postun -n libmodman0_0_0 -p /sbin/ldconfig
|
||||
%postun -n libmodman0 -p /sbin/ldconfig
|
||||
|
||||
%files tools
|
||||
%defattr(-, root, root)
|
||||
@ -347,7 +349,7 @@ rm %{buildroot}%{perl_vendorarch}/auto/Net/Libproxy/Libproxy.so
|
||||
#%{_libdir}/libproxy/%{version}/modules/config_direct.so
|
||||
#%{_libdir}/libproxy/%{version}/modules/ignore_*.so
|
||||
|
||||
%files -n libmodman0_0_0
|
||||
%files -n libmodman0
|
||||
%defattr(-, root, root)
|
||||
%{_libdir}/libmodman.so.*
|
||||
|
||||
|
@ -1,3 +1,18 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 7 17:01:55 UTC 2010 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 0.4.3:
|
||||
+ Test can now be out-compiled using BUILD_TESTING=OFF
|
||||
+ Fixed python binding not handling NULL pointer
|
||||
+ Pyhton binding now support Python version 3
|
||||
+ Rewrote URL parser to comply with unit test (bnc#612007)
|
||||
+ Username and password are now URL encoded
|
||||
+ Scheme comparison is now non-case sensitive
|
||||
+ Fixed deadlock using WebKit as PAC runner
|
||||
+ Fixed OS X compilation of Perl bindings
|
||||
- libmodman0_0_0 is now correctly called libmodman0, follow this
|
||||
change also in baselibs.conf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 16:04:53 UTC 2010 - dimstar@opensuse.org
|
||||
|
||||
|
@ -38,7 +38,7 @@ Url: http://code.google.com/p/libproxy/
|
||||
Name: libproxy
|
||||
Group: System/Libraries
|
||||
Summary: Libproxy provides consistent proxy configuration to applications
|
||||
Version: 0.4.2
|
||||
Version: 0.4.3
|
||||
Release: 1
|
||||
Source: http://libproxy.googlecode.com/files/%{_name}-%{version}.tar.bz2
|
||||
Source99: baselibs.conf
|
||||
@ -133,12 +133,14 @@ libproxy offers the following features: * extremely small core
|
||||
|
||||
* a standard way of dealing with proxy settings across all scenarios
|
||||
|
||||
%package -n libmodman0_0_0
|
||||
%package -n libmodman0
|
||||
License: GPLv2+ ; LGPLv2.1+
|
||||
Summary: Libproxy's Module Management Library
|
||||
Group: System/Libraries
|
||||
Obsoletes: libmodman0_0_0 < %{version}
|
||||
Provides: libmodman0_0_0 = %{version}
|
||||
|
||||
%description -n libmodman0_0_0
|
||||
%description -n libmodman0
|
||||
A module management library taking care of loading / unload modules
|
||||
including heuristics in detecting which bindings might already
|
||||
be used by an application and favouring this one.
|
||||
@ -297,7 +299,7 @@ cmake \
|
||||
-DWITH_VALA=yes \
|
||||
-DPERL_VENDORINSTALL=yes \
|
||||
..
|
||||
%{__make} %{?jobs:-j%jobs} VERBOSE=1
|
||||
%{__make} %{?jobs:-j%jobs}
|
||||
|
||||
%install
|
||||
cd build
|
||||
@ -325,11 +327,11 @@ rm %{buildroot}%{perl_vendorarch}/auto/Net/Libproxy/Libproxy.so
|
||||
|
||||
%post -n libproxy1 -p /sbin/ldconfig
|
||||
|
||||
%post -n libmodman0_0_0 -p /sbin/ldconfig
|
||||
%post -n libmodman0 -p /sbin/ldconfig
|
||||
|
||||
%postun -n libproxy1 -p /sbin/ldconfig
|
||||
|
||||
%postun -n libmodman0_0_0 -p /sbin/ldconfig
|
||||
%postun -n libmodman0 -p /sbin/ldconfig
|
||||
|
||||
%files tools
|
||||
%defattr(-, root, root)
|
||||
@ -347,7 +349,7 @@ rm %{buildroot}%{perl_vendorarch}/auto/Net/Libproxy/Libproxy.so
|
||||
#%{_libdir}/libproxy/%{version}/modules/config_direct.so
|
||||
#%{_libdir}/libproxy/%{version}/modules/ignore_*.so
|
||||
|
||||
%files -n libmodman0_0_0
|
||||
%files -n libmodman0
|
||||
%defattr(-, root, root)
|
||||
%{_libdir}/libmodman.so.*
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user