diff options
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | LICENSE | 9 | ||||
-rw-r--r-- | PKGBUILD | 6 |
4 files changed, 17 insertions, 7 deletions
@@ -1,13 +1,13 @@ pkgbase = gnome-shell-extension-panel-corners pkgdesc = A gnome-shell extension to keep the old topbar corners, which were removed for GNOME 42 - pkgver = 13 + pkgver = 14 pkgrel = 1 url = https://github.com/aunetx/panel-corners arch = any license = GPL-3.0-or later makedepends = zip depends = gnome-shell - source = panel-corners-13.tar.gz::https://github.com/aunetx/panel-corners/archive/refs/tags/v13.tar.gz - sha256sums = a09c09a7d19b91e51a8cfd6f7c6d73b2375acc7adfc024cda3323a600086bc26 + source = panel-corners-14.tar.gz::https://github.com/aunetx/panel-corners/archive/refs/tags/v14.tar.gz + sha256sums = 38c10b6136f315fdb107dfc51bfcf558d09031fee5c6d975dd3a8be63b16789b pkgname = gnome-shell-extension-panel-corners diff --git a/.gitignore b/.gitignore index c88fa7b0bf74..fbf13ff84003 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,9 @@ # Ignore everything -* +/* # But not these files... !.gitignore !PKGBUILD !.SRCINFO !.nvchecker.toml +!LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 000000000000..733e88560b9d --- /dev/null +++ b/LICENSE @@ -0,0 +1,9 @@ +Binary files, as well as any files describing changes ("patches") to the software that is being built are excluded from this license. They are provided under the license terms of the software they describe changes for. + +Any files containing a license notice are excluded from this license. They are provided under the license terms defined in their respective notices. + +Copyright 2024 Arch Linux Contributors + +Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. @@ -2,8 +2,8 @@ # Contributor: Igor Dyatlov <dyatlov.igor@protonmail.com> pkgname=gnome-shell-extension-panel-corners _uuid=panel-corners@aunetx -pkgver=13 -pkgrel=2 +pkgver=14 +pkgrel=1 pkgdesc="A gnome-shell extension to keep the old topbar corners, which were removed for GNOME 42" arch=('any') url="https://github.com/aunetx/panel-corners" @@ -11,7 +11,7 @@ license=('GPL-3.0-or later') depends=('gnome-shell') makedepends=('zip') source=("panel-corners-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz") -sha256sums=('a09c09a7d19b91e51a8cfd6f7c6d73b2375acc7adfc024cda3323a600086bc26') +sha256sums=('38c10b6136f315fdb107dfc51bfcf558d09031fee5c6d975dd3a8be63b16789b') build() { cd "panel-corners-$pkgver" |