Tue Feb 14 09:19:43 2017 UTC ()
Update texworks to 0.6.1

Release 0.6.1 (TL'16) [May 2016]
        * Fix "Jump to Source" from PDF context menu
        * Fix fine-sync'ing close to PDF line boundaries
        * Fix loading of Qt-global translations
        * Fix pixel-alignment after zoomFitWindow in continuous mode
        * Fix handling of changing scroll bar visibilities in zoomFitWidth and
          zoomFitWindow
        * Allow horizontal scrolling by Shift+MouseWheel
        * Update translations

Release 0.6.0 (TL'16) [April 2016]
        * Complete redesign of the PDF previewer using QtPDF by Charlie Sharpsteen
        * Fast and responsive preview even at very high magnifications
        * New page modes: continuous scrolling and two-column layout
        * Text selection/copying from the PDF
        * Go back to previous view after clicking on a link using Alt+left arrow

        * Fix disappearing spellcheck underline with some fonts/font sizes in Qt 5
        * Update the width of the line number display when changing the editor font
        * Show a note in the "About Scripts" dialog for disabled script languages
        * Explicitly add a "Quit TeXworks" menu item to the global menubar on
          Mac OS X

        * Make Qt5 the default framework for building TeXworks
        * Use Travis CI for continuous integration tests and builds for Windows and
          Mac OS X
        * Add support for Lua 5.3

Release 0.4.6 (TL'15) [April 2015]
        * Implement character-level synchronization by using text searching to
          assist SyncTeX
        * Lift hardwrap line length limitation and implement (hard) unwrap
        * Always show console output tab while typesetting to show progress
        * Improve the handling of UTF-8 byte order marks
        * Improve the log parsing script
        * Improve the handling of script errors

        * Work around a race condition that causes lines to become invisible,
          subsequently leading to a crash
        * Fix incorrectly accumulating indent
        * Fix SyncTeX initialization with non-ASCII filenames
        * Fix selection of whole lines and when selecting right-to-left
        * Fix hangs and crashes when using "Fit to ..." in the PDF view
        * Fix a crash when running an invalid system command from scripts
        * Fix encoding issues when reading environment variables
        * Fix scrolling when searching for multi-line strings
        * Fix auto-completion when working with RTL languages
        * Improve the handling of Retina displays in Mac OS X
        * Fix a crash when opening PDF files from the Windows Explorer
        * Provide texworks.appdata.xml for *nix platforms

        * Fix compilation with Qt 5
        * Improve the CMake build system
        * Add support for Lua 5.2
        * Move development from Google Code to GitHub


(markd)
diff -r1.40 -r1.41 pkgsrc/editors/texworks/Makefile
diff -r1.4 -r1.5 pkgsrc/editors/texworks/PLIST
diff -r1.1.1.1 -r0 pkgsrc/editors/texworks/patches/patch-TeXworks.pro
diff -r1.3 -r1.4 pkgsrc/editors/texworks/patches/patch-getDefaultBinPaths.sh

cvs diff -r1.40 -r1.41 pkgsrc/editors/texworks/Makefile (expand / switch to unified diff)

--- pkgsrc/editors/texworks/Makefile 2017/01/25 14:36:37 1.40
+++ pkgsrc/editors/texworks/Makefile 2017/02/14 09:19:43 1.41
@@ -1,42 +1,37 @@ @@ -1,42 +1,37 @@
1# $NetBSD: Makefile,v 1.40 2017/01/25 14:36:37 wiz Exp $ 1# $NetBSD: Makefile,v 1.41 2017/02/14 09:19:43 markd Exp $
2 2
3DISTNAME= texworks-0.4.5-r1281 3DISTNAME= texworks-0.6.1
4PKGNAME= texworks-0.4.5 
5PKGREVISION= 16 
6CATEGORIES= editors 4CATEGORIES= editors
7MASTER_SITES= http://texworks.googlecode.com/files/ 5MASTER_SITES= ${MASTER_SITE_GITHUB:=TeXworks/}
 6GITHUB_PROJECT= texworks
 7GITHUB_TAG= release-${PKGVERSION_NOREV}
8 8
9MAINTAINER= markd@NetBSD.org 9MAINTAINER= markd@NetBSD.org
10HOMEPAGE= http://www.tug.org/texworks/ 10HOMEPAGE= http://www.tug.org/texworks/
11COMMENT= Simple TeX front-end program 11COMMENT= Simple TeX front-end program
12LICENSE= gnu-gpl-v2 12LICENSE= gnu-gpl-v2
13 13
14USE_LANGUAGES= c c++ 14USE_LANGUAGES= c c++
15USE_TOOLS+= pkg-config gmake 15USE_TOOLS+= pkg-config gmake
16MAKE_ENV+= INSTALL_ROOT=${DESTDIR} 16USE_CMAKE= yes
17 17
18DEPENDS+= poppler-data>=0.4.5:../../print/poppler-data 18CMAKE_ARGS+= -DWITH_LUA:BOOL=OFF
19 19CMAKE_ARGS+= -DWITH_PYTHON:BOOL=OFF
20WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} 20CMAKE_ARGS+= -DTeXworks_DIC_DIR:PATH=share/hunspell
 21CMAKE_ARGS+= -DTeXworks_MAN_DIR:PATH=${PKGMANDIR}/man1
21 22
22SUBST_CLASSES+= man 23DEPENDS+= poppler-data>=0.4.5:../../print/poppler-data
23SUBST_STAGE.man= post-configure 
24SUBST_FILES.man= Makefile 
25SUBST_SED.man= -e "s!/share/man/man1!/${PKGMANDIR}/man1!g" 
26 24
27pre-configure: 25pre-configure:
28 ${LN} -sf ${QTDIR}/bin/qmake ${BUILDLINK_DIR}/bin/ 26 ${LN} -sf ${QTDIR}/bin/qmake ${BUILDLINK_DIR}/bin/
29 27
30do-configure: 
31 cd ${WRKSRC}; env QTDIR=${QTDIR} qmake INSTALL_PREFIX=${PREFIX} TW_DICPATH=${BUILDLINK_PREFIX.hunspell}/share/hunspell 
32 
33BUILDLINK_DEPMETHOD.qt4-tools= full 28BUILDLINK_DEPMETHOD.qt4-tools= full
34 29
35.include "../../devel/zlib/buildlink3.mk" 30.include "../../devel/zlib/buildlink3.mk"
36.include "../../print/poppler-qt4/buildlink3.mk" 31.include "../../print/poppler-qt4/buildlink3.mk"
37.include "../../textproc/hunspell/buildlink3.mk" 32.include "../../textproc/hunspell/buildlink3.mk"
38.include "../../x11/qt4-libs/buildlink3.mk" 33.include "../../x11/qt4-libs/buildlink3.mk"
39.include "../../x11/qt4-tools/buildlink3.mk" 34.include "../../x11/qt4-tools/buildlink3.mk"
40.include "../../x11/qt4-qdbus/buildlink3.mk" 35.include "../../x11/qt4-qdbus/buildlink3.mk"
41.include "../../sysutils/desktop-file-utils/desktopdb.mk" 36.include "../../sysutils/desktop-file-utils/desktopdb.mk"
42.include "../../mk/bsd.pkg.mk" 37.include "../../mk/bsd.pkg.mk"

cvs diff -r1.4 -r1.5 pkgsrc/editors/texworks/PLIST (expand / switch to unified diff)

--- pkgsrc/editors/texworks/PLIST 2015/12/29 06:14:58 1.4
+++ pkgsrc/editors/texworks/PLIST 2017/02/14 09:19:43 1.5
@@ -1,97 +1,9 @@ @@ -1,97 +1,9 @@
1@comment $NetBSD: PLIST,v 1.4 2015/12/29 06:14:58 dholland Exp $ 1@comment $NetBSD: PLIST,v 1.5 2017/02/14 09:19:43 markd Exp $
2bin/texworks 2bin/texworks
3man/man1/texworks.1 3man/man1/texworks.1
 4share/appdata/texworks.appdata.xml
4share/applications/texworks.desktop 5share/applications/texworks.desktop
5share/doc/texworks/COPYING 6share/doc/texworks/COPYING
6share/doc/texworks/NEWS 7share/doc/texworks/NEWS
7share/doc/texworks/README 8share/doc/texworks/README.md
8share/pixmaps/TeXworks.png 9share/pixmaps/TeXworks.png
9share/texworks-help/en/Acknowledgements.html 
10share/texworks-help/en/AdvanceduseScripting.html 
11share/texworks-help/en/Beyondthismanual.html 
12share/texworks-help/en/CompilingTw.html 
13share/texworks-help/en/CustomizingTw.html 
14share/texworks-help/en/Firststeps.html 
15share/texworks-help/en/GoingfurtherEditingtools.html 
16share/texworks-help/en/GoingfurtherOthertools.html 
17share/texworks-help/en/Installation.html 
18share/texworks-help/en/Introduction.html 
19share/texworks-help/en/Regularexpressions.html 
20share/texworks-help/en/TeXworks-manual.pdf 
21share/texworks-help/en/bibname.html 
22share/texworks-help/en/contentsname.html 
23share/texworks-help/en/images/LMB.png 
24share/texworks-help/en/images/Linux.png 
25share/texworks-help/en/images/Mac.png 
26share/texworks-help/en/images/MacCmdKey.png 
27share/texworks-help/en/images/MacOptKey.png 
28share/texworks-help/en/images/RMB.png 
29share/texworks-help/en/images/TeXworks.png 
30share/texworks-help/en/images/Windows.png 
31share/texworks-help/en/images/cmsy10-c-41.png 
32share/texworks-help/en/images/cmsy10-c-4d.png 
33share/texworks-help/en/images/cmsy10-c-53.png 
34share/texworks-help/en/images/consoleOutput.png 
35share/texworks-help/en/images/errorParsingScript.png 
36share/texworks-help/en/images/example.png 
37share/texworks-help/en/images/iconAbortTypesetting.png 
38share/texworks-help/en/images/iconTypeset.png 
39share/texworks-help/en/images/index0x.png 
40share/texworks-help/en/images/index1x.png 
41share/texworks-help/en/images/index2x.png 
42share/texworks-help/en/images/index3x.png 
43share/texworks-help/en/images/index4x.png 
44share/texworks-help/en/images/index5x.png 
45share/texworks-help/en/images/index6x.png 
46share/texworks-help/en/images/index7x.png 
47share/texworks-help/en/images/index8x.png 
48share/texworks-help/en/images/interface-summary.png 
49share/texworks-help/en/images/replaceDialog.png 
50share/texworks-help/en/images/screenshotHardWrapDlg.png 
51share/texworks-help/en/images/toolbar1.png 
52share/texworks-help/en/images/toolbar2.png 
53share/texworks-help/en/index.css 
54share/texworks-help/en/index.html 
55share/texworks-help/en/index10.html 
56share/texworks-help/en/index12.html 
57share/texworks-help/en/index13.html 
58share/texworks-help/en/index14.html 
59share/texworks-help/en/index15.html 
60share/texworks-help/en/index16.html 
61share/texworks-help/en/index17.html 
62share/texworks-help/en/index18.html 
63share/texworks-help/en/index19.html 
64share/texworks-help/en/index2.html 
65share/texworks-help/en/index20.html 
66share/texworks-help/en/index21.html 
67share/texworks-help/en/index23.html 
68share/texworks-help/en/index24.html 
69share/texworks-help/en/index25.html 
70share/texworks-help/en/index26.html 
71share/texworks-help/en/index27.html 
72share/texworks-help/en/index28.html 
73share/texworks-help/en/index29.html 
74share/texworks-help/en/index30.html 
75share/texworks-help/en/index32.html 
76share/texworks-help/en/index33.html 
77share/texworks-help/en/index34.html 
78share/texworks-help/en/index36.html 
79share/texworks-help/en/index37.html 
80share/texworks-help/en/index40.html 
81share/texworks-help/en/index41.html 
82share/texworks-help/en/index42.html 
83share/texworks-help/en/index43.html 
84share/texworks-help/en/index44.html 
85share/texworks-help/en/index45.html 
86share/texworks-help/en/index46.html 
87share/texworks-help/en/index47.html 
88share/texworks-help/en/index48.html 
89share/texworks-help/en/index49.html 
90share/texworks-help/en/index5.html 
91share/texworks-help/en/index50.html 
92share/texworks-help/en/index6.html 
93share/texworks-help/en/index8.html 
94share/texworks-help/en/index9.html 
95share/texworks-help/en/indexname.html 
96share/texworks-help/en/manual.css 
97share/texworks-help/en/tw-help-title.txt 

File Deleted: pkgsrc/editors/texworks/patches/Attic/patch-TeXworks.pro

cvs diff -r1.3 -r1.4 pkgsrc/editors/texworks/patches/patch-getDefaultBinPaths.sh (expand / switch to unified diff)

--- pkgsrc/editors/texworks/patches/patch-getDefaultBinPaths.sh 2014/01/14 08:56:08 1.3
+++ pkgsrc/editors/texworks/patches/patch-getDefaultBinPaths.sh 2017/02/14 09:19:43 1.4
@@ -1,25 +1,27 @@ @@ -1,25 +1,27 @@
1$NetBSD: patch-getDefaultBinPaths.sh,v 1.3 2014/01/14 08:56:08 markd Exp $ 1$NetBSD: patch-getDefaultBinPaths.sh,v 1.4 2017/02/14 09:19:43 markd Exp $
2 2
3--- getDefaultBinPaths.sh.orig 2013-04-14 13:45:23.000000000 +0000 3--- getDefaultBinPaths.sh.orig 2016-05-01 08:43:14.000000000 +0000
4+++ getDefaultBinPaths.sh 4+++ getDefaultBinPaths.sh
5@@ -74,13 +74,13 @@ case $PLATFORM in 5@@ -74,14 +74,14 @@ case $PLATFORM in
6 *) OS=`echo $PLATFORM | sed 's/.*-//'` 6 *) OS=`echo $PLATFORM | sed 's/.*-//'`
7 esac 7 esac
8  8
 9-appendPath "/usr/local/texlive/2017/bin/$ARCH-$OS"
 10-appendPath "/usr/local/texlive/2016/bin/$ARCH-$OS"
 11-appendPath "/usr/local/texlive/2015/bin/$ARCH-$OS"
 12-appendPath "/usr/local/texlive/2014/bin/$ARCH-$OS"
