commit:     3b561bd295caf9f4c0fa44716e10454c1d4ab077
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Tue Mar 30 09:24:13 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Mar 30 09:24:13 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b561bd2

app-admin/lastpass-binary-component: Remove last-rited pkg

Closes: https://bugs.gentoo.org/581102
Closes: https://bugs.gentoo.org/726378
Closes: https://bugs.gentoo.org/753557
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 app-admin/lastpass-binary-component/Manifest       |   1 -
 .../lastpass-binary-component-4.67.1.ebuild        | 116 ---------------------
 app-admin/lastpass-binary-component/metadata.xml   |  20 ----
 profiles/package.mask                              |   6 --
 4 files changed, 143 deletions(-)

diff --git a/app-admin/lastpass-binary-component/Manifest 
b/app-admin/lastpass-binary-component/Manifest
deleted file mode 100644
index 918087aa656..00000000000
--- a/app-admin/lastpass-binary-component/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST lastpass-binary-component-4.67.1.tar.bz2 1625199 BLAKE2B 
cd9333866516a0dc43b653106224e5ef1a228c340adac93a2541d4f337b6b865c5eed043cf914a552b390d23a471ff1f21f8439d15282b77fb69dcbd6ffa01c1
 SHA512 
8277082fcf4cb8ef0f67903f518eb1b55fd6525373f22be0ce7d62abedef76029ef46da7c0aa32d4df3bbc0053471232390ecd69ff0572a3836e08aefee98e48

diff --git 
a/app-admin/lastpass-binary-component/lastpass-binary-component-4.67.1.ebuild 
b/app-admin/lastpass-binary-component/lastpass-binary-component-4.67.1.ebuild
deleted file mode 100644
index 783d1214c73..00000000000
--- 
a/app-admin/lastpass-binary-component/lastpass-binary-component-4.67.1.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Binary component required by the LastPass Password Manager 
browser extension"
-HOMEPAGE="https://helpdesk.lastpass.com/downloading-and-installing/#h5";
-# sadly, upstream has no versioned distfiles
-SRC_URI="https://download.cloud.lastpass.com/linux/lplinux.tar.bz2 -> 
${P}.tar.bz2"
-
-LICENSE="LastPass"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
-RESTRICT="bindist strip mirror" # We can't mirror it, but we can fetch it
-
-LASTPASS_EXEDIR=/opt/lastpass/
-
-QA_PREBUILT="
-       ${LASTPASS_EXEDIR}nplastpass*
-"
-
-S="${WORKDIR}"
-
-src_install() {
-       # This is based on the upstream installer script that's in the tarball
-       bin=nplastpass
-       use amd64 && bin="${bin}64"
-       exeinto ${LASTPASS_EXEDIR}
-       doexe "${S}"/${bin}
-
-       # Generate the policy file for Chrome/Chromium/Opera
-       cat >"${T}"/lastpass_policy.json <<-EOF || die
-       {
-               "ExtensionInstallSources": [
-                       "https://lastpass.com/*";,
-                       "https://*.lastpass.com/*";,
-                       "https://d1jxck0p3rkj0.cloudfront.net/lastpass/*";
-               ]
-       }
-       EOF
-       # Install the policy file for Chrome/Chromium/Opera
-       for d in /etc/chromium /etc/opt/chrome; do
-               insinto ${d}/policies/managed
-               doins "${T}"/lastpass_policy.json
-       done
-
-       # Generate the app manifest for Chrome/Opera
-       cat >"${T}"/com.lastpass.nplastpass.json <<-EOF || die
-       {
-               "name": "com.lastpass.nplastpass",
-               "description": "LastPass",
-               "path": "${LASTPASS_EXEDIR}${bin}",
-               "type": "stdio",
-               "allowed_origins": [
-                       "chrome-extension://hdokiejnpimakedhajhdlcegeplioahd/",
-                       "chrome-extension://debgaelkhoipmbjnhpoblmbacnmmgbeg/",
-                       "chrome-extension://hnjalnkldgigidggphhmacmimbdlafdo/",
-                       "chrome-extension://hgnkdfamjgnljokmokheijphenjjhkjc/"
-               ]
-       }
-       EOF
-       # Install the app manifest for Chrome/Opera
-       # https://developer.chrome.com/apps/nativeMessaging
-       # https://dev.opera.com/extensions/message-passing/
-       insinto /etc/opt/chrome/native-messaging-hosts
-       doins "${T}"/com.lastpass.nplastpass.json
-
-       # Generate the app manifest for Chromium
-       cat >"${T}"/com.lastpass.nplastpass.json <<-EOF || die
-       {
-               "name": "com.lastpass.nplastpass",
-               "description": "LastPass",
-               "path": "${LASTPASS_EXEDIR}${bin}",
-               "type": "stdio",
-               "allowed_origins": [
-                       "chrome-extension://hdokiejnpimakedhajhdlcegeplioahd/",
-                       "chrome-extension://debgaelkhoipmbjnhpoblmbacnmmgbeg/",
-                       "chrome-extension://hgnkdfamjgnljokmokheijphenjjhkjc/"
-               ]
-       }
-       EOF
-       # Install the app manifest for Chromium
-       # https://developer.chrome.com/apps/nativeMessaging
-       insinto /etc/chromium/native-messaging-hosts/
-       doins "${T}"/com.lastpass.nplastpass.json
-
-       # Generate the app manifest for Firefox
-       cat >"${T}"/com.lastpass.nplastpass.json <<-EOF || die
-       {
-               "name": "com.lastpass.nplastpass",
-               "description": "LastPass",
-               "path": "${LASTPASS_EXEDIR}${bin}",
-               "type": "stdio",
-               "allowed_extensions": [
-                       "[email protected]"
-               ]
-       }
-       EOF
-       # Install the app manifest for both firefox and firefox-bin
-       # 
https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Native_manifests#Manifest_location
-       insinto /usr/lib/mozilla/native-messaging-hosts/
-       doins "${T}"/com.lastpass.nplastpass.json
-       insinto /usr/lib64/mozilla/native-messaging-hosts/
-       doins "${T}"/com.lastpass.nplastpass.json
-}
-
-pkg_postinst() {
-       einfo "This package only installs the components required by the 
browser extension."
-       einfo "Visit the links below for your browser to install the extension 
itself:"
-       einfo "Chrome/Chromium: https://lastpass.com/dl/inline/?full=1";
-       einfo "Firefox: https://lastpass.com/lastpassffx/";
-       einfo "Opera: https://lastpass.com/dl/";
-       einfo
-       einfo "Chrome, Chromium and Opera users need to manually enable the 
binary component."
-       einfo "For more info, visit: 
https://lastpass.com/support.php?cmd=showfaq&id=5576";
-}

