On 12.8.2017 17:15, Zbigniew Jędrzejewski-Szmek wrote:
I've done mock rebuilds for all the packages I plan to change (results
below), and I'm prepared to go through with the changes.
dreampie and tiled have been dropped.
(Those two packages are "applications". dreampie installs a python3
module, but no python3 binaries. For tiled the python module seems to
be a minor addition.)
Packages part of https://fedoraproject.org/wiki/Changes/Platform_Python_Stack
are also excluded (to avoid conflicts):
dbus-python, gpgme, libcomps, libdnf, librepo, pytest,
python-argcomplete, python-cffi, python-contextlib2, python-coverage,
python-cryptography, python-decorator, python-extras,
python-fixtures, python-funcsigs, python-hypothesis, python-idna,
python-iniparse, python-jinja2, python-jsonschema, python-keyring,
python-linecache2, python-markupsafe, python-mimeparse, python-mock,
python-nose, python-pbr, python-pexpect, python-pip, python-ply,
python-ptyprocess, python-py, python-pyasn1, python-pycparser,
python-pygpgme, python-pytest-timeout, python-rpm-macros,
python-SecretStorage, python-setuptools, python-setuptools_scm,
python-six, python-testtools, python-traceback2, python-unittest2,
python-wheel, pyxattr, pyxdg, rpm,
Note that we have reduced the list of the packages on Friday quite a
lot. Could you please update the blacklist?
Packages that had build issues unrelated to the python2- renaming:
abiword/ ftbfs (empty debugsources list for -docs, looks like
generator bug.
I hope to get this fixed before pushing.)
atomic-reactor/ ftbfs (AttributeError: module 'docker' has no
attribute 'Client')
bro/ ftbfs (error: invalid use of incomplete type
'EVP_PKEY {aka struct evp_pkey_st}')
cjdns/ ftbfs
csound/ ftbfs (also needs update to 6.03 → 6.09)
fts-rest/ ftbfs (AttributeError: 'HTTPForbidden' object has no
attribute 'exception')
libkdtree++/ ftbfs (C++11 stuff?)
libsvm/ ftbfs (%mvn_add_dep)
libvoikko/ fixed and built
mesos/ ftbfs
mlt/ fixed and built
python-amqpclt/ ftbfs
python-django-countries/ ftbfs
python-django-mptt/ ftbfs
python-djvulibre/ ftbfs
python-flask-silk/ ftbfs
python-gear/ ftbfs
python-gensim/ ftbfs
python-hwdata/ fixed upstream
python-larch/ fixed and built
python-lettuce/ ftbfs
python-libasyncns/ ftbfs
python-mwlib/ ftbfs
python-openstackclient/ ftbfs
python-pyblock/ ftbfs
python-pygal/ ftbfs
python-pylons/ ftbfs
python-rhev/ fixed and built
python-urwid/ ftbfs
qgis/ ftbfs (error: conflicting declaration 'PyObject*
sipExportedExceptions__core [3]')
qpid-proton/ ftbfs (Make Error at
proton-c/bindings/perl/cmake_install.cmake:44 (file):
file INSTALL cannot find
"/builddir/build/BUILD/qpid-proton-0.17.0/proton-c/bindings/perl/libcproton_perl.so".)
vtk/ ftbfs (looks like a local issue with lack of memory,
might build in koji.
I hope to get this fixed before pushing.)
(ftbfs: doesn't build for unrelated reasons, I'll push the python2- changes
because they don't hurt,
fixed upstream: an independent fix in the meantime,
fixed and built: fixed and built in koji w/o the python2- renaming, I'll push
the python2- changes
at the same time as other packages.)
For some packages I also renamed the python3 subpackage manually,
and/or added %python_provides for it.
Updated patches: https://in.waw.pl/~zbyszek/fedora/pyrename/
Zbyszek
On Tue, Aug 08, 2017 at 10:14:26PM +0000, Zbigniew Jędrzejewski-Szmek wrote:
Hello Fedora Python package maintainers!
This is an announcement of a mass package renaming:
Python 2 binary packages will be renamed to python2-*.
This will happen soon after the F27 branching on August 15th.
Currently ~1330 source packages already generate a binary package with
the python2- prefix, and 835 remain to be updated. The spec files for
approximately 740 packages will be renamed, and 95 will be left for
fixing by maintainers or proven packagers.
At the end of this e-mail are two lists of maintainers and packages:
List 1. for those packages which will be taken care of by the mass remaining
Patches: https://in.waw.pl/~zbyszek/fedora/pyrename/
Maintainers don't have to do anything.
List 2. for the remaining packages
Maintainers are encouraged to update packages manually.
### Details of the change ###
The change is to ensure that as many as possible python packages which
provide a version for python2 have a python2- subpackage as required by
the guidelines
[https://fedoraproject.org/wiki/Packaging:Naming#Python2_binary_package_naming].
For source packages which do *not* have a python- prefix, but already
have a python-foo subpackage, that subpackage will be renamed to python2-foo.
For packages which are called python-foo and just build a main binary package
python-foo, a new python2-foo subpackage will be created.
Provides/Requires/Conflicts/Obsoletes/Recommends/Suggests are moved from the
main package to the new subpackage.
In all cases, the new python2- subpackage will use lower-case naming.
This may lead to a situation where an existing python3- subpackage has
a differently-cased name than the python2- subpackage.
An effort is made (thanks Miro!) to preserve the style which is used
in the spec file, so that if e.g. python-%{real_name} was used originally,
this is changed to python2-%{real_name}. If this macro cannot be guessed or
if it resolves to a non-lowercase name, a non-macro lower-case string will
be used.
%{python_provide python2-foobar} are added as required by the guidelines
[https://fedoraproject.org/wiki/Packaging:Python#The_.25python_provide_macro].
One or two: %{python_provide python2-foobar} is always added, and if the package
has a non-lower-case name, %{python_provide python2-FooBar} is also added.
This provides backward compatible names to the package (python-foobar,
python-FooBar),
as long as %{python_provide} is defined as it is now. Once %python_provide macro
is switched to prefer python3 subpackages, those compat names will be gone.
In case the source package name does not have a python- prefix, a Provides
for the old name is also added, with a comment that it should be removed later.
Example:
+%package -n python2-atpy
+Summary: %summary
+Requires: numpy python-astropy
+%{?python_provide:%python_provide python2-atpy}
+# Remove before F30
+Provides: ATpy = %{version}-%{release}
Changes are implemented in an automated way using
https://pagure.io/pyrenamer.
rpmdev-bumpspec is used to add changelog entries will be added that look like:
* Sat Aug 05 2017 Zbigniew Jędrzejewski-Szmek <zbys...@in.waw.pl> - 3.3-4
- Python 2 binary package renamed to python2-foobar
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
### Which packages need to change ###
http://fedora.portingdb.xyz/namingpolicy/ "Misnamed subpackage" lists 877
subpackages.
The real number is a bit lower, because there are some dead packages
and some that have been fixed in the meanwhile on that list.
The automated rename currently works for 737 packages, 7 have manual patches,
47 don't need work.
The remaining 95 packages will require manual fixes.
I do *not* want maintainers to manually fix packages which are covered
by the automated changes (list 1 below), since that provides no
benefit. Maintainers are of course encouraged to fix packages which
are not covered (list 2 below), or to take the automated patch and use
it as a basis of their own fix if the automated change is deficient
for some reason.
Help with the remaining ~95 packages which cannot be done automatically
is very much welcome.
### Opting out and independent fixes ###
The script skips all packages which already have a python2- subpackage
and %python_provide, so all packages which are fixed in the meantime will be
skipped. If packages need to be skipped even without that, let me know and
I'll add the package to the blacklist.
### Timeline ###
2017-08-08: this e-mail is sent to fedora-announce
soon after 2017-08-15 (F27 branching): automatically and manually
generated patches are applied, and packages are rebuilt.
Depending on the results, I'll fix some and follow up with bugzilla
tickets for the remaining packages.
### List 1. Packages handled by the automated rename ###
[https://in.waw.pl/~zbyszek/fedora/pyrename/]
Maintainers by package:
ATpy sergiopr
CheMPS2 talcite
NLopt besser82
OpenIPMI branto jridky pknirsch
OpenImageIO hobbes1069
PyPAM msuchy tmraz
PyYAML jeckersb
abiword herrold uwog
abrt abrt-team jfilak mhabrnal mkutlak mmarusak
atomic-reactor bkabrda maxamillion ttomecek twaugh vrutkovs
beecrypt robert
boost denisarnaud jwakely pmachata
brial pcpa
brltty jskarvad limb
bro fab jtaylor mildew
capstone drago01
cashe james
catfish mtasaka
cjdns sdgathman
clearsilver limb
cmusphinx3 jjames
condor bbockelm bcotton eerlands matt tstclair ttheisen
cracklib nalin tmraz
criu adrian avagin
cryptominisat4 jjames
cryptsetup agk mbroz okozina
csound pbrobinson
dbus-python alexl besser82 caillon caolanm group::alt-gtk-de-sig
group::gnome-sig johnp mbarnes phuang rdieter rhughes rstrode ssp stefanok
dmlite aalvarez adev andreamanzi rocha
dogtail cmeadors jreznik vhumpa
dreampie cicku williamjmorenor
ecryptfs-utils mhlavink raphgro sandeen
fedwatch sochotni
file jkaluza kdudka macermak
freeradius nkondras
fts-rest aalvarez simonm
fuse-python peter
gamin alexl caillon caolanm group::gnome-sig johnp mbarnes
pbrobinson rhughes rstrode ssp veillard
ganglia georgiou ggillies noodles terjeros
gdal alexlan devrim jmlich mmahut oliver orion pali volter
gdcm ankursinha ignatenkobrain mrceresa sebp
gdl orion
genders dmlb2000
geome pwouters
geos devrim
gerrymander berrange kashyapc
getdata jcapik
gfal2-python aalvarez adev
gofer jortel
gpaw marcindulak
gprof2dot mtasaka
graphviz alexlan jskarvad tremble
gstreamer-python company laxathom tomspur
gstreamer-rtsp fabiand wtaymans
gtk-vnc berrange
gupnp-igd bpepple pbrobinson
hamlib dp67 hobbes1069 jskarvad lucilanga
heketi jarrpa lpabon
hippo-canvas pbrobinson
hokuyoaist rmattes
i2c-tools ajax jcapik miminar olysonek
ioprocess bronhaim dougsland nsoffer
iscsi-initiator-utils cleech grover jwrdegoede
isomd5sum anaconda-maint bcl clumens rvykydal
keybinder hannes
langtable mfabian
lash bsjones pwalter
lasso jdennis rcritten simo
lcms ajax alexl awjb caillon caolanm group::gnome-sig johnp
mbarnes rhughes rstrode ssp
ldns pemensik pwouters thozza
ledger jamielinux radford
lhapdf ellert
libbytesize vpodzime
libcap-ng sgrubb
libdnet robert
libftdi lucilanga
libhid jwrdegoede
libhocr oron
libieee1284 twaugh
libiptcdata dcm jchaloup
libkdtree++ brouhaha
liblinear besser82
libnl3 dcbw jirka tgraf thaller
libopensync-plugin-python awjb
libpfm lberk wcohen
libplist pbrobinson
libpst carllibpst
libreport abrt-team jfilak mhabrnal mtoman
librtfcomp awjb
libselinux dwalsh mgrepl pcmoore plautrba
libsemanage dwalsh mgrepl pcmoore plautrba
libssh2-python clalance
libstoragemgmt cathay4t grover tasleson
libsvm besser82 dchen
libteam jirka
libuser herczy mitr
libvirt-python berrange veillard
libvoikko vpv
libwfut bruno mpreisle
libxml2 veillard
libxslt veillard
lilv bsjones nphilipp tartina
lldb airlied daveisfera jankratochvil siddharths tstellar
lunatic-python limb
mapserver devrim jujens oliver pali
marisa ueno
mathgl deji krege mycae
mesos lloesche slaanesh
miniupnpc beckerde pcpa
mlt sergiomb
mysql-connector-python hhorak hvad
net-snmp jridky jsafrane
newt mlichvar
nordugrid-arc ellert jonkni
notify-python pfrields
opencv hguemar hhorak jmlich jridky kwizart pkajaba sergiomb
vjancik
openfst jjames
openscap jcerny mpreisle pvrabec wsato
opensips ivaxer peter
openwsman gunnersrini praveenp vcrhonek
osbs-client bkabrda maxamillion ttomecek twaugh vrutkovs
ovirt-engine-sdk-python jhernand oschreib
pocketsphinx jjames
policycoreutils dwalsh mgrepl pcmoore plautrba vmojzis
portmidi bsjones
powerpc-utils-python jcajka jcapik
py-bcrypt limb
pyatspi group::gnome-sig mclasen rtcm
pycscope ankursinha
pyelftools besser82 kushal moezroy terjeros
pyfits sergiopr
pygame jkaluza jskarvad limb
pygobject3 johnp nacho walters
pyhunspell mfabian till
pyicu prabindatta
pyke spot
pykickstart bcl clumens jkonecny m4rtink rvykydal sbueno vponcova
pymilia sergiopr
pyodbc hhorak
pyparted bcl clumens dcantrel
pyscard sjenning
pyserial stingray
pyshp volter
pysvn ravenoak sgallagh
python-4Suite-XML mitr
python-BeautifulSoup kwizart terjeros
python-CDDB jcollie
python-CacheControl bkabrda
python-GnuPGInterface robert
python-HTMLgen jamatos
python-Lightbox itamarjp
python-OWSLib volter
python-PSI topdog
python-PyGithub bkabrda jpopelka
python-PyRSS2Gen immanetize
python-Rtree volter
python-Scriptaculous itamarjp
python-SocksiPy lystor
python-TornadIO2 rmarko
python-TurboMail fschwarz lmacken
python-UcsSdk bdemers
python-WSGIProxy2 bkabrda
python-ZSI jbowes timfenn
python-achoo ramkrsna
python-actdiag dridi
python-adns rvokal thozza
python-affinity nb
python-alchimia vpopovic
python-alembic group::infra-sig ralph
python-alsa limb perex
python-amara jamatos
python-amqpclt lcons mpaladin
python-amqplib fab
python-anfft tnorth
python-ansi sdyroff
python-anykeystore group::infra-sig ralph
python-anymarkup-core jchaloup
python-anyvc fab
python-arc cleber
python-asciitable sergiopr
python-ase besser82 marcindulak
python-assertEquals rkuska
python-astroML lupinix
python-astroML-addons lupinix
python-atfork jlaska
python-atomicwrites mathstuf mbaldessari
python-auth-credential lcons mpaladin
python-babel-BabelGladeExtractor pfrields
python-backlash group::infra-sig lmacken ralph
python-backports ilianaw
python-backports-lzma group::infra-sig ianweller ralph
python-basemap jspaleta limb
python-batchhttp puiterwijk
python-beanstalkc halfie
python-beautifulsoup4 kwizart ralph terjeros
python-bibtex zkota
python-bintrees rkuska
python-blinker fcami kumarpraveen pjp sundaram
python-blist ignatenkobrain salimma
python-blivet1 dlehman vpodzime vtrefny
python-blockdiag dridi
python-bucky jsteffan
python-bugzilla2fedmsg group::infra-sig ralph
python-bunch group::infra-sig
python-cachetools jeckersb
python-cairosvg ralph
python-caja raveit65
python-carddav puiterwijk sdyroff
python-carrot bpepple
python-cdb kushal
python-characteristic tomprince
python-chardet churchyard jcline kushal
python-cheetah mikeb
python-cherrypy konradm lmacken
python-cherrypy2 fschwarz group::infra-sig lmacken mbacovsk
python-chm hubbitus narasim
python-cli mmahut
python-cliapp salimma
python-clientform lmacken
python-cliff-tablib apevec hguemar jruzicka
python-cloudfiles nb pwalter
python-cmd2 apevec group::infra-sig mmagr ralph
python-colour-runner rkuska
python-configshell grover
python-confparser aquini dougsland
python-construct moezroy terjeros
python-contextlib2 pingou ralph tjikkun
python-copr clime frostyx msuchy vgologuz
python-coverage-test-runner salimma
python-cpio jamatos
python-cpopen bronhaim danken dougsland
python-crank group::infra-sig lmacken ralph
python-croniter apevec
python-ctags kushal
python-ctrldaemon yograterol
python-curtsies terjeros
python-d2to1 mrunge sergiopr
python-daap jcollie
python-daemon group::infra-sig kushal lmacken tomspur
python-datanommer-consumer group::infra-sig ralph
python-dateutil15 immanetize pjp sundaram
python-dbusmock mcepl
python-debian msuchy
python-decoratortools lmacken
python-deltasigma sophiekovalevsky
python-di msivak
python-dictclient ricky
python-dingus ignatenkobrain tflink
python-django-ajax-selects lbazan
python-django-appconf mrunge
python-django-compressor mrunge
python-django-countries bkabrda
python-django-debug-toolbar bkabrda mrunge
python-django-devserver bkabrda churchyard
python-django-discover-runner mrunge
python-django-extra-form-fields mrunge
python-django-federated-login echevemaster lbazan
python-django-flash lbazan
python-django-followit kumarpraveen
python-django-kombu mrunge
python-django-mptt jdornak mrunge
python-django-nose mrunge
python-django-profiles mrunge
python-django-pytest bkabrda mrunge
python-django-sekizai jdornak
python-django-simple-captcha jdornak mrunge
python-django-south diegobz jdornak lbazan
python-django-staticfiles diegobz lbazan
python-django-tagging jdornak mrunge piotrp
python-djvulibre bstinson
python-dmidecode dsommers sharkcz
python-dockerpty carlwgeorge lsm5 maxamillion rfenkhuber ttomecek
python-docx kushal124
python-doit immanetize jamatos
python-dopy ralph
python-dpath sochotni
python-drat pnemade
python-dslib jskarvad
python-dtopt ralph ricky
python-dumptruck jtaylor lkundrak
python-durus moceap
python-easygui limb
python-editdist pwouters
python-egenix-mx-base caiqian
python-elasticsearch apevec dbruno piotrp
python-elements pbrobinson sdz
python-elfdata kushal
python-elixir dcallagh jdornak lmacken smilner
python-emcee sergiopr
python-enum maxamillion
python-enum34 brouhaha greghellings
python-exif terjeros
python-extras mrunge salimma
python-fedbadges group::infra-sig ralph
python-fedimg group::infra-sig kevin oddshocks ralph sayanchowdhury
python-fedmsg-genacls group::infra-sig ralph
python-fedmsg-meta-debian group::infra-sig ianweller ralph
python-ferari fab
python-firehose dmalcolm
python-fixtures apevec mrunge pabelanger
python-flask-admin group::infra-sig puiterwijk
python-flask-assets kumarpraveen pjp sundaram
python-flask-autoindex pcpa
python-flask-babel pcpa
python-flask-lastuser kumarpraveen pjp sundaram
python-flask-login rmarko
python-flask-openid kumarpraveen pjp sundaram
python-flask-rstpages rmarko
python-flask-script rkuska
python-flask-silk pcpa
python-flask-whooshalchemy tonet666p
python-flatland limb
python-flexmock bkabrda
python-fluidity-sm athmane
python-flup till
python-fmn-consumer group::infra-sig ralph sayanchowdhury
python-fmn-rules group::infra-sig ralph sayanchowdhury
python-fn codeblock
python-fontname pnemade
python-frozen-flask echevemaster lunaticc0
python-fuckit ilianaw
python-funcparserlib dridi
python-fuzzywuzzy bkabrda fab
python-gasp lfaraone sdz
python-gccinvocation dmalcolm
python-gd pcpa
python-gdata mrunge roshansingh smilner sundaram
python-gear fbo pabelanger
python-gearbox group::infra-sig lmacken ralph
python-gencpp rmattes
python-genlisp rmattes
python-genmsg rmattes
python-genpy rmattes
python-gensim besser82
python-geojson ralph
python-gerrit fsimonce
python-gerrit-view kashyapc
python-gertty gchamoul kashyapc
python-gevent-socketio mrunge
python-gitapi jujens
python-glance-store apevec flaper87 hguemar
python-google-apputils orion
python-googlevoice jcollie
python-grabserial sinnykumari
python-grapefruit kumarpraveen
python-grokmirror icon
python-gssapi rharwood simo sross
python-gstreamer1 farnz wtaymans
python-gtkextra mitr
python-guppy peter
python-gzipstream msuchy
python-halite terminalmage
python-hardware flepied
python-hgapi jujens
python-hghooks lgs
python-http-parser bkabrda group::infra-sig ralph
python-httplib2 awjb dchen kevin
python-httpretty jamielennox
python-humanize jfilak stevetraylen
python-husl sergiopr
python-hwdata msuchy
python-icalendar limb
python-imdb limb
python-inlinestyler ankursinha
python-ipaddr leon
python-ipaddress npmccallum
python-iptools orion
python-irawadi-user villadalmine yograterol
python-irclib lmacken
python-ironic-inspector-client divius trown
python-isodate dcallagh dscott jcline jlaska jmatthews
python-isprelink jcollie
python-jellyfish mbaldessari
python-jsonpath-rw slinabery
python-jsonrpclib ihrachyshka
python-junitxml slinabery
python-kaa-base kwizart
python-kaa-display kwizart
python-kaa-imlib2 kwizart
python-kaa-metadata kwizart
python-kafka pkilambi
python-kazoo apevec nsaje
python-keyczar wzzrd
python-keystoneclient-kerberos apevec jamielennox
python-kgb sgallagh
python-kid lmacken till
python-kiwi hguemar
python-kmod grover
python-krbV mikeb
python-larch salimma
python-lazyarray ankursinha
python-ldap alexl caillon caolanm johnp kanarip pspacek rhughes
rstrode ssp
python-ldaphelper jstanley
python-ldappool hguemar
python-ldaptor hguemar
python-lesscpy mrunge
python-lettuce bkabrda
python-lexicon athmane
python-libarchive halfie
python-libasyncns rishi
python-liblarch ankursinha
python-libpagure sayanchowdhury
python-libqutrub moceap
python-libturpial richzendy
python-linecache2 salimma
python-linux-procfs jkastner
python-listquote konradm
python-lmiwbem phatina
python-lockfile bkabrda
python-logbook fab limb
python-logging-tree ralph
python-logutils group::infra-sig ralph
python-ly limb
python-lyricwiki peter
python-lzo huzaifas
python-m2ext group::infra-sig ralph
python-mailer fab
python-mako bowlofeggs kylev lmacken mcepl
python-mandrill dbruno
python-markups mariobl
python-martian echevemaster firemanxbr
python-mecab mtasaka
python-meh clumens m4rtink vpodzime
python-meliae lmacken tadej
python-memcached hguemar kevin sgallagh
python-mglob group::python-sig tomspur
python-migrate apevec lmacken mbacovsk ricky
python-mistune lupinix
python-moksha-common group::infra-sig lbalhar lmacken ralph
python-moksha-hub group::infra-sig lbalhar lmacken ralph
python-moksha-wsgi group::infra-sig lmacken ralph
python-monotonic apevec hguemar
python-morbid lmacken spot
python-mox mrunge
python-mozbase mrunge
python-mpmath jussilehtola zbyszek
python-mtTkinter pwalter roma
python-munch group::infra-sig ralph
python-musicbrainz2 alexlan jcollie
python-mwlib ianweller pfrields
python-mwlib-docbook ianweller
python-mwlib-xhtml ianweller
python-myghty kim27 lmacken
python-mygpoclient slankes vpv
python-naftawayh moceap
python-narcissus-common ralph
python-narcissus-hub ralph
python-ncclient ihrachyshka
python-netaddr jcholast jeckersb jhrozek
python-newt_syrup mcpierce
python-nitrate leospol mfrodl psss
python-nltk salimma
python-nose-cover3 mrunge
python-nose-exclude mrunge
python-nose-parameterized echevemaster
python-nose-xcover mrunge piotrp
python-nss jdennis
python-numdisplay mmahut sergiopr
python-numpydoc group::python-sig tomspur
python-nwdiag dridi
python-oasa limb
python-oauth comzeradd sdz
python-odict sgallagh
python-offtrac ralph
python-olpcgames fab pbrobinson sdz
python-openhpi sharkcz
python-openid puiterwijk
python-openid-cla puiterwijk
python-openid-teams puiterwijk
python-openoffice sharkcz
python-openopt stevetraylen
python-openstackclient apevec jruzicka
python-ordered-set msuchy
python-os-testr apevec chandankumar
python-paida jussilehtola
python-parsedatetime itamarjp mbaldessari
python-parsley robyduck
python-pathlib apevec hguemar
python-pathtools besser82
python-peak-rules kylev lmacken
python-peak-util-addons kylev lmacken
python-peak-util-assembler lmacken
python-peak-util-extremes lmacken
python-peak-util-symbols lmacken
python-pgpdump cicku fale
python-pgu louizatakk
python-phacter radez
python-phyghtmap volter
python-pivy hobbes1069 zultron
python-pluggy mrunge thm
python-plumbum bkabrda
python-poppler-qt4 bsjones
python-posix_ipc ramkrsna
python-pottymouth echevemaster
python-pp smilner
python-pretty tomspur
python-prettytable apevec clalance imcleod
python-proboscis dbruno
python-process-tests orion
python-productmd ausil dmach lsedlar
python-profilehooks bkabrda
python-progress bkabrda churchyard
python-protocols group::infra-sig
python-psphere clalance imcleod
python-pthreading bronhaim danken dougsland fsimonce
python-pudb halfie
python-pyarabic moceap
python-pyblock clumens dlehman jwrdegoede pjones
python-pybloomfiltermmap athmane
python-pycallgraph lmacken
python-pycxx hobbes1069 mrunge zultron
python-pydns pwouters
python-pyeclib hguemar zaitcev
python-pygal group::infra-sig immanetize ralph
python-pygeoip group::infra-sig ralph
python-pyghmi lucasagomes
python-pykalman ankursinha
python-pylcdsysinfo opuk
python-pylibravatar group::infra-sig ralph
python-pylons cicku kim27 kylev
python-pymemcache apevec eglynn nsaje
python-pymilter pwouters sdgathman
python-pymtp snirkel vpv
python-pyphen brouhaha
python-pypng group::infra-sig ralph
python-pypump ralph
python-pyquery group::infra-sig ralph
python-pyramid-fas-openid bowlofeggs group::infra-sig lmacken ralph
python-pyrax ctria imcleod
python-pyro hvad
python-pysb zbyszek
python-pysctp nhorman
python-pyside fschwarz geertj jreznik rdieter than
python-pyvfs psavelye
python-pyzolib cottsay
python-qalsadi alsadi moceap
python-qpid irina
python-qrcode fab salimma
python-qserve ianweller
python-quantities ankursinha
python-rackspace-auth-openstack bharper immanetize
python-raven tjikkun
python-re2 group::infra-sig kiilerix ralph
python-recaptcha-client nphilipp sgallagh
python-redis cicku group::infra-sig ralph
python-remoto branto fsimonce ktdreyer
python-repoze-lru group::infra-sig lmacken ralph
python-repoze-tm2 lmacken
python-repoze-what group::infra-sig lmacken ralph
python-repoze-what-plugins-sql lmacken
python-repoze-what-pylons spot
python-repoze-what-quickstart spot
python-repoze-who-friendlyform group::infra-sig spot
python-repoze-who-plugins-sa lmacken
python-repoze-who-testutil spot
python-requests-cache codeblock
python-rest-client mrunge
python-restauth jkaluza
python-restauth-common jkaluza
python-restkit bkabrda group::infra-sig ralph
python-resultsdb_api group::qa-tools-sig mkrizek
python-retask kushal praiskup sayanchowdhury
python-retrying apevec
python-rhev mmahut
python-robosignatory puiterwijk ralph
python-roman mrunge
python-rope mcepl nonamedotc
python-ropemacs sochotni
python-ropemode sochotni
python-rosinstall group::robotics-sig rmattes
python-routes kylev
python-rpyc bkabrda
python-rsslib konradm
python-rtkit tdabasin
python-rtslib grover
python-rxjson group::python-sig lmacken
python-salttesting dmurphy18 terminalmage
python-sanction group::infra-sig ralph
python-scales filabrazilska lkundrak
python-schedutils jkastner
python-seqdiag dridi
python-setproctitle hguemar
python-sexy hguemar
python-shapely volter
python-shout laxathom
python-sieve group::infra-sig ralph
python-simplemediawiki group::infra-sig lmacken potty ralph
python-simpleparse grover
python-sippy peter
python-slip nphilipp twoerner
python-smbpasswd rebus s4504kr
python-soaplib jomara
python-socksipychain lzap
python-speaklater xhaksx
python-sphinx-theme-flask besser82
python-sphinxcontrib-issuetracker orion
python-spiffgtkwidgets leamas
python-sqlite3dbm ianweller
python-sqlparse fale hhorak
python-squaremap rkuska
python-strainer group::infra-sig lmacken ralph
python-subprocess32 group::infra-sig nsoffer
python-sudsds jskarvad
python-svg limb
python-svg-path group::infra-sig ralph
python-tablib group::infra-sig ralph
python-taboot tbielawa
python-tambo ktdreyer
python-tashaphyne moceap
python-tbgrep group::infra-sig lmacken ralph
python-telepathy bpepple
python-tempita kylev ricky
python-testrepository apevec kumarpraveen mrunge
python-testscenarios ktdreyer mrunge
python-testtools kumarpraveen salimma
python-tftpy jbastian
python-tg-devtools lmacken
python-tgcaptcha2 pingou
python-tgext-admin lmacken
python-tgext-crud lmacken
python-tgmochikit group::infra-sig lmacken
python-tilestache cottsay
python-tinycss brouhaha
python-tooz apevec eglynn hguemar nsaje pkilambi
python-toscawidgets group::infra-sig lmacken
python-tracing salimma
python-transaction group::infra-sig lmacken ralph
python-trml2pdf12 ciupicri
python-ttystatus salimma
python-turbocheetah lmacken
python-turbojson lmacken
python-turbokid lmacken
python-tw-forms group::infra-sig lmacken
python-tw2-d3 ralph
python-tw2-dynforms ralph
python-tw2-excanvas ralph
python-tw2-forms ralph
python-tw2-jqplugins-flot ralph
python-tw2-jqplugins-gritter ralph
python-tw2-jqplugins-jqplot ralph
python-tw2-jqplugins-ui ralph
python-tw2-polymaps ralph
python-tw2-slideymenu ralph
python-txamqp dcallagh
python-txrequests group::infra-sig ralph
python-txsocksx robyduck
python-txws group::infra-sig ralph
python-txzmq group::infra-sig ralph
python-uinput fabiand
python-unicodecsv apevec jpena
python-unicodenazi group::infra-sig
python-unidecode pjp sundaram
python-unipath terjeros
python-urlgrabber james packaging-team vmukhame
python-urllib2_kerberos mcepl tdabasin
python-urlobject jdulaney
python-urwid dcantrel fabiand lmacken
python-vcrpy group::infra-sig ralph
python-velruse group::infra-sig ralph
python-venusian group::infra-sig lmacken ralph rossdylan
python-versiontools bkabrda mrunge
python-virtualenvcontext ralph
python-vkontakte peter
python-volatility rebus
python-webcolors dridi
python-weberror group::infra-sig lmacken ricky
python-webhelpers kylev
python-webpy mrunge
python-webtest bkabrda group::infra-sig lmacken ricky
python-werkzeug codeblock hguemar ianweller
python-which nbecker
python-wifi fab
python-wikitools hhorak vjancik
python-wokkel limb
python-wordpress-xmlrpc mrunge
python-wrapt chandankumar group::infra-sig ralph
python-wsgilog pagiator
python-wsgiproxy ricky
python-wstool ankursinha cottsay rmattes
python-wtforms kumarpraveen pjp sundaram tflink
python-xcffib cicku jdulaney
python-xgoogle peter
python-xklavier kushal sdz
python-xmltramp dcallagh
python-xmpp jcollie peter
python-xpyb tdabasin
python-xtermcolor bkabrda
python-xunitmerge abregman
python-xvfbwrapper mrunge
python-yenc konradm
python-yolk hguemar
python-yourls mkrizek tflink
python-zbase32 anishpatil
python-zc-buildout ralph
python-zc-customdoctests ralph
python-zc-lockfile ralph
python-zdaemon ralph
python-zope-deprecation bowlofeggs lmacken ralph
python-zope-sqlalchemy bowlofeggs lmacken ralph
pytz jspaleta limb mcepl
pyusb limb
pywbem cathay4t jsafrane ke4qqq miminar
pyxattr szpak
qgis bruno daveisfera volter
qpid-proton irina
rekall spot
remctl ktdreyer sxw
rhnlib msuchy
rrdtool jskarvad
saga volter
sanlock cfeist fsimonce teigland
saslwrapper dcallagh
satyr jfilak mhabrnal
setools alexl caillon caolanm dwalsh johnp mbarnes mgrepl pcmoore
pebenito plautrba rhughes rstrode ssp
skf mtasaka
sphinxbase jjames
sphinxtrain jjames
stfl mathstuf
stp amdunn jjames
subversion jorton
sword cicku deji greghellings jkastner
sympy cbm jjames
tcl-snack spot
thunarx-python balajig8 kevin raphgro
tiled ablu
totpcgi herlo icon kevin
trademgen denisarnaud
udiskie jstanek
unbound pavlix pemensik pwouters thozza
urjtag chitlesh jkastner scottt
v8 patches spot tomspur vjancik zvetlik
vdsm bronhaim dougsland
vigra bpostle
volume_key huzaifas mitr
vtk athimm jgu mrceresa orion
weasyprint brouhaha
wiredtiger mskalick
xapian-bindings drago01 pbrobinson
xmms2 spot thomasj
xrootd ellert simonm
z3 jjames
zinnia liangsuilong pwu
zookeeper ctubbsii greghellings mluscon skottler tstclair
zorba mgieseki
Packages by maintainer:
aalvarez dmlite fts-rest gfal2-python
ablu tiled
abregman python-xunitmerge
abrt-team abrt libreport
adev dmlite gfal2-python
adrian criu
agk cryptsetup
airlied lldb
ajax i2c-tools lcms
alexl dbus-python gamin lcms python-ldap setools
alexlan gdal graphviz python-musicbrainz2
alsadi python-qalsadi
amdunn stp
anaconda-maint isomd5sum
andreamanzi dmlite
anishpatil python-zbase32
ankursinha gdcm pycscope python-inlinestyler python-lazyarray python-liblarch
python-pykalman python-quantities python-wstool
apevec python-cliff-tablib python-cmd2 python-croniter python-elasticsearch
python-fixtures python-glance-store python-kazoo python-keystoneclient-kerberos
python-migrate python-monotonic python-openstackclient python-os-testr
python-pathlib python-prettytable python-pymemcache python-retrying
python-testrepository python-tooz python-unicodecsv
aquini python-confparser
athimm vtk
athmane python-fluidity-sm python-lexicon python-pybloomfiltermmap
ausil python-productmd
avagin criu
awjb lcms libopensync-plugin-python librtfcomp python-httplib2
balajig8 thunarx-python
bbockelm condor
bcl isomd5sum pykickstart pyparted
bcotton condor
bdemers python-UcsSdk
beckerde miniupnpc
berrange gerrymander gtk-vnc libvirt-python
besser82 NLopt dbus-python liblinear libsvm pyelftools python-ase
python-gensim python-pathtools python-sphinx-theme-flask
bharper python-rackspace-auth-openstack
bkabrda atomic-reactor osbs-client python-CacheControl python-PyGithub
python-WSGIProxy2 python-django-countries python-django-debug-toolbar
python-django-devserver python-django-pytest python-flexmock python-fuzzywuzzy
python-http-parser python-lettuce python-lockfile python-plumbum
python-profilehooks python-progress python-restkit python-rpyc
python-versiontools python-webtest python-xtermcolor
bowlofeggs python-mako python-pyramid-fas-openid python-zope-deprecation
python-zope-sqlalchemy
bpepple gupnp-igd python-carrot python-telepathy
bpostle vigra
branto OpenIPMI python-remoto
bronhaim ioprocess python-cpopen python-pthreading vdsm
brouhaha libkdtree++ python-enum34 python-pyphen python-tinycss weasyprint
bruno libwfut qgis
bsjones lash lilv portmidi python-poppler-qt4
bstinson python-djvulibre
caillon dbus-python gamin lcms python-ldap setools
caiqian python-egenix-mx-base
caolanm dbus-python gamin lcms python-ldap setools
carllibpst libpst
carlwgeorge python-dockerpty
cathay4t libstoragemgmt pywbem
cbm sympy
cfeist sanlock
chandankumar python-os-testr python-wrapt
chitlesh urjtag
churchyard python-chardet python-django-devserver python-progress
cicku dreampie python-pgpdump python-pylons python-redis python-xcffib
sword
ciupicri python-trml2pdf12
clalance libssh2-python python-prettytable python-psphere
cleber python-arc
cleech iscsi-initiator-utils
clime python-copr
clumens isomd5sum pykickstart pyparted python-meh python-pyblock
cmeadors dogtail
codeblock python-fn python-requests-cache python-werkzeug
company gstreamer-python
comzeradd python-oauth
cottsay python-pyzolib python-tilestache python-wstool
ctria python-pyrax
ctubbsii zookeeper
danken python-cpopen python-pthreading
daveisfera lldb qgis
dbruno python-elasticsearch python-mandrill python-proboscis
dcallagh python-elixir python-isodate python-txamqp python-xmltramp
saslwrapper
dcantrel pyparted python-urwid
dcbw libnl3
dchen libsvm python-httplib2
dcm libiptcdata
deji mathgl sword
denisarnaud boost trademgen
devrim gdal geos mapserver
diegobz python-django-south python-django-staticfiles
divius python-ironic-inspector-client
dlehman python-blivet1 python-pyblock
dmach python-productmd
dmalcolm python-firehose python-gccinvocation
dmlb2000 genders
dmurphy18 python-salttesting
dougsland ioprocess python-confparser python-cpopen python-pthreading vdsm
dp67 hamlib
drago01 capstone xapian-bindings
dridi python-actdiag python-blockdiag python-funcparserlib python-nwdiag
python-seqdiag python-webcolors
dscott python-isodate
dsommers python-dmidecode
dwalsh libselinux libsemanage policycoreutils setools
echevemaster python-django-federated-login python-frozen-flask python-martian
python-nose-parameterized python-pottymouth
eerlands condor
eglynn python-pymemcache python-tooz
ellert lhapdf nordugrid-arc xrootd
fab bro python-amqplib python-anyvc python-ferari python-fuzzywuzzy
python-logbook python-mailer python-olpcgames python-qrcode python-wifi
fabiand gstreamer-rtsp python-uinput python-urwid
fale python-pgpdump python-sqlparse
farnz python-gstreamer1
fbo python-gear
fcami python-blinker
filabrazilska python-scales
firemanxbr python-martian
flaper87 python-glance-store
flepied python-hardware
frostyx python-copr
fschwarz python-TurboMail python-cherrypy2 python-pyside
fsimonce python-gerrit python-pthreading python-remoto sanlock
gchamoul python-gertty
geertj python-pyside
georgiou ganglia
ggillies ganglia
greghellings python-enum34 sword zookeeper
group::alt-gtk-de-sig dbus-python
group::gnome-sig dbus-python gamin lcms pyatspi
group::infra-sig python-alembic python-anykeystore python-backlash
python-backports-lzma python-bugzilla2fedmsg python-bunch python-cherrypy2
python-cmd2 python-crank python-daemon python-datanommer-consumer
python-fedbadges python-fedimg python-fedmsg-genacls python-fedmsg-meta-debian
python-flask-admin python-fmn-consumer python-fmn-rules python-gearbox
python-http-parser python-logutils python-m2ext python-moksha-common
python-moksha-hub python-moksha-wsgi python-munch python-protocols python-pygal
python-pygeoip python-pylibravatar python-pypng python-pyquery
python-pyramid-fas-openid python-re2 python-redis python-repoze-lru
python-repoze-what python-repoze-who-friendlyform python-restkit
python-sanction python-sieve python-simplemediawiki python-strainer
python-subprocess32 python-svg-path python-tablib python-tbgrep
python-tgmochikit python-toscawidgets python-transaction python-tw-forms
python-txrequests python-txws python-txzmq python-unicodenazi python-vcrpy
python-velruse python-venusian python-weberror python-webtest python-wrapt
group::python-sig python-mglob python-numpydoc python-rxjson
group::qa-tools-sig python-resultsdb_api
group::robotics-sig python-rosinstall
grover iscsi-initiator-utils libstoragemgmt python-configshell python-kmod
python-rtslib python-simpleparse
gunnersrini openwsman
halfie python-beanstalkc python-libarchive python-pudb
hannes keybinder
herczy libuser
herlo totpcgi
herrold abiword
hguemar opencv python-cliff-tablib python-glance-store python-kiwi
python-ldappool python-ldaptor python-memcached python-monotonic python-pathlib
python-pyeclib python-setproctitle python-sexy python-tooz python-werkzeug
python-yolk
hhorak mysql-connector-python opencv pyodbc python-sqlparse python-wikitools
hobbes1069 OpenImageIO hamlib python-pivy python-pycxx
hubbitus python-chm
huzaifas python-lzo volume_key
hvad mysql-connector-python python-pyro
ianweller python-backports-lzma python-fedmsg-meta-debian python-mwlib
python-mwlib-docbook python-mwlib-xhtml python-qserve python-sqlite3dbm
python-werkzeug
icon python-grokmirror totpcgi
ignatenkobrain gdcm python-blist python-dingus
ihrachyshka python-jsonrpclib python-ncclient
ilianaw python-backports python-fuckit
imcleod python-prettytable python-psphere python-pyrax
immanetize python-PyRSS2Gen python-dateutil15 python-doit python-pygal
python-rackspace-auth-openstack
irina python-qpid qpid-proton
itamarjp python-Lightbox python-Scriptaculous python-parsedatetime
ivaxer opensips
jamatos python-HTMLgen python-amara python-cpio python-doit
james cashe python-urlgrabber
jamielennox python-httpretty python-keystoneclient-kerberos
jamielinux ledger
jankratochvil lldb
jarrpa heketi
jbastian python-tftpy
jbowes python-ZSI
jcajka powerpc-utils-python
jcapik getdata i2c-tools powerpc-utils-python
jcerny openscap
jchaloup libiptcdata python-anymarkup-core
jcholast python-netaddr
jcline python-chardet python-isodate
jcollie python-CDDB python-daap python-googlevoice python-isprelink
python-musicbrainz2 python-xmpp
jdennis lasso python-nss
jdornak python-django-mptt python-django-sekizai
python-django-simple-captcha python-django-south python-django-tagging
python-elixir
jdulaney python-urlobject python-xcffib
jeckersb PyYAML python-cachetools python-netaddr
jfilak abrt libreport python-humanize satyr
jgu vtk
jhernand ovirt-engine-sdk-python
jhrozek python-netaddr
jirka libnl3 libteam
jjames cmusphinx3 cryptominisat4 openfst pocketsphinx sphinxbase
sphinxtrain stp sympy z3
jkaluza file pygame python-restauth python-restauth-common
jkastner python-linux-procfs python-schedutils sword urjtag
jkonecny pykickstart
jlaska python-atfork python-isodate
jmatthews python-isodate
jmlich gdal opencv
johnp dbus-python gamin lcms pygobject3 python-ldap setools
jomara python-soaplib
jonkni nordugrid-arc
jortel gofer
jorton subversion
jpena python-unicodecsv
jpopelka python-PyGithub
jreznik dogtail python-pyside
jridky OpenIPMI net-snmp opencv
jruzicka python-cliff-tablib python-openstackclient
jsafrane net-snmp pywbem
jskarvad brltty graphviz hamlib pygame python-dslib python-sudsds rrdtool
jspaleta python-basemap pytz
jstanek udiskie
jstanley python-ldaphelper
jsteffan python-bucky
jtaylor bro python-dumptruck
jujens mapserver python-gitapi python-hgapi
jussilehtola python-mpmath python-paida
jwakely boost
jwrdegoede iscsi-initiator-utils libhid python-pyblock
kanarip python-ldap
kashyapc gerrymander python-gerrit-view python-gertty
kdudka file
ke4qqq pywbem
kevin python-fedimg python-httplib2 python-memcached thunarx-python totpcgi
kiilerix python-re2
kim27 python-myghty python-pylons
konradm python-cherrypy python-listquote python-rsslib python-yenc
krege mathgl
ktdreyer python-remoto python-tambo python-testscenarios remctl
kumarpraveen python-blinker python-django-followit python-flask-assets
python-flask-lastuser python-flask-openid python-grapefruit
python-testrepository python-testtools python-wtforms
kushal pyelftools python-cdb python-chardet python-ctags python-daemon
python-elfdata python-retask python-xklavier
kushal124 python-docx
kwizart opencv python-BeautifulSoup python-beautifulsoup4 python-kaa-base
python-kaa-display python-kaa-imlib2 python-kaa-metadata
kylev python-mako python-peak-rules python-peak-util-addons python-pylons
python-routes python-tempita python-webhelpers
laxathom gstreamer-python python-shout
lbalhar python-moksha-common python-moksha-hub
lbazan python-django-ajax-selects python-django-federated-login
python-django-flash python-django-south python-django-staticfiles
lberk libpfm
lcons python-amqpclt python-auth-credential
leamas python-spiffgtkwidgets
leon python-ipaddr
leospol python-nitrate
lfaraone python-gasp
lgs python-hghooks
liangsuilong zinnia
limb brltty clearsilver lunatic-python py-bcrypt pygame python-alsa
python-basemap python-easygui python-flatland python-icalendar python-imdb
python-logbook python-ly python-oasa python-svg python-wokkel pytz pyusb
lkundrak python-dumptruck python-scales
lloesche mesos
lmacken python-TurboMail python-backlash python-cherrypy python-cherrypy2
python-clientform python-crank python-daemon python-decoratortools
python-elixir python-gearbox python-irclib python-kid python-mako python-meliae
python-migrate python-moksha-common python-moksha-hub python-moksha-wsgi
python-morbid python-myghty python-peak-rules python-peak-util-addons
python-peak-util-assembler python-peak-util-extremes python-peak-util-symbols
python-pycallgraph python-pyramid-fas-openid python-repoze-lru
python-repoze-tm2 python-repoze-what python-repoze-what-plugins-sql
python-repoze-who-plugins-sa python-rxjson python-simplemediawiki
python-strainer python-tbgrep python-tg-devtools python-tgext-admin
python-tgext-crud python-tgmochikit python-toscawidgets python-transaction
python-turbocheetah python-turbojson python-turbokid python-tw-forms
python-urwid python-venusian python-weberror python-webtest
python-zope-deprecation python-zope-sqlalchemy
louizatakk python-pgu
lpabon heketi
lsedlar python-productmd
lsm5 python-dockerpty
lucasagomes python-pyghmi
lucilanga hamlib libftdi
lunaticc0 python-frozen-flask
lupinix python-astroML python-astroML-addons python-mistune
lystor python-SocksiPy
lzap python-socksipychain
m4rtink pykickstart python-meh
macermak file
marcindulak gpaw python-ase
mariobl python-markups
mathstuf python-atomicwrites stfl
matt condor
maxamillion atomic-reactor osbs-client python-dockerpty python-enum
mbacovsk python-cherrypy2 python-migrate
mbaldessari python-atomicwrites python-jellyfish python-parsedatetime
mbarnes dbus-python gamin lcms setools
mbroz cryptsetup
mcepl python-dbusmock python-mako python-rope python-urllib2_kerberos pytz
mclasen pyatspi
mcpierce python-newt_syrup
mfabian langtable pyhunspell
mfrodl python-nitrate
mgieseki zorba
mgrepl libselinux libsemanage policycoreutils setools
mhabrnal abrt libreport satyr
mhlavink ecryptfs-utils
mikeb python-cheetah python-krbV
mildew bro
miminar i2c-tools pywbem
mitr libuser python-4Suite-XML python-gtkextra volume_key
mkrizek python-resultsdb_api python-yourls
mkutlak abrt
mlichvar newt
mluscon zookeeper
mmagr python-cmd2
mmahut gdal python-cli python-numdisplay python-rhev
mmarusak abrt
moceap python-durus python-libqutrub python-naftawayh python-pyarabic
python-qalsadi python-tashaphyne
moezroy pyelftools python-construct
mpaladin python-amqpclt python-auth-credential
mpreisle libwfut openscap
mrceresa gdcm vtk
mrunge python-d2to1 python-django-appconf python-django-compressor
python-django-debug-toolbar python-django-discover-runner
python-django-extra-form-fields python-django-kombu python-django-mptt
python-django-nose python-django-profiles python-django-pytest
python-django-simple-captcha python-django-tagging python-extras
python-fixtures python-gdata python-gevent-socketio python-lesscpy python-mox
python-mozbase python-nose-cover3 python-nose-exclude python-nose-xcover
python-pluggy python-pycxx python-rest-client python-roman
python-testrepository python-testscenarios python-versiontools python-webpy
python-wordpress-xmlrpc python-xvfbwrapper
msivak python-di
mskalick wiredtiger
msuchy PyPAM python-copr python-debian python-gzipstream python-hwdata
python-ordered-set rhnlib
mtasaka catfish gprof2dot python-mecab skf
mtoman libreport
mycae mathgl
nacho pygobject3
nalin cracklib
narasim python-chm
nb python-affinity python-cloudfiles
nbecker python-which
nhorman python-pysctp
nkondras freeradius
nonamedotc python-rope
noodles ganglia
nphilipp lilv python-recaptcha-client python-slip
npmccallum python-ipaddress
nsaje python-kazoo python-pymemcache python-tooz
nsoffer ioprocess python-subprocess32
oddshocks python-fedimg
okozina cryptsetup
oliver gdal mapserver
olysonek i2c-tools
opuk python-pylcdsysinfo
orion gdal gdl python-google-apputils python-iptools python-process-tests
python-sphinxcontrib-issuetracker vtk
oron libhocr
oschreib ovirt-engine-sdk-python
pabelanger python-fixtures python-gear
packaging-team python-urlgrabber
pagiator python-wsgilog
pali gdal mapserver
patches v8
pavlix unbound
pbrobinson csound gamin gupnp-igd hippo-canvas libplist python-elements
python-olpcgames xapian-bindings
pcmoore libselinux libsemanage policycoreutils setools
pcpa brial miniupnpc python-flask-autoindex python-flask-babel
python-flask-silk python-gd
pebenito setools
pemensik ldns unbound
perex python-alsa
peter fuse-python opensips python-guppy python-lyricwiki python-sippy
python-vkontakte python-xgoogle python-xmpp
pfrields notify-python python-babel-BabelGladeExtractor python-mwlib
phatina python-lmiwbem
phuang dbus-python
pingou python-contextlib2 python-tgcaptcha2
piotrp python-django-tagging python-elasticsearch python-nose-xcover
pjones python-pyblock
pjp python-blinker python-dateutil15 python-flask-assets
python-flask-lastuser python-flask-openid python-unidecode python-wtforms
pkajaba opencv
pkilambi python-kafka python-tooz
pknirsch OpenIPMI
plautrba libselinux libsemanage policycoreutils setools
pmachata boost
pnemade python-drat python-fontname
potty python-simplemediawiki
prabindatta pyicu
praiskup python-retask
praveenp openwsman
psavelye python-pyvfs
pspacek python-ldap
psss python-nitrate
puiterwijk python-batchhttp python-carddav python-flask-admin python-openid
python-openid-cla python-openid-teams python-robosignatory
pvrabec openscap
pwalter lash python-cloudfiles python-mtTkinter
pwouters geome ldns python-editdist python-pydns python-pymilter unbound
pwu zinnia
radez python-phacter
radford ledger
ralph python-alembic python-anykeystore python-backlash
python-backports-lzma python-beautifulsoup4 python-bugzilla2fedmsg
python-cairosvg python-cmd2 python-contextlib2 python-crank
python-datanommer-consumer python-dopy python-dtopt python-fedbadges
python-fedimg python-fedmsg-genacls python-fedmsg-meta-debian
python-fmn-consumer python-fmn-rules python-gearbox python-geojson
python-http-parser python-logging-tree python-logutils python-m2ext
python-moksha-common python-moksha-hub python-moksha-wsgi python-munch
python-narcissus-common python-narcissus-hub python-offtrac python-pygal
python-pygeoip python-pylibravatar python-pypng python-pypump python-pyquery
python-pyramid-fas-openid python-re2 python-redis python-repoze-lru
python-repoze-what python-restkit python-robosignatory python-sanction
python-sieve python-simplemediawiki python-strainer python-svg-path
python-tablib python-tbgrep python-transaction python-tw2-d3
python-tw2-dynforms python-tw2-excanvas python-tw2-forms
python-tw2-jqplugins-flot python-tw2-jqplugins-gritter
python-tw2-jqplugins-jqplot python-tw2-jqplugins-ui python-tw2-polymaps
python-tw2-slideymenu python-txrequests python-txws python-txzmq python-vcrpy
python-velruse python-venusian python-virtualenvcontext python-wrapt
python-zc-buildout python-zc-customdoctests python-zc-lockfile python-zdaemon
python-zope-deprecation python-zope-sqlalchemy
ramkrsna python-achoo python-posix_ipc
raphgro ecryptfs-utils thunarx-python
raveit65 python-caja
ravenoak pysvn
rcritten lasso
rdieter dbus-python python-pyside
rebus python-smbpasswd python-volatility
rfenkhuber python-dockerpty
rharwood python-gssapi
rhughes dbus-python gamin lcms python-ldap setools
richzendy python-libturpial
ricky python-dictclient python-dtopt python-migrate python-tempita
python-weberror python-webtest python-wsgiproxy
rishi python-libasyncns
rkuska python-assertEquals python-bintrees python-colour-runner
python-flask-script python-squaremap
rmarko python-TornadIO2 python-flask-login python-flask-rstpages
rmattes hokuyoaist python-gencpp python-genlisp python-genmsg python-genpy
python-rosinstall python-wstool
robert beecrypt libdnet python-GnuPGInterface
robyduck python-parsley python-txsocksx
rocha dmlite
roma python-mtTkinter
roshansingh python-gdata
rossdylan python-venusian
rstrode dbus-python gamin lcms python-ldap setools
rtcm pyatspi
rvokal python-adns
rvykydal isomd5sum pykickstart
s4504kr python-smbpasswd
salimma python-blist python-cliapp python-coverage-test-runner python-extras
python-larch python-linecache2 python-nltk python-qrcode python-testtools
python-tracing python-ttystatus
sandeen ecryptfs-utils
sayanchowdhury python-fedimg python-fmn-consumer python-fmn-rules
python-libpagure python-retask
sbueno pykickstart
scottt urjtag
sdgathman cjdns python-pymilter
sdyroff python-ansi python-carddav
sdz python-elements python-gasp python-oauth python-olpcgames
python-xklavier
sebp gdcm
sergiomb mlt opencv
sergiopr ATpy pyfits pymilia python-asciitable python-d2to1 python-emcee
python-husl python-numdisplay
sgallagh pysvn python-kgb python-memcached python-odict
python-recaptcha-client
sgrubb libcap-ng
sharkcz python-dmidecode python-openhpi python-openoffice
siddharths lldb
simo lasso python-gssapi
simonm fts-rest xrootd
sinnykumari python-grabserial
sjenning pyscard
skottler zookeeper
slaanesh mesos
slankes python-mygpoclient
slinabery python-jsonpath-rw python-junitxml
smilner python-elixir python-gdata python-pp
snirkel python-pymtp
sochotni fedwatch python-dpath python-ropemacs python-ropemode
sophiekovalevsky python-deltasigma
spot pyke python-morbid python-repoze-what-pylons
python-repoze-what-quickstart python-repoze-who-friendlyform
python-repoze-who-testutil rekall tcl-snack v8 xmms2
sross python-gssapi
ssp dbus-python gamin lcms python-ldap setools
stefanok dbus-python
stevetraylen python-humanize python-openopt
stingray pyserial
sundaram python-blinker python-dateutil15 python-flask-assets
python-flask-lastuser python-flask-openid python-gdata python-unidecode
python-wtforms
sxw remctl
szpak pyxattr
tadej python-meliae
talcite CheMPS2
tartina lilv
tasleson libstoragemgmt
tbielawa python-taboot
tdabasin python-rtkit python-urllib2_kerberos python-xpyb
teigland sanlock
terjeros ganglia pyelftools python-BeautifulSoup python-beautifulsoup4
python-construct python-curtsies python-exif python-unipath
terminalmage python-halite python-salttesting
tflink python-dingus python-wtforms python-yourls
tgraf libnl3
thaller libnl3
than python-pyside
thm python-pluggy
thomasj xmms2
thozza ldns python-adns unbound
till pyhunspell python-flup python-kid
timfenn python-ZSI
tjikkun python-contextlib2 python-raven
tmraz PyPAM cracklib
tnorth python-anfft
tomprince python-characteristic
tomspur gstreamer-python python-daemon python-mglob python-numpydoc
python-pretty v8
tonet666p python-flask-whooshalchemy
topdog python-PSI
tremble graphviz
trown python-ironic-inspector-client
tstclair condor zookeeper
tstellar lldb
ttheisen condor
ttomecek atomic-reactor osbs-client python-dockerpty
twaugh atomic-reactor libieee1284 osbs-client
twoerner python-slip
ueno marisa
uwog abiword
vcrhonek openwsman
veillard gamin libvirt-python libxml2 libxslt
vgologuz python-copr
vhumpa dogtail
villadalmine python-irawadi-user
vjancik opencv python-wikitools v8
vmojzis policycoreutils
vmukhame python-urlgrabber
volter gdal pyshp python-OWSLib python-Rtree python-phyghtmap
python-shapely qgis saga
vpodzime libbytesize python-blivet1 python-meh
vponcova pykickstart
vpopovic python-alchimia
vpv libvoikko python-mygpoclient python-pymtp
vrutkovs atomic-reactor osbs-client
vtrefny python-blivet1
walters pygobject3
wcohen libpfm
williamjmorenor dreampie
wsato openscap
wtaymans gstreamer-rtsp python-gstreamer1
wzzrd python-keyczar
xhaksx python-speaklater
yograterol python-ctrldaemon python-irawadi-user
zaitcev python-pyeclib
zbyszek python-mpmath python-pysb
zkota python-bibtex
zultron python-pivy python-pycxx
zvetlik v8
### List 2. Packages that need work ###
Maintainers by package:
PyQt4 group::kde-sig rdieter than
ahkab sophiekovalevsky
ansible kevin toshio wzzrd
audit sgrubb
ceph branto dachary dmick jdieter ke4qqq kkeithle ktdreyer
steve stingray
claws-mail awjb mschwendt
edk2 bonzini crobinso kraxel
firewalld jpopelka twoerner
gofed fale jchaloup
kernel airlied ajax bskeggs eparis glisse jforbes josef jwboyer
jwilson jwrdegoede kernel-maint labbott linville mjg59 myoung nhorman quintela
sandeen steved
kross-interpreters group::kde-sig jreznik rdieter than
lcgdm aalvarez adev andreamanzi rocha
libappindicator echevemaster lbazan
libcaca thias
libchewing dchen
libgpod alexl caillon caolanm chkr group::gnome-sig johnp limb
mbarnes moezroy rhughes rstrode ssp teuf
liblouis mgieseki
libpeas amigadave hadess nacho
libpwquality tmraz
librapi awjb
librra awjb
libsmbios gunnersrini mebrown praveenp
lvm2 agk bmarzins bmr cfeist kzak lvm-team mauelsha mbroz
mcsontos mornfall msnitzer pjones prajnoha zkabelac
mirrorbrain averi
mod_wsgi jdornak jkaluza jorton lmacken mrunge
nautilus-python dignan raphgro
nemo-extensions group::alt-gtk-de-sig leigh123linux raveit65
openvdb luya slaanesh
pam_wrapper asn jhrozek
pcp brolley fche lberk mgoodwin nathans scox
pjproject jsmith
pki-core edewata kwright mharmsen vakwetu
pulp-python asmacdo bizhang ipanova jortel pcreech17
pykde4 group::kde-sig jreznik rdieter than
pystache ankursinha sundaram
python-ansi2html ralph
python-backports-ssl_match_hostname group::infra-sig ianweller ralph
python-beaker kylev lmacken
python-blessed abompard
python-bugzilla crobinso dzickus
python-cairocffi brouhaha jdulaney
python-chameleon group::infra-sig lmacken ralph tdabasin
python-cliff apevec group::infra-sig
python-cssmin group::qa-tools-sig mkrizek
python-datanommer-models group::infra-sig ralph
python-dirq lcons mpaladin stevetraylen
python-django-dynamite lbazan
python-django-filter bkabrda churchyard lbazan
python-django-post_office ankursinha
python-django-socialregistration coolsvap
python-docker-py lsm5 mstuchli ttomecek
python-flask-images alexove echevemaster
python-flask-wtf kumarpraveen pjp sundaram tflink
python-fmn-lib group::infra-sig ralph sayanchowdhury
python-fmn-web group::infra-sig ralph sayanchowdhury
python-messaging lcons mpaladin
python-narcissus-app ralph
python-networking-bigswitch xinwu
python-nine ralph
python-postman wakko666
python-pyramid-chameleon bowlofeggs group::python-sig lmacken
python-pytest-cov cstratak orion ttomecek
python-qt5 group::kde-sig rdieter than
python-repoze-who lmacken
python-requestbuilder gholms
python-rhsm alikins awood bkearney
python-simplevisor adev lcons mpaladin
python-sparklines ralph
python-sphinxcontrib-adadomain rombobeorn
python-sphinxcontrib-cheeseshop besser82
python-sqlalchemy-utils pingou
python-straight-plugin pingou
python-summershum group::infra-sig pingou
python-tahrir group::infra-sig rossdylan sayanchowdhury
python-tahrir-api group::infra-sig rossdylan sayanchowdhury
python-taskw ralph
python-trollius iwienand mrunge
python-tw2-core lmacken ralph
python-tw2-jit ralph
python-tw2-sqla ralph
python-websocket-client ralph
qpid-cpp irina nsantos
redland-bindings thomasvs
root ellert
samba abbra anoopcs asn gd jarrpa jlayton obnox simo
sip group::kde-sig rdieter than
uwsgi carlwgeorge kad
vertica-python kubo
vim-syntastic praiskup
waf salimma thm
zanata-python-client anishpatil dchen jamesni pnemade robyduck seanf suanand
Packages by maintainer:
aalvarez lcgdm
abbra samba
abompard python-blessed
adev lcgdm python-simplevisor
agk lvm2
airlied kernel
ajax kernel
alexl libgpod
alexove python-flask-images
alikins python-rhsm
amigadave libpeas
andreamanzi lcgdm
anishpatil zanata-python-client
ankursinha pystache python-django-post_office
anoopcs samba
apevec python-cliff
asmacdo pulp-python
asn pam_wrapper samba
averi mirrorbrain
awjb claws-mail librapi librra
awood python-rhsm
besser82 python-sphinxcontrib-cheeseshop
bizhang pulp-python
bkabrda python-django-filter
bkearney python-rhsm
bmarzins lvm2
bmr lvm2
bonzini edk2
bowlofeggs python-pyramid-chameleon
branto ceph
brolley pcp
brouhaha python-cairocffi
bskeggs kernel
caillon libgpod
caolanm libgpod
carlwgeorge uwsgi
cfeist lvm2
chkr libgpod
churchyard python-django-filter
coolsvap python-django-socialregistration
crobinso edk2 python-bugzilla
cstratak python-pytest-cov
dachary ceph
dchen libchewing zanata-python-client
dignan nautilus-python
dmick ceph
dzickus python-bugzilla
echevemaster libappindicator python-flask-images
edewata pki-core
ellert root
eparis kernel
fale gofed
fche pcp
gd samba
gholms python-requestbuilder
glisse kernel
group::alt-gtk-de-sig nemo-extensions
group::gnome-sig libgpod
group::infra-sig python-backports-ssl_match_hostname python-chameleon
python-cliff python-datanommer-models python-fmn-lib python-fmn-web
python-summershum python-tahrir python-tahrir-api
group::kde-sig PyQt4 kross-interpreters pykde4 python-qt5 sip
group::python-sig python-pyramid-chameleon
group::qa-tools-sig python-cssmin
gunnersrini libsmbios
hadess libpeas
ianweller python-backports-ssl_match_hostname
ipanova pulp-python
irina qpid-cpp
iwienand python-trollius
jamesni zanata-python-client
jarrpa samba
jchaloup gofed
jdieter ceph
jdornak mod_wsgi
jdulaney python-cairocffi
jforbes kernel
jhrozek pam_wrapper
jkaluza mod_wsgi
jlayton samba
johnp libgpod
jortel pulp-python
jorton mod_wsgi
josef kernel
jpopelka firewalld
jreznik kross-interpreters pykde4
jsmith pjproject
jwboyer kernel
jwilson kernel
jwrdegoede kernel
kad uwsgi
ke4qqq ceph
kernel-maint kernel
kevin ansible
kkeithle ceph
kraxel edk2
ktdreyer ceph
kubo vertica-python
kumarpraveen python-flask-wtf
kwright pki-core
kylev python-beaker
kzak lvm2
labbott kernel
lbazan libappindicator python-django-dynamite python-django-filter
lberk pcp
lcons python-dirq python-messaging python-simplevisor
leigh123linux nemo-extensions
limb libgpod
linville kernel
lmacken mod_wsgi python-beaker python-chameleon python-pyramid-chameleon
python-repoze-who python-tw2-core
lsm5 python-docker-py
luya openvdb
lvm-team lvm2
mauelsha lvm2
mbarnes libgpod
mbroz lvm2
mcsontos lvm2
mebrown libsmbios
mgieseki liblouis
mgoodwin pcp
mharmsen pki-core
mjg59 kernel
mkrizek python-cssmin
moezroy libgpod
mornfall lvm2
mpaladin python-dirq python-messaging python-simplevisor
mrunge mod_wsgi python-trollius
mschwendt claws-mail
msnitzer lvm2
mstuchli python-docker-py
myoung kernel
nacho libpeas
nathans pcp
nhorman kernel
nsantos qpid-cpp
obnox samba
orion python-pytest-cov
pcreech17 pulp-python
pingou python-sqlalchemy-utils python-straight-plugin python-summershum
pjones lvm2
pjp python-flask-wtf
pnemade zanata-python-client
praiskup vim-syntastic
prajnoha lvm2
praveenp libsmbios
quintela kernel
ralph python-ansi2html python-backports-ssl_match_hostname
python-chameleon python-datanommer-models python-fmn-lib python-fmn-web
python-narcissus-app python-nine python-sparklines python-taskw python-tw2-core
python-tw2-jit python-tw2-sqla python-websocket-client
raphgro nautilus-python
raveit65 nemo-extensions
rdieter PyQt4 kross-interpreters pykde4 python-qt5 sip
rhughes libgpod
robyduck zanata-python-client
rocha lcgdm
rombobeorn python-sphinxcontrib-adadomain
rossdylan python-tahrir python-tahrir-api
rstrode libgpod
salimma waf
sandeen kernel
sayanchowdhury python-fmn-lib python-fmn-web python-tahrir python-tahrir-api
scox pcp
seanf zanata-python-client
sgrubb audit
simo samba
slaanesh openvdb
sophiekovalevsky ahkab
ssp libgpod
steve ceph
steved kernel
stevetraylen python-dirq
stingray ceph
suanand zanata-python-client
sundaram pystache python-flask-wtf
tdabasin python-chameleon
teuf libgpod
tflink python-flask-wtf
than PyQt4 kross-interpreters pykde4 python-qt5 sip
thias libcaca
thm waf
thomasvs redland-bindings
tmraz libpwquality
toshio ansible
ttomecek python-docker-py python-pytest-cov
twoerner firewalld
vakwetu pki-core
wakko666 python-postman
wzzrd ansible
xinwu python-networking-bigswitch
zkabelac lvm2
--
Zbyszek
zbyszek on #fedora-devel
_______________________________________________
python-devel mailing list -- python-devel@lists.fedoraproject.org
To unsubscribe send an email to python-devel-le...@lists.fedoraproject.org
--
Miro Hrončok
--
Phone: +420777974800
IRC: mhroncok
_______________________________________________
python-devel mailing list -- python-devel@lists.fedoraproject.org
To unsubscribe send an email to python-devel-le...@lists.fedoraproject.org