Bug 1198473 - Review Request: python-configargparse - A Python module with support for argparse, config files, and env variables
Summary: Review Request: python-configargparse - A Python module with support for argp...
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Fedora
Classification: Fedora
Component: Package Review
Version: rawhide
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: James Hogarth
QA Contact: Fedora Extras Quality Assurance
Eduardo Mayorga
URL:
Whiteboard:
Depends On:
Blocks: 1215478
TreeView+ depends on / blocked
 
Reported: 2015-03-04 08:53 UTC by Fabian Affolter
Modified: 2015-11-27 20:52 UTC (History)
7 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2015-11-27 18:23:08 UTC
Type: ---
Embargoed:
james.hogarth: fedora-review+


Attachments (Terms of Use)

Description Fabian Affolter 2015-03-04 08:53:53 UTC
Spec URL: https://fab.fedorapeople.org/packages/SRPMS/python-configargparse.spec
SRPM URL: https://fab.fedorapeople.org/packages/SRPMS/python-configargparse-0.9.3-1.fc21.src.rpm

Project URL: https://github.com/bw2/ConfigArgParse

Description:
Applications with more than a handful of user-settable options are best
configured through a combination of command line args, config files, hard
coded defaults, and in some cases, environment variables.

Python’s command line parsing modules such as argparse have very limited
support for config files and environment variables, so this module extends
argparse to add these features.

Koji scratch build:
koji.fedoraproject.org/koji/taskinfo?taskID=9135628

rpmlint output:
[fab@laptop017 SRPMS]$ rpmlint python-configargparse-0.9.3-1.fc21.src.rpm 
python-configargparse.src: W: spelling-error Summary(en_US) argparse -> sparse, parsec, parse
python-configargparse.src: W: spelling-error Summary(en_US) config -> con fig, con-fig, configure
python-configargparse.src: W: spelling-error Summary(en_US) env -> enc, en, envy
python-configargparse.src: W: spelling-error %description -l en_US args -> rags, gars, ares
python-configargparse.src: W: spelling-error %description -l en_US config -> con fig, con-fig, configure
python-configargparse.src: W: spelling-error %description -l en_US argparse -> sparse, parsec, parse
1 packages and 0 specfiles checked; 0 errors, 6 warnings.


[fab@laptop017 noarch]$ rpmlint python*-configargparse*
python3-configargparse.noarch: W: spelling-error %description -l en_US args -> rags, gars, ares
python3-configargparse.noarch: W: spelling-error %description -l en_US config -> con fig, con-fig, configure
python3-configargparse.noarch: W: spelling-error %description -l en_US argparse -> sparse, parsec, parse
python-configargparse.noarch: W: spelling-error Summary(en_US) argparse -> sparse, parsec, parse
python-configargparse.noarch: W: spelling-error Summary(en_US) config -> con fig, con-fig, configure
python-configargparse.noarch: W: spelling-error Summary(en_US) env -> enc, en, envy
python-configargparse.noarch: W: spelling-error %description -l en_US args -> rags, gars, ares
python-configargparse.noarch: W: spelling-error %description -l en_US config -> con fig, con-fig, configure
python-configargparse.noarch: W: spelling-error %description -l en_US argparse -> sparse, parsec, parse
2 packages and 0 specfiles checked; 0 errors, 9 warnings.

Fedora Account System Username: fab

Comment 1 Eduardo Mayorga 2015-07-29 04:43:19 UTC
The Python Packaging Guidelines have changed since you submitted your package, so now it does not comply them.

Package Review
==============

Legend:
[x] = Pass, [!] = Fail, [-] = Not applicable, [?] = Not evaluated


Issues:
=======
- %{py3dir} must not be used. Instead, use in %prep:
%if 0%{?with_python3}
cp -a python2 python3
find python3 -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python3}|'
%endif # with_python3

find python2 -name '*.py' | xargs sed -i '1s|^#!python|#!%{__python2}|'

  Similarly use python2 and python3 directory names as given for other parts of spec file like %build, %install, %check from https://fedoraproject.org/wiki/Packaging:Python#Example_spec_file

- A python2- subpackage is needed. Use:
%description
Applications with more than a handful of user-settable options are best
configured through a combination of command line args, config files, hard
...

%package -n python2-%{srcname}
Summary:        %{summary}
%{python_provides:%python_provides python2-%{srcname}}

%description -n python2-%{srcname}
Applications with more than a handful of user-settable options are best
...

- For F23+ use:                    %{__python2} setup.py build -> %py2_build
                                   %{__python3} setup.py build -> %py3_build
%{__python2} setup.py install --skip-build --root %{buildroot} -> %py2_install
%{__python3} setup.py install --skip-build --root %{buildroot} -> %py3_install

- The timestamps of the sources are not preserved.


===== MUST items =====

Generic:
[x]: Package successfully compiles and builds into binary rpms on at least
     one supported primary architecture.
[x]: Package is licensed with an open-source compatible license and meets
     other legal requirements as defined in the legal section of Packaging
     Guidelines.
[x]: License field in the package spec file matches the actual license.
[x]: License file installed when any subpackage combination is installed.
[x]: All build dependencies are listed in BuildRequires, except for any
     that are listed in the exceptions section of Packaging Guidelines.
[x]: Package contains no bundled libraries without FPC exception.
[x]: Changelog in prescribed format.
[x]: Sources contain only permissible code or content.
[-]: Package contains desktop file if it is a GUI application.
[-]: Development files must be in a -devel package
[x]: Package uses nothing in %doc for runtime.
[x]: Package consistently uses macros (instead of hard-coded directory
     names).
[x]: Package is named according to the Package Naming Guidelines.
[x]: Package does not generate any conflict.
[x]: Package obeys FHS, except libexecdir and /usr/target.
[-]: If the package is a rename of another package, proper Obsoletes and
     Provides are present.
[x]: Requires correct, justified where necessary.
[x]: Spec file is legible and written in American English.
[-]: Package contains systemd file(s) if in need.
[x]: Package is not known to require an ExcludeArch tag.
[-]: Large documentation must go in a -doc subpackage. Large could be size
     (~1MB) or number of files.
     Note: Documentation size is 40960 bytes in 2 files.
[x]: Package complies to the Packaging Guidelines
[x]: Package installs properly.
[x]: Rpmlint is run on all rpms the build produces.
     Note: There are rpmlint messages (see attachment).
[x]: If (and only if) the source package includes the text of the
     license(s) in its own file, then that file, containing the text of the
     license(s) for the package is included in %license.
[x]: Package requires other packages for directories it uses.
[x]: Package must own all directories that it creates.
[x]: Package does not own files or directories owned by other packages.
[x]: Package uses either %{buildroot} or $RPM_BUILD_ROOT
[x]: Package does not run rm -rf %{buildroot} (or $RPM_BUILD_ROOT) at the
     beginning of %install.
[x]: Macros in Summary, %description expandable at SRPM build time.
[x]: Dist tag is present.
[x]: Package does not contain duplicates in %files.
[x]: Permissions on files are set properly.
[x]: Package use %makeinstall only when make install DESTDIR=... doesn't
     work.
[x]: Package is named using only allowed ASCII characters.
[x]: Package does not use a name that already exists.
[x]: Package is not relocatable.
[x]: Sources used to build the package match the upstream source, as
     provided in the spec URL.
[x]: Spec file name must match the spec package %{name}, in the format
     %{name}.spec.
[x]: File names are valid UTF-8.
[x]: Packages must not store files under /srv, /opt or /usr/local

Python:
[x]: Python eggs must not download any dependencies during the build
     process.
[-]: A package which is used by another package via an egg interface should
     provide egg info.
[!]: Package meets the Packaging Guidelines::Python
[x]: Package contains BR: python2-devel or python3-devel
[x]: Binary eggs must be removed in %prep

===== SHOULD items =====

Generic:
[-]: If the source package does not include license text(s) as a separate
     file from upstream, the packager SHOULD query upstream to include it.
[x]: Final provides and requires are sane (see attachments).
[-]: Fully versioned dependency in subpackages if applicable.
[x]: Package functions as described.
[x]: Latest version is packaged.
[x]: Package does not include license text files separate from upstream.
[-]: Description and summary sections in the package spec file contains
     translations for supported Non-English languages, if available.
[x]: Package should compile and build into binary rpms on all supported
     architectures.
[-]: %check is present and all tests pass.
[!]: Packages should try to preserve timestamps of original installed
     files.
[x]: Packager, Vendor, PreReq, Copyright tags should not be in spec file
[x]: Sources can be downloaded from URI in Source: tag
[x]: Buildroot is not present
[x]: Package has no %clean section with rm -rf %{buildroot} (or
     $RPM_BUILD_ROOT)
[x]: No file requires outside of /etc, /bin, /sbin, /usr/bin, /usr/sbin.
[x]: SourceX is a working URL.
[x]: Spec use %global instead of %define unless justified.

===== EXTRA items =====

Generic:
[x]: Rpmlint is run on all installed packages.
     Note: There are rpmlint messages (see attachment).


Rpmlint
-------
Checking: python-configargparse-0.9.3-1.fc24.noarch.rpm
          python3-configargparse-0.9.3-1.fc24.noarch.rpm
          python-configargparse-0.9.3-1.fc21.src.rpm
python-configargparse.noarch: W: spelling-error Summary(en_US) argparse -> sparse, parsec, parse
python-configargparse.noarch: W: spelling-error Summary(en_US) config -> con fig, con-fig, configure
python-configargparse.noarch: W: spelling-error Summary(en_US) env -> enc, en, envy
python-configargparse.noarch: W: spelling-error %description -l en_US args -> rags, gars, ares
python-configargparse.noarch: W: spelling-error %description -l en_US config -> con fig, con-fig, configure
python-configargparse.noarch: W: spelling-error %description -l en_US argparse -> sparse, parsec, parse
python3-configargparse.noarch: W: spelling-error Summary(en_US) argparse -> sparse, parsec, parse
python3-configargparse.noarch: W: spelling-error Summary(en_US) config -> con fig, con-fig, configure
python3-configargparse.noarch: W: spelling-error Summary(en_US) env -> enc, en, envy
python3-configargparse.noarch: W: spelling-error %description -l en_US args -> rags, gars, ares
python3-configargparse.noarch: W: spelling-error %description -l en_US config -> con fig, con-fig, configure
python3-configargparse.noarch: W: spelling-error %description -l en_US argparse -> sparse, parsec, parse
python-configargparse.src: W: spelling-error Summary(en_US) argparse -> sparse, parsec, parse
python-configargparse.src: W: spelling-error Summary(en_US) config -> con fig, con-fig, configure
python-configargparse.src: W: spelling-error Summary(en_US) env -> enc, en, envy
python-configargparse.src: W: spelling-error %description -l en_US args -> rags, gars, ares
python-configargparse.src: W: spelling-error %description -l en_US config -> con fig, con-fig, configure
python-configargparse.src: W: spelling-error %description -l en_US argparse -> sparse, parsec, parse
3 packages and 0 specfiles checked; 0 errors, 18 warnings.




