public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-video/arista: arista-0.9.7.ebuild ChangeLog
@ 2013-02-11 21:13 Sergey Popov (pinkbyte)
  0 siblings, 0 replies; 3+ messages in thread
From: Sergey Popov (pinkbyte) @ 2013-02-11 21:13 UTC (permalink / raw
  To: gentoo-commits

pinkbyte    13/02/11 21:13:36

  Modified:             ChangeLog
  Added:                arista-0.9.7.ebuild
  Log:
  Version bump, wrt bug #358461 - EAPI 5, port to distutils-r1 eclass, utilize l10n eclass
  
  (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.17                 media-video/arista/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/arista/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/arista/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/arista/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/arista/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	11 Feb 2013 19:49:47 -0000	1.16
+++ ChangeLog	11 Feb 2013 21:13:36 -0000	1.17
@@ -1,6 +1,13 @@
 # ChangeLog for media-video/arista
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/arista/ChangeLog,v 1.16 2013/02/11 19:49:47 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/arista/ChangeLog,v 1.17 2013/02/11 21:13:36 pinkbyte Exp $
+
+*arista-0.9.7 (11 Feb 2013)
+
+  11 Feb 2013; Sergey Popov <pinkbyte@gentoo.org> +arista-0.9.7.ebuild,
+  +files/arista-0.9.7-doc-install.patch:
+  Version bump, wrt bug #358461 - EAPI 5, port to distutils-r1 eclass, utilize
+  l10n eclass
 
   11 Feb 2013; Sergey Popov <pinkbyte@gentoo.org> arista-0.9.5.ebuild:
   Add missing dependencies on gnome-base/librsvg and



1.1                  media-video/arista/arista-0.9.7.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/arista/arista-0.9.7.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/arista/arista-0.9.7.ebuild?rev=1.1&content-type=text/plain

Index: arista-0.9.7.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/arista/arista-0.9.7.ebuild,v 1.1 2013/02/11 21:13:36 pinkbyte Exp $

EAPI="5"

PYTHON_COMPAT=( python2_{6,7} )
PYTHON_REQ_USE="xml"

# hack for avoiding detecting 'templates' as a locale, next part of it - in src_prepare
PLOCALES_1="ar ast bg ca cs da de el en_GB es et eu fi fr gl hu ia id it ja jv kn lt nl pl pt pt_BR ro ru sk sl sr sv"
PLOCALES_2="th tr uk zh_CN zh_TW"
PLOCALES="${PLOCALES_1} ${PLOCALES_2}"

inherit distutils-r1 l10n

DESCRIPTION="An easy to use multimedia transcoder for the GNOME Desktop"
HOMEPAGE="http://www.transcoder.org"
SRC_URI="http://programmer-art.org/media/releases/arista-transcoder/${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
# Making these USE-defaults since encoding for portable devices is a very
# common use case for Arista. xvid is being added since it's required for
# DVD ripping. No gst-plugins-x264 available at this time.
IUSE="+faac kde nautilus +x264 +xvid"

DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND=">=x11-libs/gtk+-2.16:2
	>=dev-python/pygtk-2.16:2[${PYTHON_USEDEP}]
	dev-python/pygobject:2[${PYTHON_USEDEP}]
	dev-python/pycairo[${PYTHON_USEDEP}]
	dev-python/gconf-python:2
	dev-python/dbus-python[${PYTHON_USEDEP}]
	dev-python/python-gudev
	gnome-base/librsvg
	>=media-libs/gstreamer-0.10.22:0.10
	dev-python/gst-python:0.10[${PYTHON_USEDEP}]
	media-libs/gst-plugins-base:0.10
	media-libs/gst-plugins-good:0.10
	media-libs/gst-plugins-bad:0.10
	media-plugins/gst-plugins-meta:0.10
	media-plugins/gst-plugins-ffmpeg:0.10
	x11-themes/gnome-icon-theme
	nautilus? ( dev-python/nautilus-python )
	kde? ( dev-python/librsvg-python )
	faac? ( media-plugins/gst-plugins-faac:0.10 )
	x264? ( media-plugins/gst-plugins-x264:0.10 )
	xvid? ( media-plugins/gst-plugins-xvid:0.10 )"

PATCHES=( "${FILESDIR}/${P}-doc-install.patch" )

src_prepare() {
	# dirty hack for new locale detection
	local PLOCALES="${PLOCALES_1} templates ${PLOCALES_2}"
	l10n_find_plocales_changes "${S}/locale" "" ""

	distutils-r1_src_prepare
}

src_install() {
	remove_unused_locale() {
		rm -r "${ED}/usr/share/locale/${1}" || die "can not remove unused locale '${1}'"
	}

	distutils-r1_src_install

	l10n_for_each_disabled_locale_do remove_unused_locale
}

pkg_postinst() {
	einfo "If you find that a format you want is not supported in Arista,"
	einfo "please make sure that you have the corresponding USE-flag enabled"
	einfo "media-plugins/gst-plugins-meta"
}





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-video/arista: arista-0.9.7.ebuild ChangeLog
@ 2014-04-26  8:25 Pacho Ramos (pacho)
  0 siblings, 0 replies; 3+ messages in thread
From: Pacho Ramos (pacho) @ 2014-04-26  8:25 UTC (permalink / raw
  To: gentoo-commits

pacho       14/04/26 08:25:40

  Modified:             arista-0.9.7.ebuild ChangeLog
  Log:
  Adapt to latest pygobject don't providing python2.6 support
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.2                  media-video/arista/arista-0.9.7.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/arista/arista-0.9.7.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/arista/arista-0.9.7.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/arista/arista-0.9.7.ebuild?r1=1.1&r2=1.2

Index: arista-0.9.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/arista/arista-0.9.7.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- arista-0.9.7.ebuild	11 Feb 2013 21:13:36 -0000	1.1
+++ arista-0.9.7.ebuild	26 Apr 2014 08:25:40 -0000	1.2
@@ -1,10 +1,10 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/arista/arista-0.9.7.ebuild,v 1.1 2013/02/11 21:13:36 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/arista/arista-0.9.7.ebuild,v 1.2 2014/04/26 08:25:40 pacho Exp $
 
 EAPI="5"
 
-PYTHON_COMPAT=( python2_{6,7} )
+PYTHON_COMPAT=( python2_7 )
 PYTHON_REQ_USE="xml"
 
 # hack for avoiding detecting 'templates' as a locale, next part of it - in src_prepare



1.18                 media-video/arista/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/arista/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/arista/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/arista/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/arista/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	11 Feb 2013 21:13:36 -0000	1.17
+++ ChangeLog	26 Apr 2014 08:25:40 -0000	1.18
@@ -1,6 +1,9 @@
 # ChangeLog for media-video/arista
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/arista/ChangeLog,v 1.17 2013/02/11 21:13:36 pinkbyte Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-video/arista/ChangeLog,v 1.18 2014/04/26 08:25:40 pacho Exp $
+
+  26 Apr 2014; Pacho Ramos <pacho@gentoo.org> arista-0.9.7.ebuild:
+  Adapt to latest pygobject don't providing python2.6 support
 
 *arista-0.9.7 (11 Feb 2013)
 





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-video/arista: arista-0.9.7.ebuild ChangeLog
@ 2014-12-25 19:48 Michal Gorny (mgorny)
  0 siblings, 0 replies; 3+ messages in thread
From: Michal Gorny (mgorny) @ 2014-12-25 19:48 UTC (permalink / raw
  To: gentoo-commits

mgorny      14/12/25 19:48:21

  Modified:             arista-0.9.7.ebuild ChangeLog
  Log:
  Add missing PYTHON_USEDEP.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.3                  media-video/arista/arista-0.9.7.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/arista/arista-0.9.7.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/arista/arista-0.9.7.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/arista/arista-0.9.7.ebuild?r1=1.2&r2=1.3

Index: arista-0.9.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/arista/arista-0.9.7.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- arista-0.9.7.ebuild	26 Apr 2014 08:25:40 -0000	1.2
+++ arista-0.9.7.ebuild	25 Dec 2014 19:48:21 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/arista/arista-0.9.7.ebuild,v 1.2 2014/04/26 08:25:40 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/arista/arista-0.9.7.ebuild,v 1.3 2014/12/25 19:48:21 mgorny Exp $
 
 EAPI="5"
 
@@ -33,7 +33,7 @@
 	dev-python/pycairo[${PYTHON_USEDEP}]
 	dev-python/gconf-python:2
 	dev-python/dbus-python[${PYTHON_USEDEP}]
-	dev-python/python-gudev
+	dev-python/python-gudev[${PYTHON_USEDEP}]
 	gnome-base/librsvg
 	>=media-libs/gstreamer-0.10.22:0.10
 	dev-python/gst-python:0.10[${PYTHON_USEDEP}]
@@ -43,8 +43,8 @@
 	media-plugins/gst-plugins-meta:0.10
 	media-plugins/gst-plugins-ffmpeg:0.10
 	x11-themes/gnome-icon-theme
-	nautilus? ( dev-python/nautilus-python )
-	kde? ( dev-python/librsvg-python )
+	nautilus? ( dev-python/nautilus-python[${PYTHON_USEDEP}] )
+	kde? ( dev-python/librsvg-python[${PYTHON_USEDEP}] )
 	faac? ( media-plugins/gst-plugins-faac:0.10 )
 	x264? ( media-plugins/gst-plugins-x264:0.10 )
 	xvid? ( media-plugins/gst-plugins-xvid:0.10 )"



1.19                 media-video/arista/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/arista/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/arista/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/arista/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/arista/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	26 Apr 2014 08:25:40 -0000	1.18
+++ ChangeLog	25 Dec 2014 19:48:21 -0000	1.19
@@ -1,6 +1,9 @@
 # ChangeLog for media-video/arista
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/arista/ChangeLog,v 1.18 2014/04/26 08:25:40 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/arista/ChangeLog,v 1.19 2014/12/25 19:48:21 mgorny Exp $
+
+  25 Dec 2014; Michał Górny <mgorny@gentoo.org> arista-0.9.7.ebuild:
+  Add missing PYTHON_USEDEP.
 
   26 Apr 2014; Pacho Ramos <pacho@gentoo.org> arista-0.9.7.ebuild:
   Adapt to latest pygobject don't providing python2.6 support





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-12-25 19:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-26  8:25 [gentoo-commits] gentoo-x86 commit in media-video/arista: arista-0.9.7.ebuild ChangeLog Pacho Ramos (pacho)
  -- strict thread matches above, loose matches on Subject: below --
2014-12-25 19:48 Michal Gorny (mgorny)
2013-02-11 21:13 Sergey Popov (pinkbyte)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox