* [gentoo-commits] gentoo-x86 commit in media-sound/beets: ChangeLog beets-1.3.3.ebuild
@ 2014-03-10 19:58 Stanislav Ochotnicky (sochotnicky)
0 siblings, 0 replies; 2+ messages in thread
From: Stanislav Ochotnicky (sochotnicky) @ 2014-03-10 19:58 UTC (permalink / raw
To: gentoo-commits
sochotnicky 14/03/10 19:58:55
Modified: ChangeLog
Added: beets-1.3.3.ebuild
Log:
Version bump to media-sound/beets-1.3.3
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 7B087241)
Revision Changes Path
1.20 media-sound/beets/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/beets/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/beets/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/beets/ChangeLog?r1=1.19&r2=1.20
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/beets/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog 25 Jan 2014 15:59:21 -0000 1.19
+++ ChangeLog 10 Mar 2014 19:58:55 -0000 1.20
@@ -1,6 +1,12 @@
# ChangeLog for media-sound/beets
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/beets/ChangeLog,v 1.19 2014/01/25 15:59:21 kensington Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/beets/ChangeLog,v 1.20 2014/03/10 19:58:55 sochotnicky Exp $
+
+*beets-1.3.3 (10 Mar 2014)
+
+ 10 Mar 2014; Stanislav Ochotnicky <sochotnicky@gentoo.org>
+ +beets-1.3.3.ebuild:
+ Version bump to beets 1.3.3
25 Jan 2014; Michael Palimaka <kensington@gentoo.org> beets-1.1.0.ebuild,
beets-1.3.1.ebuild, beets-1.3.2.ebuild:
1.1 media-sound/beets/beets-1.3.3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/beets/beets-1.3.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/beets/beets-1.3.3.ebuild?rev=1.1&content-type=text/plain
Index: beets-1.3.3.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/beets/beets-1.3.3.ebuild,v 1.1 2014/03/10 19:58:55 sochotnicky Exp $
EAPI="5"
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE="sqlite"
inherit distutils-r1 eutils
MY_PV=${PV/_beta/-beta.}
MY_P=${PN}-${MY_PV}
DESCRIPTION="A media library management system for obsessive-compulsive music geeks"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
HOMEPAGE="http://beets.radbox.org/ http://pypi.python.org/pypi/beets"
KEYWORDS="~amd64 ~x86"
SLOT="0"
LICENSE="MIT"
IUSE="beatport bpd chroma convert doc discogs echonest_tempo lastgenre replaygain test web"
RDEPEND="
dev-python/munkres[${PYTHON_USEDEP}]
>=dev-python/python-musicbrainz-ngs-0.4[${PYTHON_USEDEP}]
dev-python/unidecode[${PYTHON_USEDEP}]
>=media-libs/mutagen-1.22[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
beatport? ( dev-python/requests[${PYTHON_USEDEP}] )
bpd? ( dev-python/bluelet[${PYTHON_USEDEP}] )
chroma? ( dev-python/pyacoustid[${PYTHON_USEDEP}] )
convert? ( media-video/ffmpeg:0[encode] )
discogs? ( dev-python/discogs-client[${PYTHON_USEDEP}] )
doc? ( dev-python/sphinx )
echonest_tempo? ( dev-python/pyechonest[${PYTHON_USEDEP}] )
lastgenre? ( dev-python/pylast[${PYTHON_USEDEP}] )
replaygain? ( || ( media-sound/mp3gain media-sound/aacgain ) )
web? ( dev-python/flask[${PYTHON_USEDEP}] )
"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"
S=${WORKDIR}/${MY_P}
src_prepare() {
# remove plugins that do not have appropriate dependencies installed
for flag in beatport bpd chroma convert discogs echonest_tempo lastgenre \
replaygain web;do
if ! use $flag ; then
rm -r beetsplug/$flag* || \
die "Unable to remove $flag plugin"
fi
done
for flag in bpd lastgenre web;do
if ! use $flag ; then
sed -i "s:'beetsplug.$flag',::" setup.py || \
die "Unable to disable $flag plugin "
fi
done
use bpd || rm -f test/test_player.py
}
python_compile_all() {
use doc && emake -C docs html
}
python_test() {
cd test
if ! use web;then
rm test_web.py || die "Failed to remove test_web.py"
fi
"${PYTHON}" testall.py || die "Testsuite failed"
}
python_install_all() {
doman man/beet.1 man/beetsconfig.5
use doc && dohtml -r docs/_build/html/
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-sound/beets: ChangeLog beets-1.3.3.ebuild
@ 2015-04-18 7:26 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 2+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2015-04-18 7:26 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 15/04/18 07:26:43
Modified: ChangeLog
Removed: beets-1.3.3.ebuild
Log:
old
(Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.23 media-sound/beets/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/beets/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/beets/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/beets/ChangeLog?r1=1.22&r2=1.23
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/beets/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog 13 May 2014 16:48:34 -0000 1.22
+++ ChangeLog 18 Apr 2015 07:26:43 -0000 1.23
@@ -1,6 +1,9 @@
# ChangeLog for media-sound/beets
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/beets/ChangeLog,v 1.22 2014/05/13 16:48:34 sochotnicky Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/beets/ChangeLog,v 1.23 2015/04/18 07:26:43 mr_bones_ Exp $
+
+ 18 Apr 2015; Michael Sterrett <mr_bones_@gentoo.org> -beets-1.3.3.ebuild:
+ old
*beets-1.3.3-r1 (13 May 2014)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-04-18 7:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-10 19:58 [gentoo-commits] gentoo-x86 commit in media-sound/beets: ChangeLog beets-1.3.3.ebuild Stanislav Ochotnicky (sochotnicky)
-- strict thread matches above, loose matches on Subject: below --
2015-04-18 7:26 Michael Sterrett (mr_bones_)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox