Package Details: sejda-desktop 7.7.5-2

Git Clone URL: https://aur.archlinux.org/sejda-desktop.git (read-only, click to copy)
Package Base: sejda-desktop
Description: Proprietary commercial PDF editor
Upstream URL: https://www.sejda.com/desktop
Keywords: convert editor pdf
Licenses: LicenseRef-EULA
Submitter: onny
Maintainer: thibaultmol (FabioLolix)
Last Packager: FabioLolix
Votes: 11
Popularity: 0.002968
First Submitted: 2017-01-03 09:18 (UTC)
Last Updated: 2024-11-03 14:47 (UTC)

Latest Comments

1 2 3 4 Next › Last »

FabioLolix commented on 2024-11-03 14:50 (UTC)

Pkgbuild is updated, the program at least start for me (I haven't accepted the EULA and go further)

FabioLolix commented on 2024-11-03 14:27 (UTC)

@thibaultmol you can add me as co-maintainer, I have a patch ready

thibaultmol commented on 2024-11-03 13:55 (UTC)

I myself don't know how to fix things like this, I was originally on this project as a co-maintainer to do version bumps. But then the actual maintainer left.

I sent a dm to FabioLolix last week to ask if they want to help they're free to provide a pkgbuild that I can put up. But I don't know how to fix this myself, i'm sorry

lesebas commented on 2024-11-03 08:02 (UTC)

Hello, the issue of packaging is still present. Please update.

FabioLolix commented on 2024-10-22 18:01 (UTC)

Fail to package:

==> Starting package()...
gtk-update-icon-cache: Failed to open file /usr/share/icons/hicolor/.icon-theme.cache : Permission denied
No such schema ?org.gnome.shell?
==> ERROR: A failure occurred in package().

This is due to:

  # fix permissions
  bash "${srcdir}/postinst.Arch"

In the script postinst.Arch do some not necessary or even unwanted things:

  • chmod can be done within the pkgbuild
  • update icon cache and MIME db is not needed, it is already done by pacman by default (this is instead needed in Debian)
  • installing in user HOME is prohibited
  • the gsettings likely unwanted

About the pkgbuild:

  • please use source_x86_64=() instead of source=()
  • use ${pkgver} in source= instead of manually typing the version
  • no need to use depends+=(), just use depends

thibaultmol commented on 2024-09-30 22:00 (UTC)

apologies for all the delays, I will be on top of it from now on

lesebas commented on 2024-09-14 07:33 (UTC)

Here the PKGBUILD for version 7.7.2. Please update :

https://pastebin.com/vdBZqWk3

loglog commented on 2024-08-02 11:04 (UTC) (edited on 2024-08-02 11:06 (UTC) by loglog)

The current (v7.6.8) Sejda desktop now shows a warning:

[ Critical update required // Please update to the latest version to fix a critical issue: // Download Sejda Desktop 7.7.0 ]

Any chance update this AUR package, which is flagged out-of-date since 2024-05-18 already?

alsoGAMER commented on 2024-07-05 14:46 (UTC)

Updated PKGBUILD to ver 7.7.0

Maintainer: Chris Severance aur.severach aATt spamgourmet dott com
Maintainer: Thibault Molleman <aur at thibaultmol d0t link>
Contributor: Frederic Bezies <fredbezies at gmail dot com>
Contributor: James An james@jamesan.ca
Contributor: Jonas Heinrich onny@project-insanity.org
Contributor: alsoGAMER <nextgamer3152 at gmail dot com>

pkgname='sejda-desktop' pkgver='7.7.0' pkgrel='1' license=('LicenseRef-EULA') pkgdesc='PDF editor' arch=('x86_64') depends=(libxcb libxfixes nspr alsa-lib libcups at-spi2-core libxrandr libdrm libxrender pango nss libxcomposite cairo libxdamage libxkbcommon mesa gtk3) depends+=(libx11 glibc bash expat libxext libxtst dbus libxi gcc-libs glib2) url='https://www.sejda.com/desktop' source=("https://downloads.sejda-cdn.com/sejda-desktop_${pkgver}_amd64.deb") md5sums=('d083841999be4154fb234c16e5aa9c9f') sha512sums=('374b2a892ca984fadae0a58be9b910bddb79fa11c8921c9ee821e58e5f7db7219a9711c0fb6c0352725ff17220acf5cc633f2c474e3b0209d27cb15304997a8f') options=('!strip')

prepare() { bsdtar -xf 'control.tar.gz' sed -e 's:/opt/:opt/:g' 'postinst' > 'postinst.Arch' }

package() { bsdtar --no-same-owner --no-same-permissions -xf 'data.tar.gz' -C "${pkgdir}" cd "${pkgdir}" install -d 'usr/bin' ln -s '/opt/sejda-desktop/sejda-desktop' 'usr/bin/sejda-desktop'

find -type 'f' '(' -name '.DS_Store' -o -iname '*.bat' ')' -delete

# fix permissions bash "${srcdir}/postinst.Arch"

# symlink licenses install -d "usr/share/licenses/${pkgname}" local _i for _i in 'EULA.pdf' 'LICENSE.electron' 'LICENSES.chromium.html'; do ln -s "/opt/sejda-desktop/${_i}" "usr/share/licenses/${pkgname}/${_i}" done }

gok commented on 2024-02-08 11:08 (UTC)

Thanks for updating the package. Could you remove gconf from the dependencies? It is not necessary from what I can see (I built v7.6.8 without gconf as a dependency, and used it briefly without noticing any issues).