Compare commits
No commits in common. "rawhide" and "f22" have entirely different histories.
4 changed files with 84 additions and 295 deletions
13
.gitignore
vendored
13
.gitignore
vendored
|
|
@ -1,16 +1,3 @@
|
||||||
/pyglet-1.2alpha1-repacked.tar.gz
|
/pyglet-1.2alpha1-repacked.tar.gz
|
||||||
/pyglet-1.2.0-repacked.tar.gz
|
/pyglet-1.2.0-repacked.tar.gz
|
||||||
/pyglet-1.2.1-repacked.tar.gz
|
/pyglet-1.2.1-repacked.tar.gz
|
||||||
/pyglet-1.2.4-repacked.tar.gz
|
|
||||||
/pyglet-1.3.0-repacked.tar.gz
|
|
||||||
/pyglet-1.3.1-repacked.tar.gz
|
|
||||||
/pyglet-1.3.2-repacked.tar.gz
|
|
||||||
/pyglet-1.4.1-repacked.tar.gz
|
|
||||||
/pyglet-1.4.6-repacked.tar.gz
|
|
||||||
/pyglet-1.5.7-repacked.tar.gz
|
|
||||||
/pyglet-1.5.11-repacked.tar.gz
|
|
||||||
/pyglet-1.5.16.tar.gz
|
|
||||||
/pyglet-1.5.16-repacked.tar.gz
|
|
||||||
/pyglet-1.5.23-repacked.tar.gz
|
|
||||||
/pyglet-1.5.27-repacked.tar.gz
|
|
||||||
/pyglet-2.0.10-repacked.tar.gz
|
|
||||||
|
|
|
||||||
|
|
@ -1,24 +1,16 @@
|
||||||
#! /bin/bash
|
#! /bin/bash
|
||||||
|
|
||||||
VERSION=$1
|
VERSIONEDNAME=$1
|
||||||
|
|
||||||
VERSIONEDNAME=pyglet-${VERSION}
|
wget -N https://pypi.python.org/packages/source/p/pyglet/${VERSIONEDNAME}.tar.gz
|
||||||
ARCHIVENAME=${VERSIONEDNAME}.tar.gz
|
tar xzvf ${VERSIONEDNAME}.tar.gz
|
||||||
wget -N https://github.com/pyglet/pyglet/archive/v${VERSION}.tar.gz -O ${ARCHIVENAME}
|
|
||||||
tar xzvf ${ARCHIVENAME}
|
|
||||||
pushd ${VERSIONEDNAME}
|
pushd ${VERSIONEDNAME}
|
||||||
|
rm -rvf examples # includes non-free artwork
|
||||||
|
rm -rvf tests # includes non-free font
|
||||||
rm -rvf tools # random developer tools (*)
|
rm -rvf tools # random developer tools (*)
|
||||||
rm -rvf contrib # again, questionable licensing
|
rm -rvf contrib # again, questionable licensing
|
||||||
rm -v pyglet/image/codecs/s3tc.py # patent-encumbered algorithm (**)
|
rm -v pyglet/image/codecs/s3tc.py # patent-encumbered algorithm (**)
|
||||||
rm -v pyglet/image/codecs/dds.py # image codec that uses s3tc (**)
|
rm -v pyglet/image/codecs/dds.py # image codec that uses s3tc (**)
|
||||||
rm -rvf examples # includes non-free artwork
|
|
||||||
rm -rvf tests/data/fonts # includes non-free font
|
|
||||||
rm -rvf tests/data/images/*.dds # compressed with patent-encumbered algorithm
|
|
||||||
rm -rvf tests/data/images/dinosaur.gif # questionable origin
|
|
||||||
|
|
||||||
# questionable sound files "retrieved from libpurple":
|
|
||||||
rm -rvf tests/data/media/{alert,login,logout,receive,send}.wav
|
|
||||||
|
|
||||||
popd
|
popd
|
||||||
tar czvf ${VERSIONEDNAME}-repacked.tar.gz ${VERSIONEDNAME}
|
tar czvf ${VERSIONEDNAME}-repacked.tar.gz ${VERSIONEDNAME}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,63 +1,46 @@
|
||||||
%global srcname pyglet
|
%global with_python3 1
|
||||||
%global versionedname %{srcname}-%{version}
|
|
||||||
|
|
||||||
%bcond_without tests
|
%global srcname pyglet
|
||||||
|
%global srcversion 1.2.1
|
||||||
|
%global versionedname %{srcname}-%{srcversion}
|
||||||
|
|
||||||
Name: python-%{srcname}
|
Name: python-%{srcname}
|
||||||
Version: 2.0.10
|
Version: %{srcversion}
|
||||||
Release: 9%{?dist}
|
Release: 0%{?dist}
|
||||||
Summary: A cross-platform windowing and multimedia library for Python
|
Summary: A cross-platform windowing and multimedia library for Python
|
||||||
|
|
||||||
License: BSD-3-Clause
|
License: BSD
|
||||||
URL: http://www.pyglet.org/
|
URL: http://www.pyglet.org/
|
||||||
|
|
||||||
# The upstream tarball includes some non-free files in the examples and tests,
|
# The upstream tarball includes some non-free files in the examples and tests,
|
||||||
# and a patented texture compression algorithm.
|
# and a patented texture compression algorithm.
|
||||||
# Run the following (in rpmbuild/SOURCES) to generate the distributed tarball
|
# Run the following (in rpmbuild/SOURCES) to generate the distributed tarball:
|
||||||
# (the subcommand outputs a version number like 1.5.16):
|
# $ bash pyglet-get-tarball.sh pyglet-1.2.1
|
||||||
# $ bash pyglet-get-tarball.sh $(grep Version python-pyglet.spec|cut -c10-)
|
|
||||||
# See the script for details.
|
# See the script for details.
|
||||||
Source0: %{versionedname}-repacked.tar.gz
|
Source0: %{versionedname}-repacked.tar.gz
|
||||||
Source1: pyglet-get-tarball.sh
|
Source1: pyglet-get-tarball.sh
|
||||||
|
|
||||||
# Note that unbundling pypng removes "PNGImageDecoder", which is normally
|
|
||||||
# available for advanced use cases. Instead of:
|
|
||||||
# img = image.load(fname, decoder=PNGImageDecoder) # don't use!
|
|
||||||
# It is enough to let Pyglet choose an appropriate decoder with:
|
|
||||||
# img = image.load(fname)
|
|
||||||
# Pyglet docs even discourage hard-coding the decoder "unless your application
|
|
||||||
# has to work around specific deficiences in an operating system decoder":
|
|
||||||
# https://pyglet.readthedocs.io/en/latest/programming_guide/image.html?highlight=PILImageDecoder#loading-an-image
|
|
||||||
# If you do find an issue with the default decoder on Fedora, file a bug.
|
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
BuildRequires: python2-devel
|
||||||
|
BuildRequires: python-setuptools
|
||||||
|
%if 0%{?with_python3}
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: pyproject-rpm-macros
|
BuildRequires: python3-setuptools
|
||||||
|
|
||||||
# Tests need OpenGL
|
|
||||||
# See also: https://bugzilla.redhat.com/show_bug.cgi?id=904851
|
|
||||||
%global __pytest xvfb-run -s '-screen 0 640x480x24' pytest
|
|
||||||
%if %{with tests}
|
|
||||||
BuildRequires: /usr/bin/xvfb-run mesa-dri-drivers
|
|
||||||
BuildRequires: python3-pytest
|
|
||||||
# These two for gdkpixbuf2 tests
|
|
||||||
BuildRequires: gtk2-devel
|
|
||||||
BuildRequires: gdk-pixbuf2-devel
|
|
||||||
# libpurple has sound files unbundled in the repacked tarball
|
|
||||||
BuildRequires: libpurple
|
|
||||||
# These tests fail in koji, likely due to missing devices
|
|
||||||
#BuildRequires: openal-soft
|
|
||||||
# These are not specified by upstream
|
|
||||||
BuildRequires: python3-gobject
|
|
||||||
# Some tests fail if this is present
|
|
||||||
# https://github.com/pyglet/pyglet/issues/875
|
|
||||||
#BuildRequires: python3-pytest-asyncio
|
|
||||||
%endif
|
%endif
|
||||||
Requires: python3-gobject
|
|
||||||
|
Requires: python
|
||||||
|
%if 0%{?fedora} <= 18
|
||||||
|
Requires: python-imaging%{?_isa}
|
||||||
|
%else
|
||||||
|
Requires: python-pillow%{?_isa}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# The libraries are imported dynamically using ctypes, so rpm can't find them.
|
||||||
|
Requires: libGL
|
||||||
|
Requires: libX11
|
||||||
|
|
||||||
|
|
||||||
%global _description %{expand:
|
%description
|
||||||
This library provides an object-oriented programming interface for developing
|
This library provides an object-oriented programming interface for developing
|
||||||
games and other visually-rich applications with Python.
|
games and other visually-rich applications with Python.
|
||||||
pyglet has virtually no external dependencies. For most applications and game
|
pyglet has virtually no external dependencies. For most applications and game
|
||||||
|
|
@ -66,48 +49,33 @@ distribution and installation. It also handles multiple windows and
|
||||||
fully aware of multi-monitor setups.
|
fully aware of multi-monitor setups.
|
||||||
|
|
||||||
pyglet might be seen as an alternative to PyGame.
|
pyglet might be seen as an alternative to PyGame.
|
||||||
}
|
|
||||||
|
|
||||||
%generate_buildrequires
|
|
||||||
%pyproject_buildrequires
|
|
||||||
|
|
||||||
|
|
||||||
%description %_description
|
|
||||||
|
|
||||||
|
|
||||||
|
%if 0%{?with_python3}
|
||||||
%package -n python3-%{srcname}
|
%package -n python3-%{srcname}
|
||||||
Summary: A cross-platform windowing and multimedia library for Python 3
|
Summary: A cross-platform windowing and multimedia library for Python 3
|
||||||
|
|
||||||
%{?python_provide:%python_provide python3-%{srcname}}
|
Requires: python3
|
||||||
|
Requires: python3-pillow%{?_isa}
|
||||||
|
|
||||||
# The libraries are imported dynamically using ctypes, so rpm can't find them.
|
# The libraries are imported dynamically using ctypes, so rpm can't find them.
|
||||||
Requires: libGL
|
Requires: libGL
|
||||||
Requires: libGLU
|
|
||||||
Requires: libX11
|
Requires: libX11
|
||||||
Requires: fontconfig
|
|
||||||
|
|
||||||
# Needed for experimental headless mode; see: https://github.com/pyglet/pyglet/issues/51
|
%description -n python3-%{srcname}
|
||||||
Suggests: libEGL
|
This library provides an object-oriented programming interface for developing
|
||||||
|
games and other visually-rich applications with Python 3.
|
||||||
|
pyglet has virtually no external dependencies. For most applications and game
|
||||||
|
requirements, pyglet needs nothing else besides Python, simplifying
|
||||||
|
distribution and installation. It also handles multiple windows and
|
||||||
|
fully aware of multi-monitor setups.
|
||||||
|
|
||||||
# Pillow is technically optional, but in Fedora we always pull it in.
|
pyglet might be seen as an alternative to PyGame.
|
||||||
# It can open PNG images, so we can remove the bundled "png.py"
|
|
||||||
Requires: python3-pillow
|
|
||||||
|
|
||||||
%if %{with tests}
|
|
||||||
BuildRequires: libGL
|
|
||||||
BuildRequires: libGLU
|
|
||||||
BuildRequires: libEGL
|
|
||||||
BuildRequires: libX11
|
|
||||||
BuildRequires: fontconfig
|
|
||||||
BuildRequires: python3-pillow
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%description -n python3-%{srcname} %_description
|
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1 -n %{versionedname}
|
%setup -q -n %{versionedname}
|
||||||
|
|
||||||
# Remove the bundled pypng library (python-pillow provides the same functionality)
|
# Remove the bundled pypng library (python-pillow provides the same functionality)
|
||||||
rm pyglet/image/codecs/png.py
|
rm pyglet/image/codecs/png.py
|
||||||
|
|
@ -117,212 +85,54 @@ rm pyglet/extlibs/png.py
|
||||||
# Also remove Windows newlines
|
# Also remove Windows newlines
|
||||||
find . -name '*.py' | xargs sed --in-place -e's|#!/usr/bin/\(env \)\?python||;s/\r//'
|
find . -name '*.py' | xargs sed --in-place -e's|#!/usr/bin/\(env \)\?python||;s/\r//'
|
||||||
|
|
||||||
|
%if 0%{?with_python3}
|
||||||
%build
|
rm -rf %{py3dir}
|
||||||
%pyproject_wheel
|
cp -a . %{py3dir}
|
||||||
|
|
||||||
%install
|
|
||||||
%pyproject_install
|
|
||||||
|
|
||||||
%pyproject_save_files pyglet
|
|
||||||
|
|
||||||
|
|
||||||
%if %{with tests}
|
|
||||||
%check
|
|
||||||
# Skip flaky tests
|
|
||||||
export CI=on
|
|
||||||
|
|
||||||
# The files are unbundled in the repacked tarball
|
|
||||||
ln -s %{_datadir}/sounds/purple/*.wav tests/data/media/
|
|
||||||
|
|
||||||
# Interactive tests are skipped for obvious reasons.
|
|
||||||
# Media player tests are skipped -- we don't have PulseAudio running.
|
|
||||||
# test_find_font_match & test_have_font skipped -- they look for a font named 'arial'
|
|
||||||
# test_font & test_freetype_face tests are skipped -- they depend on non-free font we remove
|
|
||||||
# test_push_handlers_instance has broken mocking: https://github.com/pyglet/pyglet/issues/606
|
|
||||||
# GdkPixBufTest.test_load_animation uses dinosaur.gif which we remove
|
|
||||||
%pytest \
|
|
||||||
-vv \
|
|
||||||
--non-interactive \
|
|
||||||
--ignore=tests/interactive \
|
|
||||||
--ignore=tests/integration/media \
|
|
||||||
-m 'not (requires_user_action or requires_user_validation or only_interactive)' \
|
|
||||||
-k 'not (test_find_font_match or test_font or test_have_font or test_freetype_face or test_openal_listener or test_push_handlers_instance)' \
|
|
||||||
--deselect tests/integration/image/test_gdkpixbuf2.py::GdkPixBufTest::test_load_animation \
|
|
||||||
tests
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%files -n python3-%{srcname} -f %%{pyproject_files}
|
%build
|
||||||
|
%{__python} setup.py build
|
||||||
|
|
||||||
|
%if 0%{?with_python3}
|
||||||
|
pushd %{py3dir}
|
||||||
|
%{__python3} setup.py build
|
||||||
|
popd
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%install
|
||||||
|
%{__python} setup.py install --skip-build --root %{buildroot}
|
||||||
|
%py_byte_compile %{__python} %{buildroot}%{python_sitelib}/%{srcname}
|
||||||
|
|
||||||
|
%if 0%{?with_python3}
|
||||||
|
pushd %{py3dir}
|
||||||
|
%{__python3} setup.py install --skip-build --root %{buildroot}
|
||||||
|
%py_byte_compile %{__python3} %{buildroot}%{python3_sitelib}/%{srcname}
|
||||||
|
popd
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%files
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc README.md RELEASE_NOTES
|
%doc CHANGELOG
|
||||||
|
%doc README
|
||||||
|
%doc NOTICE
|
||||||
|
%doc PKG-INFO
|
||||||
|
%{python_sitelib}/%{versionedname}-py2.7.egg-info
|
||||||
|
%{python_sitelib}/%{srcname}
|
||||||
|
|
||||||
|
%if 0%{?with_python3}
|
||||||
|
%files -n python3-%{srcname}
|
||||||
|
%license LICENSE
|
||||||
|
%doc CHANGELOG
|
||||||
|
%doc README
|
||||||
|
%doc NOTICE
|
||||||
|
%doc PKG-INFO
|
||||||
|
%{python3_sitelib}/%{versionedname}-py%{python3_version}.egg-info
|
||||||
|
%{python3_sitelib}/%{srcname}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Sep 19 2025 Python Maint <python-maint@redhat.com> - 2.0.10-9
|
|
||||||
- Rebuilt for Python 3.14.0rc3 bytecode
|
|
||||||
|
|
||||||
* Sat Aug 23 2025 Orion Poplawski <orion@nwra.com> - 2.0.10-8
|
|
||||||
- Add BR/R on python3-gobject, skip openal test (FTBFS rhbz#2379002)
|
|
||||||
|
|
||||||
* Fri Aug 15 2025 Python Maint <python-maint@redhat.com> - 2.0.10-7
|
|
||||||
- Rebuilt for Python 3.14.0rc2 bytecode
|
|
||||||
|
|
||||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.10-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jun 03 2025 Python Maint <python-maint@redhat.com> - 2.0.10-5
|
|
||||||
- Rebuilt for Python 3.14
|
|
||||||
|
|
||||||
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.10-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.10-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jun 08 2024 Python Maint <python-maint@redhat.com> - 2.0.10-2
|
|
||||||
- Rebuilt for Python 3.13
|
|
||||||
|
|
||||||
* Sat Feb 17 2024 Orion Poplawski <orion@nwra.com> - 2.0.10-1
|
|
||||||
- Update to 2.0.10
|
|
||||||
|
|
||||||
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.27-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.27-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.27-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jun 17 2023 Orion Poplawski <orion@nwra.com> - 1.5.27-1
|
|
||||||
- Update to 1.5.27
|
|
||||||
- Add patch for Python 3.12 support
|
|
||||||
- Use SPDX License
|
|
||||||
|
|
||||||
* Fri Jun 16 2023 Python Maint <python-maint@redhat.com> - 1.5.23-5
|
|
||||||
- Rebuilt for Python 3.12
|
|
||||||
|
|
||||||
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.23-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.23-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 1.5.23-2
|
|
||||||
- Rebuilt for Python 3.11
|
|
||||||
|
|
||||||
* Thu Apr 28 2022 Petr Viktorin <pviktori@redhat.com> - 1.5.23-1
|
|
||||||
- Update to 1.5.23
|
|
||||||
- This version should not attempt to use the incompatible ffmpeg 5.0,
|
|
||||||
and fall back to another sound backend if available.
|
|
||||||
Resolves: RHBZ#2075965
|
|
||||||
|
|
||||||
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.16-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sun Oct 10 2021 Benjamin A. Beasley <code@musicinmybrain.net> - 1.5.16-4
|
|
||||||
- Backport upstream patch to fix ExcludeArch (fix RHBZ#1877849)
|
|
||||||
|
|
||||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.16-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 1.5.16-2
|
|
||||||
- Rebuilt for Python 3.10
|
|
||||||
|
|
||||||
* Wed Apr 14 2021 Petr Viktorin <pviktori@redhat.com> - 1.5.16-1
|
|
||||||
- Update to 1.5.16
|
|
||||||
- Add a comment on how to handle unbundled "pypng"
|
|
||||||
- Suggest libEGL for new headless mode (experimental, undocumented)
|
|
||||||
- Remove patch that's now upstream
|
|
||||||
|
|
||||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.11-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Nov 25 2020 Petr Viktorin <pviktori@redhat.com> - 1.5.11-1
|
|
||||||
- Update to 1.5.11
|
|
||||||
|
|
||||||
* Wed Sep 09 2020 Petr Viktorin <pviktori@redhat.com> - 1.5.7-1
|
|
||||||
- Update to 1.5.7
|
|
||||||
- Switch to pyproject macros
|
|
||||||
- Run tests
|
|
||||||
|
|
||||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.6-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 1.4.6-3
|
|
||||||
- Rebuilt for Python 3.9
|
|
||||||
|
|
||||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.6-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Oct 23 2019 Petr Viktorin <pviktori@redhat.com> - 1.4.6-1
|
|
||||||
- Update to release 1.4.6
|
|
||||||
- Update upstream release URL
|
|
||||||
|
|
||||||
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.4.1-4
|
|
||||||
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
||||||
|
|
||||||
* Sun Aug 18 2019 Miro Hrončok <mhroncok@redhat.com> - 1.4.1-3
|
|
||||||
- Rebuilt for Python 3.8
|
|
||||||
|
|
||||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.1-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jul 23 2019 Petr Viktorin <pviktori@redhat.com> - 1.4.1-1
|
|
||||||
- Update to release 1.4.1
|
|
||||||
|
|
||||||
* Tue Jul 23 2019 Petr Viktorin <pviktori@redhat.com> - 1.3.2-3
|
|
||||||
- Bump release for to fix upgrade from 29
|
|
||||||
https://bugzilla.redhat.com/show_bug.cgi?id=1695261
|
|
||||||
|
|
||||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Nov 02 2018 Petr Viktorin <pviktori@redhat.com> - 1.3.2-1
|
|
||||||
- Update to 1.3.2 and drop Python 2 subpackage
|
|
||||||
|
|
||||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.3.1-2
|
|
||||||
- Rebuilt for Python 3.7
|
|
||||||
|
|
||||||
* Tue Feb 06 2018 Petr Viktorin <pviktori@redhat.com> - 1.3.1-1
|
|
||||||
- Update to upstream 1.3.1 bugfix release
|
|
||||||
- Always build for Python 3; conditionalize the Python 2 library
|
|
||||||
|
|
||||||
* Fri Jan 26 2018 Petr Viktorin <pviktori@redhat.com> - 1.3.0-1
|
|
||||||
- Update to upstream 1.3.0
|
|
||||||
|
|
||||||
* Thu Aug 10 2017 Iryna Shcherbina <ishcherb@redhat.com> - 1.2.4-5
|
|
||||||
- Use versioned python prefix for python-setuptools
|
|
||||||
|
|
||||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.4-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.4-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.2.4-2
|
|
||||||
- Rebuild for Python 3.6
|
|
||||||
|
|
||||||
* Tue Aug 09 2016 Petr Viktorin <pviktori@redhat.com> - 1.2.4-1
|
|
||||||
- Update to upstream 1.2.4
|
|
||||||
- Specfile cleanup
|
|
||||||
|
|
||||||
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-4
|
|
||||||
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
||||||
|
|
||||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
||||||
|
|
||||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-1
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jan 28 2015 Petr Viktorin <pviktori@redhat.com> - 1.2.1-0
|
* Wed Jan 28 2015 Petr Viktorin <pviktori@redhat.com> - 1.2.1-0
|
||||||
- Update to upstream 1.2.1 release
|
- Update to upstream 1.2.1 release
|
||||||
|
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
SHA512 (pyglet-2.0.10-repacked.tar.gz) = 8c780913435b1c17e43dcc99e729a2ea5d6a6e734cce642b8da82547f734cc9ce43732257e4f241eb3803a9edc941a96a762e869043260ff15adc84ba5c6d813
|
e63c533a61070fedad6643eaa8da5070 pyglet-1.2.1-repacked.tar.gz
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue