Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lang/python/python-selinux/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=python-selinux
PKG_VERSION:=3.9
PKG_RELEASE:=2
PKG_VERSION:=3.10
PKG_RELEASE:=1

SRC_NAME:=libselinux
PKG_SOURCE:=$(SRC_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://github.com/SELinuxProject/selinux/releases/download/$(PKG_VERSION)
PKG_HASH:=e7ee2c01dba64a0c35c9d7c9c0e06209d8186b325b0638a0d83f915cc3c101e8
PKG_HASH:=1ef216c5b56fb7e0a51cd2909787a175a17ee391e0467894807873539ebe766b
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)/$(SRC_NAME)-$(PKG_VERSION)

PKG_MAINTAINER:=Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Expand Down
6 changes: 3 additions & 3 deletions lang/python/python-semanage/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=python-semanage
PKG_VERSION:=3.9
PKG_RELEASE:=2
PKG_VERSION:=3.10
PKG_RELEASE:=1

SRC_NAME:=libsemanage
PKG_SOURCE:=$(SRC_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://github.com/SELinuxProject/selinux/releases/download/$(PKG_VERSION)
PKG_HASH:=ec05850aef48bfb8e02135a7f4f3f7edba3670f63d5e67f2708d4bd80b9a4634
PKG_HASH:=1978894c414769ad77438d26886eaae3fb7bb74578ef2a5ad3130c89cb5cb1fe
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)/$(SRC_NAME)-$(PKG_VERSION)

PKG_MAINTAINER:=Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Expand Down
18 changes: 18 additions & 0 deletions utils/bluez/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/sh

case "$1" in
bluez-daemon)
# obexd does not implement --version; just verify it is present
[ -x /usr/bin/obexd ] || exit 1
;;
bluez-utils)
# these tools do not implement --version; verify they are present
for bin in bdaddr ciptool hciattach hciconfig l2ping l2test rctest; do
[ -x "/usr/bin/$bin" ] || exit 1
done
;;
bluez-utils-extra)
# gatttool does not implement --version; just verify it is present
[ -x /usr/bin/gatttool ] || exit 1
;;
esac
10 changes: 10 additions & 0 deletions utils/dbus/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/sh

case "$1" in
dbus-utils)
# dbus-monitor, dbus-send, dbus-test-tool do not implement --version
for bin in dbus-monitor dbus-send dbus-test-tool; do
[ -x "/usr/bin/$bin" ] || exit 1
done
;;
esac
6 changes: 3 additions & 3 deletions utils/selinux-python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=selinux-python
PKG_VERSION:=3.9
PKG_RELEASE:=2
PKG_VERSION:=3.10
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://github.com/SELinuxProject/selinux/releases/download/$(PKG_VERSION)
PKG_HASH:=dcfa5f1919dcb7e7b775851994eb5c83b7580dc496cd2d1f73867dfa074d2339
PKG_HASH:=9d0a5b69f2fbcce8e5ccd8e0f17d56f71e6005a756386f8fb36c31f9424191a2

PKG_MAINTAINER:=Thomas Petazzoni <thomas.petazzoni@bootlin.com>
PKG_LICENSE:=GPL-2.0-only
Expand Down
2 changes: 1 addition & 1 deletion utils/selinux-python/patches/0005-no-translations.patch
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
-SUBDIRS = sepolicy audit2allow semanage sepolgen chcat po
+SUBDIRS = sepolicy audit2allow semanage sepolgen chcat

all install relabel clean indent test:
all install relabel clean format test:
@for subdir in $(SUBDIRS); do \
4 changes: 2 additions & 2 deletions utils/semodule-utils/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=semodule-utils
PKG_VERSION:=3.9
PKG_VERSION:=3.10
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://github.com/SELinuxProject/selinux/releases/download/$(PKG_VERSION)
PKG_HASH:=729be36e4726c5d0833732681a94b2e0e4aff973c076504e41f8547abb6c5424
PKG_HASH:=1c2f14cc098cbb4d75912d131c5f747e70246e1042e72f2ab40e28f53cf45c10

PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
PKG_LICENSE:=GPL-2.0-only
Expand Down
9 changes: 9 additions & 0 deletions utils/zstd/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/sh

case "$1" in
zstd)
# zstdgrep and zstdless are shell script wrappers; they do not output a version
[ -x /usr/bin/zstdgrep ] || exit 1
[ -x /usr/bin/zstdless ] || exit 1
;;
esac
Loading