|
Any | Backport Request | Very Low | Very Low | Icetray for Iceape-uxp | Closed | |
Task Description
This already works for it, but I just thought I would request it to be put in.
|
|
Any | Bug Report | Very Low | Very Low | [ntfs-3g] ldconfig: File [...] is empty, not checked | Closed | |
Task Description
Error detected in ntfs-3g.
ldconfig: File /usr/lib/libntfs-3g.so is empty, not checked.
ldconfig: File /usr/lib/libntfs-3g.so.88 is empty, not checked.
ldconfig: File /usr/lib/libntfs-3g.so.88.0.0 is empty, not checked.
|
|
Stable | Bug Report | Very Low | Very Low | Gajim "Unable to run gpg - it may not be available" | Closed | |
Task Description
Description:
Gajim XMPP Client wont start after installing python2-gnupg.
Additional info: * package version(s)
community/python2-gnupg 0.4.0-2
extra/gajim 0.16.8-1.hyperbola2
* config and/or log files etc.
/usr/lib/python2.7/site-packages/gajim/common/gajim.py
Steps to reproduce:
With Gajim working is not possible to assign an OpenPGP key because it needs a wrapper. Therefore python2-gnupgp package is needed. But after installing python2-gnupgp, Gajim doesn’t start. The following output is displayed from the console:
07/21/2018 18:00:41 (E) gajim.c.gnupg Unable to run gpg - it may not be available. Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/gnupg.py", line 757, in __init__
p = self._open_subprocess(["--version"])
File "/usr/lib/python2.7/site-packages/gnupg.py", line 832, in _open_subprocess
startupinfo=si)
File "/usr/lib/python2.7/subprocess.py", line 394, in __init__
errread, errwrite)
File "/usr/lib/python2.7/subprocess.py", line 1047, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory Traceback (most recent call last):
File "gajim.py", line 513, in <module>
interface.run()
File "/usr/lib/python2.7/site-packages/gajim/gui_interface.py", line 2704, in run
self.roster = roster_window.RosterWindow()
File "/usr/lib/python2.7/site-packages/gajim/roster_window.py", line 6611, in __init__
connection_zeroconf.ConnectionZeroconf(gajim.ZEROCONF_ACC_NAME)
File "/usr/lib/python2.7/site-packages/gajim/common/zeroconf/connection_zeroconf.py", line 68, in __init__
CommonConnection.__init__(self, name)
File "/usr/lib/python2.7/site-packages/gajim/common/connection.py", line 150, in __init__
self.gpg = gpg.GnuPG()
File "/usr/lib/python2.7/site-packages/gajim/common/gpg.py", line 37, in __init__
gnupg.GPG.__init__(self, gpgbinary=gajim.GPG_BINARY, use_agent=use_agent)
File "/usr/lib/python2.7/site-packages/gnupg.py", line 761, in __init__
raise OSError(msg)
OSError: Unable to run gpg - it may not be available.
After doing some search, the issue is that gajim.py is trying to call ‘gpg’ as ‘gpg1’.
# grep -n GPG_BINARY /usr/lib/python2.7/site-packages/gajim/common/gajim.py 162:GPG_BINARY = ‘gpg1’
By replacing ‘gpg’ instead of ‘gpg1’, Gajim will start normally with OpenPGP feature available.
Maybe a newer revision of python2-gnupg is required or maybe a small patch in the current package.
|
|
Stable | Bug Report | Very Low | Very Low | [spamassassin] has different directory permissions than ... | Closed | |
Task Description
Description: The /usr/sbin directory in spamassassin has permissions 755 https://git.hyperbola.info:50100/packages/extra.git/tree/spamassassin/PKGBUILD#n88
And ‘filesystem’ sets it to 750 https://git.hyperbola.info:50100/packages/core.git/tree/filesystem/PKGBUILD#n135
So when installing spamassassin, pacman throws a warning
warning: directory permissions differ on /usr/sbin/
filesystem: 750 package: 755
Additional info: * spamassassin 3.4.2-1.hyperbola2
|
|
Stable | Bug Report | Very Low | Very Low | [postfix] has different directory permissions than 'fil... | Deferred | |
Task Description
Description: The /usr/sbin directory in postfix has permissions 755 https://git.hyperbola.info:50100/packages/extra.git/tree/postfix/PKGBUILD#n115
And ‘filesystem’ sets it to 750 https://git.hyperbola.info:50100/packages/core.git/tree/filesystem/PKGBUILD#n135
So when installing postfix, pacman throws a warning
warning: directory permissions differ on /usr/sbin/
filesystem: 750 package: 755
Additional info: * postfix-3.2.2-1.hyperbola6
|
|
Stable | Bug Report | Very Low | Very Low | [fail2ban] update dovecot failregex to support verbose ... | Unconfirmed | |
Task Description
Description: The /etc/fail2ban/filter.d/dovecot.conf file has a failregex with the following:
^%(__prefix_line)s(?:auth|auth-worker\(\d+\)): (?:pam|passwd-file)\(\S+,<HOST>\): unknown user\s*$
and works with things like:
Month day time hostname dovecot: auth: passwd-file(user@domain.com,IP): unknown user
but with verbosity enabled in Dovecot, this output looks like this:
Month day time hostname dovecot: auth: passwd-file(user@domain.com,IP): unknown user (given password: password)
and in this case it doesn’t work, but it does if we fix the failregex if we replace it with:
^%(__prefix_line)s(?:auth|auth-worker\(\d+\)): (?:pam|passwd-file)\(\S+,<HOST>\): unknown user( \(given password: \S*\))?\s*$
with this new expression, it works with and without verbosity
And regarding postfix, to make it work correctly I “backported” some pieces from newest failregex:
/etc/fail2ban/postfixr-rbl.conf:
^%(__prefix_line)sNOQUEUE: reject: RCPT from \S+\[<HOST>\]: [45]54 [45]\.7\.1 Service unavailable; Client host \[\S+\] blocked using .* from=<\S*> to=<\S+> proto=ESMTP helo=<\S*>$
/etc/fail2ban/postfix.conf: (second failregex)
^%(__prefix_line)sNOQUEUE: reject: RCPT from \S+\[<HOST>\]: 45[04] 4\.7\.1 Client host rejected: cannot find your (reverse )?hostname, (\[\S*\]); from=<\S*> to=<\S+> proto=ESMTP helo=<\S*>$
I can create a patch if you want. Note that I haven’t tested all filters, some others may also need some rework
Additional info: * fail2ban-0.9.6-2.hyperbola3
|
|
Testing | Bug Report | Very Low | Very Low | [Hyperbola GNU/Linux-libre 0.4] [wine-stable] doesn't r ... | Closed | |
Task Description
The title says that above if without having required library dependencies for most of them under 32-bit.
|
|
Any | Feature Request | Very Low | Very Low | [ttf-iosevka] add Iosevka font | Closed | |
Task Description
Iosevka wins a poll about most beautiful fonts on reddit (/r/linux). This font is very similar than Droid Sans (Official Google Font) with many advantages:
1 - Has 5 types modes (lightest, light, normal, bold, super bold) 2 - Condensed and big sizes (perfect for visual impairments users) 3 - Very Legible on i3-wm, Sway, Conky bar 4 - OTF license (Freedom license)
Iosevka is already on AUR, but create a official package prevent bug or proprietary third parties apps (Yaourt, etc) be installed by beginners Hyperbola users.
Official Site: https://github.com/be5invis/Iosevka
On AUR: https://aur.archlinux.org/packages/ttf-iosevka
|
|
Any | Feature Request | Low | Very Low | [openrc] services should be added to runlevels through ... | Closed | |
Task Description
The OpenRC services should be added to runlevels through installing process instead be forced each time when openrc package is upgraded, because some sysadmins need customize them and are useful for Xen environments.
Example:
rc-update
... |
agetty.tty1 | default
agetty.tty10 | default
agetty.tty11 | default
agetty.tty12 | default
agetty.tty2 | default
agetty.tty3 | default
agetty.tty4 | default
agetty.tty5 | default
agetty.tty6 | default
agetty.tty7 | default
agetty.tty8 | default
agetty.tty9 | default
... |
swap | boot
... |
rc-update del swap boot
rc-update del agetty.tty{12,11,10,9,8,7,6,5,4,3,2,1}
rc-update add agetty.tty{1,2,3} system # "system" runlevel runs after "default" runlevel
rc-update
... |
agetty.tty1 | system
agetty.tty10 | system
agetty.tty11 | system
agetty.tty12 |
agetty.tty2 |
agetty.tty3 |
agetty.tty4 |
agetty.tty5 |
agetty.tty6 |
agetty.tty7 |
agetty.tty8 |
agetty.tty9 |
... |
pacman -Sy openrc
rc-update
... |
agetty.tty1 | default system
agetty.tty10 | default system
agetty.tty11 | default system
agetty.tty12 | default
agetty.tty2 | default
agetty.tty3 | default
agetty.tty4 | default
agetty.tty5 | default
agetty.tty6 | default
agetty.tty7 | default
agetty.tty8 | default
agetty.tty9 | default
... |
swap | boot
... |
|
|
Any | Feature Request | Very Low | Very Low | Dreamchess package wanted | Closed | |
Task Description
this package is under gpl3. It is the most reasonable chess game because it can be easy or hard depending on your preference.
|
|
Any | Update Request | Very Low | Very Low | [youtube-viewer] minor fix: function API name | Closed | |
Task Description
Description:
Fixes[0] a small error in the name API function extract.
Replaced name `indivious` to `invidious`
Attached[1] patch update
- [0]:https://github.com/arankaren/youtube-viewer/commit/a464c878579f22c1cf7e5e54897c5ecaf27e333e
- [1]:https://paste.debian.net/plain/1091395
|
|
Any | Backport Request | Very Low | Low | Self Destructing Cookies for Iceape | Closed | |
Task Description
I would like this to be available for Iceape as well V4.13
|
|
Any | Backport Request | Very Low | Low | Ublock Origin for Iceape | Closed | |
Task Description
The version I desire is this: 1.16.4.6
|
|
Any | Backport Request | Very Low | Low | elogind package | Closed | |
Task Description
Description: Was wondering if there is any issue in terms of freedom andor privacy for the inclusion of elogind? Feedback will be apreciated Cheers.
this was recently implemented in gentoo.
source: https://libregit.org/i3_relativism/elogind
references: https://blogs.gentoo.org/leio/2019/03/26/gnome-3-30/#comment-9555 https://forums.gentoo.org/viewtopic-t-1094796.html
contact gentoo developer for help in implementation: https://wiki.gentoo.org/wiki/User:Leio/TODO
|
|
Any | Bug Report | Medium | Low | firejail: mpv.profile fails to work | Closed | |
Task Description
Users trying to use firejail against mpv experience errors such as:
[ytdl_hook] AVideo failed, trying to play URL directly ... [ffmpeg] tls: The TLS connection was non-properly terminated. Failed to recognize file format.
The error is caused by not having avideo whitelisted in firejail.
|
|
Stable | Bug Report | Very Low | Low | [lightdm] Wrong locale displayed | Closed | |
Task Description
On a fresh install, the system wide locale is not working with lightdm. According to https://wiki.archlinux.org/index.php/LightDM#Wrong_locale_displayed
One needs to set the LANG variable in /etc/environment to have lightdm in desired language.
Example :
LANG=pt_PT.utf8
Could it be possible to implement a mechanism to automatically add the LANG variable set in /etc/locale.conf to /etc/environement when one install lightdm ?
It is not technically a bug but it could be handy to new users.
|
|
Any | Bug Report | Very Low | Low | [remmina] impossible to connect to RDP servers after re ... | Closed | |
Task Description
remmina dev ask to inform package maintainer, here is the discussion:
https://github.com/FreeRDP/Remmina/issues/1513#issuecomment-373128671
Would be nice to update or add a patch if available
|
|
Stable | Bug Report | Very Low | Low | Mupen64plus acts buggy | Closed | |
Task Description
the screen moves back and forth from left to right randomly, no matter what I do, any games any adapters do not work.
I wanted to have some fun with some old games...
Has anyone used mupen64plus successfully on hyperbola 0.2? I cannot get it to work without being completely confusing for the reasons I have mentioned and also, the glaring of the screen. Which only happens with mupen64plus...
|
|
Any | Bug Report | Very Low | Low | [openrc] agetty.tty loads in default runlevel only and ... | Closed | |
Task Description
agetty.tty services need be loaded in default and nonetwork runlevels, not default runlevel only.
Example:
agetty.tty1 | default nonetwork # it's correct, since **agetty.tty1** should be enabled in **nonetwork** runlevel for specific cases such as a maintenance.
agetty.tty1 | default # it's wrong, since it contains **default** runlevel only
agetty.tty symlinks from /etc/init.d/ need be linked to agetty instead of /etc/init.d/agetty.
Example:
agetty.tty1 -> /etc/init.d/agetty # it's a valid symlink, however is wrong because should be linked to agetty directly
agetty.tty1 -> agetty # correct symlink
|
|
Any | Bug Report | Very High | Low | [filesystem] the hyperbola manual (/usr/share/man/man7/ ... | Closed | |
Task Description
The hyperbola manual (/usr/share/man/man7/hyperbola.7.gz), the command “ln” is inverted:
ln -s /etc/localtime /usr/share/zoneinfo/Europe/Paris # wrong
ln -s /usr/share/zoneinfo/Europe/Paris /etc/localtime # correct
|
|
Any | Bug Report | Low | Low | [x11vnc] service contains error: "Service 'x11vnc' need ... | Closed | |
Task Description
x11vnc service has been imported from Gentoo, however it forces use xdm service when it should be optional since there are users don’t like use xdm to run DMs. Also, Hyperbola contains another services alternatives such as gdm, lightdm, lxdm, sddm and slim to run directly without xdm.
|
|
Any | Bug Report | Very Low | Low | [gimp] [gegl] Module '/usr/lib/gegl-0.3/lens-correct.so ... | Closed | |
Task Description
admin→ gimp IMG_20170909_153350828.jpg GEGL-Message: Module ‘/usr/lib/gegl-0.3/lens-correct.so’ load error: liblensfun.so.1: cannot open shared object file: No such file or directory GEGL-Message: Module ‘/usr/lib/gegl-0.3/matting-levin.so’ load error: libumfpack.so.5: cannot open shared object file: No such file or directory
(gimp:12519): GLib-GObject-WARNING **: g_object_set_valist: object class ‘GeglConfig’ has no property named ‘cache-size’
Those are errors I get when running Gimp.
|
|
Any | Bug Report | Defer | Low | [texlive-most] Cannot remove from system | Closed | |
Task Description
admin-> sudo pacman -R texlive-most
checking dependencies...
:: ghostscript optionally requires texlive-core: needed for dvipdf
:: inkscape optionally requires texlive-core: latex formulas
Packages (15) texlive-bibtexextra-2016.43765-1 texlive-core-2016.43757-1.hyperbola2 texlive-fontsextra-2016.43763-1.hyperbola2 texlive-formatsextra-2016.41438-3 texlive-games-2016.43415-1
texlive-genericextra-2016.43605-1 texlive-htmlxml-2016.43769-1 texlive-humanities-2016.43711-1 texlive-latexextra-2016.43768-1.hyperbola2 texlive-music-2016.43375-1
texlive-pictures-2016.43767-1 texlive-plainextra-2016.43137-1 texlive-pstricks-2016.43710-1 texlive-publishers-2016.43764-1 texlive-science-2016.43747-1
Total Removed Size: 1300.90 MiB
:: Do you want to remove these packages? [Y/n] y
:: Processing package changes...
( 1/15) removing texlive-science [######################################################################] 100%
( 2/15) removing texlive-publishers [######################################################################] 100%
( 3/15) removing texlive-pstricks [######################################################################] 100%
( 4/15) removing texlive-plainextra [######################################################################] 100%
( 5/15) removing texlive-pictures [######################################################################] 100%
( 6/15) removing texlive-music [######################################################################] 100%
( 7/15) removing texlive-humanities [######################################################################] 100%
( 8/15) removing texlive-latexextra [######################################################################] 100%
( 9/15) removing texlive-htmlxml [######################################################################] 100%
(10/15) removing texlive-genericextra [######################################################################] 100%
(11/15) removing texlive-games [######################################################################] 100%
(12/15) removing texlive-formatsextra [######################################################################] 100%
(13/15) removing texlive-fontsextra [######################################################################] 100%
(14/15) removing texlive-bibtexextra [######################################################################] 100%
(15/15) removing texlive-core [######################################################################] 100%
warning: /etc/texmf/web2c/fmtutil.cnf saved as /etc/texmf/web2c/fmtutil.cnf.pacsave
:: Running post-transaction hooks...
(1/3) Updating TeXLive filename database...
warning: kpathsea: configuration file texmf.cnf not found in these directories: /usr/bin:/usr/bin/share/texmf-local/web2c:/usr/bin/share/texmf-dist/web2c:/usr/bin/share/texmf/web2c:/usr/bin/texmf-local/web2c:/usr/bin/texmf-dist/web2c:/usr/bin/texmf/web2c:/usr:/usr/share/texmf-local/web2c:/usr/share/texmf-dist/web2c:/usr/share/texmf/web2c:/usr/texmf-local/web2c:/usr/texmf-dist/web2c:/usr/texmf/web2c://texmf-local/web2c:/://share/texmf-local/web2c://share/texmf-dist/web2c://share/texmf/web2c://texmf-local/web2c://texmf-dist/web2c://texmf/web2c.
/usr/share/libalpm/scripts/mktexlsr: line 4: /usr/bin/mtxrun: No such file or directory
(2/3) Updating TeXLive format files...
cp: cannot stat 'usr/share/texmf-dist/web2c/fmtutil-hdr.cnf': No such file or directory
cat: 'var/lib/texmf/arch/installedpkgs/*.fmts': No such file or directory
/usr/share/libalpm/scripts/texlive-fmtutil: line 18: /usr/bin/fmtutil-sys: No such file or directory
error: command failed to execute correctly
(3/3) Updating TeXLive font maps...
cp: cannot stat 'usr/share/texmf-dist/web2c/updmap-hdr.cfg': No such file or directory
cat: 'var/lib/texmf/arch/installedpkgs/*.maps': No such file or directory
/usr/share/libalpm/scripts/texlive-updmap: line 12: /usr/bin/updmap-sys: No such file or directory
error: command failed to execute correctly
[~]
|
|
Testing | Bug Report | Medium | Low | [iceweasel-uxp] strange bug in the FindBar when a phras ... | Closed | |
Task Description
Description: There is a strange bug (white rectangle) in the FindBar when a phrase isn’t found.
Additional info: * package version(s): 52.9.0_20180601-3
Steps to reproduce: Go to Edit > Find
Then put a phrase in the FindBar to search it in any page, if it isn’t found, appears a strange “white rectangle” covering the phrase.
|
|
Testing | Bug Report | Very Low | Low | [iceweasel-uxp] minor issues in "About Iceweasel-UXP" w ... | Closed | |
Task Description
Description: “About Iceweasel-UXP” window contains some minor issues to be fixed:
Additional info: * package version(s): 52.9.0_20180601-3
Steps to reproduce: Go to Help > About Iceweasel-UXP
|
|
Any | Bug Report | Very Low | Low | [lbreakout2]: Write permission for '/var/games/lbreakou ... | Closed | |
|
|
Testing | Bug Report | Medium | Low | [iceweasel-uxp] XML Parsing Error: undefined entity in ... | Closed | |
|
|
Testing | Bug Report | Medium | Low | [iceweasel-uxp] XML Parsing Error: undefined entity in ... | Closed | |
|
|
Testing | Bug Report | Medium | Low | [xf86-video-intel] context menu not being highlighted i ... | Closed | |
|
|
Stable | Bug Report | Very Low | Low | [iceweasel-uxp] info box not translated | Closed | |
|
|
Any | Bug Report | Medium | Low | [octopi] contains systemd unit file | Closed | |
|
|
Stable | Bug Report | Very Low | Low | [octopi][octopi-notifier] "Aborting notifier as 'pacman ... | Closed | |
|
|
Any | Bug Report | Low | Low | [usbutils] lsusb does not list device names | Closed | |
|
|
Any | Bug Report | Very Low | Low | [zathura-pdf-poppler] unable to process apostrophes di ... | Closed | |
|
|
Any | Bug Report | Low | Low | [emacs-nox] uses "nox" suffix | Closed | |
|
|
Any | Bug Report | Low | Low | [erlang-nox] uses "nox" suffix | Closed | |
|
|
Any | Bug Report | Low | Low | [qbittorrent-nox] uses "nox" suffix | Closed | |
|
|
Any | Bug Report | Low | Low | [crystal] error build Invidious | Closed | |
|
|
Stable | Bug Report | Very Low | Low | GNOME cannot lock screen while using LightDM | Closed | |
|
|
Any | Bug Report | Very Low | Low | marble-qt: doesn't look like a valid Marble plugin: "/ ... | Closed | |
|
|
Any | Bug Report | Very Low | Low | [openssl-1.0] Newer version required for plowshare MEGA ... | Closed | |
|
|
Any | Bug Report | Very Low | Low | [pacman] warnings after migration | Closed | |
|
|
Stable | Bug Report | Very Low | Low | Chemical uknown media types | Closed | |
|
|
Stable | Bug Report | Very Low | Low | [autofs]: default configuration is /etc/auto.master ins ... | Closed | |
|
|
Any | Bug Report | Low | Low | [xdg-utils] doesn't work with -uxp applications and has ... | Closed | |
|
|
Any | Bug Report | Very Low | Low | Xenocara xbacklight bug | Closed | |
|
|
Any | Bug Report | Very Low | Low | lightdm/lxdm bug | Closed | |
|
|
Stable | Bug Report | Very Low | Low | [dhcpcd-ui] Adding icons from "Network-Manager Applet" | Closed | |
|
|
Any | Bug Report | Very Low | Low | [hypervideo] "HTTP Error 403: Forbidden" error on some ... | Closed | |
|
|
Any | Bug Report | Very Low | Low | [Hyperbola GNU/Linux-libre 0.4] Testing Lumina - lumina ... | Closed | |
|