summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorXZS2017-03-08 00:42:09 +0100
committerXZS2017-03-08 00:42:09 +0100
commit4af6ae04038825f6950a47383e0cc647a1b787cf (patch)
tree6fa58212c8dca22c29f62493d9c6c78db72b9038
parente2eecdc1b8cabbeed021f36214b11f0c15965492 (diff)
downloadaur-4af6ae04038825f6950a47383e0cc647a1b787cf.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 c2df4f79c993..26a5695a4bb5 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,9 @@
pkgbase = firefox-extension-omnisidebar
pkgdesc = A firefox add-on designed to provide more control over the behavior of the sidebar.
pkgver = 1.6.15
- pkgrel = 1
+ pkgrel = 2
url = https://addons.mozilla.org/firefox/addon/omnisidebar/
+ install = discontinuation-notice.install
arch = any
license = MPLv2
makedepends = unzip
diff --git a/PKGBUILD b/PKGBUILD
index 3476210647f5..51822978e1b5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,12 +4,13 @@
pkgname=firefox-extension-omnisidebar
pkgver=1.6.15
-pkgrel=1
+pkgrel=2
pkgdesc='A firefox add-on designed to provide more control over the behavior of the sidebar.'
arch=('any')
license=('MPLv2')
depends=('firefox')
md5sums=('fb26a5c64c6ccdf3cee77fb01b6cbe1c')
+install=discontinuation-notice.install
[ "$arch" ] || arch=('any')
diff --git a/discontinuation-notice.install b/discontinuation-notice.install
new file mode 100644
index 000000000000..758b56294624
--- /dev/null
+++ b/discontinuation-notice.install
@@ -0,0 +1,10 @@
+post_install() {
+ echo "Changes in the Firefox extension API will make OmniSidebar cease"
+ echo "working by November 2017 with Firefox 57. Development is discontinued."
+}
+
+post_upgrade() {
+ post_install
+}
+
+# vim: ts=2 sw=2 et: