All Projects

Project Category  asc Task Type Priority Severity Summary Status Progress
PackagesAnyFeature RequestVery HighCritical [openrc] some init scripts are forced to load in certai ...Closed
100%
Task Description

Description:

Some init scrips are forced to load in certain runlevels by default (eg. boot) when 
OpenRC is upgraded. Also some of them are autoloaded by other init scripts.
It isn't good for virtualization environments like chroot that doesn't require it to
work.
These files need be removed:
* /etc/runlevels/boot/binfmt (optional)
* /etc/runlevels/boot/fsck (autoloaded from "root" init script)
* /etc/runlevels/boot/localmount (autoloaded from "bootmisc" init script)
* /etc/runlevels/boot/procfs (optional, mount "binfmt_misc" only)
* /etc/runlevels/boot/termencoding (autoloaded from "keymaps" init script)
* /etc/runlevels/default/netmount (optional)
* /etc/runlevels/shutdown/savecache (optional)
* /etc/runlevels/sysinit/devfs (autoload from "udev" init script)
* /etc/runlevels/sysinit/sysfs (autoload from "udev" init script)

Additional info:

openrc 0.28-14
$ pacman -Si openrc
Repository      : core
Name            : openrc
Version         : 0.28-14
Description     : A dependency based init system that works with the system provided init program
Architecture    : x86_64
URL             : https://wiki.gentoo.org/wiki/Project:OpenRC
Licenses        : BSD2
Groups          : None
Provides        : None
Depends On      : psmisc  pam
Optional Deps   : netifrc: network interface management scripts
                  networkmanager: network connection manager and user applications
Conflicts With  : None
Replaces        : None
Download Size   : 196.71 KiB
Installed Size  : 1767.00 KiB
Packager        : André Silva <emulatorman@hyperbola.info>
Build Date      : Mon 07 May 2018 03:54:42 PM -03
Validated By    : MD5 Sum  SHA-256 Sum  Signature

Steps to reproduce:

Re-install and/or upgrade the OpenRC package
PackagesAnySecurity IssueVery HighCritical [openrc] use procps-ng's "sysctl" by default instead of ...Closed
100%
Task Description

Description:

Use procps-ng's "sysctl" by default instead of inetutils's "hostname" for
hostname support.

Since [inetutils] is an extra dependency for openrc, it
contains insecure commands like: ftp/rcp/rlogin/rsh/talk/telnet
For security reasons, procps-ng should be the tool to handle hostname
configuration through hostname init script because is a base package.

Additional info:

openrc 0.28-14

/etc/init.d/hostname


-       hostname "$h"
+       case $(uname -s) in
+               GNU/Linux|Linux)
+                       sysctl -qw kernel.hostname="$h"
+                       ;;
+               *)
+                       hostname "$h"
+                       ;;
+       esac

$ pacman -Si openrc
Repository      : core
Name            : openrc
Version         : 0.28-14
Description     : A dependency based init system that works with the system provided init program
Architecture    : x86_64
URL             : https://wiki.gentoo.org/wiki/Project:OpenRC
Licenses        : BSD2
Groups          : None
Provides        : None
Depends On      : psmisc  pam
Optional Deps   : netifrc: network interface management scripts
                  networkmanager: network connection manager and user applications
Conflicts With  : None
Replaces        : None
Download Size   : 196.71 KiB
Installed Size  : 1767.00 KiB
Packager        : André Silva <emulatorman@hyperbola.info>
Build Date      : Mon 07 May 2018 03:54:42 PM -03
Validated By    : MD5 Sum  SHA-256 Sum  Signature

Steps to reproduce:

Set and run hostname init script
PackagesAnyFeature RequestMediumMedium [openvas-scanner] needs OpenRC init script Closed
100%
Task Description

$ pacman -Si openvas-scanner
Repository : community
Name : openvas-scanner
Version : 5.0.4-3
Description : The OpenVAS scanning Daemon
Architecture : x86_64
URL : http://www.openvas.org/ Licenses : GPL Groups : openvas
Provides : None
Depends On : openvas-libraries redis
Optional Deps : None
Conflicts With : None
Replaces : None
Download Size : 61.79 KiB
Installed Size : 183.00 KiB
Packager : Daniel Micay danielmicay@gmail.com Build Date : Mon 20 Jul 2015 09:02:59 PM -03
Validated By : MD5 Sum SHA-256 Sum Signature