Rpmlint (installed packages)
----------------------------
python-configargparse.noarch: W: spelling-error Summary(en_US) argparse -> sparse, parsec, parse
python-configargparse.noarch: W: spelling-error Summary(en_US) config -> con fig, con-fig, configure
python-configargparse.noarch: W: spelling-error Summary(en_US) env -> enc, en, envy
python-configargparse.noarch: W: spelling-error %description -l en_US args -> rags, gars, ares
python-configargparse.noarch: W: spelling-error %description -l en_US config -> con fig, con-fig, configure
python-configargparse.noarch: W: spelling-error %description -l en_US argparse -> sparse, parsec, parse
python3-configargparse.noarch: W: spelling-error Summary(en_US) argparse -> sparse, parsec, parse
python3-configargparse.noarch: W: spelling-error Summary(en_US) config -> con fig, con-fig, configure
python3-configargparse.noarch: W: spelling-error Summary(en_US) env -> enc, en, envy
python3-configargparse.noarch: W: spelling-error %description -l en_US args -> rags, gars, ares
python3-configargparse.noarch: W: spelling-error %description -l en_US config -> con fig, con-fig, configure
python3-configargparse.noarch: W: spelling-error %description -l en_US argparse -> sparse, parsec, parse
2 packages and 0 specfiles checked; 0 errors, 12 warnings.



Requires
--------
python-configargparse (rpmlib, GLIBC filtered):
    python(abi)

python3-configargparse (rpmlib, GLIBC filtered):
    python(abi)
    python3



Provides
--------
python-configargparse:
    python-configargparse

python3-configargparse:
    python3-configargparse



Source checksums
----------------
https://pypi.python.org/packages/source/C/ConfigArgParse/ConfigArgParse-0.9.3.tar.gz :
  CHECKSUM(SHA256) this package     : 141c57112e1f8eb7e594a9820e95af897a7fa2d186cef5cff7e08cb3f7252829
  CHECKSUM(SHA256) upstream package : 141c57112e1f8eb7e594a9820e95af897a7fa2d186cef5cff7e08cb3f7252829

Comment 2 Felix Schwarz 2015-10-29 00:11:33 UTC
I believe this version is required for the letsencrypt client (see bug 1215478) so it would be nice to get this package in Fedora.

Comment 3 Fabian Affolter 2015-10-30 12:17:17 UTC
Thanks for comments.

* Fri Oct 30 2015 Fabian Affolter <mail> - 0.9.3-2
- Update macros

Updated files:

Spec URL: https://fab.fedorapeople.org/packages/SRPMS/python-configargparse.spec
SRPM URL: https://fab.fedorapeople.org/packages/SRPMS/python-configargparse-0.9.3-2.fc22.src.rpm

Comment 4 James Hogarth 2015-11-05 21:50:49 UTC
Seeing as the assignee is set to nobody and it blocks a package I'd like to see in Fedora I'd be happy to take the review....

However as it stands the current spec/srpm listed doesn't build against rawhide when using fedora-review...

+ CFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic'
+ /usr/bin/python2 setup.py build '--executable=/usr/bin/python2 -s'
running build
running build_py
creating build
creating build/lib
copying configargparse.py -> build/lib
running egg_info
writing ConfigArgParse.egg-info/PKG-INFO
writing top-level names to ConfigArgParse.egg-info/top_level.txt
writing dependency_links to ConfigArgParse.egg-info/dependency_links.txt
reading manifest file 'ConfigArgParse.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'ConfigArgParse.egg-info/SOURCES.txt'
+ %py3_build
/var/tmp/rpm-tmp.MlF8nw: line 34: fg: no job control
RPM build errors:
error: Bad exit status from /var/tmp/rpm-tmp.MlF8nw (%build)
    Bad exit status from /var/tmp/rpm-tmp.MlF8nw (%build)
Child return code was: 1

Fabian are you going to be able to review the changes that have caused this to break and submit a new build?

If so I'll take the review then, if not then I'd be happy to pick this up myself given the blocker situation.

Comment 5 Upstream Release Monitoring 2015-11-05 22:48:29 UTC
fab's scratch build of python-configargparse-0.9.3-2.fc22.src.rpm for rawhide failed http://koji.fedoraproject.org/koji/taskinfo?taskID=11719907

