Compare commits
No commits in common. "c8" and "c9" have entirely different histories.
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/pyatspi-2.26.0.tar.xz
|
||||
SOURCES/pyatspi-2.38.1.tar.xz
|
||||
|
||||
@ -1 +1 @@
|
||||
45250ae95ce37189e26f7706fe3eb8e3deff7a03 SOURCES/pyatspi-2.26.0.tar.xz
|
||||
c7a1212ab53c90237583fb296dab1fd686ff4dc1 SOURCES/pyatspi-2.38.1.tar.xz
|
||||
|
||||
@ -1,22 +1,23 @@
|
||||
%global debug_package %{nil}
|
||||
|
||||
Name: pyatspi
|
||||
Version: 2.26.0
|
||||
Release: 6%{?dist}
|
||||
Version: 2.38.1
|
||||
Release: 3%{?dist}
|
||||
Summary: Python bindings for at-spi
|
||||
|
||||
Group: Development/Languages
|
||||
License: LGPLv2 and GPLv2
|
||||
URL: http://www.linuxfoundation.org/en/AT-SPI_on_D-Bus
|
||||
#VCS: git:git://git.gnome.org/pyatspi
|
||||
Source0: http://download.gnome.org/sources/pyatspi/2.26/%{name}-%{version}.tar.xz
|
||||
Source0: http://download.gnome.org/sources/pyatspi/2.38/%{name}-%{version}.tar.xz
|
||||
|
||||
# For tests
|
||||
BuildRequires: make
|
||||
BuildRequires: pkgconfig(atspi-2)
|
||||
BuildRequires: pkgconfig(dbus-1) >= 1.0
|
||||
BuildRequires: pkgconfig(glib-2.0)
|
||||
BuildRequires: pkgconfig(dbus-glib-1) >= 0.7.0
|
||||
BuildRequires: pkgconfig(gobject-2.0) >= 2.0.0
|
||||
BuildRequires: pkgconfig(gmodule-2.0) >= 2.0.0
|
||||
BuildRequires: pkgconfig(gtk+-3.0)
|
||||
BuildRequires: pkgconfig(libxml-2.0) >= 2.0.0
|
||||
BuildRequires: pkgconfig(atk) >= 2.11.2
|
||||
BuildRequires: pkgconfig(gtk+-2.0) >= 2.10.0
|
||||
@ -27,16 +28,14 @@ BuildRequires: python3-dbus
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
%global _description\
|
||||
at-spi allows assistive technologies to access GTK-based\
|
||||
applications. Essentially it exposes the internals of applications for\
|
||||
automation, so tools such as screen readers, magnifiers, or even\
|
||||
scripting interfaces can query and interact with GUI controls.\
|
||||
\
|
||||
This package includes a python client library for at-spi.\
|
||||
%description
|
||||
at-spi allows assistive technologies to access GTK-based
|
||||
applications. Essentially it exposes the internals of applications for
|
||||
automation, so tools such as screen readers, magnifiers, or even
|
||||
scripting interfaces can query and interact with GUI controls.
|
||||
|
||||
This package includes a python3 client library for at-spi.
|
||||
|
||||
%description %_description
|
||||
|
||||
%package -n python3-pyatspi
|
||||
Summary: Python3 bindings for at-spi
|
||||
@ -57,7 +56,7 @@ This package includes a python3 client library for at-spi.
|
||||
|
||||
|
||||
%build
|
||||
%configure --with-python=%{__python3} --enable-tests
|
||||
%configure --with-python=python3 --enable-tests
|
||||
make
|
||||
|
||||
|
||||
@ -65,9 +64,9 @@ make
|
||||
%make_install
|
||||
|
||||
# Fix up the shebang for python3 example
|
||||
cp -a examples python3-examples
|
||||
sed -i '1s|^#!/usr/bin/python|#!%{__python3}|' examples/magFocusTracker.py
|
||||
|
||||
|
||||
%check
|
||||
# Done by the 'build' step, with --enable-tests
|
||||
|
||||
@ -80,9 +79,88 @@ sed -i '1s|^#!/usr/bin/python|#!%{__python3}|' examples/magFocusTracker.py
|
||||
|
||||
|
||||
%changelog
|
||||
* Thu Jun 07 2018 Petr Viktorin <pviktori@redhat.com> - 2.26.0-6
|
||||
- Remove the Python 2 version
|
||||
https://bugzilla.redhat.com/show_bug.cgi?id=1567334
|
||||
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 2.38.1-3
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.38.1-2
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
|
||||
* Mon Mar 15 2021 Kalev Lember <klember@redhat.com> - 2.38.1-1
|
||||
- Update to 2.38.1
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.38.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Sat Sep 12 2020 Kalev Lember <klember@redhat.com> - 2.38.0-1
|
||||
- Update to 2.38.0
|
||||
|
||||
* Tue Aug 18 2020 Kalev Lember <klember@redhat.com> - 2.37.90-1
|
||||
- Update to 2.37.90
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.36.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 2.36.0-2
|
||||
- Rebuilt for Python 3.9
|
||||
|
||||
* Sun Mar 08 2020 Kalev Lember <klember@redhat.com> - 2.36.0-1
|
||||
- Update to 2.36.0
|
||||
|
||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.35.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Mon Jan 20 2020 Kalev Lember <klember@redhat.com> - 2.35.1-1
|
||||
- Update to 2.35.1
|
||||
|
||||
* Mon Sep 09 2019 Kalev Lember <klember@redhat.com> - 2.34.0-1
|
||||
- Update to 2.34.0
|
||||
|
||||
* Thu Sep 05 2019 Miro Hrončok <mhroncok@redhat.com> - 2.33.92-2
|
||||
- Subpackage python2-pyatspi has been removed
|
||||
See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
|
||||
|
||||
* Tue Sep 03 2019 Kalev Lember <klember@redhat.com> - 2.33.92-1
|
||||
- Update to 2.33.92
|
||||
|
||||
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 2.33.90-2
|
||||
- Rebuilt for Python 3.8
|
||||
|
||||
* Mon Aug 12 2019 Kalev Lember <klember@redhat.com> - 2.33.90-1
|
||||
- Update to 2.33.90
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.33.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Tue Jun 18 2019 Kalev Lember <klember@redhat.com> - 2.33.2-1
|
||||
- Update to 2.33.2
|
||||
|
||||
* Tue May 21 2019 Kalev Lember <klember@redhat.com> - 2.33.1-1
|
||||
- Update to 2.33.1
|
||||
|
||||
* Tue Apr 09 2019 Kalev Lember <klember@redhat.com> - 2.32.1-1
|
||||
- Update to 2.32.1
|
||||
|
||||
* Tue Mar 12 2019 Kalev Lember <klember@redhat.com> - 2.32.0-1
|
||||
- Update to 2.32.0
|
||||
|
||||
* Tue Feb 19 2019 Kalev Lember <klember@redhat.com> - 2.31.2-1
|
||||
- Update to 2.31.2
|
||||
|
||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.31.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Tue Jan 08 2019 Kalev Lember <klember@redhat.com> - 2.31.1-1
|
||||
- Update to 2.31.1
|
||||
|
||||
* Thu Sep 06 2018 Kalev Lember <klember@redhat.com> - 2.30.0-1
|
||||
- Update to 2.30.0
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.26.0-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 2.26.0-6
|
||||
- Rebuilt for Python 3.7
|
||||
|
||||
* Wed Feb 21 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2.26.0-5
|
||||
- Update Python 2 dependency declarations to new packaging standards
|
||||
|
||||
Loading…
Reference in New Issue
Block a user