$ pacman -Ql openvas-scanner
openvas-scanner /usr/
openvas-scanner /usr/bin/
openvas-scanner /usr/bin/greenbone-nvt-sync
openvas-scanner /usr/bin/openvas-mkcert
openvas-scanner /usr/bin/openvas-mkcert-client
openvas-scanner /usr/bin/openvas-nvt-sync
openvas-scanner /usr/bin/openvassd
openvas-scanner /usr/lib/
openvas-scanner /usr/lib/systemd/
openvas-scanner /usr/lib/systemd/system/
openvas-scanner /usr/lib/systemd/system/openvas-scanner.service
openvas-scanner /usr/share/
openvas-scanner /usr/share/doc/
openvas-scanner /usr/share/doc/openvas-scanner/
openvas-scanner /usr/share/doc/openvas-scanner/example_redis_2_4.conf
openvas-scanner /usr/share/doc/openvas-scanner/example_redis_2_6.conf
openvas-scanner /usr/share/man/
openvas-scanner /usr/share/man/man8/
openvas-scanner /usr/share/man/man8/greenbone-nvt-sync.8.gz
openvas-scanner /usr/share/man/man8/openvas-mkcert.8.gz
openvas-scanner /usr/share/man/man8/openvas-nvt-sync.8.gz
openvas-scanner /usr/share/man/man8/openvassd.8.gz
openvas-scanner /var/
openvas-scanner /var/cache/
openvas-scanner /var/cache/openvas/
openvas-scanner /var/lib/
openvas-scanner /var/lib/openvas/
openvas-scanner /var/lib/openvas/plugins/

PackagesAnyFeature RequestMediumMedium [packagekit] needs OpenRC init scripts Closed
100%
Task Description

$ pacman -Si packagekit
Repository : community
Name : packagekit
Version : 1.1.5-1
Description : A system designed to make installation and updates of packages easier
Architecture : x86_64
URL : http://www.packagekit.org/ Licenses : GPL Groups : None
Provides : None
Depends On : dbus-glib pacman>=5.0.0 polkit shared-mime-info sqlite
Optional Deps : networkmanager: detect connection status

                bash-completion: command completion in bash

Conflicts With : None
Replaces : None
Download Size : 877.20 KiB
Installed Size : 5758.00 KiB
Packager : Christian Hesse arch@eworm.de Build Date : Tue 17 Jan 2017 09:37:33 AM -03
Validated By : MD5 Sum SHA-256 Sum Signature

$ pacman -Ql packagekit > packagekit_fileslist.txt

PackagesAnySecurity IssueVery HighCritical [pam] pam_unix2 is orphaned and dead upstream Closed
100%
Task Description

pam_unix2 was removed from Debian Jessie because it’s buggy and unmaintained [0]

