Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/mythweb/
Date: Fri, 11 Aug 2017 15:14:22
Message-Id: 1502464273.6e76417ce6d6549e2c14bc3376a076b38195a9bb.asturm@gentoo
1 commit: 6e76417ce6d6549e2c14bc3376a076b38195a9bb
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 11 15:04:01 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 11 15:11:13 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e76417c
7
8 www-apps/mythweb: Drop 0.27.5
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 www-apps/mythweb/Manifest | 1 -
13 www-apps/mythweb/mythweb-0.27.5.ebuild | 89 ----------------------------------
14 2 files changed, 90 deletions(-)
15
16 diff --git a/www-apps/mythweb/Manifest b/www-apps/mythweb/Manifest
17 index e6e7209addd..73ee467a47b 100644
18 --- a/www-apps/mythweb/Manifest
19 +++ b/www-apps/mythweb/Manifest
20 @@ -1,2 +1 @@
21 -DIST mythweb-0.27.5.tar.gz 1686597 SHA256 5dc3fd9e60f59dea4264fb064b40d73f2534c99d0399da6223a42d2f563e9d13 SHA512 effa5f9cab6b40423a819f0307aecd1faa397da7d859503162b6229e5da2d4cd0d95d793326768335518cd397fa58ba71ad98c14247feda10e7930f7e023f1af WHIRLPOOL 8721398611db0572f475f5642c397a5d3f0fbe352f0f3ea23dc21cc0ea94e0e6876a713cf0f99331c6fc1f585a62525dc64510737a85667c0e2a14b6f1c6bb10
22 DIST mythweb-0.28.1.tar.gz 1705490 SHA256 bbd82992230d3571eba55a26a91cc3f2dcddfa631d1822ce58e1bf99f2537244 SHA512 0ce9e2c7138d35ef59859a8a8980b01d90d9b616e55653fb28dd5a473199446508e525171687383ce83051b434f5e7618f509a9e75cd84296446ee450733e963 WHIRLPOOL b36f3226a9984d4c7ea383e1344ddb630b06972fd3170cdcbd0521f9bad3b7acf24f94c7e7099812f8fe5eeea17ab115a36a38ea0b07617998011c7f7c545e00
23
24 diff --git a/www-apps/mythweb/mythweb-0.27.5.ebuild b/www-apps/mythweb/mythweb-0.27.5.ebuild
25 deleted file mode 100644
26 index a2a36120fb7..00000000000
27 --- a/www-apps/mythweb/mythweb-0.27.5.ebuild
28 +++ /dev/null
29 @@ -1,89 +0,0 @@
30 -# Copyright 1999-2014 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=4
34 -
35 -inherit eutils webapp
36 -
37 -#BACKPORTS="4f6ac2a60b"
38 -# Release version
39 -MY_PV="${PV%_p*}"
40 -MY_P="mythweb-${MY_PV}"
41 -
42 -DESCRIPTION="PHP scripts intended to manage MythTV from a web browser"
43 -HOMEPAGE="http://www.mythtv.org"
44 -LICENSE="GPL-2"
45 -SRC_URI="https://github.com/MythTV/mythweb/archive/v${MY_PV}.tar.gz -> mythweb-${MY_PV}.tar.gz
46 - ${BACKPORTS:+https://dev.gentoo.org/~cardoe/distfiles/${MY_P}-${BACKPORTS}.tar.xz}"
47 -IUSE=""
48 -KEYWORDS="~amd64 ~ppc ~x86"
49 -
50 -RDEPEND="dev-lang/php[json,mysql,session,posix]
51 - virtual/httpd-php
52 - dev-perl/DBI
53 - dev-perl/DBD-mysql
54 - dev-perl/HTTP-Date
55 - dev-perl/Net-UPnP"
56 -
57 -DEPEND="${RDEPEND}"
58 -
59 -need_httpd_cgi
60 -
61 -S="${WORKDIR}/${MY_P}"
62 -
63 -src_prepare() {
64 - cd "${S}"/../
65 -
66 - [[ -n ${BACKPORTS} ]] && \
67 - EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/../patches" \
68 - epatch
69 -
70 - epatch_user
71 -}
72 -
73 -src_configure() {
74 - :
75 -}
76 -
77 -src_compile() {
78 - :
79 -}
80 -
81 -src_install() {
82 - webapp_src_preinst
83 -
84 - # Install docs
85 - cd "${S}"
86 - dodoc README INSTALL
87 -
88 - # Install htdocs files
89 - insinto "${MY_HTDOCSDIR}"
90 - doins mythweb.php
91 - doins -r classes
92 - doins -r configuration
93 - doins -r data
94 - doins -r includes
95 - doins -r js
96 - doins -r modules
97 - doins -r skins
98 - doins -r tests
99 - exeinto "${MY_HTDOCSDIR}"
100 - doexe mythweb.pl
101 -
102 - # Install our server config files
103 - webapp_server_configfile apache mythweb.conf.apache mythweb.conf
104 - webapp_server_configfile lighttpd mythweb.conf.lighttpd mythweb.conf
105 - webapp_server_configfile nginx "${FILESDIR}"/mythweb.conf.nginx \
106 - mythweb.include
107 -
108 - # Data needs to be writable and modifiable by the web server
109 - webapp_serverowned -R "${MY_HTDOCSDIR}"/data
110 -
111 - # Message to display after install
112 - webapp_postinst_txt en "${FILESDIR}"/0.25-postinstall-en.txt
113 -
114 - # Script to set the correct defaults on install
115 - webapp_hook_script "${FILESDIR}"/reconfig
116 -
117 - webapp_src_install
118 -}