SHA256
1
0
forked from pool/libadwaita

Accepting request 893981 from GNOME:Next

New package

OBS-URL: https://build.opensuse.org/request/show/893981
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/libadwaita?expand=0&rev=1
This commit is contained in:
Dominique Leuenberger 2021-05-18 09:07:39 +00:00 committed by Git OBS Bridge
commit d71c57d2bd
7 changed files with 142 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

15
_service Normal file
View File

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<services>
<service name="obs_scm" mode="disabled">
<param name="url">https://gitlab.gnome.org/GNOME/libadwaita.git</param>
<param name="scm">git</param>
<param name="revision">main</param>
<param name="versionformat">1.1.0~%cd</param>
</service>
<service mode="buildtime" name="tar" />
<service mode="buildtime" name="recompress">
<param name="file">*.tar</param>
<param name="compression">xz</param>
</service>
<service mode="disabled" name="set_version" />
</services>

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:329ee7636e9dcce6e90050f9da5fa156056f4c7ff960171c2dc6ad46915fa5a2
size 2271244

4
libadwaita.changes Normal file
View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Sat May 15 00:08:38 UTC 2021 - Dominique Leuenberger <dimstar@opensuse.org>
- Initial package, version 1.1.0

5
libadwaita.obsinfo Normal file
View File

@ -0,0 +1,5 @@
name: libadwaita
version: 1.1.0~20210512
mtime: 1620817739
commit: a1e8587d623791d3c992a934c5feb46ba209432a

91
libadwaita.spec Normal file
View File

@ -0,0 +1,91 @@
#
# spec file for package libadwaita
#
# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: libadwaita
Version: 1.1.0~20210512
Release: 0
Summary: Adwaita library for mobile device UIs using GTK/GNOME
License: LGPL-2.1-or-later
URL: https://gitlab.gnome.org/GNOME/libadwaita
Source: %{name}-%{version}.tar.xz
BuildRequires: vala sassc meson
BuildRequires: pkgconfig(glib-2.0) >= 2.44
BuildRequires: pkgconfig(gtk4)
BuildRequires: pkgconfig(fribidi)
BuildRequires: pkgconfig(gobject-introspection-1.0)
%lang_package
%description
The aim of the Adwaita library is to help with developing UI for mobile devices using GTK/GNOME.
%package -n libadwaita-1-0
Summary: Adwaita library for mobile device UIs using GTK/GNOME
# Make the -lang package installable
Provides: %{name} = %{version}
%description -n libadwaita-1-0
The aim of the Adwaita library is to help with developing UI for mobile devices using GTK/GNOME.
%package devel
Summary: Development files for the Adwaita library
Requires: libadwaita-1-0 = %{version}
%description devel
The aim of the Adwaita library is to help with developing UI for mobile devices using GTK/GNOME.
%prep
%setup -q
%build
%meson \
-Dexamples=false \
-Dintrospection=disabled
%meson_build
%install
%meson_install
%find_lang %{name}
%{ldconfig_scriptlets -n libadwaita-1-0}
%files lang -f %{name}.lang
%files -n libadwaita-1-0
%license COPYING
%doc README.md
%{_libdir}/libadwaita-1.so.0
%files devel
%{_includedir}/libadwaita-1/
%{_libdir}/libadwaita-1.so
%{_libdir}/pkgconfig/libadwaita-1.pc
%changelog