It’s included inside pam package and should be removed since it doesn’t comes from official source. Also the original upstream FTP directory (ftp://ftp.suse.com/people/kukuk/pam/pam_unix2) has disappeared.

[0]:https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628848

$ pacman -Si pam
Repository : core
Name : pam
Version : 1.3.0-1
Description : PAM (Pluggable Authentication Modules) library
Architecture : x86_64
URL : http://linux-pam.org Licenses : GPL2
Groups : None
Provides : None
Depends On : glibc cracklib libtirpc pambase
Optional Deps : None
Conflicts With : None
Replaces : None
Download Size : 609.71 KiB
Installed Size : 2980.00 KiB
Packager : Tobias Powalowski tpowa@archlinux.org Build Date : Thu 09 Jun 2016 02:44:03 PM -03
Validated By : MD5 Sum SHA-256 Sum Signature

$ pacman -Ql pam > pam_fileslist.txt

PackagesAnyFeature RequestVery HighHigh [procps-ng] add init file to load sysctl configuration  ...Closed
100%
Task Description

Add init file to load sysctl configuration files

Examples:

/etc/init.d/sysctl
----
#!/usr/bin/openrc-run
command="/usr/bin/sysctl"
command_args="--system"
----
/etc/runlevels/boot/sysctl
PackagesAnyFeature RequestVery HighHigh [prosody] needs OpenRC init script and contains systemd ...Closed
100%
Task Description

Description:

  • needs OpenRC init script and contains systemd files

Additional info:

  • prosody 1:0.10.r7198+.2fd20f372cb1+-2
prosody /usr/lib/systemd/system/prosody.service
prosody /usr/lib/sysusers.d/prosody.conf
prosody /usr/lib/tmpfiles.d/prosody.conf

Steps to reproduce:

  • none
PackagesAnyReplace RequestHighCritical [python2] replace deprecated Python 2 to Tauthon Closed
100%
Task Description

Description:

  • replace deprecated Python 2 to Tauthon for Canis Major

Additional info:

Steps to reproduce:

  • Broken python2 packages.
PackagesAnyFeature RequestMediumMedium [redis] needs OpenRC init script Closed
100%
Task Description

$ pacman -Si redis
Repository : community
Name : redis
Version : 3.2.8-1
Description : Advanced key-value store
Architecture : x86_64
URL : http://redis.io/ Licenses : BSD
Groups : None
Provides : None
Depends On : jemalloc grep shadow
Optional Deps : None
Conflicts With : None
Replaces : None
Download Size : 564.71 KiB
Installed Size : 3286.00 KiB
Packager : Sergej Pupykin <pupykin.s+arch@gmail.com>
Build Date : Mon 13 Feb 2017 09:08:25 AM -03
Validated By : MD5 Sum SHA-256 Sum Signature

[coadde@nbc_netbook ~]$ pacman -Ql redis
redis /etc/
redis /etc/logrotate.d/
redis /etc/logrotate.d/redis
redis /etc/redis.conf
redis /usr/
redis /usr/bin/
redis /usr/bin/redis-benchmark
redis /usr/bin/redis-check-aof
redis /usr/bin/redis-check-rdb
redis /usr/bin/redis-cli
redis /usr/bin/redis-sentinel
redis /usr/bin/redis-server
redis /usr/lib/
redis /usr/lib/systemd/
redis /usr/lib/systemd/system/
redis /usr/lib/systemd/system/redis.service
redis /usr/share/
redis /usr/share/licenses/
redis /usr/share/licenses/redis/
redis /usr/share/licenses/redis/LICENSE

PackagesAnyFeature RequestMediumMedium [rfkill] needs OpenRC init scripts Closed
100%
Task Description

$ pacman -Si rfkill
Repository : core
Name : rfkill
Version : 0.5-2
Description : Tool for enabling and disabling wireless devices
Architecture : x86_64
URL : http://wireless.kernel.org/en/users/Documentation/rfkill Licenses : custom
Groups : None
Provides : None
Depends On : None
Optional Deps : None
Conflicts With : None
Replaces : None
Download Size : 7.66 KiB
Installed Size : 14.00 KiB
Packager : Gaetan Bisson bisson@archlinux.org Build Date : Sun 02 Apr 2017 05:59:08 AM -03
Validated By : MD5 Sum SHA-256 Sum Signature

[coadde@nbc_netbook ~]$ pacman -Ql rfkill
rfkill /usr/
rfkill /usr/bin/
rfkill /usr/bin/rfkill
rfkill /usr/lib/
rfkill /usr/lib/systemd/
rfkill /usr/lib/systemd/system/
rfkill /usr/lib/systemd/system/rfkill-block@.service
rfkill /usr/lib/systemd/system/rfkill-unblock@.service
rfkill /usr/lib/sysusers.d/
rfkill /usr/lib/sysusers.d/rfkill.conf
rfkill /usr/lib/udev/
rfkill /usr/lib/udev/rules.d/
rfkill /usr/lib/udev/rules.d/60-rfkill.rules
rfkill /usr/share/
rfkill /usr/share/licenses/
rfkill /usr/share/licenses/rfkill/
rfkill /usr/share/licenses/rfkill/LICENSE
rfkill /usr/share/man/
rfkill /usr/share/man/man8/
rfkill /usr/share/man/man8/rfkill.8.gz

PackagesAnySecurity IssueVery HighCritical [schroedinger] unmaintained and unsupportable Closed
100%
Task Description

Description:

  • Remove Schrödinger in Hyperbola because it’s unmaintained and unsupportable. [0] [1]
  • Note: It requires [ffmpeg], [ffmpeg2.8] and [gst-plugins-bad] rebuilding

Additional info:

  • schroedinger 1.0.11-3
$ pacman -Si schroedinger
Repository      : extra
Name            : schroedinger
Version         : 1.0.11-3
Description     : An implemenation of the Dirac video codec in ANSI C code
Architecture    : x86_64
URL             : https://launchpad.net/schroedinger
Licenses        : GPL2  LGPL2.1  MPL  MIT
Groups          : None
Provides        : None
Depends On      : orc  gcc-libs
Optional Deps   : None
Conflicts With  : None
Replaces        : None
Download Size   : 331.64 KiB
Installed Size  : 1676.00 KiB
Packager        : Evangelos Foutras <evangelos@foutrelis.com>
Build Date      : Sat 05 Dec 2015 12:28:01 PM -03
Validated By    : MD5 Sum  SHA-256 Sum  Signature

Steps to reproduce:

  • Contains security holes.
PackagesAnyFeature RequestMediumMedium [sddm] needs OpenRC init script Closed
100%
Task Description

$ pacman -Si sddm
Repository : extra
Name : sddm
Version : 0.14.0-2
Description : QML based X11 display manager
Architecture : x86_64
URL : http://github.com/sddm/sddm Licenses : GPL Groups : None
Provides : display-manager
Depends On : qt5-declarative
Optional Deps : None
Conflicts With : None
Replaces : None
Download Size : 3.22 MiB
Installed Size : 4.16 MiB
Packager : Antonio Rojas arojas@archlinux.org Build Date : Fri 02 Sep 2016 03:45:49 PM -03
Validated By : MD5 Sum SHA-256 Sum Signature

$ pacman -Ql sddm > sddm_fileslist.txt

PackagesAnyFeature RequestMediumMedium [smartmontools] needs OpenRC init script Closed
100%
Task Description

$ pacman -Si smartmontools
Repository : extra
Name : smartmontools
Version : 6.5-1
Description : Control and monitor S.M.A.R.T. enabled ATA and SCSI Hard Drives
Architecture : x86_64
URL : http://smartmontools.sourceforge.net Licenses : GPL Groups : None
Provides : None
Depends On : gcc-libs libcap-ng bash
Optional Deps : s-nail: to get mail alerts to work
Conflicts With : None
Replaces : None
Download Size : 411.83 KiB
Installed Size : 1582.00 KiB
Packager : Antonio Rojas arojas@archlinux.org Build Date : Wed 18 May 2016 04:05:16 AM -03
Validated By : MD5 Sum SHA-256 Sum Signature

[coadde@nbc_netbook ~]$ pacman -Ql smartmontools
smartmontools /etc/
smartmontools /etc/conf.d/
smartmontools /etc/conf.d/smartd
smartmontools /etc/smartd.conf
smartmontools /usr/
smartmontools /usr/bin/
smartmontools /usr/bin/smartctl
smartmontools /usr/bin/smartd
smartmontools /usr/bin/update-smart-drivedb
smartmontools /usr/lib/
smartmontools /usr/lib/systemd/
smartmontools /usr/lib/systemd/system/
smartmontools /usr/lib/systemd/system/smartd.service
smartmontools /usr/share/
smartmontools /usr/share/doc/
smartmontools /usr/share/doc/smartmontools/
smartmontools /usr/share/doc/smartmontools/AUTHORS
smartmontools /usr/share/doc/smartmontools/COPYING
smartmontools /usr/share/doc/smartmontools/ChangeLog
smartmontools /usr/share/doc/smartmontools/ChangeLog-5.0-6.0
smartmontools /usr/share/doc/smartmontools/INSTALL
smartmontools /usr/share/doc/smartmontools/NEWS
smartmontools /usr/share/doc/smartmontools/README
smartmontools /usr/share/doc/smartmontools/TODO
smartmontools /usr/share/doc/smartmontools/examplescripts/
smartmontools /usr/share/doc/smartmontools/examplescripts/Example1
smartmontools /usr/share/doc/smartmontools/examplescripts/Example2
smartmontools /usr/share/doc/smartmontools/examplescripts/Example3
smartmontools /usr/share/doc/smartmontools/examplescripts/Example4
smartmontools /usr/share/doc/smartmontools/examplescripts/Example5
smartmontools /usr/share/doc/smartmontools/examplescripts/Example6
smartmontools /usr/share/doc/smartmontools/examplescripts/README
smartmontools /usr/share/doc/smartmontools/smartd.conf
smartmontools /usr/share/man/
smartmontools /usr/share/man/man5/
smartmontools /usr/share/man/man5/smartd.conf.5.gz
smartmontools /usr/share/man/man8/
smartmontools /usr/share/man/man8/smartctl.8.gz
smartmontools /usr/share/man/man8/smartd.8.gz
smartmontools /usr/share/man/man8/update-smart-drivedb.8.gz
smartmontools /usr/share/smartmontools/
smartmontools /usr/share/smartmontools/drivedb.h
smartmontools /usr/share/smartmontools/smartd_warning.d/
smartmontools /usr/share/smartmontools/smartd_warning.sh

PackagesAnyFeature RequestMediumMedium [smbnetfs] needs OpenRC init script Closed
100%
Task Description

$ pacman -Si smbnetfs
Repository : community
Name : smbnetfs
Version : 0.6.0-2
Description : small C program that mounts Microsoft network neighborhood in single directory.
Architecture : x86_64
URL : http://smbnetfs.sourceforge.net/ Licenses : GPL Groups : None
Provides : None
Depends On : fuse smbclient
Optional Deps : None
Conflicts With : None
Replaces : None
Download Size : 51.88 KiB
Installed Size : 226.00 KiB
Packager : Sergej Pupykin <pupykin.s+arch@gmail.com>
Build Date : Wed 13 Jan 2016 02:50:27 PM -03
Validated By : MD5 Sum SHA-256 Sum Signature

[coadde@nbc_netbook ~]$ pacman -Ql smbnetfs
smbnetfs /etc/
smbnetfs /etc/conf.d/
smbnetfs /etc/conf.d/smbnetfs
smbnetfs /etc/smbnetfs/
smbnetfs /etc/smbnetfs/.smb/
smbnetfs /etc/smbnetfs/.smb/smb.conf
smbnetfs /etc/smbnetfs/.smb/smbnetfs.auth
smbnetfs /etc/smbnetfs/.smb/smbnetfs.conf
smbnetfs /etc/smbnetfs/.smb/smbnetfs.host
smbnetfs /usr/
smbnetfs /usr/bin/
smbnetfs /usr/bin/smbnetfs
smbnetfs /usr/lib/
smbnetfs /usr/lib/systemd/
smbnetfs /usr/lib/systemd/system/
smbnetfs /usr/lib/systemd/system/smbnetfs.service
smbnetfs /usr/share/
smbnetfs /usr/share/doc/
smbnetfs /usr/share/doc/smbnetfs/
smbnetfs /usr/share/doc/smbnetfs/ENGLISH.FAQ smbnetfs /usr/share/doc/smbnetfs/INSTALL
smbnetfs /usr/share/doc/smbnetfs/README
smbnetfs /usr/share/doc/smbnetfs/RUSSIAN.FAQ smbnetfs /usr/share/doc/smbnetfs/smbnetfs.conf

PackagesAnyFeature RequestMediumMedium [speech-dispatcher] needs OpenRC init script Closed
100%
Task Description

$ pacman -Si speech-dispatcher
Repository : extra
Name : speech-dispatcher
Version : 0.8.6-1
Description : High-level device independent layer for speech synthesis interface
Architecture : x86_64
URL : http://www.freebsoft.org/speechd Licenses : GPL2 FDL Groups : None
Provides : None
Depends On : libltdl python-xdg dotconf libpulse libao
Optional Deps : festival: Speech output using Festival

                espeak: Speech output using ESpeak
                pulseaudio: PulseAudio support

Conflicts With : None
Replaces : None
Download Size : 424.04 KiB
Installed Size : 1414.00 KiB
Packager : Sven-Hendrik Haase sh@lutzhaase.com Build Date : Mon 09 Jan 2017 07:55:41 PM -03
Validated By : MD5 Sum SHA-256 Sum Signature

$ pacman -Ql speech-dispatcher > speech-dispatcher_fileslist.txt

PackagesAnyFeature RequestMediumMedium [tigervnc] needs OpenRC init scripts Closed
100%
Task Description

Contains:
“/usr/lib/systemd/system/vncserver.service” “/usr/lib/systemd/user/vncserver@.service”

$ pacman -Si tigervnc
Repository : community
Name : tigervnc
Version : 1.7.1-1
Description : Suite of VNC servers and clients. Based on the VNC 4 branch of TightVNC.
Architecture : x86_64
URL : http://www.tigervnc.org Licenses : GPL Groups : None
Provides : None
Depends On : fltk pam gnutls libjpeg-turbo libxtst libxfont pixman xorg-xauth xorg-xsetroot xkeyboard-config xorg-xkbcomp libgl libgcrypt perl

                libxdamage

Optional Deps : mesa: for OpenGL functionality in Xvnc
Conflicts With : tightvnc
Replaces : None
Download Size : 1242.18 KiB
Installed Size : 4630.00 KiB
Packager : Sergej Pupykin <pupykin.s+arch@gmail.com>
Build Date : Mon 23 Jan 2017 09:59:01 AM -03
Validated By : MD5 Sum SHA-256 Sum Signature

$ pacman -Ql tigervnc > tigervnc_fileslist.txt

PackagesAnyFreedom IssueVery HighCritical [torcs-data] contains nonfree car models Closed
100%
Task Description

The package contains nonfree car models

PackagesAnyFeature RequestVery HighHigh [tracker] contains systemd unit files Closed
100%
Task Description

Description:

  • The Arch version of Tracker from the snapshot used by Hyperbola comes with systemd support. Since Hyperbola follows the Init Freedom Campaign , systemd unit files removal is required. OpenRC init script replacement isn’t possible here because Tracker is using a systemd unit file adapted for users instead of system users.

Additional info:

  • tracker 1.12.0-2.hyperbola1
$ pacman -Si tracker
Repository      : extra
Name            : tracker
Version         : 1.12.0-2.hyperbola1
Description     : Desktop-neutral user information store, search tool and indexer
Architecture    : x86_64
URL             : https://wiki.gnome.org/Projects/Tracker
Licenses        : GPL
Groups          : gnome
Provides        : None
Depends On      : libtracker-sparql=1.12.0-2.hyperbola1  libsecret  upower  libexif  exempi  poppler-glib  libgsf  enca  libiptcdata  libcue  libosinfo  libnm-glib
                  gtk3  libgxps  taglib  flac  libvorbis  totem-plparser  gst-plugins-base-libs  giflib  libgrss  gvfs
Optional Deps   : nautilus: edit files' tracker tags
Conflicts With  : None
Replaces        : None
Download Size   : 1142.60 KiB
Installed Size  : 8459.00 KiB
Packager        : Scott Adams <haricot@hyperbola.info>
Build Date      : Thu 08 Jun 2017 03:57:24 PM -03
Validated By    : MD5 Sum  SHA-256 Sum  Signature
/usr/lib/systemd/user/tracker-extract.service is owned by tracker 1.12.0-2.hyperbola1
/usr/lib/systemd/user/tracker-miner-apps.service is owned by tracker 1.12.0-2.hyperbola1
/usr/lib/systemd/user/tracker-miner-fs.service is owned by tracker 1.12.0-2.hyperbola1
/usr/lib/systemd/user/tracker-miner-rss.service is owned by tracker 1.12.0-2.hyperbola1
/usr/lib/systemd/user/tracker-store.service is owned by tracker 1.12.0-2.hyperbola1
/usr/lib/systemd/user/tracker-writeback.service is owned by tracker 1.12.0-2.hyperbola1

Steps to reproduce:

  • Install package.
PackagesAnyFeature RequestMediumMedium [tuntox] needs OpenRC init script Closed
100%
Task Description

$ pacman -Si tuntox
Repository : community
Name : tuntox
Version : 0.0.6-3
Description : Tunnel TCP connections over the Tox protocol
Architecture : x86_64
URL : https://github.com/gjedeer/tuntox Licenses : GPL3
Groups : None
Provides : None
Depends On : toxcore
Optional Deps : None
Conflicts With : None
Replaces : None
Download Size : 20.63 KiB
Installed Size : 63.00 KiB
Packager : Jiachen Yang farseerfc@gmail.com Build Date : Fri 21 Apr 2017 01:19:36 PM -03
Validated By : MD5 Sum SHA-256 Sum Signature

$ pacman -Ql tuntox
tuntox /usr/
tuntox /usr/bin/
tuntox /usr/bin/tokssh
tuntox /usr/bin/tuntox
tuntox /usr/lib/
tuntox /usr/lib/systemd/
tuntox /usr/lib/systemd/system/
tuntox /usr/lib/systemd/system/tuntox.service

PackagesAnyFeature RequestVery HighHigh [umurmur] needs OpenRC init script and contains systemd ...Closed
100%
Task Description

Description:

  • needs OpenRC init script and contains systemd file

Additional info:

  • umurmur 0.2.16_a-6
umurmur /usr/lib/systemd/system/umurmur.service

Steps to reproduce:

  • none
PackagesAnyFeature RequestVery HighHigh [unrealircd] needs OpenRC init script and contains syst ...Closed
100%
Task Description

Description:

  • needs OpenRC init script and contains systemd files

Additional info:

  • unrealircd 4.0.11-2
unrealircd /usr/lib/systemd/system/unrealircd.service
unrealircd /usr/lib/tmpfiles.d/unrealircd.conf

Steps to reproduce:

  • none
PackagesAnyFeature RequestMediumMedium [usbmuxd] needs OpenRC init script Closed
100%
Task Description

$ pacman -Si usbmuxd
Repository : extra
Name : usbmuxd
Version : 1.1.0-2
Description : USB Multiplex Daemon
Architecture : x86_64
URL : http://marcansoft.com/blog/iphonelinux/usbmuxd/ Licenses : GPL2 GPL3
Groups : None
Provides : None
Depends On : libimobiledevice
Optional Deps : None
Conflicts With : None
Replaces : None
Download Size : 28.93 KiB
Installed Size : 70.00 KiB
Packager : Jan de Groot jgc@archlinux.org Build Date : Tue 03 Mar 2015 06:35:18 AM -02
Validated By : MD5 Sum SHA-256 Sum Signature

$ pacman -Ql usbmuxd
usbmuxd /usr/
usbmuxd /usr/bin/
usbmuxd /usr/bin/usbmuxd
usbmuxd /usr/lib/
usbmuxd /usr/lib/systemd/
usbmuxd /usr/lib/systemd/system/
usbmuxd /usr/lib/systemd/system/usbmuxd.service
usbmuxd /usr/lib/udev/
usbmuxd /usr/lib/udev/rules.d/
usbmuxd /usr/lib/udev/rules.d/39-usbmuxd.rules
usbmuxd /usr/share/
usbmuxd /usr/share/man/
usbmuxd /usr/share/man/man1/
usbmuxd /usr/share/man/man1/usbmuxd.1.gz

PackagesAnyImplementation RequestMediumMedium [uzem][uzebox] add uzem emulator and uzebox firmware pa ...Closed
100%
Task Description

Add “uzem” emulator and “uzebox” firmware packages[0][1].

It’s a emulator and firmware for fully free 8bit game console.

[0]:http://belogic.com/uzebox/index.asp (no https found)
[1]:https://github.com/Uzebox/uzebox

PackagesAnyFreedom IssueVery HighCritical [vdrift-data] contains nonfree car and track models Closed
100%
Task Description

The package contains nonfree car and track models

PackagesAnyFeature RequestVery HighHigh [vino] contains systemd unit file Closed
100%
Task Description

Description:

  • The Arch version of Vino from the snapshot used by Hyperbola comes with systemd support. Since Hyperbola follows the Init Freedom Campaign , systemd unit files removal is required. OpenRC init script replacement isn’t possible here because Vino is using a systemd unit file adapted for users instead of system users.

Additional info:

  • vino 3.22.0-1.hyperbola1
$ pacman -Si vino
Repository      : extra
Name            : vino
Version         : 3.22.0-1.hyperbola1
Description     : A VNC server for the GNOME desktop
Architecture    : x86_64
URL             : https://wiki.gnome.org/Projects/Vino
Licenses        : GPL
Groups          : gnome
Provides        : None
Depends On      : libnotify  libxtst  libsm  telepathy-glib  gtk3  libsecret  avahi  gnutls
Optional Deps   : None
Conflicts With  : None
Replaces        : None
Download Size   : 368.24 KiB
Installed Size  : 2723.00 KiB
Packager        : Scott Adams <haricot@hyperbola.info>
Build Date      : Fri 09 Jun 2017 02:01:33 AM -03
Validated By    : MD5 Sum  SHA-256 Sum  Signature
/usr/lib/systemd/user/vino-server.service is owned by vino 3.22.0-1.hyperbola1

Steps to reproduce:

  • Install package.
PackagesAnySecurity IssueVery HighCritical [w3m] unmaintained and unsupportable Closed
100%
PackagesAnyFreedom IssueVery HighCritical [warsow-data] the package contains nonfree assets (CC B ...Closed
100%
PackagesAnyBug ReportVery HighCritical [warsow] the package is not compiled from source Closed
100%
PackagesAnyFeature RequestMediumMedium [x11vnc] needs OpenRC init script Closed
100%
PackagesAnySecurity IssueHighHigh [x2goplugin] remove unsecure package Closed
100%
PackagesAnyImplementation RequestHighHigh [xen] add Xen 4.8.x split packages Closed
100%
PackagesAnySecurity IssueVery HighCritical [xulrunner] unmaintained and unsupportable Closed
100%
Software DevelopmentHyperToolsImplementation RequestLowLow[hypertools] create libretools replacement for Hyperbol...Deferred
0%
PackagesTestingFeature RequestMediumMedium [audit] needs OpenRC init script Closed
100%
PackagesTestingFeature RequestMediumMedium [cups-filters] needs OpenRC init script Closed
100%
PackagesTestingReplace RequestMediumMedium [devtools] use artools as devtools replacement Closed
100%
PackagesTestingFeature RequestMediumMedium [dmraid] add cron job support Closed
100%
PackagesTestingFeature RequestMediumMedium [dnsmasq] needs OpenRC init script  Closed
100%
PackagesTestingBug ReportHighHigh [freerdp] error while loading shared libraries Closed
100%
PackagesTestingBug ReportHighHigh [gnome-shell] error while loading shared libraries Closed
100%
PackagesTestingFeature RequestMediumMedium [hddtemp] needs OpenRC init script Closed
100%
PackagesTestingFeature RequestMediumMedium [irqbalance] needs OpenRC init script Closed
100%
PackagesTestingBug ReportHighHigh [ksystemlog] error while loading shared libraries Closed
100%
PackagesTestingFeature RequestMediumMedium [libcanberra] needs OpenRC init scripts Closed
100%
PackagesTestingFeature RequestMediumMedium [logrotate] add cron job support Closed
100%
PackagesTestingFeature RequestMediumMedium [lxc] needs OpenRC init scripts Closed
100%
PackagesTestingFeature RequestMediumMedium [lxcfs] needs OpenRC init script Closed
100%
PackagesTestingFeature RequestMediumMedium [lxdm] needs OpenRC init script Closed
100%
PackagesTestingFeature RequestMediumMedium [lynis] add cron job support Closed
100%
PackagesTestingFeature RequestMediumMedium [man-db] add cron job support Closed
100%
Showing tasks 101 - 150 of 160 Page 3 of 4

Available keyboard shortcuts

Tasklist

Task Details

Task Editing