summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2024-08-14 23:13:35 +0100
committerJames Le Cuirot <chewi@gentoo.org>2024-08-14 23:14:21 +0100
commit4f595a657f8472cac29b3ca714f91d39cc3b9514 (patch)
tree511bec0f4d51b3b9e40489c534609225287f7027 /sys-auth
parentfix: microsoft-identity-broker v2.0.1 Manifest (diff)
downloadgentoo-4f595a657f8472cac29b3ca714f91d39cc3b9514.tar.gz
gentoo-4f595a657f8472cac29b3ca714f91d39cc3b9514.tar.bz2
gentoo-4f595a657f8472cac29b3ca714f91d39cc3b9514.zip
sys-auth/microsoft-identity-broker: Drop old 2.0.0
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'sys-auth')
-rw-r--r--sys-auth/microsoft-identity-broker/Manifest1
-rw-r--r--sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.0.ebuild60
2 files changed, 0 insertions, 61 deletions
diff --git a/sys-auth/microsoft-identity-broker/Manifest b/sys-auth/microsoft-identity-broker/Manifest
index fe69b52d3463..45d36f36751d 100644
--- a/sys-auth/microsoft-identity-broker/Manifest
+++ b/sys-auth/microsoft-identity-broker/Manifest
@@ -1,2 +1 @@
-DIST microsoft-identity-broker_2.0.0_amd64.deb 83941724 BLAKE2B 6e7c347cd466b4fb77841c4c19cf368538adf17a1b197fcf5a8ca6555f3660f8d6684d6bcb400441f9cc06f0765b26cf379d29a16f15d2f90da445d80f89ae89 SHA512 60535f64f867fcd748f550b4dd5a9bb29d527b3632dc7d44a72041ad36ccb691e762417bdc0230ead6ad8c0ab3099f0a343a5be7ab4c982fd3c27753712ac462
DIST microsoft-identity-broker_2.0.1_amd64.deb 84382090 BLAKE2B 9870f2ca66555ebcd58efb56b08ebd7cd9cfde326e72e9b72c0d712f225a8fbd97c013a3f8ffacef69ae443cd95876673719b2982a40516e7d1013b62d33686f SHA512 be51d7dd08972d0b14da6866746cd9688b1235362b51840c5b9148f50a5520638209630221676b3c0d3e7bef770d3f95a827a42f30ac392a674df4de07256934
diff --git a/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.0.ebuild b/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.0.ebuild
deleted file mode 100644
index f2f58f3974aa..000000000000
--- a/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.0.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit java-pkg-2 prefix systemd unpacker
-
-FAKE_OS="ubuntu-22.04"
-DESCRIPTION="Microsoft Authentication Broker to access a corporate environment"
-HOMEPAGE="https://learn.microsoft.com/mem/intune/"
-SRC_URI="https://packages.microsoft.com/ubuntu/22.04/prod/pool/main/${PN:0:1}/${PN}/${PN}_${PV}_amd64.deb"
-S="${WORKDIR}"
-LICENSE="all-rights-reserved"
-SLOT="0"
-KEYWORDS="-* ~amd64"
-RESTRICT="bindist mirror"
-
-RDEPEND="
- acct-user/microsoft-identity-broker
- acct-group/microsoft-identity-broker
- sys-apps/bubblewrap
- sys-apps/dbus
- virtual/jre:11
-"
-
-src_unpack() {
- unpack_deb ${A}
-}
-
-src_configure() {
- sed -i -r "s:^Exec(Start)?=.*/([^/]+):Exec\1=${EPREFIX}/usr/bin/\2:" \
- usr/lib/systemd/*/*.service usr/share/dbus-1/*/*.service || die
-}
-
-src_install() {
- newbin $(prefixify_ro "${FILESDIR}"/wrapper) microsoft-identity-broker
- dosym microsoft-identity-broker /usr/bin/microsoft-identity-device-broker
-
- java-pkg_dojar opt/microsoft/identity-broker/lib/*.jar
-
- java-pkg_dolauncher microsoft-identity-broker \
- --main com.microsoft.identity.broker.service.IdentityBrokerService \
- --java_args '${MICROSOFT_IDENTITY_BROKER_OPTS}' \
- -into /usr/share/${PN}
-
- java-pkg_dolauncher microsoft-identity-device-broker \
- --main com.microsoft.identity.broker.service.DeviceBrokerService \
- --java_args '${MICROSOFT_IDENTITY_DEVICE_BROKER_OPTS}' \
- -into /usr/share/${PN}
-
- insinto /etc/microsoft-identity-broker
- newins "${FILESDIR}/lsb-release-${FAKE_OS}" lsb-release
- newins "${FILESDIR}/os-release-${FAKE_OS}" os-release
-
- insinto /usr/share
- doins -r usr/share/dbus-1
-
- systemd_dounit usr/lib/systemd/system/*
- systemd_douserunit usr/lib/systemd/user/*
-}