From 40aaaa64e86ba6710bbeb31c4615a6ce80e75e11 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 28 Apr 2021 20:21:43 +0100 Subject: gentoo resync : 28.04.2021 --- app-admin/lastpass-binary-component/Manifest | 3 - .../lastpass-binary-component-4.67.1.ebuild | 116 --------------------- app-admin/lastpass-binary-component/metadata.xml | 20 ---- 3 files changed, 139 deletions(-) delete mode 100644 app-admin/lastpass-binary-component/Manifest delete mode 100644 app-admin/lastpass-binary-component/lastpass-binary-component-4.67.1.ebuild delete mode 100644 app-admin/lastpass-binary-component/metadata.xml (limited to 'app-admin/lastpass-binary-component') diff --git a/app-admin/lastpass-binary-component/Manifest b/app-admin/lastpass-binary-component/Manifest deleted file mode 100644 index c0da89bc636c..000000000000 --- a/app-admin/lastpass-binary-component/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST lastpass-binary-component-4.67.1.tar.bz2 1625199 BLAKE2B cd9333866516a0dc43b653106224e5ef1a228c340adac93a2541d4f337b6b865c5eed043cf914a552b390d23a471ff1f21f8439d15282b77fb69dcbd6ffa01c1 SHA512 8277082fcf4cb8ef0f67903f518eb1b55fd6525373f22be0ce7d62abedef76029ef46da7c0aa32d4df3bbc0053471232390ecd69ff0572a3836e08aefee98e48 -EBUILD lastpass-binary-component-4.67.1.ebuild 3766 BLAKE2B 9ddd3ce2de5dd6765aaf269e85530a1d5c49018e5a45914036aa0008bbb65a9dddfef3ce9cd73de3bb2da76eed0d800abf155b50bffa3761cd6784278451684e SHA512 4b6726fe422f56009df365c11cbe24259b5f5c0a9aa37ad446a431ebb334002f582583eaf9a7ba8e9fcbc9d765ce627ea5a985dda54eb1cabf6e20d7d8620b10 -MISC metadata.xml 816 BLAKE2B ea7163f64706263e360241192a07e1e12eabc6fb196e5029cec931c53dacad20a9a4d851402f8942120328aa551159e2ba340257d50a5fcc36f7a72145e13a18 SHA512 71eb5c8aa836f75a5bfed79d7398e30628a274586a019d094a114d582ae2011d148cae325eb79b67e64035822cd18f154b9626142a7b2cc4c57f1e40f2f15b6b 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 783d1214c731..000000000000 --- 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": [ - "support@lastpass.com" - ] - } - 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 6f4f533e3c35..000000000000 --- a/app-admin/lastpass-binary-component/metadata.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - gokturk@gentoo.org - Göktürk Yüksek - - - robbat2@gentoo.org - Robin H. Johnson - - - The binary features for Lastpass include faster encryption/decryption, - clipboard integration, smart card authentication and more for - www-client/google-chrome, www-client/chromium, - and www-client/opera web browsers. For - www-client/firefox this package is not required as the - extension bundles the binary components already. - - -- cgit v1.2.3