Comment 6 Upstream Release Monitoring 2015-11-05 22:57:52 UTC
fab's scratch build of python-configargparse-0.9.3-2.fc22.src.rpm for rawhide completed http://koji.fedoraproject.org/koji/taskinfo?taskID=11719985

Comment 7 Fabian Affolter 2015-11-05 23:15:20 UTC
%changelog
* Thu Nov 05 2015 Fabian Affolter <mail> - 0.9.3-3
- Remove old parts

Updated files:

Spec URL: https://fab.fedorapeople.org/packages/SRPMS/python-configargparse.spec
SRPM URL: https://fab.fedorapeople.org/packages/SRPMS/python-configargparse-0.9.3-3.fc22.src.rpm

Koji build: http://koji.fedoraproject.org/koji/taskinfo?taskID=11720014

Comment 8 Upstream Release Monitoring 2015-11-05 23:24:37 UTC
fab's scratch build of python-configargparse-0.9.3-2.fc22.src.rpm for rawhide completed http://koji.fedoraproject.org/koji/taskinfo?taskID=11720012

Comment 9 James Hogarth 2015-11-06 08:56:47 UTC
Thanks Fabian,

I'll take this then and will get back with the results of the review later on in the day.

Comment 10 Upstream Release Monitoring 2015-11-08 12:31:24 UTC
jhogarth's scratch build of python-configargparse-0.9.3-3.fc22.src.rpm for f23 completed http://koji.fedoraproject.org/koji/taskinfo?taskID=11750861

Comment 11 James Hogarth 2015-11-08 12:38:51 UTC
Package Review
==============

Legend:
[x] = Pass, [!] = Fail, [-] = Not applicable, [?] = Not evaluated

Issues:
=======


===== MUST items =====

Generic:
[x]: Package is licensed with an open-source compatible license and meets
     other legal requirements as defined in the legal section of Packaging
     Guidelines.
[x]: License field in the package spec file matches the actual license.
     Note: Checking patched sources after %prep for licenses. Licenses
     found: "*No copyright* MIT/X11 (BSD like)", "Unknown or generated". 10
     files have unknown license. Detailed output of licensecheck in
     /home/hogarthj/fedora-scm/1198473-python-
     configargparse/licensecheck.txt
[x]: License file installed when any subpackage combination is installed.
[x]: Package contains no bundled libraries without FPC exception.
[x]: Changelog in prescribed format.
[x]: Sources contain only permissible code or content.
[-]: Package contains desktop file if it is a GUI application.
[-]: Development files must be in a -devel package
[x]: Package uses nothing in %doc for runtime.
[x]: Package consistently uses macros (instead of hard-coded directory
     names).
[x]: Package is named according to the Package Naming Guidelines.
[x]: Package does not generate any conflict.
[x]: Package obeys FHS, except libexecdir and /usr/target.
[-]: If the package is a rename of another package, proper Obsoletes and
     Provides are present.
[x]: Requires correct, justified where necessary.
[x]: Spec file is legible and written in American English.
[-]: Package contains systemd file(s) if in need.
[x]: Package is not known to require an ExcludeArch tag.
[-]: Large documentation must go in a -doc subpackage. Large could be size
     (~1MB) or number of files.
     Note: Documentation size is 40960 bytes in 2 files.
[x]: Package complies to the Packaging Guidelines
[x]: Package successfully compiles and builds into binary rpms on at least
     one supported primary architecture.
[x]: Package installs properly.
[x]: Rpmlint is run on all rpms the build produces.
     Note: There are rpmlint messages (see attachment).
[x]: If (and only if) the source package includes the text of the
     license(s) in its own file, then that file, containing the text of the
     license(s) for the package is included in %license.
[x]: Package requires other packages for directories it uses.
[x]: Package must own all directories that it creates.
[x]: Package does not own files or directories owned by other packages.
[x]: All build dependencies are listed in BuildRequires, except for any
     that are listed in the exceptions section of Packaging Guidelines.
