Skip to content

Commit 70723fd

Browse files
committed
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
1 parent 91f03eb commit 70723fd

3 files changed

Lines changed: 23 additions & 12 deletions

File tree

devel/xfce4-dev-tools/Makefile

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
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 $
22

3-
PKGREVISION= 4
43
.include "../../meta-pkgs/xfce4/Makefile.common"
54

6-
VERSION= 4.14.0
5+
VERSION= 4.16.0
76
DISTNAME= xfce4-dev-tools-${VERSION}
87
CATEGORIES= devel
9-
MASTER_SITES= http://archive.xfce.org/src/xfce/xfce4-dev-tools/${VERSION:R}/
8+
MASTER_SITES= https://archive.xfce.org/src/xfce/xfce4-dev-tools/${VERSION:R}/
109

1110
HOMEPAGE= http://users.xfce.org/~benny/projects/xfce4-dev-tools/
1211
COMMENT= Xfce development tools
1312

13+
USE_TOOLS+= bash:run
14+
REPLACE_BASH+= helpers/xfce-build helpers/xfce-do-release
15+
REPLACE_BASH+= helpers/xfce-get-release-notes
16+
REPLACE_BASH+= helpers/xfce-get-translations helpers/xfce-update-news
17+
1418
GNU_CONFIGURE= yes
1519

1620
MAKE_DIRS+= ${PREFIX}/share/xfce4

devel/xfce4-dev-tools/PLIST

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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 $
22
bin/xdt-autogen
33
bin/xdt-csource
4-
share/xfce4/dev-tools/m4macros/xdt-depends.m4
5-
share/xfce4/dev-tools/m4macros/xdt-features.m4
6-
share/xfce4/dev-tools/m4macros/xdt-i18n.m4
4+
bin/xfce-build
5+
bin/xfce-do-release
6+
bin/xfce-get-release-notes
7+
bin/xfce-get-translations
8+
bin/xfce-update-news
9+
man/man1/xdt-csource.1
10+
share/aclocal/xdt-depends.m4
11+
share/aclocal/xdt-features.m4
12+
share/aclocal/xdt-i18n.m4
13+
share/aclocal/xdt-version.m4

devel/xfce4-dev-tools/distinfo

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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 $
22

3-
BLAKE2s (xfce4-dev-tools-4.14.0.tar.bz2) = c64402f09f185d7c68d1ac9b6b00902d05182d6e0ac7effff827b3ef5215527a
4-
SHA512 (xfce4-dev-tools-4.14.0.tar.bz2) = e22b139ff7516ec0e510f882cc6a9e8e8b2b7bd41093c8e67e5ef11eb6c2c2848637513369d652f7238f10b5005c5483a938d3348020b48a4c1fadadd6d635f8
5-
Size (xfce4-dev-tools-4.14.0.tar.bz2) = 292275 bytes
3+
BLAKE2s (xfce4-dev-tools-4.16.0.tar.bz2) = de9c95c6878e95edd406d3233c096a58a8d76311f8bd99226e211635e98c4c3b
4+
SHA512 (xfce4-dev-tools-4.16.0.tar.bz2) = 54d9b45535c174ab0d13a3061ba2ff247c788a1190a6622b0adb4242d12e1fe42715256a18168d42fd5e425bbc7e9e81de30aa507da04f3e8d9b6f1ae5a5a7a7
5+
Size (xfce4-dev-tools-4.16.0.tar.bz2) = 340107 bytes

0 commit comments

Comments
 (0)