+++ /dev/null
-DIST tails-installer-4.4.11.tar.gz 346123 BLAKE2B c6e0888cce180d411ab60a8098581da0df64ea6b2201076e58d6ae4d489feb5e9967fd67a457e8d333fad9934350d5df13044e02e2d428980bee335fd5420dcd SHA512 06d7e21f01841250ada8eca3dcb14078331450b61be4a15923fd0543970b9fb4284aba6cf12729515b2adff9dfa3f8a011e48d97a114356fff1edfd1eb914684
+++ /dev/null
-diff --git a/data/tails-installer-launcher.desktop b/data/tails-installer-launcher.desktop
-index b8a3f81..c7c5b2a 100644
---- a/data/tails-installer-launcher.desktop
-+++ b/data/tails-installer-launcher.desktop
-@@ -6,8 +6,8 @@ Name[sv]=Tails installerare
- Comment=Install, clone, upgrade Tails
- Comment[fr]=Installer, cloner, mettre à jour Tails
- Comment[sv]=Installera, klona, uppgradera Tails
--Icon=tails-installer.svg
-+Icon=tails-installer
- Exec=tails-installer-launcher
- Terminal=false
--Categories=System;Tails;
-+Categories=System;
- Keywords=Tails;Install;Upgrade;Update;Copy;Clone;Installer;USB;Installation;Anonymity;Tor;Anonymous;SD;Amnesic;Amnesia;
-diff --git a/data/tails-installer.desktop b/data/tails-installer.desktop
-index 7d7fd2c..a79b57a 100644
---- a/data/tails-installer.desktop
-+++ b/data/tails-installer.desktop
-@@ -2,7 +2,7 @@
- Type=Application
- Name=Tails Installer
- Comment=Write operating system images to a USB device
--Icon=tails-installer.svg
-+Icon=tails-installer
- Exec=tails-installer
- Terminal=false
- Categories=System;
+++ /dev/null
---- /tails_installer/creator.py
-+++ /tails_installer/creator.py
-@@ -220,7 +220,7 @@
- raise NotImplementedError
-
- def update_system_partition_properties(self):
-- cmd = ( [ '/sbin/sgdisk' ]
-+ cmd = ( [ '/usr/sbin/sgdisk' ]
- + [ '--typecode=1:%s' % ESP_GUID ]
- + [ self.drive['parent'] ])
- self.popen(cmd, shell=False)
-@@ -235,7 +235,7 @@
- if not device:
- device = self.drive['device']
-
-- proc = self.popen(['/sbin/sgdisk', '--print', device], shell=False, passive=True)
-+ proc = self.popen(['/usr/sbin/sgdisk', '--print', device], shell=False, passive=True)
- if proc.returncode:
- return False
- return True
-@@ -249,7 +249,7 @@
- # understand... while we want to make it do this reset
- # precisely to fix that unreadable partition table issue.
- # Chicken'n'egg, right.
-- self.popen(['/sbin/sgdisk', '--zap-all', device],
-+ self.popen(['/usr/sbin/sgdisk', '--zap-all', device],
- shell=False, passive=True)
-
- def switch_drive_to_system_partition(self):
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription>
- Tails Installer is a graphical tool to install or upgrade Tails on a USB stick from an ISO image.
- </longdescription>
-</pkgmetadata>
+++ /dev/null
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-DISTUTILS_SINGLE_IMPL=1
-
-inherit distutils-r1 gnome2-utils
-
-DESCRIPTION="A graphical tool to install or upgrade Tails on a USB stick from an ISO image"
-HOMEPAGE="https://tails.boum.org https://git.tails.boum.org/liveusb-creator"
-SRC_URI="https://deb.tails.boum.org/pool/main/t/${PN}/${PN}_${PV}+dfsg.orig.tar.gz -> ${P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-PATCHES=( ${FILESDIR}/fix-desktop-file.patch ${FILESDIR}/sgdisk.patch )
-
-DEPEND="${PYTHON_DEPS}
- $(python_gen_cond_dep '
- dev-python/python-distutils-extra[${PYTHON_MULTI_USEDEP}]
- ')"
-RDEPEND="${PYTHON_DEPS}
- app-arch/p7zip
- dev-libs/glib:2
- $(python_gen_cond_dep '
- dev-python/configobj[${PYTHON_MULTI_USEDEP}]
- dev-python/pygobject[${PYTHON_MULTI_USEDEP}]
- dev-python/urlgrabber[${PYTHON_MULTI_USEDEP}]
- ')
- sys-apps/gptfdisk
- sys-auth/polkit
- sys-boot/syslinux
- sys-fs/dosfstools
- sys-fs/mtools
- sys-fs/udisks:2[introspection]
- virtual/cdrtools
- x11-libs/gtk+:3[introspection]"
-
-pkg_preinst() {
- gnome2_icon_savelist
-}
-
-pkg_postinst() {
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}