Richard Rahl 2024-07-13 08:01:28 +00:00 committed by Git OBS Bridge
commit b30047d676
7 changed files with 114 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

19
_service Normal file
View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" ?>
<services>
<service name="tar_scm" mode="manual">
<param name="url">https://github.com/mariinkys/starrydex.git</param>
<param name="scm">git</param>
<param name="revision">main</param>
<param name="versionformat">@PARENT_TAG@+git%cd.%h</param>
<param name="package-meta">yes</param>
</service>
<service name="recompress" mode="manual">
<param name="file">*.tar</param>
<param name="compression">zstd</param>
</service>
<service name="cargo_vendor" mode="manual">
<param name="src">starrydex</param>
<param name="update">false</param>
</service>
<service name="set_version" mode="manual" />
</services>

View File

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

4
starrydex.changes Normal file
View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Sat Jul 13 06:50:07 UTC 2024 - Richard Rahl <rrahl0@opensuse.org>
- initial packaging

61
starrydex.spec Normal file
View File

@ -0,0 +1,61 @@
#
# spec file for package starrydex
#
# Copyright (c) 2024 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 appname dev.mariinkys.StarryDex
Name: starrydex
Version: 0.1.0+git20240711.0552a59
Release: 0
Summary: Pokédex application for the COSMIC desktop
License: GPL-3.0-only
URL: https://github.com/mariinkys/starrydex
Source0: %{name}-%{version}.tar.zst
Source1: vendor.tar.zst
BuildRequires: cargo-packaging
BuildRequires: hicolor-icon-theme
BuildRequires: just
BuildRequires: pkgconfig
BuildRequires: update-desktop-files
BuildRequires: pkgconfig(openssl)
BuildRequires: pkgconfig(xkbcommon)
%description
A Pokedex which can work offline (after initialization).
%prep
%autosetup -a1
%build
just build-release
%install
just rootdir=%{buildroot} prefix=%{_prefix} install
%suse_update_desktop_file %{appname}
%check
%{cargo_test}
%files
%license LICENSE
%doc README.md
%{_bindir}/starry-dex
%{_datadir}/applications/%{appname}.desktop
%{_iconsdir}/hicolor/??x??/apps/%{appname}.svg
%{_iconsdir}/hicolor/???x???/apps/%{appname}.svg
%{_datadir}/metainfo/%{appname}.metainfo.xml
%changelog

3
vendor.tar.zst Normal file
View File

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