summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorXZS2017-03-08 00:42:01 +0100
committerXZS2017-03-08 00:42:01 +0100
commit6f20d1375163cacc8bdafb6c736d3e8a284f35b7 (patch)
treef07d9d4d478be0eeae3d1fddda4f0582f25cac8e
parent9eb99beea1410a33b34fe7c8c22029732c863705 (diff)
downloadaur-firefox-extension-beyond-australis.tar.gz
notify users about discontinuation
Quicksaver abandoned his more complex extensions because they rely heavily on an API which Mozilla will deprecate without properly replacing features necessary for the Add-Ons to work. [1] Users upgrading should be prepared for the package to stop working as announced. Users trying to first install even after the critical Firefox version are also notified unconditionally. [1]: as explained on http://fasezero.com/addons/
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD3
-rw-r--r--discontinuation-notice.install10
3 files changed, 14 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9a1b103c406b..d87ce6ae05a4 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,9 @@
pkgbase = firefox-extension-beyond-australis
pkgdesc = Australis was the code name for the current Firefox theme, it aimed to make a great browser look awesome. Now you can go one step further and also make it feel awesome to use!
pkgver = 1.4.8
- pkgrel = 1
+ pkgrel = 2
url = https://addons.mozilla.org/firefox/addon/the-fox-only-better/
+ install = discontinuation-notice.install
arch = any
license = MPLv2
makedepends = unzip
diff --git a/PKGBUILD b/PKGBUILD
index 116db5144694..93f3b12eade4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
pkgname=firefox-extension-beyond-australis
pkgver=1.4.8
-pkgrel=1
+pkgrel=2
pkgdesc='Australis was the code name for the current Firefox theme, it aimed to make a great browser look awesome. Now you can go one step further and also make it feel awesome to use!'
_extname=the-fox-only-better
arch=('any')
@@ -12,6 +12,7 @@ license=('MPLv2')
depends=('firefox')
replaces=('firefox-extension-the-fox-only-better')
md5sums=('07e964071b9fb8c968dad3ba863c6df9')
+install=discontinuation-notice.install
[ "$arch" ] || arch=('any')
diff --git a/discontinuation-notice.install b/discontinuation-notice.install
new file mode 100644
index 000000000000..08b6f0cb34fc
--- /dev/null
+++ b/discontinuation-notice.install
@@ -0,0 +1,10 @@
+post_install() {
+ echo "Changes in the Firefox extension API will make Beyond Australis cease"
+ echo "working by November 2017 with Firefox 57. Development is discontinued."
+}
+
+post_upgrade() {
+ post_install
+}
+
+# vim: ts=2 sw=2 et: