Accepting request 1096183 from home:rrahl0
I want to maintain ProtonPlus in Factory, and would like to use games:tools as the devel/feeder project. OBS-URL: https://build.opensuse.org/request/show/1096183 OBS-URL: https://build.opensuse.org/package/show/games:tools/ProtonPlus?expand=0&rev=1
This commit is contained in:
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal 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
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.osc
|
21
ProtonPlus.changes
Normal file
21
ProtonPlus.changes
Normal file
@@ -0,0 +1,21 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 14 06:29:30 UTC 2023 - rrahl0@proton.me
|
||||
|
||||
- Update to version 0.4.4:
|
||||
* :hammer: Update appdata
|
||||
* :bug: Fix Proton Tkg
|
||||
* :bug: Fix install directories creation
|
||||
* Update german translation
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 13 20:47:03 UTC 2023 - rrahl0@proton.me
|
||||
|
||||
- Update to version 0.4.3:
|
||||
* :bug: Fix warning box
|
||||
* :memo: Fix appdata typo
|
||||
* :lipstick: Updated the UI
|
||||
* :globe_with_meridians: Update language files
|
||||
* :wrench: Update appdata and meson
|
||||
* :sparkles: Added caching system
|
||||
* Add german translation
|
||||
|
66
ProtonPlus.spec
Normal file
66
ProtonPlus.spec
Normal file
@@ -0,0 +1,66 @@
|
||||
#
|
||||
# spec file for package ProtonPlus
|
||||
#
|
||||
# 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/
|
||||
#
|
||||
|
||||
|
||||
Name: ProtonPlus
|
||||
Version: 0.4.4
|
||||
Release: 0
|
||||
Summary: A simple Wine and Proton-based compatibility tools manager for GNOME
|
||||
License: GPL-3.0-only
|
||||
URL: https://github.com/vysp3r/ProtonPlus
|
||||
Source: %{name}-%{version}.tar
|
||||
BuildRequires: meson
|
||||
BuildRequires: cmake
|
||||
BuildRequires: ninja
|
||||
BuildRequires: git
|
||||
BuildRequires: vala
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: pkgconfig(gtk4)
|
||||
BuildRequires: pkgconfig(libadwaita-1)
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: pkgconfig(libarchive)
|
||||
BuildRequires: libgee-devel
|
||||
BuildRequires: libsoup-devel
|
||||
BuildRequires: json-glib-devel
|
||||
|
||||
%description
|
||||
ProtonPlus is a simple Proton version manager that make it easy to install and manage Proton versions. It works with Steam, Lutris, Heroic Games Launcher and Bottles. It was made in Vala with GTK4 and Libadwaita using GNOME Builder. This project is still in its early phase, so please keep that in mind before using it.
|
||||
|
||||
%prep
|
||||
%autosetup
|
||||
|
||||
%build
|
||||
%meson --prefix=/usr
|
||||
%meson_build
|
||||
|
||||
%install
|
||||
%meson_install
|
||||
|
||||
%find_lang com.vysp3r.ProtonPlus
|
||||
|
||||
%fdupes %{buildroot}
|
||||
|
||||
%files -f com.vysp3r.ProtonPlus.lang
|
||||
%{_bindir}/com.vysp3r.ProtonPlus
|
||||
%{_datadir}/appdata/com.vysp3r.ProtonPlus.appdata.xml
|
||||
%{_datadir}/applications/com.vysp3r.ProtonPlus.desktop
|
||||
%{_datadir}/glib-2.0/schemas/com.vysp3r.ProtonPlus.gschema.xml
|
||||
%{_datadir}/icons/hicolor/scalable/apps/com.vysp3r.ProtonPlus.svg
|
||||
%{_datadir}/icons/hicolor/symbolic/apps/com.vysp3r.ProtonPlus-symbolic.svg
|
||||
|
||||
%changelog
|
||||
|
13
_service
Normal file
13
_service
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0"?>
|
||||
<services>
|
||||
<service name="obs_scm">
|
||||
<param name="scm">git</param>
|
||||
<param name="url">https://github.com/vysp3r/ProtonPlus.git</param>
|
||||
<param name="revision">refs/tags/v0.4.4</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
</service>
|
||||
<service name="tar" mode="buildtime" />
|
||||
<service name="set_version" mode="manual" />
|
||||
</services>
|
3
_service:obs_scm:ProtonPlus-0.4.4.obscpio
Normal file
3
_service:obs_scm:ProtonPlus-0.4.4.obscpio
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:172b7d92fe6df7815252324348c66d6d4eb8c63ef847e57caba20766d5145cac
|
||||
size 430091
|
31
_service:obs_scm:ProtonPlus.changes
Normal file
31
_service:obs_scm:ProtonPlus.changes
Normal file
@@ -0,0 +1,31 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 14 06:29:56 UTC 2023 - obs-service-tar-scm@invalid
|
||||
|
||||
- Update to version 0.4.4:
|
||||
* :hammer: Update appdata
|
||||
* :bug: Fix Proton Tkg
|
||||
* :bug: Fix install directories creation
|
||||
* Update german translation
|
||||
* :bug: Fix warning box
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 14 06:29:30 UTC 2023 - rrahl0@proton.me
|
||||
|
||||
- Update to version 0.4.4:
|
||||
* :hammer: Update appdata
|
||||
* :bug: Fix Proton Tkg
|
||||
* :bug: Fix install directories creation
|
||||
* Update german translation
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 13 20:47:03 UTC 2023 - rrahl0@proton.me
|
||||
|
||||
- Update to version 0.4.3:
|
||||
* :bug: Fix warning box
|
||||
* :memo: Fix appdata typo
|
||||
* :lipstick: Updated the UI
|
||||
* :globe_with_meridians: Update language files
|
||||
* :wrench: Update appdata and meson
|
||||
* :sparkles: Added caching system
|
||||
* Add german translation
|
||||
|
4
_service:obs_scm:ProtonPlus.obsinfo
Normal file
4
_service:obs_scm:ProtonPlus.obsinfo
Normal file
@@ -0,0 +1,4 @@
|
||||
name: ProtonPlus
|
||||
version: 0.4.4
|
||||
mtime: 1686704674
|
||||
commit: 6d5e7f4866efc9a876297e933a59b62d9aaca8cf
|
4
_service:obs_scm:_servicedata
Normal file
4
_service:obs_scm:_servicedata
Normal file
@@ -0,0 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/vysp3r/ProtonPlus.git</param>
|
||||
<param name="changesrevision">6d5e7f4866efc9a876297e933a59b62d9aaca8cf</param></service></servicedata>
|
Reference in New Issue
Block a user