diff options
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/control | 32 | ||||
-rw-r--r-- | debian/copyright | 18 | ||||
-rw-r--r-- | debian/patches/progress-linux/0001-gnome-shell-version.patch | 34 | ||||
-rw-r--r-- | debian/patches/series | 1 | ||||
-rwxr-xr-x | debian/rules | 11 | ||||
-rw-r--r-- | debian/source/format | 1 |
7 files changed, 102 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..7ed1a33 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +gnome-shell-extension-remove-rounded-corners (5-0progress5u1) engywuck-extras; urgency=low + + * Initial upload to engywuck-extras. + + -- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 13 Mar 2021 20:51:35 +0100 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..7096d2e --- /dev/null +++ b/debian/control @@ -0,0 +1,32 @@ +Source: gnome-shell-extension-remove-rounded-corners +Section: restricted/gnome +Priority: optional +Maintainer: Progress Linux Maintainers <maintainers@lists.progress-linux.org> +XSBC-Uploaders: Daniel Baumann <daniel.baumann@progress-linux.org>, +Bugs: mailto:bugs@lists.progress-linux.org +Build-Depends: + debhelper-compat (= 12), +Standards-Version: 4.3.0 +Homepage: http://markbokil.com/downloads/extensions/ +Vcs-Browser: https://git.progress-linux.org/packages/engywuck-extras/gnome-shell-extension-remove-rounded-corners +Vcs-Git: https://git.progress-linux.org/packages/engywuck-extras/gnome-shell-extension-remove-rounded-corners + +Package: gnome-shell-extension-remove-rounded-corners +Section: restricted/gnome +Architecture: all +Depends: + gnome-shell, + ${misc:Depends}, +Recommends: + gnome-tweaks, +Enhances: + gnome-shell, +Description: Remove Rounded Corners (GNOME Shell) + The GNOME Shell provides core interface functions like switching + windows, launching applications or see your notifications. It takes + advantage of the capabilities of modern graphics hardware and + introduces innovative user interface concepts to provide a + delightful and easy to use experience. GNOME Shell is the defining + technology of the GNOME 3 user experience. + . + This extension removes rounded corners from the top panel. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..a7cc5ba --- /dev/null +++ b/debian/copyright @@ -0,0 +1,18 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: remove-rounded-corners +Upstream-Contact: Mark Bokil <mark.bokil@gmail.com> +Source: https://extensions.gnome.org/extension/448/remove-rounded-corners/ + +Files: * +Copyright: Mark Bokil <mark.bokil@gmail.com> +License: n/a + +Files: debian/* +Copyright: 2010-2021 Daniel Baumann <daniel.baumann@progress-linux.org> +License: PD + This program is free software: you have unlimited permission + to copy, distribute and modify it. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. diff --git a/debian/patches/progress-linux/0001-gnome-shell-version.patch b/debian/patches/progress-linux/0001-gnome-shell-version.patch new file mode 100644 index 0000000..7b2dc1f --- /dev/null +++ b/debian/patches/progress-linux/0001-gnome-shell-version.patch @@ -0,0 +1,34 @@ +Author: Daniel Baumann <daniel.baumann@progress-linux.org> +Description: Updating gnome shell version. + +diff -Naurp gnome-shell-extension-remove-rounded-corners.orig/metadata.json gnome-shell-extension-remove-rounded-corners/metadata.json +--- gnome-shell-extension-remove-rounded-corners.orig/metadata.json ++++ gnome-shell-extension-remove-rounded-corners/metadata.json +@@ -8,9 +8,24 @@ + "shell-version": [ + "3.4", + "3.6", +- "3.8" ++ "3.8", ++ "3.10", ++ "3.12", ++ "3.14", ++ "3.16", ++ "3.18", ++ "3.20", ++ "3.22", ++ "3.24", ++ "3.26", ++ "3.28", ++ "3.30", ++ "3.32", ++ "3.34", ++ "3.36", ++ "3.38" + ], + "url": "http://markbokil.com/downloads/extensions/", + "uuid": "remove-rounded-corners@markbokil.com", + "version": 5 +-} +\ No newline at end of file ++} diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..9e56ac5 --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +progress-linux/0001-gnome-shell-version.patch diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..28a3230 --- /dev/null +++ b/debian/rules @@ -0,0 +1,11 @@ +#!/usr/bin/make -f + +PACKAGE := $(shell dh_listpackages) +EXTENSION := $(shell awk -F\" '/"uuid": / { print $$4 }' metadata.json) + +%: + dh ${@} + +override_dh_auto_install: + mkdir -p debian/$(PACKAGE)/usr/share/gnome-shell/extensions/$(EXTENSION) + find . -maxdepth 1 -mindepth 1 -and -not -name debian -and -not -name .pc -exec cp -a {} debian/$(PACKAGE)/usr/share/gnome-shell/extensions/$(EXTENSION) \; diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) |