Package Details: syncthing-gtk 0.9.4.5-1

Git Clone URL: https://aur.archlinux.org/syncthing-gtk.git (read-only, click to copy)
Package Base: syncthing-gtk
Description: GTK3 based GUI and notification area icon for Syncthing.
Upstream URL: https://github.com/syncthing-gtk/syncthing-gtk
Licenses: GPL2
Conflicts: syncthing-gtk-python3
Provides: syncthing-gtk-python3
Replaces: syncthing-gtk-python3
Submitter: Salamandar
Maintainer: Salamandar
Last Packager: Salamandar
Votes: 28
Popularity: 1.12
First Submitted: 2022-11-15 10:30 (UTC)
Last Updated: 2023-03-12 17:12 (UTC)

Latest Comments

1 2 3 4 Next › Last »

Salamandar commented on 2023-03-12 17:12 (UTC)

Sorry for the delay. This is fixed now.

MonkeeSage commented on 2023-02-28 06:05 (UTC) (edited on 2023-02-28 06:06 (UTC) by MonkeeSage)

@Salamandar sha needs bump

==> Validating source files with sha256sums...
    syncthing-gtk-0.9.4.4.2.tar.gz ... FAILED

FabioLolix commented on 2023-02-26 14:13 (UTC)

btw removing contributors isn't nice https://aur.archlinux.org/cgit/aur.git/commit/?h=syncthing-gtk&id=934a63986cc608ef96dba58c7848cbec3167bcc9

Salamandar commented on 2023-02-26 13:54 (UTC)

Fixed @frankenstein20. Sorry for the inconvenience !

frankenstein20 commented on 2023-02-25 22:03 (UTC)

Failure while downloading https://github.com/syncthing-gtk/syncthing-gtk/archive/v0.9.4.4.2.tar.gz

Salamandar commented on 2022-11-15 12:35 (UTC)

Everyone, this package is now deprecated. With some people, we created a fork in a Github Org, https://github.com/syncthing-gtk/syncthing-gtk. We're dropping the "-python3" suffix, so the new package will be syncthing-gtk. When you run an update, the new package should replace this one automatically.

mozzribo commented on 2022-11-13 19:34 (UTC)

Works now, thanks for the fix!

Salamandar commented on 2022-11-13 13:25 (UTC)

So sorry, yeah, commited the fix.

The package now uses my git repository, but I did not think the tarball was different on Github than on gitlab.

CommanderCrisp commented on 2022-11-13 12:35 (UTC) (edited on 2022-11-13 16:37 (UTC) by CommanderCrisp)

No worries, thanks for all you do!

Working build script. TLDR is the "cd" commands are no longer accurate:

# Maintainer: Salamandar <felix@piedallu.me>
# Contributor: Jaroslav Lichtblau <svetlemodry@archlinux.org>
# Contributor: Martin Wimpress <code@flexion.org>
# Contributor: kozec <kozec at kozec dot com>

_pkgname=syncthing-gtk
pkgname=syncthing-gtk-python3
pkgver=0.9.4.5
pkgrel=1
epoch=1
pkgdesc='GTK3 based GUI and notification area icon for Syncthing. Python 3 port with Debian sources.'
arch=('any')
# url='https://salsa.debian.org/debian/syncthing-gtk'
url='https://github.com/Salamandar/syncthing-gtk'
license=('GPL2')
conflicts=( 'syncthing-gtk' )
replaces=(  'syncthing-gtk' )
depends=(
    'syncthing>=0.14.50' 'gtk3' 'libnotify'
    'python-bcrypt' 'python-cairo' 'python-dateutil' 'python-gobject'
)
makedepends=('python-setuptools' 'git')
source=(
    $pkgname-$pkgver.tar.gz::https://github.com/salamandar/syncthing-gtk/archive/v$pkgver.tar.gz
    kde-statusicon.patch
)
sha256sums=(
    '19d234b3a4514420cf123ae1b477590684e11dd54b7fa208c0b19e9dccf2c465'
    '109d8c970045e60251fc64865f05322b23a0995ee6725be02905941cb3a1ae0d'
)

prepare() {
    cd "$_pkgname-$pkgver"
    # Enable Gtk.StatusIcon in KDE
    patch -Np1 -i ../kde-statusicon.patch
}

build() {
    cd "$_pkgname-$pkgver"
    python3 setup.py build
}

package() {
    cd "$_pkgname-$pkgver"
    python3 setup.py install --root="$pkgdir" --optimize=1
}