diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-11-01 16:44:24 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-11-01 17:07:01 +0100 |
commit | 97086f92b56c65fd3a3e9da9355f26d07bf7b002 (patch) | |
tree | db958973841d2efa0b8f71bee1b328aeea9d51da /dev-util/umockdev | |
parent | dev-libs/dotconf: drop 1.3-r2 (diff) | |
download | gentoo-97086f92b56c65fd3a3e9da9355f26d07bf7b002.tar.gz gentoo-97086f92b56c65fd3a3e9da9355f26d07bf7b002.tar.bz2 gentoo-97086f92b56c65fd3a3e9da9355f26d07bf7b002.zip |
dev-util/umockdev: drop 0.17.18, 0.18.1
Bug: https://bugs.gentoo.org/929077
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'dev-util/umockdev')
-rw-r--r-- | dev-util/umockdev/Manifest | 2 | ||||
-rw-r--r-- | dev-util/umockdev/files/umockdev-0.17.18-vala-unused-variable-werror.patch | 22 | ||||
-rw-r--r-- | dev-util/umockdev/umockdev-0.17.18.ebuild | 63 | ||||
-rw-r--r-- | dev-util/umockdev/umockdev-0.18.1.ebuild | 59 |
4 files changed, 0 insertions, 146 deletions
diff --git a/dev-util/umockdev/Manifest b/dev-util/umockdev/Manifest index 4d55746f5fd1..c67ae4ebf176 100644 --- a/dev-util/umockdev/Manifest +++ b/dev-util/umockdev/Manifest @@ -1,3 +1 @@ -DIST umockdev-0.17.18.tar.xz 491668 BLAKE2B 106efc5674475383abb7618f087b3536441ae1fa30d6a92b689c1119ff62e06a20a6a529968f2b978f8ed410fc2033c95b86e214d4d4a576cdb9e68ee09a1853 SHA512 3d8d2487b4350e4ce28a5c163cbb1b92da9f5a5317e74da46ccaa62a6b8e938a6758e241d0dd2e9f50fdee4aef24d36585a24cfec1ad99fb4799a01008d9987b -DIST umockdev-0.18.1.tar.xz 493816 BLAKE2B 314969269e8e5b70b65c89345b659cf2784eb71cfd2c010e8043cc38b6965dce0dcadac6ffab266f4b926e46bb0939d6c159ee17fbf341eed7a11f932a80a2ad SHA512 4897c12fca8d1927a2840efbbd8281a95102b328cc682ffed10cd4e29b80f26b80df55fbd3736297ee4633561b007beda369bd3ddf07eb71bdd1d7c0222243c8 DIST umockdev-0.18.3.tar.xz 493724 BLAKE2B 989391474b7204a228a323244b75dc81992c69cd79a499ea701344311a890383eb6d589769df2006727c371757e4bf807831b9ccabde0fcbfd1b99054042fdc6 SHA512 565fedc4367b7896ac4fd9cee19d704d1f3f8b382c31069ceef81d0a0e8f3a38b775f28bd7a3652a7bb9c5cb62dd1f616ea81d7fc2ee7fda933bad44b32627d2 diff --git a/dev-util/umockdev/files/umockdev-0.17.18-vala-unused-variable-werror.patch b/dev-util/umockdev/files/umockdev-0.17.18-vala-unused-variable-werror.patch deleted file mode 100644 index 69023f08e5e2..000000000000 --- a/dev-util/umockdev/files/umockdev-0.17.18-vala-unused-variable-werror.patch +++ /dev/null @@ -1,22 +0,0 @@ -https://bugs.gentoo.org/919380 - -Exposed by a change in Meson to stop inhibiting Vala warnings, e.g. -``` -umockdev-record.p/src/umockdev-pcap.c: At top level: -umockdev-record.p/src/umockdev-pcap.c:101:20: error: ‘umockdev_ioctl_usb_pcap_handler_properties’ defined but not used [-Werror=unused-variable] - 101 | static GParamSpec* umockdev_ioctl_usb_pcap_handler_properties[UMOCKDEV_IOCTL_USB_PCAP_HANDLER_NUM_PROPERTIES]; - | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -``` - -See https://github.com/mesonbuild/meson/commit/5f659af870011e74299d1455a65c2cd5f5ace51f. ---- a/meson.build -+++ b/meson.build -@@ -21,7 +21,7 @@ add_project_arguments( - '-Werror=format-security', - '-Werror=format=2', - #'-Werror=missing-include-dirs', -- '-Werror=unused-variable', -+ #'-Werror=unused-variable', - '-Werror=return-type', - '-Werror=uninitialized', - # experimental: first check this on all Debian architectures diff --git a/dev-util/umockdev/umockdev-0.17.18.ebuild b/dev-util/umockdev/umockdev-0.17.18.ebuild deleted file mode 100644 index 66769357f6b3..000000000000 --- a/dev-util/umockdev/umockdev-0.17.18.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -PYTHON_COMPAT=( python3_{10..12} ) - -inherit meson-multilib python-any-r1 vala - -if [[ ${PV} = 9999* ]]; then - EGIT_REPO_URI="https://github.com/martinpitt/${PN}.git" - inherit git-r3 -else - SRC_URI="https://github.com/martinpitt/umockdev/releases/download/${PV}/${P}.tar.xz" - KEYWORDS="amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86" -fi - -DESCRIPTION="Mock hardware devices for creating unit tests" -HOMEPAGE="https://github.com/martinpitt/umockdev/" - -LICENSE="LGPL-2.1+" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - net-libs/libpcap[${MULTILIB_USEDEP}] - virtual/libudev:=[${MULTILIB_USEDEP}] - >=dev-libs/glib-2.32:2[${MULTILIB_USEDEP}] - >=dev-libs/gobject-introspection-1.32:= -" -DEPEND="${RDEPEND} - test? ( - ${PYTHON_DEPS} - dev-libs/libgudev:=[${MULTILIB_USEDEP}] - ) -" -BDEPEND=" - $(vala_depend) - app-arch/xz-utils - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}"/${PN}-0.17.18-vala-unused-variable-werror.patch -) - -pkg_setup() { - use test && python-any-r1_pkg_setup -} - -src_prepare() { - default - vala_setup -} - -multilib_src_configure() { - export VALAC="$(type -P valac-$(vala_best_api_version))" - meson_src_configure -} - -multilib_src_test() { - meson_src_test --no-suite fails-valgrind -} diff --git a/dev-util/umockdev/umockdev-0.18.1.ebuild b/dev-util/umockdev/umockdev-0.18.1.ebuild deleted file mode 100644 index 4a4ef163b950..000000000000 --- a/dev-util/umockdev/umockdev-0.18.1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -PYTHON_COMPAT=( python3_{10..12} ) - -inherit meson-multilib python-any-r1 vala - -if [[ ${PV} = 9999* ]]; then - EGIT_REPO_URI="https://github.com/martinpitt/${PN}.git" - inherit git-r3 -else - SRC_URI="https://github.com/martinpitt/umockdev/releases/download/${PV}/${P}.tar.xz" - KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -fi - -DESCRIPTION="Mock hardware devices for creating unit tests" -HOMEPAGE="https://github.com/martinpitt/umockdev/" - -LICENSE="LGPL-2.1+" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - net-libs/libpcap[${MULTILIB_USEDEP}] - virtual/libudev:=[${MULTILIB_USEDEP}] - >=dev-libs/glib-2.32:2[${MULTILIB_USEDEP}] - >=dev-libs/gobject-introspection-1.32:= -" -DEPEND="${RDEPEND} - test? ( - ${PYTHON_DEPS} - dev-libs/libgudev:=[${MULTILIB_USEDEP}] - ) -" -BDEPEND=" - $(vala_depend) - app-arch/xz-utils - virtual/pkgconfig -" - -pkg_setup() { - use test && python-any-r1_pkg_setup -} - -src_prepare() { - default - vala_setup -} - -multilib_src_configure() { - export VALAC="$(type -P valac-$(vala_best_api_version))" - meson_src_configure -} - -multilib_src_test() { - meson_src_test --no-suite fails-valgrind -} |