summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorTaboon Egon2018-11-04 12:07:10 +0100
committerTaboon Egon2018-11-04 12:07:10 +0100
commita301c5c950648dcd829d9447504ccc5a8b3634b2 (patch)
tree3ba12ac33e4488311405b71a3d80d8281d3801bb
parent71dca882c644e1e2306d8d900a6feb603794c936 (diff)
downloadaur-a301c5c950648dcd829d9447504ccc5a8b3634b2.tar.gz
Upgrading to version 1.0.7
-rw-r--r--.SRCINFO9
-rw-r--r--PKGBUILD8
-rw-r--r--semantik.install38
3 files changed, 7 insertions, 48 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 626f49d54049..b54b904fbc5e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,8 @@
pkgbase = semantik
pkgdesc = mindmapping-like tool for document generation (reports, thesis, etc)
- pkgver = 1.0.6
- pkgrel = 2
+ pkgver = 1.0.7
+ pkgrel = 1
url = https://waf.io/semantik.html
- install = semantik.install
arch = x86_64
license = GPL3
depends = qt5-webengine
@@ -15,8 +14,8 @@ pkgbase = semantik
depends = desktop-file-utils
depends = python-pygments
optdepends = minted: syntax highlighting support in documents generated by LaTeX
- source = https://waf.io/semantik-1.0.6.tar.bz2
- sha256sums = 2a36def6c63a5e03f66f5d416964f544e7d1e26a794798be492d2b4869657a4a
+ source = https://waf.io/semantik-1.0.7.tar.bz2
+ sha256sums = 0038224221453f28adbee53218a5f5611470365457cd9fb9ddd75ec8d2817713
pkgname = semantik
diff --git a/PKGBUILD b/PKGBUILD
index 891364634c0f..5a4091fa2fbe 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,20 +1,18 @@
# Maintainer: Taboon Egon <te451 -_AT_- netcourrier -_DOT_- com>
-# Contributor: TrialnError <autumn-wind -_AT_- web -_DOT_- de>
# Contributor: Narrat <address??? at domain??? dot tld???>
# Contributor: der_fenix <derfenix -_AT_- gmail -_DOT_- com>
pkgname=semantik
-pkgver=1.0.6
-pkgrel=2
+pkgver=1.0.7
+pkgrel=1
pkgdesc="mindmapping-like tool for document generation (reports, thesis, etc)"
arch=('x86_64')
url="https://waf.io/semantik.html"
license=('GPL3')
depends=('qt5-webengine' 'qt5-svg' 'kdelibs4support' 'kio' 'python'
'shared-mime-info' 'desktop-file-utils' 'python-pygments')
-install=$pkgname.install
optdepends=('minted: syntax highlighting support in documents generated by LaTeX')
source=("https://waf.io/${pkgname}-${pkgver}.tar.bz2")
-sha256sums=('2a36def6c63a5e03f66f5d416964f544e7d1e26a794798be492d2b4869657a4a')
+sha256sums=('0038224221453f28adbee53218a5f5611470365457cd9fb9ddd75ec8d2817713')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/semantik.install b/semantik.install
deleted file mode 100644
index dca3771c2ee6..000000000000
--- a/semantik.install
+++ /dev/null
@@ -1,38 +0,0 @@
-# Colored makepkg-like functions
-msg_blue() {
- printf "${blue}==>${bold} $1${all_off}\n"
-}
-
-note1() {
- printf "${blue}==>${yellow} NOTE:${bold} $1${all_off}\n"
-}
-
-note2() {
- printf "${blue}==> ${bold} $1${all_off}\n"
-}
-
-all_off="$(tput sgr0)"
-bold="${all_off}$(tput bold)"
-blue="${bold}$(tput setaf 4)"
-yellow="${bold}$(tput setaf 3)"
-
-post_install() {
- note1 "In order to have code syntax highlighting in documents generated by LaTeX,"
- note2 "you will have to install minted. Then, to make it work, add this"
- note2 "to your .bashrc :"
- note2 "export DISABLING_SHELL_ESCAPE_FOR_SEMANTIK=1"
- note1 "As this disables the shell escaping options for Pdflatex, a maliciously"
- note2 "creafted document might run arbitrary commands on your computer."
- note2 "Only build Semantik documents that you have created yourself !"
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- note1 "You can now remove from your .bashrc this line :"
- note2 "export DISABLING_SHELL_ESCAPE_FOR_SEMANTIK=1"
- note2 "if you have installed minted alongside Semantik for code"
- note2 "syntax highlighting in documents generated by LaTex."
-}