9-appendPath "/usr/local/texlive/2013/bin/$ARCH-$OS" 13-appendPath "/usr/local/texlive/2013/bin/$ARCH-$OS"
10-appendPath "/usr/local/texlive/2012/bin/$ARCH-$OS" 14-appendPath "/usr/local/texlive/2012/bin/$ARCH-$OS"
11-appendPath "/usr/local/texlive/2011/bin/$ARCH-$OS" 15-appendPath "/usr/local/texlive/2011/bin/$ARCH-$OS"
12-appendPath "/usr/local/texlive/2010/bin/$ARCH-$OS" 16-appendPath "/usr/local/texlive/2010/bin/$ARCH-$OS"
13-appendPath "/usr/local/texlive/2009/bin/$ARCH-$OS" 17+#appendPath "/usr/local/texlive/2017/bin/$ARCH-$OS"
14-appendPath "/usr/local/texlive/2008/bin/$ARCH-$OS" 18+#appendPath "/usr/local/texlive/2016/bin/$ARCH-$OS"
15-appendPath "/usr/local/texlive/2007/bin/$ARCH-$OS" 19+#appendPath "/usr/local/texlive/2015/bin/$ARCH-$OS"
 20+#appendPath "/usr/local/texlive/2014/bin/$ARCH-$OS"
16+#appendPath "/usr/local/texlive/2013/bin/$ARCH-$OS" 21+#appendPath "/usr/local/texlive/2013/bin/$ARCH-$OS"
17+#appendPath "/usr/local/texlive/2012/bin/$ARCH-$OS" 22+#appendPath "/usr/local/texlive/2012/bin/$ARCH-$OS"
18+#appendPath "/usr/local/texlive/2011/bin/$ARCH-$OS" 23+#appendPath "/usr/local/texlive/2011/bin/$ARCH-$OS"
19+#appendPath "/usr/local/texlive/2010/bin/$ARCH-$OS" 24+#appendPath "/usr/local/texlive/2010/bin/$ARCH-$OS"
20+#appendPath "/usr/local/texlive/2009/bin/$ARCH-$OS" 
21+#appendPath "/usr/local/texlive/2008/bin/$ARCH-$OS" 
22+#appendPath "/usr/local/texlive/2007/bin/$ARCH-$OS" 
23  25
24 for TEXLIVEROOT in /usr/local/texlive/* /opt/texlive/*; do 26 for TEXLIVEROOT in /usr/local/texlive/* /opt/texlive/*; do
25 # Check if this is really a folder (e.g., /opt/... might not exist) 27 # Check if this is really a folder (e.g., /opt/... might not exist)