Skip to content

Commit

Permalink
Release 20241226 - SELinux and make dist fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sshambar committed Dec 16, 2024
1 parent 36a42e4 commit 4d2d0a8
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*.bak
*.tgz
*.tar.gz
*.rpm
/test/run/
/test/results/
/selinux/nmutils.if
Expand Down
4 changes: 2 additions & 2 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ uninstall: build
.PHONY: dist
dist: clean
$(VB)if [ -n "$$($(TAR) --version | grep GNU)" ]; then \
$(TAR) czf "$(DIST)" --exclude "$(DIST)" --transform "s/^[.]/$(DISTDIR)/" ./*; \
$(TAR) czf "$(DIST)" --exclude "$(DIST)" --transform "s/^[.]/$(DISTDIR)/S" ./* ./.gitignore; \
else \
$(TAR) czf "$(DIST)" --exclude "$(DIST)" -s "/^[.]/$(DISTDIR)/" ./*; \
$(TAR) czf "$(DIST)" --exclude "$(DIST)" -s "/^[.]/$(DISTDIR)/S" ./* ./.gitignore; \
fi
@echo "Source tar created: $(DIST)"

Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Overview of changes in nmutils-20241216
=======================================

- SELinux patch for dhclient pid file
- Correct make dist

Overview of changes in nmutils-20241215
=======================================

Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#meson setup --prefix=/usr -Dpkg=true build
#meson install --destdir=destdir -C build

project('nmutils', version: '20241215', license: 'GPL-3.0-or-later',
project('nmutils', version: '20241216', license: 'GPL-3.0-or-later',
default_options: [ 'sysconfdir=/etc' ],
meson_version: '>=0.62.0') # test() verbose

Expand Down
3 changes: 3 additions & 0 deletions nmutils.spec
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ fi
%endif

%changelog
* Mon Dec 16 2024 Scott Shambarger <devel at shambarger.net> 20241216-1
- Release 20241216

* Thu Nov 28 2024 Scott Shambarger <devel at shambarger.net> 20241126-1
- Updated for meson build
- Config for package now in /etc/nmutils
Expand Down

0 comments on commit 4d2d0a8

Please sign in to comment.