pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/devhelp devhelp: Update to 3.34.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7d50d605e0be
branches:  trunk
changeset: 409896:7d50d605e0be
user:      nia <nia%pkgsrc.org@localhost>
date:      Wed Jan 22 18:11:53 2020 +0000

description:
devhelp: Update to 3.34.0

Updated to GTK 3 / GNOME 3 version.

diffstat:

 devel/devhelp/DESCR            |   17 ++----
 devel/devhelp/Makefile         |   60 ++++++++++-------------
 devel/devhelp/PLIST            |  105 ++++++++++++++++++++++++++++------------
 devel/devhelp/distinfo         |   11 +--
 devel/devhelp/patches/patch-ad |   13 -----
 5 files changed, 109 insertions(+), 97 deletions(-)

diffs (286 lines):

diff -r 3b1f1841bd42 -r 7d50d605e0be devel/devhelp/DESCR
--- a/devel/devhelp/DESCR       Wed Jan 22 18:09:59 2020 +0000
+++ b/devel/devhelp/DESCR       Wed Jan 22 18:11:53 2020 +0000
@@ -1,12 +1,7 @@
-DevHelp is an application to view books created in a conjunction with XML and
-HTML. This application is commonly used for viewing books about reference
-libraries, articles or tutorials.
-
-It provides the following features:
+Devhelp is a developer tool for browsing and searching API documentation.
 
-       - Full indexing of books in XML
-       - HTML viewer (GtkHTML2)
-       - Search by function, struct, macro or whatever
-       - Auto completion
-       - Commandline search
-       - Emacs and Vim integration
+It provides an easy way to navigate through libraries and to search by
+function, struct, or macro.
+
+The documentation must be installed locally, so an internet connection is
+not needed to use Devhelp.
diff -r 3b1f1841bd42 -r 7d50d605e0be devel/devhelp/Makefile
--- a/devel/devhelp/Makefile    Wed Jan 22 18:09:59 2020 +0000
+++ b/devel/devhelp/Makefile    Wed Jan 22 18:11:53 2020 +0000
@@ -1,43 +1,35 @@
-# $NetBSD: Makefile,v 1.129 2019/08/11 13:18:41 wiz Exp $
+# $NetBSD: Makefile,v 1.130 2020/01/22 18:11:53 nia Exp $
 
-DISTNAME=              devhelp-2.32.0
-PKGREVISION=           62
-CATEGORIES=            devel x11
-MASTER_SITES=          ${MASTER_SITE_GNOME:=sources/devhelp/2.32/}
-EXTRACT_SUFX=          .tar.bz2
+DISTNAME=      devhelp-3.34.0
+CATEGORIES=    devel gnome
+MASTER_SITES=  ${MASTER_SITE_GNOME:=sources/devhelp/3.34/}
+EXTRACT_SUFX=  .tar.xz
 
-MAINTAINER=            pkgsrc-users%NetBSD.org@localhost
-#HOMEPAGE=             http://developer.imendio.com/projects/devhelp
-COMMENT=               Documentation viewer based on GNOME2
-LICENSE=               gnu-gpl-v2
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://wiki.gnome.org/Apps/Devhelp
+COMMENT=       Tool for browsing and searching API documentation from GNOME
+LICENSE=       gnu-gpl-v2
 
-USE_TOOLS+=            gmake intltool msgfmt perl pkg-config
-USE_LIBTOOL=           yes
-USE_PKGLOCALEDIR=      yes
-USE_LANGUAGES=         c c++
+USE_TOOLS+=    pkg-config msgfmt xgettext
 
-GNU_CONFIGURE=         yes
+# workaround for build failure
+# https://gitlab.gnome.org/GNOME/json-glib/issues/35
+MAKE_ENV+=     LD_LIBRARY_PATH=${WRKSRC}/output/devhelp
 
-PKGCONFIG_OVERRIDE+=   data/libdevhelp-2.0.pc.in
-GCONF_SCHEMAS=         devhelp.schemas
+PYTHON_FOR_BUILD_ONLY= tool
+
+# XXX msgfmt: unknown option -- xml
+_TOOLS_USE_PKGSRC.msgfmt=      yes
 
