From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BD313138334 for ; Sat, 30 Jun 2018 13:58:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A0C03E086D; Sat, 30 Jun 2018 13:58:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 63FF3E0872 for ; Sat, 30 Jun 2018 13:58:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 21F75335C8A for ; Sat, 30 Jun 2018 13:58:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AAE512E2 for ; Sat, 30 Jun 2018 13:58:01 +0000 (UTC) From: "Kristian Fiskerstrand" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kristian Fiskerstrand" Message-ID: <1530367075.0eddffc9c053d8a92e9098cb760e21a05a45a407.k_f@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/ampache/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/ampache/Manifest www-apps/ampache/ampache-3.8.8.ebuild X-VCS-Directories: www-apps/ampache/ X-VCS-Committer: k_f X-VCS-Committer-Name: Kristian Fiskerstrand X-VCS-Revision: 0eddffc9c053d8a92e9098cb760e21a05a45a407 X-VCS-Branch: master Date: Sat, 30 Jun 2018 13:58:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5d41f0d5-aa1d-4e6b-a900-c888fb87db81 X-Archives-Hash: ac56d49a7f34a705908988c1595f146b commit: 0eddffc9c053d8a92e9098cb760e21a05a45a407 Author: Kristian Fiskerstrand gentoo org> AuthorDate: Sat Jun 30 13:21:04 2018 +0000 Commit: Kristian Fiskerstrand gentoo org> CommitDate: Sat Jun 30 13:57:55 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eddffc9 www-apps/ampache: New upstream version 3.8.8 Amongst other thing fixes Qt5 issues for subsonic api Package-Manager: Portage-2.3.40, Repoman-2.3.9 www-apps/ampache/Manifest | 1 + www-apps/ampache/ampache-3.8.8.ebuild | 48 +++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) diff --git a/www-apps/ampache/Manifest b/www-apps/ampache/Manifest index 613f16dd39f..5d9513989cd 100644 --- a/www-apps/ampache/Manifest +++ b/www-apps/ampache/Manifest @@ -1 +1,2 @@ DIST ampache-3.8.3.tar.gz 8444610 BLAKE2B a08f49ee043ea8dbf89d7ac8a3bed892be389605f6d23aa1454166d7058ae227ec6f24cf397e4d7e9d93c9441a43df54824ece768980cbf7e98bd5a098648a5d SHA512 35deb6bde949641bf39f58e033953bc0d79f1f56033d496e5a3d302d16c998da3468d1d82ac49e0702fada34a6dafb22ffa5bc931fe886e35c81ba2a5cf1233e +DIST ampache-3.8.8.tar.gz 8453616 BLAKE2B 4cfd19e90dda22012b6dd73d4540bb5252e514682b0e51be35456e7179f86123b6e8a7af8e3d936e53e0889da8927a9975ef07761415d019dc9668fc91461615 SHA512 4aa010b6bb42a192d6e2408265a78e738a356c08bfb43464fbc6e6375d8cdc9e4701280db0b21f73a1302b2792f9474c6dc5c7808c977a29aab2047a80caebfc diff --git a/www-apps/ampache/ampache-3.8.8.ebuild b/www-apps/ampache/ampache-3.8.8.ebuild new file mode 100644 index 00000000000..448fc8754f3 --- /dev/null +++ b/www-apps/ampache/ampache-3.8.8.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit webapp + +DESCRIPTION="PHP-based tool for managing,updating and playing audio files via a web interface" +HOMEPAGE="http://www.ampache.org/" +SRC_URI="https://github.com/ampache/ampache/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="aac flac mp3 ogg transcode" + +RDEPEND="dev-lang/php[gd,hash,iconv,mysql,pdo,session,unicode,xml,zlib] + transcode? ( media-sound/lame + aac? ( || ( media-libs/faad2 media-sound/alac_decoder ) ) + flac? ( media-libs/flac ) + mp3? ( media-sound/mp3splt ) + ogg? ( media-sound/mp3splt media-sound/vorbis-tools ) + )" +DEPEND="" + +need_httpd_cgi + +src_install() { + webapp_src_preinst + + doman docs/man/man1/ampache.1 + rm -rf docs/man || die "Unable to remove local man dir" + + dodoc docs/* + rm -rf docs/ || die "Unable to remove local docs dir" + + insinto "${MY_HTDOCSDIR}" + doins -r . + + webapp_postinst_txt en "${FILESDIR}"/installdoc.txt + webapp_src_install +} + +pkg_postinst() { + elog "Install and upgrade instructions can be found here:" + elog " /usr/share/doc/${P}/INSTALL.bz2" + elog " /usr/share/doc/${P}/MIGRATION.bz2" + webapp_pkg_postinst +}