diff --git a/app-admin/lastpass-binary-component/metadata.xml 
b/app-admin/lastpass-binary-component/metadata.xml
deleted file mode 100644
index 6f4f533e3c3..00000000000
--- a/app-admin/lastpass-binary-component/metadata.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-  <maintainer type="person">
-    <email>[email protected]</email>
-    <name>Göktürk Yüksek</name>
-  </maintainer>
-  <maintainer type="person">
-    <email>[email protected]</email>
-    <name>Robin H. Johnson</name>
-  </maintainer>
-  <longdescription lang="en">
-    The binary features for Lastpass include faster encryption/decryption,
-    clipboard integration, smart card authentication and more for
-    <pkg>www-client/google-chrome</pkg>, <pkg>www-client/chromium</pkg>,
-    and <pkg>www-client/opera</pkg> web browsers. For
-    <pkg>www-client/firefox</pkg> this package is not required as the
-    extension bundles the binary components already.
-  </longdescription>
-</pkgmetadata>

diff --git a/profiles/package.mask b/profiles/package.mask
index c3e0e96dce7..cd33d3fbecc 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -159,12 +159,6 @@ dev-haskell/geniplate
 # for transitioning out. Bug #776262.
 app-admin/lastpass-cli
 
-# Göktürk Yüksek <[email protected]> (2021-03-14)
-# Upstream's lack of versioning keeps breaking the Manifest.
-# They are also not responsive to license clarification questions.
-# No revdeps. Removal in 14 days. Bug #581102, #7513730
-app-admin/lastpass-binary-component
-
 # Sam James <[email protected]> (2021-03-13)
 # Stuck on oasis.eclass, out of date
 # No reverse dependencies

Reply via email to