Package Details: gnome-shell-extension-clipboard-indicator 60-1

Git Clone URL: https://aur.archlinux.org/gnome-shell-extension-clipboard-indicator.git (read-only, click to copy)
Package Base: gnome-shell-extension-clipboard-indicator
Description: Adds a clipboard indicator to the top panel, and caches clipboard history
Upstream URL: https://github.com/Tudmotu/gnome-shell-extension-clipboard-indicator
Licenses: MIT
Conflicts: gnome-shell-extension-clipboard-history
Submitter: jonian
Maintainer: jonian
Last Packager: jonian
Votes: 18
Popularity: 0.129121
First Submitted: 2020-05-04 19:21 (UTC)
Last Updated: 2024-04-06 17:01 (UTC)

Latest Comments

the-k commented on 2024-04-07 09:02 (UTC)

Could you please switch to at least SHA-256? MD5 is insecure.

Misaka13514 commented on 2024-01-28 05:55 (UTC)

Please follow Arch Linux RFC16: use SPDX license identifier in PKGBUILD. https://gitlab.archlinux.org/archlinux/rfcs/-/blob/master/rfcs/0016-spdx-license-identifiers.rst

the-k commented on 2023-10-13 14:40 (UTC)

I've used the following changes to upgrade to v54. Due to https://github.com/Tudmotu/gnome-shell-extension-clipboard-indicator/issues/402, https://extensions.gnome.org/ is currently the only source of versioning information AFAIK.

diff --git a/PKGBUILD b/PKGBUILD
index 276ecb5..6008a1e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,16 +1,36 @@
 # Maintainer: Jonian Guveli <https://github.com/jonian/>
 pkgname=gnome-shell-extension-clipboard-indicator
 _uuid=("clipboard-indicator@tudmotu.com")
-pkgver=45
+pkgver=54
 pkgrel=1
 pkgdesc="Adds a clipboard indicator to the top panel, and caches clipboard history"
 arch=("any")
 url="https://github.com/Tudmotu/gnome-shell-extension-clipboard-indicator"
 license=("GPL")
+makedepends=(
+  unzip
+)
 depends=("gnome-shell")
 conflicts=("gnome-shell-extension-clipboard-history")
-source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
-md5sums=('d2d90f914c829c8a87b0e90d5e69235f')
+source=(
+  # https://github.com/Tudmotu/gnome-shell-extension-clipboard-indicator/issues/402
+  "${pkgname}-${pkgver}.zip::https://extensions.gnome.org/extension-data/clipboard-indicatortudmotu.com.v${pkgver}.shell-extension.zip"
+)
+sha256sums=(
+  dcb3a1aed20d43c1f335f190a368b2a1d4e521eb032811e7fc4a8220bbc9ae88
+)
+noextract=(
+  "${pkgname}-${pkgver}.zip"
+)
+
+prepare() {
+  mkdir -p "${pkgname}-${pkgver}"
+
+  unzip -d "${pkgname}-${pkgver}" "${pkgname}-${pkgver}.zip"
+
+  # metadata.json permissions are 600.
+  chmod -R +r "${pkgname}-${pkgver}"
+}

 package() {
   install -d "$pkgdir/usr/share/gnome-shell/extensions" \

ChTBoner commented on 2023-05-10 07:45 (UTC)

A v45 is available, though not as a tag and not as a release on Github. So not sure if the package is out of date. But as it stands it doesn't seem to work on Gnome Shell 44.1. I installed the git version of the package from the AUR, based on v45, and it works properly..

WaywardPooch commented on 2021-06-04 15:28 (UTC)

Works great for me under GNOME 40.1. Thanks!