public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Kristian Fiskerstrand" <k_f@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/ampache/
Date: Fri,  8 Jan 2016 17:05:25 +0000 (UTC)	[thread overview]
Message-ID: <1452272273.782f1f7c3c14faf4f43f5c4f4d2824dd1b4653b1.k_f@gentoo> (raw)

commit:     782f1f7c3c14faf4f43f5c4f4d2824dd1b4653b1
Author:     Kristian Fiskerstrand <k_f <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  8 16:57:30 2016 +0000
Commit:     Kristian Fiskerstrand <k_f <AT> gentoo <DOT> org>
CommitDate: Fri Jan  8 16:57:53 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=782f1f7c

www-apps/ampache: New upstream version 3.8.1

Taking over as maintainer and updating to current version 3.8.1

Package-Manager: portage-2.2.26

 www-apps/ampache/Manifest             |  1 +
 www-apps/ampache/ampache-3.8.1.ebuild | 49 +++++++++++++++++++++++++++++++++++
 www-apps/ampache/metadata.xml         |  5 +++-
 3 files changed, 54 insertions(+), 1 deletion(-)

diff --git a/www-apps/ampache/Manifest b/www-apps/ampache/Manifest
index d7b4f6a..1846393 100644
--- a/www-apps/ampache/Manifest
+++ b/www-apps/ampache/Manifest
@@ -1,3 +1,4 @@
+DIST 3.8.1.tar.gz 7938754 SHA256 2eff94b5674ceb3cfc3a53c1addb297b016f74b1e732f17e9d05920f2ed2a35a SHA512 70151a2f28ab8998fea9be2817bd9ba7e80eea1aa78867d69f0e250bea7e9f025825566a0b80d06de09c6d73352f6951922cc52da98370c3c341edabffbc6061 WHIRLPOOL f67fc41cf4d25512d2b0834e9903f59e230aeeb0ab9e92394ebc9ae938cabed3de47fae00e1595d3a402f94b7e8d9ed00e5215977f81a972e9e3cd8acc994d82
 DIST ampache-3.4.3.tar.gz 1414765 SHA256 001b34abb77a830ce5f67d9823b8fbeba75a517b577c650349843854deb8d0eb SHA512 89d14ac458f40c15dcbe5a992636f573afed15f31cbcdfbce66415f9e0107fd53c978947ba8744ba01fc8d24bb1d3c3681c1bad280be2b759e5fd15d1f722441 WHIRLPOOL ee5f619f22ba6e75969868789e58936ab47b6d59c66d69e8ba92c5b04c3c250679a5c5d51c8a37b66b2ae59e1b1e91514cbd6bd2ce959b75de2f4d6fc388cc22
 DIST ampache-3.5.3.tar.gz 1962048 SHA256 b4c0d58754007c19dc959659cf43442d9f0cf3ebdbeb35b8e2845870bca0ca4c SHA512 148c1f238f63955fceb5b31132118eca54aae3a0cd51df85dded1814f952d454c456f69786d8eec15d02fdc44007e7072aba6a5d717d37cdb6af7f42f032a7bc WHIRLPOOL 0ee48c54134ab43a376b81d13be784aabf4a0f4c794d4591d083508cbee1250b86f8cf93c7dddf375eefcafeb12cb911655da0f5f241188a6f2a0ce58b8d8731
 DIST ampache-3.5.4.tar.gz 1961555 SHA256 f5ee6906d2af60ea8dcbd1b3a18119ffbe6b92c21c0b0c59a1ba01e5bead5f74 SHA512 0a671ce34329ab1b12b7a3880eea1f1986a5f599aae72e7294247accc4819a535bfd59685b93ab2cb9995404e394f4c8ed5424844113b6bf5b6d20404ae06482 WHIRLPOOL 2a5dc47dda725928bb2de0496c91ee659e4393691c31eb825e633e7600f62585f9412da9cb4b2b9becb83880d77a2c68de2312a7b4ef75fc998024507a680ee6

diff --git a/www-apps/ampache/ampache-3.8.1.ebuild b/www-apps/ampache/ampache-3.8.1.ebuild
new file mode 100644
index 0000000..52b08a8
--- /dev/null
+++ b/www-apps/ampache/ampache-3.8.1.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+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"
+
+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
+}

diff --git a/www-apps/ampache/metadata.xml b/www-apps/ampache/metadata.xml
index c87b0e7..db86fee 100644
--- a/www-apps/ampache/metadata.xml
+++ b/www-apps/ampache/metadata.xml
@@ -1,7 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<herd>web-apps</herd>
+	<maintainer>
+		<email>k_f@gentoo.org</email>
+		<name>Kristian Fiskerstrand</name>
+	</maintainer>
 	<use>
 		<flag name='transcode'>Install optional dependencies for transcoding support</flag>
 	</use>


             reply	other threads:[~2016-01-08 17:05 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-08 17:05 Kristian Fiskerstrand [this message]
  -- strict thread matches above, loose matches on Subject: below --
2016-01-11 10:56 [gentoo-commits] repo/gentoo:master commit in: www-apps/ampache/ Agostino Sarubbo
2016-01-17 17:28 Agostino Sarubbo
2016-01-18  8:56 Kristian Fiskerstrand
2016-04-23 17:01 Kristian Fiskerstrand
2016-07-30 14:16 Mike Gilbert
2017-06-25 18:19 Kristian Fiskerstrand
2017-06-28 13:19 Agostino Sarubbo
2017-06-30 11:10 Agostino Sarubbo
2017-07-08 13:43 Kristian Fiskerstrand
2018-06-30 13:58 Kristian Fiskerstrand
2020-03-31 12:47 Brian Evans
2020-04-04 21:38 Brian Evans

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1452272273.782f1f7c3c14faf4f43f5c4f4d2824dd1b4653b1.k_f@gentoo \
    --to=k_f@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox