forked from pool/libproxy
Compare commits
8 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 3f5c37ef13 | |||
| 0aabf18825 | |||
| fd341268fa | |||
| 4d287e39c7 | |||
| 2d50f870af | |||
| 8930cfaf68 | |||
| 0104774666 | |||
| 1a6201e835 |
2
_service
2
_service
@@ -3,7 +3,7 @@
|
|||||||
<service name="obs_scm" mode="manual">
|
<service name="obs_scm" mode="manual">
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="url">https://github.com/libproxy/libproxy.git</param>
|
<param name="url">https://github.com/libproxy/libproxy.git</param>
|
||||||
<param name="revision">0.5.7</param>
|
<param name="revision">0.5.12</param>
|
||||||
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
|
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
|
||||||
<param name="versionrewrite-pattern">v?(.*)\+0</param>
|
<param name="versionrewrite-pattern">v?(.*)\+0</param>
|
||||||
<param name="versionrewrite-replacement">\1</param>
|
<param name="versionrewrite-replacement">\1</param>
|
||||||
|
|||||||
3
libproxy-0.5.12.obscpio
Normal file
3
libproxy-0.5.12.obscpio
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:cbbb9003ac66899a2ec6f98a343b46cfe9c9f3a2ec067ba267ae6c081862fd69
|
||||||
|
size 280075
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:4b42056468780466cc5ed42e4f3d13422f43f5c08cec7bee2f89a2c91e8be0b1
|
|
||||||
size 268299
|
|
||||||
@@ -1,3 +1,43 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Nov 26 09:03:33 UTC 2025 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
|
||||||
|
- Update to version 0.5.12:
|
||||||
|
+ Add static library generation
|
||||||
|
+ CI: Remove js / ts check
|
||||||
|
+ xdp: Fix missing dispose chain up
|
||||||
|
+ xdp: Reduce bus access error log level to debug
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Sep 10 06:23:03 UTC 2025 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
|
||||||
|
- Update to version 0.5.11:
|
||||||
|
+ Add support for Pantheon
|
||||||
|
+ Fix memory leak in Windows config
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 11 12:12:03 UTC 2025 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
|
||||||
|
- Update to version 0.5.10:
|
||||||
|
+ kde: Support Proxy Config Script value without scheme
|
||||||
|
+ Add MATE and Cinnamon check to gnome plugin
|
||||||
|
+ Support -M option for Solaris/illumos ld
|
||||||
|
+ Fix symbol versioning with LLD
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 2 14:24:50 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
|
||||||
|
- Update to version 0.5.9:
|
||||||
|
+ Ignore invalid proxy URL.
|
||||||
|
+ Memleak fixes.
|
||||||
|
+ kde: Add ReversedException support.
|
||||||
|
+ Fix memory leak using PX_FORCE_CONFIG.
|
||||||
|
+ Update msys2 build steps.
|
||||||
|
+ Remove white space in key value.
|
||||||
|
- Changes from version 0.5.8:
|
||||||
|
+ Update repology list.
|
||||||
|
+ Properly handle empty proxy ignore entry.
|
||||||
|
+ Add support for direct keyword in PAC.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 19 07:39:40 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
|
Wed Jun 19 07:39:40 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: libproxy
|
name: libproxy
|
||||||
version: 0.5.7
|
version: 0.5.12
|
||||||
mtime: 1718695019
|
mtime: 1764147229
|
||||||
commit: 2686d35cfa5db970d4ba65e2951ebc8183b1be82
|
commit: 99da01926b1b1e303a4d2331bbd74bed424863e7
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libproxy
|
# spec file for package libproxy
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC and contributors
|
||||||
#
|
#
|
||||||
# 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
|
||||||
@@ -32,7 +32,7 @@ ExclusiveArch: do-not-build
|
|||||||
|
|
||||||
%define _name libproxy
|
%define _name libproxy
|
||||||
Name: libproxy%{?dash}%{?name_suffix}
|
Name: libproxy%{?dash}%{?name_suffix}
|
||||||
Version: 0.5.7
|
Version: 0.5.12
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Automatic proxy configuration management for applications
|
Summary: Automatic proxy configuration management for applications
|
||||||
License: GPL-2.0-or-later AND LGPL-2.1-or-later
|
License: GPL-2.0-or-later AND LGPL-2.1-or-later
|
||||||
@@ -157,6 +157,8 @@ from a wide range of programming languages.
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
%meson_install
|
%meson_install
|
||||||
|
# Drop new static library; so far no option to override this at build time directly
|
||||||
|
rm -f %{buildroot}%{_libdir}/libproxy.a
|
||||||
|
|
||||||
%if "%{flavor}" == "backend"
|
%if "%{flavor}" == "backend"
|
||||||
# this stuff is already shipped as part of the client library (built without cURL to break cycles)
|
# this stuff is already shipped as part of the client library (built without cURL to break cycles)
|
||||||
|
|||||||
Reference in New Issue
Block a user