Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

azure-nvme-utils: Migrate coreos-overlay to portage-stable, 0.2.0 bump #2252

Merged
merged 2 commits into from
Aug 27, 2024
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
1 change: 1 addition & 0 deletions .github/workflows/portage-stable-packages-list
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,7 @@ sec-policy/selinux-unconfined

sys-apps/acl
sys-apps/attr
sys-apps/azure-nvme-utils
sys-apps/bubblewrap
sys-apps/checkpolicy
sys-apps/config-site
Expand Down
1 change: 1 addition & 0 deletions changelog/updates/2024-08-23-azure-nvme-utils-update.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- azure-nmve-utils ([0.2.0](https://github.com/Azure/azure-nvme-utils/releases/tag/v0.2.0))
chewi marked this conversation as resolved.
Show resolved Hide resolved

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ RDEPEND="${RDEPEND}

# sys-devel/gettext: it embeds 'envsubst' binary which is useful for simple file templating.
RDEPEND="${RDEPEND}
app-admin/azure-nvme-utils
app-admin/etcd-wrapper
app-admin/flannel-wrapper
app-admin/locksmith
Expand Down Expand Up @@ -154,6 +153,7 @@ RDEPEND="${RDEPEND}
sec-policy/selinux-unconfined
sys-apps/acl
sys-apps/attr
sys-apps/azure-nvme-utils
sys-apps/coreutils
sys-apps/checkpolicy
sys-apps/dbus
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ dev-util/catalyst ~amd64 ~arm64
# Needed to address CVE-2024-6197, CVE-2024-6874 and CVE-2024-7264.
=net-misc/curl-8.9.1-r1 ~amd64 ~arm64

# Package has not been stabilised yet.
=sys-apps/azure-nvme-utils-0.2.0 ~amd64 ~arm64

# Keep versions on both arches in sync.
=sys-apps/kexec-tools-2.0.28 ~arm64
=sys-apps/zram-generator-1.1.2 ~arm64
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIST azure-nvme-utils-0.2.0.tar.gz 13177 BLAKE2B 5c486d035422ea6547e2886324e0b6e2537d11089bc0b3dfd550130e82ab8de8cc9a5be8e3bfd0722cb71c17a66c261f0cfd021e4a48e5568de01dd0c052fbbc SHA512 4ef2de641839bfbcc2e1a084cec218d1105550366770d731bb7a3e5d4b4e45a47b21ccf9a3a8069f469389e1d27e485bfed235a55d398930bddc8829eebc2708
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit cmake udev

DESCRIPTION="Utility to help identify Azure NVMe devices"
HOMEPAGE="https://github.com/Azure/azure-nvme-utils"
SRC_URI="https://github.com/Azure/${PN}/archive/refs/tags/v${PV}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
IUSE="+lun-fallback"

src_configure() {
local mycmakeargs=(
-DAZURE_LUN_CALCULATION_BY_NSID_ENABLED=$(usex lun-fallback)
-DUDEV_RULES_INSTALL_DIR="$(get_udevdir)/rules.d"
)
cmake_src_configure
}

pkg_postinst() {
udev_reload
}

pkg_postrm() {
udev_reload
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>chewi@gentoo.org</email>
<name>James Le Cuirot</name>
</maintainer>
<upstream>
<remote-id type="github">Azure/azure-nvme-utils</remote-id>
</upstream>
<use>
<flag name="lun-fallback">Enable fallback LUN calculation via NSID</flag>
</use>
</pkgmetadata>
Loading