From ae2a5662fd23847b36b52d7d488f705ab906ffaff89d515b15101b0f50a84fbe Mon Sep 17 00:00:00 2001
From: Martin Pluskal <mpluskal@suse.com>
Date: Mon, 18 Dec 2023 09:06:02 +0000
Subject: [PATCH] Accepting request 1133784 from home:mantarimay:GNOME:apps

Initial package

OBS-URL: https://build.opensuse.org/request/show/1133784
OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/identity?expand=0&rev=1
---
 .gitattributes        | 23 ++++++++++++++
 .gitignore            |  1 +
 identity-0.6.0.tar.xz |  3 ++
 identity.changes      |  5 ++++
 identity.spec         | 70 +++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 102 insertions(+)
 create mode 100644 .gitattributes
 create mode 100644 .gitignore
 create mode 100644 identity-0.6.0.tar.xz
 create mode 100644 identity.changes
 create mode 100644 identity.spec

diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..9b03811
--- /dev/null
+++ b/.gitattributes
@@ -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
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..57affb6
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+.osc
diff --git a/identity-0.6.0.tar.xz b/identity-0.6.0.tar.xz
new file mode 100644
index 0000000..45e0f90
--- /dev/null
+++ b/identity-0.6.0.tar.xz
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f0a177dd1e399ab79cc0ed9265fc65903c7d54f2f4e906ecf6b687de3e502f73
+size 37684100
diff --git a/identity.changes b/identity.changes
new file mode 100644
index 0000000..1dbc399
--- /dev/null
+++ b/identity.changes
@@ -0,0 +1,5 @@
+-------------------------------------------------------------------
+Wed Dec  6 21:58:10 UTC 2023 - Muhammad Akbar Yanuar Mantari <mantarimay@pm.me>
+
+- Initial package
+
diff --git a/identity.spec b/identity.spec
new file mode 100644
index 0000000..fd76798
--- /dev/null
+++ b/identity.spec
@@ -0,0 +1,70 @@
+#
+# spec file for package identity
+#
+# Copyright (c) 2023 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/
+#
+
+
+%define _lto_cflags %{nil}
+%define appid org.gnome.gitlab.YaLTeR.Identity
+Name:           identity
+Version:        0.6.0
+Release:        0
+Summary:        Compare images and videos
+License:        GPL-3.0-or-later
+URL:            https://gitlab.gnome.org/YaLTeR/identity
+Source:         %{url}/uploads/d938a20a7de0fa0f3348be961d49f690/%{name}-%{version}.tar.xz
+BuildRequires:  blueprint-compiler
+BuildRequires:  cargo-packaging
+BuildRequires:  desktop-file-utils
+BuildRequires:  gcc-c++
+BuildRequires:  meson
+BuildRequires:  pkgconfig
+BuildRequires:  pkgconfig(dav1d)
+BuildRequires:  pkgconfig(gstreamer-1.0)
+BuildRequires:  pkgconfig(gstreamer-video-1.0)
+BuildRequires:  pkgconfig(gtk4)
+BuildRequires:  pkgconfig(libadwaita-1)
+BuildRequires:  pkgconfig(libwebpdemux)
+
+%description
+A program for comparing multiple versions of an image or video.
+
+%lang_package
+
+%prep
+%autosetup
+
+%build
+%meson
+%meson_build
+
+%install
+%meson_install
+
+%find_lang %{name}
+
+%files
+%license COPYING
+%doc README.md
+%{_bindir}/%{name}
+%{_datadir}/applications/%{appid}.desktop
+%{_datadir}/%{name}/
+%{_datadir}/glib-2.0/schemas/%{appid}.gschema.xml
+%{_datadir}/icons/hicolor/*/apps/%{appid}*.svg
+%{_datadir}/metainfo/%{appid}.metainfo.xml
+
+%files lang -f %{name}.lang
+
+%changelog