Tue Nov 30 13:59:54 2021 UTC ()
xfce4-dev-tools: update to 4.16.0

Change log:

4.16.0
======
- Bump glib to 2.50 based on xfce4.16 roadmap
- Do not process @LINGUAS@ at xdt-autogen stage
- xfce-build: Add Thunar to container (Fixes #40)
- helpers: Add xfce-build 'pull' argument
- Fail xfce-build container generation if there is any error
- helpers: Prefer xfce-build over xfce-test (Fixes #38)
- helpers: Add new helper xfce-open-gitlab
- Disable CFLAGS override when building CI container
- use strict CFLAGS to catch common mistakes in ci pipeline
- helpers: Add helper to locally run xfce-build
- Add xvfb on xfce-build

4.15.1
======

Various improvements to the helpers introduced in 4.15.0,
cleanup of xdt-autogen code, various fixes for our CI.

- get-translations: Fix line wrapping
- xdt-autogen: Various small improvements
- xdt-autogen: Properly handle whitespaces in filenames
- xdt-autogen: Use sed instead of tr to replace strings
- Updates README.md
- xfce-build: Add libclutter-1.0-dev for xfdashboard build
- Update .gitignore
- helpers: Use blank line for tags message
- helpers: Reuse release notes from NEWS for tag message
- helpers: Simplify xfce-update-news
- helpers: Do not strip NEWS blank line at EOF
- helpers: Install xfce-do-release
- xfce-build: Add depend for mousepad (Fixes #37)
- helpers: Add do-release helper and Readme
- xfce-build: Install python3 version of distutils-extra
- helpers: Make get-translations executable
- get-translations: Remove last comma
- get-translations: Correctly get locale from commit messages
- xfce-build: Replace build-dep with package names

4.15.0
======

- New macro XDT_VERSION_INIT(SEMVER[, TAG])

This macro takes care of setting up the version numbering.
It will define the following macros based on SEMVER and TAG:

   - xdt_version
   - xdt_version_major
   - xdt_version_minor
   - xdt_version_micro
   - xdt_version_tag
   - xdt_version_build
   - xdt_debug_default

If TAG isn't specified, the xdt_version_tag and xdt_version_git
will be empty and xdt_debug_default will be set to "minimum",
otherwise the xdt_version_build will contain a git hash and
xdt_debug_default will be set to "yes"

Example usage:

  XDT_VERSION_INIT([4.15.3],[git])
  AC_INIT([xfce4-someproject], [xdt_version()])
  ...
  XDT_FEATURE_DEBUG([xdt_debug_default])

- XDT_I18N macro will now automatically find the linguas if none are specified during the autoconf run.

- Install m4 macros in default search dir. This makes autoconf find the macros by default.

By setting version via XDT_VERSION_INIT and using XDT_I18N without arguments,
this is no longer necessary to use a separate configure.ac.in and a plain configure.ac can be used.

- Use datarootdir instead of datadir
- xdt-autogen: explicitly set search path for m4 macros
- Install the xfce-helpers
- Add two new helpers to help releasers
- Install m4 macros into default $datadir/aclocal
- Update README for new gitlab urls
- xdt-autogen: Improve and simplify linguas detection
- Let XDT_I18N automatically find the po/*.po as default
- Let configure generate the xdt-autogen script
- Implement XDT_VERSION_INIT
- Add manpage and tests to xdt-csource
- Add xfce4-dev-tools build in addition to container build
- Check BEFORE_SHA along with changes to .po files
- gitlabci: Ensure to run autogen in distcheck stage
- Switch to "foreign" mode for automake
- Add CI templates notes
- Update README with explanation of Dockerfile
- Fix whitespace error
- Add helper script to get all translation-updates
- Integrate xfce-build container build/creation


(gutteridge)
diff -r1.46 -r1.47 pkgsrc/devel/xfce4-dev-tools/Makefile
diff -r1.7 -r1.8 pkgsrc/devel/xfce4-dev-tools/PLIST
diff -r1.9 -r1.10 pkgsrc/devel/xfce4-dev-tools/distinfo

cvs diff -r1.46 -r1.47 pkgsrc/devel/xfce4-dev-tools/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/xfce4-dev-tools/Makefile 2020/08/31 18:09:22 1.46
+++ pkgsrc/devel/xfce4-dev-tools/Makefile 2021/11/30 13:59:54 1.47
@@ -1,18 +1,22 @@ @@ -1,18 +1,22 @@
1# $NetBSD: Makefile,v 1.46 2020/08/31 18:09:22 wiz Exp $ 1# $NetBSD: Makefile,v 1.47 2021/11/30 13:59:54 gutteridge Exp $
2 2
3PKGREVISION= 4 
4.include "../../meta-pkgs/xfce4/Makefile.common" 3.include "../../meta-pkgs/xfce4/Makefile.common"
5 4
6VERSION= 4.14.0 5VERSION= 4.16.0
7DISTNAME= xfce4-dev-tools-${VERSION} 6DISTNAME= xfce4-dev-tools-${VERSION}
8CATEGORIES= devel 7CATEGORIES= devel
9MASTER_SITES= http://archive.xfce.org/src/xfce/xfce4-dev-tools/${VERSION:R}/ 8MASTER_SITES= https://archive.xfce.org/src/xfce/xfce4-dev-tools/${VERSION:R}/
10 9
11HOMEPAGE= http://users.xfce.org/~benny/projects/xfce4-dev-tools/ 10HOMEPAGE= http://users.xfce.org/~benny/projects/xfce4-dev-tools/
12COMMENT= Xfce development tools 11COMMENT= Xfce development tools
13 12
 13USE_TOOLS+= bash:run
 14REPLACE_BASH+= helpers/xfce-build helpers/xfce-do-release
 15REPLACE_BASH+= helpers/xfce-get-release-notes
 16REPLACE_BASH+= helpers/xfce-get-translations helpers/xfce-update-news
 17
14GNU_CONFIGURE= yes 18GNU_CONFIGURE= yes
15 19
16MAKE_DIRS+= ${PREFIX}/share/xfce4 20MAKE_DIRS+= ${PREFIX}/share/xfce4
17 21
18.include "../../mk/bsd.pkg.mk" 22.include "../../mk/bsd.pkg.mk"

cvs diff -r1.7 -r1.8 pkgsrc/devel/xfce4-dev-tools/PLIST (expand / switch to unified diff)

--- pkgsrc/devel/xfce4-dev-tools/PLIST 2019/07/12 23:44:43 1.7
+++ pkgsrc/devel/xfce4-dev-tools/PLIST 2021/11/30 13:59:54 1.8
@@ -1,6 +1,13 @@ @@ -1,6 +1,13 @@
1@comment $NetBSD: PLIST,v 1.7 2019/07/12 23:44:43 gutteridge Exp $ 1@comment $NetBSD: PLIST,v 1.8 2021/11/30 13:59:54 gutteridge Exp $
2bin/xdt-autogen 2bin/xdt-autogen
3bin/xdt-csource 3bin/xdt-csource
4share/xfce4/dev-tools/m4macros/xdt-depends.m4 4bin/xfce-build
5share/xfce4/dev-tools/m4macros/xdt-features.m4 5bin/xfce-do-release
6share/xfce4/dev-tools/m4macros/xdt-i18n.m4 6bin/xfce-get-release-notes
 7bin/xfce-get-translations
 8bin/xfce-update-news
 9man/man1/xdt-csource.1
 10share/aclocal/xdt-depends.m4
 11share/aclocal/xdt-features.m4
 12share/aclocal/xdt-i18n.m4
 13share/aclocal/xdt-version.m4

cvs diff -r1.9 -r1.10 pkgsrc/devel/xfce4-dev-tools/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/xfce4-dev-tools/distinfo 2021/10/26 10:20:09 1.9
+++ pkgsrc/devel/xfce4-dev-tools/distinfo 2021/11/30 13:59:54 1.10
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.9 2021/10/26 10:20:09 nia Exp $ 1$NetBSD: distinfo,v 1.10 2021/11/30 13:59:54 gutteridge Exp $
2 2
3BLAKE2s (xfce4-dev-tools-4.14.0.tar.bz2) = c64402f09f185d7c68d1ac9b6b00902d05182d6e0ac7effff827b3ef5215527a 3BLAKE2s (xfce4-dev-tools-4.16.0.tar.bz2) = de9c95c6878e95edd406d3233c096a58a8d76311f8bd99226e211635e98c4c3b
4SHA512 (xfce4-dev-tools-4.14.0.tar.bz2) = e22b139ff7516ec0e510f882cc6a9e8e8b2b7bd41093c8e67e5ef11eb6c2c2848637513369d652f7238f10b5005c5483a938d3348020b48a4c1fadadd6d635f8 4SHA512 (xfce4-dev-tools-4.16.0.tar.bz2) = 54d9b45535c174ab0d13a3061ba2ff247c788a1190a6622b0adb4242d12e1fe42715256a18168d42fd5e425bbc7e9e81de30aa507da04f3e8d9b6f1ae5a5a7a7
5Size (xfce4-dev-tools-4.14.0.tar.bz2) = 292275 bytes 5Size (xfce4-dev-tools-4.16.0.tar.bz2) = 340107 bytes