x11-plugins/thinkhdaps: Port to python-single-r1
authorDavid Seifert <soap@gentoo.org>
Sat, 18 Feb 2017 19:58:52 +0000 (20:58 +0100)
committerDavid Seifert <soap@gentoo.org>
Sat, 18 Feb 2017 20:37:34 +0000 (21:37 +0100)
Package-Manager: Portage-2.3.3, Repoman-2.3.1

x11-plugins/thinkhdaps/files/thinkhdaps-0.2.1-fix-desktop-qa.patch [new file with mode: 0644]
x11-plugins/thinkhdaps/files/thinkhdaps-0.2.1-fix-python-shebang.patch [new file with mode: 0644]
x11-plugins/thinkhdaps/thinkhdaps-0.2.1-r1.ebuild [new file with mode: 0644]
x11-plugins/thinkhdaps/thinkhdaps-0.2.1.ebuild [deleted file]

diff --git a/x11-plugins/thinkhdaps/files/thinkhdaps-0.2.1-fix-desktop-qa.patch b/x11-plugins/thinkhdaps/files/thinkhdaps-0.2.1-fix-desktop-qa.patch
new file mode 100644 (file)
index 0000000..7bcfafe
--- /dev/null
@@ -0,0 +1,12 @@
+Fix .desktop file to adhere to modern FDO standards.
+
+--- a/thinkhdaps.desktop
++++ b/thinkhdaps.desktop
+@@ -2,6 +2,6 @@
+ Name=ThinkHDAPS
+ Comment=Monitor your HDAPS-enabled harddisk
+ Exec=thinkhdaps
+-Icon=thinkhdaps-logo.svg
++Icon=thinkhdaps-logo
+ Type=Application
+ Categories=System
diff --git a/x11-plugins/thinkhdaps/files/thinkhdaps-0.2.1-fix-python-shebang.patch b/x11-plugins/thinkhdaps/files/thinkhdaps-0.2.1-fix-python-shebang.patch
new file mode 100644 (file)
index 0000000..314ef78
--- /dev/null
@@ -0,0 +1,11 @@
+Make shebangs Gentoo Prefix friendly
+See also: https://blogs.gentoo.org/mgorny/2016/02/08/a-quick-note-on-portable-shebangs/
+
+--- a/thinkhdaps.py
++++ b/thinkhdaps.py
+@@ -1,4 +1,4 @@
+-#!@PYTHON@
++#!/usr/bin/env python2
+ # Copyright (c) 2008-2009  Thomas Pani <thomas.pani@gmail.com>
+ # based on an awn applet Copyright (c) 2008  onox <denkpadje@gmail.com>
+ # 
diff --git a/x11-plugins/thinkhdaps/thinkhdaps-0.2.1-r1.ebuild b/x11-plugins/thinkhdaps/thinkhdaps-0.2.1-r1.ebuild
new file mode 100644 (file)
index 0000000..11e68aa
--- /dev/null
@@ -0,0 +1,33 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit python-single-r1
+
+DESCRIPTION="A PyGTK based HDAPS monitor"
+HOMEPAGE="http://thpani.at/projects/thinkhdaps/"
+SRC_URI="http://thpani.at/media/downloads/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+       dev-python/libgnome-python:2[${PYTHON_USEDEP}]
+       dev-python/pygobject:2[${PYTHON_USEDEP}]
+       dev-python/pygtk:2[${PYTHON_USEDEP}]"
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-0.2.1-fix-desktop-qa.patch
+       "${FILESDIR}"/${PN}-0.2.1-fix-python-shebang.patch
+)
+
+src_configure() {
+       econf --enable-desktop PYTHON="${EPYTHON}"
+}
diff --git a/x11-plugins/thinkhdaps/thinkhdaps-0.2.1.ebuild b/x11-plugins/thinkhdaps/thinkhdaps-0.2.1.ebuild
deleted file mode 100644 (file)
index 2efdcf5..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=2
-
-PYTHON_DEPEND=2
-
-inherit base python
-
-DESCRIPTION="A PyGTK based HDAPS monitor"
-HOMEPAGE="http://thpani.at/projects/thinkhdaps/"
-SRC_URI="http://thpani.at/media/downloads/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="dev-python/libgnome-python:2
-       dev-python/pygobject:2
-       dev-python/pygtk:2"
-
-DOCS=( AUTHORS NEWS )
-
-pkg_setup() {
-       python_set_active_version 2
-       python_pkg_setup
-}
-
-src_configure() {
-       econf --enable-desktop PYTHON=$(PYTHON -2 --absolute-path)
-}