-.include "../../devel/GConf/schemas.mk"
-.include "../../devel/gettext-lib/buildlink3.mk"
-.include "../../devel/glib2/buildlink3.mk"
-.include "../../devel/libwnck/buildlink3.mk"
-.include "../../devel/zlib/buildlink3.mk"
+PKGCONFIG_OVERRIDE_STAGE=      pre-install
+PKGCONFIG_OVERRIDE+=           output/meson-private/libdevhelp-3.0.pc
+
+.include "../../devel/meson/build.mk"
+.include "../../mywip/amtk/buildlink3.mk"
+.include "../../devel/glib2/schemas.mk"
 .include "../../graphics/hicolor-icon-theme/buildlink3.mk"
-.include "../../www/webkit24-gtk/buildlink3.mk"
+.include "../../sysutils/gsettings-desktop-schemas/buildlink3.mk"
 .include "../../sysutils/desktop-file-utils/desktopdb.mk"
-.include "../../x11/gtk2/buildlink3.mk"
-.include "../../x11/libunique/buildlink3.mk"
-
-post-install:
-       ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/examples/devhelp
-       ${INSTALL_DATA} ${WRKSRC}/misc/devhelp.el ${WRKSRC}/misc/devhelp.vim \
-               ${DESTDIR}${PREFIX}/share/examples/devhelp
-       ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/devhelp
-       cd ${WRKSRC} && ${INSTALL_DATA} AUTHORS COPYING ChangeLog README TODO \
-               ${DESTDIR}${PREFIX}/share/doc/devhelp
-
+.include "../../www/webkit-gtk/buildlink3.mk"
+.include "../../x11/gtk3/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 3b1f1841bd42 -r 7d50d605e0be devel/devhelp/PLIST
--- a/devel/devhelp/PLIST       Wed Jan 22 18:09:59 2020 +0000
+++ b/devel/devhelp/PLIST       Wed Jan 22 18:11:53 2020 +0000
@@ -1,41 +1,71 @@
-@comment $NetBSD: PLIST,v 1.19 2010/11/18 02:05:52 obache Exp $
+@comment $NetBSD: PLIST,v 1.20 2020/01/22 18:11:53 nia Exp $
 bin/devhelp
-include/devhelp-2.0/devhelp/dh-assistant-view.h
-include/devhelp-2.0/devhelp/dh-assistant.h
-include/devhelp-2.0/devhelp/dh-base.h
-include/devhelp-2.0/devhelp/dh-book-manager.h
-include/devhelp-2.0/devhelp/dh-book-tree.h
-include/devhelp-2.0/devhelp/dh-book.h
-include/devhelp-2.0/devhelp/dh-error.h
-include/devhelp-2.0/devhelp/dh-keyword-model.h
-include/devhelp-2.0/devhelp/dh-link.h
-include/devhelp-2.0/devhelp/dh-search.h
-include/devhelp-2.0/devhelp/dh-window.h
-lib/libdevhelp-2.la
-lib/pkgconfig/libdevhelp-2.0.pc
-share/applications/devhelp.desktop
+include/devhelp-3/devhelp/devhelp.h
+include/devhelp-3/devhelp/dh-application-window.h
+include/devhelp-3/devhelp/dh-assistant-view.h
+include/devhelp-3/devhelp/dh-book-list-builder.h
+include/devhelp-3/devhelp/dh-book-list-directory.h
+include/devhelp-3/devhelp/dh-book-list.h
+include/devhelp-3/devhelp/dh-book-manager.h
+include/devhelp-3/devhelp/dh-book-tree.h
+include/devhelp-3/devhelp/dh-book.h
+include/devhelp-3/devhelp/dh-completion.h
+include/devhelp-3/devhelp/dh-enum-types.h
+include/devhelp-3/devhelp/dh-init.h
+include/devhelp-3/devhelp/dh-keyword-model.h
+include/devhelp-3/devhelp/dh-link.h
+include/devhelp-3/devhelp/dh-notebook.h
+include/devhelp-3/devhelp/dh-profile-builder.h
+include/devhelp-3/devhelp/dh-profile.h
+include/devhelp-3/devhelp/dh-search-bar.h
+include/devhelp-3/devhelp/dh-settings-builder.h
+include/devhelp-3/devhelp/dh-settings.h
+include/devhelp-3/devhelp/dh-sidebar.h
+include/devhelp-3/devhelp/dh-tab-label.h
+include/devhelp-3/devhelp/dh-tab.h
+include/devhelp-3/devhelp/dh-web-view.h
+lib/gedit/plugins/devhelp.plugin
+lib/gedit/plugins/devhelp.py
+lib/girepository-1.0/Devhelp-3.0.typelib
+lib/libdevhelp-3.so
+lib/libdevhelp-3.so.6
+lib/libdevhelp-3.so.6.2.0
+lib/pkgconfig/libdevhelp-3.0.pc
+man/man1/devhelp.1
+share/applications/org.gnome.Devhelp.desktop
+share/dbus-1/services/org.gnome.Devhelp.service
 share/devhelp/assistant/assistant.css
 share/devhelp/assistant/assistant.js
