Wed Jan 2 15:35:12 2019 UTC ()
tint2: update to 16.6.1

2018-08-05 16.6.1
2018-08-04 16.6
2018-08-04 16.5
2018-05-03 16.4
2018-04-17 16.3
- Bugfixes

2018-01-21 16.2
- Preliminary high DPI support

2017-12-20 16.0
- Added Spanish translation (contributed by Vicmz)
- Executor: updated tooltip documentation (issue #676)
- Systray: warn on duplicate config option systray_name_filter (issue #652)
- Taskbar: thumbnail support in tooltips
- Use C11 if possible to support generic printing for unit tests (should fall back to C99)

2017-09-02 15.0
- Panel:
  - _NET_WM_PID is set correctly, so now tint2 can be interacted with more easily from wmctrl and similar apps
- Taskbar: new config option taskbar_hide_different_desktop
- Battery:
  - New config option bat1_format and bat2_format
      - New config option battery_full_cmd
      - Better "Unknown" state handling
- Executor:
  - Hide if output is empty
  - If no user tooltip is set, displays the script standard error as tooltip.
    Tooltip is multiline, can be cleared with the VT100 clear screen sequence, in shell: (>&2 echo -en "\033[2J").
    Long tooltips are truncated to 4096 characters.
- Launcher:
  - Drag and drop now handles correctly text/uri-list
  - Support for Terminal=true
  - Support for %f and %F


(tnn)
diff -r1.46 -r1.47 pkgsrc/x11/tint2/Makefile
diff -r1.4 -r1.5 pkgsrc/x11/tint2/PLIST
diff -r1.7 -r1.8 pkgsrc/x11/tint2/distinfo
diff -r1.4 -r1.5 pkgsrc/x11/tint2/patches/patch-aa
diff -r1.1 -r0 pkgsrc/x11/tint2/patches/patch-get_version.sh

cvs diff -r1.46 -r1.47 pkgsrc/x11/tint2/Makefile (expand / switch to unified diff)

--- pkgsrc/x11/tint2/Makefile 2018/11/14 22:22:50 1.46
+++ pkgsrc/x11/tint2/Makefile 2019/01/02 15:35:12 1.47
@@ -1,42 +1,42 @@ @@ -1,42 +1,42 @@
1# $NetBSD: Makefile,v 1.46 2018/11/14 22:22:50 kleink Exp $ 1# $NetBSD: Makefile,v 1.47 2019/01/02 15:35:12 tnn Exp $
2 2
3DISTNAME= tint2-0.14.6 3DISTNAME= tint2-v16.6.1
4PKGREVISION= 4 4PKGNAME= ${DISTNAME:S/-v/-/}
5CATEGORIES= x11 5CATEGORIES= x11
6MASTER_SITES= ${MASTER_SITE_GITHUB:=o9000/} 6MASTER_SITES= https://gitlab.com/o9000/tint2/-/archive/v16.6.1/
7GITHUB_TAG= v${PKGVERSION_NOREV} 7EXTRACT_SUFX= .tar.bz2
8 8
9MAINTAINER= fernandotcl@gmail.com 9MAINTAINER= fernandotcl@gmail.com
10HOMEPAGE= https://gitlab.com/o9000/tint2 10HOMEPAGE= https://gitlab.com/o9000/tint2
11COMMENT= Tint2 is a simple panel/taskbar 11COMMENT= Lightweight panel/taskbar for Linux and BSD
12LICENSE= gnu-gpl-v2 12LICENSE= gnu-gpl-v2
13 13
14USE_LANGUAGES= c c++ # XXX CMake. pkg does not really need c++ 14USE_LANGUAGES= c c++ # XXX CMake. pkg does not really need c++
15USE_CMAKE= yes 15USE_CMAKE= yes
16USE_LIBTOOL= yes 16USE_LIBTOOL= yes
17USE_TOOLS+= pkg-config 17USE_TOOLS+= pkg-config
18 18
19INSTALLATION_DIRS= share/examples/tint2 19INSTALLATION_DIRS= share/examples/tint2
20OWN_DIRS= ${PKG_SYSCONFDIR}/xdg/tint2 20OWN_DIRS= ${PKG_SYSCONFDIR}/xdg/tint2
21CONF_FILES= ${PREFIX}/share/examples/tint2/tint2rc \ 21CONF_FILES= ${PREFIX}/share/examples/tint2/tint2rc \
22 ${PKG_SYSCONFDIR}/xdg/tint2/tint2rc 22 ${PKG_SYSCONFDIR}/xdg/tint2/tint2rc
23 23
24CMAKE_ARGS.Linux= -DENABLE_BATTERY=ON 24CMAKE_ARGS.Linux= -DENABLE_BATTERY=ON
25CMAKE_ARGS.*= -DENABLE_BATTERY=OFF 25CMAKE_ARGS.*= -DENABLE_BATTERY=OFF
26 26
27post-install: 27post-install:
28 ${INSTALL_DATA} ${WRKSRC}/themes/tint2rc \ 28 ${INSTALL_DATA} ${WRKSRC}/themes/tint2rc \
29 ${DESTDIR}${PREFIX}/share/examples/tint2 29 ${DESTDIR}${PREFIX}/share/examples/tint2
30 30
31.include "../../devel/cmake/buildlink3.mk" 31.include "../../devel/cmake/buildlink3.mk"
 32.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
32.include "../../graphics/imlib2/buildlink3.mk" 33.include "../../graphics/imlib2/buildlink3.mk"
33.include "../../graphics/librsvg/buildlink3.mk" 34.include "../../graphics/librsvg/buildlink3.mk"
34.include "../../sysutils/desktop-file-utils/desktopdb.mk" 35.include "../../sysutils/desktop-file-utils/desktopdb.mk"
35.include "../../x11/gtk2/buildlink3.mk" 36.include "../../x11/gtk2/buildlink3.mk"
36.include "../../x11/libXcomposite/buildlink3.mk" 37.include "../../x11/libXcomposite/buildlink3.mk"
37.include "../../x11/libXdamage/buildlink3.mk" 38.include "../../x11/libXdamage/buildlink3.mk"
38.include "../../x11/libXinerama/buildlink3.mk" 39.include "../../x11/libXinerama/buildlink3.mk"
39.include "../../x11/libXrandr/buildlink3.mk" 40.include "../../x11/libXrandr/buildlink3.mk"
40.include "../../x11/py-gtk2/buildlink3.mk" 
41.include "../../x11/startup-notification/buildlink3.mk" 41.include "../../x11/startup-notification/buildlink3.mk"
42.include "../../mk/bsd.pkg.mk" 42.include "../../mk/bsd.pkg.mk"

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

--- pkgsrc/x11/tint2/PLIST 2017/07/28 08:42:17 1.4
+++ pkgsrc/x11/tint2/PLIST 2019/01/02 15:35:12 1.5
@@ -1,52 +1,39 @@ @@ -1,52 +1,39 @@
1@comment $NetBSD: PLIST,v 1.4 2017/07/28 08:42:17 tnn Exp $ 1@comment $NetBSD: PLIST,v 1.5 2019/01/02 15:35:12 tnn Exp $
2bin/tint2 2bin/tint2
3bin/tint2conf 3bin/tint2conf
4man/man1/tint2.1 4man/man1/tint2.1
5share/applications/tint2.desktop 5share/applications/tint2.desktop
6share/applications/tint2conf.desktop 6share/applications/tint2conf.desktop
7share/doc/tint2/AUTHORS 7share/doc/tint2/AUTHORS
8share/doc/tint2/ChangeLog 8share/doc/tint2/ChangeLog
9share/doc/tint2/README.md 9share/doc/tint2/README.md
10share/doc/tint2/html/images/panel_padding.jpg 10share/doc/tint2/html/images/panel_padding.jpg
11share/doc/tint2/html/images/panel_size_margin.jpg 11share/doc/tint2/html/images/panel_size_margin.jpg
12share/doc/tint2/html/images/task_padding.jpg 12share/doc/tint2/html/images/task_padding.jpg
13share/doc/tint2/html/images/taskbar_padding.jpg 13share/doc/tint2/html/images/taskbar_padding.jpg
14share/doc/tint2/html/manual.html 14share/doc/tint2/html/manual.html
15share/doc/tint2/html/readme.html 15share/doc/tint2/html/readme.html
16share/doc/tint2/tint2.md 16share/doc/tint2/tint2.md
17share/examples/tint2/tint2rc 17share/examples/tint2/tint2rc
18share/icons/hicolor/scalable/apps/tint2.svg 18share/icons/hicolor/scalable/apps/tint2.svg
19share/icons/hicolor/scalable/apps/tint2conf.svg 19share/icons/hicolor/scalable/apps/tint2conf.svg
20share/locale/bs/LC_MESSAGES/tint2conf.mo 20share/locale/bs/LC_MESSAGES/tint2conf.mo
 21share/locale/es/LC_MESSAGES/tint2conf.mo
21share/locale/fr/LC_MESSAGES/tint2conf.mo 22share/locale/fr/LC_MESSAGES/tint2conf.mo
22share/locale/hr/LC_MESSAGES/tint2conf.mo 23share/locale/hr/LC_MESSAGES/tint2conf.mo
23share/locale/pl/LC_MESSAGES/tint2conf.mo 24share/locale/pl/LC_MESSAGES/tint2conf.mo
24share/locale/ru/LC_MESSAGES/tint2conf.mo 25share/locale/ru/LC_MESSAGES/tint2conf.mo
25share/locale/sr/LC_MESSAGES/tint2conf.mo 26share/locale/sr/LC_MESSAGES/tint2conf.mo
26share/mime/packages/tint2conf.xml 27share/mime/packages/tint2conf.xml
27share/tint2/default_icon.png 28share/tint2/default_icon.png
28share/tint2/horizontal-dark-opaque.tint2rc 29share/tint2/horizontal-dark-opaque.tint2rc
29share/tint2/horizontal-dark-transparent.tint2rc 30share/tint2/horizontal-dark-transparent.tint2rc
 31share/tint2/horizontal-icon-only.tint2rc
30share/tint2/horizontal-light-opaque.tint2rc 32share/tint2/horizontal-light-opaque.tint2rc
31share/tint2/horizontal-light-transparent.tint2rc 33share/tint2/horizontal-light-transparent.tint2rc
32share/tint2/icon_and_text_1.tint2rc 34share/tint2/horizontal-text-only.tint2rc
33share/tint2/icon_and_text_2.tint2rc 
34share/tint2/icon_and_text_3.tint2rc 
35share/tint2/icon_and_text_4.tint2rc 
36share/tint2/icon_only_1.tint2rc 
37share/tint2/icon_only_2.tint2rc 
38share/tint2/icon_only_3.tint2rc 
39share/tint2/icon_only_4.tint2rc 
40share/tint2/icon_only_6.tint2rc 
41share/tint2/icon_only_7.tint2rc 
42share/tint2/text_only_1.tint2rc 
43share/tint2/text_only_2.tint2rc 
44share/tint2/text_only_3.tint2rc 
45share/tint2/text_only_4.tint2rc 
46share/tint2/text_only_5.tint2rc 
47share/tint2/text_only_6.tint2rc 
48share/tint2/vertical-dark-opaque.tint2rc 35share/tint2/vertical-dark-opaque.tint2rc
49share/tint2/vertical-dark-transparent.tint2rc 36share/tint2/vertical-dark-transparent.tint2rc
50share/tint2/vertical-light-opaque.tint2rc 37share/tint2/vertical-light-opaque.tint2rc
51share/tint2/vertical-light-transparent.tint2rc 38share/tint2/vertical-light-transparent.tint2rc
52share/tint2/vertical-neutral-icons.tint2rc 39share/tint2/vertical-neutral-icons.tint2rc

cvs diff -r1.7 -r1.8 pkgsrc/x11/tint2/distinfo (expand / switch to unified diff)

--- pkgsrc/x11/tint2/distinfo 2017/07/28 08:42:17 1.7
+++ pkgsrc/x11/tint2/distinfo 2019/01/02 15:35:12 1.8
@@ -1,8 +1,7 @@ @@ -1,8 +1,7 @@
1$NetBSD: distinfo,v 1.7 2017/07/28 08:42:17 tnn Exp $ 1$NetBSD: distinfo,v 1.8 2019/01/02 15:35:12 tnn Exp $
2 2
3SHA1 (tint2-0.14.6.tar.gz) = 19627ec1948ccce6e30dba3f17e4481bbb232b52 3SHA1 (tint2-v16.6.1.tar.bz2) = a2645c3d82c9759592539b5eba8d5312a559533d
4RMD160 (tint2-0.14.6.tar.gz) = 4733f93d22b7761045831d130ee7f6374e60dfad 4RMD160 (tint2-v16.6.1.tar.bz2) = 3e4db9b0cb9c45a411419eee930cb4df4e0c2cf3
5SHA512 (tint2-0.14.6.tar.gz) = c27f98d8236e62ae3f71b9cedfba5a4355a49425dcc6cb49c9da0fbca6447ed2ef6844e478f88d642c92e29551c1125bc65cd254e3ac63925c859ed55c351f81 5SHA512 (tint2-v16.6.1.tar.bz2) = d82e64883f40ae93daa67b4dc0aaa530456d28ee2d52c224d8eb1c91bc59bc43ba530843250274079e1567cd30eb9fd1eb79324aeec1af4bb3d748a046fd93aa
6Size (tint2-0.14.6.tar.gz) = 465895 bytes 6Size (tint2-v16.6.1.tar.bz2) = 398345 bytes
7SHA1 (patch-aa) = ed1232cd81cbdc7770c113192cea590e9c07531f 7SHA1 (patch-aa) = fdf0fe697ceb576068b0873532ac406b59752370
8SHA1 (patch-get_version.sh) = 70a7df800d7687102699eb37bcb61b90b13c725a 

cvs diff -r1.4 -r1.5 pkgsrc/x11/tint2/patches/patch-aa (expand / switch to unified diff)

--- pkgsrc/x11/tint2/patches/patch-aa 2017/07/28 08:42:17 1.4
+++ pkgsrc/x11/tint2/patches/patch-aa 2019/01/02 15:35:12 1.5
@@ -1,13 +1,15 @@ @@ -1,13 +1,15 @@
1$NetBSD: patch-aa,v 1.4 2017/07/28 08:42:17 tnn Exp $ 1$NetBSD: patch-aa,v 1.5 2019/01/02 15:35:12 tnn Exp $
2 2
3--- CMakeLists.txt.orig 2017-06-11 09:15:36.000000000 +0000 3handle config file
 4
 5--- CMakeLists.txt.orig 2018-08-05 21:27:23.000000000 +0000
4+++ CMakeLists.txt 6+++ CMakeLists.txt
5@@ -257,7 +257,7 @@ set_target_properties( tint2 PROPERTIES  7@@ -289,7 +289,7 @@ set_target_properties( tint2 PROPERTIES
6 install( TARGETS tint2 DESTINATION bin ) 8 install( TARGETS tint2 DESTINATION bin )
7 install( FILES tint2.svg DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/scalable/apps ) 9 install( FILES tint2.svg DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/scalable/apps )
8 install( FILES tint2.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications ) 10 install( FILES tint2.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications )
9-install( FILES themes/tint2rc DESTINATION /etc/xdg/tint2 ) 11-install( FILES themes/tint2rc DESTINATION ${CMAKE_INSTALL_FULL_SYSCONFDIR}/xdg/tint2 )
10+#install( FILES themes/tint2rc DESTINATION /etc/xdg/tint2 ) 12+#install( FILES themes/tint2rc DESTINATION ${CMAKE_INSTALL_FULL_SYSCONFDIR}/xdg/tint2 )
11 install( FILES default_icon.png DESTINATION ${CMAKE_INSTALL_DATADIR}/tint2 ) 13 install( FILES default_icon.png DESTINATION ${CMAKE_INSTALL_DATADIR}/tint2 )
12 install( FILES AUTHORS ChangeLog README.md doc/tint2.md DESTINATION ${docdir} ) 14 install( FILES AUTHORS ChangeLog README.md doc/tint2.md DESTINATION ${docdir} )
13 install( FILES doc/manual.html doc/readme.html DESTINATION ${htmldir} ) 15 install( FILES doc/manual.html doc/readme.html DESTINATION ${htmldir} )

File Deleted: pkgsrc/x11/tint2/patches/Attic/patch-get_version.sh