diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2017-07-10 15:44:40 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2017-07-10 15:44:40 +0200 |
commit | f699121e0ab6a0263aaa7ab5909b3ac40bc94e6e (patch) | |
tree | f912693ecbe8a04d5cbd7ec9630c0c069e3366e3 /sys-apps/fwupd | |
parent | sys-apps/fwupd: fix dependencies, use xdg-utils to fix sandbox violation (diff) | |
download | gentoo-f699121e0ab6a0263aaa7ab5909b3ac40bc94e6e.tar.gz gentoo-f699121e0ab6a0263aaa7ab5909b3ac40bc94e6e.tar.bz2 gentoo-f699121e0ab6a0263aaa7ab5909b3ac40bc94e6e.zip |
sys-apps/fwupd: Removed old.
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'sys-apps/fwupd')
-rw-r--r-- | sys-apps/fwupd/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/fwupd/fwupd-0.9.4.ebuild | 67 |
2 files changed, 0 insertions, 68 deletions
diff --git a/sys-apps/fwupd/Manifest b/sys-apps/fwupd/Manifest index ff15da82ca84..953b366d4973 100644 --- a/sys-apps/fwupd/Manifest +++ b/sys-apps/fwupd/Manifest @@ -1,2 +1 @@ -DIST fwupd-0.9.4.tar.gz 1355237 SHA256 ac6c02df4a00d541a205f17c0fa681cc5fe9161dd20cc28045c28cbe43b042e0 SHA512 f4a0b46f7689744b6ddac698b8908f6711b9318ccca9576eadf1fd9f00b266be9e8723309286505173b1f10f170542b67ff67d0ebf3678b23fc9bf8fed03f8ae WHIRLPOOL d4fe5c2cc997b72dc940fda5e01eece69e3a8e86b29b11766afcf806de693e7e5cc6603ecb5cd3c5a82c39344c583d061018e12ddbaa5b459195e5ed51c52459 DIST fwupd-0.9.5.tar.gz 1389768 SHA256 876bb4c1cc5b27bb5f30e1c5d81522c82554738bede9a811f9e352966e58453e SHA512 2a8ca8da2fffa71bdaa44b82aff1a4151441b8496793101d7d0b1ab984bfbb10a3a94c4ebae5cfc17241364ab7aed051252a70543ebe6a82dd8bdb5c6f52863d WHIRLPOOL b7d606acd35a58e25ee94045557899b1c9ea30941024cfb17bf3226f39dab7961c802abafc9ca6320e21ea1ca3792a0bd37fa942476dfd0b37c4ce3b4fe28b5b diff --git a/sys-apps/fwupd/fwupd-0.9.4.ebuild b/sys-apps/fwupd/fwupd-0.9.4.ebuild deleted file mode 100644 index ab4a1a1eb5d3..000000000000 --- a/sys-apps/fwupd/fwupd-0.9.4.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit meson - -DESCRIPTION="Aims to make updating firmware on Linux automatic, safe and reliable" -HOMEPAGE="http://www.fwupd.org" -SRC_URI="https://github.com/hughsie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+" - -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="colorhug dell doc elf +man systemd uefi" - -RDEPEND=" - app-crypt/gpgme - dev-db/sqlite - >=dev-libs/appstream-glib-0.6.13 - >=dev-libs/glib-2.45.8:2 - dev-libs/libgpg-error - dev-libs/libgudev - dev-libs/libgusb - >=net-libs/libsoup-2.51.92:2.4 - >=sys-auth/polkit-0.103 - colorhug? ( >=x11-misc/colord-1.2.12:0= ) - dell? ( - sys-libs/efivar - >=sys-libs/libsmbios-2.3.0 - ) - elf? ( dev-libs/libelf ) - systemd? ( sys-apps/systemd ) - !systemd? ( >=sys-auth/consolekit-1.0.0 ) - uefi? ( >=sys-apps/fwupdate-5 ) -" -DEPEND=" - ${RDEPEND} - app-arch/gcab - app-arch/libarchive - virtual/pkgconfig - doc? ( dev-util/gtk-doc ) - man? ( app-text/docbook-sgml-utils ) -" - -REQUIRED_USE="dell? ( uefi )" - -PATCHES=( - "${FILESDIR}/${PN}-0.9-polkit_its_files.patch" -) - -src_configure() { - local emesonargs=( - -Denable-colorhug="$(usex colorhug true false)" - -Denable-consolekit="$(usex systemd false true)" - -Denable-dell="$(usex dell true false)" - -Denable-doc="$(usex doc true false)" - -Denable-man="$(usex man true false)" - -Denable-libelf="$(usex elf true false)" - -Denable-systemd="$(usex systemd true false)" - # requires libtbtfwu which is not packaged yet - -Denable-thunderbolt=false - -Denable-uefi="$(usex uefi true false)" - ) - meson_src_configure -} |