summaryrefslogtreecommitdiff
path: root/app-misc/mswinurl_launcher
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-misc/mswinurl_launcher
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-misc/mswinurl_launcher')
-rw-r--r--app-misc/mswinurl_launcher/Manifest3
-rw-r--r--app-misc/mswinurl_launcher/metadata.xml10
-rw-r--r--app-misc/mswinurl_launcher/mswinurl_launcher-1.0.ebuild54
3 files changed, 0 insertions, 67 deletions
diff --git a/app-misc/mswinurl_launcher/Manifest b/app-misc/mswinurl_launcher/Manifest
deleted file mode 100644
index f45ac62df47c..000000000000
--- a/app-misc/mswinurl_launcher/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST mswinurl_launcher-1.0.tar.gz 1289 BLAKE2B b705fac43259c6b80d1d1182dd82165fccb2e41c01874021712db09d50f26d1bdfd65e9854a8d184dae7a25d778880f66825f5b4df3596954d1481c42675216d SHA512 60435b78dc88ff3e6f780ef42a975eaedc2f515168ba1c6c3fc8b38f87ea5ad4d70d975825877233bae1c5f9c6a521d1c12d301683c9e3e705d18c6c26ce4f86
-EBUILD mswinurl_launcher-1.0.ebuild 1262 BLAKE2B fac9adc2187c8ae38de8c6e8357a358dc3fba424d30683226baa3e422006e14a02a8b0fad1291c23c3ef827cc0e1a0a2f9c8c816f4e064e0fb5cf2a4c818d67e SHA512 c02406dd4dda8e19de8fa8eeec5788aff4b225197be20333a011347ef4fcae305ceddb0cef91892c769fd36126ac6a93f54d91138f4fb49561adbf2221317466
-MISC metadata.xml 424 BLAKE2B 9e50878d39a0109d5094ed04786e7033053f4ae58717052baba00d2de6a1a0091be92609283896414b61be3c05419507be804f839674cde5588cba9c4317ee55 SHA512 1b140f4cee7cea8c31036eb2232f1c8a859b1ee6e783b47be1c091ff0b5a8c8498470e691e977abb6eebaebf61def9dd4a8836686a573be42608101e07983f18
diff --git a/app-misc/mswinurl_launcher/metadata.xml b/app-misc/mswinurl_launcher/metadata.xml
deleted file mode 100644
index c57658328f07..000000000000
--- a/app-misc/mswinurl_launcher/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="person">
- <email>axs@gentoo.org</email>
-</maintainer>
-<longdescription>
-This is a simple launcher script and .desktop entry to associate MS Windows *.URL (text/x-uri)
-files on linux DEs so that they will open in the configured default web browser.</longdescription>
-</pkgmetadata>
diff --git a/app-misc/mswinurl_launcher/mswinurl_launcher-1.0.ebuild b/app-misc/mswinurl_launcher/mswinurl_launcher-1.0.ebuild
deleted file mode 100644
index 2faf9f6a54d6..000000000000
--- a/app-misc/mswinurl_launcher/mswinurl_launcher-1.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-inherit eutils fdo-mime python-r1
-
-GIST_STRING="77635-a46707715aa2e112d2ea5ec26771030ff5e7eb64"
-
-DESCRIPTION="Launcher and desktop association for MS Windows *.URL (text/x-uri) files"
-HOMEPAGE="https://gist.github.com/endolith/77635"
-SRC_URI="https://gist.github.com/endolith/${GIST_STRING/-//archive/}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="all-rights-reserved"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-RESTRICT="mirror"
-
-RDEPEND="${PYTHON_DEPS}"
-DEPEND="${RDEPEND}
- dev-util/desktop-file-utils"
-
-S="${WORKDIR}"/$GIST_STRING
-
-src_install() {
- dobin ${PN}.py
- python_replicate_script "${ED%/}"/usr/bin/${PN}.py
-
- cat <<DESKTOP_EOF >"${T}"/${PN}.desktop
-[Desktop Entry]
-Version=1.0
-Type=Application
-Name=MS Windows URL file launcher
-Comment=Python script to parse and launch .url files (html links) from MS Windows
-NoDisplay=true
-Terminal=false
-TryExec=mswinurl_launcher.py
-Exec=mswinurl_launcher.py %F
-Icon=text-html
-MimeType=text/x-uri;
-DESKTOP_EOF
- domenu "${T}"/${PN}.desktop
-}
-
-pkg_postinst() {
- fdo-mime_desktop_database_update
-}
-
-pkg_postrm() {
- fdo-mime_desktop_database_update
-}