-share/devhelp/devhelp.defaults
-share/devhelp/dtd/devhelp-1.dtd
-share/devhelp/ui/devhelp.builder
-share/devhelp/ui/window.ui
-share/doc/devhelp/AUTHORS
-share/doc/devhelp/COPYING
-share/doc/devhelp/ChangeLog
-share/doc/devhelp/README
-share/doc/devhelp/TODO
-share/examples/devhelp/devhelp.el
-share/examples/devhelp/devhelp.vim
-share/gconf/schemas/devhelp.schemas
-share/icons/hicolor/16x16/apps/devhelp.png
-share/icons/hicolor/22x22/apps/devhelp.png
-share/icons/hicolor/24x24/apps/devhelp.png
-share/icons/hicolor/32x32/apps/devhelp.png
-share/icons/hicolor/48x48/apps/devhelp.png
-share/icons/hicolor/scalable/apps/devhelp.svg
+share/gir-1.0/Devhelp-3.0.gir
+share/glib-2.0/schemas/org.gnome.devhelp.gschema.xml
+share/glib-2.0/schemas/org.gnome.libdevhelp-3.gschema.xml
+share/help/C/devhelp/index.page
+share/help/C/devhelp/search.page
+share/help/cs/devhelp/index.page
+share/help/cs/devhelp/search.page
+share/help/de/devhelp/index.page
+share/help/de/devhelp/search.page
+share/help/es/devhelp/index.page
+share/help/es/devhelp/search.page
+share/help/fr/devhelp/index.page
+share/help/fr/devhelp/search.page
+share/help/hr/devhelp/index.page
+share/help/hr/devhelp/search.page
+share/help/hu/devhelp/index.page
+share/help/hu/devhelp/search.page
+share/help/it/devhelp/index.page
+share/help/it/devhelp/search.page
+share/help/pl/devhelp/index.page
+share/help/pl/devhelp/search.page
+share/help/pt_BR/devhelp/index.page
+share/help/pt_BR/devhelp/search.page
+share/help/sv/devhelp/index.page
+share/help/sv/devhelp/search.page
+share/icons/hicolor/scalable/apps/org.gnome.Devhelp.svg
+share/icons/hicolor/symbolic/apps/org.gnome.Devhelp-symbolic.svg
 share/locale/am/LC_MESSAGES/devhelp.mo
 share/locale/ar/LC_MESSAGES/devhelp.mo
+share/locale/as/LC_MESSAGES/devhelp.mo
 share/locale/ast/LC_MESSAGES/devhelp.mo
 share/locale/az/LC_MESSAGES/devhelp.mo
 share/locale/be/LC_MESSAGES/devhelp.mo
@@ -43,6 +73,7 @@
 share/locale/bg/LC_MESSAGES/devhelp.mo
 share/locale/bn/LC_MESSAGES/devhelp.mo
 share/locale/bn_IN/LC_MESSAGES/devhelp.mo
+share/locale/bs/LC_MESSAGES/devhelp.mo
 share/locale/ca/LC_MESSAGES/devhelp.mo
 share/locale/ca@valencia/LC_MESSAGES/devhelp.mo
 share/locale/cs/LC_MESSAGES/devhelp.mo
@@ -56,8 +87,11 @@
 share/locale/eo/LC_MESSAGES/devhelp.mo
 share/locale/es/LC_MESSAGES/devhelp.mo
 share/locale/et/LC_MESSAGES/devhelp.mo
+share/locale/eu/LC_MESSAGES/devhelp.mo
+share/locale/fa/LC_MESSAGES/devhelp.mo
 share/locale/fi/LC_MESSAGES/devhelp.mo
 share/locale/fr/LC_MESSAGES/devhelp.mo
+share/locale/fur/LC_MESSAGES/devhelp.mo
 share/locale/gl/LC_MESSAGES/devhelp.mo
 share/locale/gu/LC_MESSAGES/devhelp.mo
 share/locale/he/LC_MESSAGES/devhelp.mo
@@ -69,6 +103,8 @@
 share/locale/is/LC_MESSAGES/devhelp.mo
 share/locale/it/LC_MESSAGES/devhelp.mo
 share/locale/ja/LC_MESSAGES/devhelp.mo
