forked from pool/libshumate
Accepting request 1109849 from GNOME:Next
Pushing GNOME 45.rc packages OBS-URL: https://build.opensuse.org/request/show/1109849 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/libshumate?expand=0&rev=16
This commit is contained in:
parent
3d13af78f8
commit
9c74acd928
2
_service
2
_service
@ -4,7 +4,7 @@
|
|||||||
<param name="url">https://gitlab.gnome.org/GNOME/libshumate.git</param>
|
<param name="url">https://gitlab.gnome.org/GNOME/libshumate.git</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
|
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
|
||||||
<param name="revision">refs/tags/1.0.5</param>
|
<param name="revision">refs/tags/1.1.rc</param>
|
||||||
<param name="versionrewrite-pattern">(.*)\+0</param>
|
<param name="versionrewrite-pattern">(.*)\+0</param>
|
||||||
<param name="versionrewrite-replacement">\1</param>
|
<param name="versionrewrite-replacement">\1</param>
|
||||||
</service>
|
</service>
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8568f34c6282736f78949189ac4503ec1da61bb837709d3cc79c95da46630c8b
|
|
||||||
size 844812
|
|
3
libshumate-1.1.rc.obscpio
Normal file
3
libshumate-1.1.rc.obscpio
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:2e3cc768f1e4547ca5e496e7df650085859bb7b6dfaea164736c87afe739d522
|
||||||
|
size 1373708
|
@ -1,3 +1,30 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Sep 6 01:31:05 UTC 2023 - Luciano Santos <luc14n0@opensuse.org>
|
||||||
|
|
||||||
|
- Add with(out) "profiling" build switch and disable it, by
|
||||||
|
default, as profiling isn't meant for general use. Add nested
|
||||||
|
pkgconfig(sysprof-capture-4) BuildRequires under an if-with
|
||||||
|
expression and pass sysprof=(enabled|disabled) to meson,
|
||||||
|
depending on the profiling switch. This is meant for an eventual
|
||||||
|
need for Sysprof's profiling support.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 4 09:40:03 UTC 2023 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||||
|
|
||||||
|
- Update to version 1.1.rc:
|
||||||
|
+ Bugfixes and optimizations in vector render.
|
||||||
|
+ Add icon-color property for vector renderer.
|
||||||
|
+ Disable g_asserts on release builds.
|
||||||
|
+ Updated translations.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Aug 18 18:49:17 UTC 2023 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||||
|
|
||||||
|
- Update to version 1.1.beta:
|
||||||
|
+ Vector rendering improvements.
|
||||||
|
+ Updated translations.
|
||||||
|
- Add pkgconfig(gperf) BuildRequires, a new introduced dependency.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jul 19 09:15:01 UTC 2023 - Bjørn Lie <bjorn.lie@gmail.com>
|
Wed Jul 19 09:15:01 UTC 2023 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
name: libshumate
|
name: libshumate
|
||||||
version: 1.0.5
|
version: 1.1.rc
|
||||||
mtime: 1689756439
|
mtime: 1693769782
|
||||||
commit: 05bf8b37a274cb72e61b4d59bb8e804b88d8b046
|
commit: 26a97e5b6a5a78c12828cf90c88ec5939fc96654
|
||||||
|
@ -19,15 +19,17 @@
|
|||||||
%define somajor 1
|
%define somajor 1
|
||||||
%define sominor 0
|
%define sominor 0
|
||||||
%define soname libshumate-%{somajor}_%{sominor}-1
|
%define soname libshumate-%{somajor}_%{sominor}-1
|
||||||
|
%bcond_with profiling
|
||||||
|
|
||||||
Name: libshumate
|
Name: libshumate
|
||||||
Version: 1.0.5
|
Version: 1.1.rc
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: C library providing a GtkWidget to display maps
|
Summary: C library providing a GtkWidget to display maps
|
||||||
License: LGPL-2.1-or-later
|
License: LGPL-2.1-or-later
|
||||||
URL: https://wiki.gnome.org/Projects/libshumate
|
URL: https://wiki.gnome.org/Projects/libshumate
|
||||||
Source: %{name}-%{version}.tar.xz
|
Source: %{name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
BuildRequires: gperf
|
||||||
BuildRequires: gtk-doc >= 1.9
|
BuildRequires: gtk-doc >= 1.9
|
||||||
BuildRequires: meson >= 0.53.0
|
BuildRequires: meson >= 0.53.0
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
@ -43,6 +45,9 @@ BuildRequires: pkgconfig(libprotobuf-c)
|
|||||||
BuildRequires: pkgconfig(libsoup-3.0) >= 3.0
|
BuildRequires: pkgconfig(libsoup-3.0) >= 3.0
|
||||||
BuildRequires: pkgconfig(sqlite3) >= 1.12.0
|
BuildRequires: pkgconfig(sqlite3) >= 1.12.0
|
||||||
BuildRequires: pkgconfig(vapigen) >= 0.11.0
|
BuildRequires: pkgconfig(vapigen) >= 0.11.0
|
||||||
|
%if %{with profiling}
|
||||||
|
BuildRequires: pkgconfig(sysprof-capture-4)
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
libshumate is a C library providing a GtkWidget to display maps.
|
libshumate is a C library providing a GtkWidget to display maps.
|
||||||
@ -87,6 +92,7 @@ This package contains development files for %{name}.
|
|||||||
-D libsoup3=true \
|
-D libsoup3=true \
|
||||||
-D vector_renderer=true \
|
-D vector_renderer=true \
|
||||||
-D gtk_doc=true \
|
-D gtk_doc=true \
|
||||||
|
-D sysprof=%{?with_profiling:enabled}%{!?with_profiling:disabled} \
|
||||||
%{nil}
|
%{nil}
|
||||||
%meson_build
|
%meson_build
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user