[x]: Package uses either %{buildroot} or $RPM_BUILD_ROOT
[x]: Package does not run rm -rf %{buildroot} (or $RPM_BUILD_ROOT) at the
     beginning of %install.
[x]: Macros in Summary, %description expandable at SRPM build time.
[x]: Dist tag is present.
[x]: Package does not contain duplicates in %files.
[x]: Permissions on files are set properly.
[x]: Package use %makeinstall only when make install DESTDIR=... doesn't
     work.
[x]: Package is named using only allowed ASCII characters.
[x]: Package does not use a name that already exists.
[x]: Package is not relocatable.
[x]: Sources used to build the package match the upstream source, as
     provided in the spec URL.
[x]: Spec file name must match the spec package %{name}, in the format
     %{name}.spec.
[x]: File names are valid UTF-8.
[x]: Packages must not store files under /srv, /opt or /usr/local

Python:
[x]: Python eggs must not download any dependencies during the build
     process.
[x]: A package which is used by another package via an egg interface should
     provide egg info.
[x]: Package meets the Packaging Guidelines::Python
[x]: Package contains BR: python2-devel or python3-devel
[x]: Binary eggs must be removed in %prep

===== SHOULD items =====

Generic:
[-]: If the source package does not include license text(s) as a separate
     file from upstream, the packager SHOULD query upstream to include it.
[x]: Final provides and requires are sane (see attachments).
[-]: Fully versioned dependency in subpackages if applicable.
     Note: No Requires: %{name}%{?_isa} = %{version}-%{release} in
     python2-configargparse , python3-configargparse
[x]: Package functions as described.
[x]: Latest version is packaged.
[x]: Package does not include license text files separate from upstream.
[-]: Description and summary sections in the package spec file contains
     translations for supported Non-English languages, if available.
[x]: Package should compile and build into binary rpms on all supported
     architectures.
[x]: %check is present and all tests pass.
[x]: Packages should try to preserve timestamps of original installed
     files.
[x]: Packager, Vendor, PreReq, Copyright tags should not be in spec file
[x]: Sources can be downloaded from URI in Source: tag
[x]: Reviewer should test that the package builds in mock.
[x]: Buildroot is not present
[x]: Package has no %clean section with rm -rf %{buildroot} (or
     $RPM_BUILD_ROOT)
[x]: No file requires outside of /etc, /bin, /sbin, /usr/bin, /usr/sbin.
[x]: SourceX is a working URL.
[x]: Spec use %global instead of %define unless justified.

===== EXTRA items =====

Generic:
[x]: Rpmlint is run on all installed packages.
     Note: No rpmlint messages.
[x]: Spec file according to URL is the same as in SRPM.


Rpmlint
-------
Checking: python2-configargparse-0.9.3-3.fc24.noarch.rpm
          python3-configargparse-0.9.3-3.fc24.noarch.rpm
          python-configargparse-0.9.3-3.fc24.src.rpm
