Package Details: plover-git 4.0.0.dev12-1

Git Clone URL: https://aur.archlinux.org/plover-git.git (read-only, click to copy)
Package Base: plover-git
Description: Free and open source real-time stenography engine.
Upstream URL: http://www.openstenoproject.org/plover/
Licenses: GPL2
Conflicts: plover
Provides: plover
Submitter: bpierre
Maintainer: SammyPoot
Last Packager: bpierre
Votes: 4
Popularity: 0.000000
First Submitted: 2016-05-01 21:41 (UTC)
Last Updated: 2022-08-16 16:18 (UTC)

Pinned Comments

bpierre commented on 2021-04-16 23:05 (UTC) (edited on 2021-04-16 23:51 (UTC) by bpierre)

Starting with 4.0.0.dev8+434.g60779ea-1, the main entry point has been changed to isolate plugins install, similarly to how they are handled when using the official AppImage.

The plugins manager is available as a separate package: https://aur.archlinux.org/packages/plover_plugins_manager/.

Latest Comments

« First ‹ Previous 1 2 3

tvr commented on 2021-04-16 13:51 (UTC)

python-certifi should be added as dependency. Without I get the following error

==> Starting check()...
running test
writing plover.egg-info/PKG-INFO
writing dependency_links to plover.egg-info/dependency_links.txt
writing entry points to plover.egg-info/entry_points.txt
writing requirements to plover.egg-info/requires.txt
writing top-level names to plover.egg-info/top_level.txt
reading manifest template 'MANIFEST.in'
warning: no files found matching 'tox.ini'
warning: no previously-included files found matching 'archlinux/.gitignore'
writing manifest file 'plover.egg-info/SOURCES.txt'
Traceback (most recent call last):
  File "/home/thomas/.cache/yay/plover-git/src/plover-git/setup.py", line 286, in <module>
    setup(
  File "/usr/lib/python3.9/site-packages/setuptools/__init__.py", line 153, in setup
    return distutils.core.setup(**attrs)
  File "/usr/lib/python3.9/distutils/core.py", line 148, in setup
    dist.run_commands()
  File "/usr/lib/python3.9/distutils/dist.py", line 966, in run_commands
    self.run_command(cmd)
  File "/usr/lib/python3.9/distutils/dist.py", line 985, in run_command
    cmd_obj.run()
  File "/home/thomas/.cache/yay/plover-git/src/plover-git/plover_build_utils/setup.py", line 68, in run
    with self.project_on_sys_path(build=self.build_before):
  File "/usr/lib/python3.9/contextlib.py", line 117, in __enter__
    return next(self.gen)
  File "/home/thomas/.cache/yay/plover-git/src/plover-git/plover_build_utils/setup.py", line 34, in project_on_sys_path
    pkg_resources.require('%s==%s' % (ei_cmd.egg_name, ei_cmd.egg_version))
  File "/usr/lib/python3.9/site-packages/pkg_resources/__init__.py", line 886, in require
    needed = self.resolve(parse_requirements(requirements))
  File "/usr/lib/python3.9/site-packages/pkg_resources/__init__.py", line 772, in resolve
    raise DistributionNotFound(req, requirers)
pkg_resources.DistributionNotFound: The 'certifi' distribution was not found and is required by plover
==> ERROR: A failure occurred in check().
    Aborting...
error making: plover-git

bpierre commented on 2017-02-07 20:23 (UTC)

I don't understand the problem with pkgver, I can't reproduce it. The issue with UI files not being generated should be fixed. Note: I assume you edited you're original comment? There's no email notification when an existing comment is edited, so I would have missed your issues if not for visiting the AUR page.

sekret commented on 2017-02-07 18:20 (UTC) (edited on 2017-02-07 18:26 (UTC) by sekret)

Thanks for this package! Please add git to the makedepends, otherwise it can't be built ;-) After adding git I get this output ==> Starting pkgver()... ==> ERROR: pkgver is not allowed to contain colons, hyphens or whitespace. ==> ERROR: pkgver() generated an invalid version: zip_safe flag not set; analyzing archive contents... zip_safe flag not set; analyzing archive contents... 4.0.0.dev0.91.gd6f8be5 I want to suggest to use git describe --tags | sed -r 's/^v//;s/([^-]*-g)/r\1/;s/-/./g' in pkgver(), it produces this output 4.0.0.dev0.r91.gd6f8be5 The license should be provided like this license=('GPL2') When I tried to launch it, I got this $ plover Unexpected error: Traceback (most recent call last): File "/usr/lib/python2.7/site-packages/plover/main.py", line 72, in main code = gui.main(config) File "/usr/lib/python2.7/site-packages/plover/gui_qt/main.py", line 112, in main app = Application(config, use_qt_notifications) File "/usr/lib/python2.7/site-packages/plover/gui_qt/main.py", line 31, in __init__ from plover.gui_qt.main_window import MainWindow File "/usr/lib/python2.7/site-packages/plover/gui_qt/main_window.py", line 18, in <module> from plover.gui_qt.main_window_ui import Ui_MainWindow ImportError: No module named main_window_ui QApplication: invalid style override passed, ignoring it. Looks like missing dependencies? I'm not really a python guy ... What package provides this module named main_window_ui?