Version number of python-future
by Antonio T. sagitter
Hi all.
Latest release of `future`, the 0.18.3
(https://koji.fedoraproject.org/koji/rpminfo?rpmID=32957279), is generating
future = 0:0.18.3-2.fc38
future-python3 = 0:0.18.3-2.fc38
python-future = 0.18.3-2.fc38
python3-future = 0.18.3-2.fc38
python3.11-future = 0.18.3-2.fc38
python3.11dist(future) = 0.18.2 <---
python3dist(future) = 0.18.2 <---
Can you help to understand why?
Regards.
--
---
Antonio Trande
Fedora Project
mailto:sagitter@fedoraproject.org
GPG key: 0x40FDA7B70789A9CD
GPG keys server:https://keyserver.dcc.sib.swiss/
4 months, 1 week
Heads up: tox 4 in Rawhide buildroot
by Miro Hrončok
> Successfully waited 0:00 for python-tox-4.2.6-1.fc38 to appear in the
f38-build repo.
If you hit unexpected issues with %tox, let us know here or in Bugzilla.
Thanks.
--
Miro Hrončok
--
Phone: +420777974800
IRC: mhroncok
4 months, 1 week
-Wp,-D_FORTIFY_SOURCE=3 and other compiler flags stored in Python
by Miro Hrončok
Hello folks,
this recent Fedora change:
https://fedoraproject.org/wiki/Changes/Add_FORTIFY_SOURCE%3D3_to_distribu...
Made me think:
Which compiler flags we need to store in Python and which can we omit?
In order to make Python extension modules binary compatible with Python, Python
saves the compiler flags at compile-time and reuses them when building
extension modules.
Historically, we had troubles with this approach because some of the flags are
unusable without redhat-rpm-config, annobin etc.
As a result, there are now 2 compiler flags macros available for RPM:
%{build_cflags} and %{extension_cflags} (same for ldflags etc.).
While Python itself is built with %{build_cflags}, it saves %{extension_cflags}
in sysconfig.
The flags differ like this:
$ diff -u <(rpm --eval '%build_cflags' | tr ' ' '\n') <(rpm --eval
'%extension_cflags' | tr ' ' '\n') | grep ^-
--flto=auto
--ffat-lto-objects
--specs=/usr/lib/rpm/redhat/redhat-hardened-cc1
--specs=/usr/lib/rpm/redhat/redhat-annobin-cc1
$ diff -u <(rpm --eval '%build_ldflags' | tr ' ' '\n') <(rpm --eval
'%extension_ldflags' | tr ' ' '\n') | grep ^-
--specs=/usr/lib/rpm/redhat/redhat-hardened-ld
--specs=/usr/lib/rpm/redhat/redhat-annobin-cc1
(There are also some other differences wrt
https://fedoraproject.org/wiki/Changes/Package_information_on_ELF_objects but
those are apparently harder to get from outside of a real build.)
The current set of flags from Python can be obtained by:
>>> sysconfig.get_config_var('CFLAGS')
'-Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -fexceptions -g
-grecord-gcc-switches -pipe -Wall -Werror=format-security -U_FORTIFY_SOURCE
-Wp,-U_FORTIFY_SOURCE -Wp,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS
-fstack-protector-strong -m64 -mtune=generic -fasynchronous-unwind-tables
-fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -O2
-fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security
-U_FORTIFY_SOURCE -Wp,-U_FORTIFY_SOURCE -Wp,-D_FORTIFY_SOURCE=3
-Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -mtune=generic
-fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection
-D_GNU_SOURCE -fPIC -fwrapv -O2 -fexceptions -g -grecord-gcc-switches -pipe
-Wall -Werror=format-security -U_FORTIFY_SOURCE -Wp,-U_FORTIFY_SOURCE
-Wp,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong
-m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection
-fcf-protection -D_GNU_SOURCE -fPIC -fwrapv'
>>> sysconfig.get_config_var('LDFLAGS')
'-Wl,-z,relro -Wl,--as-needed -Wl,-z,now -Wl,--build-id=sha1 -g
-Wl,-z,relro -Wl,--as-needed -Wl,-z,now -Wl,--build-id=sha1 -g'
I wonder if other flags should be removed as well.
Isn't Python built e.g. with -Werror=format-security or -Wsign-compare binary
compatible with extension modules built without it?
What about FORTIFY_SOURCE and others?
Is there a compiler flags expert here who could help me determine what flags
could (or even should) be removed from %{extension_*flags}?
Thanks,
--
Miro Hrončok
--
Phone: +420777974800
IRC: mhroncok
4 months, 1 week
pathfix.py will be removed from Python 3.12
by Lumír Balhar
Hello.
Since Python 2.0 (1994), Python provided a useful tool pathfix.py that
we use in Python RPM macros for fixing shebangs of Python modules and
some RPM packages use it as well directly in their specfiles for similar
purposes. The script will no longer be part of CPython source code and
python3-devel RPM package. Because we think it's useful, we have decided
to create a new upstream project for it
(https://github.com/fedora-python/pathfix) on Github and include it in
the python3-rpm-macros package. The change means the script will move
from /usr/bin/pathfix.py to /usr/lib/rpm/redhat/pathfix.py.
For users of %py_shebang_fix and %py3_shebang_fix no action is needed.
The macros will soon use the new location of the tool.
If you use the tool directly in your specfile a change is needed before
Python 3.12 become the main one in Fedora 38. We have a list of affected
packages and will open PRs for them soon.
Packages requiring /usr/bin/pathfix.py:
$ repoquery -q --repo=rawhide{,-source} --whatrequires /usr/bin/pathfix.py
Mayavi-0:4.8.1-1.fc38.src
PySolFC-0:2.18.0-1.fc38.src
TeXmacs-0:2.1.2-2.fc38.src
autodownloader-0:0.5.0-6.fc37.src
cp2k-0:9.1-3.fc37.src
dblatex-0:0.3.12-7.fc37.src
diskimage-builder-0:3.20.1-2.fc37.src
dnsperf-0:2.9.0-3.fc37.src
gimp-layer-via-copy-cut-0:1.6-22.fc37.src
gimp-resynthesizer-0:2.0.3-9.20190428gitadfa25a.fc37.src
global-0:6.6.5-7.fc38.src
gtkpod-0:2.1.5-22.fc38.src
guitarix-0:0.44.1-1.fc37.src
kernel-tools-0:6.1.0-0.rc2.git0.1.fc38.src
koan-0:3.0.1-4.fc37.src
mediawiki-0:1.38.2-1.fc38.src
monsterz-0:0.7.1-31.fc37.src
new-session-manager-0:1.3.2-7.fc37.src
noggin-0:1.6.1-4.fc38.src
nut-0:2.8.0-5.fc38.src
nx-libs-0:3.5.99.26-5.fc37.src
octave-miscellaneous-0:1.3.0-10.fc37.src
pcsc-lite-0:1.9.9-1.fc38.src
percona-xtrabackup-0:8.0.25_17-1.fc35.src
pynag-0:1.1.2-11.fc37.src
python-confluent-kafka-0:1.6.1-1.fc38.src
python-cram-0:0.7-13.fc37.src
python-pyside2-1:5.15.2.1-7.fc37.src
rabbitvcs-0:0.18-8.fc37.src
roca-detect-0:1.2.12-21.fc37.src
scipy-0:1.8.1-6.fc37.src
swift-lang-0:5.7-3.fc38.src
syslog-ng-0:3.37.1-1.fc38.src
systemtap-0:4.8~pre16650659g6a096a7d-1.fc38.src
wine-mono-0:7.3.0-2.fc37.src
specfiles containing "pathfix.py":
ceph.spec
blktrace.spec
aws.spec
avogadro2-libs.spec
cobbler.spec
crawl.spec
partio.spec
dblatex.spec
dnsperf.spec
diskimage-builder.spec
dlib.spec
cp2k.spec
fio.spec
future.spec
fedora-review.spec
fedora-easy-karma.spec
GConf2.spec
gimp-layer-via-copy-cut.spec
gimp-resynthesizer.spec
llvm10.spec
global.spec
gnome-weather.spec
clang10.spec
gtkpod.spec
netbox.spec
htop.spec
guitarix.spec
gtk2.spec
kernel-tools.spec
kernel.spec
monsterz.spec
intel-cm-compiler.spec
koan.spec
libabigail.spec
libevdev.spec
libevent.spec
libinput.spec
libsbml.spec
libtdb.spec
Mayavi.spec
mesos.spec
mftrace.spec
micropython.spec
mercurial.spec
mediawiki.spec
nodejs.spec
llvm-test-suite.spec
llvm11.0.spec
nx-libs.spec
octave-miscellaneous.spec
offlineimap.spec
openclonk.spec
openscap.spec
nut.spec
pcsc-lite.spec
percona-xtrabackup.spec
clang11.spec
petsc.spec
noggin.spec
policycoreutils.spec
pyhoca-cli.spec
pynag.spec
python3.10.spec
python3.8.spec
python3.6.spec
python3.7.spec
python2.7.spec
python-biopython.spec
python-cram.spec
python-confluent-kafka.spec
python-bluepy.spec
PySolFC.spec
python3.9.spec
pyhoca-gui.spec
python-nbconvert.spec
python-nb2plots.spec
python-nitrate.spec
python-os-testr.spec
python-igor.spec
python-exabgp.spec
python-pyside2.spec
python-reportlab.spec
python-rpm-macros.spec
python-scss.spec
pytz.spec
rocminfo.spec
roca-detect.spec
rabbitvcs.spec
python-zbase32.spec
python-mistune08.spec
llvm9.0.spec
llvm7.0.spec
libtalloc.spec
scipy.spec
solarwolf.spec
TeXmacs.spec
llvm8.0.spec
swift-lang.spec
python3.11.spec
llvm11.spec
telepathy-logger.spec
syslog-ng.spec
systemtap.spec
scons.spec
tuna.spec
vips.spec
wavextract.spec
xpra.spec
andriller.spec
tuptime.spec
clang12.spec
llvm12.spec
new-session-manager.spec
workrave.spec
wine-mono.spec
wabt.spec
vdrift.spec
inksmoto.spec
inkscape.spec
autojump.spec
autodownloader.spec
apbs.spec
Have a nice day.
Lumír
4 months, 1 week
Building Python 3.12 with no-omit-frame-pointer
by Petr Viktorin
tl;dr: Python 3.12 should be built with no-omit-frame-pointer if
upstream recommends it.
Hello,
You might be aware of a Fedora change proposal [0] (discussed on
fedora-devel [1] and FESCo [2]) are discussing turning on C compiler
flags that help with performance *measurement*, but might hurt
performance itself: `-fno-omit-frame-pointer` and
`-mno-omit-leaf-frame-pointer`.
Apparently there are some benchmarks that make Python look extra slow
when the flags are turned on -- which I don't quite understand.
Meanwhile, on the upstream side, Python 3.12 (due next year, main Python
for Fedora 39 [3]) has support for `perf`. Upstream plans to recommend
compiling with these flags when measuring performance [4], and AFAIK,
the plan is to recommend *always* compiling with them.
The idea is that possible speedups from "allowing anyone to
profile/optimize their workflow" are worth the initial slowdown.
I'm not much of a performance expert myself, but I do get drawn into the
relevant discussions on the CPython side.
As far as I can see, performance geeks are enthusiastic for `perf`
support, and I'd like to get them to (continue to) use Fedora builds.
If CPython upstream does recommend these flags (or makes them default),
I'm considering to turn the no-omit options on for Python 3.12 even if
Fedora as a whole doesn't.
Note that even a 2% slowdown will likely won back by general performance
improvements – the Faster CPython team is targeting a 20% average
speedup for pure-Python code in 3.12, on top of the ~25% for 3.11. And
the people responsible for this speedup have a say in the upstream
recommendations.
Technically there are three separate places where the flags can be set,
I think we should turn them on everywhere:
- CPython itself & its standard library
- The debug build (/usr/bin/python3-debug)
- Default for libraries in Fedora (RPM macros)
- Befault for libraries built by users (sysconfig settings)
[0]: https://fedoraproject.org/wiki/Changes/fno-omit-frame-pointer
[1]:
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.o...
[2]: https://pagure.io/fesco/issue/2817
[3]: https://fedoraproject.org/wiki/Changes/Python3.12
[4]:
https://docs.python.org/3.12/howto/perf_profiling.html#how-to-obtain-the-...
4 months, 2 weeks
Forcing Python minor version in EPEL builds
by Mark E. Fuller
Hi Folks,
I am looking to update one of my packages in EPEL 8 and Python3.6 was
dropped.
Can anyone point me in the right direction as to how to edit my spec
file `buildrequires` and the macros to enforce Python 3.7 (or higher)
instead of Python 3.6 anto do it "the right way", not a kludge?
Thank you,
Mark E. Fuller, Ph.D.
fuller(a)fedoraproject.org
@fuller:one.ems.host
https://mefuller.dev
PGP Fingerprint: 73F1 A30C BDF4 DB4B C75F FD0F D599 E76C FFCA BF60
4 months, 3 weeks
Help needed triaging build failures without distutils
by Miro Hrončok
Hey Pythonistas.
The Python standard library distutils module will be removed from Python 3.12+
https://peps.python.org/pep-0632/
As preparatory work, we build all python packages in a Copr repository with
Python 3.11 sans distutils:
https://copr.fedorainfracloud.org/coprs/g/python/python-without-distutils/
I've rebuilt all the failed builds again and also in a control-group copr:
https://copr.fedorainfracloud.org/coprs/g/python/python-with-distutils/
250 packages that failed to build without distuils but succeeded with distutils
need to be examined and categorized into various different groups:
- package uses distutils only if sys.version_info < (3, 12)
-- this is OK but still fails here
- package uses distutils unconditionally and the package needs to be fixed
- package uses another package that uses distutils unconditionally
and the dependency needs to be fixed
I suspect most of the packages will fail to build with Python 3.12 (planned for
Fedora 39, change proposal TBD). The python3-setutpools package provides a
distutils module [^1], so sometimes "simply" adding BuildRequires:
python3-setuptools might workaround the problem.
However, upstream involvement is recommended.
A few bugzillas were opened wrt this and I plan to open more:
https://bugzilla.redhat.com/showdependencytree.cgi?id=PYTHON3.12&hide_res...
I've also oepned some upstream Pull Requests:
https://github.com/pypa/pip/pull/11522
https://github.com/pypa/setuptools/pull/3636
https://pagure.io/fedora-gather-easyfix/pull-request/10
https://github.com/filbranden/dnf-plugins-perfmetrics/pull/1
https://github.com/rpm-software-management/deltarpm/pull/17
Could you please help me by looking at your failed packages and talking to your
upstreams? Feel free to reply with links, questions, bugzillas...
To test this locally, you can do something like:
1. fedpkg clone $PKG && cd $PKG
2. mock -r fedora-rawhide-x86_64 init
3. mock -r fedora-rawhide-x86_64 install python3-devel
4. sudo rm -rf
/var/lib/mock/fedora-rawhide-x86_64/root/usr/lib64/python3.11/distutils/
4. fedpkg mockbuild -N
Thanks!
------------------------
[^1]: Unfortunately, is not 100 % compatible with the removed standard library
one distutils: https://github.com/pypa/setuptools/issues/3532
------------------------
Maintainers by package:
0ad bruno kalev pcpa pwalter
GConf2 alexl buc caillon caolanm mbarnes rhughes ssp walters
MUSIC ankursinha
PyQt4 sagitter than
SoapySDR hobbes1069 mdomsch
Zim cheeselee ohaessler
anaconda anaconda-maint jkonecny m4rtink rvykydal sbueno vpodzime
vponcova
anjuta kalev limb moezroy rakesh
appliance-tools ngompa
astrometry lupinix
audit sgrubb
awake fab
b43-tools pwalter
babeltrace blarsen greenscientist keiths ktdreyer mjeanson suchakra
babeltrace2 mjeanson
bamf jspaleta salimma
baresip robert
brd jsbackus
brial pcpa
btest fab
cairo-dock-plug-ins mtasaka
ccsm jskarvad
cdist fnux
clingo thofmann
cryptlib senderek
cryptominisat jjames
csmock kdudka svashisht
csound ndim
cvc4 brouhaha jjames
dee jspaleta spot
deltarpm defolos
distcc grover limb
dmlite adev andreamanzi gbitzes okeeble rocha vokac
dnf-plugin-perfmetrics dcavalca
dnsviz jonathanspw pemensik
eric rdieter
etckeeper thm
fedora-gather-easyfix pingou
flann rmattes
fonts-tweak-tool jamesni tagoh
fusion-icon jskarvad
gdb ahajkova blarsen jankratochvil keiths kevinb sergiodj
gfal2-python adev andreamanzi mipatras simonm
gjots2 wef
glusterfs kkeithle
gnome-activity-journal crvi
gnome-doc-utils alexl caillon caolanm limb rhughes rstrode ssp
gnucash limb notting
gnumeric aarem belegdol huzaifas
gpgme fkluknav isimluk jkucera mrc0mmand rdieter
gphotoframe mtasaka
gpodder jspaleta limb vpv
graphviz alexlan jskarvad
grass daveisfera devrim jonathanspw neteler oliver volter
gtk2 alexl caillon caolanm mbarnes mclasen mkasik rhughes
rstrode ssp
hivex mdbooth rjones
hplip jridky tkorbar twaugh zdohnal
hugin bpostle cicku denisarnaud
i2c-tools aegorenk ajax jcapik jorton jzerdik miminar olysonek
ibus fujiwara phuang
ibus-anthy fujiwara phuang
insight lkundrak monnerat
iotop drago01 mhlavink
keycloak-httpd-client-install jhrozek thalman
kicad avigne lkundrak stevenfalco tnorth
kig jreznik kkofler rdieter
kobo dmach rohanpm
lasso jhrozek rcritten simo
ldns pemensik pwouters rlescak thozza
lensfun germano grahamwhiteuk nphilipp ohaessler rdieter trix
lhapdf ellert
libarcus churchyard gferon
libblockdev sbueno tbzatek vpodzime vtrefny
libcap-ng sgrubb
libcint jussilehtola
libdnet rjones robert
libfreenect jkastner kathenas kwizart rmattes
libftdi hobbes1069 robert sharkcz
libkdumpfile dcavalca salimma
libkkc petersen
libldb abbra asn gd iboukris jhrozek lslebodn pfilipen sgallagh simo
libnbd rjones
libneurosim ankursinha
libnl3 dcbw jirka tgraf thaller
libprelude fab limb totol
libpreludedb totol
libproxy amigadave cicku danw npmccallum
libpst mcrha
libpwquality pwouters tmraz
libreswan pwouters saprasad
libsavitar churchyard gferon
libselinux dwalsh pcmoore plautrba vmojzis
libsemanage dwalsh mgrepl pcmoore plautrba vmojzis
libsolv dmach ignatenkobrain jmracek jrohel ngompa pkratoch
libssh2-python clalance
libtalloc abbra asn gd iboukris jhrozek lslebodn pfilipen sgallagh simo
libtdb abbra asn gd iboukris jhrozek lslebodn pfilipen sgallagh simo
libtevent abbra asn gd iboukris jhrozek lslebodn pfilipen sgallagh simo
libxml2 amigadave veillard
link-grammar devos limb
livecd-tools astokes bcl bruno huff katzj ngompa
lnst jtluka olichtne rpazdera
lttng-ust dmarlin greenscientist ktdreyer mjeanson suchakra
maildirproc cwickert
mailnag thl
manafirewall ngompa thunderbirdtr
marisa ueno
mathgl deji krege mycae
mirage mtasaka
mozjs102 frantisekz
mozjs78 frantisekz kalev
mozjs91 frantisekz
mpv carlwgeorge ngompa xvitaly
netgen-mesher hobbes1069 smani
nfs-ganesha kkeithle
nftables kevin psutter
nispor cathay4t ffmancera
nmstate cathay4t ffmancera liangwen12year till
ntpsec ignatenkobrain mlichvar
numpy cstratak jspaleta limb orion rdieter tomspur ttomecek
ocaml-pyml jjames
oct2spec orion
omniORB hguemar smani
omniORBpy smani
onboard yanqiyu
openscap evgenyz isimluk jcerny matyc mmarhefk pvrabec vpolasek wsato
openscap-daemon isimluk jcerny matyc wsato
pam_wrapper asn jhrozek
photocollage adrienverge
pipenv churchyard ksurma torsava
pipx music
pluma raveit65 robert
policycoreutils dwalsh lvrabec mgrepl pcmoore plautrba vmojzis
pyflowtools stingray
pyke spot
pylint bcl limb lupinix mrunge orion
pyppd twaugh
pystatgrab fab heliocastro potty slankes ttorling
pysvn barryascott ravenoak sgallagh
python-IPy kevin
python-PyPDF2 aarem
python-aiozeroconf fab
python-ansi sdyroff
python-auth-credential lcons
python-bintrees rkuska
python-cmdln averi
python-cpio jamatos kevin mbacovsk
python-cram ktdreyer
python-cups twaugh zdohnal
python-cypy ankursinha
python-dbf jujens
python-dirq lcons
python-dmidecode dsommers sagitter
python-empy filiperosset
python-firehose athoscr dmalcolm
python-fontconfig melmorabity
python-gccinvocation dmalcolm
python-gzipstream msuchy
python-iowait aekoroglu
python-ipgetter fab
python-junitxml limb
python-jupyter-polymake jjames
python-kmod grover mlombard
python-logging-tree fab ralph
python-logutils jcaratzas kevin ralph
python-m2r nforro
python-messaging lcons
python-mne ankursinha ignatenkobrain
python-modestmaps cottsay
python-mplcursors qulogic
python-multi_key_dict cottsay
python-nibabel ankursinha ignatenkobrain
python-nmap fab
python-optcomplete chedi
python-pendulum fab
python-pikepdf qulogic zdohnal
python-py9p psavelye
python-pyaes peter
python-pycxx barryascott hobbes1069 mrunge zultron
python-pyfim ankursinha
python-pylibravatar kevin ralph
python-pynest2d churchyard
python-pyoptical ankursinha ignatenkobrain
python-pyzolib cottsay
python-rpdb bowlofeggs jcline
python-rpmfluff dshea ignatenkobrain jhutar jlaska
python-schedutils jkastner
python-simplevisor lcons
python-slip nphilipp
python-smbpasswd rebus s4504kr
python-sphinxcontrib-openapi fbo zuul
python-sysv_ipc amoralej
python-termcolor mikelo2 mrunge
python-uinput bytehackr
python-usort dcavalca
python-visionegg-quest ankursinha ignatenkobrain
python-whois suve
python-yamlordereddictloader greghellings
python3-cangjie bochecha
python3-script jorti
python3-simpletal thm
pythran churchyard
qpid-dispatch irina kpvdr mcressman tross
quodlibet hannes
rabbitvcs cicku limb nushio pwalter
realtime-tests jkacur
rebase-helper nforro phracek
recode opohorel orion ppisar
rednotebook fab kathenas mikedep333
rpm ffesti ignatenkobrain mdomonko mjw packaging-team pmatilai
pmoravco vmukhame
rteval jkacur
rubber sergiopr
sanlock cfeist fsimonce nsoffer teigland
setroubleshoot dwalsh mgrepl pcmoore plautrba vmojzis
simple-ccsm jskarvad
sip rdieter than
sos bmr sbonazzo
soundconverter hobbes1069 pranvk
sssd abbra asn atikhonov jhrozek mzidek pbrezina sbose simo
stp amdunn jjames
strongswan dcavalca mzabaluev pavlix pemensik pwouters salimma
subversion jorton rlescak
suricata jtaylor sgrubb
sword cicku deji greghellings jkastner
syslog-ng czanik jpo mrunge
system-config-printer jpopelka twaugh zdohnal
systemd-coredump-python stevetraylen zbyszek
targetd grover tasleson
tbb jjames jkastner jwakely trodgers
tcl-snack spot
telepathy-logger rdieter rishi
tlsh zbyszek
torbrowser-launcher limb pjp
trace-cmd ersin jmarchan jstanley zsun
tuna jkacur jkastner
tuned jskarvad jzerdik olysonek pknirsch
ufw kkofler robert
urjtag jkastner scottt
uwsgi ertzing
vips agoode
volume_key huzaifas jkucera mitr
wiki2beamer sdyroff
wordxtr pnemade
workrave nonamedotc yselkowitz
xen jforbes myoung
xpra jgu sagitter sergiomb
ydiff netvor
yokadi fab
zbar firemanxbr limb mchehab slaanesh
zinnia liangsuilong pwu
Packages by maintainer:
aarem gnumeric python-PyPDF2
abbra libldb libtalloc libtdb libtevent sssd
adev dmlite gfal2-python
adrienverge photocollage
aegorenk i2c-tools
aekoroglu python-iowait
agoode vips
ahajkova gdb
ajax i2c-tools
alexl GConf2 gnome-doc-utils gtk2
alexlan graphviz
amdunn stp
amigadave libproxy libxml2
amoralej python-sysv_ipc
anaconda-maint anaconda
andreamanzi dmlite gfal2-python
ankursinha MUSIC libneurosim python-cypy python-mne python-nibabel python-pyfim
python-pyoptical python-visionegg-quest
asn libldb libtalloc libtdb libtevent pam_wrapper sssd
astokes livecd-tools
athoscr python-firehose
atikhonov sssd
averi python-cmdln
avigne kicad
barryascott pysvn python-pycxx
bcl livecd-tools pylint
belegdol gnumeric
blarsen babeltrace gdb
bmr sos
bochecha python3-cangjie
bowlofeggs python-rpdb
bpostle hugin
brouhaha cvc4
bruno 0ad livecd-tools
buc GConf2
bytehackr python-uinput
caillon GConf2 gnome-doc-utils gtk2
caolanm GConf2 gnome-doc-utils gtk2
carlwgeorge mpv
cathay4t nispor nmstate
cfeist sanlock
chedi python-optcomplete
cheeselee Zim
churchyard libarcus libsavitar pipenv python-pynest2d pythran
cicku hugin libproxy rabbitvcs sword
clalance libssh2-python
cottsay python-modestmaps python-multi_key_dict python-pyzolib
crvi gnome-activity-journal
cstratak numpy
cwickert maildirproc
czanik syslog-ng
danw libproxy
daveisfera grass
dcavalca dnf-plugin-perfmetrics libkdumpfile python-usort strongswan
dcbw libnl3
defolos deltarpm
deji mathgl sword
denisarnaud hugin
devos link-grammar
devrim grass
dmach kobo libsolv
dmalcolm python-firehose python-gccinvocation
dmarlin lttng-ust
drago01 iotop
dshea python-rpmfluff
dsommers python-dmidecode
dwalsh libselinux libsemanage policycoreutils setroubleshoot
ellert lhapdf
ersin trace-cmd
ertzing uwsgi
evgenyz openscap
fab awake btest libprelude pystatgrab python-aiozeroconf python-ipgetter
python-logging-tree python-nmap python-pendulum rednotebook yokadi
fbo python-sphinxcontrib-openapi
ffesti rpm
ffmancera nispor nmstate
filiperosset python-empy
firemanxbr zbar
fkluknav gpgme
fnux cdist
frantisekz mozjs102 mozjs78 mozjs91
fsimonce sanlock
fujiwara ibus ibus-anthy
gbitzes dmlite
gd libldb libtalloc libtdb libtevent
germano lensfun
gferon libarcus libsavitar
grahamwhiteuk lensfun
greenscientist babeltrace lttng-ust
greghellings python-yamlordereddictloader sword
grover distcc python-kmod targetd
hannes quodlibet
heliocastro pystatgrab
hguemar omniORB
hobbes1069 SoapySDR libftdi netgen-mesher python-pycxx soundconverter
huff livecd-tools
huzaifas gnumeric volume_key
iboukris libldb libtalloc libtdb libtevent
ignatenkobrain libsolv ntpsec python-mne python-nibabel python-pyoptical
python-rpmfluff python-visionegg-quest rpm
irina qpid-dispatch
isimluk gpgme openscap openscap-daemon
jamatos python-cpio
jamesni fonts-tweak-tool
jankratochvil gdb
jcapik i2c-tools
jcaratzas python-logutils
jcerny openscap openscap-daemon
jcline python-rpdb
jforbes xen
jgu xpra
jhrozek keycloak-httpd-client-install lasso libldb libtalloc libtdb
libtevent pam_wrapper sssd
jhutar python-rpmfluff
jirka libnl3
jjames cryptominisat cvc4 ocaml-pyml python-jupyter-polymake stp tbb
jkacur realtime-tests rteval tuna
jkastner libfreenect python-schedutils sword tbb tuna urjtag
jkonecny anaconda
jkucera gpgme volume_key
jlaska python-rpmfluff
jmarchan trace-cmd
jmracek libsolv
jonathanspw dnsviz grass
jorti python3-script
jorton i2c-tools subversion
jpo syslog-ng
jpopelka system-config-printer
jreznik kig
jridky hplip
jrohel libsolv
jsbackus brd
jskarvad ccsm fusion-icon graphviz simple-ccsm tuned
jspaleta bamf dee gpodder numpy
jstanley trace-cmd
jtaylor suricata
jtluka lnst
jujens python-dbf
jussilehtola libcint
jwakely tbb
jzerdik i2c-tools tuned
kalev 0ad anjuta mozjs78
kathenas libfreenect rednotebook
katzj livecd-tools
kdudka csmock
keiths babeltrace gdb
kevin nftables python-IPy python-cpio python-logutils python-pylibravatar
kevinb gdb
kkeithle glusterfs nfs-ganesha
kkofler kig ufw
kpvdr qpid-dispatch
krege mathgl
ksurma pipenv
ktdreyer babeltrace lttng-ust python-cram
kwizart libfreenect
lcons python-auth-credential python-dirq python-messaging python-simplevisor
liangsuilong zinnia
liangwen12year nmstate
limb anjuta distcc gnome-doc-utils gnucash gpodder libprelude
link-grammar numpy pylint python-junitxml rabbitvcs torbrowser-launcher zbar
lkundrak insight kicad
lslebodn libldb libtalloc libtdb libtevent
lupinix astrometry pylint
lvrabec policycoreutils
m4rtink anaconda
matyc openscap openscap-daemon
mbacovsk python-cpio
mbarnes GConf2 gtk2
mchehab zbar
mclasen gtk2
mcressman qpid-dispatch
mcrha libpst
mdbooth hivex
mdomonko rpm
mdomsch SoapySDR
melmorabity python-fontconfig
mgrepl libsemanage policycoreutils setroubleshoot
mhlavink iotop
mikedep333 rednotebook
mikelo2 python-termcolor
miminar i2c-tools
mipatras gfal2-python
mitr volume_key
mjeanson babeltrace babeltrace2 lttng-ust
mjw rpm
mkasik gtk2
mlichvar ntpsec
mlombard python-kmod
mmarhefk openscap
moezroy anjuta
monnerat insight
mrc0mmand gpgme
mrunge pylint python-pycxx python-termcolor syslog-ng
msuchy python-gzipstream
mtasaka cairo-dock-plug-ins gphotoframe mirage
music pipx
mycae mathgl
myoung xen
mzabaluev strongswan
mzidek sssd
ndim csound
neteler grass
netvor ydiff
nforro python-m2r rebase-helper
ngompa appliance-tools libsolv livecd-tools manafirewall mpv
nonamedotc workrave
notting gnucash
nphilipp lensfun python-slip
npmccallum libproxy
nsoffer sanlock
nushio rabbitvcs
ohaessler Zim lensfun
okeeble dmlite
olichtne lnst
oliver grass
olysonek i2c-tools tuned
opohorel recode
orion numpy oct2spec pylint recode
packaging-team rpm
pavlix strongswan
pbrezina sssd
pcmoore libselinux libsemanage policycoreutils setroubleshoot
pcpa 0ad brial
pemensik dnsviz ldns strongswan
peter python-pyaes
petersen libkkc
pfilipen libldb libtalloc libtdb libtevent
phracek rebase-helper
phuang ibus ibus-anthy
pingou fedora-gather-easyfix
pjp torbrowser-launcher
pknirsch tuned
pkratoch libsolv
plautrba libselinux libsemanage policycoreutils setroubleshoot
pmatilai rpm
pmoravco rpm
pnemade wordxtr
potty pystatgrab
ppisar recode
pranvk soundconverter
psavelye python-py9p
psutter nftables
pvrabec openscap
pwalter 0ad b43-tools rabbitvcs
pwouters ldns libpwquality libreswan strongswan
pwu zinnia
qulogic python-mplcursors python-pikepdf
rakesh anjuta
ralph python-logging-tree python-logutils python-pylibravatar
raveit65 pluma
ravenoak pysvn
rcritten lasso
rdieter eric gpgme kig lensfun numpy sip telepathy-logger
rebus python-smbpasswd
rhughes GConf2 gnome-doc-utils gtk2
rishi telepathy-logger
rjones hivex libdnet libnbd
rkuska python-bintrees
rlescak ldns subversion
rmattes flann libfreenect
robert baresip libdnet libftdi pluma ufw
rocha dmlite
rohanpm kobo
rpazdera lnst
rstrode gnome-doc-utils gtk2
rvykydal anaconda
s4504kr python-smbpasswd
sagitter PyQt4 python-dmidecode xpra
salimma bamf libkdumpfile strongswan
saprasad libreswan
sbonazzo sos
sbose sssd
sbueno anaconda libblockdev
scottt urjtag
sdyroff python-ansi wiki2beamer
senderek cryptlib
sergiodj gdb
sergiomb xpra
sergiopr rubber
sgallagh libldb libtalloc libtdb libtevent pysvn
sgrubb audit libcap-ng suricata
sharkcz libftdi
simo lasso libldb libtalloc libtdb libtevent sssd
simonm gfal2-python
slaanesh zbar
slankes pystatgrab
smani netgen-mesher omniORB omniORBpy
spot dee pyke tcl-snack
ssp GConf2 gnome-doc-utils gtk2
stevenfalco kicad
stevetraylen systemd-coredump-python
stingray pyflowtools
suchakra babeltrace lttng-ust
suve python-whois
svashisht csmock
tagoh fonts-tweak-tool
tasleson targetd
tbzatek libblockdev
teigland sanlock
tgraf libnl3
thaller libnl3
thalman keycloak-httpd-client-install
than PyQt4 sip
thl mailnag
thm etckeeper python3-simpletal
thofmann clingo
thozza ldns
thunderbirdtr manafirewall
till nmstate
tkorbar hplip
tmraz libpwquality
tnorth kicad
tomspur numpy
torsava pipenv
totol libprelude libpreludedb
trix lensfun
trodgers tbb
tross qpid-dispatch
ttomecek numpy
ttorling pystatgrab
twaugh hplip pyppd python-cups system-config-printer
ueno marisa
veillard libxml2
vmojzis libselinux libsemanage policycoreutils setroubleshoot
vmukhame rpm
vokac dmlite
volter grass
vpodzime anaconda libblockdev
vpolasek openscap
vponcova anaconda
vpv gpodder
vtrefny libblockdev
walters GConf2
wef gjots2
wsato openscap openscap-daemon
xvitaly mpv
yanqiyu onboard
yselkowitz workrave
zbyszek systemd-coredump-python tlsh
zdohnal hplip python-cups python-pikepdf system-config-printer
zsun trace-cmd
zultron python-pycxx
zuul python-sphinxcontrib-openapi
--
Miro Hrončok
--
Phone: +420777974800
IRC: mhroncok
4 months, 3 weeks