[arch-commits] Commit in sigil/repos (3 files)

Antonio Rojas arojas at archlinux.org
Sat Sep 7 08:01:28 UTC 2019


    Date: Saturday, September 7, 2019 @ 08:01:28
  Author: arojas
Revision: 508350

archrelease: copy trunk to community-staging-x86_64

Added:
  sigil/repos/community-staging-x86_64/
  sigil/repos/community-staging-x86_64/PKGBUILD
    (from rev 508349, sigil/trunk/PKGBUILD)
  sigil/repos/community-staging-x86_64/sigil.install
    (from rev 508349, sigil/trunk/sigil.install)

---------------+
 PKGBUILD      |   68 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sigil.install |   10 ++++++++
 2 files changed, 78 insertions(+)

Copied: sigil/repos/community-staging-x86_64/PKGBUILD (from rev 508349, sigil/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2019-09-07 08:01:28 UTC (rev 508350)
@@ -0,0 +1,68 @@
+# Maintainer: Eli Schwartz <eschwartz at archlinux.org>
+# Maintainer: Alad Wenter <alad at mailbox.org>
+# Contributor: Giovanni Scafora <giovanni at archlinux.org>
+# Contributor: Larry Hajali <larryhaja [at] gmail [dot] com>
+
+pkgname=sigil
+pkgver=0.9.18
+pkgrel=2
+pkgdesc="WYSIWYG ebook editor"
+arch=('x86_64')
+url="https://sigil-ebook.com/"
+license=('GPL3')
+depends=('hicolor-icon-theme' 'hunspell' 'mathjax2' 'minizip' 'python-css-parser'
+         'python-lxml' 'qt5-webengine')
+makedepends=('qt5-tools' 'cmake')
+optdepends=('hunspell-en_US: for English dictionary support'
+            'hyphen-en: for English hyphenation support in plugins'
+            'pageedit: external editor to replace BookView'
+            'python-html5lib: recommended for plugins'
+            'python-chardet: recommended for plugins'
+            'python-cssselect: recommended for plugins'
+            'python-pillow: recommended for plugins'
+            'python-regex: recommended for plugins'
+            'python-pyqt5: recommended for plugins'
+            'tk: recommended for plugins')
+install=${pkgname}.install
+source=("Sigil-${pkgver}.tar.gz::https://github.com/Sigil-Ebook/Sigil/archive/${pkgver}.tar.gz"
+        "https://github.com/Sigil-Ebook/Sigil/releases/download/${pkgver}/Sigil-${pkgver}.tar.gz.sig")
+sha256sums=('d4ac2d178fd154d9892fcb552304b20fc12d9eb4b2be5a222c6421c18720cca6'
+            'SKIP')
+b2sums=('a20a1465032371f9d7e567fff03c859adf4bd2264e9d803efeb3bdeb3b097eca826daa36824370848aea50fffb2b2b74b28568f7dca926565dfd0948d7ade030'
+        'SKIP')
+validpgpkeys=('B5A56206AB0FBC1A24EFAB8AA166D29A8FCDAC63') # Doug Massay <douglaslmassay at gmail.com>
+
+build() {
+    mkdir -p "${srcdir}"/Sigil-${pkgver}/build
+    cd "${srcdir}"/Sigil-${pkgver}/build
+
+    cmake -G "Unix Makefiles" \
+        -DUSE_SYSTEM_LIBS=1 \
+        -DSYSTEM_LIBS_REQUIRED=1 \
+        -DINSTALL_BUNDLED_DICTS=0 \
+        -DMATHJAX_DIR=/usr/share/mathjax2 \
+        -DCMAKE_INSTALL_PREFIX=/usr \
+        -DCMAKE_INSTALL_LIBDIR=lib \
+        -DCMAKE_C_FLAGS:STRING="${CFLAGS}" \
+        -DCMAKE_CXX_FLAGS:STRING="${CXXFLAGS}" \
+        -DCMAKE_BUILD_TYPE=Release \
+        -DCMAKE_SKIP_RPATH=ON ..
+
+    make
+}
+
+package() {
+    cd "${srcdir}"/Sigil-${pkgver}/build
+    make install DESTDIR="${pkgdir}"
+
+    for _pic in 16 32 48 128 256; do
+        install -D -m 0644 ../src/Resource_Files/icon/app_icon_${_pic}.png \
+            "${pkgdir}"/usr/share/icons/hicolor/${_pic}x${_pic}/apps/${pkgname}.png
+    done
+    install -Dm644 ../src/Resource_Files/icon/app_icon_128.png \
+        "$pkgdir/usr/share/pixmaps/$pkgname.png"
+
+    # Compile python bytecode
+    python -m compileall "${pkgdir}"/usr/share/sigil/{plugin_launchers/python/,python3lib}
+    python -O -m compileall "${pkgdir}"/usr/share/sigil/{plugin_launchers/python/,python3lib}
+}

Copied: sigil/repos/community-staging-x86_64/sigil.install (from rev 508349, sigil/trunk/sigil.install)
===================================================================
--- community-staging-x86_64/sigil.install	                        (rev 0)
+++ community-staging-x86_64/sigil.install	2019-09-07 08:01:28 UTC (rev 508350)
@@ -0,0 +1,10 @@
+post_upgrade() {
+    if (( $(vercmp 0.9.13 "$2") > 0 )); then
+        cat << __EOF__
+Sigil will very possibly not work at first due to bugs in the 0.9.11 - 0.9.12 preferences code.
+Please see the following resources for migration instructions:
+  https://www.mobileread.com/forums/showthread.php?t=315748
+  https://github.com/Sigil-Ebook/Sigil/wiki#if-youre-here-because
+__EOF__
+    fi
+}



More information about the arch-commits mailing list