diff options
author | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-05-14 19:08:24 +0000 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-05-15 16:59:07 +0000 |
commit | 89795d2924c955cef1fa149d0fb948beb576ac4e (patch) | |
tree | e517c85b30b1b1df27e5d9e735263b52934f1b60 /community/geany-plugins | |
parent | 6ac6ab303dfbad2f1e9d11642a0a260deadf4612 (diff) | |
download | aports-89795d2924c955cef1fa149d0fb948beb576ac4e.tar.bz2 aports-89795d2924c955cef1fa149d0fb948beb576ac4e.tar.xz |
community/geany-plygins: disable plugins
The following plugins are not being built because the rely on GTK+2.0,
while geany depends on GTK+3.0:
- geanypy
- multiterm
- scope
Disable the subpackages for now.
Closes GH-7883
Diffstat (limited to 'community/geany-plugins')
-rw-r--r-- | community/geany-plugins/APKBUILD | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/community/geany-plugins/APKBUILD b/community/geany-plugins/APKBUILD index c7dfff3004..1ba326166b 100644 --- a/community/geany-plugins/APKBUILD +++ b/community/geany-plugins/APKBUILD @@ -29,18 +29,15 @@ subpackages="$pkgname-dev $pkgname-doc $pkgname-geanynumberedbookmarks $pkgname-geanypg $pkgname-geanyprj - $pkgname-geanypy $pkgname-geanyvc $pkgname-geniuspaste $pkgname-lineoperations $pkgname-lipsum - $pkgname-multiterm $pkgname-overview $pkgname-pairtaghighlighter $pkgname-pohelper $pkgname-pretty-printer:pretty_printer $pkgname-projectorganizer - $pkgname-scope $pkgname-sendmail $pkgname-shiftcolumn $pkgname-spellcheck @@ -126,6 +123,7 @@ geanyminiscript() { _plugin geanyminiscript "Geany Mini-Script filter plugin"; } geanynumberedbookmarks() { _plugin geanynumberedbookmarks "Provide users 10 numbered Bookmarks"; } geanypg() { _plugin geanypg "A plugin for Geany that allows the user to encrypt, decrypt and verify signatures with GnuPG"; } geanypy() { _plugin geanypy "Provides Python bindings for Geany"; + # Currently missing. Requires GTK+2.0 mv "$pkgdir"/usr/lib/geany/geanypy \ "$pkgdir"/usr/lib/geany/*.py \ "$subpkgdir"/usr/lib/geany/ @@ -133,7 +131,10 @@ geanypy() { _plugin geanypy "Provides Python bindings for Geany"; geanyprj() { _plugin geanyprj "Alternate project management tool for Geany"; } geanyvc() { _plugin geanyvc "Version Control for Geany"; } geniuspaste() { _plugin geniuspaste "A plugin to paste the code from Geany into different pastebins"; } -multiterm() { _plugin multiterm "Multiple terminals inside of Geany"; } +multiterm() { + # Currently missing. Requires GTK2.0 + _plugin multiterm "Multiple terminals inside of Geany"; +} lineoperations() { _plugin lineoperations "Assortment of simple line functions that can be applied to an open file"; } lipsum() { _plugin lipsum "Lorem Ipsum generator for Inserting Placeholder Text"; } overview() { _plugin overview "Overview over the code in a sidebar"; } @@ -141,7 +142,10 @@ pairtaghighlighter() { _plugin pairtaghighlighter "Finds and highlights matching pohelper() { _plugin pohelper "A plugin for Geany that improves the support for GetText translation files"; } pretty_printer() { _plugin pretty-printer "XML pretty printing plugin for Geany"; } projectorganizer() { _plugin projectorganizer "Extension of Geany's project management"; } -scope() { _plugin scope "Graphical GDB front-end"; } +scope() { + # Currently missing. Requires GTK2.0 + _plugin scope "Graphical GDB front-end"; +} sendmail() { _plugin sendmail "Send E-Mails from within Geany"; } shiftcolumn() { _plugin shiftcolumn "Move Blocks of Text horizontally"; } spellcheck() { _plugin spellcheck "Spellcheck text in Geany"; } |