+share/locale/kk/LC_MESSAGES/devhelp.mo
+share/locale/km/LC_MESSAGES/devhelp.mo
 share/locale/kn/LC_MESSAGES/devhelp.mo
 share/locale/ko/LC_MESSAGES/devhelp.mo
 share/locale/lt/LC_MESSAGES/devhelp.mo
@@ -91,6 +127,7 @@
 share/locale/ro/LC_MESSAGES/devhelp.mo
 share/locale/ru/LC_MESSAGES/devhelp.mo
 share/locale/rw/LC_MESSAGES/devhelp.mo
+share/locale/si/LC_MESSAGES/devhelp.mo
 share/locale/sk/LC_MESSAGES/devhelp.mo
 share/locale/sl/LC_MESSAGES/devhelp.mo
 share/locale/sq/LC_MESSAGES/devhelp.mo
@@ -99,6 +136,7 @@
 share/locale/sv/LC_MESSAGES/devhelp.mo
 share/locale/ta/LC_MESSAGES/devhelp.mo
 share/locale/te/LC_MESSAGES/devhelp.mo
+share/locale/tg/LC_MESSAGES/devhelp.mo
 share/locale/th/LC_MESSAGES/devhelp.mo
 share/locale/tr/LC_MESSAGES/devhelp.mo
 share/locale/ug/LC_MESSAGES/devhelp.mo
@@ -107,3 +145,4 @@
 share/locale/zh_CN/LC_MESSAGES/devhelp.mo
 share/locale/zh_HK/LC_MESSAGES/devhelp.mo
 share/locale/zh_TW/LC_MESSAGES/devhelp.mo
+share/metainfo/org.gnome.Devhelp.appdata.xml
diff -r 3b1f1841bd42 -r 7d50d605e0be devel/devhelp/distinfo
--- a/devel/devhelp/distinfo    Wed Jan 22 18:09:59 2020 +0000
+++ b/devel/devhelp/distinfo    Wed Jan 22 18:11:53 2020 +0000
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.19 2015/11/03 03:27:23 agc Exp $
+$NetBSD: distinfo,v 1.20 2020/01/22 18:11:53 nia Exp $
 
-SHA1 (devhelp-2.32.0.tar.bz2) = 8a7c15a17ccfb0b39b1f1f8b57f77e544fb3b2b8
-RMD160 (devhelp-2.32.0.tar.bz2) = 934697815ec13a5629db775bb3b8585c80c8c6f0
-SHA512 (devhelp-2.32.0.tar.bz2) = 71a497c86a1cb0d89855d27260ffa7ea995cae159501c19b24e9799ad72a1d6a1400ed32dfb468b9be616bbab507e7aa6a53f2f5d236cf53aab0fd34edb2174c
-Size (devhelp-2.32.0.tar.bz2) = 503689 bytes
-SHA1 (patch-ad) = acd18af1eaf048db2bd0e3cbb432dc2674f5522c
+SHA1 (devhelp-3.34.0.tar.xz) = 106980b86318ceb9a769450de0ffa7ad451a8858
+RMD160 (devhelp-3.34.0.tar.xz) = 3ce87b3e2c518a322ee7bdc9307ca825aadb935b
+SHA512 (devhelp-3.34.0.tar.xz) = 34ed48ed323827b01f7d32e186da856c788ddfe37d6836082a81e6c8e4cd7bfc2265309cc3b298a0aea542b85e9261987d47a5a4396d865ec7e4cc13a9d05814
+Size (devhelp-3.34.0.tar.xz) = 288352 bytes
diff -r 3b1f1841bd42 -r 7d50d605e0be devel/devhelp/patches/patch-ad
--- a/devel/devhelp/patches/patch-ad    Wed Jan 22 18:09:59 2020 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-$NetBSD: patch-ad,v 1.4 2009/09/09 16:47:07 drochner Exp $
-
---- misc/Makefile.in.orig      2009-08-12 23:41:11.000000000 +0200
-+++ misc/Makefile.in
-@@ -218,7 +218,7 @@ target_alias = @target_alias@
- top_build_prefix = @top_build_prefix@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
--SUBDIRS = gedit-plugin
-+SUBDIRS =
- EXTRA_DIST = devhelp.el devhelp.vim html2funcs.py html2xml.py man2xml.py
- all: all-recursive
- 



Home | Main Index | Thread Index | Old Index