ceaf4c5
%bcond_without check
cb3b651
cb3b651
%global modname pexpect
cb3b651
cb3b651
Name:           python-%{modname}
cb3b651
Summary:        Unicode-aware Pure Python Expect-like module
ae5fa3b
Version:        4.9.0
d24b619
Release:        4%{?dist}
cb3b651
c60697c
# All the files have ISC license except the
c60697c
# following two that have BSD license:
c60697c
# python-pexpect/pexpect-4.8.0/pexpect/pty_spawn.py
c60697c
# python-pexpect/pexpect-4.8.0/pexpect/spawnbase.py
c60697c
License:        ISC AND BSD-3-Clause
cb3b651
URL:            https://github.com/pexpect/pexpect
cb3b651
Source0:        %{url}/archive/%{version}/%{modname}-%{version}.tar.gz
cb3b651
95cf8d3
BuildRequires:  /usr/bin/man
ceaf4c5
%if %{with check}
ceaf4c5
BuildRequires:  openssl
ceaf4c5
BuildRequires:  python-unversioned-command
ceaf4c5
%endif
cb3b651
cb3b651
BuildArch:      noarch
cb3b651
cb3b651
%description
cb3b651
Pexpect is a pure Python module for spawning child applications; controlling
cb3b651
them; and responding to expected patterns in their output. Pexpect works like
cb3b651
Don Libes' Expect. Pexpect allows your script to spawn a child application and
cb3b651
control it as if a human were typing commands.
cb3b651
cb3b651
Pexpect can be used for automating interactive applications such as ssh, ftp,
cb3b651
passwd, telnet, etc. It can be used to automate setup scripts for duplicating
cb3b651
software package installations on different servers. And it can be used for
cb3b651
automated software testing. Pexpect is in the spirit of Don Libes' Expect, but
cb3b651
Pexpect is pure Python. Unlike other Expect-like modules for Python, Pexpect
cb3b651
does not require TCL or Expect nor does it require C extensions to be
cb3b651
compiled.  It should work on any platform that supports the standard Python
cb3b651
pty module.
cb3b651
cb3b651
%package -n python3-%{modname}
cb3b651
Summary:        %{summary}
aa23d24
%{?python_provide:%python_provide python3-%{modname}}
aa23d24
BuildRequires:  python3-devel
2becde7
BuildRequires:  python3-setuptools
aa23d24
BuildRequires:  python3-pytest
aa23d24
BuildRequires:  python3-ptyprocess
ae5fa3b
BuildRequires:  zsh
aa23d24
Requires:       python3-ptyprocess
cb3b651
cb3b651
%description -n python3-%{modname}
cb3b651
Pexpect is a pure Python module for spawning child applications; controlling
cb3b651
them; and responding to expected patterns in their output. Pexpect works like
cb3b651
Don Libes' Expect. Pexpect allows your script to spawn a child application and
cb3b651
control it as if a human were typing commands. This package contains the
cb3b651
python3 version of this module.
cb3b651
cb3b651
Pexpect can be used for automating interactive applications such as ssh, ftp,
cb3b651
passwd, telnet, etc. It can be used to automate setup scripts for duplicating
cb3b651
software package installations on different servers. And it can be used for
cb3b651
automated software testing. Pexpect is in the spirit of Don Libes' Expect, but
cb3b651
Pexpect is pure Python. Unlike other Expect-like modules for Python, Pexpect
cb3b651
does not require TCL or Expect nor does it require C extensions to be
cb3b651
compiled.  It should work on any platform that supports the standard Python
cb3b651
pty module.
cb3b651
cb3b651
%prep
c05ef6a
%autosetup -n %{modname}-%{version} -p 1
cb3b651
cb3b651
%build
e121357
%py3_build
cb3b651
cb3b651
%install
e121357
%py3_install
e121357
rm -rf %{buildroot}%{python3_sitelib}/pexpect/tests
cb3b651
cb3b651
%if %{with check}
cb3b651
%check
cb3b651
export PYTHONIOENCODING=UTF-8
5eb6e96
# workaround for https://bugzilla.redhat.com/show_bug.cgi?id=1914843
5eb6e96
# upstream: https://github.com/pexpect/pexpect/issues/669
5eb6e96
# There's a patch upstream that we can presumable remove this after
5eb6e96
# it merges and is released.
5eb6e96
# Thx for the suggestion Miro: https://www.spinics.net/lists/fedora-devel/msg283026.html
5eb6e96
echo "set enable-bracketed-paste off" > .inputrc
5eb6e96
export INPUTRC=$PWD/.inputrc
cb3b651
e121357
%{__python3} ./tools/display-sighandlers.py
e121357
%{__python3} ./tools/display-terminalinfo.py
60e9fbf
CI=true py.test-3 --verbose
cb3b651
%endif
cb3b651
cb3b651
%files -n python3-%{modname}
e121357
%license LICENSE
e121357
%doc doc examples
cb3b651
%{python3_sitelib}/%{modname}/
cb3b651
%{python3_sitelib}/%{modname}-*.egg-info
cb3b651
cb3b651
%changelog
d24b619
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.9.0-4
d24b619
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
d24b619
9964c6c
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.9.0-3
9964c6c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
9964c6c
60e9fbf
* Wed Nov 29 2023 Scott Talbert <swt@techie.net> - 4.9.0-2
60e9fbf
- Fix tests when running in CI-like environments (#2251910)
60e9fbf
ae5fa3b
* Mon Nov 27 2023 Dan Radez <dradez@redhat.com> - 4.9.0-1
ae5fa3b
- Update to new upstream release 4.9.0 (#2251454)
ae5fa3b
98e0069
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.8.0-17
98e0069
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
98e0069
5742a70
* Wed Jun 14 2023 Python Maint <python-maint@redhat.com> - 4.8.0-16
5742a70
- Rebuilt for Python 3.12
5742a70
7aa8464
* Sun Feb 12 2023 Scott Talbert <swt@techie.net> - 4.8.0-15
7aa8464
- Fix FTBFS with Python 3.12 (#2155493)
7aa8464
880cb29
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.8.0-14
880cb29
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
880cb29
514efa0
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.8.0-13
514efa0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
514efa0
f4f3fd1
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 4.8.0-12
f4f3fd1
- Rebuilt for Python 3.11
f4f3fd1
c05ef6a
* Thu Mar 24 2022 Scott Talbert <swt@techie.net> - 4.8.0-11
c05ef6a
- Replace asyncio.coroutine to fix Python 3.11 support (#2019843)
c05ef6a
740948a
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.8.0-10
740948a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
740948a
2249229
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.8.0-9
2249229
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
2249229
28b7317
* Wed Jun 02 2021 Python Maint <python-maint@redhat.com> - 4.8.0-8
28b7317
- Rebuilt for Python 3.10
28b7317
28360c1
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.8.0-7
28360c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
28360c1
5eb6e96
* Tue Jan 19 2021 Dan Radez <dradez@redhat.com> - 4.8.0-6
5eb6e96
- adding workaround for https://bugzilla.redhat.com/show_bug.cgi?id=1914843
5eb6e96
- while we wait for upstream fix: https://github.com/pexpect/pexpect/issues/669
5eb6e96
95cf8d3
* Wed Sep 16 2020 Kalev Lember <klember@redhat.com> - 4.8.0-5
95cf8d3
- Avoid using bindir macro in BuildRequires
95cf8d3
44eef26
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.8.0-4
44eef26
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
44eef26
95c6397
* Sat May 23 2020 Miro Hrončok <mhroncok@redhat.com> - 4.8.0-3
95c6397
- Rebuilt for Python 3.9
95c6397
9a088be
* Wed Apr 08 2020 Scott Talbert <swt@techie.net> - 4.8.0-2
9a088be
- Fix tests when building under COPR (#1822060)
9a088be
ceaf4c5
* Tue Apr 07 2020 Scott Talbert <swt@techie.net> - 4.8.0-1
ceaf4c5
- Update to new upstream release 4.8.0 and re-enable tests (#1793613)
ceaf4c5
9da9f40
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.7.0-5
9da9f40
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
9da9f40
e121357
* Tue Sep 24 2019 Dan Radez <dradez@redhat.com> - 4.7.0-4
e121357
- Remove Python2 packaging
e121357
a8f793b
* Fri Aug 16 2019 Miro Hrončok <mhroncok@redhat.com> - 4.7.0-3
a8f793b
- Rebuilt for Python 3.8
a8f793b
ab48b4a
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.7.0-2
ab48b4a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
ab48b4a
1ed6a9d
* Thu Apr 11 2019 Dan Radez <dradez@redhat.com> - 4.7.0-1
1ed6a9d
- update to 4.7.0
1ed6a9d
1e34951
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.6-3
1e34951
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
1e34951
c7401be
* Sun Nov 18 2018 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 4.6-2
c7401be
- Drop explicit locale setting
c7401be
  See https://fedoraproject.org/wiki/Changes/Remove_glibc-langpacks-all_from_buildroot
c7401be
cb3b651
* Wed Jul 25 2018 Dan Radez <dradez@redhat.com> - 4.6-1
cb3b651
- update to 4.6
cb3b651
cb3b651
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.5-3
cb3b651
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
cb3b651
cb3b651
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 4.5-2
cb3b651
- Rebuilt for Python 3.7
cb3b651
cb3b651
* Wed May 23 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.5.0-1
cb3b651
- Update to 4.5.0
cb3b651
cb3b651
* Mon Mar 12 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.4.0-1
cb3b651
- Update to 4.4.0
cb3b651
cb3b651
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.1-2
cb3b651
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
cb3b651
cb3b651
* Fri Dec 22 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.3.1-1
cb3b651
- Update to 4.3.1
cb3b651
cb3b651
* Fri Nov 10 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.3-1
cb3b651
- Update to 4.3
cb3b651
cb3b651
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-2
cb3b651
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
cb3b651
cb3b651
* Tue Feb 14 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.2.1-1
cb3b651
- Update to 4.2.1
cb3b651
cb3b651
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.0-4
cb3b651
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
cb3b651
cb3b651
* Tue Dec 13 2016 Stratakis Charalampos <cstratak@redhat.com> - 4.1.0-3
cb3b651
- Rebuild for Python 3.6
cb3b651
cb3b651
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.0-2
cb3b651
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
cb3b651
cb3b651
* Thu Jun 30 2016 Igor Gnatenko <ignatenko@redhat.com> - 4.1.0-1
cb3b651
- Update to 4.1.0
cb3b651
- Improve packaging
cb3b651
cb3b651
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-6
cb3b651
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
cb3b651
cb3b651
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.1-5
cb3b651
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
cb3b651
cb3b651
* Sun Oct 18 2015 Kalev Lember <klember@redhat.com> - 4.0.1-4
cb3b651
- Move pexpect provides to the right subpackage
cb3b651
cb3b651
* Tue Oct 13 2015 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.0.1-3
cb3b651
- Fix asyncio issue (3.4.3+)
cb3b651
cb3b651
* Thu Oct 08 2015 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.0.1-2
cb3b651
- Fix RPM macroses
cb3b651
cb3b651
* Tue Oct 06 2015 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.0.1-1
cb3b651
- Update to 4.0.1
cb3b651
cb3b651
* Mon Oct 05 2015 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.0-1
cb3b651
- Update to 4.0
cb3b651
- Follow modern RPM Packaging guidelines
cb3b651
cb3b651
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1-4
cb3b651
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
cb3b651
cb3b651
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1-3
cb3b651
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
cb3b651
cb3b651
* Wed May 14 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 3.1-2
cb3b651
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
cb3b651
cb3b651
* Tue Apr 08 2014 Fabian Deutsch <fabiand@fedoraproject.org> - 3.1-1
cb3b651
- Update to 3.1
cb3b651
cb3b651
* Tue Nov 12 2013 Thomas Spura <tomspur@fedoraproject.org> - 3.0-1
cb3b651
- update to 3.0
cb3b651
cb3b651
* Wed Oct 30 2013 Thomas Spura <tomspur@fedoraproject.org> - 3.0-0.1
cb3b651
- new upstream is github/pexpect/pexpect
cb3b651
- update to rc3
cb3b651
- build on noarch again
cb3b651
- consistently use %%{buildroot} everywhere
cb3b651
- be more explicit in %%files
cb3b651
- remove CFLAGS
cb3b651
cb3b651
* Thu Sep 05 2013 Andrew McNabb <amcnabb@mcnabbs.org> - 2.5.1-11
cb3b651
- Fix the name of the arm architecture in ExcludeArch
cb3b651
cb3b651
* Thu Sep 05 2013 Andrew McNabb <amcnabb@mcnabbs.org> - 2.5.1-10
cb3b651
- Remove noarch because of arm build problems (bug #999174)
cb3b651
cb3b651
* Tue Aug 20 2013 Andrew McNabb <amcnabb@mcnabbs.org> - 2.5.1-9
cb3b651
- Exclude the arm architecture (bug #999174)
cb3b651
cb3b651
* Tue Aug 20 2013 Andrew McNabb <amcnabb@mcnabbs.org> - 2.5.1-8
cb3b651
- Bump the obsoletes version
cb3b651
cb3b651
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.1-7
cb3b651
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
cb3b651
cb3b651
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.1-6
cb3b651
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
cb3b651
cb3b651
* Tue Nov 20 2012 Andrew McNabb <amcnabb@mcnabbs.org> - 2.5.1-5
cb3b651
- Exclude test scripts from the files list
cb3b651
cb3b651
* Tue Nov 20 2012 Andrew McNabb <amcnabb@mcnabbs.org> - 2.5.1-4
cb3b651
- Moved unit tests to a check section
cb3b651
cb3b651
* Tue Nov 20 2012 Andrew McNabb <amcnabb@mcnabbs.org> - 2.5.1-3
cb3b651
- Added unit tests and fixed metadata fields
cb3b651
cb3b651
* Tue Nov 20 2012 Andrew McNabb <amcnabb@mcnabbs.org> - 2.5.1-2
cb3b651
- Added versions to the obsoletes and provides fields
cb3b651
cb3b651
* Tue Nov 20 2012 Andrew McNabb <amcnabb@mcnabbs.org> - 2.5.1-1
cb3b651
- Updated to version 2.5.1 (pexpect-u fork) and added support for Python 3
cb3b651
cb3b651
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3-6
cb3b651
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
cb3b651
cb3b651
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 2.3-5
cb3b651
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
cb3b651
cb3b651
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3-4
cb3b651
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
cb3b651
cb3b651
* Mon Feb 23 2009 Robert Scheck <robert@fedoraproject.org> 2.3-3
cb3b651
- Rebuild for gcc 4.4 and rpm 4.6
cb3b651
cb3b651
* Fri Dec  5 2008 Jeremy Katz <katzj@redhat.com> - 2.3-2
cb3b651
- Rebuild for python 2.6
cb3b651
cb3b651
* Tue Jan 08 2008 Robert Scheck <robert@fedoraproject.org> 2.3-1
cb3b651
- Upgrade to 2.3
cb3b651
- Updated the source URL to match with the guidelines
cb3b651
cb3b651
* Wed Aug 29 2007 Robert Scheck <robert@fedoraproject.org> 2.1-5
cb3b651
- Rebuilt (and some minor spec file tweaks)
cb3b651
cb3b651
* Sat Dec 09 2006 Toshio Kuratomi <toshio@tiki-lounge.com> - 2.1-4
cb3b651
- Bump and rebuild because I forgot to cvs up before the last build.
cb3b651
cb3b651
* Sat Dec 09 2006 Toshio Kuratomi <toshio@tiki-lounge.com> - 2.1-3
cb3b651
- Bump and rebuild for python 2.5 on devel.
cb3b651
- Add BR: python-devel as it provides a header necessary for python modules
cb3b651
  on python 2.5.
cb3b651
cb3b651
* Fri Sep 01 2006 Toshio Kuratomi <toshio@tiki-lounge.com> - 2.1-2
cb3b651
- Remove pyver define as it's not needed with the automatic python(abi).
cb3b651
- Stop ghosting .pyos.
cb3b651
- Let automatic python compilation take care of creating pyos.
cb3b651
- Rebuild for FC6.
cb3b651
cb3b651
* Mon Jul 17 2006 Toshio Kuratomi <toshio@tiki-lounge.com> - 2.1-1
cb3b651
- Update to 2.1.
cb3b651
cb3b651
* Thu Feb 16 2006 Toshio Kuratomi <toshio@tiki-lounge.com> - 2.0-2
cb3b651
- Bump and rebuild for FC5.
cb3b651
- Convert from python-abi to python(abi) requires.
cb3b651
cb3b651
* Thu Nov 17 2005 Toshio Kuratomi <toshio@tiki-lounge.com> - 2.0-1
cb3b651
- Update to 2.0.
cb3b651
cb3b651
* Sat Sep 3 2005 Toshio Kuratomi <toshio@tiki-lounge.com> 0.99999b-2
cb3b651
- Add LICENSE File.
cb3b651
- Make noarch.
cb3b651
- Remove executable permissions from the modules copied to examples.
cb3b651
cb3b651
* Fri Sep  2 2005 Toshio Kuratomi <toshio@tiki-lounge.com> 0.99999b
cb3b651
- Update to version 0.99999b.
cb3b651
- Add dist tag.
cb3b651
cb3b651
* Thu Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
cb3b651
- rebuilt
cb3b651
cb3b651
* Thu Feb 03 2005 Toshio Kuratomi <toshio@tiki-lounge.com> 0.999-2
cb3b651
- Use python_sitelib macro to resolve build issues on x86_64.
cb3b651
- %%ghost *.pyo
cb3b651
- Install ANSI.py, screen.py, and FSM.py into the examples.  These are intended
cb3b651
  to suplement pexpect eventually but they are currently much less robust and
cb3b651
  not installed to by default.  But they are needed by some examples.
cb3b651
- Use __python macro in build/install for consistency.
cb3b651
- Add --skip-build to the invocation of setup.py in install.
cb3b651
cb3b651
* Mon May 31 2004 Panu Matilainen <pmatilai@welho.com> 0.999-0.fdr.1
cb3b651
- get rid of distrel munging, buildsys does that...
cb3b651
- update to 0.999
cb3b651
- update doc and example tarballs
cb3b651
- fix build on python <> 2.2
cb3b651
- use -O1 in install to generate .pyo files instead of manually creating the files
cb3b651
- require python-abi = pyver to get dependencies right
cb3b651
cb3b651
* Sun Jul 27 2003 Panu Matilainen <pmatilai@welho.com> 0.98-0.fdr.3
cb3b651
- own .pyo files too as suggested by Ville (#517)
cb3b651
cb3b651
* Sat Jul 26 2003 Panu Matilainen <pmatilai@welho.com> 0.98-0.fdr.2
cb3b651
- fixes by Ville (bug #517) applied
cb3b651
cb3b651
* Sat Jul 26 2003 Panu Matilainen <pmatilai@welho.com>
cb3b651
- Initial Fedora packaging
cb3b651