summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-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 f7083d2dbea8..05b696285667 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,9 @@
pkgbase = firefox-extension-omnisidebar-git
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://github.com/Quicksaver/OmniSidebar
+ install = discontinuation-notice.install
arch = any
license = MPLv2
makedepends = git
diff --git a/PKGBUILD b/PKGBUILD
index 7bf3d21994a4..3dce0275b9d7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,12 +4,13 @@
pkgname=firefox-extension-omnisidebar-git
pkgver=1.6.15
-pkgrel=1
+pkgrel=2
pkgdesc='A firefox add-on designed to provide more control over the behavior of the sidebar.'
url='https://github.com/Quicksaver/OmniSidebar'
arch=('any')
license=('MPLv2')
depends=('firefox')
+install=discontinuation-notice.install
makedepends+=('git')
source+=("${_gitname:=${pkgname%-git}}::${_giturl:-git+$url}")
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: