[arch-commits] Commit in texmacs/repos/extra-x86_64 (4 files)
Antonio Rojas
arojas at archlinux.org
Sat Jul 14 09:28:18 UTC 2018
Date: Saturday, July 14, 2018 @ 09:28:18
Author: arojas
Revision: 328656
archrelease: copy trunk to extra-x86_64
Added:
texmacs/repos/extra-x86_64/PKGBUILD
(from rev 328655, texmacs/trunk/PKGBUILD)
texmacs/repos/extra-x86_64/texmacs-fix-linking.patch
(from rev 328655, texmacs/trunk/texmacs-fix-linking.patch)
Deleted:
texmacs/repos/extra-x86_64/PKGBUILD
texmacs/repos/extra-x86_64/texmacs-fusion.patch
---------------------------+
PKGBUILD | 119 +++++++++++++++++++++-----------------------
texmacs-fix-linking.patch | 18 ++++++
texmacs-fusion.patch | 101 -------------------------------------
3 files changed, 76 insertions(+), 162 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2018-07-14 09:27:50 UTC (rev 328655)
+++ PKGBUILD 2018-07-14 09:28:18 UTC (rev 328656)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren <ronald.archlinux.org>
-# Contributor: Damir Perisa <damir.perisa at bluewin.ch> # Contributor: Christopher Reimer <c.reimer1993 at gmail.com>
-
-pkgname=texmacs
-pkgver=1.99.6
-pkgrel=2
-pkgdesc="Free scientific text editor, inspired by TeX and GNU Emacs. WYSIWYG editor TeX-fonts and CAS-interface (Giac, GTybalt, Macaulay 2, Maxima, Octave, Pari, Qcl, R and Yacas) in one."
-arch=('x86_64')
-url="http://www.texmacs.org/"
-license=('GPL')
-depends=('perl' 'guile1.8' 'texlive-core' 'python2' 'libxext' 'freetype2' 'qt5-base')
-# do not remove texlive-core dependency, as it is needed!
-optdepends=('transfig: convert images using fig2ps'
- 'gawk: conversion of some files'
- 'ghostscript: rendering ps files'
- 'imagemagick: convert images'
- 'aspell: spell checking')
-makedepends=('ghostscript' 'cmake')
-source=(http://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${pkgver}-src.tar.gz
- texmacs-fusion.patch)
-options=('!emptydirs')
-sha1sums=('bef4d2637ad3cff0138236f07ee0031943b8de61'
- '21bdad3180f8dca6c16f4a3a43f1d96eab718b0f')
-
-prepare() {
- cd TeXmacs-${pkgver}-src
-
- sed -i 's/env python/env python2/' \
- plugins/{mathematica/bin/realpath.py,python/bin/tm_python,sage/bin/tm_sage} \
- TeXmacs/misc/inkscape_extension/texmacs_reedit.py
- sed -i 's/"python"/"python2"/' plugins/python/progs/init-python.scm
-
- sed -e 's/-Wno-deprecated-register//' -i src/CMakeLists.txt # Remove wrong flag on Linux
-
- # Fix crash with fusion style
- patch -p2 -i ../texmacs-fusion.patch
-}
-
-build() {
- cd TeXmacs-${pkgver}-src
-
- mkdir -p build
- cd build
-
- cmake .. \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DGUILECONFIG_EXECUTABLE=/usr/bin/guile-config1.8
- make
-}
-
-package() {
- cd TeXmacs-${pkgver}-src/build
- make DESTDIR=${pkgdir} install
-
- # fix fig2ps script
- sed -i 's|${prefix}|/usr|' "${pkgdir}/usr/bin/fig2ps"
- # fix launch script
- sed -e 's|\@CONFIG_LIB_PATH\@|LD_LIBRARY_PATH|g' -i "$pkgdir"/usr/bin/texmacs
-}
Copied: texmacs/repos/extra-x86_64/PKGBUILD (from rev 328655, texmacs/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2018-07-14 09:28:18 UTC (rev 328656)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor: Damir Perisa <damir.perisa at bluewin.ch> # Contributor: Christopher Reimer <c.reimer1993 at gmail.com>
+
+pkgname=texmacs
+pkgver=1.99.7
+pkgrel=1
+pkgdesc="Free scientific text editor, inspired by TeX and GNU Emacs. WYSIWYG editor TeX-fonts and CAS-interface (Giac, GTybalt, Macaulay 2, Maxima, Octave, Pari, Qcl, R and Yacas) in one."
+arch=('x86_64')
+url="http://www.texmacs.org/"
+license=('GPL')
+depends=('perl' 'guile1.8' 'texlive-core' 'python2' 'libxext' 'freetype2' 'qt5-base')
+# do not remove texlive-core dependency, as it is needed!
+optdepends=('transfig: convert images using fig2ps'
+ 'gawk: conversion of some files'
+ 'ghostscript: rendering ps files'
+ 'imagemagick: convert images'
+ 'aspell: spell checking')
+makedepends=('ghostscript' 'cmake')
+source=(http://www.texmacs.org/Download/ftp/tmftp/source/TeXmacs-${pkgver}-src.tar.gz
+ texmacs-fix-linking.patch)
+options=('!emptydirs')
+sha1sums=('6621093936bf1062adbc86a62b5765e6373454a9'
+ '7e646cd354503df014f624ce26395eefc5ef4250')
+
+prepare() {
+ cd TeXmacs-${pkgver}-src
+
+ sed -i 's/env python/env python2/' \
+ plugins/{mathematica/bin/realpath.py,python/bin/tm_python,sage/bin/tm_sage} \
+ TeXmacs/misc/inkscape_extension/texmacs_reedit.py
+ sed -i 's/"python"/"python2"/' plugins/python/progs/init-python.scm
+
+ patch -p1 -i ../texmacs-fix-linking.patch # Fix linking
+}
+
+build() {
+ cd TeXmacs-${pkgver}-src
+
+ mkdir -p build
+ cd build
+
+ cmake .. \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DGUILECONFIG_EXECUTABLE=/usr/bin/guile-config1.8
+ make
+}
+
+package() {
+ cd TeXmacs-${pkgver}-src/build
+ make DESTDIR=${pkgdir} install
+
+ # fix fig2ps script
+ sed -i 's|${prefix}|/usr|' "${pkgdir}/usr/bin/fig2ps"
+ # fix launch script
+ sed -e 's|\@CONFIG_LIB_PATH\@|LD_LIBRARY_PATH|g' -i "$pkgdir"/usr/bin/texmacs
+}
Copied: texmacs/repos/extra-x86_64/texmacs-fix-linking.patch (from rev 328655, texmacs/trunk/texmacs-fix-linking.patch)
===================================================================
--- texmacs-fix-linking.patch (rev 0)
+++ texmacs-fix-linking.patch 2018-07-14 09:28:18 UTC (rev 328656)
@@ -0,0 +1,18 @@
+--- texmacs/src/CMakeLists.txt.orig 2018-07-14 09:20:14.114218215 +0000
++++ texmacs/src/CMakeLists.txt 2018-07-14 09:21:07.651031679 +0000
+@@ -1,6 +1,8 @@
+
+ add_library(texmacs_body ${TeXmacs_All_SRCS})
+
++target_link_libraries (texmacs_body ${TeXmacs_Libraries})
++
+ add_executable (${TeXmacs_binary_name}
+ ./Texmacs/Texmacs/texmacs.cpp
+ )
+@@ -19,4 +21,4 @@
+ RUNTIME_OUTPUT_DIRECTORY ${TEXMACS_BINARY_DIR}
+ )
+
+-install(TARGETS ${TeXmacs_binary_name} DESTINATION lib/texmacs/TeXmacs/bin)
+\ No newline at end of file
++install(TARGETS ${TeXmacs_binary_name} DESTINATION lib/texmacs/TeXmacs/bin)
Deleted: texmacs-fusion.patch
===================================================================
--- texmacs-fusion.patch 2018-07-14 09:27:50 UTC (rev 328655)
+++ texmacs-fusion.patch 2018-07-14 09:28:18 UTC (rev 328656)
@@ -1,101 +0,0 @@
-From 9e95c89118cb0404eac575b40f97d8439f704bc7 Mon Sep 17 00:00:00 2001
-From: Darcy Shen <sadhen at zoho.com>
-Date: Tue, 19 Jun 2018 18:17:47 +0000
-Subject: [PATCH] fix as QTBUG-65578 indicates
-
----
- src/src/Plugins/Qt/QTMMenuHelper.cpp | 11 +++++------
- src/src/Plugins/Qt/QTMMenuHelper.hpp | 21 ---------------------
- 3 files changed, 6 insertions(+), 27 deletions(-)
-
-diff --git a/src/src/Plugins/Qt/QTMMenuHelper.cpp b/src/src/Plugins/Qt/QTMMenuHelper.cpp
-index 5f7ae7d47..d1646d7c3 100644
---- a/src/src/Plugins/Qt/QTMMenuHelper.cpp
-+++ b/src/src/Plugins/Qt/QTMMenuHelper.cpp
-@@ -241,8 +241,6 @@ QTMMinibarAction::createWidget (QWidget* parent) {
- ******************************************************************************/
-
- QTMMenuButton::QTMMenuButton (QWidget* parent) : QToolButton (parent) {
-- QTMAuxMenu m;
-- m.myInitStyleOption (&option);
- setAttribute (Qt::WA_Hover);
- }
-
-@@ -267,11 +265,13 @@ QTMMenuButton::mouseReleaseEvent (QMouseEvent* e) {
- void
- QTMMenuButton::paintEvent (QPaintEvent* e) {
- (void) e;
-- QPainter p (this);
-
- // initialize the options
- QStyleOptionToolButton opt;
- initStyleOption (&opt);
-+
-+ QPainter p (this);
-+ QStyleOptionToolButton option;
- QRect r = rect();
- option.rect = r;
- option.state = QStyle::State_Enabled | (opt.state & QStyle::State_MouseOver
-@@ -289,14 +289,13 @@ QTMMenuButton::paintEvent (QPaintEvent* e) {
- ******************************************************************************/
-
- QTMMenuWidget::QTMMenuWidget (QWidget* parent) : QWidget (parent) {
-- QTMAuxMenu m;
-- m.myInitStyleOption (&option);
- }
-
- void
- QTMMenuWidget::paintEvent(QPaintEvent* e) {
- QPainter p (this);
-- option.rect = rect ();
-+ QStyleOptionMenuItem option;
-+ option.rect = rect();
- style()->drawControl (QStyle::CE_MenuEmptyArea, &option, &p, this);
- QWidget::paintEvent (e);
- }
-diff --git a/src/src/Plugins/Qt/QTMMenuHelper.hpp b/src/src/Plugins/Qt/QTMMenuHelper.hpp
-index 7a3098c87..8dfb319eb 100644
---- a/src/src/Plugins/Qt/QTMMenuHelper.hpp
-+++ b/src/src/Plugins/Qt/QTMMenuHelper.hpp
-@@ -188,23 +188,6 @@ class QTMMinibarAction : public QWidgetAction {
- };
-
-
--/*!
-- We use this class to properly initialize style options for our QWidgets
-- which have to blend into QMenus. See #QTBUG-1993 and #QTBUG-7707.
-- */
--class QTMAuxMenu : public QMenu {
-- Q_OBJECT
--
--public:
-- QTMAuxMenu() : QMenu() { }
--
-- void myInitStyleOption (QStyleOptionMenuItem* option) const {
-- QAction action (NULL);
-- initStyleOption (option, &action);
-- }
--};
--
--
- /*! QTMMenuButton is a custom button appropriate for menus.
-
- We need to subclass QToolButton for two reasons:
-@@ -215,8 +198,6 @@ class QTMAuxMenu : public QMenu {
- class QTMMenuButton: public QToolButton {
- Q_OBJECT
-
-- QStyleOptionMenuItem option;
--
- public:
- QTMMenuButton (QWidget* parent = NULL);
-
-@@ -231,8 +212,6 @@ class QTMMenuButton: public QToolButton {
- class QTMMenuWidget: public QWidget {
- Q_OBJECT
-
-- QStyleOptionMenuItem option;
--
- public:
- QTMMenuWidget (QWidget* parent = NULL);
- void paintEvent(QPaintEvent *event);
More information about the arch-commits
mailing list