python2-configargparse.noarch: W: spelling-error Summary(en_US) argparse -> sparse, parsec, parse
python2-configargparse.noarch: W: spelling-error Summary(en_US) config -> con fig, con-fig, configure
python2-configargparse.noarch: W: spelling-error Summary(en_US) env -> enc, en, envy
python2-configargparse.noarch: W: spelling-error %description -l en_US args -> rags, gars, ares
python2-configargparse.noarch: W: spelling-error %description -l en_US config -> con fig, con-fig, configure
python2-configargparse.noarch: W: spelling-error %description -l en_US argparse -> sparse, parsec, parse
python3-configargparse.noarch: W: spelling-error Summary(en_US) argparse -> sparse, parsec, parse
python3-configargparse.noarch: W: spelling-error Summary(en_US) config -> con fig, con-fig, configure
python3-configargparse.noarch: W: spelling-error Summary(en_US) env -> enc, en, envy
python3-configargparse.noarch: W: spelling-error %description -l en_US args -> rags, gars, ares
python3-configargparse.noarch: W: spelling-error %description -l en_US config -> con fig, con-fig, configure
python3-configargparse.noarch: W: spelling-error %description -l en_US argparse -> sparse, parsec, parse
python-configargparse.src: W: spelling-error Summary(en_US) argparse -> sparse, parsec, parse
python-configargparse.src: W: spelling-error Summary(en_US) config -> con fig, con-fig, configure
python-configargparse.src: W: spelling-error Summary(en_US) env -> enc, en, envy
python-configargparse.src: W: spelling-error %description -l en_US args -> rags, gars, ares
python-configargparse.src: W: spelling-error %description -l en_US config -> con fig, con-fig, configure
python-configargparse.src: W: spelling-error %description -l en_US argparse -> sparse, parsec, parse
3 packages and 0 specfiles checked; 0 errors, 18 warnings.




Rpmlint (installed packages)
----------------------------
2 packages and 0 specfiles checked; 0 errors, 0 warnings.



Requires
--------
python2-configargparse (rpmlib, GLIBC filtered):
    python(abi)

python3-configargparse (rpmlib, GLIBC filtered):
    python(abi)



Provides
--------
python2-configargparse:
    python-configargparse
    python-configargparse(x86-64)
    python2-configargparse

python3-configargparse:
    python3-configargparse



Source checksums
----------------
https://pypi.python.org/packages/source/C/ConfigArgParse/ConfigArgParse-0.9.3.tar.gz :
  CHECKSUM(SHA256) this package     : 141c57112e1f8eb7e594a9820e95af897a7fa2d186cef5cff7e08cb3f7252829
  CHECKSUM(SHA256) upstream package : 141c57112e1f8eb7e594a9820e95af897a7fa2d186cef5cff7e08cb3f7252829


APPROVED

Comment 12 Gwyn Ciesla 2015-11-08 17:59:50 UTC
Package request has been approved: https://admin.fedoraproject.org/pkgdb/package/python-configargparse

Comment 13 Fedora Update System 2015-11-09 22:28:37 UTC
python-configargparse-0.9.3-3.fc23 has been submitted as an update to Fedora 23. https://bodhi.fedoraproject.org/updates/FEDORA-2015-bb777bcf0c

Comment 14 Fedora Update System 2015-11-09 22:37:17 UTC
python-configargparse-0.9.3-3.fc22 has been submitted as an update to Fedora 22. https://bodhi.fedoraproject.org/updates/FEDORA-2015-4cd6e76ea7

Comment 15 Fedora Update System 2015-11-11 00:50:55 UTC
python-configargparse-0.9.3-3.fc22 has been pushed to the Fedora 22 testing repository. If problems still persist, please make note of it in this bug report.
If you want to test the update, you can install it with
$ su -c 'dnf --enablerepo=updates-testing update python-configargparse'
You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2015-4cd6e76ea7

Comment 16 Fedora Update System 2015-11-11 02:23:36 UTC
python-configargparse-0.9.3-3.fc23 has been pushed to the Fedora 23 testing repository. If problems still persist, please make note of it in this bug report.
If you want to test the update, you can install it with
$ su -c 'dnf --enablerepo=updates-testing update python-configargparse'
You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2015-bb777bcf0c

Comment 17 Fedora Update System 2015-11-27 18:23:05 UTC
python-configargparse-0.9.3-3.fc23 has been pushed to the Fedora 23 stable repository. If problems still persist, please make note of it in this bug report.

Comment 18 Fedora Update System 2015-11-27 20:52:58 UTC
python-configargparse-0.9.3-3.fc22 has been pushed to the Fedora 22 stable repository. If problems still persist, please make note of it in this bug report.


Note You need to log in before you can comment on or make changes to this bug.