15
0

- update to 0.6.0:

* Drop Python 3.7
  * Update README
  * Fix badge
  * Add GA to dependabot.yml
  * Remove experimental.new-installer

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-browsers?expand=0&rev=2
This commit is contained in:
2024-11-09 15:25:22 +00:00
committed by Git OBS Bridge
parent be06e8b356
commit 74e964f770
7 changed files with 20 additions and 30 deletions

3
0.6.0.tar.gz Normal file
View File

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

View File

@@ -1,10 +0,0 @@
<services>
<service name="obs_scm" mode="disabled">
<param name="url">https://github.com/roniemartinez/browsers</param>
<param name="scm">git</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="revision">refs/tags/0.5.2</param>
<param name="changesgenerate">enable</param>
</service>
<service name="set_version" mode="disabled"/>
</services>

View File

@@ -1,4 +0,0 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/roniemartinez/browsers</param>
<param name="changesrevision">904662c83fdc0397c482dfad9fae670289167bcd</param></service></servicedata>

View File

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

View File

@@ -1,4 +0,0 @@
name: browsers
version: 0.5.2
mtime: 1671210338
commit: 904662c83fdc0397c482dfad9fae670289167bcd

View File

@@ -1,3 +1,13 @@
-------------------------------------------------------------------
Sat Nov 9 15:24:51 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 0.6.0:
* Drop Python 3.7
* Update README
* Fix badge
* Add GA to dependabot.yml
* Remove experimental.new-installer
-------------------------------------------------------------------
Wed Apr 19 21:22:36 UTC 2023 - Georg Pfuetzenreuter <georg.pfuetzenreuter@suse.com>

View File

@@ -1,6 +1,7 @@
#
# spec file for package python-browsers
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2023 Georg Pfuetzenreuter <mail+rpm@georg-pfuetzenreuter.net>
#
# All modifications and additions to the file contributed by third parties
@@ -26,21 +27,20 @@
%endif
%define appname browsers
Name: python-%{appname}%{psuffix}
Version: 0.5.2
Version: 0.6.0
Release: 0
Summary: Library for detecting and launching browsers
License: MIT
URL: https://github.com/roniemartinez/browsers
Source: _service
Source0: https://github.com/roniemartinez/browsers/archive/refs/tags/%{version}.tar.gz
# - test with Chromium instead of unavailable proprietary Chrome
# - adjust Firefox .desktop entry name
# - add Firefox to launch test
Patch0: test.patch
# - adjust Chromium .desktop file name
# - adjust Chromium .desktop file name
Patch1: chromium.patch
BuildRequires: %{python_module pip}
BuildRequires: %{python_module poetry}
BuildRequires: %{pythons}
BuildRequires: %{python_module poetry-core}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python3-pyxdg
@@ -64,13 +64,11 @@ BuildRequires: distribution-release
Python library for detecting and launching browsers
%prep
%autosetup -p1 -DTn %{_sourcedir}/%{appname}-%{version}
%autosetup -p1 -n %{appname}-%{version}
sed -i '/pywin32/d' pyproject.toml
%build
%if !%{with test}
%pyproject_wheel
%endif
%install
%if !%{with test}
@@ -89,7 +87,7 @@ rm -r /home/abuild/.config
%license LICENSE
%doc README.md
%dir %{python_sitelib}/%{appname}
%{python_sitelib}/py%{appname}-%{version}*-info
%{python_sitelib}/py%{appname}-%{version}.dist-info
%{python_sitelib}/%{appname}/*.py
%pycache_only %{python_sitelib}/%{appname}/__pycache__
%endif