add multilib aware gst-plugins
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@2776 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
parent
0d5e4b415c
commit
e28271bff4
127
eclass/gst-plugins-bad.eclass
Normal file
127
eclass/gst-plugins-bad.eclass
Normal file
@ -0,0 +1,127 @@
|
||||
# Copyright 1999-2009 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-bad.eclass,v 1.34 2010/07/30 12:00:43 leio Exp $
|
||||
|
||||
#
|
||||
# Original Author: Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
# Based on the work of foser <foser@gentoo.org> and zaheerm <zaheerm@gentoo.org>
|
||||
# Purpose: This elcass is designed to help package external gst-plugins per
|
||||
# plugin rather than in a single package.
|
||||
#
|
||||
|
||||
inherit eutils versionator gst-plugins10
|
||||
|
||||
# This list is current for gst-plugins-bad-0.10.18.
|
||||
my_gst_plugins_bad="directsound directdraw osx_video quicktime vcd
|
||||
alsa assrender amrwb apexsink bz2 cdaudio celt cog dc1394 directfb dirac dts divx
|
||||
metadata faac faad fbdev flite gsm jack jp2k kate ladspa lv2 libmms
|
||||
modplug mimic mpeg2enc mplex musepack musicbrainz mythtv nas neon ofa rsvg
|
||||
timidity wildmidi sdl sdltest sndfile soundtouch spc gme swfdec theoradec xvid
|
||||
dvb wininet acm vdpau schro zbar"
|
||||
|
||||
# When adding conditionals like below, be careful about having leading spaces
|
||||
|
||||
# Changes in 0.10.19:
|
||||
# dvdnav configure option changed from --enable-dvdnav to --enable-resindvd
|
||||
if version_is_at_least "0.10.19"; then
|
||||
my_gst_plugins_bad+=" resindvd vp8"
|
||||
fi
|
||||
|
||||
# dvdnav configure option changed from --enable-dvdnav to --enable-resindvd
|
||||
# oss4 moved to -good
|
||||
if ! version_is_at_least "0.10.19"; then
|
||||
my_gst_plugins_bad+=" dvdnav oss4"
|
||||
fi
|
||||
|
||||
# Changes in 0.10.18:
|
||||
# ivorbis gone (moved to -base-0.10.27 as part of vorbis plugin)
|
||||
if ! version_is_at_least "0.10.18"; then
|
||||
my_gst_plugins_bad+=" ivorbis"
|
||||
fi
|
||||
|
||||
MY_PN="gst-plugins-bad"
|
||||
MY_P=${MY_PN}-${PV}
|
||||
|
||||
SRC_URI="http://gstreamer.freedesktop.org/src/gst-plugins-bad/${MY_P}.tar.bz2"
|
||||
if [ ${PV} == "0.10.14" ]; then
|
||||
SRC_URI="${SRC_URI} http://dev.gentoo.org/~leio/distfiles/gst-plugins-bad-0.10.14-kate-configure-fix.patch.bz2"
|
||||
fi
|
||||
|
||||
# added to remove circular deps
|
||||
# 6/2/2006 - zaheerm
|
||||
if [ "${PN}" != "${MY_PN}" ]; then
|
||||
RDEPEND="=media-libs/gstreamer-0.10*
|
||||
=media-libs/gst-plugins-base-0.10*
|
||||
>=dev-libs/glib-2.6
|
||||
>=dev-libs/liboil-0.3.8"
|
||||
DEPEND="${RDEPEND}
|
||||
sys-apps/sed
|
||||
dev-util/pkgconfig
|
||||
sys-devel/gettext"
|
||||
RESTRICT=test
|
||||
fi
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
gst-plugins-bad_src_unpack() {
|
||||
# local makefiles
|
||||
|
||||
unpack ${A}
|
||||
|
||||
# Link with the syswide installed gst-libs if needed
|
||||
gst-plugins10_find_plugin_dir
|
||||
sed -e "s:\$(top_builddir)/gst-libs/gst/interfaces/libgstphotography-\$(GST_MAJORMINOR).la:${ROOT}/usr/$(get_libdir)/libgstphotography-\$(GST_MAJORMINOR).so:" \
|
||||
-e "s:\$(top_builddir)/gst-libs/gst/signalprocessor/libgstsignalprocessor-\$(GST_MAJORMINOR).la:${ROOT}/usr/$(get_libdir)/libgstsignalprocessor-\$(GST_MAJORMINOR).so:" \
|
||||
-e "s:\$(top_builddir)/gst-libs/gst/video/libgstbasevideo-\$(GST_MAJORMINOR).la:${ROOT}/usr/$(get_libdir)/libgstbasevideo-\$(GST_MAJORMINOR).so:" \
|
||||
-i Makefile.in
|
||||
|
||||
# 0.10.14 configure errors when --disable-kate is passed:
|
||||
# configure: error: conditional "USE_TIGER" was never defined.
|
||||
# Fix it - this has to stay until any 0.10.14 split or main is in tree:
|
||||
if [ ${PV} == "0.10.14" ]; then
|
||||
cd ${S}
|
||||
epatch "${WORKDIR}/gst-plugins-bad-0.10.14-kate-configure-fix.patch"
|
||||
fi
|
||||
|
||||
# Remove generation of any other Makefiles except the plugin's Makefile
|
||||
# if [[ -d "${S}/sys/${GST_PLUGINS_BUILD_DIR}" ]] ; then
|
||||
# makefiles="Makefile sys/Makefile sys/${GST_PLUGINS_BUILD_DIR}/Makefile"
|
||||
# elif [[ -d "${S}/ext/${GST_PLUGINS_BUILD_DIR}" ]] ; then
|
||||
# makefiles="Makefile ext/Makefile ext/${GST_PLUGINS_BUILD_DIR}/Makefile"
|
||||
# fi
|
||||
|
||||
# sed -e "s:ac_config_files=.*:ac_config_files='${makefiles}':" \
|
||||
# -i ${S}/configure
|
||||
}
|
||||
|
||||
gst-plugins-bad_src_configure() {
|
||||
local plugin gst_conf
|
||||
|
||||
einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..."
|
||||
|
||||
for plugin in ${my_gst_plugins_bad} ; do
|
||||
gst_conf="${gst_conf} --disable-${plugin}"
|
||||
done
|
||||
|
||||
for plugin in ${GST_PLUGINS_BUILD} ; do
|
||||
gst_conf="${gst_conf} --enable-${plugin}"
|
||||
done
|
||||
|
||||
cd ${S}
|
||||
econf ${@} --with-package-name="Gentoo GStreamer Ebuild" --with-package-origin="http://www.gentoo.org" ${gst_conf} || die "configure failed"
|
||||
}
|
||||
|
||||
gst-plugins-bad_src_compile() {
|
||||
gst-plugins-bad_src_configure ${@}
|
||||
|
||||
gst-plugins10_find_plugin_dir
|
||||
emake || die "compile failure"
|
||||
}
|
||||
|
||||
gst-plugins-bad_src_install() {
|
||||
gst-plugins10_find_plugin_dir
|
||||
einstall || die "install failed"
|
||||
|
||||
[[ -e README ]] && dodoc README
|
||||
}
|
||||
|
||||
EXPORT_FUNCTIONS src_unpack src_compile src_install
|
143
eclass/gst-plugins-base.eclass
Normal file
143
eclass/gst-plugins-base.eclass
Normal file
@ -0,0 +1,143 @@
|
||||
# Copyright 1999-2004 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-base.eclass,v 1.18 2010/08/12 10:53:57 pva Exp $
|
||||
|
||||
# Author : foser <foser@gentoo.org>
|
||||
|
||||
# gst-plugins eclass
|
||||
#
|
||||
# eclass to make external gst-plugins emergable on a per-plugin basis
|
||||
# to solve the problem with gst-plugins generating far too much unneeded deps
|
||||
#
|
||||
# 3rd party applications using gstreamer now should depend on a set of plugins as
|
||||
# defined in the source, in case of spider usage obtain recommended plugins to use from
|
||||
# Gentoo developers responsible for gstreamer <gnome@gentoo.org>, the application developer
|
||||
# or the gstreamer team.
|
||||
|
||||
inherit eutils gst-plugins10
|
||||
|
||||
GST_EXPF="src_unpack src_compile src_install"
|
||||
case ${EAPI:-0} in
|
||||
2|3) GST_EXPF="${GST_EXPF} src_prepare src_configure" ;;
|
||||
1|0) ;;
|
||||
*) die "Unknown EAPI" ;;
|
||||
esac
|
||||
EXPORT_FUNCTIONS ${GST_EXPF}
|
||||
|
||||
###
|
||||
# variable declarations
|
||||
###
|
||||
|
||||
MY_PN=gst-plugins-base
|
||||
MY_P=${MY_PN}-${PV}
|
||||
# All relevant configure options for gst-plugins
|
||||
# need a better way to extract these
|
||||
# gst-plugins-base 0.9
|
||||
my_gst_plugins_base="x xvideo xshm gst_v4l alsa cdparanoia gnome_vfs
|
||||
gio libvisual ogg oggtest theora ivorbis vorbis vorbistest examples
|
||||
freetypetest pango"
|
||||
|
||||
#SRC_URI="mirror://gnome/sources/gst-plugins/${PV_MAJ_MIN}/${MY_P}.tar.bz2"
|
||||
SRC_URI="http://gstreamer.freedesktop.org/src/gst-plugins-base/${MY_P}.tar.bz2"
|
||||
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
# added to remove circular deps
|
||||
# 6/2/2006 - zaheerm
|
||||
if [ "${PN}" != "${MY_PN}" ]; then
|
||||
RDEPEND=">=media-libs/gst-plugins-base-${PV}"
|
||||
DEPEND="${RDEPEND}
|
||||
~media-libs/gst-plugins-base-${PV}
|
||||
>=sys-apps/sed-4
|
||||
dev-util/pkgconfig"
|
||||
RESTRICT=test
|
||||
fi
|
||||
|
||||
###
|
||||
# public functions
|
||||
###
|
||||
|
||||
gst-plugins-base_src_configure() {
|
||||
|
||||
# disable any external plugin besides the plugin we want
|
||||
local plugin gst_conf
|
||||
|
||||
einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..."
|
||||
|
||||
for plugin in ${my_gst_plugins_base}; do
|
||||
gst_conf="${gst_conf} --disable-${plugin} "
|
||||
done
|
||||
|
||||
for plugin in ${GST_PLUGINS_BUILD}; do
|
||||
gst_conf="${gst_conf} --enable-${plugin} "
|
||||
done
|
||||
|
||||
cd "${S}"
|
||||
econf ${@} --with-package-name="Gentoo GStreamer Ebuild" --with-package-origin="http://www.gentoo.org" ${gst_conf}
|
||||
|
||||
}
|
||||
|
||||
###
|
||||
# public inheritable functions
|
||||
###
|
||||
|
||||
gst-plugins-base_src_unpack() {
|
||||
|
||||
unpack ${A}
|
||||
|
||||
cd "${S}"
|
||||
has src_prepare ${GST_EXPF} || gst-plugins-base_src_prepare
|
||||
|
||||
}
|
||||
|
||||
gst-plugins-base_src_prepare() {
|
||||
|
||||
# Link with the syswide installed gst-libs if needed
|
||||
gst-plugins10_find_plugin_dir
|
||||
sed -e "s:\$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-\$(GST_MAJORMINOR).la:${ROOT}/usr/$(get_libdir)/libgstinterfaces-\$(GST_MAJORMINOR).so:" \
|
||||
-e "s:\${top_builddir}/gst-libs/gst/interfaces/libgstinterfaces-\$(GST_MAJORMINOR).la:${ROOT}/usr/$(get_libdir)/libgstinterfaces-\$(GST_MAJORMINOR).so:" \
|
||||
-e "s:\$(top_builddir)/gst-libs/gst/audio/libgstaudio-\$(GST_MAJORMINOR).la:${ROOT}/usr/$(get_libdir)/libgstaudio-\$(GST_MAJORMINOR).so:" \
|
||||
-e "s:\${top_builddir}/gst-libs/gst/audio/libgstaudio-\$(GST_MAJORMINOR).la:${ROOT}/usr/$(get_libdir)/libgstaudio-\$(GST_MAJORMINOR).so:" \
|
||||
-e "s:\$(top_builddir)/gst-libs/gst/cdda/libgstcdda-\$(GST_MAJORMINOR).la:${ROOT}/usr/$(get_libdir)/libgstcdda-\$(GST_MAJORMINOR).so:" \
|
||||
-e "s:\${top_builddir}/gst-libs/gst/cdda/libgstcdda-\$(GST_MAJORMINOR).la:${ROOT}/usr/$(get_libdir)/libgstcdda-\$(GST_MAJORMINOR).so:" \
|
||||
-e "s:\$(top_builddir)/gst-libs/gst/riff/libgstriff-\$(GST_MAJORMINOR).la:${ROOT}/usr/$(get_libdir)/libgstriff-\$(GST_MAJORMINOR).so:" \
|
||||
-e "s:\${top_builddir}/gst-libs/gst/riff/libgstriff-\$(GST_MAJORMINOR).la:${ROOT}/usr/$(get_libdir)/libgstriff-\$(GST_MAJORMINOR).so:" \
|
||||
-e "s:\$(top_builddir)/gst-libs/gst/tag/libgsttag-\$(GST_MAJORMINOR).la:${ROOT}/usr/$(get_libdir)/libgsttag-\$(GST_MAJORMINOR).so:" \
|
||||
-e "s:\${top_builddir}/gst-libs/gst/tag/libgsttag-\$(GST_MAJORMINOR).la:${ROOT}/usr/$(get_libdir)/libgsttag-\$(GST_MAJORMINOR).so:" \
|
||||
-e "s:\$(top_builddir)/gst-libs/gst/video/libgstvideo-\$(GST_MAJORMINOR).la:${ROOT}/usr/$(get_libdir)/libgstvideo-\$(GST_MAJORMINOR).so:" \
|
||||
-e "s:\${top_builddir}/gst-libs/gst/video/libgstvideo-\$(GST_MAJORMINOR).la:${ROOT}/usr/$(get_libdir)/libgstvideo-\$(GST_MAJORMINOR).so:" \
|
||||
-e "s:\$(top_builddir)/gst-libs/gst/netbuffer/libgstnetbuffer-\$(GST_MAJORMINOR).la:${ROOT}/usr/$(get_libdir)/libgstnetbuffer-\$(GST_MAJORMINOR).so:" \
|
||||
-e "s:\${top_builddir}/gst-libs/gst/netbuffer/libgstnetbuffer-\$(GST_MAJORMINOR).la:${ROOT}/usr/$(get_libdir)/libgstnetbuffer-\$(GST_MAJORMINOR).so:" \
|
||||
-e "s:\$(top_builddir)/gst-libs/gst/rtp/libgstrtp-\$(GST_MAJORMINOR).la:${ROOT}/usr/$(get_libdir)/libgstrtp-\$(GST_MAJORMINOR).so:" \
|
||||
-e "s:\${top_builddir}/gst-libs/gst/rtp/libgstrtp-\$(GST_MAJORMINOR).la:${ROOT}/usr/$(get_libdir)/libgstrtp-\$(GST_MAJORMINOR).so:" \
|
||||
-i Makefile.in
|
||||
# cd ${S}
|
||||
|
||||
# Remove generation of any other Makefiles except the plugin's Makefile
|
||||
# if [ -d "${S}/sys/${GST_PLUGINS_BUILD_DIR}" ]; then
|
||||
# makefiles="Makefile sys/Makefile sys/${GST_PLUGINS_BUILD_DIR}/Makefile"
|
||||
# elif [ -d "${S}/ext/${GST_PLUGINS_BUILD_DIR}" ]; then
|
||||
# makefiles="Makefile ext/Makefile ext/${GST_PLUGINS_BUILD_DIR}/Makefile"
|
||||
# fi
|
||||
# sed -e "s:ac_config_files=.*:ac_config_files='${makefiles}':" \
|
||||
# -i ${S}/configure
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
gst-plugins-base_src_compile() {
|
||||
|
||||
has src_configure ${GST_EXPF} || gst-plugins-base_src_configure ${@}
|
||||
gst-plugins10_find_plugin_dir
|
||||
emake || die "compile failure"
|
||||
|
||||
}
|
||||
|
||||
gst-plugins-base_src_install() {
|
||||
|
||||
gst-plugins10_find_plugin_dir
|
||||
einstall || die
|
||||
|
||||
[[ -e README ]] && dodoc README
|
||||
}
|
127
eclass/gst-plugins-good.eclass
Normal file
127
eclass/gst-plugins-good.eclass
Normal file
@ -0,0 +1,127 @@
|
||||
# Copyright 1999-2004 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-good.eclass,v 1.21 2010/07/30 11:08:44 leio Exp $
|
||||
|
||||
# Author : foser <foser@gentoo.org>, zaheerm <zaheerm@gentoo.org>
|
||||
|
||||
# gst-plugins-good eclass
|
||||
#
|
||||
# eclass to make external gst-plugins emergable on a per-plugin basis
|
||||
# to solve the problem with gst-plugins generating far too much unneeded deps
|
||||
#
|
||||
# 3rd party applications using gstreamer now should depend on a set of plugins as
|
||||
# defined in the source, obtain recommended plugins to use from
|
||||
# Gentoo developers responsible for gstreamer <gnome@gentoo.org>, the application developer
|
||||
# or the gstreamer team.
|
||||
|
||||
inherit eutils versionator gst-plugins10
|
||||
|
||||
|
||||
###
|
||||
# variable declarations
|
||||
###
|
||||
|
||||
MY_PN=gst-plugins-good
|
||||
MY_P=${MY_PN}-${PV}
|
||||
# All relevant configure options for gst-plugins
|
||||
# need a better way to extract these
|
||||
|
||||
# First line for non-plugin build related configure options; second line for
|
||||
# sys/ plugins; rest is split plugin options in order of ./configure --help output.
|
||||
# Good ways of validation are seeing diff of old and new configure.ac, and ./configure --help
|
||||
#
|
||||
# This list is current to gst-plugins-good-0.10.23:
|
||||
my_gst_plugins_good="gconftool zlib bz2
|
||||
directsound oss sunaudio osx_audio osx_video gst_v4l2 x xshm xvideo
|
||||
aalib aalibtest annodex cairo esd esdtest flac gconf gdk_pixbuf hal jpeg
|
||||
libcaca libdv libpng pulse dv1394 shout2 shout2test soup speex taglib wavpack"
|
||||
|
||||
# When adding conditionals like below, be careful about having leading spaces in concat
|
||||
|
||||
# sys/oss4 moved here since 0.10.23
|
||||
if version_is_at_least "0.10.23"; then
|
||||
my_gst_plugins_good+=" oss4"
|
||||
fi
|
||||
|
||||
|
||||
#SRC_URI="mirror://gnome/sources/gst-plugins/${PV_MAJ_MIN}/${MY_P}.tar.bz2"
|
||||
SRC_URI="http://gstreamer.freedesktop.org/src/gst-plugins-good/${MY_P}.tar.bz2"
|
||||
|
||||
S=${WORKDIR}/${MY_P}
|
||||
# added to remove circular deps
|
||||
# 6/2/2006 - zaheerm
|
||||
if [ "${PN}" != "${MY_PN}" ]; then
|
||||
RDEPEND="=media-libs/gst-plugins-base-0.10*"
|
||||
DEPEND="${RDEPEND}
|
||||
>=sys-apps/sed-4
|
||||
dev-util/pkgconfig"
|
||||
RESTRICT=test
|
||||
fi
|
||||
|
||||
###
|
||||
# public functions
|
||||
###
|
||||
|
||||
gst-plugins-good_src_configure() {
|
||||
|
||||
# disable any external plugin besides the plugin we want
|
||||
local plugin gst_conf
|
||||
|
||||
einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..."
|
||||
|
||||
for plugin in ${my_gst_plugins_good}; do
|
||||
gst_conf="${gst_conf} --disable-${plugin} "
|
||||
done
|
||||
|
||||
for plugin in ${GST_PLUGINS_BUILD}; do
|
||||
gst_conf="${gst_conf} --enable-${plugin} "
|
||||
done
|
||||
|
||||
cd ${S}
|
||||
econf ${@} --with-package-name="Gentoo GStreamer Ebuild" --with-package-origin="http://www.gentoo.org" ${gst_conf} || die "./configure failure"
|
||||
|
||||
}
|
||||
|
||||
###
|
||||
# public inheritable functions
|
||||
###
|
||||
|
||||
gst-plugins-good_src_unpack() {
|
||||
|
||||
# local makefiles
|
||||
|
||||
unpack ${A}
|
||||
|
||||
# Link with the syswide installed gst-libs if needed
|
||||
# gst-plugins10_find_plugin_dir
|
||||
# cd ${S}
|
||||
|
||||
# Remove generation of any other Makefiles except the plugin's Makefile
|
||||
# if [ -d "${S}/sys/${GST_PLUGINS_BUILD_DIR}" ]; then
|
||||
# makefiles="Makefile sys/Makefile sys/${GST_PLUGINS_BUILD_DIR}/Makefile"
|
||||
# elif [ -d "${S}/ext/${GST_PLUGINS_BUILD_DIR}" ]; then
|
||||
# makefiles="Makefile ext/Makefile ext/${GST_PLUGINS_BUILD_DIR}/Makefile"
|
||||
# fi
|
||||
# sed -e "s:ac_config_files=.*:ac_config_files='${makefiles}':" \
|
||||
# -i ${S}/configure
|
||||
|
||||
}
|
||||
|
||||
gst-plugins-good_src_compile() {
|
||||
|
||||
gst-plugins-good_src_configure ${@}
|
||||
|
||||
gst-plugins10_find_plugin_dir
|
||||
emake || die "compile failure"
|
||||
|
||||
}
|
||||
|
||||
gst-plugins-good_src_install() {
|
||||
|
||||
gst-plugins10_find_plugin_dir
|
||||
einstall || die
|
||||
|
||||
[[ -e README ]] && dodoc README
|
||||
}
|
||||
|
||||
EXPORT_FUNCTIONS src_unpack src_compile src_install
|
118
eclass/gst-plugins-ugly.eclass
Normal file
118
eclass/gst-plugins-ugly.eclass
Normal file
@ -0,0 +1,118 @@
|
||||
# Copyright 1999-2004 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins-ugly.eclass,v 1.19 2010/07/28 06:24:44 leio Exp $
|
||||
|
||||
# Author : foser <foser@gentoo.org>
|
||||
|
||||
# gst-plugins-ugly eclass
|
||||
#
|
||||
# eclass to make external gst-plugins emergable on a per-plugin basis
|
||||
# to solve the problem with gst-plugins generating far too much unneeded deps
|
||||
#
|
||||
# 3rd party applications using gstreamer now should depend on a set of plugins as
|
||||
# defined in the source, in case of spider usage obtain recommended plugins to use from
|
||||
# Gentoo developers responsible for gstreamer <gnome@gentoo.org>, the application developer
|
||||
# or the gstreamer team.
|
||||
|
||||
inherit eutils versionator gst-plugins10
|
||||
|
||||
|
||||
###
|
||||
# variable declarations
|
||||
###
|
||||
|
||||
MY_PN=gst-plugins-ugly
|
||||
MY_P=${MY_PN}-${PV}
|
||||
# All relevant configure options for gst-plugins-ugly
|
||||
# need a better way to extract these.
|
||||
my_gst_plugins_ugly="a52dec amrnb amrwb cdio dvdread lame mad mpeg2dec sidplay
|
||||
twolame x264"
|
||||
|
||||
# dvdnav and id3tag disabled/removed since -ugly-0.10.13
|
||||
if ! version_is_at_least "0.10.13"; then
|
||||
my_gst_plugins_bad+=" dvdnav id3tag"
|
||||
fi
|
||||
|
||||
#SRC_URI="mirror://gnome/sources/gst-plugins/${PV_MAJ_MIN}/${MY_P}.tar.bz2"
|
||||
SRC_URI="http://gstreamer.freedesktop.org/src/gst-plugins-ugly/${MY_P}.tar.bz2"
|
||||
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
# added to remove circular deps
|
||||
# 6/2/2006 - zaheerm
|
||||
if [ "${PN}" != "${MY_PN}" ]; then
|
||||
RDEPEND="=media-libs/gst-plugins-base-0.10*"
|
||||
DEPEND="${RDEPEND}
|
||||
>=sys-apps/sed-4
|
||||
dev-util/pkgconfig"
|
||||
RESTRICT=test
|
||||
fi
|
||||
|
||||
###
|
||||
# public functions
|
||||
###
|
||||
|
||||
gst-plugins-ugly_src_configure() {
|
||||
|
||||
# disable any external plugin besides the plugin we want
|
||||
local plugin gst_conf
|
||||
|
||||
einfo "Configuring to build ${GST_PLUGINS_BUILD} plugin(s) ..."
|
||||
|
||||
for plugin in ${my_gst_plugins_ugly}; do
|
||||
gst_conf="${gst_conf} --disable-${plugin} "
|
||||
done
|
||||
|
||||
for plugin in ${GST_PLUGINS_BUILD}; do
|
||||
gst_conf="${gst_conf} --enable-${plugin} "
|
||||
done
|
||||
|
||||
cd ${S}
|
||||
econf ${@} --with-package-name="Gentoo GStreamer Ebuild" --with-package-origin="http://www.gentoo.org" ${gst_conf} || die "./configure failure"
|
||||
|
||||
}
|
||||
|
||||
###
|
||||
# public inheritable functions
|
||||
###
|
||||
|
||||
gst-plugins-ugly_src_unpack() {
|
||||
|
||||
# local makefiles
|
||||
|
||||
unpack ${A}
|
||||
|
||||
# Link with the syswide installed gst-libs if needed
|
||||
# gst-plugins10_find_plugin_dir
|
||||
# cd ${S}
|
||||
|
||||
# Remove generation of any other Makefiles except the plugin's Makefile
|
||||
# if [ -d "${S}/sys/${GST_PLUGINS_BUILD_DIR}" ]; then
|
||||
# makefiles="Makefile sys/Makefile sys/${GST_PLUGINS_BUILD_DIR}/Makefile"
|
||||
# elif [ -d "${S}/ext/${GST_PLUGINS_BUILD_DIR}" ]; then
|
||||
# makefiles="Makefile ext/Makefile ext/${GST_PLUGINS_BUILD_DIR}/Makefile"
|
||||
# fi
|
||||
# sed -e "s:ac_config_files=.*:ac_config_files='${makefiles}':" \
|
||||
# -i ${S}/configure
|
||||
|
||||
}
|
||||
|
||||
gst-plugins-ugly_src_compile() {
|
||||
|
||||
gst-plugins-ugly_src_configure ${@}
|
||||
|
||||
gst-plugins10_find_plugin_dir
|
||||
emake || die "compile failure"
|
||||
|
||||
}
|
||||
|
||||
gst-plugins-ugly_src_install() {
|
||||
|
||||
gst-plugins10_find_plugin_dir
|
||||
einstall || die
|
||||
|
||||
[[ -e README ]] && dodoc README
|
||||
}
|
||||
|
||||
|
||||
EXPORT_FUNCTIONS src_unpack src_compile src_install
|
17
eclass/gst-plugins.eclass
Normal file
17
eclass/gst-plugins.eclass
Normal file
@ -0,0 +1,17 @@
|
||||
# Copyright 1999-2009 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins.eclass,v 1.35 2009/11/30 04:19:36 abcd Exp $
|
||||
|
||||
# @DEAD
|
||||
# To be removed on 2011/11/30.
|
||||
ewarn "Please fix your package (${CATEGORY}/${PF}) to not use ${ECLASS}.eclass"
|
||||
|
||||
PVP=(${PV//[-\._]/ })
|
||||
PV_MAJ_MIN=${PVP[0]}.${PVP[1]}
|
||||
SLOT=${PV_MAJ_MIN}
|
||||
|
||||
gst-plugins_pkg_postrm() {
|
||||
gst-register-${SLOT}
|
||||
}
|
||||
|
||||
EXPORT_FUNCTIONS pkg_postrm
|
81
eclass/gst-plugins10.eclass
Normal file
81
eclass/gst-plugins10.eclass
Normal file
@ -0,0 +1,81 @@
|
||||
# Copyright 1999-2004 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins10.eclass,v 1.3 2010/08/12 10:48:59 pva Exp $
|
||||
|
||||
# Author : foser <foser@gentoo.org>
|
||||
|
||||
# gst-plugins eclass
|
||||
#
|
||||
# eclass to make external gst-plugins emergable on a per-plugin basis
|
||||
# to solve the problem with gst-plugins generating far too much unneeded deps
|
||||
#
|
||||
# 3rd party applications using gstreamer now should depend on a set of plugins as
|
||||
# defined in the source, in case of spider usage obtain recommended plugins to use from
|
||||
# Gentoo developers responsible for gstreamer <gnome@gentoo.org>, the application developer
|
||||
# or the gstreamer team.
|
||||
|
||||
inherit eutils
|
||||
|
||||
|
||||
###
|
||||
# variable declarations
|
||||
###
|
||||
|
||||
# Create a major/minor combo for our SLOT and executables suffix
|
||||
PVP=(${PV//[-\._]/ })
|
||||
#PV_MAJ_MIN=${PVP[0]}.${PVP[1]}
|
||||
PV_MAJ_MIN=0.10
|
||||
|
||||
# Extract the plugin to build from the ebuild name
|
||||
# May be set by an ebuild and contain more than one indentifier, space seperated
|
||||
# (only src_configure can handle mutiple plugins at this time)
|
||||
GST_PLUGINS_BUILD=${PN/gst-plugins-/}
|
||||
|
||||
# Actual build dir, is the same as the configure switch name most of the time
|
||||
GST_PLUGINS_BUILD_DIR=${PN/gst-plugins-/}
|
||||
|
||||
# general common gst-plugins ebuild entries
|
||||
DESCRIPTION="${BUILD_GST_PLUGINS} plugin for gstreamer"
|
||||
HOMEPAGE="http://gstreamer.freedesktop.org/"
|
||||
LICENSE="GPL-2"
|
||||
|
||||
#SRC_URI="mirror://gnome/sources/gst-plugins/${PV_MAJ_MIN}/${MY_P}.tar.bz2"
|
||||
SLOT=${PV_MAJ_MIN}
|
||||
###
|
||||
# internal functions
|
||||
###
|
||||
|
||||
gst-plugins10_find_plugin_dir() {
|
||||
|
||||
if [[ ! -d ${S}/ext/${GST_PLUGINS_BUILD_DIR} ]]; then
|
||||
if [[ ! -d ${S}/sys/${GST_PLUGINS_BUILD_DIR} ]]; then
|
||||
ewarn "No such plugin directory"
|
||||
die
|
||||
fi
|
||||
einfo "Building system plugin ..."
|
||||
cd "${S}"/sys/${GST_PLUGINS_BUILD_DIR}
|
||||
else
|
||||
einfo "Building external plugin ..."
|
||||
cd "${S}"/ext/${GST_PLUGINS_BUILD_DIR}
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
###
|
||||
# public functions
|
||||
###
|
||||
|
||||
gst-plugins10_remove_unversioned_binaries() {
|
||||
|
||||
# remove the unversioned binaries gstreamer provide
|
||||
# this is to prevent these binaries to be owned by several SLOTs
|
||||
|
||||
cd ${D}/usr/bin
|
||||
for gst_bins in `ls *-${PV_MAJ_MIN}`
|
||||
do
|
||||
rm ${gst_bins/-${PV_MAJ_MIN}/}
|
||||
einfo "Removed ${gst_bins/-${PV_MAJ_MIN}/}"
|
||||
done
|
||||
|
||||
}
|
||||
|
484
media-plugins/gst-plugins-a52dec/ChangeLog
Normal file
484
media-plugins/gst-plugins-a52dec/ChangeLog
Normal file
@ -0,0 +1,484 @@
|
||||
# ChangeLog for media-plugins/gst-plugins-a52dec
|
||||
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-a52dec/ChangeLog,v 1.114 2010/08/05 20:07:36 ssuominen Exp $
|
||||
|
||||
05 Aug 2010; Samuli Suominen <ssuominen@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.13.ebuild:
|
||||
ppc64 stable wrt #324691
|
||||
|
||||
24 Jun 2010; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.13.ebuild:
|
||||
Stable for HPPA (bug #308379).
|
||||
|
||||
18 Apr 2010; <nixnut@gentoo.org> gst-plugins-a52dec-0.10.13.ebuild:
|
||||
ppc stable #308379
|
||||
|
||||
05 Apr 2010; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.13.ebuild:
|
||||
alpha/arm/ia64/sh/sparc stable wrt #308379
|
||||
|
||||
24 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.13.ebuild:
|
||||
stable x86, bug 308379
|
||||
|
||||
19 Mar 2010; Pacho Ramos <pacho@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.13.ebuild:
|
||||
amd64 stable, bug 308379
|
||||
|
||||
15 Feb 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-a52dec-0.10.11.ebuild:
|
||||
Remove old
|
||||
|
||||
05 Jan 2010; nixnut <nixnut@gentoo.org> gst-plugins-a52dec-0.10.12.ebuild:
|
||||
ppc stable #290343
|
||||
|
||||
29 Dec 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.12.ebuild:
|
||||
ia64/sh/sparc stable wrt #290343
|
||||
|
||||
29 Nov 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.12.ebuild:
|
||||
Stable on alpha, bug #290343
|
||||
|
||||
27 Nov 2009; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.12.ebuild:
|
||||
arm stable, bug #290343
|
||||
|
||||
18 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.12.ebuild:
|
||||
x86 stable, bug 290343
|
||||
|
||||
18 Nov 2009; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.12.ebuild:
|
||||
Stable for HPPA (bug #290343).
|
||||
|
||||
17 Nov 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.12.ebuild:
|
||||
Marking gst-plugins-a52dec-0.10.12 ppc64 stable for bug 290343
|
||||
|
||||
*gst-plugins-a52dec-0.10.13 (16 Nov 2009)
|
||||
|
||||
16 Nov 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-a52dec-0.10.13.ebuild:
|
||||
Version bump. Uses djbfft based IMDCT transformation acceleration if
|
||||
enabled in media-libs/a52dec, memory leak fixes
|
||||
|
||||
10 Nov 2009; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.12.ebuild:
|
||||
Stable on amd64, bug #290343
|
||||
|
||||
*gst-plugins-a52dec-0.10.12 (07 Sep 2009)
|
||||
|
||||
07 Sep 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-a52dec-0.10.12.ebuild:
|
||||
Version bump
|
||||
|
||||
06 Aug 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-a52dec-0.10.6.ebuild, -gst-plugins-a52dec-0.10.8.ebuild,
|
||||
-gst-plugins-a52dec-0.10.10.ebuild:
|
||||
Remove old
|
||||
|
||||
01 Jul 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.11.ebuild:
|
||||
arm/ia64/sh/sparc stable wrt #266986
|
||||
|
||||
23 May 2009; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.11.ebuild:
|
||||
Stable for HPPA (bug #266986).
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.11.ebuild:
|
||||
Marking gst-plugins-a52dec-0.10.11 ppc64 stable for bug 266986
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.11.ebuild:
|
||||
Marking gst-plugins-a52dec-0.10.11 ppc stable for bug 266986
|
||||
|
||||
14 May 2009; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.11.ebuild:
|
||||
amd64 stable, bug #266986
|
||||
|
||||
12 May 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.11.ebuild:
|
||||
stable x86, bug 266986
|
||||
|
||||
03 May 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.11.ebuild:
|
||||
Stable on alpha, bug #266986
|
||||
|
||||
05 Apr 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.8.ebuild:
|
||||
arm/sh stable wrt #232054
|
||||
|
||||
*gst-plugins-a52dec-0.10.11 (30 Mar 2009)
|
||||
|
||||
30 Mar 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-a52dec-0.10.11.ebuild:
|
||||
Version bump
|
||||
|
||||
23 Dec 2008; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.8.ebuild:
|
||||
Stable on alpha, bug #232054
|
||||
|
||||
*gst-plugins-a52dec-0.10.10 (05 Dec 2008)
|
||||
|
||||
05 Dec 2008; <ssuominen@gentoo.org> +gst-plugins-a52dec-0.10.10.ebuild:
|
||||
Version bump.
|
||||
|
||||
23 Sep 2008; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.8.ebuild:
|
||||
Stable for HPPA (bug #232054).
|
||||
|
||||
08 Aug 2008; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.8.ebuild:
|
||||
x86 stable, bug #232054
|
||||
|
||||
07 Aug 2008; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.8.ebuild:
|
||||
Stable on alpha, bug #232054
|
||||
|
||||
31 Jul 2008; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.8.ebuild:
|
||||
ia64/sparc stable wrt #232054
|
||||
|
||||
01 Aug 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.8.ebuild:
|
||||
Marking gst-plugins-a52dec-0.10.8 ppc64 stable for bug 232054
|
||||
|
||||
30 Jul 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.8.ebuild:
|
||||
Marking gst-plugins-a52dec-0.10.8 ppc stable for bug 232054
|
||||
|
||||
26 Jul 2008; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.8.ebuild:
|
||||
Stable on amd64, bug #232054
|
||||
|
||||
*gst-plugins-a52dec-0.10.8 (29 Jun 2008)
|
||||
|
||||
29 Jun 2008; Samuli Suominen <drac@gentoo.org>
|
||||
-gst-plugins-a52dec-0.10.3.ebuild, -gst-plugins-a52dec-0.10.7.ebuild,
|
||||
+gst-plugins-a52dec-0.10.8.ebuild:
|
||||
Version bump.
|
||||
|
||||
*gst-plugins-a52dec-0.10.7 (21 Feb 2008)
|
||||
|
||||
21 Feb 2008; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-a52dec-0.10.7.ebuild:
|
||||
version bump
|
||||
|
||||
11 Oct 2007; Tom Gall <tgall@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.6.ebuild:
|
||||
stable on ppc64
|
||||
|
||||
26 Sep 2007; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.6.ebuild:
|
||||
alpha/ia64 stable wrt #190900
|
||||
|
||||
21 Sep 2007; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.6.ebuild:
|
||||
Stable on amd64 wrt bug #190900.
|
||||
|
||||
10 Sep 2007; nixnut <nixnut@gentoo.org> gst-plugins-a52dec-0.10.6.ebuild:
|
||||
Stable on ppc wrt bug 190900
|
||||
|
||||
09 Sep 2007; Christian Faulhammer <opfer@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.6.ebuild:
|
||||
x86 stable, bug 190900
|
||||
|
||||
03 Sep 2007; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.6.ebuild:
|
||||
Stable for HPPA (bug #190900).
|
||||
|
||||
26 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.6.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
*gst-plugins-a52dec-0.10.6 (20 Jun 2007)
|
||||
|
||||
20 Jun 2007; Hanno Boeck <hanno@gentoo.org>
|
||||
+gst-plugins-a52dec-0.10.6.ebuild:
|
||||
Version bump.
|
||||
|
||||
16 Feb 2007; Roy Marples <uberlord@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.4-r1.ebuild:
|
||||
Added ~x86-fbsd keyword.
|
||||
|
||||
10 Jan 2007; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-a52dec-0.8.10.ebuild, -gst-plugins-a52dec-0.10.4.ebuild:
|
||||
Prune old versions
|
||||
|
||||
*gst-plugins-a52dec-0.10.4-r1 (01 Nov 2006)
|
||||
|
||||
01 Nov 2006; Hanno Boeck <hanno@gentoo.org>
|
||||
+files/gsta52-audio-volume.patch, +gst-plugins-a52dec-0.10.4-r1.ebuild:
|
||||
Add patch to fix bug with audio volume control (needed for thoggen).
|
||||
|
||||
06 Oct 2006; Zaheer Abbas Merali <zaheerm@gentoo.org> ChangeLog:
|
||||
version bump
|
||||
|
||||
19 Sep 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.3.ebuild:
|
||||
Mark 0.10.3 stable on ia64. #139612
|
||||
|
||||
17 Jul 2006; Daniel Gryniewicz <dang@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.3.ebuild:
|
||||
Marked stable on amd64 for bug #139612
|
||||
|
||||
16 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.3.ebuild:
|
||||
hppa stable, bug #139612
|
||||
|
||||
14 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.3.ebuild:
|
||||
ppc stable, bug #139612
|
||||
|
||||
12 Jul 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.3.ebuild:
|
||||
Stable on x86 wrt bug #139612.
|
||||
|
||||
10 Jul 2006; Thomas Cort <tcort@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.3.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
20 May 2006; Thomas Cort <tcort@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.3.ebuild:
|
||||
Added ~alpha keyword.
|
||||
|
||||
14 May 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.3.ebuild:
|
||||
Added ~hppa
|
||||
|
||||
05 May 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.3.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
03 May 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.3.ebuild:
|
||||
Stable on sparc wrt #128737
|
||||
|
||||
08 Apr 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.3.ebuild:
|
||||
Added to ~ppc
|
||||
|
||||
*gst-plugins-a52dec-0.10.3 (01 Apr 2006)
|
||||
|
||||
01 Apr 2006; <zaheer@gentoo.org> -gst-plugins-a52dec-0.10.0.ebuild,
|
||||
-gst-plugins-a52dec-0.10.1.ebuild, -gst-plugins-a52dec-0.10.2.ebuild,
|
||||
+gst-plugins-a52dec-0.10.3.ebuild:
|
||||
version bump
|
||||
|
||||
30 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.2.ebuild:
|
||||
Keyworded ~sparc
|
||||
|
||||
29 Mar 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.2.ebuild:
|
||||
Added ~ppc64
|
||||
|
||||
25 Mar 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-a52dec-0.10.2.ebuild:
|
||||
Mark 0.10.2 ~ia64
|
||||
|
||||
*gst-plugins-a52dec-0.10.2 (27 Feb 2006)
|
||||
|
||||
27 Feb 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-a52dec-0.10.2.ebuild:
|
||||
version bump
|
||||
|
||||
*gst-plugins-a52dec-0.8.12 (26 Feb 2006)
|
||||
|
||||
26 Feb 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-a52dec-0.8.12.ebuild:
|
||||
version bump of 0.8 series
|
||||
|
||||
18 Feb 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.11.ebuild:
|
||||
Mark 0.8.11 stable on ia64
|
||||
|
||||
09 Feb 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.11.ebuild:
|
||||
Mark 0.8.11 stable on alpha
|
||||
|
||||
09 Feb 2006; Guy Martin <gmsoft@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.11.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.11.ebuild:
|
||||
Stable on ppc wrt bug #119634.
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.11.ebuild:
|
||||
Stable on amd64 wrt bug #119634.
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.11.ebuild:
|
||||
Stable on x86 wrt bug #119634.
|
||||
|
||||
22 Jan 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.11.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
20 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.11.ebuild:
|
||||
Stable on sparc wrt #119634
|
||||
|
||||
*gst-plugins-a52dec-0.10.1 (14 Jan 2006)
|
||||
|
||||
14 Jan 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
+gst-plugins-a52dec-0.10.1.ebuild:
|
||||
Version bump from upstream
|
||||
|
||||
*gst-plugins-a52dec-0.10.0 (05 Dec 2005)
|
||||
|
||||
05 Dec 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
-gst-plugins-a52dec-0.9.7.ebuild, +gst-plugins-a52dec-0.10.0.ebuild:
|
||||
0.10.0 release
|
||||
|
||||
04 Dec 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
-gst-plugins-a52dec-0.8.8.ebuild, -gst-plugins-a52dec-0.8.9.ebuild:
|
||||
Remove unneeded versions
|
||||
|
||||
*gst-plugins-a52dec-0.9.7 (04 Dec 2005)
|
||||
|
||||
04 Dec 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-a52dec-0.9.7.ebuild:
|
||||
0.10 Prerelease
|
||||
|
||||
15 Sep 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.10.ebuild:
|
||||
Mark 0.8.10 stable on alpha
|
||||
|
||||
*gst-plugins-a52dec-0.8.11 (05 Sep 2005)
|
||||
|
||||
05 Sep 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-a52dec-0.8.11.ebuild:
|
||||
version bump
|
||||
|
||||
03 Sep 2005; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.10.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
02 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.10.ebuild:
|
||||
Stable on ppc.
|
||||
|
||||
31 Aug 2005; Herbie Hopkins <herbs@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.10.ebuild:
|
||||
Stable on amd64.
|
||||
|
||||
29 Aug 2005; Guy Martin <gmsoft@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.10.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
26 Aug 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.10.ebuild:
|
||||
stable on ia64
|
||||
|
||||
26 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.10.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
25 Aug 2005; Leonardo Boshell <leonardop@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.10.ebuild:
|
||||
Stable on x86.
|
||||
|
||||
02 Jul 2005; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.8.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
*gst-plugins-a52dec-0.8.10 (01 Jul 2005)
|
||||
|
||||
01 Jul 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-a52dec-0.8.10.ebuild:
|
||||
version bump
|
||||
|
||||
26 Jun 2005; Guy Martin <gmsoft@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.8.ebuild, gst-plugins-a52dec-0.8.9.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
09 Jun 2005; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.8.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
09 May 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.8.ebuild:
|
||||
stable on ia64
|
||||
|
||||
06 May 2005; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.8.ebuild:
|
||||
Added ~ppc64 to KEYWORDS
|
||||
|
||||
03 May 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.8.ebuild:
|
||||
add ~ia64
|
||||
|
||||
30 Apr 2005; Michael Hanselmann <hansmi@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.8.ebuild:
|
||||
Stable on ppc.
|
||||
|
||||
29 Apr 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.8.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
27 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.8.ebuild:
|
||||
stable on amd64
|
||||
|
||||
25 Apr 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.8.ebuild:
|
||||
stabilise on x86
|
||||
|
||||
02 Apr 2005; <zaheerm@gentoo.org> -gst-plugins-a52dec-0.6.4.ebuild:
|
||||
removing gstreamer 0.6.x
|
||||
|
||||
21 Mar 2005; Mike Gardiner <obz@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.7.ebuild:
|
||||
Keyworded ppc
|
||||
|
||||
19 Mar 2005; Mike Doty <kingtaco@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.8.ebuild:
|
||||
~amd64, bug 85028
|
||||
|
||||
12 Mar 2005; Mike Gardiner <obz@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.8.ebuild:
|
||||
Keyworded ~ppc
|
||||
|
||||
09 Mar 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.7.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
*gst-plugins-a52dec-0.8.8 (08 Mar 2005)
|
||||
|
||||
*gst-plugins-a52dec-0.8.7 (05 Jan 2004)
|
||||
|
||||
15 Nov 2004; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.5.ebuild:
|
||||
~alpha keyword.
|
||||
|
||||
12 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-a52dec-0.8.5.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
*gst-plugins-a52dec-0.8.5 (22 Oct 2004)
|
||||
|
||||
22 Oct 2004; foser <foser@gentoo.org> gst-plugins-a52dec-0.8.5.ebuild :
|
||||
First bump for 0.8 series, reset KEYWORDS
|
||||
Also satisfies #49166
|
||||
|
||||
18 Jan 2004; <gustavoz@gentoo.org> gst-plugins-a52dec-0.6.4.ebuild:
|
||||
stable on sparc
|
||||
|
||||
14 Jan 2004; <gustavoz@gentoo.org> gst-plugins-a52dec-0.6.4.ebuild:
|
||||
added ~sparc
|
||||
|
||||
*gst-plugins-a52dec-0.6.4 (23 Oct 2003)
|
||||
|
||||
23 Oct 2003; foser <foser@gentoo.org> gst-plugins-a52dec-0.6.4.ebuild :
|
||||
New version
|
||||
|
||||
*gst-plugins-a52dec-0.6.3 (07 Sept 2003)
|
||||
|
||||
07 Sept 2003; foser <foser@gentoo.org> gst-plugins-a52dec-0.6.3.ebuild :
|
||||
Initial commit, a52 decoder for gstreamer
|
||||
part of the gnome herd
|
6
media-plugins/gst-plugins-a52dec/Manifest
Normal file
6
media-plugins/gst-plugins-a52dec/Manifest
Normal file
@ -0,0 +1,6 @@
|
||||
DIST gst-plugins-ugly-0.10.12.tar.bz2 1027462 RMD160 3b39c83f70b7e25dfe24237742968e033bcf1bc4 SHA1 2d09dc36a507c66c001f2ec1fa113df22a5b96dd SHA256 b3e785a0dd47aab880049535068556a5f61726da44bce452b41555e3f0481d2f
|
||||
DIST gst-plugins-ugly-0.10.13.tar.bz2 1016859 RMD160 1cf856fd273fff8b08b3bd987ec36b82c33c374a SHA1 20252cc743cbdcca62c702b5ab703c2be0f9d955 SHA256 39f07a60739f5dfa4f5574a02db15de69fd05b9ea63239488338ec3491bf69a8
|
||||
EBUILD gst-plugins-a52dec-0.10.12.ebuild 460 RMD160 7e7a7c5d0c3b4a51f1b73472389ba31a62a2fdf9 SHA1 9ce379ccdb6dbe884d5b49edea097da30d205bb6 SHA256 87841d21efa4cdbecca17ac8b0da80854838a79af07fc77807b64ed85a9bc9d0
|
||||
EBUILD gst-plugins-a52dec-0.10.13.ebuild 484 RMD160 3f07b4de78380ad22544f2dd1f6713b53c17066a SHA1 4f215743b7cec203838fe9e5e1830b73d101d2da SHA256 9a7a11364a5419527f60a75155b08aef9849060d01abb081062323f1603d593e
|
||||
MISC ChangeLog 14192 RMD160 7e3e92aad3ae89536f5148fdb17ab106a95fd46b SHA1 fcb1bb47ba3008467befecea08ca45a821f11f87 SHA256 d89dc77534a78aedb94ad3c909f6a4b8b293edf217b9a25042aead950582f9e0
|
||||
MISC metadata.xml 181 RMD160 51814fbdcf7f32cfe70018b3af7fc798e41ff90d SHA1 faf40c45bd66b0072b95556cf7ab097d3be19511 SHA256 22c215902ccdc7fd8cdb765750fb23ea9d9b6c9d3edb1b45325c3469f8f6ffc5
|
@ -0,0 +1,12 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-a52dec/gst-plugins-a52dec-0.10.12.ebuild,v 1.9 2010/01/05 18:27:15 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-ugly
|
||||
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=media-libs/a52dec-0.7.3
|
||||
>=media-libs/gst-plugins-base-0.10.23
|
||||
>=media-libs/gstreamer-0.10.23"
|
@ -0,0 +1,13 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-a52dec/gst-plugins-a52dec-0.10.13.ebuild,v 1.8 2010/08/05 20:07:36 ssuominen Exp $
|
||||
|
||||
inherit gst-plugins-ugly
|
||||
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/a52dec-0.7.3
|
||||
>=media-libs/gst-plugins-base-0.10.25
|
||||
>=media-libs/gstreamer-0.10.25"
|
||||
DEPEND="${RDEPEND}"
|
6
media-plugins/gst-plugins-a52dec/metadata.xml
Normal file
6
media-plugins/gst-plugins-a52dec/metadata.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gstreamer</herd>
|
||||
<herd>gnome</herd>
|
||||
</pkgmetadata>
|
737
media-plugins/gst-plugins-alsa/ChangeLog
Normal file
737
media-plugins/gst-plugins-alsa/ChangeLog
Normal file
@ -0,0 +1,737 @@
|
||||
# ChangeLog for media-plugins/gst-plugins-alsa
|
||||
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-alsa/ChangeLog,v 1.170 2010/11/19 05:33:16 ford_prefect Exp $
|
||||
|
||||
*gst-plugins-alsa-0.10.30 (19 Nov 2010)
|
||||
|
||||
19 Nov 2010; Arun Raghavan <ford_prefect@gentoo.org>
|
||||
+gst-plugins-alsa-0.10.30.ebuild:
|
||||
Bump to 0.10.30. No major changes.
|
||||
|
||||
11 Sep 2010; <nixnut@gentoo.org> gst-plugins-alsa-0.10.29.ebuild:
|
||||
ppc stable #329703
|
||||
|
||||
05 Sep 2010; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-alsa-0.10.29.ebuild:
|
||||
Stable on alpha, bug #329703
|
||||
|
||||
05 Sep 2010; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-alsa-0.10.29.ebuild:
|
||||
ia64/sh/sparc stable wrt #329703
|
||||
|
||||
04 Sep 2010; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-alsa-0.10.28.ebuild:
|
||||
alpha/ia64/sh/sparc stable wrt #324691
|
||||
|
||||
10 Aug 2010; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-alsa-0.10.29.ebuild:
|
||||
Stable for HPPA (bug #329703).
|
||||
|
||||
05 Aug 2010; Samuli Suominen <ssuominen@gentoo.org>
|
||||
gst-plugins-alsa-0.10.29.ebuild:
|
||||
ppc64 stable wrt #324691
|
||||
|
||||
03 Aug 2010; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-alsa-0.10.29.ebuild:
|
||||
arm stable, bug #329703
|
||||
|
||||
01 Aug 2010; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-alsa-0.10.28.ebuild:
|
||||
Stable on alpha, bug #324691
|
||||
|
||||
27 Jul 2010; Pacho Ramos <pacho@gentoo.org>
|
||||
gst-plugins-alsa-0.10.29.ebuild:
|
||||
amd64 stable, bug 329703
|
||||
|
||||
27 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-alsa-0.10.29.ebuild:
|
||||
x86 stable, bug 329703
|
||||
|
||||
24 Jul 2010; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-alsa-0.10.28.ebuild:
|
||||
arm stable, bug #324691
|
||||
|
||||
12 Jul 2010; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-alsa-0.10.28.ebuild:
|
||||
Stable for HPPA (bug #324691).
|
||||
|
||||
01 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-alsa-0.10.28.ebuild:
|
||||
x86 stable, bug 324691
|
||||
|
||||
*gst-plugins-alsa-0.10.29 (28 Jun 2010)
|
||||
|
||||
28 Jun 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-alsa-0.10.29.ebuild:
|
||||
Version bump. Handles disappearing of sound device whilst in use more
|
||||
gracefully. Other small bug fixes.
|
||||
|
||||
27 Jun 2010; <nixnut@gentoo.org> gst-plugins-alsa-0.10.28.ebuild:
|
||||
ppc stable #324691
|
||||
|
||||
24 Jun 2010; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-alsa-0.10.25.ebuild:
|
||||
Stable for HPPA (bug #308379).
|
||||
|
||||
24 Jun 2010; Markos Chandras <hwoarang@gentoo.org>
|
||||
gst-plugins-alsa-0.10.28.ebuild:
|
||||
Stable on amd64 wrt bug #324691
|
||||
|
||||
18 Apr 2010; <nixnut@gentoo.org> gst-plugins-alsa-0.10.25.ebuild:
|
||||
ppc stable #308379
|
||||
|
||||
05 Apr 2010; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-alsa-0.10.25.ebuild:
|
||||
alpha/arm/ia64/sh/sparc stable wrt #308379
|
||||
|
||||
24 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-alsa-0.10.25.ebuild:
|
||||
stable x86, bug 308379
|
||||
|
||||
19 Mar 2010; Pacho Ramos <pacho@gentoo.org>
|
||||
gst-plugins-alsa-0.10.25.ebuild:
|
||||
amd64 stable, bug 308379
|
||||
|
||||
*gst-plugins-alsa-0.10.28 (19 Mar 2010)
|
||||
|
||||
19 Mar 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-alsa-0.10.23.ebuild, +gst-plugins-alsa-0.10.28.ebuild:
|
||||
Version bump with a minor bug fix
|
||||
|
||||
10 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-alsa-0.10.25.ebuild:
|
||||
Transfer Prefix keywords
|
||||
|
||||
05 Jan 2010; nixnut <nixnut@gentoo.org> gst-plugins-alsa-0.10.24.ebuild:
|
||||
ppc stable #290343
|
||||
|
||||
29 Dec 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-alsa-0.10.24.ebuild:
|
||||
ia64/sh/sparc stable wrt #290343
|
||||
|
||||
27 Nov 2009; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-alsa-0.10.24.ebuild:
|
||||
arm stable, bug #290343
|
||||
|
||||
22 Nov 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-alsa-0.10.24.ebuild:
|
||||
Stable on alpha, bug #290343
|
||||
|
||||
18 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-alsa-0.10.24.ebuild:
|
||||
x86 stable, bug 290343
|
||||
|
||||
18 Nov 2009; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-alsa-0.10.24.ebuild:
|
||||
Stable for HPPA (bug #290343).
|
||||
|
||||
17 Nov 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-alsa-0.10.24.ebuild:
|
||||
Marking gst-plugins-alsa-0.10.24 ppc64 stable for bug 290343
|
||||
|
||||
*gst-plugins-alsa-0.10.25 (16 Nov 2009)
|
||||
|
||||
16 Nov 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-alsa-0.10.25.ebuild:
|
||||
Version bump. Trivial code cleanups
|
||||
|
||||
10 Nov 2009; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-alsa-0.10.24.ebuild:
|
||||
Stable on amd64, bug #290343
|
||||
|
||||
06 Nov 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-alsa-0.10.22.ebuild:
|
||||
Remove old
|
||||
|
||||
15 Sep 2009; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-alsa-0.10.23.ebuild:
|
||||
Stable for HPPA (bug #280946).
|
||||
|
||||
31 Aug 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-alsa-0.10.23.ebuild:
|
||||
Marking gst-plugins-alsa-0.10.23 ppc64 stable for bug 280946
|
||||
|
||||
29 Aug 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-alsa-0.10.23.ebuild:
|
||||
alpha/arm/ia64/sh/sparc stable wrt #280946
|
||||
|
||||
23 Aug 2009; nixnut <nixnut@gentoo.org> gst-plugins-alsa-0.10.23.ebuild:
|
||||
ppc stable #280946
|
||||
|
||||
21 Aug 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-alsa-0.10.23.ebuild:
|
||||
stable x86, bug 280946
|
||||
|
||||
*gst-plugins-alsa-0.10.24 (15 Aug 2009)
|
||||
|
||||
15 Aug 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-alsa-0.10.24.ebuild:
|
||||
Version bump
|
||||
|
||||
15 Aug 2009; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-alsa-0.10.23.ebuild:
|
||||
Stable on amd64, bug #280946
|
||||
|
||||
05 Aug 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-alsa-0.10.14.ebuild, -gst-plugins-alsa-0.10.20.ebuild,
|
||||
-gst-plugins-alsa-0.10.21.ebuild:
|
||||
Remove old
|
||||
|
||||
01 Jul 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-alsa-0.10.22.ebuild:
|
||||
arm/ia64/sh/sparc stable wrt #266986
|
||||
|
||||
23 May 2009; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-alsa-0.10.22.ebuild:
|
||||
Stable for HPPA (bug #266986).
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-alsa-0.10.22.ebuild:
|
||||
Marking gst-plugins-alsa-0.10.22 ppc64 stable for bug 266986
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-alsa-0.10.22.ebuild:
|
||||
Marking gst-plugins-alsa-0.10.22 ppc stable for bug 266986
|
||||
|
||||
14 May 2009; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-alsa-0.10.22.ebuild:
|
||||
amd64 stable, bug #266986
|
||||
|
||||
12 May 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-alsa-0.10.22.ebuild:
|
||||
stable x86, bug 266986
|
||||
|
||||
*gst-plugins-alsa-0.10.23 (11 May 2009)
|
||||
|
||||
11 May 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-alsa-0.10.23.ebuild:
|
||||
Version bump
|
||||
|
||||
03 May 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-alsa-0.10.22.ebuild:
|
||||
Stable on alpha, bug #266986
|
||||
|
||||
05 Apr 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-alsa-0.10.20.ebuild:
|
||||
arm/sh stable wrt #232054
|
||||
|
||||
*gst-plugins-alsa-0.10.22 (30 Mar 2009)
|
||||
|
||||
30 Mar 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-alsa-0.10.22.ebuild:
|
||||
Version bump
|
||||
|
||||
*gst-plugins-alsa-0.10.21 (05 Dec 2008)
|
||||
|
||||
05 Dec 2008; <ssuominen@gentoo.org> +gst-plugins-alsa-0.10.21.ebuild:
|
||||
Version bump.
|
||||
|
||||
23 Sep 2008; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-alsa-0.10.20.ebuild:
|
||||
Stable for HPPA (bug #232054).
|
||||
|
||||
08 Aug 2008; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-alsa-0.10.20.ebuild:
|
||||
x86 stable, bug #232054
|
||||
|
||||
07 Aug 2008; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-alsa-0.10.20.ebuild:
|
||||
Stable on alpha, bug #232054
|
||||
|
||||
31 Jul 2008; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-alsa-0.10.20.ebuild:
|
||||
ia64/sparc stable wrt #232054
|
||||
|
||||
01 Aug 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-alsa-0.10.20.ebuild:
|
||||
Marking gst-plugins-alsa-0.10.20 ppc64 stable for bug 232054
|
||||
|
||||
30 Jul 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-alsa-0.10.20.ebuild:
|
||||
Marking gst-plugins-alsa-0.10.20 ppc stable for bug 232054
|
||||
|
||||
26 Jul 2008; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-alsa-0.10.20.ebuild:
|
||||
Stable on amd64, bug #232054
|
||||
|
||||
*gst-plugins-alsa-0.10.20 (29 Jun 2008)
|
||||
|
||||
29 Jun 2008; Samuli Suominen <drac@gentoo.org>
|
||||
+gst-plugins-alsa-0.10.20.ebuild:
|
||||
Version bump.
|
||||
|
||||
*gst-plugins-alsa-0.10.17 (01 Feb 2008)
|
||||
|
||||
01 Feb 2008; Samuli Suominen <drac@gentoo.org>
|
||||
-gst-plugins-alsa-0.10.11.ebuild, -gst-plugins-alsa-0.10.12.ebuild,
|
||||
-gst-plugins-alsa-0.10.15.ebuild, -gst-plugins-alsa-0.10.16.ebuild,
|
||||
+gst-plugins-alsa-0.10.17.ebuild:
|
||||
Version bump.
|
||||
|
||||
*gst-plugins-alsa-0.10.16 (30 Jan 2008)
|
||||
|
||||
30 Jan 2008; Zaheer Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-alsa-0.10.16.ebuild:
|
||||
version bump
|
||||
|
||||
*gst-plugins-alsa-0.10.15 (17 Nov 2007)
|
||||
|
||||
17 Nov 2007; Samuli Suominen <drac@gentoo.org>
|
||||
+gst-plugins-alsa-0.10.15.ebuild:
|
||||
Version bump.
|
||||
|
||||
01 Nov 2007; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-alsa-0.10.14.ebuild:
|
||||
sparc stable wrt #190900, thanks to Alex Maclean for testing
|
||||
|
||||
11 Oct 2007; Tom Gall <tgall@gentoo.org>
|
||||
gst-plugins-alsa-0.10.14.ebuild:
|
||||
stable on ppc64
|
||||
|
||||
26 Sep 2007; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-alsa-0.10.14.ebuild:
|
||||
alpha/ia64 stable wrt #190900
|
||||
|
||||
21 Sep 2007; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-alsa-0.10.14.ebuild:
|
||||
Stable on amd64 wrt bug #190900.
|
||||
|
||||
10 Sep 2007; nixnut <nixnut@gentoo.org> gst-plugins-alsa-0.10.14.ebuild:
|
||||
Stable on ppc wrt bug 190900
|
||||
|
||||
09 Sep 2007; Christian Faulhammer <opfer@gentoo.org>
|
||||
gst-plugins-alsa-0.10.14.ebuild:
|
||||
x86 stable, bug 190900
|
||||
|
||||
03 Sep 2007; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-alsa-0.10.14.ebuild:
|
||||
Stable for HPPA (bug #190900).
|
||||
|
||||
*gst-plugins-alsa-0.10.14 (10 Aug 2007)
|
||||
|
||||
10 Aug 2007; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
-gst-plugins-alsa-0.10.13.ebuild, +gst-plugins-alsa-0.10.14.ebuild:
|
||||
version bump
|
||||
|
||||
26 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-alsa-0.10.12.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
28 Jun 2007; Joseph Jezak <josejx@gentoo.org>
|
||||
gst-plugins-alsa-0.10.11.ebuild:
|
||||
Marked ppc stable for bug #163541.
|
||||
|
||||
*gst-plugins-alsa-0.10.12 (16 Mar 2007)
|
||||
|
||||
16 Mar 2007; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-alsa-0.10.12.ebuild:
|
||||
version bump
|
||||
|
||||
12 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
|
||||
gst-plugins-alsa-0.10.11.ebuild:
|
||||
stable x86; bug 163541
|
||||
|
||||
31 Jan 2007; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-alsa-0.10.11.ebuild:
|
||||
Stable on ppc64; bug #163541
|
||||
|
||||
30 Jan 2007; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-alsa-0.10.11.ebuild:
|
||||
Stable for HPPA (bug #163541).
|
||||
|
||||
27 Jan 2007; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-alsa-0.10.11.ebuild:
|
||||
Stable on amd64 for bug #163541
|
||||
|
||||
23 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-alsa-0.10.11.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
10 Jan 2007; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-alsa-0.8.8.ebuild, -gst-plugins-alsa-0.8.9.ebuild,
|
||||
-gst-plugins-alsa-0.8.10.ebuild, -gst-plugins-alsa-0.10.6.ebuild,
|
||||
-gst-plugins-alsa-0.10.7.ebuild, -gst-plugins-alsa-0.10.8.ebuild,
|
||||
-gst-plugins-alsa-0.10.9.ebuild, -gst-plugins-alsa-0.10.10.ebuild:
|
||||
Prune old versions
|
||||
|
||||
21 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-alsa-0.10.11.ebuild:
|
||||
Back to ~sparc
|
||||
|
||||
*gst-plugins-alsa-0.10.11 (07 Dec 2006)
|
||||
|
||||
07 Dec 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-alsa-0.10.11.ebuild:
|
||||
version bump
|
||||
|
||||
*gst-plugins-alsa-0.10.10 (14 Sep 2006)
|
||||
|
||||
14 Sep 2006; <zaheerm@gentoo.org> +gst-plugins-alsa-0.10.10.ebuild:
|
||||
version bump
|
||||
|
||||
13 Sep 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-alsa-0.10.4.ebuild:
|
||||
Mark 0.10.4 stable on ia64. #139612
|
||||
|
||||
03 Aug 2006; Joshua Kinard <kumba@gentoo.org>
|
||||
gst-plugins-alsa-0.8.8.ebuild, gst-plugins-alsa-0.8.9.ebuild,
|
||||
gst-plugins-alsa-0.8.10.ebuild, gst-plugins-alsa-0.8.11.ebuild,
|
||||
gst-plugins-alsa-0.8.12.ebuild:
|
||||
Removing mips keywords as gst-plugins no longer functions too well on mips.
|
||||
|
||||
*gst-plugins-alsa-0.10.9 (15 Jul 2006)
|
||||
|
||||
15 Jul 2006; <zaheerm@gentoo.org> +gst-plugins-alsa-0.10.9.ebuild:
|
||||
version bump
|
||||
|
||||
*gst-plugins-alsa-0.10.8 (12 Jun 2006)
|
||||
|
||||
12 Jun 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-alsa-0.10.8.ebuild:
|
||||
version bump
|
||||
|
||||
29 May 2006; Guy Martin <gmsoft@gentoo.org>
|
||||
gst-plugins-alsa-0.10.4.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
21 May 2006; Thomas Cort <tcort@gentoo.org>
|
||||
gst-plugins-alsa-0.10.4.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
*gst-plugins-alsa-0.10.7 (15 May 2006)
|
||||
|
||||
15 May 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-alsa-0.10.7.ebuild:
|
||||
version bump
|
||||
|
||||
14 May 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-alsa-0.10.6.ebuild:
|
||||
Added ~hppa
|
||||
|
||||
*gst-plugins-alsa-0.10.6 (28 Apr 2006)
|
||||
|
||||
12 May 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-alsa-0.10.6.ebuild:
|
||||
version bump
|
||||
|
||||
05 May 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-alsa-0.10.4.ebuild:
|
||||
ppc stable, bug #128737
|
||||
|
||||
03 May 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-alsa-0.10.4.ebuild:
|
||||
Stable on sparc wrt #128737
|
||||
|
||||
26 Apr 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-alsa-0.8.8.ebuild
|
||||
keyword ~mips coz alsa-lib >=1.0.7 is not stable on mips
|
||||
-gst-plugins-alsa-0.10.0.ebuild,
|
||||
-gst-plugins-alsa-0.10.1.ebuild, -gst-plugins-alsa-0.10.2.ebuild,
|
||||
-gst-plugins-alsa-0.10.3.ebuild:
|
||||
prune old versions
|
||||
|
||||
23 Apr 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
gst-plugins-alsa-0.10.4.ebuild:
|
||||
stable on x86 (bug #128737)
|
||||
|
||||
17 Apr 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-alsa-0.10.4.ebuild:
|
||||
Stable on ppc64; bug #128737
|
||||
|
||||
13 Apr 2006; Thomas Cort <tcort@gentoo.org>
|
||||
gst-plugins-alsa-0.10.4.ebuild:
|
||||
Added ~alpha keyword.
|
||||
|
||||
08 Apr 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-alsa-0.10.4.ebuild:
|
||||
Added to ~ppc
|
||||
|
||||
05 Apr 2006; Patrick McLean <chutzpah@gentoo.org>
|
||||
gst-plugins-alsa-0.10.4.ebuild:
|
||||
Stable on amd64 (bug #128737).
|
||||
|
||||
25 Mar 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-alsa-0.10.4.ebuild:
|
||||
Mark 0.10.4 ~ia64
|
||||
|
||||
23 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-alsa-0.10.4.ebuild:
|
||||
Keyworded ~sparc wrt #125232
|
||||
|
||||
16 Mar 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-alsa-0.10.4.ebuild:
|
||||
Added ~ppc64
|
||||
|
||||
13 Mar 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-alsa-0.10.4.ebuild:
|
||||
fix dep on gstreamer
|
||||
|
||||
*gst-plugins-alsa-0.10.4 (11 Mar 2006)
|
||||
|
||||
11 Mar 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
+gst-plugins-alsa-0.10.4.ebuild:
|
||||
Version bump from upstream
|
||||
|
||||
*gst-plugins-alsa-0.8.12 (23 Feb 2006)
|
||||
|
||||
23 Feb 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-alsa-0.8.12.ebuild:
|
||||
version bump of 0.8 series
|
||||
|
||||
18 Feb 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-alsa-0.8.11.ebuild:
|
||||
Mark 0.8.11 stable on ia64
|
||||
|
||||
*gst-plugins-alsa-0.10.3 (10 Feb 2006)
|
||||
|
||||
10 Feb 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-alsa-0.10.3.ebuild:
|
||||
version bump
|
||||
|
||||
08 Feb 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-alsa-0.8.11.ebuild:
|
||||
Mark 0.8.11 stable on alpha
|
||||
|
||||
04 Feb 2006; Guy Martin <gmsoft@gentoo.org>
|
||||
gst-plugins-alsa-0.8.11.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
22 Jan 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-alsa-0.8.11.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
22 Jan 2006; <dang@gentoo.org> gst-plugins-alsa-0.8.11.ebuild:
|
||||
Marked stable on amd64 per bug #119634
|
||||
|
||||
22 Jan 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-alsa-0.8.11.ebuild:
|
||||
Marked ppc stable for bug #119634; Stabilize Gnome-2.12.2
|
||||
|
||||
22 Jan 2006; Joshua Jackson <tsunam@gentoo.org>
|
||||
gst-plugins-alsa-0.8.11.ebuild:
|
||||
Stable on x86 for bug #119634
|
||||
|
||||
20 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-alsa-0.8.11.ebuild:
|
||||
Stable on sparc wrt #119634 #119512
|
||||
|
||||
*gst-plugins-alsa-0.10.2 (18 Jan 2006)
|
||||
|
||||
18 Jan 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
+gst-plugins-alsa-0.10.2.ebuild:
|
||||
Version bump from upstream
|
||||
|
||||
*gst-plugins-alsa-0.10.1 (14 Jan 2006)
|
||||
|
||||
14 Jan 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
+gst-plugins-alsa-0.10.1.ebuild:
|
||||
Version bump from upstream
|
||||
|
||||
*gst-plugins-alsa-0.10.0 (05 Dec 2005)
|
||||
|
||||
05 Dec 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
-gst-plugins-alsa-0.9.7.ebuild, +gst-plugins-alsa-0.10.0.ebuild:
|
||||
0.10.0 Release
|
||||
|
||||
*gst-plugins-alsa-0.9.7 (02 Dec 2005)
|
||||
|
||||
02 Dec 2005; <zaheer@gentoo.org> +gst-plugins-alsa-0.9.7.ebuild:
|
||||
0.10 Prerelease
|
||||
|
||||
15 Nov 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-alsa-0.8.10.ebuild, gst-plugins-alsa-0.8.11.ebuild:
|
||||
Mark 0.8.10 stable on alpha, mark 0.8.11 ~alpha
|
||||
|
||||
*gst-plugins-alsa-0.8.11 (05 Sep 2005)
|
||||
|
||||
05 Sep 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-alsa-0.8.11.ebuild:
|
||||
version bump
|
||||
|
||||
03 Sep 2005; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-alsa-0.8.10.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
02 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
|
||||
gst-plugins-alsa-0.8.10.ebuild:
|
||||
Stable on ppc.
|
||||
|
||||
31 Aug 2005; Herbie Hopkins <herbs@gentoo.org>
|
||||
gst-plugins-alsa-0.8.10.ebuild:
|
||||
Stable on amd64.
|
||||
|
||||
29 Aug 2005; Guy Martin <gmsoft@gentoo.org>
|
||||
gst-plugins-alsa-0.8.10.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
26 Aug 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-alsa-0.8.10.ebuild:
|
||||
stable on ia64
|
||||
|
||||
26 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-alsa-0.8.10.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
25 Aug 2005; Leonardo Boshell <leonardop@gentoo.org>
|
||||
gst-plugins-alsa-0.8.10.ebuild:
|
||||
Stable on x86.
|
||||
|
||||
12 Jul 2005; Stephen P. Becker <geoman@gentoo.org>
|
||||
gst-plugins-alsa-0.8.8.ebuild:
|
||||
stable on mips
|
||||
|
||||
*gst-plugins-alsa-0.8.10 (01 Jul 2005)
|
||||
|
||||
01 Jul 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-alsa-0.8.10.ebuild:
|
||||
version bump
|
||||
|
||||
*gst-plugins-alsa-0.8.9 (08 Jun 2005)
|
||||
|
||||
08 Jun 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-alsa-0.8.9.ebuild:
|
||||
version bump
|
||||
|
||||
30 Apr 2005; Michael Hanselmann <hansmi@gentoo.org>
|
||||
gst-plugins-alsa-0.8.8.ebuild:
|
||||
Stable on ppc.
|
||||
|
||||
29 Apr 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-alsa-0.8.8.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
27 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org>
|
||||
gst-plugins-alsa-0.8.8.ebuild:
|
||||
stable on amd64
|
||||
|
||||
25 Apr 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-alsa-0.8.8.ebuild:
|
||||
stabilise on x86
|
||||
|
||||
08 Apr 2005; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-alsa-0.8.8.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
11 Mar 2005; Heinrich Wendel <lanius@gentoo.org>
|
||||
gst-plugins-alsa-0.8.7-r1.ebuild:
|
||||
stable on amd64
|
||||
|
||||
09 Mar 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-alsa-0.8.7-r1.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
09 Mar 2005; Mike Gardiner <obz@gentoo.org>
|
||||
gst-plugins-alsa-0.8.7-r1.ebuild:
|
||||
Keyworded ppc
|
||||
|
||||
25 Jan 2005; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-alsa-0.8.5-r1.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
24 Jan 2005; Jeremy Huddleston <eradicator@gentoo.org>
|
||||
gst-plugins-alsa-0.8.5-r1.ebuild:
|
||||
Stable on sparc.
|
||||
|
||||
*gst-plugins-alsa-0.8.7-r1 (17 jan 2005)
|
||||
|
||||
17 Jan 2005; foser <foser@gentoo.org> gst-plugins-alsa00.8.7-r1.ebuild :
|
||||
Add patch to fix deadlock issue (http://bugzilla.gnome.org/show_bug.cgi?id=164069)
|
||||
|
||||
12 Jan 2005; Guy Martin <gmsoft@gentoo.org>
|
||||
gst-plugins-alsa-0.8.5-r1.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
*gst-plugins-alsa-0.8.7 (05 Jan 2004)
|
||||
|
||||
31 Dec 2004; Sven Wegener <swegener@gentoo.org>
|
||||
gst-plugins-alsa-0.8.5-r1.ebuild:
|
||||
Switched inherit order.
|
||||
|
||||
23 Dec 2004; Guy Martin <gmsoft@gentoo.org> gst-plugins-alsa-0.8.5.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
16 Dec 2004; Dylan Carlson <absinthe@gentoo.org>
|
||||
gst-plugins-alsa-0.8.5.ebuild:
|
||||
Stable on amd64.
|
||||
|
||||
02 Dec 2004; Jeremy Huddleston <eradicator@gentoo.org>
|
||||
gst-plugins-alsa-0.8.5-r1.ebuild:
|
||||
Added to ~sparc.
|
||||
|
||||
*gt-plugins-alsa-0.8.5-r1 (18 Nov 2004)
|
||||
|
||||
18 Nov 2004; foser <foser@gentoo.org> gst-plugins-alsa-0.8.5-r1.ebuild :
|
||||
Version bump with fixes to make the alsa plugin much more reliable
|
||||
Thanks to zaheerm for the works here
|
||||
|
||||
11 Nov 2004; Mike Gardiner <obz@gentoo.org> gst-plugins-alsa-0.8.5.ebuild:
|
||||
Keyworded ppc for GNOME 2.8
|
||||
|
||||
*gst-plugins-alsa-0.8.5 (22 Oct 2004)
|
||||
|
||||
01 Oct 2004; Stephen P. Becker <geoman@gentoo.org>
|
||||
gst-plugins-alsa-0.8.2-r1.ebuild:
|
||||
stable on mips
|
||||
|
||||
27 Aug 2004; Tom Gall <tgall@gentoo.org> gst-plugins-also-0.8.2-r1.ebuild:
|
||||
stable on ppc64, bug #59368
|
||||
|
||||
22 Aug 2004; Danny van Dyk <kugelfang@gentoo.org> :
|
||||
Marked stable on amd64.
|
||||
|
||||
19 Aug 2004; Guy Martin <gmsoft@gentoo.org>
|
||||
gst-plugins-alsa-0.8.2-r1.ebuild, gst-plugins-alsa-0.8.3.ebuild:
|
||||
Added some hppa KEYWORDS to make Mr_Bones happy.
|
||||
|
||||
*gst-plugins-alsa-0.8.3 (18 Aug 2004)
|
||||
|
||||
18 Aug 2004; foser <foser@gentoo.org> gst-plugins-alsa-0.8.3.ebuild :
|
||||
New release
|
||||
|
||||
31 Jul 2004; <spider@gentoo.org> gst-plugins-alsa-0.8.2-r1.ebuild:
|
||||
stable on x86 for gnome 2.6.2
|
||||
|
||||
13 Jul 2004; foser <foser@gentoo.org> gst-plugins-alsa-0.8.2-r1.ebuild :
|
||||
Add eutils inherit (#56819)
|
||||
|
||||
*gst-plugins-alsa-0.8.2-r1 (11 Jul 2004)
|
||||
|
||||
11 Jul 2004; foser <foser@gentoo.org> gst-plugins-alsa-0.8.2-r.ebuild :
|
||||
Add patch to fix alsa seeking (#56215)
|
||||
|
||||
*gst-plugins-alsa-0.8.2 (29 Jun 2004)
|
||||
|
||||
29 Jun 2004; foser <foser@gentoo.org> gst-plugins-alsa-0.8.2.ebuild :
|
||||
New release
|
||||
|
||||
03 Jun 2004; Stephen P. Becker <geoman@gentoo.org>
|
||||
gst-plugins-alsa-0.8.1.ebuild:
|
||||
Stable on mips.
|
||||
|
||||
03 May 2004; Stephen P. Becker <geoman@gentoo.org>
|
||||
gst-plugins-alsa-0.8.1.ebuild:
|
||||
Added ~mips keyword.
|
||||
|
||||
02 May 2004; Stephen P. Becker <geoman@gentoo.org>
|
||||
gst-plugins-alsa-0.8.0.ebuild:
|
||||
Added ~mips keyword.
|
||||
|
||||
*gst-plugins-alsa-0.8.1 (23 Apr 2004)
|
||||
|
||||
23 Apr 2004; foser <foser@gentoo.org> gst-plugins-0.8.1.ebuild :
|
||||
New release
|
||||
|
||||
07 Apr 2004; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-alsa-0.8.0.ebuild:
|
||||
Add ~ia64
|
||||
|
||||
04 Apr 2004; Travis Tilley <lv@gentoo.org> gst-plugins-alsa-0.8.0.ebuild:
|
||||
adding ~amd64 to keywords
|
||||
|
||||
04 Apr 2004; David Holm <dholm@gentoo.org> gst-plugins-alsa-0.8.0.ebuild:
|
||||
Added to ~ppc.
|
||||
|
||||
*gst-plugins-alsa-0.8.0 (03 Apr 2004)
|
||||
|
||||
03 Apr 2004; foser <foser@gentoo.org> gst-plugins-alsa-0.8.0.ebuild :
|
||||
Initial commit, ALSA plugin for gstreamer
|
12
media-plugins/gst-plugins-alsa/Manifest
Normal file
12
media-plugins/gst-plugins-alsa/Manifest
Normal file
@ -0,0 +1,12 @@
|
||||
DIST gst-plugins-base-0.10.24.tar.bz2 2199169 RMD160 3d85ee63e0b0a27eb50b5654dc2bd96c60bcf94f SHA1 01abe0839303923671e79d8448ebfabda5bce799 SHA256 6f566e8ce0911e0fae99dc7435c3fc3a14d0253578a88e87a28c0e2584372761
|
||||
DIST gst-plugins-base-0.10.25.tar.bz2 2241145 RMD160 4d57f4c6e42a4bf006c1dff9d69c0bbc9bcde483 SHA1 6057e6552c936f3dbe9ba01269bc0bcf8469ae0a SHA256 0ab2f7e1d818e7af1be99c4eae02ba69d4a1b8f7e3527929a6426f1daa0d4607
|
||||
DIST gst-plugins-base-0.10.28.tar.bz2 2343870 RMD160 e013a996af99b6be42ece624f279f3f76fe5a30f SHA1 c32b966e4ec3c81d520f80a03794cb11942df835 SHA256 132b6fd7749fcbfa9ad88c854aada44b6870c4175bda21cdb01a52b59a98e14f
|
||||
DIST gst-plugins-base-0.10.29.tar.bz2 2351477 RMD160 7ade1abdd56201fb10c4e19f3507f91298b760e7 SHA1 22a96d2d4dfbd3c980e3337db6e6c1d06fb0841a SHA256 ac035cce4d68e2e0b980d3ddb6c74674667cbfde6cddc65e18ea16368d34732c
|
||||
DIST gst-plugins-base-0.10.30.tar.bz2 2455042 RMD160 69dc0be92144f343fee772e6999caff4d94ebb7f SHA1 17170bb23278c87bb3f4b299a3e7eaeed178bd31 SHA256 63938641380be9935c804ae8d55acdcfd93920ed2deb72dcf70f027a78b085d7
|
||||
EBUILD gst-plugins-alsa-0.10.24.ebuild 457 RMD160 82120c92699aa1cc74acc6fad54e9a07793da730 SHA1 25c8a660e7410af07226b8ea958d11522c030971 SHA256 aef093cbbe5d3ce32f41cfa1f06f3e79c4f221b725948b0d53128cdacd9ccb00
|
||||
EBUILD gst-plugins-alsa-0.10.25.ebuild 420 RMD160 3534e9aa8fecdfbd33660c509a009ae780e20a64 SHA1 ae9e1afdff4f9e6b98a29de5144b40deeeb6e10d SHA256 be83ed63666ddb304db8886934be558717418c02f8d5e9159eeff4d6414a893c
|
||||
EBUILD gst-plugins-alsa-0.10.28.ebuild 424 RMD160 7a35d90f513eb4a58c220e923a134482bfa1ef56 SHA1 c73028ac7c57e32495eaad557a398a9f7302eb85 SHA256 7eb1c3e28b4c894602342cdff4f3498f04d4ad2115c77d0e6ed9df301e68ba34
|
||||
EBUILD gst-plugins-alsa-0.10.29.ebuild 422 RMD160 f93df3210d87909e7368330ca7cd90efcc6282c7 SHA1 4dd54e4abe653c8a2976b1a0ae3f8f8a62512fb4 SHA256 aa3c0d8191155835d12aaeedac809621335127287a18cf74820f9f1e5dc78e5f
|
||||
EBUILD gst-plugins-alsa-0.10.30.ebuild 438 RMD160 33eeaa381d9de8b0f9a9581b804e60ccecf1eddd SHA1 8195a13bf2edb511e511f5de3e97ba197893e968 SHA256 86995cac82ef75b7475752ea54acef7c279198abc76347fc5897238c6e4ae6b8
|
||||
MISC ChangeLog 21603 RMD160 af46cff485ff8ce559bd3ec75c6de725492fd863 SHA1 5323bb0b13fffe1252a48d4736758171c919413e SHA256 615dc9ff447674799882616db1cca6bff67f2cff52d9b1582f90f6be0dc9bb31
|
||||
MISC metadata.xml 181 RMD160 51814fbdcf7f32cfe70018b3af7fc798e41ff90d SHA1 faf40c45bd66b0072b95556cf7ab097d3be19511 SHA256 22c215902ccdc7fd8cdb765750fb23ea9d9b6c9d3edb1b45325c3469f8f6ffc5
|
@ -0,0 +1,13 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-alsa/gst-plugins-alsa-0.10.24.ebuild,v 1.9 2010/01/05 18:10:22 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-base
|
||||
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/gst-plugins-base-0.10.23
|
||||
>=media-libs/alsa-lib-0.9.1"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/pkgconfig"
|
@ -0,0 +1,11 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-alsa/gst-plugins-alsa-0.10.25.ebuild,v 1.7 2010/06/24 16:48:24 jer Exp $
|
||||
|
||||
inherit gst-plugins-base
|
||||
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ~ppc64 sh sparc x86 ~amd64-linux ~x86-linux"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/alsa-lib-0.9.1"
|
||||
DEPEND="${RDEPEND}"
|
@ -0,0 +1,11 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-alsa/gst-plugins-alsa-0.10.28.ebuild,v 1.8 2010/09/04 11:46:22 armin76 Exp $
|
||||
|
||||
inherit gst-plugins-base
|
||||
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ~ppc64 sh sparc x86 ~amd64-linux ~x86-linux"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/alsa-lib-0.9.1"
|
||||
DEPEND="${RDEPEND}"
|
@ -0,0 +1,11 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-alsa/gst-plugins-alsa-0.10.29.ebuild,v 1.9 2010/09/11 09:51:33 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-base
|
||||
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~amd64-linux ~x86-linux"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/alsa-lib-0.9.1"
|
||||
DEPEND="${RDEPEND}"
|
@ -0,0 +1,11 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-alsa/gst-plugins-alsa-0.10.30.ebuild,v 1.1 2010/11/19 05:33:16 ford_prefect Exp $
|
||||
|
||||
inherit gst-plugins-base
|
||||
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/alsa-lib-0.9.1"
|
||||
DEPEND="${RDEPEND}"
|
6
media-plugins/gst-plugins-alsa/metadata.xml
Normal file
6
media-plugins/gst-plugins-alsa/metadata.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gstreamer</herd>
|
||||
<herd>gnome</herd>
|
||||
</pkgmetadata>
|
192
media-plugins/gst-plugins-annodex/ChangeLog
Normal file
192
media-plugins/gst-plugins-annodex/ChangeLog
Normal file
@ -0,0 +1,192 @@
|
||||
# ChangeLog for media-plugins/gst-plugins-annodex
|
||||
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-annodex/ChangeLog,v 1.42 2010/09/11 09:59:36 nixnut Exp $
|
||||
|
||||
11 Sep 2010; <nixnut@gentoo.org> gst-plugins-annodex-0.10.22.ebuild:
|
||||
ppc stable #329703
|
||||
|
||||
05 Sep 2010; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-annodex-0.10.22.ebuild:
|
||||
Stable on alpha, bug #329703
|
||||
|
||||
05 Aug 2010; Samuli Suominen <ssuominen@gentoo.org>
|
||||
gst-plugins-annodex-0.10.22.ebuild:
|
||||
ppc64 stable wrt #324691
|
||||
|
||||
01 Aug 2010; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-annodex-0.10.21.ebuild:
|
||||
Stable on alpha, bug #324691
|
||||
|
||||
*gst-plugins-annodex-0.10.23 (30 Jul 2010)
|
||||
|
||||
30 Jul 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-annodex-0.10.23.ebuild:
|
||||
Version bump to be in sync with the rest; no code changes
|
||||
|
||||
27 Jul 2010; Pacho Ramos <pacho@gentoo.org>
|
||||
gst-plugins-annodex-0.10.22.ebuild:
|
||||
amd64 stable, bug 329703
|
||||
|
||||
27 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-annodex-0.10.22.ebuild:
|
||||
x86 stable, bug 329703
|
||||
|
||||
*gst-plugins-annodex-0.10.22 (03 Jul 2010)
|
||||
|
||||
03 Jul 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-annodex-0.10.22.ebuild:
|
||||
Version bump. No noteworthy changes.
|
||||
|
||||
01 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-annodex-0.10.21.ebuild:
|
||||
x86 stable, bug 324691
|
||||
|
||||
27 Jun 2010; <nixnut@gentoo.org> gst-plugins-annodex-0.10.21.ebuild:
|
||||
ppc stable #324691
|
||||
|
||||
24 Jun 2010; Markos Chandras <hwoarang@gentoo.org>
|
||||
gst-plugins-annodex-0.10.21.ebuild:
|
||||
Stable on amd64 wrt bug #324691
|
||||
|
||||
18 Apr 2010; <nixnut@gentoo.org> gst-plugins-annodex-0.10.17.ebuild:
|
||||
ppc stable #308379
|
||||
|
||||
*gst-plugins-annodex-0.10.21 (05 Apr 2010)
|
||||
|
||||
05 Apr 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-annodex-0.10.14.ebuild, +gst-plugins-annodex-0.10.21.ebuild:
|
||||
Version bump to be in sync with the rest; no code changes
|
||||
|
||||
24 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-annodex-0.10.17.ebuild:
|
||||
stable x86, bug 308379
|
||||
|
||||
19 Mar 2010; Pacho Ramos <pacho@gentoo.org>
|
||||
gst-plugins-annodex-0.10.17.ebuild:
|
||||
amd64 stable, bug 308379
|
||||
|
||||
05 Jan 2010; nixnut <nixnut@gentoo.org>
|
||||
gst-plugins-annodex-0.10.16.ebuild:
|
||||
ppc stable #290343
|
||||
|
||||
29 Nov 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-annodex-0.10.16.ebuild:
|
||||
Stable on alpha, bug #290343
|
||||
|
||||
18 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-annodex-0.10.16.ebuild:
|
||||
x86 stable, bug 290343
|
||||
|
||||
17 Nov 2009; Brent Baude <ranger@gentoo.org> ChangeLog:
|
||||
Marking gst-plugins-annodex-0.10.16 ppc64 stable for bug 290343
|
||||
|
||||
*gst-plugins-annodex-0.10.17 (17 Nov 2009)
|
||||
|
||||
17 Nov 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-annodex-0.10.15.ebuild, +gst-plugins-annodex-0.10.17.ebuild:
|
||||
Version bump, trivial changes
|
||||
|
||||
10 Nov 2009; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-annodex-0.10.16.ebuild:
|
||||
Stable on amd64, bug #290343
|
||||
|
||||
*gst-plugins-annodex-0.10.16 (07 Sep 2009)
|
||||
|
||||
07 Sep 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-annodex-0.10.16.ebuild:
|
||||
Version bump
|
||||
|
||||
*gst-plugins-annodex-0.10.15 (21 Aug 2009)
|
||||
|
||||
21 Aug 2009; Mart Raudsepp <leio@gentoo.org> metadata.xml,
|
||||
gst-plugins-annodex-0.10.14.ebuild, +gst-plugins-annodex-0.10.15.ebuild:
|
||||
Version bump with no code changes. Add some useful descriptions for the
|
||||
package.
|
||||
|
||||
05 Aug 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-annodex-0.10.8.ebuild, -gst-plugins-annodex-0.10.11.ebuild:
|
||||
Remove old
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org> ChangeLog:
|
||||
Marking gst-plugins-annodex-0.10.14 ppc64 stable for bug 266986
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org> ChangeLog:
|
||||
Marking gst-plugins-annodex-0.10.14 ppc stable for bug 266986
|
||||
|
||||
14 May 2009; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-annodex-0.10.14.ebuild:
|
||||
amd64 stable, bug #266986
|
||||
|
||||
12 May 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-annodex-0.10.14.ebuild:
|
||||
stable x86, bug 266986
|
||||
|
||||
03 May 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-annodex-0.10.14.ebuild:
|
||||
Stable on alpha, bug #266986
|
||||
|
||||
*gst-plugins-annodex-0.10.14 (30 Mar 2009)
|
||||
|
||||
30 Mar 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-annodex-0.10.14.ebuild:
|
||||
Version bump
|
||||
|
||||
*gst-plugins-annodex-0.10.11 (05 Dec 2008)
|
||||
|
||||
05 Dec 2008; <ssuominen@gentoo.org> +gst-plugins-annodex-0.10.11.ebuild:
|
||||
Version bump.
|
||||
|
||||
08 Aug 2008; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-annodex-0.10.8.ebuild:
|
||||
x86 stable, bug #232054
|
||||
|
||||
07 Aug 2008; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-annodex-0.10.8.ebuild:
|
||||
Stable on alpha, bug #232054
|
||||
|
||||
01 Aug 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-annodex-0.10.8.ebuild:
|
||||
Marking gst-plugins-annodex-0.10.8 ppc64 stable for bug 232054
|
||||
|
||||
30 Jul 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-annodex-0.10.8.ebuild:
|
||||
Marking gst-plugins-annodex-0.10.8 ppc stable for bug 232054
|
||||
|
||||
26 Jul 2008; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-annodex-0.10.8.ebuild:
|
||||
Stable on amd64, bug #232054
|
||||
|
||||
*gst-plugins-annodex-0.10.8 (29 Jun 2008)
|
||||
|
||||
29 Jun 2008; Samuli Suominen <drac@gentoo.org>
|
||||
-gst-plugins-annodex-0.10.6.ebuild, -gst-plugins-annodex-0.10.7.ebuild,
|
||||
+gst-plugins-annodex-0.10.8.ebuild:
|
||||
Version bump.
|
||||
|
||||
*gst-plugins-annodex-0.10.7 (21 Feb 2008)
|
||||
|
||||
21 Feb 2008; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-annodex-0.10.7.ebuild:
|
||||
version bump
|
||||
|
||||
*gst-plugins-annodex-0.10.6 (30 Aug 2007)
|
||||
|
||||
30 Aug 2007; Samuli Suominen <drac@gentoo.org>
|
||||
+gst-plugins-annodex-0.10.6.ebuild:
|
||||
Version bump.
|
||||
|
||||
22 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog:
|
||||
Transition to Manifest2.
|
||||
|
||||
*gst-plugins-annodex-0.10.5 (25 Jan 2007)
|
||||
|
||||
25 Jan 2007; Jim Ramsay <lack@gentoo.org>
|
||||
+gst-plugins-annodex-0.10.5.ebuild:
|
||||
Version bump - gst-plugins-good-0.10.5 is released
|
||||
|
||||
*gst-plugins-annodex-0.10.3 (13 May 2006)
|
||||
|
||||
13 May 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-annodex-0.10.3.ebuild:
|
||||
Initial import - annodex encoding and decoding plugins
|
||||
|
12
media-plugins/gst-plugins-annodex/Manifest
Normal file
12
media-plugins/gst-plugins-annodex/Manifest
Normal file
@ -0,0 +1,12 @@
|
||||
DIST gst-plugins-good-0.10.16.tar.bz2 2573811 RMD160 51f6dfc95932ae3a25d017257a3587e3081ad163 SHA1 655a22ea3f4f4dc0f9f200af7c85b4b725d960e7 SHA256 64bd5177913b8ccaa1502e88a255adb3e6024202ba8983e6a956061e57fe1640
|
||||
DIST gst-plugins-good-0.10.17.tar.bz2 2671700 RMD160 770a5a091751ea362600c2824cc860dc3f8830b3 SHA1 fb0b9054ee7d1674a7c2bcc2fccf5331d8e9b80c SHA256 4f41fbd325270416c9f55d900e470482a7d1e7efbdbb725ed03a085dec307ad6
|
||||
DIST gst-plugins-good-0.10.21.tar.bz2 2675836 RMD160 71cfebe965409ffc6d6d3a5b08e3923fc966fffa SHA1 ed619824f5ca4592bfe2b2f6df9d53f08bf5f360 SHA256 24445a1cf56302ab4ad5f56055d5c3d81c704b8f9f6875fe78a25d4f72716d22
|
||||
DIST gst-plugins-good-0.10.22.tar.bz2 2701164 RMD160 08784f5c5548af6328d0c898bd06b16c2f82457d SHA1 381f3603a1704aa36297937808220fb8c6c102f4 SHA256 89ba50e0e3b7355bd75c9b0a60866a67b9bd1de38458e540a57853998103d69f
|
||||
DIST gst-plugins-good-0.10.23.tar.bz2 2882183 RMD160 b19a61d796e0c384e074f61fc0515826fb6f6061 SHA1 d819a2690e5bfe83f1277c850b737a13f8f28c12 SHA256 2e7771a611cedb1e8208601cb26744fbf33109598e222afee1be8811ba4babcf
|
||||
EBUILD gst-plugins-annodex-0.10.16.ebuild 492 RMD160 bc8a8f64db7323c742be7a0cc9a4796aa41a2aa5 SHA1 c7c6d68ef73ae89b8f891925e1bc0ff3375eb3ef SHA256 74bab14700c2bf8ad6f63323d4b14fd8c49bc8583abd540fdadad3673df3873c
|
||||
EBUILD gst-plugins-annodex-0.10.17.ebuild 494 RMD160 b9bbd663e9590e13ceeca73a32c4857b29512a67 SHA1 4299d31b2dab3060b07fe6cb161f858091f0e7ca SHA256 e9ed38b47d8c7b648cc6db26e21af235bbc06c71158d062c91433ee4c1d30745
|
||||
EBUILD gst-plugins-annodex-0.10.21.ebuild 495 RMD160 30f38bf7fc874206189368bb2f775f53128fa9c6 SHA1 a598235bca71b04df46f69af0398b4b3b953b52b SHA256 9c52a491bba0703138ff1a5043609153d272e720607e571f5a4fb19614c85612
|
||||
EBUILD gst-plugins-annodex-0.10.22.ebuild 481 RMD160 c030fbfc286642b05809d7bd7550b72d5a3f8948 SHA1 8f2c279df4c940a079609d8e707a27d97a1c4a4b SHA256 b728b3943933d0823594f5b5c4807873351aede8b3c15273ab6a7e9fd8f561bb
|
||||
EBUILD gst-plugins-annodex-0.10.23.ebuild 484 RMD160 ba4225f85f9bfd19751743f92dfe80e335fba2c4 SHA1 aebfd0180ed9b300f4e73599469bf6945d92f708 SHA256 912bec50227344bb8a3baf8830921601ba16ba281d04a5f5ad3d1656afd71d99
|
||||
MISC ChangeLog 6054 RMD160 e2baad8934acf1420664f9b48d62081a2a8b19bb SHA1 5edf927c9c7101c1b858a6c3465d4e34e1b35d66 SHA256 205c3e75059784e73f6dfa73f60c1ef02faee55944c6a60eca4dc44a36d8ba04
|
||||
MISC metadata.xml 306 RMD160 08cc715d18dab2b76e5e7801005e79e4897181c7 SHA1 ba67615308eed2f3fb6d92cfc89ec9869c0c9c7a SHA256 a2410c9110657ae1e1b559c46ee12b00bdaafaad18adaf6c2b7793db5106116c
|
@ -0,0 +1,14 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-annodex/gst-plugins-annodex-0.10.16.ebuild,v 1.6 2010/01/05 18:14:40 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer plugin for annodex stream manipulation"
|
||||
|
||||
KEYWORDS="alpha amd64 ppc ppc64 x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=media-libs/gst-plugins-base-0.10.24
|
||||
>=media-libs/gstreamer-0.10.24
|
||||
>=dev-libs/libxml2-2.4.9"
|
@ -0,0 +1,14 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-annodex/gst-plugins-annodex-0.10.17.ebuild,v 1.5 2010/04/18 15:44:01 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer plugin for annodex stream manipulation"
|
||||
|
||||
KEYWORDS="~alpha amd64 ppc ~ppc64 x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=media-libs/gst-plugins-base-0.10.25
|
||||
>=media-libs/gstreamer-0.10.25
|
||||
>=dev-libs/libxml2-2.4.9"
|
@ -0,0 +1,14 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-annodex/gst-plugins-annodex-0.10.21.ebuild,v 1.6 2010/08/01 20:23:52 klausman Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer plugin for annodex stream manipulation"
|
||||
|
||||
KEYWORDS="alpha amd64 ppc ~ppc64 x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=media-libs/gst-plugins-base-0.10.27
|
||||
>=media-libs/gstreamer-0.10.27
|
||||
>=dev-libs/libxml2-2.4.9"
|
@ -0,0 +1,14 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-annodex/gst-plugins-annodex-0.10.22.ebuild,v 1.6 2010/09/11 09:59:36 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer plugin for annodex stream manipulation"
|
||||
|
||||
KEYWORDS="alpha amd64 ppc ppc64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/gst-plugins-base-0.10.29
|
||||
>=dev-libs/libxml2-2.4.9"
|
||||
DEPEND="${RDEPEND}"
|
@ -0,0 +1,14 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-annodex/gst-plugins-annodex-0.10.23.ebuild,v 1.1 2010/07/30 18:50:16 leio Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer plugin for annodex stream manipulation"
|
||||
|
||||
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/gst-plugins-base-0.10.29
|
||||
>=dev-libs/libxml2-2.4.9"
|
||||
DEPEND="${RDEPEND}"
|
10
media-plugins/gst-plugins-annodex/metadata.xml
Normal file
10
media-plugins/gst-plugins-annodex/metadata.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gstreamer</herd>
|
||||
<longdescription lang="en">
|
||||
GStreamer plugin for annodex stream manipulation
|
||||
|
||||
(info about annodex: http://www.annodex.net)
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
167
media-plugins/gst-plugins-cdio/ChangeLog
Normal file
167
media-plugins/gst-plugins-cdio/ChangeLog
Normal file
@ -0,0 +1,167 @@
|
||||
# ChangeLog for media-plugins/gst-plugins-cdio
|
||||
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-cdio/ChangeLog,v 1.36 2010/08/05 20:08:43 ssuominen Exp $
|
||||
|
||||
05 Aug 2010; Samuli Suominen <ssuominen@gentoo.org>
|
||||
gst-plugins-cdio-0.10.13.ebuild:
|
||||
ppc64 stable wrt #324691
|
||||
|
||||
18 Apr 2010; <nixnut@gentoo.org> gst-plugins-cdio-0.10.13.ebuild:
|
||||
ppc stable #308379
|
||||
|
||||
24 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-cdio-0.10.13.ebuild:
|
||||
stable x86, bug 308379
|
||||
|
||||
19 Mar 2010; Pacho Ramos <pacho@gentoo.org>
|
||||
gst-plugins-cdio-0.10.13.ebuild:
|
||||
amd64 stable, bug 308379
|
||||
|
||||
15 Feb 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-cdio-0.10.11.ebuild:
|
||||
Remove old
|
||||
|
||||
05 Jan 2010; nixnut <nixnut@gentoo.org> gst-plugins-cdio-0.10.12.ebuild:
|
||||
ppc stable #290343
|
||||
|
||||
29 Nov 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-cdio-0.10.12.ebuild:
|
||||
Stable on alpha, bug #290343
|
||||
|
||||
18 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-cdio-0.10.12.ebuild:
|
||||
x86 stable, bug 290343
|
||||
|
||||
17 Nov 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-cdio-0.10.12.ebuild:
|
||||
Marking gst-plugins-cdio-0.10.12 ppc64 stable for bug 290343
|
||||
|
||||
*gst-plugins-cdio-0.10.13 (16 Nov 2009)
|
||||
|
||||
16 Nov 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-cdio-0.10.13.ebuild:
|
||||
Version bump to be in sync with the rest; no code changes
|
||||
|
||||
10 Nov 2009; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-cdio-0.10.12.ebuild:
|
||||
Stable on amd64, bug #290343
|
||||
|
||||
*gst-plugins-cdio-0.10.12 (07 Sep 2009)
|
||||
|
||||
07 Sep 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-cdio-0.10.12.ebuild:
|
||||
Version bump
|
||||
|
||||
06 Aug 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-cdio-0.10.8.ebuild, -gst-plugins-cdio-0.10.10.ebuild:
|
||||
Remove old
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-cdio-0.10.11.ebuild:
|
||||
Marking gst-plugins-cdio-0.10.11 ppc64 stable for bug 266986
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-cdio-0.10.11.ebuild:
|
||||
Marking gst-plugins-cdio-0.10.11 ppc stable for bug 266986
|
||||
|
||||
14 May 2009; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-cdio-0.10.11.ebuild:
|
||||
amd64 stable, bug #266986
|
||||
|
||||
12 May 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-cdio-0.10.11.ebuild:
|
||||
stable x86, bug 266986
|
||||
|
||||
03 May 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-cdio-0.10.11.ebuild:
|
||||
Stable on alpha, bug #266986
|
||||
|
||||
30 Mar 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-cdio-0.10.11.ebuild:
|
||||
Version bump
|
||||
|
||||
*gst-plugins-cdio-0.10.11 (30 Mar 2009)
|
||||
|
||||
30 Mar 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-cdio-0.10.11.ebuild:
|
||||
Version bump
|
||||
|
||||
05 Feb 2009; Alexis Ballier <aballier@gentoo.org>
|
||||
gst-plugins-cdio-0.10.10.ebuild:
|
||||
keyword ~x86-fbsd
|
||||
|
||||
*gst-plugins-cdio-0.10.10 (05 Dec 2008)
|
||||
|
||||
05 Dec 2008; <ssuominen@gentoo.org> +gst-plugins-cdio-0.10.10.ebuild:
|
||||
Version bump.
|
||||
|
||||
08 Aug 2008; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-cdio-0.10.8.ebuild:
|
||||
x86 stable, bug #232054
|
||||
|
||||
07 Aug 2008; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-cdio-0.10.8.ebuild:
|
||||
Stable on alpha, bug #232054
|
||||
|
||||
01 Aug 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-cdio-0.10.8.ebuild:
|
||||
Marking gst-plugins-cdio-0.10.8 ppc64 stable for bug 232054
|
||||
|
||||
30 Jul 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-cdio-0.10.8.ebuild:
|
||||
Marking gst-plugins-cdio-0.10.8 ppc stable for bug 232054
|
||||
|
||||
26 Jul 2008; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-cdio-0.10.8.ebuild:
|
||||
Stable on amd64, bug #232054
|
||||
|
||||
*gst-plugins-cdio-0.10.8 (29 Jun 2008)
|
||||
|
||||
29 Jun 2008; Samuli Suominen <drac@gentoo.org>
|
||||
-gst-plugins-cdio-0.10.6.ebuild, -gst-plugins-cdio-0.10.7.ebuild,
|
||||
+gst-plugins-cdio-0.10.8.ebuild:
|
||||
Version bump.
|
||||
|
||||
12 Jun 2008; nixnut <nixnut@gentoo.org> gst-plugins-cdio-0.10.7.ebuild:
|
||||
Added ~ppc wrt bug 225291
|
||||
|
||||
*gst-plugins-cdio-0.10.7 (21 Feb 2008)
|
||||
|
||||
21 Feb 2008; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-cdio-0.10.7.ebuild:
|
||||
version bump
|
||||
|
||||
*gst-plugins-cdio-0.10.6 (30 Aug 2007)
|
||||
|
||||
30 Aug 2007; Samuli Suominen <drac@gentoo.org>
|
||||
+gst-plugins-cdio-0.10.6.ebuild:
|
||||
Version bump.
|
||||
|
||||
22 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog:
|
||||
Transition to Manifest2.
|
||||
|
||||
*gst-plugins-cdio-0.10.5 (25 Jan 2007)
|
||||
|
||||
25 Jan 2007; Jim Ramsay <lack@gentoo.org> +gst-plugins-cdio-0.10.5.ebuild:
|
||||
Version bump - gst-plugins-good-0.10.5 is released
|
||||
|
||||
10 Jan 2007; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-cdio-0.10.2.ebuild:
|
||||
Prune old version
|
||||
|
||||
*gst-plugins-cdio-0.10.3 (05 May 2006)
|
||||
|
||||
05 May 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-cdio-0.10.3.ebuild:
|
||||
version bump
|
||||
|
||||
28 Feb 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
gst-plugins-cdio-0.10.2.ebuild:
|
||||
dropping ~ppc due to bad rdeps
|
||||
|
||||
*gst-plugins-cdio-0.10.2 (27 Feb 2006)
|
||||
|
||||
27 Feb 2006; Zaheer Abbas Merali <zaheerm@gentoo.org> +metadata.xml,
|
||||
+gst-plugins-cdio-0.10.2.ebuild:
|
||||
cdio plugin for gstreamer 0.10
|
||||
|
6
media-plugins/gst-plugins-cdio/Manifest
Normal file
6
media-plugins/gst-plugins-cdio/Manifest
Normal file
@ -0,0 +1,6 @@
|
||||
DIST gst-plugins-ugly-0.10.12.tar.bz2 1027462 RMD160 3b39c83f70b7e25dfe24237742968e033bcf1bc4 SHA1 2d09dc36a507c66c001f2ec1fa113df22a5b96dd SHA256 b3e785a0dd47aab880049535068556a5f61726da44bce452b41555e3f0481d2f
|
||||
DIST gst-plugins-ugly-0.10.13.tar.bz2 1016859 RMD160 1cf856fd273fff8b08b3bd987ec36b82c33c374a SHA1 20252cc743cbdcca62c702b5ab703c2be0f9d955 SHA256 39f07a60739f5dfa4f5574a02db15de69fd05b9ea63239488338ec3491bf69a8
|
||||
EBUILD gst-plugins-cdio-0.10.12.ebuild 431 RMD160 dcee1fbb123fc550ef4da8d2cd8e65dcd4ccebef SHA1 b142040eb146683063ccf3a0a4e1723e8ca4df42 SHA256 325c0f684437c3385052d2b8879e926a718d9ce97cd2dd31948ad03dc6c81b98
|
||||
EBUILD gst-plugins-cdio-0.10.13.ebuild 456 RMD160 c7ce0e5e4e53f9cb33c7852cab7deec9a6e7c63a SHA1 4eaf6ec647ff32c0a3b6ac6a2c3d4e71135e88bc SHA256 83f5068d7e9959888a8d4479501b0488d4b5e3422113b91f4bed5840951ff4fb
|
||||
MISC ChangeLog 4991 RMD160 99db72ea9ebabfabfc13825a732e369138c8a357 SHA1 4c9b6e1a2b96cee094052b38e11f64caa633e7bf SHA256 09337a69b9ba853b5c3871498584df0c7d0415ca7f14cc6df26bc08e84cb818e
|
||||
MISC metadata.xml 181 RMD160 51814fbdcf7f32cfe70018b3af7fc798e41ff90d SHA1 faf40c45bd66b0072b95556cf7ab097d3be19511 SHA256 22c215902ccdc7fd8cdb765750fb23ea9d9b6c9d3edb1b45325c3469f8f6ffc5
|
@ -0,0 +1,12 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-cdio/gst-plugins-cdio-0.10.12.ebuild,v 1.6 2010/01/05 18:27:47 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-ugly
|
||||
|
||||
KEYWORDS="alpha amd64 ppc ppc64 x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=dev-libs/libcdio-0.80
|
||||
>=media-libs/gst-plugins-base-0.10.23
|
||||
>=media-libs/gstreamer-0.10.23"
|
@ -0,0 +1,13 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-cdio/gst-plugins-cdio-0.10.13.ebuild,v 1.6 2010/08/05 20:08:43 ssuominen Exp $
|
||||
|
||||
inherit gst-plugins-ugly
|
||||
|
||||
KEYWORDS="~alpha amd64 ppc ppc64 x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=dev-libs/libcdio-0.80
|
||||
>=media-libs/gst-plugins-base-0.10.25
|
||||
>=media-libs/gstreamer-0.10.25"
|
||||
DEPEND="${RDEPEND}"
|
6
media-plugins/gst-plugins-cdio/metadata.xml
Normal file
6
media-plugins/gst-plugins-cdio/metadata.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gstreamer</herd>
|
||||
<herd>gnome</herd>
|
||||
</pkgmetadata>
|
703
media-plugins/gst-plugins-cdparanoia/ChangeLog
Normal file
703
media-plugins/gst-plugins-cdparanoia/ChangeLog
Normal file
@ -0,0 +1,703 @@
|
||||
# ChangeLog for media-plugins/gst-plugins-cdparanoia
|
||||
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-cdparanoia/ChangeLog,v 1.161 2010/11/19 05:35:17 ford_prefect Exp $
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.30 (19 Nov 2010)
|
||||
|
||||
19 Nov 2010; Arun Raghavan <ford_prefect@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.10.30.ebuild:
|
||||
Bump to 0.10.30. No major changes.
|
||||
|
||||
11 Sep 2010; <nixnut@gentoo.org> gst-plugins-cdparanoia-0.10.29.ebuild:
|
||||
ppc stable #329703
|
||||
|
||||
05 Sep 2010; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.29.ebuild:
|
||||
Stable on alpha, bug #329703
|
||||
|
||||
05 Sep 2010; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.29.ebuild:
|
||||
ia64/sparc stable wrt #329703
|
||||
|
||||
04 Sep 2010; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.28.ebuild:
|
||||
alpha/ia64/sparc stable wrt #324691
|
||||
|
||||
10 Aug 2010; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.29.ebuild:
|
||||
Stable for HPPA (bug #329703).
|
||||
|
||||
05 Aug 2010; Samuli Suominen <ssuominen@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.29.ebuild:
|
||||
ppc64 stable wrt #324691
|
||||
|
||||
01 Aug 2010; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.28.ebuild:
|
||||
Stable on alpha, bug #324691
|
||||
|
||||
27 Jul 2010; Pacho Ramos <pacho@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.29.ebuild:
|
||||
amd64 stable, bug 329703
|
||||
|
||||
27 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.29.ebuild:
|
||||
x86 stable, bug 329703
|
||||
|
||||
12 Jul 2010; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.28.ebuild:
|
||||
Stable for HPPA (bug #324691).
|
||||
|
||||
01 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.28.ebuild:
|
||||
x86 stable, bug 324691
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.29 (28 Jun 2010)
|
||||
|
||||
28 Jun 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.10.29.ebuild:
|
||||
Version bump. No noteworthy changes.
|
||||
|
||||
27 Jun 2010; <nixnut@gentoo.org> gst-plugins-cdparanoia-0.10.28.ebuild:
|
||||
ppc stable #324691
|
||||
|
||||
24 Jun 2010; Markos Chandras <hwoarang@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.28.ebuild:
|
||||
Stable on amd64 wrt bug #324691
|
||||
|
||||
18 Apr 2010; <nixnut@gentoo.org> gst-plugins-cdparanoia-0.10.25.ebuild:
|
||||
ppc stable #308379
|
||||
|
||||
05 Apr 2010; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.25.ebuild:
|
||||
alpha/ia64/sparc stable wrt #308379
|
||||
|
||||
24 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.25.ebuild:
|
||||
stable x86, bug 308379
|
||||
|
||||
19 Mar 2010; Pacho Ramos <pacho@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.25.ebuild:
|
||||
amd64 stable, bug 308379
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.28 (19 Mar 2010)
|
||||
|
||||
19 Mar 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-cdparanoia-0.10.23.ebuild,
|
||||
+gst-plugins-cdparanoia-0.10.28.ebuild:
|
||||
Version bump to be in sync with the rest; no code changes
|
||||
|
||||
05 Jan 2010; nixnut <nixnut@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.24.ebuild:
|
||||
ppc stable #290343
|
||||
|
||||
29 Dec 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.24.ebuild:
|
||||
ia64/sparc stable wrt #290343
|
||||
|
||||
22 Nov 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.24.ebuild:
|
||||
Stable on alpha, bug #290343
|
||||
|
||||
18 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.24.ebuild:
|
||||
x86 stable, bug 290343
|
||||
|
||||
18 Nov 2009; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.24.ebuild:
|
||||
Stable for HPPA (bug #290343).
|
||||
|
||||
17 Nov 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.24.ebuild:
|
||||
Marking gst-plugins-cdparanoia-0.10.24 ppc64 stable for bug 290343
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.25 (16 Nov 2009)
|
||||
|
||||
16 Nov 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.10.25.ebuild:
|
||||
Version bump to be in sync with the rest; no code changes
|
||||
|
||||
10 Nov 2009; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.24.ebuild:
|
||||
Stable on amd64, bug #290343
|
||||
|
||||
10 Nov 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-cdparanoia-0.10.22.ebuild,
|
||||
gst-plugins-cdparanoia-0.10.24.ebuild:
|
||||
QA: Avoid building all plugins for no reason (bug 291038). Remove old
|
||||
|
||||
15 Sep 2009; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.23.ebuild:
|
||||
Stable for HPPA (bug #280946).
|
||||
|
||||
31 Aug 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.23.ebuild:
|
||||
Marking gst-plugins-cdparanoia-0.10.23 ppc64 stable for bug 280946
|
||||
|
||||
29 Aug 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.23.ebuild:
|
||||
alpha/ia64/sparc stable wrt #280946
|
||||
|
||||
23 Aug 2009; nixnut <nixnut@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.23.ebuild:
|
||||
ppc stable #280946
|
||||
|
||||
21 Aug 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.23.ebuild:
|
||||
stable x86, bug 280946
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.24 (15 Aug 2009)
|
||||
|
||||
15 Aug 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.10.24.ebuild:
|
||||
Version bump
|
||||
|
||||
15 Aug 2009; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.23.ebuild:
|
||||
Stable on amd64, bug #280946
|
||||
|
||||
01 Jul 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.22.ebuild:
|
||||
ia64/sparc stable wrt #266986
|
||||
|
||||
23 May 2009; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.22.ebuild:
|
||||
Stable for HPPA (bug #266986).
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.22.ebuild:
|
||||
Marking gst-plugins-cdparanoia-0.10.22 ppc64 stable for bug 266986
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.22.ebuild:
|
||||
Marking gst-plugins-cdparanoia-0.10.22 ppc stable for bug 266986
|
||||
|
||||
14 May 2009; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.22.ebuild:
|
||||
amd64 stable, bug #266986
|
||||
|
||||
12 May 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.22.ebuild:
|
||||
stable x86, bug 266986
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.23 (11 May 2009)
|
||||
|
||||
11 May 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.10.23.ebuild:
|
||||
Version bump
|
||||
|
||||
03 May 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.22.ebuild:
|
||||
Stable on alpha, bug #266986
|
||||
|
||||
02 Apr 2009; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.20.ebuild:
|
||||
Plugins 0.10.20 does not build against gst 0.10.22, bug #264483
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.22 (30 Mar 2009)
|
||||
|
||||
30 Mar 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.10.22.ebuild:
|
||||
Version bump
|
||||
|
||||
21 Jan 2009; Alexis Ballier <aballier@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.14.ebuild,
|
||||
gst-plugins-cdparanoia-0.10.20.ebuild,
|
||||
gst-plugins-cdparanoia-0.10.21.ebuild:
|
||||
drop x86-fbsd keyword as we dropped cdparanoia with custom patches
|
||||
support; maybe some day when the porters will decide to upstream their
|
||||
patches it'll come back, but for now that's how it is...
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.21 (05 Dec 2008)
|
||||
|
||||
05 Dec 2008; <ssuominen@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.10.21.ebuild:
|
||||
Version bump.
|
||||
|
||||
23 Sep 2008; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.20.ebuild:
|
||||
Stable for HPPA (bug #232054).
|
||||
|
||||
08 Aug 2008; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.20.ebuild:
|
||||
x86 stable, bug #232054
|
||||
|
||||
07 Aug 2008; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.20.ebuild:
|
||||
Stable on alpha, bug #232054
|
||||
|
||||
31 Jul 2008; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.20.ebuild:
|
||||
ia64/sparc stable wrt #232054
|
||||
|
||||
01 Aug 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.20.ebuild:
|
||||
Marking gst-plugins-cdparanoia-0.10.20 ppc64 stable for bug 232054
|
||||
|
||||
30 Jul 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.20.ebuild:
|
||||
Marking gst-plugins-cdparanoia-0.10.20 ppc stable for bug 232054
|
||||
|
||||
26 Jul 2008; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.20.ebuild:
|
||||
Stable on amd64, bug #232054
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.20 (29 Jun 2008)
|
||||
|
||||
29 Jun 2008; Samuli Suominen <drac@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.10.20.ebuild:
|
||||
Version bump.
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.17 (31 Jan 2008)
|
||||
|
||||
31 Jan 2008; Samuli Suominen <drac@gentoo.org>
|
||||
-gst-plugins-cdparanoia-0.10.15.ebuild,
|
||||
-gst-plugins-cdparanoia-0.10.16.ebuild,
|
||||
+gst-plugins-cdparanoia-0.10.17.ebuild:
|
||||
Version bump.
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.16 (30 Jan 2008)
|
||||
|
||||
30 Jan 2008; Zaheer Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.10.16.ebuild:
|
||||
version bump
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.15 (17 Nov 2007)
|
||||
|
||||
17 Nov 2007; Samuli Suominen <drac@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.14.ebuild,
|
||||
+gst-plugins-cdparanoia-0.10.15.ebuild:
|
||||
Version bump, and mark 0.10.14 stable on sparc, tested and authorized by
|
||||
armin76.
|
||||
|
||||
11 Oct 2007; Tom Gall <tgall@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.14.ebuild:
|
||||
stable on ppc64
|
||||
|
||||
26 Sep 2007; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.14.ebuild:
|
||||
alpha/ia64 stable wrt #190900
|
||||
|
||||
21 Sep 2007; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.14.ebuild:
|
||||
Stable on amd64 wrt bug #190900.
|
||||
|
||||
10 Sep 2007; nixnut <nixnut@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.14.ebuild:
|
||||
Stable on ppc wrt bug 190900
|
||||
|
||||
09 Sep 2007; Christian Faulhammer <opfer@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.14.ebuild:
|
||||
x86 stable, bug 190900
|
||||
|
||||
03 Sep 2007; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.14.ebuild:
|
||||
Stable for HPPA (bug #190900).
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.14 (31 Aug 2007)
|
||||
|
||||
31 Aug 2007; Samuli Suominen <drac@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.10.14.ebuild:
|
||||
Version bump.
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.13 (25 Jul 2007)
|
||||
|
||||
25 Jul 2007; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.10.13.ebuild:
|
||||
version bump
|
||||
|
||||
05 Jul 2007; Roy Marples <uberlord@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.12.ebuild:
|
||||
Keyworded ~x86-fbsd.
|
||||
|
||||
28 Jun 2007; Joseph Jezak <josejx@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.11.ebuild:
|
||||
Marked ppc stable for bug #163541.
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.12 (16 Mar 2007)
|
||||
|
||||
16 Mar 2007; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.10.12.ebuild:
|
||||
version bump
|
||||
|
||||
12 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.11.ebuild:
|
||||
stable x86; bug 163541
|
||||
|
||||
31 Jan 2007; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.11.ebuild:
|
||||
Stable on ppc64; bug #163541
|
||||
|
||||
30 Jan 2007; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.11.ebuild:
|
||||
Stable for HPPA (bug #163541).
|
||||
|
||||
27 Jan 2007; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.11.ebuild:
|
||||
Stable on amd64 for bug #163541
|
||||
|
||||
23 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.11.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
10 Jan 2007; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-cdparanoia-0.8.10.ebuild,
|
||||
-gst-plugins-cdparanoia-0.10.6.ebuild,
|
||||
-gst-plugins-cdparanoia-0.10.7.ebuild,
|
||||
-gst-plugins-cdparanoia-0.10.8.ebuild,
|
||||
-gst-plugins-cdparanoia-0.10.10.ebuild:
|
||||
Prune old versions
|
||||
|
||||
21 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.11.ebuild:
|
||||
Back to ~sparc
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.11 (07 Dec 2006)
|
||||
|
||||
07 Dec 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.10.11.ebuild:
|
||||
version bump
|
||||
|
||||
19 Sep 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.4.ebuild:
|
||||
Mark 0.10.4 stable on ia64. #139612
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.10 (15 Sep 2006)
|
||||
|
||||
15 Sep 2006; <zaheerm@gentoo.org> +gst-plugins-cdparanoia-0.10.10.ebuild:
|
||||
version bump
|
||||
|
||||
03 Aug 2006; Joshua Kinard <kumba@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.10.ebuild,
|
||||
gst-plugins-cdparanoia-0.8.11.ebuild,
|
||||
gst-plugins-cdparanoia-0.8.12.ebuild:
|
||||
Removing mips keywords as gst-plugins no longer functions too well on mips.
|
||||
|
||||
10 Jul 2006; Thomas Cort <tcort@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.4.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.8 (12 Jun 2006)
|
||||
|
||||
12 Jun 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.10.8.ebuild:
|
||||
version bump
|
||||
|
||||
29 May 2006; Guy Martin <gmsoft@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.4.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.7 (15 May 2006)
|
||||
|
||||
15 May 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.10.7.ebuild:
|
||||
version bump
|
||||
|
||||
13 May 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.4.ebuild:
|
||||
Added ~hppa
|
||||
|
||||
12 May 2006; Thomas Cort <tcort@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.4.ebuild:
|
||||
Added ~alpha keyword.
|
||||
|
||||
05 May 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.4.ebuild:
|
||||
ppc stable, bug #128737
|
||||
|
||||
03 May 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.4.ebuild:
|
||||
Stable on sparc wrt #128737
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.6 (28 Apr 2006)
|
||||
|
||||
28 Apr 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.10.6.ebuild:
|
||||
version bump
|
||||
|
||||
26 Apr 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
-gst-plugins-cdparanoia-0.10.3.ebuild:
|
||||
prune old versions
|
||||
|
||||
23 Apr 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.4.ebuild:
|
||||
stable on x86 (bug #128737)
|
||||
|
||||
17 Apr 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.4.ebuild:
|
||||
Stable on ppc64; bug #128737
|
||||
|
||||
08 Apr 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.4.ebuild:
|
||||
Added to ~ppc
|
||||
|
||||
05 Apr 2006; Patrick McLean <chutzpah@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.4.ebuild:
|
||||
Stable on amd64 (bug #128737).
|
||||
|
||||
30 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.4.ebuild:
|
||||
Keyworded ~sparc
|
||||
|
||||
25 Mar 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.4.ebuild:
|
||||
Mark 0.10.4 ~ia64
|
||||
|
||||
16 Mar 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.4.ebuild:
|
||||
Added ~ppc64
|
||||
|
||||
13 Mar 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.4.ebuild:
|
||||
fix dep on gstreamer
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.4 (11 Mar 2006)
|
||||
|
||||
11 Mar 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.10.4.ebuild:
|
||||
Version bump from upstream
|
||||
|
||||
28 Feb 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.10.3.ebuild:
|
||||
Dropping unsupported keywords
|
||||
|
||||
*gst-plugins-cdparanoia-0.8.12 (23 Feb 2006)
|
||||
|
||||
23 Feb 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.8.12.ebuild:
|
||||
version bump of 0.8 series
|
||||
|
||||
18 Feb 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.11.ebuild:
|
||||
Mark 0.8.11 stable on ia64
|
||||
|
||||
*gst-plugins-cdparanoia-0.10.3 (15 Feb 2006)
|
||||
|
||||
15 Feb 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.10.3.ebuild:
|
||||
Adding an ebuild for the 0.10.3 series
|
||||
|
||||
09 Feb 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.11.ebuild:
|
||||
Mark 0.8.11 stable on alpha
|
||||
|
||||
09 Feb 2006; Guy Martin <gmsoft@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.11.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.11.ebuild:
|
||||
Stable on ppc wrt bug #119634.
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.11.ebuild:
|
||||
Stable on amd64 wrt bug #119634.
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.11.ebuild:
|
||||
Stable on x86 wrt bug #119634.
|
||||
|
||||
22 Jan 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.11.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
20 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.11.ebuild:
|
||||
Stable on sparc wrt #119634
|
||||
|
||||
04 Dec 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
-gst-plugins-cdparanoia-0.8.8.ebuild,
|
||||
-gst-plugins-cdparanoia-0.8.9.ebuild:
|
||||
Remove unneeded versions
|
||||
|
||||
10 Oct 2005; Hardave Riar <hardave@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.10.ebuild:
|
||||
Stable on mips.
|
||||
|
||||
15 Sep 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.10.ebuild:
|
||||
Mark 0.8.10 stable on alpha
|
||||
|
||||
*gst-plugins-cdparanoia-0.8.11 (05 Sep 2005)
|
||||
|
||||
05 Sep 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.8.11.ebuild:
|
||||
version bump
|
||||
|
||||
03 Sep 2005; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.10.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
02 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.10.ebuild:
|
||||
Stable on ppc.
|
||||
|
||||
31 Aug 2005; Herbie Hopkins <herbs@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.10.ebuild:
|
||||
Stable on amd64.
|
||||
|
||||
29 Aug 2005; Guy Martin <gmsoft@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.10.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
26 Aug 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.10.ebuild:
|
||||
stable on ia64
|
||||
|
||||
26 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.10.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
25 Aug 2005; Leonardo Boshell <leonardop@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.10.ebuild:
|
||||
Stable on x86.
|
||||
|
||||
12 Jul 2005; Stephen P. Becker <geoman@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.8.ebuild:
|
||||
stable on mips
|
||||
|
||||
*gst-plugins-cdparanoia-0.8.10 (01 Jul 2005)
|
||||
|
||||
01 Jul 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.8.10.ebuild:
|
||||
version bump
|
||||
|
||||
09 Jun 2005; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.8.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
*gst-plugins-cdparanoia-0.8.9 (08 Jun 2005)
|
||||
|
||||
08 Jun 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-cdparanoia-0.8.9.ebuild:
|
||||
version bump
|
||||
|
||||
04 Jun 2005; Stephen P. Becker <geoman@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.8.ebuild:
|
||||
added ~mips keyword
|
||||
|
||||
22 May 2005; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.8.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
30 Apr 2005; Michael Hanselmann <hansmi@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.8.ebuild:
|
||||
Stable on ppc.
|
||||
|
||||
29 Apr 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.8.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
27 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.8.ebuild:
|
||||
stable on amd64
|
||||
|
||||
*gst-plugins-cdparanoia-0.8.8 (25 Apr 2005)
|
||||
|
||||
25 Apr 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.8.ebuild:
|
||||
stabilise on x86
|
||||
|
||||
02 Apr 2005; <zaheerm@gentoo.org> -gst-plugins-cdparanoia-0.6.4.ebuild:
|
||||
removing gstreamer 0.6.x
|
||||
|
||||
21 Mar 2005; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.7.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
13 Mar 2005; Mike Gardiner <obz@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.7.ebuild:
|
||||
Keyworded ppc
|
||||
|
||||
11 Mar 2005; Heinrich Wendel <lanius@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.7.ebuild:
|
||||
stable on amd64
|
||||
|
||||
*gst-plugins-cdparanoia-0.8.7 (09 Mar 2005)
|
||||
|
||||
09 Mar 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.7.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
*gst-plugins-cdparanoia (08 Mar 2005)
|
||||
|
||||
*gst-plugins-cdparanoia (05 Jan 2005)
|
||||
|
||||
29 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
|
||||
Change encoding to UTF-8 for GLEP 31 compliance
|
||||
|
||||
16 Dec 2004; Dylan Carlson <absinthe@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.5.ebuild:
|
||||
Stable on amd64.
|
||||
|
||||
04 Dec 2004; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.5.ebuild:
|
||||
Added ~ppc64 to KEYWORDS; bug #72460
|
||||
|
||||
15 Nov 2004; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.5.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
12 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.5.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
*gst-plugins-cdparanoia-0.8.5 (22 Oct 2004)
|
||||
|
||||
22 Aug 2004; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.2.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
*gst-plugins-cdparanoia-0.8.3 (18 Aug 2004)
|
||||
|
||||
18 Aug 2004; foser <foser@gentoo.org> gst-plugins-cdparanoia-0.8.3.ebuild :
|
||||
New release
|
||||
|
||||
05 Aug 2004; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.8.2.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
01 Aug 2004; <spider@gentoo.org> gst-plugins-cdparanoia-0.8.2.ebuild:
|
||||
stable on x86
|
||||
|
||||
*gst-plugins-cdparanoia-0.8.2 (29 Jun 2004)
|
||||
|
||||
29 Jun 2004; foser <foser@gentoo.org> gst-plugins-cdparanoia-0.8.2.ebuild :
|
||||
New release
|
||||
|
||||
*gst-plugins-cdparanoia-0.8.1 (24 Apr 2004)
|
||||
|
||||
24 Apr 2004; foser <foser@gentoo.org> gst-plugins-cdparanoia-0.8.1.ebuild :
|
||||
New release for gst 0.8
|
||||
|
||||
10 Feb 2004; Bartosch Pixa <darkspecter@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.6.4.ebuild:
|
||||
set ppc in keywords
|
||||
|
||||
18 Jan 2004; <gustavoz@gentoo.org> gst-plugins-cdparanoia-0.6.4.ebuild:
|
||||
stable on sparc
|
||||
|
||||
14 Jan 2004; <gustavoz@gentoo.org> gst-plugins-cdparanoia-0.6.4.ebuild:
|
||||
added ~sparc
|
||||
|
||||
*gst-plugins-cdparanoia-0.6.4 (23 Oct 2003)
|
||||
|
||||
23 Oct 2003; foser <foser@gentoo.org> gst-plugins-cdparanoia-0.6.4.ebuild :
|
||||
New version
|
||||
|
||||
17 Sep 2003; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.6.3.ebuild:
|
||||
Add ~alpha
|
||||
|
||||
14 Sep 2003; David Holm <dholm@gentoo.org>
|
||||
gst-plugins-cdparanoia-0.6.3.ebuild:
|
||||
Added to ~ppc after testing.
|
||||
|
||||
*gst-plugins-cdparanoia-0.6.3 (07 Sep 2003)
|
||||
|
||||
07 Sep 2003; foser <foser@gentoo.org> gst-plugins-cdparanoia-0.6.3.ebuild :
|
||||
New version
|
||||
|
||||
*gst-plugins-cdparanoia-0.6.2 (17 Jun 2003)
|
||||
|
||||
17 Jun 2003; foser <foser@gentoo.org> gst-plugins-cdparanoia-0.6.2, ChangeLog :
|
||||
Initial commit, experimental ebuild using gst-plugins eclass
|
12
media-plugins/gst-plugins-cdparanoia/Manifest
Normal file
12
media-plugins/gst-plugins-cdparanoia/Manifest
Normal file
@ -0,0 +1,12 @@
|
||||
DIST gst-plugins-base-0.10.24.tar.bz2 2199169 RMD160 3d85ee63e0b0a27eb50b5654dc2bd96c60bcf94f SHA1 01abe0839303923671e79d8448ebfabda5bce799 SHA256 6f566e8ce0911e0fae99dc7435c3fc3a14d0253578a88e87a28c0e2584372761
|
||||
DIST gst-plugins-base-0.10.25.tar.bz2 2241145 RMD160 4d57f4c6e42a4bf006c1dff9d69c0bbc9bcde483 SHA1 6057e6552c936f3dbe9ba01269bc0bcf8469ae0a SHA256 0ab2f7e1d818e7af1be99c4eae02ba69d4a1b8f7e3527929a6426f1daa0d4607
|
||||
DIST gst-plugins-base-0.10.28.tar.bz2 2343870 RMD160 e013a996af99b6be42ece624f279f3f76fe5a30f SHA1 c32b966e4ec3c81d520f80a03794cb11942df835 SHA256 132b6fd7749fcbfa9ad88c854aada44b6870c4175bda21cdb01a52b59a98e14f
|
||||
DIST gst-plugins-base-0.10.29.tar.bz2 2351477 RMD160 7ade1abdd56201fb10c4e19f3507f91298b760e7 SHA1 22a96d2d4dfbd3c980e3337db6e6c1d06fb0841a SHA256 ac035cce4d68e2e0b980d3ddb6c74674667cbfde6cddc65e18ea16368d34732c
|
||||
DIST gst-plugins-base-0.10.30.tar.bz2 2455042 RMD160 69dc0be92144f343fee772e6999caff4d94ebb7f SHA1 17170bb23278c87bb3f4b299a3e7eaeed178bd31 SHA256 63938641380be9935c804ae8d55acdcfd93920ed2deb72dcf70f027a78b085d7
|
||||
EBUILD gst-plugins-cdparanoia-0.10.24.ebuild 469 RMD160 bed23f96110cdddde197132207e131b1dd72f2e9 SHA1 6fbe9ea2c72b97a66001997b51c06b6ee58f8c46 SHA256 f86599ee566f7ec26bcfd805e9ddbd27267bf0d3b8fa240ec8bcb03a7ce81f2d
|
||||
EBUILD gst-plugins-cdparanoia-0.10.25.ebuild 412 RMD160 950ab14baa4b01b3da88a32975672579268b7fdb SHA1 a6da97bf68744a2bed6a3da55a2197ea80682e5f SHA256 a52b39af5770e57f9901adb00b30d8e8d1f819a76e67ffa56ecde375dee439b7
|
||||
EBUILD gst-plugins-cdparanoia-0.10.28.ebuild 412 RMD160 0f002f8b8bc772647e43785934e970d0adc3dcb0 SHA1 4f9d70928e6e44cb025f2418b052e0ce4d587a1f SHA256 cd70e3bf3ff852f39203ffc3b041dd2cc4a39ec54c57ab470d76032120f7dbc7
|
||||
EBUILD gst-plugins-cdparanoia-0.10.29.ebuild 410 RMD160 d69bc99e78c2e702a7f27200f87c6606bf89a8c5 SHA1 dc0ed12bc839ba2ed3247a726059c1abdaa831d1 SHA256 e31bd81e44ea671d45e54b6660565f88ef4f021b50006b96a879f862e22d7b4c
|
||||
EBUILD gst-plugins-cdparanoia-0.10.30.ebuild 424 RMD160 ea954bb69c28f1b34089fe8674eb9e186ad8eef9 SHA1 6a3cfaa54d6173017af4b2c073d774ca4816e577 SHA256 8b6e9cbaf078b37850ddff56bbc2f8d9f5163fcc6a4ec26b8c81ade5b8da5eea
|
||||
MISC ChangeLog 21226 RMD160 53edd4de420447e93c29e75ba7a875a8859f5528 SHA1 8c5b475612819ceac31db026796f33c2444af93e SHA256 9bc6fffbbde5bd4035732a2fb166b8fd2bc661b09b57c8bc11604075b33419f5
|
||||
MISC metadata.xml 181 RMD160 51814fbdcf7f32cfe70018b3af7fc798e41ff90d SHA1 faf40c45bd66b0072b95556cf7ab097d3be19511 SHA256 22c215902ccdc7fd8cdb765750fb23ea9d9b6c9d3edb1b45325c3469f8f6ffc5
|
@ -0,0 +1,13 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-cdparanoia/gst-plugins-cdparanoia-0.10.24.ebuild,v 1.9 2010/01/05 18:11:27 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-base
|
||||
|
||||
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/gst-plugins-base-0.10.23
|
||||
>=media-sound/cdparanoia-3.10.2-r3"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/pkgconfig"
|
@ -0,0 +1,11 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-cdparanoia/gst-plugins-cdparanoia-0.10.25.ebuild,v 1.5 2010/04/18 15:39:09 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-base
|
||||
|
||||
KEYWORDS="alpha amd64 ~hppa ia64 ppc ~ppc64 sparc x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-sound/cdparanoia-3.10.2-r3"
|
||||
DEPEND="${RDEPEND}"
|
@ -0,0 +1,11 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-cdparanoia/gst-plugins-cdparanoia-0.10.28.ebuild,v 1.7 2010/09/04 11:47:26 armin76 Exp $
|
||||
|
||||
inherit gst-plugins-base
|
||||
|
||||
KEYWORDS="alpha amd64 hppa ia64 ppc ~ppc64 sparc x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-sound/cdparanoia-3.10.2-r3"
|
||||
DEPEND="${RDEPEND}"
|
@ -0,0 +1,11 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-cdparanoia/gst-plugins-cdparanoia-0.10.29.ebuild,v 1.8 2010/09/11 09:52:11 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-base
|
||||
|
||||
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-sound/cdparanoia-3.10.2-r3"
|
||||
DEPEND="${RDEPEND}"
|
@ -0,0 +1,11 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-cdparanoia/gst-plugins-cdparanoia-0.10.30.ebuild,v 1.1 2010/11/19 05:35:17 ford_prefect Exp $
|
||||
|
||||
inherit gst-plugins-base
|
||||
|
||||
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-sound/cdparanoia-3.10.2-r3"
|
||||
DEPEND="${RDEPEND}"
|
6
media-plugins/gst-plugins-cdparanoia/metadata.xml
Normal file
6
media-plugins/gst-plugins-cdparanoia/metadata.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gstreamer</herd>
|
||||
<herd>gnome</herd>
|
||||
</pkgmetadata>
|
305
media-plugins/gst-plugins-dv/ChangeLog
Normal file
305
media-plugins/gst-plugins-dv/ChangeLog
Normal file
@ -0,0 +1,305 @@
|
||||
# ChangeLog for media-plugins/gst-plugins-dv
|
||||
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-dv/ChangeLog,v 1.70 2010/09/11 10:00:08 nixnut Exp $
|
||||
|
||||
11 Sep 2010; <nixnut@gentoo.org> gst-plugins-dv-0.10.22.ebuild:
|
||||
ppc stable #329703
|
||||
|
||||
05 Sep 2010; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-dv-0.10.22.ebuild:
|
||||
Stable on alpha, bug #329703
|
||||
|
||||
05 Aug 2010; Samuli Suominen <ssuominen@gentoo.org>
|
||||
gst-plugins-dv-0.10.22.ebuild:
|
||||
ppc64 stable wrt #324691
|
||||
|
||||
01 Aug 2010; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-dv-0.10.21.ebuild:
|
||||
Stable on alpha, bug #324691
|
||||
|
||||
*gst-plugins-dv-0.10.23 (31 Jul 2010)
|
||||
|
||||
31 Jul 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-dv-0.10.23.ebuild:
|
||||
Version bump to be in sync with the rest; no code changes
|
||||
|
||||
27 Jul 2010; Pacho Ramos <pacho@gentoo.org> gst-plugins-dv-0.10.22.ebuild:
|
||||
amd64 stable, bug 329703
|
||||
|
||||
27 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-dv-0.10.22.ebuild:
|
||||
x86 stable, bug 329703
|
||||
|
||||
*gst-plugins-dv-0.10.22 (03 Jul 2010)
|
||||
|
||||
03 Jul 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-dv-0.10.22.ebuild:
|
||||
Version bump. No noteworthy changes.
|
||||
|
||||
01 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-dv-0.10.21.ebuild:
|
||||
x86 stable, bug 324691
|
||||
|
||||
27 Jun 2010; <nixnut@gentoo.org> gst-plugins-dv-0.10.21.ebuild:
|
||||
ppc stable #324691
|
||||
|
||||
24 Jun 2010; Markos Chandras <hwoarang@gentoo.org>
|
||||
gst-plugins-dv-0.10.21.ebuild:
|
||||
Stable on amd64 wrt bug #324691
|
||||
|
||||
18 Apr 2010; <nixnut@gentoo.org> gst-plugins-dv-0.10.17.ebuild:
|
||||
ppc stable #308379
|
||||
|
||||
*gst-plugins-dv-0.10.21 (05 Apr 2010)
|
||||
|
||||
05 Apr 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-dv-0.10.14.ebuild, +gst-plugins-dv-0.10.21.ebuild:
|
||||
Version bump to be in sync with the rest; no code changes
|
||||
|
||||
24 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-dv-0.10.17.ebuild:
|
||||
stable x86, bug 308379
|
||||
|
||||
19 Mar 2010; Pacho Ramos <pacho@gentoo.org> gst-plugins-dv-0.10.17.ebuild:
|
||||
amd64 stable, bug 308379
|
||||
|
||||
05 Jan 2010; nixnut <nixnut@gentoo.org> gst-plugins-dv-0.10.16.ebuild:
|
||||
ppc stable #290343
|
||||
|
||||
29 Nov 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-dv-0.10.16.ebuild:
|
||||
Stable on alpha, bug #290343
|
||||
|
||||
18 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-dv-0.10.16.ebuild:
|
||||
x86 stable, bug 290343
|
||||
|
||||
17 Nov 2009; Brent Baude <ranger@gentoo.org> ChangeLog:
|
||||
Marking gst-plugins-dv-0.10.16 ppc64 stable for bug 290343
|
||||
|
||||
*gst-plugins-dv-0.10.17 (17 Nov 2009)
|
||||
|
||||
17 Nov 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-dv-0.10.15.ebuild, +gst-plugins-dv-0.10.17.ebuild:
|
||||
Version bump. DV demuxer improvements
|
||||
|
||||
10 Nov 2009; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-dv-0.10.16.ebuild:
|
||||
Stable on amd64, bug #290343
|
||||
|
||||
*gst-plugins-dv-0.10.16 (07 Sep 2009)
|
||||
|
||||
07 Sep 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-dv-0.10.16.ebuild:
|
||||
Version bump
|
||||
|
||||
*gst-plugins-dv-0.10.15 (21 Aug 2009)
|
||||
|
||||
21 Aug 2009; Mart Raudsepp <leio@gentoo.org> metadata.xml,
|
||||
gst-plugins-dv-0.10.14.ebuild, +gst-plugins-dv-0.10.15.ebuild:
|
||||
Version bump - sets interlacing information to allow correct automatic
|
||||
deinterlacing. Tweak package descriptions.
|
||||
|
||||
05 Aug 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-dv-0.10.8.ebuild, -gst-plugins-dv-0.10.11.ebuild:
|
||||
Remove old
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org> ChangeLog:
|
||||
Marking gst-plugins-dv-0.10.14 ppc64 stable for bug 266986
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org> ChangeLog:
|
||||
Marking gst-plugins-dv-0.10.14 ppc stable for bug 266986
|
||||
|
||||
14 May 2009; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-dv-0.10.14.ebuild:
|
||||
amd64 stable, bug #266986
|
||||
|
||||
12 May 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-dv-0.10.14.ebuild:
|
||||
stable x86, bug 266986
|
||||
|
||||
03 May 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-dv-0.10.14.ebuild:
|
||||
Stable on alpha, bug #266986
|
||||
|
||||
*gst-plugins-dv-0.10.14 (30 Mar 2009)
|
||||
|
||||
30 Mar 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-dv-0.10.14.ebuild:
|
||||
Version bump
|
||||
|
||||
*gst-plugins-dv-0.10.11 (05 Dec 2008)
|
||||
|
||||
05 Dec 2008; <ssuominen@gentoo.org> +gst-plugins-dv-0.10.11.ebuild:
|
||||
Version bump.
|
||||
|
||||
08 Aug 2008; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-dv-0.10.8.ebuild:
|
||||
x86 stable, bug #232054
|
||||
|
||||
07 Aug 2008; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-dv-0.10.8.ebuild:
|
||||
Stable on alpha, bug #232054
|
||||
|
||||
01 Aug 2008; Brent Baude <ranger@gentoo.org> gst-plugins-dv-0.10.8.ebuild:
|
||||
Marking gst-plugins-dv-0.10.8 ppc64 stable for bug 232054
|
||||
|
||||
30 Jul 2008; Brent Baude <ranger@gentoo.org> gst-plugins-dv-0.10.8.ebuild:
|
||||
Marking gst-plugins-dv-0.10.8 ppc stable for bug 232054
|
||||
|
||||
26 Jul 2008; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-dv-0.10.8.ebuild:
|
||||
Stable on amd64, bug #232054
|
||||
|
||||
*gst-plugins-dv-0.10.8 (29 Jun 2008)
|
||||
|
||||
29 Jun 2008; Samuli Suominen <drac@gentoo.org>
|
||||
-gst-plugins-dv-0.10.6.ebuild, -gst-plugins-dv-0.10.7.ebuild,
|
||||
+gst-plugins-dv-0.10.8.ebuild:
|
||||
Version bump.
|
||||
|
||||
*gst-plugins-dv-0.10.7 (21 Feb 2008)
|
||||
|
||||
21 Feb 2008; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-dv-0.10.7.ebuild:
|
||||
version bump
|
||||
|
||||
*gst-plugins-dv-0.10.6 (30 Aug 2007)
|
||||
|
||||
30 Aug 2007; Samuli Suominen <drac@gentoo.org>
|
||||
+gst-plugins-dv-0.10.6.ebuild:
|
||||
Version bump.
|
||||
|
||||
22 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog:
|
||||
Transition to Manifest2.
|
||||
|
||||
*gst-plugins-dv-0.10.5 (25 Jan 2007)
|
||||
|
||||
25 Jan 2007; Jim Ramsay <lack@gentoo.org> +gst-plugins-dv-0.10.5.ebuild:
|
||||
Version bump - gst-plugins-good-0.10.5 is released
|
||||
|
||||
10 Jan 2007; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-dv-0.8.10.ebuild, -gst-plugins-dv-0.10.0.ebuild,
|
||||
-gst-plugins-dv-0.10.1.ebuild, -gst-plugins-dv-0.10.2.ebuild:
|
||||
Prune old versions
|
||||
|
||||
*gst-plugins-dv-0.10.3 (05 May 2006)
|
||||
|
||||
05 May 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-dv-0.10.3.ebuild:
|
||||
version bump
|
||||
|
||||
08 Apr 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-dv-0.10.2.ebuild:
|
||||
Added to ~ppc
|
||||
|
||||
29 Mar 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-dv-0.10.2.ebuild:
|
||||
Added ~ppc64
|
||||
|
||||
*gst-plugins-dv-0.8.12 (23 Feb 2006)
|
||||
|
||||
23 Feb 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-dv-0.8.12.ebuild:
|
||||
version bump of 0.8 series
|
||||
|
||||
*gst-plugins-dv-0.10.2 (15 Feb 2006)
|
||||
|
||||
15 Feb 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
+gst-plugins-dv-0.10.2.ebuild:
|
||||
Version bump from upstream
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-dv-0.8.11.ebuild:
|
||||
Stable on ppc wrt bug #119634.
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-dv-0.8.11.ebuild:
|
||||
Stable on amd64 wrt bug #119634.
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-dv-0.8.11.ebuild:
|
||||
Stable on x86 wrt bug #119634.
|
||||
|
||||
20 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-dv-0.8.11.ebuild:
|
||||
Stable on sparc wrt #119634
|
||||
|
||||
*gst-plugins-dv-0.10.1 (14 Jan 2006)
|
||||
|
||||
14 Jan 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
+gst-plugins-dv-0.10.1.ebuild:
|
||||
Version bump from upstream
|
||||
|
||||
04 Dec 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
-gst-plugins-dv-0.8.8.ebuild, -gst-plugins-dv-0.8.9.ebuild:
|
||||
Remove unneeded versions
|
||||
|
||||
*gst-plugins-dv-0.9.7 (02 Dec 2005)
|
||||
|
||||
02 Dec 2005; <zaheer@gentoo.org> +gst-plugins-dv-0.9.7.ebuild:
|
||||
0.10 Prerelease
|
||||
|
||||
*gst-plugins-dv-0.8.11 (05 Sep 2005)
|
||||
|
||||
05 Sep 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-dv-0.8.11.ebuild:
|
||||
version bump
|
||||
|
||||
03 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
|
||||
gst-plugins-dv-0.8.10.ebuild:
|
||||
Stable on ppc.
|
||||
|
||||
31 Aug 2005; Herbie Hopkins <herbs@gentoo.org>
|
||||
gst-plugins-dv-0.8.10.ebuild:
|
||||
Stable on amd64.
|
||||
|
||||
30 Aug 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-dv-0.8.10.ebuild:
|
||||
stable on x86
|
||||
|
||||
26 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-dv-0.8.10.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
03 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-dv-0.8.8.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
05 Jul 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-dv-0.8.8.ebuild, gst-plugins-dv-0.8.9.ebuild,
|
||||
gst-plugins-dv-0.8.10.ebuild:
|
||||
Keyworded ~sparc
|
||||
|
||||
01 Jul 2005; Zaheer Abbas Merali <zaheerm@gentoo.org> :
|
||||
version bump
|
||||
|
||||
08 Jun 2005; Zaheer Abbas Merali <zaheerm@gentoo.org> :
|
||||
version bump
|
||||
|
||||
01 May 2005; Michael Hanselmann <hansmi@gentoo.org>
|
||||
gst-plugins-dv-0.8.8.ebuild:
|
||||
Stable on ppc.
|
||||
|
||||
27 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org>
|
||||
gst-plugins-dv-0.8.8.ebuild:
|
||||
stable on amd64
|
||||
|
||||
25 Apr 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
-gst-plugins-dv-0.6.4.ebuild:
|
||||
remove 0.6.x version!
|
||||
|
||||
25 Apr 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-dv-0.8.8.ebuild:
|
||||
stabilise on x86
|
||||
|
||||
*gst-plugins-dv-0.8.8 (17 Mar 2005)
|
||||
|
||||
17 Mar 2005; <zaheerm@gentoo.org> +gst-plugins-dv-0.8.8.ebuild:
|
||||
Version bump to 0.8.8 (#69322)
|
||||
|
||||
*gst-plugins-dv-0.6.4 (26 Oct 2003)
|
||||
|
||||
26 Oct 2003; foser <foser@gentoo.org> gst-plugins-dv-0.6.4.ebuild :
|
||||
Initial commit, requested in #31272
|
||||
Added to gnome herd
|
12
media-plugins/gst-plugins-dv/Manifest
Normal file
12
media-plugins/gst-plugins-dv/Manifest
Normal file
@ -0,0 +1,12 @@
|
||||
DIST gst-plugins-good-0.10.16.tar.bz2 2573811 RMD160 51f6dfc95932ae3a25d017257a3587e3081ad163 SHA1 655a22ea3f4f4dc0f9f200af7c85b4b725d960e7 SHA256 64bd5177913b8ccaa1502e88a255adb3e6024202ba8983e6a956061e57fe1640
|
||||
DIST gst-plugins-good-0.10.17.tar.bz2 2671700 RMD160 770a5a091751ea362600c2824cc860dc3f8830b3 SHA1 fb0b9054ee7d1674a7c2bcc2fccf5331d8e9b80c SHA256 4f41fbd325270416c9f55d900e470482a7d1e7efbdbb725ed03a085dec307ad6
|
||||
DIST gst-plugins-good-0.10.21.tar.bz2 2675836 RMD160 71cfebe965409ffc6d6d3a5b08e3923fc966fffa SHA1 ed619824f5ca4592bfe2b2f6df9d53f08bf5f360 SHA256 24445a1cf56302ab4ad5f56055d5c3d81c704b8f9f6875fe78a25d4f72716d22
|
||||
DIST gst-plugins-good-0.10.22.tar.bz2 2701164 RMD160 08784f5c5548af6328d0c898bd06b16c2f82457d SHA1 381f3603a1704aa36297937808220fb8c6c102f4 SHA256 89ba50e0e3b7355bd75c9b0a60866a67b9bd1de38458e540a57853998103d69f
|
||||
DIST gst-plugins-good-0.10.23.tar.bz2 2882183 RMD160 b19a61d796e0c384e074f61fc0515826fb6f6061 SHA1 d819a2690e5bfe83f1277c850b737a13f8f28c12 SHA256 2e7771a611cedb1e8208601cb26744fbf33109598e222afee1be8811ba4babcf
|
||||
EBUILD gst-plugins-dv-0.10.16.ebuild 540 RMD160 571d2de833239b6482d5928a6a87aa6ccead21df SHA1 9238bb496389eb665e3de3c22af3d57001a6dc42 SHA256 350fc15e6bce1c9fa5aa393ec708c48b7317d797c3692d5f260c1a6b8b00e47c
|
||||
EBUILD gst-plugins-dv-0.10.17.ebuild 522 RMD160 d8d7129096b9a8d6c22e6eb4e9d779c31e1c48bd SHA1 202bf0167acd47de1ba4696d91dc89ac6e0405b2 SHA256 ddfd9d1a7d3945e622718c9302d1e65f08e6d2ac8d17fede230322f309cc8929
|
||||
EBUILD gst-plugins-dv-0.10.21.ebuild 523 RMD160 8ebf4fd544051255096b69e340bcc2aad5215b58 SHA1 a185b6d9a1ed61f0dc7c779561cc0385c677f7e2 SHA256 77dfa5506678331c2c5c78acfa9ba495111d2fe92dfb2dd295c562a91fd605c4
|
||||
EBUILD gst-plugins-dv-0.10.22.ebuild 488 RMD160 f6f4c3cf7074294d94402b645c29df73606b9967 SHA1 de0c12e96d9d30127d01d888e08cee2176ab088d SHA256 26f1e07ed3bb4b3d3d36f0a00bdcc65d4b4dcab7f6b29444b8b3d5b709b85ff9
|
||||
EBUILD gst-plugins-dv-0.10.23.ebuild 491 RMD160 53c95767eba3a3ce76db72d84f936b0606fd21cf SHA1 723caf3dddd527fa25ced8234b4a7a1a2c9e2e89 SHA256 ac90dc5e7a536cece3b987c1e971dcf05436de520c6123e11784120cc0eef5e0
|
||||
MISC ChangeLog 9042 RMD160 bc3c99dec68462f53c299ae91af4682e40cf4d65 SHA1 ac003cd79224d3c2e05f435cbbf1be37bc2ef771 SHA256 781c59c06ab9430ce273fdb015e238d2e97bf1666cbb66f96a94e827efd318fe
|
||||
MISC metadata.xml 280 RMD160 538f182430884d50dd9b997c6eece3d02ba78bf0 SHA1 bb31523e2767490d0a595c29d3f44189659b6d40 SHA256 1c799bbcd7fd6f7cc96ab49f93a9e75748aacdc0afe02c4a045d6afc42eed67d
|
17
media-plugins/gst-plugins-dv/gst-plugins-dv-0.10.16.ebuild
Normal file
17
media-plugins/gst-plugins-dv/gst-plugins-dv-0.10.16.ebuild
Normal file
@ -0,0 +1,17 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-dv/gst-plugins-dv-0.10.16.ebuild,v 1.6 2010/01/05 18:16:00 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer plugin to demux and decode DV"
|
||||
KEYWORDS="alpha amd64 ppc ppc64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/libdv-0.100
|
||||
>=media-libs/gstreamer-0.10.24
|
||||
>=media-libs/gst-plugins-base-0.10.24"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/pkgconfig"
|
||||
|
||||
GST_PLUGINS_BUILD="libdv"
|
16
media-plugins/gst-plugins-dv/gst-plugins-dv-0.10.17.ebuild
Normal file
16
media-plugins/gst-plugins-dv/gst-plugins-dv-0.10.17.ebuild
Normal file
@ -0,0 +1,16 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-dv/gst-plugins-dv-0.10.17.ebuild,v 1.4 2010/04/18 15:44:25 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer plugin to demux and decode DV"
|
||||
KEYWORDS="~alpha amd64 ppc ~ppc64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/libdv-0.100
|
||||
>=media-libs/gstreamer-0.10.25
|
||||
>=media-libs/gst-plugins-base-0.10.25"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
GST_PLUGINS_BUILD="libdv"
|
16
media-plugins/gst-plugins-dv/gst-plugins-dv-0.10.21.ebuild
Normal file
16
media-plugins/gst-plugins-dv/gst-plugins-dv-0.10.21.ebuild
Normal file
@ -0,0 +1,16 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-dv/gst-plugins-dv-0.10.21.ebuild,v 1.5 2010/08/01 20:24:15 klausman Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer plugin to demux and decode DV"
|
||||
KEYWORDS="alpha amd64 ppc ~ppc64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/libdv-0.100
|
||||
>=media-libs/gstreamer-0.10.27
|
||||
>=media-libs/gst-plugins-base-0.10.27"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
GST_PLUGINS_BUILD="libdv"
|
15
media-plugins/gst-plugins-dv/gst-plugins-dv-0.10.22.ebuild
Normal file
15
media-plugins/gst-plugins-dv/gst-plugins-dv-0.10.22.ebuild
Normal file
@ -0,0 +1,15 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-dv/gst-plugins-dv-0.10.22.ebuild,v 1.6 2010/09/11 10:00:08 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer plugin to demux and decode DV"
|
||||
KEYWORDS="alpha amd64 ppc ppc64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/libdv-0.100
|
||||
>=media-libs/gst-plugins-base-0.10.29"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
GST_PLUGINS_BUILD="libdv"
|
15
media-plugins/gst-plugins-dv/gst-plugins-dv-0.10.23.ebuild
Normal file
15
media-plugins/gst-plugins-dv/gst-plugins-dv-0.10.23.ebuild
Normal file
@ -0,0 +1,15 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-dv/gst-plugins-dv-0.10.23.ebuild,v 1.1 2010/07/31 10:52:05 leio Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer plugin to demux and decode DV"
|
||||
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/libdv-0.100
|
||||
>=media-libs/gst-plugins-base-0.10.29"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
GST_PLUGINS_BUILD="libdv"
|
8
media-plugins/gst-plugins-dv/metadata.xml
Normal file
8
media-plugins/gst-plugins-dv/metadata.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gstreamer</herd>
|
||||
<longdescription lang="en">
|
||||
GStreamer DV demuxer and decoder plugin based on libdv (libdv.sf.net)
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
150
media-plugins/gst-plugins-dvb/ChangeLog
Normal file
150
media-plugins/gst-plugins-dvb/ChangeLog
Normal file
@ -0,0 +1,150 @@
|
||||
# ChangeLog for media-plugins/gst-plugins-dvb
|
||||
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-dvb/ChangeLog,v 1.32 2010/08/27 17:12:25 armin76 Exp $
|
||||
|
||||
27 Aug 2010; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-dvb-0.10.14.ebuild, gst-plugins-dvb-0.10.17.ebuild,
|
||||
gst-plugins-dvb-0.10.18.ebuild, gst-plugins-dvb-0.10.19.ebuild:
|
||||
Add ~arm
|
||||
|
||||
05 Aug 2010; Samuli Suominen <ssuominen@gentoo.org>
|
||||
gst-plugins-dvb-0.10.18.ebuild:
|
||||
ppc64 stable wrt #324691
|
||||
|
||||
*gst-plugins-dvb-0.10.19 (02 Aug 2010)
|
||||
|
||||
02 Aug 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-dvb-0.10.19.ebuild:
|
||||
Version bump. Uses more correct unsigned int for frequency and symbol-rate
|
||||
properties API
|
||||
|
||||
01 Aug 2010; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-dvb-0.10.18.ebuild:
|
||||
Stable on alpha, bug #324691
|
||||
|
||||
01 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-dvb-0.10.18.ebuild:
|
||||
x86 stable, bug 324691
|
||||
|
||||
27 Jun 2010; <nixnut@gentoo.org> gst-plugins-dvb-0.10.18.ebuild:
|
||||
ppc stable #324691
|
||||
|
||||
24 Jun 2010; Markos Chandras <hwoarang@gentoo.org>
|
||||
gst-plugins-dvb-0.10.18.ebuild:
|
||||
Stable on amd64 wrt bug #324691
|
||||
|
||||
18 Apr 2010; <nixnut@gentoo.org> gst-plugins-dvb-0.10.17.ebuild:
|
||||
ppc stable #308379
|
||||
|
||||
*gst-plugins-dvb-0.10.18 (05 Apr 2010)
|
||||
|
||||
05 Apr 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-dvb-0.10.18.ebuild:
|
||||
Version bump. Fixes dvbsrc element to shutdown on bad reception (instead
|
||||
of infinite looping)
|
||||
|
||||
24 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-dvb-0.10.17.ebuild:
|
||||
stable x86, bug 308379
|
||||
|
||||
19 Mar 2010; Pacho Ramos <pacho@gentoo.org>
|
||||
gst-plugins-dvb-0.10.17.ebuild:
|
||||
amd64 stable, bug 308379
|
||||
|
||||
04 Mar 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-dvb-0.10.11.ebuild:
|
||||
Remove old
|
||||
|
||||
*gst-plugins-dvb-0.10.17 (23 Jan 2010)
|
||||
|
||||
23 Jan 2010; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-dvb-0.10.17.ebuild:
|
||||
Version bump, bug #290084
|
||||
|
||||
05 Jan 2010; nixnut <nixnut@gentoo.org> gst-plugins-dvb-0.10.14.ebuild:
|
||||
ppc stable #290343
|
||||
|
||||
29 Nov 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-dvb-0.10.14.ebuild:
|
||||
Stable on alpha, bug #290343
|
||||
|
||||
18 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-dvb-0.10.14.ebuild:
|
||||
x86 stable, bug 290343
|
||||
|
||||
10 Nov 2009; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-dvb-0.10.14.ebuild:
|
||||
Stable on amd64, bug #290343
|
||||
|
||||
*gst-plugins-dvb-0.10.14 (07 Sep 2009)
|
||||
|
||||
07 Sep 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-dvb-0.10.14.ebuild:
|
||||
Version bump
|
||||
|
||||
05 Aug 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-dvb-0.10.7.ebuild, -gst-plugins-dvb-0.10.9.ebuild:
|
||||
Remove old
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-dvb-0.10.11.ebuild:
|
||||
Marking gst-plugins-dvb-0.10.11 ~ppc64 for bug 266986
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-dvb-0.10.11.ebuild:
|
||||
Marking gst-plugins-dvb-0.10.11 ppc stable for bug 266986
|
||||
|
||||
14 May 2009; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-dvb-0.10.11.ebuild:
|
||||
amd64 stable, bug #266986
|
||||
|
||||
12 May 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-dvb-0.10.11.ebuild:
|
||||
stable x86, bug 266986
|
||||
|
||||
03 May 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-dvb-0.10.11.ebuild:
|
||||
Stable on alpha, bug #266986
|
||||
|
||||
*gst-plugins-dvb-0.10.11 (30 Mar 2009)
|
||||
|
||||
30 Mar 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-dvb-0.10.11.ebuild:
|
||||
Version bump
|
||||
|
||||
27 Feb 2009; Joseph Jezak <josejx@gentoo.org>
|
||||
gst-plugins-dvb-0.10.9.ebuild:
|
||||
Marked ~ppc for bug #215972.
|
||||
|
||||
*gst-plugins-dvb-0.10.9 (05 Dec 2008)
|
||||
|
||||
05 Dec 2008; <ssuominen@gentoo.org> +gst-plugins-dvb-0.10.9.ebuild:
|
||||
Version bump.
|
||||
|
||||
08 Aug 2008; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-dvb-0.10.7.ebuild:
|
||||
x86 stable, bug #232054
|
||||
|
||||
07 Aug 2008; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-dvb-0.10.7.ebuild:
|
||||
Stable on alpha, bug #232054
|
||||
|
||||
07 Aug 2008; Tobias Klausmann <klausman@gentoo.org> ChangeLog:
|
||||
Stable on alpha, bug #232054
|
||||
|
||||
26 Jul 2008; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-dvb-0.10.7.ebuild:
|
||||
Stable on amd64, bug #232054
|
||||
|
||||
*gst-plugins-dvb-0.10.7 (29 Jun 2008)
|
||||
|
||||
29 Jun 2008; Samuli Suominen <drac@gentoo.org>
|
||||
-gst-plugins-dvb-0.10.6.ebuild, +gst-plugins-dvb-0.10.7.ebuild:
|
||||
Version bump.
|
||||
|
||||
*gst-plugins-dvb (21 Feb 2008)
|
||||
|
||||
21 Feb 2008; Zaheer Abbas Merali <zaheerm@gentoo.org> +metadata.xml,
|
||||
+gst-plugins-dvb-0.10.6.ebuild:
|
||||
initial commit
|
||||
|
11
media-plugins/gst-plugins-dvb/Manifest
Normal file
11
media-plugins/gst-plugins-dvb/Manifest
Normal file
@ -0,0 +1,11 @@
|
||||
DIST gst-plugins-bad-0.10.14-kate-configure-fix.patch.bz2 822 RMD160 e8460849426b27755259c738ba25975787a4378b SHA1 a2c25c283b6a0d71b3627403de119153ab1acee3 SHA256 ce7ace661bf5d5e38f1c63b6b376c8a0b384cd5e00d084f23aebbb099b0c5dc9
|
||||
DIST gst-plugins-bad-0.10.14.tar.bz2 2781487 RMD160 51c7804f3d913b00f3ab87d814ae1188e3915803 SHA1 a09af51b3c06d10d86b29de48fbe57768525f977 SHA256 cd6811522302d8e7549990ccc0edd371f6695daa566b65f338079f5fa5ce6bd9
|
||||
DIST gst-plugins-bad-0.10.17.tar.bz2 2946258 RMD160 bc04e0d33d0f552290690a91c942bd1126286cf7 SHA1 9715e927765fcb836600975b9ea93c095bbb787e SHA256 531559d331d6802545b759e50fe5de28da147d0dcd5b9e883d87a6821fbd064a
|
||||
DIST gst-plugins-bad-0.10.18.tar.bz2 3028412 RMD160 0a7bfd2b90dc863798f5a254248a1b087dcf8f5a SHA1 33853ed4f3be8d80c42a2a8dcce7052a08c1d64f SHA256 2f800127e00da0f157358f87b06563b3de23cbc630fbf6295b43405e52e02070
|
||||
DIST gst-plugins-bad-0.10.19.tar.bz2 3009513 RMD160 f28beddcfc33d02da590271403385f06eacfe1c4 SHA1 3d5ca09f99371fb569ed029dcaef8119f0841821 SHA256 7b6c49f22caad3b573aee481381355b38ac9f2077f291d9f33a9a808a2568888
|
||||
EBUILD gst-plugins-dvb-0.10.14.ebuild 482 RMD160 38828466fafe11fa876ad32cfd1895d5b1031d11 SHA1 97d42094f80e3f90c7b6192bcb2ed3853e8b48b5 SHA256 5a6acef95426c26652e83b69b2db7c5b257283b8933a4f00dd43d065d299f876
|
||||
EBUILD gst-plugins-dvb-0.10.17.ebuild 483 RMD160 0da859804b4ab40846e70dcdf6855791c45111e6 SHA1 93afa20d775bcab5dfe35ab0ef50fe3c5ae5873b SHA256 987d99c38edfdcc494a708da9e7833946d3f3a272abcd5adb1a861884dc6dde5
|
||||
EBUILD gst-plugins-dvb-0.10.18.ebuild 461 RMD160 c1dfeb845ced1ec632b449baf92ab4d334b83034 SHA1 3c9bb9174517b9890db40e080faab73157d1565a SHA256 dd54ade6e2e59bb758957fb11b2ac5c23056d01b2271b6e5a6cdae061e7da091
|
||||
EBUILD gst-plugins-dvb-0.10.19.ebuild 467 RMD160 62b8cbddc212ec7551f69ff4f5d443993a483398 SHA1 36ca87aa8b16c05fe8993acf61ca866d1521fa8c SHA256 268977456c385bcf08b049152d08db406d71c5981fe0371774d29a27eb5c0535
|
||||
MISC ChangeLog 4474 RMD160 8ccb30b4d30c29297ba3a31baef699e8803a0c8c SHA1 16dfc98ec22393b8ab58420fd33edede23d46fe2 SHA256 25ddd701ac7d4d35542ed884ba92741e718e00492f5ca39d382b94fb035c7979
|
||||
MISC metadata.xml 162 RMD160 c6078d82a9ff46dbb283bc14ade9d117144cca67 SHA1 f46f8ccd62374b17183b5aca523c4dcf60d718f9 SHA256 3ac891ee23de8c6e2bef32e0c7aa3e6607e808de76ed723fbe7a1fb92f6093f1
|
14
media-plugins/gst-plugins-dvb/gst-plugins-dvb-0.10.14.ebuild
Normal file
14
media-plugins/gst-plugins-dvb/gst-plugins-dvb-0.10.14.ebuild
Normal file
@ -0,0 +1,14 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-dvb/gst-plugins-dvb-0.10.14.ebuild,v 1.6 2010/08/27 17:12:25 armin76 Exp $
|
||||
|
||||
inherit gst-plugins-bad
|
||||
|
||||
DESCRIPION="plugin to allow capture from dvb devices"
|
||||
KEYWORDS="alpha amd64 arm ppc ~ppc64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/gst-plugins-base-0.10.24"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/os-headers
|
||||
dev-util/pkgconfig"
|
14
media-plugins/gst-plugins-dvb/gst-plugins-dvb-0.10.17.ebuild
Normal file
14
media-plugins/gst-plugins-dvb/gst-plugins-dvb-0.10.17.ebuild
Normal file
@ -0,0 +1,14 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-dvb/gst-plugins-dvb-0.10.17.ebuild,v 1.5 2010/08/27 17:12:24 armin76 Exp $
|
||||
|
||||
inherit gst-plugins-bad
|
||||
|
||||
DESCRIPION="plugin to allow capture from dvb devices"
|
||||
KEYWORDS="~alpha amd64 arm ppc ~ppc64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/gst-plugins-base-0.10.25"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/os-headers
|
||||
dev-util/pkgconfig"
|
13
media-plugins/gst-plugins-dvb/gst-plugins-dvb-0.10.18.ebuild
Normal file
13
media-plugins/gst-plugins-dvb/gst-plugins-dvb-0.10.18.ebuild
Normal file
@ -0,0 +1,13 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-dvb/gst-plugins-dvb-0.10.18.ebuild,v 1.7 2010/08/27 17:12:25 armin76 Exp $
|
||||
|
||||
inherit gst-plugins-bad
|
||||
|
||||
DESCRIPION="plugin to allow capture from dvb devices"
|
||||
KEYWORDS="alpha amd64 arm ppc ppc64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/gst-plugins-base-0.10.27"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/os-headers"
|
13
media-plugins/gst-plugins-dvb/gst-plugins-dvb-0.10.19.ebuild
Normal file
13
media-plugins/gst-plugins-dvb/gst-plugins-dvb-0.10.19.ebuild
Normal file
@ -0,0 +1,13 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-dvb/gst-plugins-dvb-0.10.19.ebuild,v 1.2 2010/08/27 17:12:25 armin76 Exp $
|
||||
|
||||
inherit gst-plugins-bad
|
||||
|
||||
DESCRIPION="plugin to allow capture from dvb devices"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/gst-plugins-base-0.10.29"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/os-headers"
|
5
media-plugins/gst-plugins-dvb/metadata.xml
Normal file
5
media-plugins/gst-plugins-dvb/metadata.xml
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gstreamer</herd>
|
||||
</pkgmetadata>
|
398
media-plugins/gst-plugins-dvdread/ChangeLog
Normal file
398
media-plugins/gst-plugins-dvdread/ChangeLog
Normal file
@ -0,0 +1,398 @@
|
||||
# ChangeLog for media-plugins/gst-plugins-dvdread
|
||||
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-dvdread/ChangeLog,v 1.93 2010/08/05 20:10:29 ssuominen Exp $
|
||||
|
||||
05 Aug 2010; Samuli Suominen <ssuominen@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.13.ebuild:
|
||||
ppc64 stable wrt #324691
|
||||
|
||||
24 Jun 2010; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.13.ebuild:
|
||||
Stable for HPPA (bug #308379).
|
||||
|
||||
18 Apr 2010; <nixnut@gentoo.org> gst-plugins-dvdread-0.10.13.ebuild:
|
||||
ppc stable #308379
|
||||
|
||||
05 Apr 2010; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.13.ebuild:
|
||||
alpha/arm/ia64/sh/sparc stable wrt #308379
|
||||
|
||||
24 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.13.ebuild:
|
||||
stable x86, bug 308379
|
||||
|
||||
19 Mar 2010; Pacho Ramos <pacho@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.13.ebuild:
|
||||
amd64 stable, bug 308379
|
||||
|
||||
15 Feb 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-dvdread-0.10.11.ebuild:
|
||||
Remove old
|
||||
|
||||
05 Jan 2010; nixnut <nixnut@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.12.ebuild:
|
||||
ppc stable #290343
|
||||
|
||||
29 Dec 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.12.ebuild:
|
||||
ia64/sh/sparc stable wrt #290343
|
||||
|
||||
29 Nov 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.12.ebuild:
|
||||
Stable on alpha, bug #290343
|
||||
|
||||
27 Nov 2009; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.12.ebuild:
|
||||
arm stable, bug #290343
|
||||
|
||||
18 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.12.ebuild:
|
||||
x86 stable, bug 290343
|
||||
|
||||
18 Nov 2009; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.12.ebuild:
|
||||
Stable for HPPA (bug #290343).
|
||||
|
||||
17 Nov 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.12.ebuild:
|
||||
Marking gst-plugins-dvdread-0.10.12 ppc64 stable for bug 290343
|
||||
|
||||
*gst-plugins-dvdread-0.10.13 (16 Nov 2009)
|
||||
|
||||
16 Nov 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-dvdread-0.10.13.ebuild:
|
||||
Version bump. Only change is that it points at gst-plugins-resindvd
|
||||
instead of now non-existing never packaged gst-plugins-dvdnav if dvdread
|
||||
can't handle things. You should also be using gst-plugins-resindvd instead
|
||||
of this package for most of your needs (this one can't deal with
|
||||
interactive DVD titles)
|
||||
|
||||
10 Nov 2009; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.12.ebuild:
|
||||
Stable on amd64, bug #290343
|
||||
|
||||
*gst-plugins-dvdread-0.10.12 (07 Sep 2009)
|
||||
|
||||
07 Sep 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-dvdread-0.10.12.ebuild:
|
||||
Version bump
|
||||
|
||||
06 Aug 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-dvdread-0.10.6.ebuild, -gst-plugins-dvdread-0.10.8.ebuild,
|
||||
-gst-plugins-dvdread-0.10.10.ebuild:
|
||||
Remove old
|
||||
|
||||
01 Jul 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.11.ebuild:
|
||||
arm/ia64/sh/sparc stable wrt #266986
|
||||
|
||||
23 May 2009; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.11.ebuild:
|
||||
Stable for HPPA (bug #266986).
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.11.ebuild:
|
||||
Marking gst-plugins-dvdread-0.10.11 ppc64 stable for bug 266986
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org> ChangeLog:
|
||||
Marking gst-plugins-dvdread-0.10.11 ppc stable for bug 266986
|
||||
|
||||
14 May 2009; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.11.ebuild:
|
||||
amd64 stable, bug #266986
|
||||
|
||||
12 May 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.11.ebuild:
|
||||
stable x86, bug 266986
|
||||
|
||||
03 May 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.11.ebuild:
|
||||
Stable on alpha, bug #266986
|
||||
|
||||
05 Apr 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.8.ebuild:
|
||||
arm/sh stable wrt #232054
|
||||
|
||||
*gst-plugins-dvdread-0.10.11 (30 Mar 2009)
|
||||
|
||||
30 Mar 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-dvdread-0.10.11.ebuild:
|
||||
Version bump
|
||||
|
||||
*gst-plugins-dvdread-0.10.10 (05 Dec 2008)
|
||||
|
||||
05 Dec 2008; <ssuominen@gentoo.org> +gst-plugins-dvdread-0.10.10.ebuild:
|
||||
Version bump.
|
||||
|
||||
23 Sep 2008; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.8.ebuild:
|
||||
Stable for HPPA (bug #232054).
|
||||
|
||||
08 Aug 2008; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.8.ebuild:
|
||||
x86 stable, bug #232054
|
||||
|
||||
07 Aug 2008; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.8.ebuild:
|
||||
Stable on alpha, bug #232054
|
||||
|
||||
31 Jul 2008; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.8.ebuild:
|
||||
ia64/sparc stable wrt #232054
|
||||
|
||||
01 Aug 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.8.ebuild:
|
||||
Marking gst-plugins-dvdread-0.10.8 ppc64 stable for bug 232054
|
||||
|
||||
30 Jul 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.8.ebuild:
|
||||
Marking gst-plugins-dvdread-0.10.8 ppc stable for bug 232054
|
||||
|
||||
26 Jul 2008; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.8.ebuild:
|
||||
Stable on amd64, bug #232054
|
||||
|
||||
*gst-plugins-dvdread-0.10.8 (29 Jun 2008)
|
||||
|
||||
29 Jun 2008; Samuli Suominen <drac@gentoo.org>
|
||||
-gst-plugins-dvdread-0.10.4.ebuild, -gst-plugins-dvdread-0.10.7.ebuild,
|
||||
+gst-plugins-dvdread-0.10.8.ebuild:
|
||||
Version bump.
|
||||
|
||||
*gst-plugins-dvdread-0.10.7 (21 Feb 2008)
|
||||
|
||||
21 Feb 2008; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-dvdread-0.10.7.ebuild:
|
||||
version bump
|
||||
|
||||
11 Oct 2007; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.6.ebuild:
|
||||
Stable on ppc64; bug #190900
|
||||
|
||||
26 Sep 2007; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.6.ebuild:
|
||||
alpha/ia64 stable wrt #190900
|
||||
|
||||
21 Sep 2007; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.6.ebuild:
|
||||
Stable on amd64 wrt bug #190900.
|
||||
|
||||
10 Sep 2007; nixnut <nixnut@gentoo.org> gst-plugins-dvdread-0.10.6.ebuild:
|
||||
Stable on ppc wrt bug 190900
|
||||
|
||||
09 Sep 2007; Christian Faulhammer <opfer@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.6.ebuild:
|
||||
x86 stable, bug 190900
|
||||
|
||||
03 Sep 2007; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.6.ebuild:
|
||||
Stable for HPPA (bug #190900).
|
||||
|
||||
26 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.6.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
*gst-plugins-dvdread-0.10.6 (20 Jun 2007)
|
||||
|
||||
20 Jun 2007; Hanno Boeck <hanno@gentoo.org>
|
||||
+gst-plugins-dvdread-0.10.6.ebuild:
|
||||
Version bump.
|
||||
|
||||
16 Feb 2007; Roy Marples <uberlord@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.4.ebuild:
|
||||
Added ~x86-fbsd keyword.
|
||||
|
||||
21 Jan 2007; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.4.ebuild:
|
||||
Stable on IA64, bug 156662.
|
||||
|
||||
19 Jan 2007; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.4.ebuild:
|
||||
Stable for HPPA (bug #147751).
|
||||
|
||||
14 Jan 2007; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.4.ebuild:
|
||||
Stable on Alpha.
|
||||
|
||||
11 Jan 2007; Michael Sterrett <mr_bones_@gentoo.org>
|
||||
-gst-plugins-dvdread-0.8.10.ebuild:
|
||||
clean out older ebuild with broken deps
|
||||
|
||||
17 Dec 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.4.ebuild:
|
||||
ppc stable, bug #157649
|
||||
|
||||
12 Dec 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.4.ebuild:
|
||||
Stable on amd64 wrt bug #157649.
|
||||
|
||||
11 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.4.ebuild:
|
||||
Stable on sparc wrt #157649
|
||||
|
||||
11 Dec 2006; Andrej Kacian <ticho@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.4.ebuild:
|
||||
Stable on x86, bug #157649.
|
||||
|
||||
10 Dec 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-dvdread-0.10.4.ebuild:
|
||||
Stable on ppc64; bug #157649
|
||||
|
||||
06 Oct 2006; Zaheer Abbas Merali <zaheerm@gentoo.org> ChangeLog:
|
||||
Version bump
|
||||
|
||||
*gst-plugins-dvdread-0.8.12 (27 Feb 2006)
|
||||
|
||||
27 Feb 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-dvdread-0.8.12.ebuild:
|
||||
version bump of 0.8 series
|
||||
|
||||
18 Feb 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.11.ebuild:
|
||||
Mark 0.8.11 stable on ia64
|
||||
|
||||
09 Feb 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.11.ebuild:
|
||||
Mark 0.8.11 stable on alpha
|
||||
|
||||
09 Feb 2006; Guy Martin <gmsoft@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.11.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.11.ebuild:
|
||||
Stable on ppc wrt bug #119634.
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.11.ebuild:
|
||||
Stable on amd64 wrt bug #119634.
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.11.ebuild:
|
||||
Stable on x86 wrt bug #119634.
|
||||
|
||||
22 Jan 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.11.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
20 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.11.ebuild:
|
||||
Stable on sparc wrt #119634
|
||||
|
||||
04 Dec 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
-gst-plugins-dvdread-0.8.8.ebuild, -gst-plugins-dvdread-0.8.9.ebuild:
|
||||
Remove unneeded versions
|
||||
|
||||
15 Sep 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.10.ebuild:
|
||||
Mark 0.8.10 stable on alpha
|
||||
|
||||
11 Sep 2005; Guy Martin <gmsoft@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.10.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
*gst-plugins-dvdread-0.8.11 (05 Sep 2005)
|
||||
|
||||
05 Sep 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-dvdread-0.8.11.ebuild:
|
||||
version bump
|
||||
|
||||
03 Sep 2005; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.10.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
02 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.10.ebuild:
|
||||
Stable on ppc.
|
||||
|
||||
31 Aug 2005; Herbie Hopkins <herbs@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.10.ebuild:
|
||||
Stable on amd64.
|
||||
|
||||
30 Aug 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.10.ebuild:
|
||||
stable on x86
|
||||
|
||||
26 Aug 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.10.ebuild:
|
||||
stable on ia64
|
||||
|
||||
26 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.10.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
02 Jul 2005; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.8.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
*gst-plugins-dvdread-0.8.10 (01 Jul 2005)
|
||||
|
||||
01 Jul 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-dvdread-0.8.10.ebuild:
|
||||
version bump
|
||||
|
||||
26 Jun 2005; Guy Martin <gmsoft@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.8.ebuild, gst-plugins-dvdread-0.8.9.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
13 Jun 2005; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.9.ebuild:
|
||||
Add ~alpha keyword.
|
||||
|
||||
09 Jun 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.8.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
09 Jun 2005; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.8.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
*gst-plugins-dvdread-0.8.9 (08 Jun 2005)
|
||||
|
||||
08 Jun 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-dvdread-0.8.9.ebuild:
|
||||
version bump
|
||||
|
||||
09 May 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.8.ebuild:
|
||||
stable on ia64
|
||||
|
||||
06 May 2005; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.8.ebuild:
|
||||
Added ~ppc64 to KEYWORDS
|
||||
|
||||
03 May 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.8.ebuild:
|
||||
add ~ia64
|
||||
|
||||
01 May 2005; Michael Hanselmann <hansmi@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.8.ebuild:
|
||||
Stable on ppc.
|
||||
|
||||
27 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.8.ebuild:
|
||||
stable on amd64
|
||||
|
||||
25 Apr 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.8.ebuild:
|
||||
stabilise on x86
|
||||
|
||||
31 Mar 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.8.ebuild:
|
||||
Keyworded ~sparc
|
||||
|
||||
19 Mar 2005; Mike Doty <kingtaco@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.8.ebuild:
|
||||
~amd64, bug 85028
|
||||
|
||||
12 Mar 2005; Mike Gardiner <obz@gentoo.org>
|
||||
gst-plugins-dvdread-0.8.8.ebuild:
|
||||
Keyworded ~ppc
|
||||
|
||||
*gst-plugins-dvdread-0.8.8 (08 Mar 2005)
|
||||
|
||||
*gst-plugins-dvdread-0.8.7 (06 Jan 2005)
|
||||
|
||||
06 Jan 2005; foser <foser@gentoo.org> gst-plugins-dvdread-0.8.7.ebuild :
|
||||
Initial commit, dvd read plugin for gstreamer
|
||||
Added to gstreamer herd
|
6
media-plugins/gst-plugins-dvdread/Manifest
Normal file
6
media-plugins/gst-plugins-dvdread/Manifest
Normal file
@ -0,0 +1,6 @@
|
||||
DIST gst-plugins-ugly-0.10.12.tar.bz2 1027462 RMD160 3b39c83f70b7e25dfe24237742968e033bcf1bc4 SHA1 2d09dc36a507c66c001f2ec1fa113df22a5b96dd SHA256 b3e785a0dd47aab880049535068556a5f61726da44bce452b41555e3f0481d2f
|
||||
DIST gst-plugins-ugly-0.10.13.tar.bz2 1016859 RMD160 1cf856fd273fff8b08b3bd987ec36b82c33c374a SHA1 20252cc743cbdcca62c702b5ab703c2be0f9d955 SHA256 39f07a60739f5dfa4f5574a02db15de69fd05b9ea63239488338ec3491bf69a8
|
||||
EBUILD gst-plugins-dvdread-0.10.12.ebuild 458 RMD160 12654aba0483ec0920312c94854f26ac90633044 SHA1 e98d102aabcc4d1925e9b5fd15956409a01d0dd9 SHA256 f89e8268a7d2a49918b6dbc7a8187539477849ec8a1a97d286e5278daff3269c
|
||||
EBUILD gst-plugins-dvdread-0.10.13.ebuild 482 RMD160 ad364e2b8a80757a2364cfeae4d3e251cc3ccc14 SHA1 c88067ba0fc1ca54801051740a45143ecf282b06 SHA256 b2b17f529af5df29688c14484151a1966bbbc45e254d212b5403f41bed804aee
|
||||
MISC ChangeLog 11915 RMD160 7a7ff3f2eea671143e817d57e6c3495ed0a34997 SHA1 ee2193a3a8e9ef4a4ef349d9cbd4ea526e5ac635 SHA256 3c44c746e26bb909a774c9e9666024ca0853b0621e104f5712098b986e9efac5
|
||||
MISC metadata.xml 162 RMD160 c6078d82a9ff46dbb283bc14ade9d117144cca67 SHA1 f46f8ccd62374b17183b5aca523c4dcf60d718f9 SHA256 3ac891ee23de8c6e2bef32e0c7aa3e6607e808de76ed723fbe7a1fb92f6093f1
|
@ -0,0 +1,12 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-dvdread/gst-plugins-dvdread-0.10.12.ebuild,v 1.9 2010/01/05 18:28:19 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-ugly
|
||||
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="media-libs/libdvdread
|
||||
>=media-libs/gstreamer-0.10.23
|
||||
>=media-libs/gst-plugins-base-0.10.23"
|
@ -0,0 +1,13 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-dvdread/gst-plugins-dvdread-0.10.13.ebuild,v 1.9 2010/08/05 20:10:29 ssuominen Exp $
|
||||
|
||||
inherit gst-plugins-ugly
|
||||
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="media-libs/libdvdread
|
||||
>=media-libs/gstreamer-0.10.25
|
||||
>=media-libs/gst-plugins-base-0.10.25"
|
||||
DEPEND="${RDEPEND}"
|
5
media-plugins/gst-plugins-dvdread/metadata.xml
Normal file
5
media-plugins/gst-plugins-dvdread/metadata.xml
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gstreamer</herd>
|
||||
</pkgmetadata>
|
655
media-plugins/gst-plugins-esd/ChangeLog
Normal file
655
media-plugins/gst-plugins-esd/ChangeLog
Normal file
@ -0,0 +1,655 @@
|
||||
# ChangeLog for media-plugins/gst-plugins-esd
|
||||
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-esd/ChangeLog,v 1.159 2010/09/11 10:00:47 nixnut Exp $
|
||||
|
||||
11 Sep 2010; <nixnut@gentoo.org> gst-plugins-esd-0.10.22.ebuild:
|
||||
ppc stable #329703
|
||||
|
||||
05 Sep 2010; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-esd-0.10.22.ebuild:
|
||||
Stable on alpha, bug #329703
|
||||
|
||||
05 Sep 2010; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-esd-0.10.22.ebuild:
|
||||
ia64/sh/sparc stable wrt #329703
|
||||
|
||||
04 Sep 2010; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-esd-0.10.21.ebuild:
|
||||
alpha/ia64/sh/sparc stable wrt #324691
|
||||
|
||||
10 Aug 2010; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-esd-0.10.22.ebuild:
|
||||
Stable for HPPA (bug #329703).
|
||||
|
||||
05 Aug 2010; Samuli Suominen <ssuominen@gentoo.org>
|
||||
gst-plugins-esd-0.10.22.ebuild:
|
||||
ppc64 stable wrt #324691
|
||||
|
||||
03 Aug 2010; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-esd-0.10.22.ebuild:
|
||||
arm stable, bug #329703
|
||||
|
||||
01 Aug 2010; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-esd-0.10.21.ebuild:
|
||||
Stable on alpha, bug #324691
|
||||
|
||||
*gst-plugins-esd-0.10.23 (31 Jul 2010)
|
||||
|
||||
31 Jul 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-esd-0.10.23.ebuild:
|
||||
Version bump to be in sync with the rest; no code changes
|
||||
|
||||
27 Jul 2010; Pacho Ramos <pacho@gentoo.org>
|
||||
gst-plugins-esd-0.10.22.ebuild:
|
||||
amd64 stable, bug 329703
|
||||
|
||||
27 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-esd-0.10.22.ebuild:
|
||||
x86 stable, bug 329703
|
||||
|
||||
24 Jul 2010; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-esd-0.10.21.ebuild:
|
||||
arm stable, bug #324691
|
||||
|
||||
12 Jul 2010; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-esd-0.10.21.ebuild:
|
||||
Stable for HPPA (bug #324691).
|
||||
|
||||
*gst-plugins-esd-0.10.22 (03 Jul 2010)
|
||||
|
||||
03 Jul 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-esd-0.10.22.ebuild:
|
||||
Version bump. No noteworthy changes.
|
||||
|
||||
01 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-esd-0.10.21.ebuild:
|
||||
x86 stable, bug 324691
|
||||
|
||||
27 Jun 2010; <nixnut@gentoo.org> gst-plugins-esd-0.10.21.ebuild:
|
||||
ppc stable #324691
|
||||
|
||||
24 Jun 2010; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-esd-0.10.17.ebuild:
|
||||
Stable for HPPA (bug #308379).
|
||||
|
||||
24 Jun 2010; Markos Chandras <hwoarang@gentoo.org>
|
||||
gst-plugins-esd-0.10.21.ebuild:
|
||||
Stable on amd64 wrt bug #324691
|
||||
|
||||
18 Apr 2010; <nixnut@gentoo.org> gst-plugins-esd-0.10.17.ebuild:
|
||||
ppc stable #308379
|
||||
|
||||
05 Apr 2010; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-esd-0.10.17.ebuild:
|
||||
alpha/arm/ia64/sh/sparc stable wrt #308379
|
||||
|
||||
*gst-plugins-esd-0.10.21 (05 Apr 2010)
|
||||
|
||||
05 Apr 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-esd-0.10.14.ebuild, +gst-plugins-esd-0.10.21.ebuild:
|
||||
Version bump to be in sync with the rest; no code changes
|
||||
|
||||
24 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-esd-0.10.17.ebuild:
|
||||
stable x86, bug 308379
|
||||
|
||||
19 Mar 2010; Pacho Ramos <pacho@gentoo.org>
|
||||
gst-plugins-esd-0.10.17.ebuild:
|
||||
amd64 stable, bug 308379
|
||||
|
||||
10 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-esd-0.10.17.ebuild:
|
||||
Transfer Prefix keywords
|
||||
|
||||
05 Jan 2010; nixnut <nixnut@gentoo.org> gst-plugins-esd-0.10.16.ebuild:
|
||||
ppc stable #290343
|
||||
|
||||
29 Dec 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-esd-0.10.16.ebuild:
|
||||
ia64/sh/sparc stable wrt #290343
|
||||
|
||||
29 Nov 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-esd-0.10.16.ebuild:
|
||||
Stable on alpha, bug #290343
|
||||
|
||||
27 Nov 2009; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-esd-0.10.16.ebuild:
|
||||
arm stable, bug #290343
|
||||
|
||||
18 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-esd-0.10.16.ebuild:
|
||||
x86 stable, bug 290343
|
||||
|
||||
18 Nov 2009; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-esd-0.10.16.ebuild:
|
||||
Stable for HPPA (bug #290343).
|
||||
|
||||
17 Nov 2009; Brent Baude <ranger@gentoo.org> ChangeLog:
|
||||
Marking gst-plugins-esd-0.10.16 ppc64 stable for bug 290343
|
||||
|
||||
*gst-plugins-esd-0.10.17 (17 Nov 2009)
|
||||
|
||||
17 Nov 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-esd-0.10.15.ebuild, +gst-plugins-esd-0.10.17.ebuild:
|
||||
Version bump to be in sync with the rest; no code changes
|
||||
|
||||
10 Nov 2009; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-esd-0.10.16.ebuild:
|
||||
Stable on amd64, bug #290343
|
||||
|
||||
*gst-plugins-esd-0.10.16 (07 Sep 2009)
|
||||
|
||||
07 Sep 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-esd-0.10.16.ebuild:
|
||||
Version bump
|
||||
|
||||
*gst-plugins-esd-0.10.15 (21 Aug 2009)
|
||||
|
||||
21 Aug 2009; Mart Raudsepp <leio@gentoo.org> metadata.xml,
|
||||
gst-plugins-esd-0.10.14.ebuild, +gst-plugins-esd-0.10.15.ebuild:
|
||||
Version bump - has no functional changes. Add short/long description for
|
||||
the package.
|
||||
|
||||
05 Aug 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-esd-0.10.6.ebuild, -gst-plugins-esd-0.10.8.ebuild,
|
||||
-gst-plugins-esd-0.10.11.ebuild:
|
||||
Remove old
|
||||
|
||||
01 Jul 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-esd-0.10.14.ebuild:
|
||||
arm/ia64/sh/sparc stable wrt #266986
|
||||
|
||||
23 May 2009; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-esd-0.10.14.ebuild:
|
||||
Stable for HPPA (bug #266986).
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org> ChangeLog:
|
||||
Marking gst-plugins-esd-0.10.14 ppc64 stable for bug 266986
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org> ChangeLog:
|
||||
Marking gst-plugins-esd-0.10.14 ppc stable for bug 266986
|
||||
|
||||
14 May 2009; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-esd-0.10.14.ebuild:
|
||||
amd64 stable, bug #266986
|
||||
|
||||
12 May 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-esd-0.10.14.ebuild:
|
||||
stable x86, bug 266986
|
||||
|
||||
03 May 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-esd-0.10.14.ebuild:
|
||||
Stable on alpha, bug #266986
|
||||
|
||||
05 Apr 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-esd-0.10.8.ebuild:
|
||||
arm/sh stable wrt #232054
|
||||
|
||||
*gst-plugins-esd-0.10.14 (30 Mar 2009)
|
||||
|
||||
30 Mar 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-esd-0.10.14.ebuild:
|
||||
Version bump
|
||||
|
||||
*gst-plugins-esd-0.10.11 (05 Dec 2008)
|
||||
|
||||
05 Dec 2008; <ssuominen@gentoo.org> +gst-plugins-esd-0.10.11.ebuild:
|
||||
Version bump.
|
||||
|
||||
23 Sep 2008; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-esd-0.10.8.ebuild:
|
||||
Stable for HPPA (bug #232054).
|
||||
|
||||
08 Aug 2008; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-esd-0.10.8.ebuild:
|
||||
x86 stable, bug #232054
|
||||
|
||||
07 Aug 2008; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-esd-0.10.8.ebuild:
|
||||
Stable on alpha, bug #232054
|
||||
|
||||
31 Jul 2008; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-esd-0.10.8.ebuild:
|
||||
ia64/sparc stable wrt #232054
|
||||
|
||||
01 Aug 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-esd-0.10.8.ebuild:
|
||||
Marking gst-plugins-esd-0.10.8 ppc64 stable for bug 232054
|
||||
|
||||
30 Jul 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-esd-0.10.8.ebuild:
|
||||
Marking gst-plugins-esd-0.10.8 ppc stable for bug 232054
|
||||
|
||||
26 Jul 2008; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-esd-0.10.8.ebuild:
|
||||
Stable on amd64, bug #232054
|
||||
|
||||
*gst-plugins-esd-0.10.8 (29 Jun 2008)
|
||||
|
||||
29 Jun 2008; Samuli Suominen <drac@gentoo.org>
|
||||
-gst-plugins-esd-0.10.3.ebuild, -gst-plugins-esd-0.10.5.ebuild,
|
||||
-gst-plugins-esd-0.10.7.ebuild, +gst-plugins-esd-0.10.8.ebuild:
|
||||
Version bump.
|
||||
|
||||
*gst-plugins-esd-0.10.7 (21 Feb 2008)
|
||||
|
||||
21 Feb 2008; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-esd-0.10.7.ebuild:
|
||||
version bump
|
||||
|
||||
01 Nov 2007; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-esd-0.10.6.ebuild:
|
||||
sparc stable wrt #190900, thanks to Alex Maclean for testing
|
||||
|
||||
11 Oct 2007; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-esd-0.10.6.ebuild:
|
||||
Stable on ppc64; bug #190900
|
||||
|
||||
26 Sep 2007; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-esd-0.10.6.ebuild:
|
||||
alpha/ia64 stable wrt #190900
|
||||
|
||||
21 Sep 2007; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-esd-0.10.6.ebuild:
|
||||
Stable on amd64 wrt bug #190900.
|
||||
|
||||
10 Sep 2007; nixnut <nixnut@gentoo.org> gst-plugins-esd-0.10.6.ebuild:
|
||||
Stable on ppc wrt bug 190900
|
||||
|
||||
09 Sep 2007; Christian Faulhammer <opfer@gentoo.org>
|
||||
gst-plugins-esd-0.10.6.ebuild:
|
||||
x86 stable, bug 190900
|
||||
|
||||
03 Sep 2007; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-esd-0.10.6.ebuild:
|
||||
Stable for HPPA (bug #190900).
|
||||
|
||||
*gst-plugins-esd-0.10.6 (30 Aug 2007)
|
||||
|
||||
30 Aug 2007; Samuli Suominen <drac@gentoo.org>
|
||||
+gst-plugins-esd-0.10.6.ebuild:
|
||||
Version bump.
|
||||
|
||||
26 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-esd-0.10.5.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
28 Jun 2007; Joseph Jezak <josejx@gentoo.org>
|
||||
gst-plugins-esd-0.10.3.ebuild:
|
||||
Marked ppc stable for bug #163541.
|
||||
|
||||
16 Feb 2007; Roy Marples <uberlord@gentoo.org>
|
||||
gst-plugins-esd-0.10.5.ebuild:
|
||||
Added ~x86-fbsd keyword.
|
||||
|
||||
12 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
|
||||
gst-plugins-esd-0.10.3.ebuild:
|
||||
stable x86; bug 163541
|
||||
|
||||
31 Jan 2007; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-esd-0.10.3.ebuild:
|
||||
Stable on ppc64; bug #163541
|
||||
|
||||
30 Jan 2007; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-esd-0.10.3.ebuild:
|
||||
Stable for HPPA (bug #163541).
|
||||
|
||||
27 Jan 2007; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-esd-0.10.3.ebuild:
|
||||
Stable on amd64 for bug #163541
|
||||
|
||||
*gst-plugins-esd-0.10.5 (25 Jan 2007)
|
||||
|
||||
25 Jan 2007; Jim Ramsay <lack@gentoo.org> +gst-plugins-esd-0.10.5.ebuild:
|
||||
Version bump - gst-plugins-good-0.10.5 is released
|
||||
|
||||
23 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-esd-0.10.3.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
10 Jan 2007; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-esd-0.8.10.ebuild, -gst-plugins-esd-0.10.0.ebuild,
|
||||
-gst-plugins-esd-0.10.1.ebuild:
|
||||
Prune old versions
|
||||
|
||||
13 Sep 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-esd-0.10.2.ebuild:
|
||||
Mark 0.10.2 stable on ia64
|
||||
|
||||
03 Aug 2006; Joshua Kinard <kumba@gentoo.org>
|
||||
gst-plugins-esd-0.8.10.ebuild, gst-plugins-esd-0.8.11.ebuild,
|
||||
gst-plugins-esd-0.8.12.ebuild, gst-plugins-esd-0.10.0.ebuild,
|
||||
gst-plugins-esd-0.10.1.ebuild:
|
||||
Removing mips keywords as gst-plugins no longer functions too well on mips.
|
||||
|
||||
29 May 2006; Guy Martin <gmsoft@gentoo.org> gst-plugins-esd-0.10.2.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
21 May 2006; Thomas Cort <tcort@gentoo.org> gst-plugins-esd-0.10.2.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
14 May 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-esd-0.10.3.ebuild:
|
||||
Added ~hppa
|
||||
|
||||
05 May 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-esd-0.10.2.ebuild:
|
||||
ppc stable, bug #128737
|
||||
|
||||
*gst-plugins-esd-0.10.3 (05 May 2006)
|
||||
|
||||
05 May 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-esd-0.10.3.ebuild:
|
||||
version bump
|
||||
|
||||
03 May 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-esd-0.10.2.ebuild:
|
||||
Stable on sparc wrt #128737
|
||||
|
||||
23 Apr 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
gst-plugins-esd-0.10.2.ebuild:
|
||||
stable on x86 (bug #128737)
|
||||
|
||||
17 Apr 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-esd-0.10.2.ebuild:
|
||||
Stable on ppc64; bug #128737
|
||||
|
||||
13 Apr 2006; Thomas Cort <tcort@gentoo.org> gst-plugins-esd-0.10.2.ebuild:
|
||||
Added ~alpha keyword.
|
||||
|
||||
08 Apr 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-esd-0.10.2.ebuild:
|
||||
Added to ~ppc
|
||||
|
||||
05 Apr 2006; Patrick McLean <chutzpah@gentoo.org>
|
||||
gst-plugins-esd-0.10.2.ebuild:
|
||||
Stable on amd64 (bug #128737).
|
||||
|
||||
25 Mar 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-esd-0.10.2.ebuild:
|
||||
Mark 0.10.2 ~ia64
|
||||
|
||||
23 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-esd-0.10.2.ebuild:
|
||||
Keyworded ~sparc wrt #125232
|
||||
|
||||
16 Mar 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-esd-0.10.2.ebuild:
|
||||
Added ~ppc64
|
||||
|
||||
*gst-plugins-esd-0.8.12 (23 Feb 2006)
|
||||
|
||||
23 Feb 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-esd-0.8.12.ebuild:
|
||||
version bump of 0.8 series
|
||||
|
||||
18 Feb 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-esd-0.8.11.ebuild:
|
||||
Mark 0.8.11 stable on ia64
|
||||
|
||||
*gst-plugins-esd-0.10.2 (15 Feb 2006)
|
||||
|
||||
15 Feb 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
+gst-plugins-esd-0.10.2.ebuild:
|
||||
Version bump from upstream
|
||||
|
||||
08 Feb 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-esd-0.8.11.ebuild:
|
||||
Mark 0.8.11 stable on alpha
|
||||
|
||||
04 Feb 2006; Guy Martin <gmsoft@gentoo.org> gst-plugins-esd-0.8.11.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
22 Jan 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-esd-0.8.11.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
22 Jan 2006; <dang@gentoo.org> gst-plugins-esd-0.8.11.ebuild:
|
||||
Marked stable on amd64 per bug #119634
|
||||
|
||||
22 Jan 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-esd-0.8.11.ebuild:
|
||||
Marked ppc stable for bug #119634; Stabilize Gnome-2.12.2
|
||||
|
||||
22 Jan 2006; Joshua Jackson <tsunam@gentoo.org>
|
||||
gst-plugins-esd-0.8.11.ebuild:
|
||||
Stable on x86 for bug #119634
|
||||
|
||||
20 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-esd-0.8.11.ebuild:
|
||||
Stable on sparc wrt #119634 #119512
|
||||
|
||||
*gst-plugins-esd-0.10.1 (14 Jan 2006)
|
||||
|
||||
14 Jan 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
+gst-plugins-esd-0.10.1.ebuild:
|
||||
Version bump from upstream
|
||||
|
||||
*gst-plugins-esd-0.10.0 (05 Dec 2005)
|
||||
|
||||
05 Dec 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
-gst-plugins-esd-0.9.7.ebuild, +gst-plugins-esd-0.10.0.ebuild:
|
||||
0.10.0 Release
|
||||
|
||||
04 Dec 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
-gst-plugins-esd-0.8.8.ebuild, -gst-plugins-esd-0.8.9.ebuild:
|
||||
Remove unneeded versions
|
||||
|
||||
*gst-plugins-esd-0.9.7 (02 Dec 2005)
|
||||
|
||||
02 Dec 2005; <zaheer@gentoo.org> +gst-plugins-esd-0.9.7.ebuild:
|
||||
0.10 Prerelease
|
||||
|
||||
02 Oct 2005; Hardave Riar <hardave@gentoo.org>
|
||||
gst-plugins-esd-0.8.10.ebuild:
|
||||
Stable on mips.
|
||||
|
||||
15 Sep 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-esd-0.8.10.ebuild:
|
||||
Mark 0.8.10 stable on alpha
|
||||
|
||||
15 Sep 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-esd-0.8.10.ebuild:
|
||||
Mark 0.8.10 stable on alpha
|
||||
|
||||
*gst-plugins-esd-0.8.11 (05 Sep 2005)
|
||||
|
||||
05 Sep 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-esd-0.8.11.ebuild:
|
||||
version bump
|
||||
|
||||
03 Sep 2005; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-esd-0.8.10.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
02 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
|
||||
gst-plugins-esd-0.8.10.ebuild:
|
||||
Stable on ppc.
|
||||
|
||||
31 Aug 2005; Herbie Hopkins <herbs@gentoo.org>
|
||||
gst-plugins-esd-0.8.10.ebuild:
|
||||
Stable on amd64.
|
||||
|
||||
29 Aug 2005; Guy Martin <gmsoft@gentoo.org> gst-plugins-esd-0.8.10.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
26 Aug 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-esd-0.8.10.ebuild:
|
||||
stable on ia64
|
||||
|
||||
26 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-esd-0.8.10.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
25 Aug 2005; Leonardo Boshell <leonardop@gentoo.org>
|
||||
gst-plugins-esd-0.8.10.ebuild:
|
||||
Stable on x86.
|
||||
|
||||
11 Jul 2005; Stephen P. Becker <geoman@gentoo.org>
|
||||
gst-plugins-esd-0.8.8.ebuild:
|
||||
stable on mips
|
||||
|
||||
*gst-plugins-esd-0.8.10 (01 Jul 2005)
|
||||
|
||||
01 Jul 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-esd-0.8.10.ebuild:
|
||||
version bump
|
||||
|
||||
22 May 2005; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-esd-0.8.8.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
30 Apr 2005; Michael Hanselmann <hansmi@gentoo.org>
|
||||
gst-plugins-esd-0.8.8.ebuild:
|
||||
Stable on ppc.
|
||||
|
||||
29 Apr 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-esd-0.8.8.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
27 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org>
|
||||
gst-plugins-esd-0.8.8.ebuild:
|
||||
stable on amd64
|
||||
|
||||
25 Apr 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-esd-0.8.8.ebuild:
|
||||
stabilise on x86
|
||||
|
||||
08 Apr 2005; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-esd-0.8.8.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
02 Apr 2005; <zaheerm@gentoo.org> -gst-plugins-esd-0.6.4.ebuild:
|
||||
removing gstreamer 0.6.x
|
||||
|
||||
02 Apr 2005; Stephen P. Becker <geoman@gentoo.org>
|
||||
gst-plugins-esd-0.8.7.ebuild:
|
||||
stable on mips
|
||||
|
||||
20 Mar 2005; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-esd-0.8.7.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
11 Mar 2005; Heinrich Wendel <lanius@gentoo.org>
|
||||
gst-plugins-esd-0.8.7.ebuild:
|
||||
stable on amd64
|
||||
|
||||
09 Mar 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-esd-0.8.7.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
09 Mar 2005; Mike Gardiner <obz@gentoo.org> gst-plugins-esd-0.8.7.ebuild:
|
||||
Keyworded ppc
|
||||
|
||||
*gst-plugins-esd-0.8.8 (08 Mar 2005)
|
||||
|
||||
25 Jan 2005; Markus Rothe <corsair@gentoo.org> gst-plugins-esd-0.8.5.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
*gst-plugins-esd-0.8.7 (05 Jan 2005)
|
||||
|
||||
29 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
|
||||
Change encoding to UTF-8 for GLEP 31 compliance
|
||||
|
||||
23 Dec 2004; Guy Martin <gmsoft@gentoo.org> gst-plugins-esd-0.8.5.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
16 Dec 2004; Dylan Carlson <absinthe@gentoo.org>
|
||||
gst-plugins-esd-0.8.5.ebuild:
|
||||
Stable on amd64.
|
||||
|
||||
15 Nov 2004; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-esd-0.8.5.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
12 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-esd-0.8.5.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
11 Nov 2004; Mike Gardiner <obz@gentoo.org> gst-plugins-esd-0.8.5.ebuild:
|
||||
Keyworded ppc for GNOME 2.8
|
||||
|
||||
*gst-plugins-esd-0.8.5 (22 Oct 2004)
|
||||
|
||||
01 Oct 2004; Stephen P. Becker <geoman@gentoo.org>
|
||||
gst-plugins-esd-0.8.2.ebuild:
|
||||
stable on mips
|
||||
|
||||
27 Aug 2004; Tom Gall <tgall@gentoo.org> gst-plugins-esd-0.8.2.ebuild:
|
||||
stable on ppc64, bug #59368
|
||||
|
||||
22 Aug 2004; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-esd-0.8.2.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
*gst-plugins-esd-0.8.3 (18 Aug 2004)
|
||||
|
||||
18 Aug 2004; foser <foser@gentoo.org> gst-plugins-esd-0.8.3.ebuild :
|
||||
New release
|
||||
|
||||
05 Aug 2004; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-esd-0.8.2.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
05 Aug 2004; Guy Martin <gmsoft@gentoo.org> gst-plugins-esd-0.8.2.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
*gst-plugins-esd-0.8.2 (31 Jul 2004)
|
||||
|
||||
31 Jul 2004; <spider@gentoo.org> gst-plugins-esd-0.8.2.ebuild:
|
||||
stable on x86 for gnome 2.6.2
|
||||
|
||||
04 Jul 2004; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-esd-0.8.1.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
03 Jun 2004; Stephen P. Becker <geoman@gentoo.org>
|
||||
gst-plugins-esd-0.8.1.ebuild:
|
||||
Stable on mips.
|
||||
|
||||
26 May 2004; Guy Martin <gmsoft@gentoo.org> gst-plugins-esd-0.8.1.ebuild:
|
||||
Marked stable on hppa.
|
||||
|
||||
03 May 2004; Stephen P. Becker <geoman@gentoo.org>
|
||||
gst-plugins-esd-0.8.1.ebuild:
|
||||
Added ~mips keyword.
|
||||
|
||||
02 May 2004; Stephen P. Becker <geoman@gentoo.org>
|
||||
gst-plugins-esd-0.8.0.ebuild:
|
||||
Added ~mips keyword.
|
||||
|
||||
*gst-plugins-esd-0.8.1 (23 Apr 2004)
|
||||
|
||||
23 Apr 2004; foser <foser@gentoo.org> gst-plugins-esd-0.8.1.ebuild :
|
||||
New release
|
||||
|
||||
06 Apr 2004; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-esd-0.8.0.ebuild:
|
||||
Add ~alpha and ~ia64
|
||||
|
||||
05 Apr 2004; Chris Aniszczyk <zx@gentoo.org> gst-plugins-esd-0.8.0.ebuild:
|
||||
Marking ~hppa
|
||||
|
||||
04 Apr 2004; Travis Tilley <lv@gentoo.org> gst-plugins-esd-0.8.0.ebuild:
|
||||
added ~amd64 keyword
|
||||
|
||||
*gst-plugins-esd-0.8.0 (03 Apr 2004)
|
||||
|
||||
03 Apr 2004; foser <foser@gentoo.org> gst-plugins-esd-0.8.0.ebuild :
|
||||
Update for gst 0.8
|
||||
|
||||
10 Feb 2004; Bartosch Pixa <darkspecter@gentoo.org>
|
||||
gst-plugins-esd-0.6.4.ebuild:
|
||||
set ppc in keywords
|
||||
|
||||
18 Jan 2004; <gustavoz@gentoo.org> gst-plugins-esd-0.6.4.ebuild:
|
||||
stable on sparc
|
||||
|
||||
14 Jan 2004; <gustavoz@gentoo.org> gst-plugins-esd-0.6.4.ebuild:
|
||||
added ~sparc
|
||||
|
||||
*gst-plugins-esd-0.6.4 (24 Oct 2003)
|
||||
|
||||
24 Oct 2003; foser <foser@gentoo.org> gst-plugins-esd-0.6.4.ebuild :
|
||||
Initial commit, should be decently working now
|
||||
Added to gnome herd
|
12
media-plugins/gst-plugins-esd/Manifest
Normal file
12
media-plugins/gst-plugins-esd/Manifest
Normal file
@ -0,0 +1,12 @@
|
||||
DIST gst-plugins-good-0.10.16.tar.bz2 2573811 RMD160 51f6dfc95932ae3a25d017257a3587e3081ad163 SHA1 655a22ea3f4f4dc0f9f200af7c85b4b725d960e7 SHA256 64bd5177913b8ccaa1502e88a255adb3e6024202ba8983e6a956061e57fe1640
|
||||
DIST gst-plugins-good-0.10.17.tar.bz2 2671700 RMD160 770a5a091751ea362600c2824cc860dc3f8830b3 SHA1 fb0b9054ee7d1674a7c2bcc2fccf5331d8e9b80c SHA256 4f41fbd325270416c9f55d900e470482a7d1e7efbdbb725ed03a085dec307ad6
|
||||
DIST gst-plugins-good-0.10.21.tar.bz2 2675836 RMD160 71cfebe965409ffc6d6d3a5b08e3923fc966fffa SHA1 ed619824f5ca4592bfe2b2f6df9d53f08bf5f360 SHA256 24445a1cf56302ab4ad5f56055d5c3d81c704b8f9f6875fe78a25d4f72716d22
|
||||
DIST gst-plugins-good-0.10.22.tar.bz2 2701164 RMD160 08784f5c5548af6328d0c898bd06b16c2f82457d SHA1 381f3603a1704aa36297937808220fb8c6c102f4 SHA256 89ba50e0e3b7355bd75c9b0a60866a67b9bd1de38458e540a57853998103d69f
|
||||
DIST gst-plugins-good-0.10.23.tar.bz2 2882183 RMD160 b19a61d796e0c384e074f61fc0515826fb6f6061 SHA1 d819a2690e5bfe83f1277c850b737a13f8f28c12 SHA256 2e7771a611cedb1e8208601cb26744fbf33109598e222afee1be8811ba4babcf
|
||||
EBUILD gst-plugins-esd-0.10.16.ebuild 513 RMD160 ab8f66711c0f5c2a5d08456ca5b20dbbe4b3145f SHA1 dd6e3d243decd745cd89f9ede7243c4ea858a7dc SHA256 3f329f10d36580cb17f995cc7b4d1fe11a6ef63bb55c390a38158e96f658da00
|
||||
EBUILD gst-plugins-esd-0.10.17.ebuild 574 RMD160 d3eb51fee10276310e86bf54c950dbf2ff1746ba SHA1 c0beea150e72315a3ab83c41fb850811efc8367e SHA256 6970f4a5b2ec3fc62b006cede92f68a43a6e9a9e7764d945028db21dfbf77c91
|
||||
EBUILD gst-plugins-esd-0.10.21.ebuild 578 RMD160 fae9f9a0636e6233809ae169953faf58bfef31e9 SHA1 0303d81affeef4eb030ef1b31ce2922e7f40aed4 SHA256 04ed279f8d9d55f69a194197f370fba9acaf5088b68e4b40f6640b810bce25ce
|
||||
EBUILD gst-plugins-esd-0.10.22.ebuild 544 RMD160 9be14ac58c1273c8e36aaa23638b7a2993d5497d SHA1 ad987aba46fd96fcdcd43974c9fccddd6df5ca4b SHA256 8c8f8393f8e4fb29d9cd3947acde2d63b30c1a2cfd670afe0f22d6e553901bb6
|
||||
EBUILD gst-plugins-esd-0.10.23.ebuild 552 RMD160 d769445837e30e8a53489b046d90b8cd84a70b76 SHA1 cd9bac25e068b8e848b0f4b3995b83bcdd47f292 SHA256 98528a7d91b260b808248b20b93c93bd6633e7cff431e431b654817efc03aa07
|
||||
MISC ChangeLog 19109 RMD160 e77e90d2fdc131ecf2a384d3c34408df18ffe89c SHA1 c36db6f246935b40b07a9670a6c1eeb00fc3d97b SHA256 668b5b72d2dc295c2801e984b47e81cb54fcc0c75e8e2a9e6972e22e6ef8aa24
|
||||
MISC metadata.xml 812 RMD160 bbd61ec301a9dfd85addfd78acf0e7c5e247e955 SHA1 5689d9741f360b3a22d21941fbbc1f02744fbbd6 SHA256 ba1afa730d784a838844b3e7f079e7cfb082c117235d3cc7c250bd6272d0dd25
|
13
media-plugins/gst-plugins-esd/gst-plugins-esd-0.10.16.ebuild
Normal file
13
media-plugins/gst-plugins-esd/gst-plugins-esd-0.10.16.ebuild
Normal file
@ -0,0 +1,13 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-esd/gst-plugins-esd-0.10.16.ebuild,v 1.9 2010/01/05 18:17:04 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer plugin to output sound to esound"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=media-sound/esound-0.2.12
|
||||
>=media-libs/gstreamer-0.10.24
|
||||
>=media-libs/gst-plugins-base-0.10.24"
|
13
media-plugins/gst-plugins-esd/gst-plugins-esd-0.10.17.ebuild
Normal file
13
media-plugins/gst-plugins-esd/gst-plugins-esd-0.10.17.ebuild
Normal file
@ -0,0 +1,13 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-esd/gst-plugins-esd-0.10.17.ebuild,v 1.7 2010/06/24 16:52:54 jer Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer plugin to output sound to esound"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ~ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=media-sound/esound-0.2.12
|
||||
>=media-libs/gstreamer-0.10.25
|
||||
>=media-libs/gst-plugins-base-0.10.25"
|
13
media-plugins/gst-plugins-esd/gst-plugins-esd-0.10.21.ebuild
Normal file
13
media-plugins/gst-plugins-esd/gst-plugins-esd-0.10.21.ebuild
Normal file
@ -0,0 +1,13 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-esd/gst-plugins-esd-0.10.21.ebuild,v 1.8 2010/09/04 11:58:43 armin76 Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer plugin to output sound to esound"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ~ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=media-sound/esound-0.2.12
|
||||
>=media-libs/gstreamer-0.10.27
|
||||
>=media-libs/gst-plugins-base-0.10.27"
|
12
media-plugins/gst-plugins-esd/gst-plugins-esd-0.10.22.ebuild
Normal file
12
media-plugins/gst-plugins-esd/gst-plugins-esd-0.10.22.ebuild
Normal file
@ -0,0 +1,12 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-esd/gst-plugins-esd-0.10.22.ebuild,v 1.9 2010/09/11 10:00:47 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer plugin to output sound to esound"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=media-sound/esound-0.2.12
|
||||
>=media-libs/gst-plugins-base-0.10.29"
|
12
media-plugins/gst-plugins-esd/gst-plugins-esd-0.10.23.ebuild
Normal file
12
media-plugins/gst-plugins-esd/gst-plugins-esd-0.10.23.ebuild
Normal file
@ -0,0 +1,12 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-esd/gst-plugins-esd-0.10.23.ebuild,v 1.1 2010/07/31 10:54:45 leio Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer plugin to output sound to esound"
|
||||
KEYWORDS="~alpha ~amd64 ~amd64-linux ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~x86-linux ~x86-solaris"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=media-sound/esound-0.2.12
|
||||
>=media-libs/gst-plugins-base-0.10.29"
|
18
media-plugins/gst-plugins-esd/metadata.xml
Normal file
18
media-plugins/gst-plugins-esd/metadata.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gstreamer</herd>
|
||||
<longdescription lang="en">
|
||||
GStreamer plugin for outputting sound to ESound Daemon.
|
||||
|
||||
This element outputs sound to an already-running Enlightened Sound Daemon
|
||||
(ESound Daemon, esd). Note that a sound daemon will never be auto-spawned
|
||||
through this element (regardless of the system configuration), since this
|
||||
is actively prevented by the element. If you must use esd, you need to
|
||||
make sure it is started automatically with your session or otherwise.
|
||||
|
||||
You probably want to use a different sound output plugin, as esound is
|
||||
deprecated. For example gst-plugins-pulse if using a PulseAudio enabled
|
||||
desktop, or gst-plugins-alsa.
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
228
media-plugins/gst-plugins-faac/ChangeLog
Normal file
228
media-plugins/gst-plugins-faac/ChangeLog
Normal file
@ -0,0 +1,228 @@
|
||||
# ChangeLog for media-plugins/gst-plugins-faac
|
||||
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-faac/ChangeLog,v 1.62 2010/08/05 20:29:47 ssuominen Exp $
|
||||
|
||||
05 Aug 2010; Samuli Suominen <ssuominen@gentoo.org>
|
||||
gst-plugins-faac-0.10.18.ebuild:
|
||||
ppc64 stable wrt #324691
|
||||
|
||||
*gst-plugins-faac-0.10.19 (02 Aug 2010)
|
||||
|
||||
02 Aug 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-faac-0.10.19.ebuild:
|
||||
Version bump. No noteworthy changes.
|
||||
|
||||
01 Aug 2010; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-faac-0.10.18.ebuild:
|
||||
Stable on alpha, bug #324691
|
||||
|
||||
01 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-faac-0.10.18.ebuild:
|
||||
x86 stable, bug 324691
|
||||
|
||||
27 Jun 2010; <nixnut@gentoo.org> gst-plugins-faac-0.10.18.ebuild:
|
||||
ppc stable #324691
|
||||
|
||||
24 Jun 2010; Markos Chandras <hwoarang@gentoo.org>
|
||||
gst-plugins-faac-0.10.18.ebuild:
|
||||
Stable on amd64 wrt bug #324691
|
||||
|
||||
18 Apr 2010; <nixnut@gentoo.org> gst-plugins-faac-0.10.17.ebuild:
|
||||
ppc stable #308379
|
||||
|
||||
*gst-plugins-faac-0.10.18 (05 Apr 2010)
|
||||
|
||||
05 Apr 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-faac-0.10.18.ebuild:
|
||||
Version bump. Lots of fixes (channel layout, output caps, bps estimation
|
||||
etc.)
|
||||
|
||||
24 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-faac-0.10.17.ebuild:
|
||||
stable x86, bug 308379
|
||||
|
||||
19 Mar 2010; Pacho Ramos <pacho@gentoo.org>
|
||||
gst-plugins-faac-0.10.17.ebuild:
|
||||
amd64 stable, bug 308379
|
||||
|
||||
04 Mar 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-faac-0.10.11.ebuild:
|
||||
Remove old
|
||||
|
||||
*gst-plugins-faac-0.10.17 (23 Jan 2010)
|
||||
|
||||
23 Jan 2010; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-faac-0.10.17.ebuild:
|
||||
Version bump, bug #290084
|
||||
|
||||
05 Jan 2010; nixnut <nixnut@gentoo.org> gst-plugins-faac-0.10.14.ebuild:
|
||||
ppc stable #290343
|
||||
|
||||
29 Nov 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-faac-0.10.14.ebuild:
|
||||
Stable on alpha, bug #290343
|
||||
|
||||
18 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-faac-0.10.14.ebuild:
|
||||
x86 stable, bug 290343
|
||||
|
||||
17 Nov 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-faac-0.10.14.ebuild:
|
||||
Marking gst-plugins-faac-0.10.14 ppc64 stable for bug 290343
|
||||
|
||||
10 Nov 2009; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-faac-0.10.14.ebuild:
|
||||
Stable on amd64, bug #290343
|
||||
|
||||
*gst-plugins-faac-0.10.14 (07 Sep 2009)
|
||||
|
||||
07 Sep 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-faac-0.10.14.ebuild:
|
||||
Version bump
|
||||
|
||||
05 Aug 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-faac-0.10.7.ebuild, -gst-plugins-faac-0.10.9.ebuild:
|
||||
Remove old
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-faac-0.10.11.ebuild:
|
||||
Marking gst-plugins-faac-0.10.11 ppc64 stable for bug 266986
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-faac-0.10.11.ebuild:
|
||||
Marking gst-plugins-faac-0.10.11 ppc stable for bug 266986
|
||||
|
||||
14 May 2009; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-faac-0.10.11.ebuild:
|
||||
amd64 stable, bug #266986
|
||||
|
||||
12 May 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-faac-0.10.11.ebuild:
|
||||
stable x86, bug 266986
|
||||
|
||||
03 May 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-faac-0.10.11.ebuild:
|
||||
Stable on alpha, bug #266986
|
||||
|
||||
*gst-plugins-faac-0.10.11 (30 Mar 2009)
|
||||
|
||||
30 Mar 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-faac-0.10.11.ebuild:
|
||||
Version bump
|
||||
|
||||
*gst-plugins-faac-0.10.9 (05 Dec 2008)
|
||||
|
||||
05 Dec 2008; <ssuominen@gentoo.org> +gst-plugins-faac-0.10.9.ebuild:
|
||||
Version bump.
|
||||
|
||||
08 Aug 2008; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-faac-0.10.7.ebuild:
|
||||
x86 stable, bug #232054
|
||||
|
||||
07 Aug 2008; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-faac-0.10.7.ebuild:
|
||||
Stable on alpha, bug #232054
|
||||
|
||||
01 Aug 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-faac-0.10.7.ebuild:
|
||||
Marking gst-plugins-faac-0.10.7 ppc64 stable for bug 232054
|
||||
|
||||
30 Jul 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-faac-0.10.7.ebuild:
|
||||
Marking gst-plugins-faac-0.10.7 ppc stable for bug 232054
|
||||
|
||||
26 Jul 2008; Gilles Dartiguelongue <eva@gentoo.org>
|
||||
gst-plugins-faac-0.10.5.ebuild, gst-plugins-faac-0.10.7.ebuild:
|
||||
fix QA warning IUSE.undefined.
|
||||
|
||||
26 Jul 2008; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-faac-0.10.7.ebuild:
|
||||
Stable on amd64, bug #232054
|
||||
|
||||
*gst-plugins-faac-0.10.7 (29 Jun 2008)
|
||||
|
||||
29 Jun 2008; Samuli Suominen <drac@gentoo.org>
|
||||
-gst-plugins-faac-0.10.6.ebuild, +gst-plugins-faac-0.10.7.ebuild:
|
||||
Version bump.
|
||||
|
||||
*gst-plugins-faac-0.10.6 (21 Feb 2008)
|
||||
|
||||
21 Feb 2008; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-faac-0.10.6.ebuild:
|
||||
version bump
|
||||
|
||||
11 Oct 2007; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-faac-0.10.5.ebuild:
|
||||
Stable on ppc64; bug #190900
|
||||
|
||||
21 Sep 2007; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-faac-0.10.5.ebuild:
|
||||
Stable on amd64 wrt bug #190900.
|
||||
|
||||
10 Sep 2007; nixnut <nixnut@gentoo.org> gst-plugins-faac-0.10.5.ebuild:
|
||||
Stable on ppc wrt bug 190900
|
||||
|
||||
09 Sep 2007; Christian Faulhammer <opfer@gentoo.org>
|
||||
gst-plugins-faac-0.10.5.ebuild:
|
||||
x86 stable, bug 190900
|
||||
|
||||
*gst-plugins-faac-0.10.5 (30 Aug 2007)
|
||||
|
||||
30 Aug 2007; Samuli Suominen <drac@gentoo.org>
|
||||
+gst-plugins-faac-0.10.5.ebuild:
|
||||
Version bump.
|
||||
|
||||
15 Aug 2007; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-faac-0.10.4.ebuild:
|
||||
ppc stable, bug #185631
|
||||
|
||||
10 Aug 2007; Steve Dibb <beandog@gentoo.org>
|
||||
gst-plugins-faac-0.10.4.ebuild:
|
||||
amd64 stable
|
||||
|
||||
30 Jul 2007; Christian Faulhammer <opfer@gentoo.org>
|
||||
gst-plugins-faac-0.10.4.ebuild:
|
||||
stable x86, bug 185631
|
||||
|
||||
22 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog:
|
||||
Transition to Manifest2.
|
||||
|
||||
*gst-plugins-faac-0.10.4 (25 Jan 2007)
|
||||
|
||||
25 Jan 2007; Jim Ramsay <lack@gentoo.org> +gst-plugins-faac-0.10.4.ebuild:
|
||||
Version bump - gst-plugins-bad-0.10.4 is released
|
||||
|
||||
11 Jan 2007; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-faac-0.8.10.ebuild, -gst-plugins-faac-0.10.0.ebuild:
|
||||
Prune old versions
|
||||
|
||||
08 Apr 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-faac-0.10.1.ebuild:
|
||||
Added to ~ppc
|
||||
|
||||
29 Mar 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-faac-0.10.1.ebuild:
|
||||
Added ~ppc64
|
||||
|
||||
*gst-plugins-faac-0.10.1 (07 Mar 2006)
|
||||
|
||||
07 Mar 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-faac-0.10.1.ebuild:
|
||||
version bump
|
||||
|
||||
28 Feb 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
gst-plugins-faac-0.10.0.ebuild:
|
||||
dropping ~ppc due to bad rdeps
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-faac-0.8.11.ebuild:
|
||||
Stable on ppc wrt bug #119634.
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-faac-0.8.11.ebuild:
|
||||
Stable on amd64 wrt bug #119634.
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-faac-0.8.11.ebuild:
|
||||
Stable on x86 wrt bug #119634.
|
||||
|
11
media-plugins/gst-plugins-faac/Manifest
Normal file
11
media-plugins/gst-plugins-faac/Manifest
Normal file
@ -0,0 +1,11 @@
|
||||
DIST gst-plugins-bad-0.10.14-kate-configure-fix.patch.bz2 822 RMD160 e8460849426b27755259c738ba25975787a4378b SHA1 a2c25c283b6a0d71b3627403de119153ab1acee3 SHA256 ce7ace661bf5d5e38f1c63b6b376c8a0b384cd5e00d084f23aebbb099b0c5dc9
|
||||
DIST gst-plugins-bad-0.10.14.tar.bz2 2781487 RMD160 51c7804f3d913b00f3ab87d814ae1188e3915803 SHA1 a09af51b3c06d10d86b29de48fbe57768525f977 SHA256 cd6811522302d8e7549990ccc0edd371f6695daa566b65f338079f5fa5ce6bd9
|
||||
DIST gst-plugins-bad-0.10.17.tar.bz2 2946258 RMD160 bc04e0d33d0f552290690a91c942bd1126286cf7 SHA1 9715e927765fcb836600975b9ea93c095bbb787e SHA256 531559d331d6802545b759e50fe5de28da147d0dcd5b9e883d87a6821fbd064a
|
||||
DIST gst-plugins-bad-0.10.18.tar.bz2 3028412 RMD160 0a7bfd2b90dc863798f5a254248a1b087dcf8f5a SHA1 33853ed4f3be8d80c42a2a8dcce7052a08c1d64f SHA256 2f800127e00da0f157358f87b06563b3de23cbc630fbf6295b43405e52e02070
|
||||
DIST gst-plugins-bad-0.10.19.tar.bz2 3009513 RMD160 f28beddcfc33d02da590271403385f06eacfe1c4 SHA1 3d5ca09f99371fb569ed029dcaef8119f0841821 SHA256 7b6c49f22caad3b573aee481381355b38ac9f2077f291d9f33a9a808a2568888
|
||||
EBUILD gst-plugins-faac-0.10.14.ebuild 453 RMD160 8f48bd9dd5454e7e8df84eb93ec3086a265190bd SHA1 8128958b51e1f67cea61b36bf4be41c129ced41e SHA256 3e334b9fe63456a7a118a5ab5af3a8c15005b44338bb804f1f309585e9f9bff0
|
||||
EBUILD gst-plugins-faac-0.10.17.ebuild 455 RMD160 352654c3b9b221d45dfb854ae6c61612f7c62afb SHA1 5e6ce580c6d35e7be0c9237c431e0e51a25ccb68 SHA256 6c71a8fa522901f25518cc0ba55d9460135a9a1b8b3b291d13c34e83b3c59e17
|
||||
EBUILD gst-plugins-faac-0.10.18.ebuild 404 RMD160 d925358f644c26df8002696d722969ea60cf4b4e SHA1 7de0193869fe33eb340726e18b7eab1ba965bd15 SHA256 ab9bea892a55a7a10075b34a2e02c3374dd7d6c0d471895098683c64cd68fda0
|
||||
EBUILD gst-plugins-faac-0.10.19.ebuild 404 RMD160 e7f838ffb84fe25779eb6a8b9feec3ad67e3a6f4 SHA1 32a419ea72280ecc7ee5f49eeab605730613144a SHA256 e9956287f45f4467d4b12a8c26266bbed83c238df6f8d307bfdf4a25eb995af6
|
||||
MISC ChangeLog 6803 RMD160 24509ff1c675aa15dbb1ffd7867a74cbcbf5bd85 SHA1 6d5b6bdd76dff6d3c48fe834147ff6a8db85483a SHA256 267c7f30697011e0dbb06555e71b19c4b1ac3db8d72db665fe8b0b13c552b656
|
||||
MISC metadata.xml 162 RMD160 c6078d82a9ff46dbb283bc14ade9d117144cca67 SHA1 f46f8ccd62374b17183b5aca523c4dcf60d718f9 SHA256 3ac891ee23de8c6e2bef32e0c7aa3e6607e808de76ed723fbe7a1fb92f6093f1
|
@ -0,0 +1,14 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-faac/gst-plugins-faac-0.10.14.ebuild,v 1.6 2010/01/05 18:32:22 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-bad
|
||||
|
||||
KEYWORDS="alpha amd64 ppc ppc64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="media-libs/faac
|
||||
>=media-libs/gst-plugins-base-0.10.24
|
||||
>=media-libs/gstreamer-0.10.24"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/pkgconfig"
|
@ -0,0 +1,14 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-faac/gst-plugins-faac-0.10.17.ebuild,v 1.4 2010/04/18 15:54:31 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-bad
|
||||
|
||||
KEYWORDS="~alpha amd64 ppc ~ppc64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="media-libs/faac
|
||||
>=media-libs/gst-plugins-base-0.10.25
|
||||
>=media-libs/gstreamer-0.10.25"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/pkgconfig"
|
@ -0,0 +1,12 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-faac/gst-plugins-faac-0.10.18.ebuild,v 1.6 2010/08/05 20:29:47 ssuominen Exp $
|
||||
|
||||
inherit gst-plugins-bad
|
||||
|
||||
KEYWORDS="alpha amd64 ppc ppc64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="media-libs/faac
|
||||
>=media-libs/gst-plugins-base-0.10.27"
|
||||
DEPEND="${RDEPEND}"
|
@ -0,0 +1,12 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-faac/gst-plugins-faac-0.10.19.ebuild,v 1.1 2010/08/02 23:21:43 leio Exp $
|
||||
|
||||
inherit gst-plugins-bad
|
||||
|
||||
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="media-libs/faac
|
||||
>=media-libs/gst-plugins-base-0.10.29"
|
||||
DEPEND="${RDEPEND}"
|
5
media-plugins/gst-plugins-faac/metadata.xml
Normal file
5
media-plugins/gst-plugins-faac/metadata.xml
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gstreamer</herd>
|
||||
</pkgmetadata>
|
403
media-plugins/gst-plugins-faad/ChangeLog
Normal file
403
media-plugins/gst-plugins-faad/ChangeLog
Normal file
@ -0,0 +1,403 @@
|
||||
# ChangeLog for media-plugins/gst-plugins-faad
|
||||
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-faad/ChangeLog,v 1.94 2010/08/05 20:30:23 ssuominen Exp $
|
||||
|
||||
05 Aug 2010; Samuli Suominen <ssuominen@gentoo.org>
|
||||
gst-plugins-faad-0.10.18.ebuild:
|
||||
ppc64 stable wrt #324691
|
||||
|
||||
*gst-plugins-faad-0.10.19 (02 Aug 2010)
|
||||
|
||||
02 Aug 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-faad-0.10.19.ebuild:
|
||||
Version bump. No noteworthy changes.
|
||||
|
||||
01 Aug 2010; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-faad-0.10.18.ebuild:
|
||||
Stable on alpha, bug #324691
|
||||
|
||||
01 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-faad-0.10.18.ebuild:
|
||||
x86 stable, bug 324691
|
||||
|
||||
27 Jun 2010; <nixnut@gentoo.org> gst-plugins-faad-0.10.18.ebuild:
|
||||
ppc stable #324691
|
||||
|
||||
24 Jun 2010; Markos Chandras <hwoarang@gentoo.org>
|
||||
gst-plugins-faad-0.10.18.ebuild:
|
||||
Stable on amd64 wrt bug #324691
|
||||
|
||||
18 Apr 2010; <nixnut@gentoo.org> gst-plugins-faad-0.10.17.ebuild:
|
||||
ppc stable #308379
|
||||
|
||||
*gst-plugins-faad-0.10.18 (05 Apr 2010)
|
||||
|
||||
05 Apr 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-faad-0.10.18.ebuild:
|
||||
Version bump. Assorted bug fixes.
|
||||
|
||||
24 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-faad-0.10.17.ebuild:
|
||||
stable x86, bug 308379
|
||||
|
||||
19 Mar 2010; Pacho Ramos <pacho@gentoo.org>
|
||||
gst-plugins-faad-0.10.17.ebuild:
|
||||
amd64 stable, bug 308379
|
||||
|
||||
04 Mar 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-faad-0.10.11.ebuild:
|
||||
Remove old
|
||||
|
||||
04 Mar 2010; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-faad-0.10.14.ebuild:
|
||||
ia64 stable wrt #290343
|
||||
|
||||
*gst-plugins-faad-0.10.17 (23 Jan 2010)
|
||||
|
||||
23 Jan 2010; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-faad-0.10.17.ebuild:
|
||||
Version bump, bug #290084
|
||||
|
||||
05 Jan 2010; nixnut <nixnut@gentoo.org> gst-plugins-faad-0.10.14.ebuild:
|
||||
ppc stable #290343
|
||||
|
||||
29 Nov 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-faad-0.10.14.ebuild:
|
||||
Stable on alpha, bug #290343
|
||||
|
||||
18 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-faad-0.10.14.ebuild:
|
||||
x86 stable, bug 290343
|
||||
|
||||
17 Nov 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-faad-0.10.14.ebuild:
|
||||
Marking gst-plugins-faad-0.10.14 ppc64 stable for bug 290343
|
||||
|
||||
10 Nov 2009; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-faad-0.10.14.ebuild:
|
||||
Stable on amd64, bug #290343
|
||||
|
||||
*gst-plugins-faad-0.10.14 (07 Sep 2009)
|
||||
|
||||
07 Sep 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-faad-0.10.14.ebuild:
|
||||
Version bump
|
||||
|
||||
05 Aug 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-faad-0.10.7.ebuild, -gst-plugins-faad-0.10.9.ebuild:
|
||||
Remove old
|
||||
|
||||
01 Jul 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-faad-0.10.11.ebuild:
|
||||
ia64 stable
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-faad-0.10.11.ebuild:
|
||||
Marking gst-plugins-faad-0.10.11 ppc64 stable for bug 266986
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-faad-0.10.11.ebuild:
|
||||
Marking gst-plugins-faad-0.10.11 ppc stable for bug 266986
|
||||
|
||||
14 May 2009; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-faad-0.10.11.ebuild:
|
||||
amd64 stable, bug #266986
|
||||
|
||||
12 May 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-faad-0.10.11.ebuild:
|
||||
stable x86, bug 266986
|
||||
|
||||
03 May 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-faad-0.10.11.ebuild:
|
||||
Stable on alpha, bug #266986
|
||||
|
||||
*gst-plugins-faad-0.10.11 (30 Mar 2009)
|
||||
|
||||
30 Mar 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-faad-0.10.11.ebuild:
|
||||
Version bump
|
||||
|
||||
*gst-plugins-faad-0.10.9 (05 Dec 2008)
|
||||
|
||||
05 Dec 2008; <ssuominen@gentoo.org> +gst-plugins-faad-0.10.9.ebuild:
|
||||
Version bump.
|
||||
|
||||
08 Aug 2008; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-faad-0.10.7.ebuild:
|
||||
x86 stable, bug #232054
|
||||
|
||||
07 Aug 2008; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-faad-0.10.7.ebuild:
|
||||
Stable on alpha, bug #232054
|
||||
|
||||
31 Jul 2008; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-faad-0.10.7.ebuild:
|
||||
ia64/sparc stable wrt #232054
|
||||
|
||||
01 Aug 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-faad-0.10.7.ebuild:
|
||||
Marking gst-plugins-faad-0.10.7 ppc64 stable for bug 232054
|
||||
|
||||
30 Jul 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-faad-0.10.7.ebuild:
|
||||
Marking gst-plugins-faad-0.10.7 ppc stable for bug 232054
|
||||
|
||||
26 Jul 2008; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-faad-0.10.7.ebuild:
|
||||
Stable on amd64, bug #232054
|
||||
|
||||
*gst-plugins-faad-0.10.7 (29 Jun 2008)
|
||||
|
||||
29 Jun 2008; Samuli Suominen <drac@gentoo.org>
|
||||
-gst-plugins-faad-0.10.6.ebuild, +gst-plugins-faad-0.10.7.ebuild:
|
||||
Version bump.
|
||||
|
||||
24 Jun 2008; Samuli Suominen <drac@gentoo.org>
|
||||
-gst-plugins-faad-0.10.5.ebuild, gst-plugins-faad-0.10.5-r1.ebuild:
|
||||
Marked -r1 stable as there is no change to -r0, except -r0 had invalid
|
||||
faad dep which broke depgraph.
|
||||
|
||||
*gst-plugins-faad-0.10.6 (21 Feb 2008)
|
||||
|
||||
21 Feb 2008; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-faad-0.10.6.ebuild:
|
||||
version bump
|
||||
|
||||
25 Nov 2007; Samuli Suominen <drac@gentoo.org>
|
||||
gst-plugins-faad-0.10.5.ebuild, gst-plugins-faad-0.10.5-r1.ebuild:
|
||||
Change rdep of faad2 to =2.0* for stable users wrt #200252.
|
||||
|
||||
*gst-plugins-faad-0.10.5-r1 (25 Nov 2007)
|
||||
|
||||
25 Nov 2007; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
+gst-plugins-faad-0.10.5-r1.ebuild:
|
||||
Lock dep on faad2-2.0* as the next series has API changes which make it
|
||||
incompatible
|
||||
|
||||
25 Nov 2007; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
-gst-plugins-faad-0.10.1.ebuild, -gst-plugins-faad-0.10.4.ebuild:
|
||||
Prune unused versions
|
||||
|
||||
01 Nov 2007; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-faad-0.10.5.ebuild:
|
||||
sparc stable wrt #190900, thanks to Alex Maclean for testing
|
||||
|
||||
11 Oct 2007; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-faad-0.10.5.ebuild:
|
||||
Stable on ppc64; bug #190900
|
||||
|
||||
26 Sep 2007; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-faad-0.10.5.ebuild:
|
||||
alpha stable wrt #190900
|
||||
|
||||
21 Sep 2007; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-faad-0.10.5.ebuild:
|
||||
Stable on amd64 wrt bug #190900.
|
||||
|
||||
10 Sep 2007; nixnut <nixnut@gentoo.org> gst-plugins-faad-0.10.5.ebuild:
|
||||
Stable on ppc wrt bug 190900
|
||||
|
||||
09 Sep 2007; Christian Faulhammer <opfer@gentoo.org>
|
||||
gst-plugins-faad-0.10.5.ebuild:
|
||||
x86 stable, bug 190900
|
||||
|
||||
*gst-plugins-faad-0.10.5 (30 Aug 2007)
|
||||
|
||||
30 Aug 2007; Samuli Suominen <drac@gentoo.org>
|
||||
+gst-plugins-faad-0.10.5.ebuild:
|
||||
Version bump.
|
||||
|
||||
26 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-faad-0.10.4.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
11 Mar 2007; Andrej Kacian <ticho@gentoo.org>
|
||||
gst-plugins-faad-0.10.1.ebuild:
|
||||
Stable on x86, bug #143342.
|
||||
|
||||
03 Mar 2007; Luis Medinas <metalgod@gentoo.org>
|
||||
gst-plugins-faad-0.10.1.ebuild:
|
||||
Stable on amd64.
|
||||
|
||||
16 Feb 2007; Roy Marples <uberlord@gentoo.org>
|
||||
gst-plugins-faad-0.10.4.ebuild:
|
||||
Added ~x86-fbsd keyword.
|
||||
|
||||
*gst-plugins-faad-0.10.4 (25 Jan 2007)
|
||||
|
||||
25 Jan 2007; Jim Ramsay <lack@gentoo.org> +gst-plugins-faad-0.10.4.ebuild:
|
||||
Version bump - gst-plugins-bad-0.10.4 is released
|
||||
|
||||
10 Jan 2007; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-faad-0.8.10.ebuild, -gst-plugins-faad-0.10.0.ebuild:
|
||||
Prune old versions
|
||||
|
||||
15 Oct 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-faad-0.10.1.ebuild:
|
||||
Mark 0.10.1 ~ia64
|
||||
|
||||
16 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-faad-0.10.1.ebuild:
|
||||
ppc stable
|
||||
|
||||
21 May 2006; Thomas Cort <tcort@gentoo.org>
|
||||
gst-plugins-faad-0.10.1.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
03 May 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-faad-0.10.1.ebuild:
|
||||
Stable on sparc wrt #128737
|
||||
|
||||
13 Apr 2006; Thomas Cort <tcort@gentoo.org>
|
||||
gst-plugins-faad-0.10.1.ebuild:
|
||||
Added ~alpha keyword.
|
||||
|
||||
08 Apr 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-faad-0.10.1.ebuild:
|
||||
Added to ~ppc
|
||||
|
||||
29 Mar 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-faad-0.10.1.ebuild:
|
||||
Added ~ppc64
|
||||
|
||||
23 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-faad-0.10.1.ebuild:
|
||||
Keyworded ~sparc
|
||||
|
||||
*gst-plugins-faad-0.10.1 (07 Mar 2006)
|
||||
|
||||
07 Mar 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-faad-0.10.1.ebuild:
|
||||
version bump
|
||||
|
||||
28 Feb 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
gst-plugins-faad-0.10.0.ebuild:
|
||||
dropping ~ppc ~sparc due to bad rdeps
|
||||
|
||||
*gst-plugins-faad-0.8.12 (23 Feb 2006)
|
||||
|
||||
23 Feb 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-faad-0.8.12.ebuild:
|
||||
version bump of 0.8 series
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-faad-0.8.11.ebuild:
|
||||
Stable on ppc wrt bug #119634.
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-faad-0.8.11.ebuild:
|
||||
Stable on amd64 wrt bug #119634.
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-faad-0.8.11.ebuild:
|
||||
Stable on x86 wrt bug #119634.
|
||||
|
||||
*gst-plugins-faad-0.10.0 (21 Jan 2006)
|
||||
|
||||
21 Jan 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
+gst-plugins-faad-0.10.0.ebuild:
|
||||
Version bump for 0.10 version
|
||||
|
||||
20 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-faad-0.8.11.ebuild:
|
||||
Stable on sparc wrt #119634
|
||||
|
||||
04 Dec 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
-gst-plugins-faad-0.8.8.ebuild, -gst-plugins-faad-0.8.9.ebuild:
|
||||
Remove unneeded versions
|
||||
|
||||
*gst-plugins-faad-0.8.11 (05 Sep 2005)
|
||||
|
||||
05 Sep 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-faad-0.8.11.ebuild:
|
||||
version bump
|
||||
|
||||
02 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
|
||||
gst-plugins-faad-0.8.10.ebuild:
|
||||
Stable on ppc.
|
||||
|
||||
31 Aug 2005; Herbie Hopkins <herbs@gentoo.org>
|
||||
gst-plugins-faad-0.8.10.ebuild:
|
||||
Stable on amd64.
|
||||
|
||||
30 Aug 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-faad-0.8.10.ebuild:
|
||||
stable on x86
|
||||
|
||||
26 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-faad-0.8.10.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
27 Jul 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-faad-0.8.8.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
*gst-plugins-faad-0.8.10 (02 Jul 2005)
|
||||
|
||||
02 Jul 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-faad-0.8.10.ebuild:
|
||||
version bump
|
||||
|
||||
29 Jun 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-faad-0.8.8.ebuild, gst-plugins-faad-0.8.9.ebuild:
|
||||
To ~sparc
|
||||
|
||||
*gst-plugins-faad-0.8.9 (08 Jun 2005)
|
||||
|
||||
08 Jun 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-faad-0.8.9.ebuild:
|
||||
version bump
|
||||
|
||||
30 Apr 2005; Michael Hanselmann <hansmi@gentoo.org>
|
||||
gst-plugins-faad-0.8.8.ebuild:
|
||||
Stable on ppc.
|
||||
|
||||
27 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org>
|
||||
gst-plugins-faad-0.8.8.ebuild:
|
||||
stable on amd64
|
||||
|
||||
*gst-plugins-faad-0.8.8 (25 Apr 2005)
|
||||
|
||||
25 Apr 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-faad-0.8.8.ebuild:
|
||||
stabilise on x86
|
||||
|
||||
13 Mar 2005; Mike Gardiner <obz@gentoo.org> gst-plugins-faad-0.8.7.ebuild:
|
||||
Keyworded ppc
|
||||
|
||||
11 Mar 2005; Heinrich Wendel <lanius@gentoo.org>
|
||||
gst-plugins-faad-0.8.7.ebuild:
|
||||
stable on amd64
|
||||
|
||||
*gst-plugins-faad-0.8.7 (05 Jan 2004)
|
||||
|
||||
16 Dec 2004; Dylan Carlson <absinthe@gentoo.org>
|
||||
gst-plugins-faad-0.8.5.ebuild:
|
||||
Stable on amd64.
|
||||
|
||||
*gst-plugins-faad-0.8.5 (22 Oct 2004)
|
||||
|
||||
*gst-plugins-faad-0.8.3 (18 Aug 2004)
|
||||
|
||||
18 Aug 2004; foser <foser@gentoo.org> gst-plugins-fadd-0.8.3.ebuild :
|
||||
New release
|
||||
|
||||
01 Aug 2004; <spider@gentoo.org> gst-plugins-faad-0.8.2.ebuild:
|
||||
stable on x86
|
||||
|
||||
*gst-plugins-faad-0.8.2 (29 Jun 2004)
|
||||
|
||||
29 Jun 2004; foser <foser@gentoo.org> gst-plugins-faad-0.8.2.ebuild :
|
||||
New release
|
||||
|
||||
26 Apr 2004; David Holm <dholm@gentoo.org> gst-plugins-faad-0.8.1.ebuild:
|
||||
Added to ~ppc.
|
||||
|
||||
25 Apr 2004; Daniel Ahlberg <aliz@gentoo.org> gst-plugins-faad-0.8.1.ebuild:
|
||||
Added amd64 keyword.
|
||||
|
||||
*gst-plugins-faad-0.8.1 (25 Apr 2004)
|
||||
|
||||
25 Apr 2004; foser <foser@gentoo.org> gst-plugins-faad-0.8.1.ebuild, ChangeLog, metadata.xml :
|
||||
Initial commit, faad plugin for gstreamer (0.8)
|
||||
Added to the gnome herd
|
11
media-plugins/gst-plugins-faad/Manifest
Normal file
11
media-plugins/gst-plugins-faad/Manifest
Normal file
@ -0,0 +1,11 @@
|
||||
DIST gst-plugins-bad-0.10.14-kate-configure-fix.patch.bz2 822 RMD160 e8460849426b27755259c738ba25975787a4378b SHA1 a2c25c283b6a0d71b3627403de119153ab1acee3 SHA256 ce7ace661bf5d5e38f1c63b6b376c8a0b384cd5e00d084f23aebbb099b0c5dc9
|
||||
DIST gst-plugins-bad-0.10.14.tar.bz2 2781487 RMD160 51c7804f3d913b00f3ab87d814ae1188e3915803 SHA1 a09af51b3c06d10d86b29de48fbe57768525f977 SHA256 cd6811522302d8e7549990ccc0edd371f6695daa566b65f338079f5fa5ce6bd9
|
||||
DIST gst-plugins-bad-0.10.17.tar.bz2 2946258 RMD160 bc04e0d33d0f552290690a91c942bd1126286cf7 SHA1 9715e927765fcb836600975b9ea93c095bbb787e SHA256 531559d331d6802545b759e50fe5de28da147d0dcd5b9e883d87a6821fbd064a
|
||||
DIST gst-plugins-bad-0.10.18.tar.bz2 3028412 RMD160 0a7bfd2b90dc863798f5a254248a1b087dcf8f5a SHA1 33853ed4f3be8d80c42a2a8dcce7052a08c1d64f SHA256 2f800127e00da0f157358f87b06563b3de23cbc630fbf6295b43405e52e02070
|
||||
DIST gst-plugins-bad-0.10.19.tar.bz2 3009513 RMD160 f28beddcfc33d02da590271403385f06eacfe1c4 SHA1 3d5ca09f99371fb569ed029dcaef8119f0841821 SHA256 7b6c49f22caad3b573aee481381355b38ac9f2077f291d9f33a9a808a2568888
|
||||
EBUILD gst-plugins-faad-0.10.14.ebuild 477 RMD160 09383718bcecf73d53401af929b4a87fb27d181b SHA1 7e71f452b4bb3a54b5c48d8b6a4534d30dbe00fe SHA256 250fdd150a29fe93f09dafaae5e32e1f8bfaf0e10ce1fc712a8c11e247c5c231
|
||||
EBUILD gst-plugins-faad-0.10.17.ebuild 479 RMD160 60385966bf052570e84ef00a3acb2811a4bec6f9 SHA1 0b2683dce5a525edc3317ee9472d8aacd9b9bf28 SHA256 71b97a8442ef08abc7708fd223ff050f1b3c45f94a3a756c676ee39dcd45e6f2
|
||||
EBUILD gst-plugins-faad-0.10.18.ebuild 428 RMD160 f65279c6ba587d297ce70c930b1a112be8c803ab SHA1 6e89ac1eebf925a0713d9079cc92bbf250eaddc5 SHA256 fbbb1a4f3ad47d67802326c33ff08b4d7f2573643d7e20a82a5beba43c14a3d4
|
||||
EBUILD gst-plugins-faad-0.10.19.ebuild 428 RMD160 c4dbb6e13072ea1650f83f3d8ea2c911f8969a2d SHA1 611efac2ae4b856708801712eff22cfcf7a94b47 SHA256 29bcc15497670c1e75ddb46544f1ad7c97afefed9ce08c083fa570ee30c34b2d
|
||||
MISC ChangeLog 11804 RMD160 fe416aab53310c53878cd88acb36f38af15143fe SHA1 47db8ca056ff6594b77b80d4fc05d20a8e57d74a SHA256 6556165b29ec82f019130094fa10e7ef095fabb80faf36240699f7e4d11d2e55
|
||||
MISC metadata.xml 181 RMD160 51814fbdcf7f32cfe70018b3af7fc798e41ff90d SHA1 faf40c45bd66b0072b95556cf7ab097d3be19511 SHA256 22c215902ccdc7fd8cdb765750fb23ea9d9b6c9d3edb1b45325c3469f8f6ffc5
|
@ -0,0 +1,14 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-faad/gst-plugins-faad-0.10.14.ebuild,v 1.7 2010/03/04 19:53:15 armin76 Exp $
|
||||
|
||||
inherit gst-plugins-bad
|
||||
|
||||
KEYWORDS="alpha amd64 ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="media-libs/faad2
|
||||
>=media-libs/gst-plugins-base-0.10.24
|
||||
>=media-libs/gstreamer-0.10.24"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/pkgconfig"
|
@ -0,0 +1,14 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-faad/gst-plugins-faad-0.10.17.ebuild,v 1.4 2010/04/18 15:54:56 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-bad
|
||||
|
||||
KEYWORDS="~alpha amd64 ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="media-libs/faad2
|
||||
>=media-libs/gst-plugins-base-0.10.25
|
||||
>=media-libs/gstreamer-0.10.25"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/pkgconfig"
|
@ -0,0 +1,12 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-faad/gst-plugins-faad-0.10.18.ebuild,v 1.6 2010/08/05 20:30:23 ssuominen Exp $
|
||||
|
||||
inherit gst-plugins-bad
|
||||
|
||||
KEYWORDS="alpha amd64 ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="media-libs/faad2
|
||||
>=media-libs/gst-plugins-base-0.10.27"
|
||||
DEPEND="${RDEPEND}"
|
@ -0,0 +1,12 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-faad/gst-plugins-faad-0.10.19.ebuild,v 1.1 2010/08/02 23:43:08 leio Exp $
|
||||
|
||||
inherit gst-plugins-bad
|
||||
|
||||
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="media-libs/faad2
|
||||
>=media-libs/gst-plugins-base-0.10.29"
|
||||
DEPEND="${RDEPEND}"
|
6
media-plugins/gst-plugins-faad/metadata.xml
Normal file
6
media-plugins/gst-plugins-faad/metadata.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gstreamer</herd>
|
||||
<herd>gnome</herd>
|
||||
</pkgmetadata>
|
531
media-plugins/gst-plugins-ffmpeg/ChangeLog
Normal file
531
media-plugins/gst-plugins-ffmpeg/ChangeLog
Normal file
@ -0,0 +1,531 @@
|
||||
# ChangeLog for media-plugins/gst-plugins-ffmpeg
|
||||
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-ffmpeg/ChangeLog,v 1.119 2010/08/05 20:45:27 ssuominen Exp $
|
||||
|
||||
05 Aug 2010; Samuli Suominen <ssuominen@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.9.ebuild:
|
||||
ppc64 stable wrt #324691
|
||||
|
||||
24 Jun 2010; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.9.ebuild:
|
||||
Stable for HPPA (bug #308379).
|
||||
|
||||
18 Apr 2010; <nixnut@gentoo.org> gst-plugins-ffmpeg-0.10.9.ebuild:
|
||||
ppc stable #308379
|
||||
|
||||
05 Apr 2010; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.9.ebuild:
|
||||
alpha/arm/ia64/sparc stable wrt #308379
|
||||
|
||||
24 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.9.ebuild:
|
||||
stable x86, bug 308379
|
||||
|
||||
19 Mar 2010; Pacho Ramos <pacho@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.9.ebuild:
|
||||
amd64 stable, bug 308379
|
||||
|
||||
28 Jan 2010; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.7.ebuild:
|
||||
Stable for HPPA (bug #266986).
|
||||
|
||||
15 Jan 2010; Tomáš Chvátal <scarabeus@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.5.ebuild, gst-plugins-ffmpeg-0.10.6.ebuild:
|
||||
Use base_src_prepare.
|
||||
|
||||
*gst-plugins-ffmpeg-0.10.9 (17 Nov 2009)
|
||||
|
||||
17 Nov 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-ffmpeg-0.10.9.ebuild:
|
||||
Version bump, also use internal ffmpeg, the system one is not from the
|
||||
same branch
|
||||
|
||||
01 Jul 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.7.ebuild:
|
||||
arm/ia64/sparc stable wrt #266986
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.7.ebuild:
|
||||
Marking gst-plugins-ffmpeg-0.10.7 ppc64 stable for bug 266986
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.7.ebuild:
|
||||
Marking gst-plugins-ffmpeg-0.10.7 ppc stable for bug 266986
|
||||
|
||||
14 May 2009; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.7.ebuild:
|
||||
amd64 stable, bug #266986
|
||||
|
||||
12 May 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.7.ebuild:
|
||||
stable x86, bug 266986
|
||||
|
||||
05 May 2009; Samuli Suominen <ssuominen@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.7.ebuild:
|
||||
Change ffmpeg dep. to allow live version as well.
|
||||
|
||||
03 May 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.7.ebuild:
|
||||
Stable on alpha, bug #266986
|
||||
|
||||
*gst-plugins-ffmpeg-0.10.7 (30 Mar 2009)
|
||||
|
||||
30 Mar 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-ffmpeg-0.10.7.ebuild:
|
||||
Version bump
|
||||
|
||||
22 Dec 2008; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.5.ebuild:
|
||||
arm/ia64 stable wrt #245285
|
||||
|
||||
21 Dec 2008; nixnut <nixnut@gentoo.org> gst-plugins-ffmpeg-0.10.5.ebuild:
|
||||
Stable on ppc wrt bug 231834
|
||||
|
||||
20 Dec 2008; Ferris McCormick <fmccor@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.5.ebuild:
|
||||
Sparc stable, Bug #245291.
|
||||
|
||||
20 Dec 2008; Thomas Anderson <gentoofan23@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.5.ebuild:
|
||||
stable amd64, bug 245291
|
||||
|
||||
16 Dec 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.5.ebuild:
|
||||
Marking gst-plugins-ffmpeg-0.10.5 ppc64 for bug 245291
|
||||
|
||||
16 Dec 2008; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.5.ebuild:
|
||||
Stable for HPPA (bug #245291).
|
||||
|
||||
15 Dec 2008; <ssuominen@gentoo.org> gst-plugins-ffmpeg-0.10.5.ebuild:
|
||||
x86 stable wrt #245291
|
||||
|
||||
12 Dec 2008; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.5.ebuild:
|
||||
Stable on alpha, bug #245291
|
||||
|
||||
11 Dec 2008; Peter Alfredsen <loki_val@gentoo.org> metadata.xml:
|
||||
Freedom!
|
||||
|
||||
*gst-plugins-ffmpeg-0.10.6 (05 Dec 2008)
|
||||
|
||||
05 Dec 2008; Peter Alfredsen <loki_val@gentoo.org>
|
||||
+files/0.10.6/system-ffmpeg-warning.patch,
|
||||
+gst-plugins-ffmpeg-0.10.6.ebuild:
|
||||
Bump
|
||||
|
||||
10 Nov 2008; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.5.ebuild:
|
||||
Add ~ia64 wrt #241908
|
||||
|
||||
27 Oct 2008; Mike Frysinger <vapier@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.5.ebuild:
|
||||
Add arm/ppc love #241908.
|
||||
|
||||
18 Oct 2008; Alexis Ballier <aballier@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.5.ebuild:
|
||||
Drop arm/ia64/ppc ~arch keywords per bug #241908 to allow unmasking
|
||||
|
||||
15 Oct 2008; Peter Alfredsen <loki_val@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.5.ebuild:
|
||||
Drop most of the filterflags. We're using system ffmpeg anyway.
|
||||
|
||||
14 Oct 2008; Peter Alfredsen <loki_val@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.4-r1.ebuild:
|
||||
Adjust dependency on ffmpeg to be only _p20080326
|
||||
|
||||
*gst-plugins-ffmpeg-0.10.5 (14 Oct 2008)
|
||||
|
||||
14 Oct 2008; Peter Alfredsen <loki_val@gentoo.org>
|
||||
+files/0.10.5/lavc.patch, +files/0.10.5/offset.patch,
|
||||
+files/0.10.5/system-ffmpeg-warning.patch, metadata.xml,
|
||||
+gst-plugins-ffmpeg-0.10.5.ebuild:
|
||||
Bump to 0.10.5, take maintainership since it seems I'm stuck with it.
|
||||
|
||||
25 Jun 2008; Peter Alfredsen <loki_val@gentoo.org>
|
||||
+files/0.10.4/system-ffmpeg-warning.patch,
|
||||
gst-plugins-ffmpeg-0.10.4-r1.ebuild:
|
||||
Removed 15 second wait and warning message using unspeakable means.
|
||||
|
||||
*gst-plugins-ffmpeg-0.10.4-r1 (23 Jun 2008)
|
||||
|
||||
23 Jun 2008; Peter Alfredsen <loki_val@gentoo.org>
|
||||
+files/0.10.4/01_new-codec-ids.patch, +files/0.10.4/03_disable-aac.patch,
|
||||
+files/0.10.4/02_av_picture_copy.patch,
|
||||
+files/0.10.4/04_disable-mpegts.patch, -gst-plugins-ffmpeg-0.10.4.ebuild,
|
||||
+gst-plugins-ffmpeg-0.10.4-r1.ebuild:
|
||||
Revbump with patches to fix interaction with newer ffmpeg, courtesy of
|
||||
Debian. Fixes bug 229015.
|
||||
|
||||
*gst-plugins-ffmpeg-0.10.4 (22 Jun 2008)
|
||||
|
||||
22 Jun 2008; Peter Alfredsen <loki_val@gentoo.org>
|
||||
+gst-plugins-ffmpeg-0.10.4.ebuild:
|
||||
Bumping to 0.10.4, to get something that compiles with gcc-4.3. Solves
|
||||
226023, 225855 and 137401. Uses system ffmpeg, despite upstream
|
||||
recommending against it. Debian, Ubuntu and a few others are already doing
|
||||
this, though.
|
||||
|
||||
22 Feb 2008; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.1-r1.ebuild,
|
||||
gst-plugins-ffmpeg-0.10.2.ebuild, gst-plugins-ffmpeg-0.10.3.ebuild:
|
||||
fix up deps; bug #210509
|
||||
|
||||
*gst-plugins-ffmpeg-0.10.3 (08 Dec 2007)
|
||||
|
||||
08 Dec 2007; Samuli Suominen <drac@gentoo.org>
|
||||
+gst-plugins-ffmpeg-0.10.3.ebuild:
|
||||
Version bump.
|
||||
|
||||
11 Oct 2007; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.2.ebuild:
|
||||
Stable on ppc64; bug #190900
|
||||
|
||||
26 Sep 2007; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.2.ebuild:
|
||||
ia64 stable wrt #190900
|
||||
|
||||
21 Sep 2007; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.2.ebuild:
|
||||
Stable on amd64 wrt bug #190900.
|
||||
|
||||
10 Sep 2007; nixnut <nixnut@gentoo.org> gst-plugins-ffmpeg-0.10.2.ebuild:
|
||||
Stable on ppc wrt bug 190900
|
||||
|
||||
09 Sep 2007; Christian Faulhammer <opfer@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.2.ebuild:
|
||||
x86 stable, bug 190900
|
||||
|
||||
03 Sep 2007; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.2.ebuild:
|
||||
Stable for HPPA (bug #190900).
|
||||
|
||||
07 Aug 2007; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.2.ebuild:
|
||||
Stable on sparc wrt #185823
|
||||
|
||||
16 Feb 2007; Roy Marples <uberlord@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.2.ebuild:
|
||||
Added ~x86-fbsd keyword.
|
||||
|
||||
01 Feb 2007; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.1-r1.ebuild, gst-plugins-ffmpeg-0.10.2.ebuild:
|
||||
0.10.1 not good for sparc so unkeyworded, 0.10.2 kinda works but not fine
|
||||
for all media types, ~sparc it anyway
|
||||
|
||||
10 Jan 2007; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-ffmpeg-0.10.1.ebuild:
|
||||
Prune old versions
|
||||
|
||||
21 Dec 2006; Ferris McCormick <fmccor@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.1-r1.ebuild:
|
||||
Add ~sparc keyword; builds and installs as expected.
|
||||
|
||||
*gst-plugins-ffmpeg-0.10.2 (13 Dec 2006)
|
||||
|
||||
13 Dec 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-ffmpeg-0.10.2.ebuild:
|
||||
version bump
|
||||
|
||||
19 Sep 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.1-r1.ebuild:
|
||||
Mark 0.10.1-r1 stable on ia64. #139612
|
||||
|
||||
19 Aug 2006; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.1-r1.ebuild:
|
||||
Add ~ia64 keyword.
|
||||
|
||||
22 Jul 2006; Thomas Cort <tcort@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.1-r1.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
17 Jul 2006; Daniel Gryniewicz <dang@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.1-r1.ebuild:
|
||||
Marked stable on amd64 for bug #139612
|
||||
|
||||
16 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.1-r1.ebuild:
|
||||
hppa stable, bug #139612
|
||||
|
||||
14 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.1-r1.ebuild:
|
||||
ppc stable, bug #139612
|
||||
|
||||
12 Jul 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.1-r1.ebuild:
|
||||
Stable on x86 wrt bug #139612.
|
||||
|
||||
06 Jul 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.7-r1.ebuild:
|
||||
Fix bug #139222
|
||||
|
||||
*gst-plugins-ffmpeg-0.10.1-r1 (19 Jun 2006)
|
||||
|
||||
19 Jun 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-ffmpeg-0.10.1-r1.ebuild:
|
||||
Disable building of ffplay. Fixes #135153
|
||||
|
||||
14 May 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.1.ebuild:
|
||||
Added ~hppa
|
||||
|
||||
12 May 2006; Thomas Cort <tcort@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.1.ebuild:
|
||||
Added ~alpha keyword.
|
||||
|
||||
05 May 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.1.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
08 Apr 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.1.ebuild:
|
||||
Added to ~ppc
|
||||
|
||||
02 Apr 2006; Marinus Schraal <foser@gentoo.org> files/ffmpeg_dos.patch :
|
||||
Add back patch for 0.8 version (#128504)
|
||||
|
||||
*gst-plugins-ffmpeg-0.10.1 (01 Apr 2006)
|
||||
|
||||
01 Apr 2006; <zaheer@gentoo.org> -files/ffmpeg_dos.patch,
|
||||
-gst-plugins-ffmpeg-0.10.0.ebuild, -gst-plugins-ffmpeg-0.10.0-r1.ebuild,
|
||||
+gst-plugins-ffmpeg-0.10.1.ebuild:
|
||||
version bump
|
||||
|
||||
29 Mar 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.10.0-r1.ebuild:
|
||||
Added ~ppc64
|
||||
|
||||
27 Feb 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
-gst-plugins-ffmpeg-0.8.4.ebuild, -gst-plugins-ffmpeg-0.8.4-r1.ebuild,
|
||||
-gst-plugins-ffmpeg-0.8.5.ebuild, -gst-plugins-ffmpeg-0.8.6.ebuild,
|
||||
-gst-plugins-ffmpeg-0.8.7.ebuild, gst-plugins-ffmpeg-0.8.7-r1.ebuild:
|
||||
fix deps and remove obsolete ebuilds
|
||||
|
||||
24 Feb 2006; Zaheer Abbas Merali <zaheerm@gentoo.org> gst-plugins-ffmpeg-0.10.0-r1.ebuild:
|
||||
fix bug #122065
|
||||
|
||||
04 Feb 2006; Simon Stelling <blubb@gentoo.org>
|
||||
+files/gst-ffmpeg-gcc4.patch, -files/gst-ffmpeg-gcc4.patch.gz,
|
||||
gst-plugins-ffmpeg-0.8.4-r1.ebuild:
|
||||
no need to gzip smallish patches
|
||||
|
||||
29 Jan 2006; Bryan Østergaard <kloeri@gentoo.org
|
||||
gst-plugins-ffmpeg-0.8.7-r1.ebuild:
|
||||
Stable on alpha + ia64, bug 119512.
|
||||
|
||||
21 Jan 2006; Michael Hanselmann <hansmi@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.7-r1.ebuild:
|
||||
Stable on ppc.
|
||||
|
||||
21 Jan 2006; Simon Stelling <blubb@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.7-r1.ebuild:
|
||||
stable on amd64 wrt bug 119512
|
||||
|
||||
21 Jan 2006; Rene Nussbaumer <killerfox@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.7-r1.ebuild:
|
||||
Stable on hppa. See bug #119512.
|
||||
|
||||
21 Jan 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.7-r1.ebuild:
|
||||
Stable on ppc64; bug #119512
|
||||
|
||||
20 Jan 2006; Joshua Jackson <tsunam@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.7-r1.ebuild:
|
||||
Stable on x86 for Security bug #119512
|
||||
|
||||
20 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.7-r1.ebuild:
|
||||
Stable on sparc wrt security #119512 and #119634
|
||||
|
||||
*gst-plugins-ffmpeg-0.10.0-r1 (18 Jan 2006)
|
||||
*gst-plugins-ffmpeg-0.8.7-r1 (18 Jan 2006)
|
||||
|
||||
18 Jan 2006; Joe McCann <joem@gentoo.org> +files/ffmpeg_dos.patch,
|
||||
+gst-plugins-ffmpeg-0.8.7-r1.ebuild, +gst-plugins-ffmpeg-0.10.0-r1.ebuild:
|
||||
Adding patch for ffmpeg vulnerability. More info available in bug 115760
|
||||
|
||||
05 Dec 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.4.ebuild, gst-plugins-ffmpeg-0.8.4-r1.ebuild,
|
||||
gst-plugins-ffmpeg-0.8.5.ebuild, gst-plugins-ffmpeg-0.8.6.ebuild,
|
||||
gst-plugins-ffmpeg-0.8.7.ebuild:
|
||||
Fix GStreamer dependencies
|
||||
|
||||
*gst-plugins-ffmpeg-0.10.0 (05 Dec 2005)
|
||||
|
||||
05 Dec 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
-gst-plugins-ffmpeg-0.9.7.ebuild, +gst-plugins-ffmpeg-0.10.0.ebuild:
|
||||
0.10.0 Release
|
||||
|
||||
04 Dec 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
-gst-plugins-ffmpeg-0.8.3.ebuild:
|
||||
Remove unneeded versions
|
||||
|
||||
*gst-plugins-ffmpeg-0.9.7 (04 Dec 2005)
|
||||
|
||||
04 Dec 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-ffmpeg-0.9.7.ebuild:
|
||||
0.10 Prerelease
|
||||
|
||||
27 Nov 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.6.ebuild:
|
||||
fix bug #109280
|
||||
|
||||
*gst-plugins-ffmpeg-0.8.7 (27 Nov 2005)
|
||||
|
||||
27 Nov 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-ffmpeg-0.8.7.ebuild:
|
||||
version bump, thanks Frittella Laurento <mrfree@infinito.it> fixes bug #111360
|
||||
|
||||
05 Sep 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+files/gst-plugins-ffmpeg-0.8.5-gmake.patch,
|
||||
gst-plugins-ffmpeg-0.8.5.ebuild, gst-plugins-ffmpeg-0.8.6.ebuild:
|
||||
add patch so make is replaced by autotool specified make, fixes bug
|
||||
|
||||
*gst-plugins-ffmpeg-0.8.6 (28 Aug 2005)
|
||||
|
||||
28 Aug 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-ffmpeg-0.8.6.ebuild:
|
||||
version bump
|
||||
|
||||
24 Aug 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.4-r1.ebuild:
|
||||
stable on ia64
|
||||
|
||||
13 Jul 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.5.ebuild:
|
||||
fix gstreamer dep, due to use of new symbol
|
||||
|
||||
02 Jul 2005; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.4.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
26 Jun 2005; Guy Martin <gmsoft@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.4.ebuild, gst-plugins-ffmpeg-0.8.4-r1.ebuild,
|
||||
gst-plugins-ffmpeg-0.8.5.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
13 Jun 2005; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.5.ebuild:
|
||||
Add ~alpha keyword.
|
||||
|
||||
*gst-plugins-ffmpeg-0.8.5 (11 Jun 2005)
|
||||
|
||||
11 Jun 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-ffmpeg-0.8.5.ebuild:
|
||||
version bump
|
||||
|
||||
09 Jun 2005; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.4-r1.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
16 May 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.4-r1.ebuild:
|
||||
filter -fweb, fixes #91789
|
||||
|
||||
14 May 2005; Hanno Boeck <hanno@gentoo.org>
|
||||
+files/gst-ffmpeg-gcc4.patch.gz, gst-plugins-ffmpeg-0.8.4-r1.ebuild:
|
||||
Fix for gcc4 (from ffmpeg ebuild and cvs).
|
||||
|
||||
09 May 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.4.ebuild:
|
||||
stable on ia64
|
||||
|
||||
06 May 2005; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.4-r1.ebuild:
|
||||
Added ~ppc64 to KEYWORDS
|
||||
|
||||
02 May 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.4.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
*gst-plugins-ffmpeg-0.8.4-r1 (29 Apr 2005)
|
||||
|
||||
29 Apr 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+files/gst-plugins-ffmpeg-0.8.4-eoshangfix.patch,
|
||||
+gst-plugins-ffmpeg-0.8.4-r1.ebuild:
|
||||
add patch to stop some files taking up 100% cpu - fixes bug #86042
|
||||
|
||||
27 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.4.ebuild:
|
||||
stable on amd64
|
||||
|
||||
25 Apr 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
-gst-plugins-ffmpeg-0.8.0.ebuild, -gst-plugins-ffmpeg-0.8.2.ebuild:
|
||||
Removing gst-plugins-ffmpeg 0.8.0 and 0.8.2
|
||||
|
||||
25 Apr 2005; Mike Gardiner <obz@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.4.ebuild:
|
||||
Keyworded ppc
|
||||
|
||||
25 Apr 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.4.ebuild:
|
||||
stabilise on x86
|
||||
|
||||
*gst-plugins-ffmpeg-0.8.4 (11 Mar 2005)
|
||||
|
||||
11 Mar 2005; Heinrich Wendel <lanius@gentoo.org>
|
||||
+gst-plugins-ffmpeg-0.8.4.ebuild:
|
||||
version bump
|
||||
|
||||
30 Jan 2005; lanius@gentoo.org :
|
||||
stable on amd64
|
||||
|
||||
05 Jan 2004; foser <foser@gentoo.org> gst-plugins-ffmpeg-0.8.3.ebuild :
|
||||
Also strip -msse3 from CFLAGS (#64262 comment #35)
|
||||
|
||||
*gst-plugins-ffmpeg-0.8.3 (29 Dec 2004)
|
||||
|
||||
29 Dec 2004; foser <foser@gentoo.org> gst-plugins-ffmpeg-0.8.3.ebuild :
|
||||
New release
|
||||
|
||||
16 Dec 2004; Dylan Carlson <absinthe@gentoo.org>
|
||||
gst-plugins-ffmpeg-0.8.2.ebuild:
|
||||
Stable on amd64.
|
||||
|
||||
12 Dec 2004; foser <foser@gentoo.org> gst-plugins-ffmpeg-0.8.2-r1.ebuild :
|
||||
Use the CFLAG restrictions from the mplayer ebuild (#64262)
|
||||
|
||||
*gst-plugins-ffmpeg-0.8.2-r1 (29 Nov 2004)
|
||||
|
||||
29 Nov 2004; foser <foser@gentoo.org> gst-plugins-ffmpeg-0.8.2-r1.ebuild :
|
||||
Add patch to fix aspect ratio issues with some movies
|
||||
http://bugzilla.gnome.org/show_bug.cgi?id=159755
|
||||
Filter more flags to fix bugs like #64262
|
||||
|
||||
30 Oct 2004; Travis Tilley <lv@gentoo.org> gst-plugins-ffmpeg-0.8.1.ebuild:
|
||||
stable on amd64
|
||||
|
||||
*gst-plugins-ffmpeg-0.8.2 (11 Oct 2004)
|
||||
|
||||
11 Oct 2004; foser <foser@gentoo.org> gst-plugins-ffmpeg-0.8.2.ebuild :
|
||||
New release
|
||||
Filter some problematic CFLAGS (#56075)
|
||||
Remove global sed
|
||||
|
||||
20 Aug 2004; Travis Tilley <lv@gentoo.org> gst-plugins-ffmpeg-0.8.1.ebuild:
|
||||
added ~amd64 keyword
|
||||
|
||||
04 Aug 2004; foser <foser@gentoo.org> gst-plugins-ffmpeg-0.8.1.ebuild :
|
||||
Add homepage (#57908)
|
||||
|
||||
*gst-plugins-ffmpeg-0.8.1 (20 Jul 2004)
|
||||
|
||||
20 Jul 2004; foser <foser@gentoo.org> gst-plugins-ffmpeg-0.8.1.ebuild :
|
||||
New release
|
||||
|
||||
30 Apr 2004; foser <foser@gentoo.org> gst-plugins-ffmpeg-0.8.0.ebuild :
|
||||
Do not use the gst-plugins eclass, the eclass structure messes up the deps (#49228)
|
||||
|
||||
14 Apr 2004; Jason Wever <weeve@gentoo.org> gst-plugins-ffmpeg-0.8.0.ebuild:
|
||||
Added ~sparc keyword.
|
||||
|
||||
29 Mar 2004; David Holm <dholm@gentoo.org> gst-plugins-ffmpeg-0.8.0.ebuild:
|
||||
Added to ~ppc.
|
||||
|
||||
*gst-plugins-ffmpeg-0.8.0 (28 Mar 2004)
|
||||
|
||||
28 Mar 2004; foser <foser@gentoo.org> gst-plugins-ffmpeg-0.8.0.ebuild, ChangeLog, metadata.xml :
|
||||
Initial commit
|
||||
ffmpeg based plugin for gstreamer
|
||||
offers a wide variety of audio/videa plug-ins
|
||||
added to the gnome herd
|
14
media-plugins/gst-plugins-ffmpeg/Manifest
Normal file
14
media-plugins/gst-plugins-ffmpeg/Manifest
Normal file
@ -0,0 +1,14 @@
|
||||
AUX 0.10.5/lavc.patch 8765 RMD160 fd4d4d6c0d9cea1202f511a071a8ebf4bb7bb80c SHA1 ba3b67eee7754122ca6adc49d899ad922355bd33 SHA256 aef53bcf9fcac97662df70858ea5a2e02c4661f695b5d0425d0ca6f4a53342ad
|
||||
AUX 0.10.5/offset.patch 525 RMD160 bc69512dbd8cbf979bbcf88f07bb11ddc356ab04 SHA1 761f0c4fa50fb942b94996c52789b40558188ace SHA256 dd5ccdb6cc16d72f7dd94e89f549c32fe09a483b503369fa06e3b673d89d6d33
|
||||
AUX 0.10.5/system-ffmpeg-warning.patch 3567 RMD160 a86a0b85d1b7972898ca775218fbab1e1897cbeb SHA1 5a06df62273146890585fc457f5bda9c2c77b13e SHA256 73c9cfa1006c6bca43d677a60ca8b2e30bca3b17c9855d11812afffa35542568
|
||||
AUX 0.10.6/system-ffmpeg-warning.patch 3547 RMD160 260b776fea9854c235bb3a4dc155b0d9cd8ef649 SHA1 fa938e48f5420194b929e8025fb98144471f3450 SHA256 fccf0f672fc34fd03d156ba4d9498511858563ea2e9fbe3c217adc6a4f9abd6c
|
||||
DIST gst-ffmpeg-0.10.5.tar.bz2 3031714 RMD160 ae314047c7a5feacc78dff4392f5e9989f88aac6 SHA1 795540b2277af922fd868b1ee62445274150f5ee SHA256 3316bf75739cbb36c9cd85b13026d09675fca349f29e9fdd29aa51712520c28b
|
||||
DIST gst-ffmpeg-0.10.6.tar.bz2 3126310 RMD160 537ed2f6ce6463a6cc6d913c246afe130435309a SHA1 0979f167bbe440f1948060737c8d50a1400276b6 SHA256 c9a5f4c9b1eddd7cb042d83390072f832f19f3712d023e4d6568391e5eb4878a
|
||||
DIST gst-ffmpeg-0.10.7.tar.bz2 8208382 RMD160 7afb20556e91d50717821b3e61224cd01e835c5b SHA1 962484ce93cb632ee31d463034085aab2e93f178 SHA256 94bd5110a03837145afe5c81760f22bd7bef9ef455f4417340eeeb2b12e54fb0
|
||||
DIST gst-ffmpeg-0.10.9.tar.bz2 3310276 RMD160 07d0ac35a7896058b827992a07bd4f8501c0abc0 SHA1 88b68958680d345ebb7b261dbabd12b5908869ef SHA256 63ed1b3c7d548bed4ad50e05b14374cdb0d91e3bfac19248d68c7144bf2c8f15
|
||||
EBUILD gst-plugins-ffmpeg-0.10.5.ebuild 1639 RMD160 4c7b9682017e2e11dd146f64d4d3dc11a8ddfd88 SHA1 09562974b2de22593a5400630f8587084897558b SHA256 27df9fa4c4130a94e4c0d400715ab78f0fc10cbdd45ca093f7810d777df9b1ef
|
||||
EBUILD gst-plugins-ffmpeg-0.10.6.ebuild 1543 RMD160 e9c07be85448a44d7718ac3c60fe23995f7259ae SHA1 f3a227c5b480d13f39aa169a5245cf2c72ac6182 SHA256 bdcb7eb0ca599c38834dcd81b37fe3411a6d5e069e4cb6dcc0dba696b1a8eacd
|
||||
EBUILD gst-plugins-ffmpeg-0.10.7.ebuild 1451 RMD160 b52726b0e402a31f00695dc84feb5b1071e00795 SHA1 c3af64b2ebcf88c66024e4b8c9e6dac164756d51 SHA256 821a3346b1ade67d9738196e1805de19ac749c777a2837af78f5c40dc927eb75
|
||||
EBUILD gst-plugins-ffmpeg-0.10.9.ebuild 1103 RMD160 b69788268add004f574f883d599acae19afcdd50 SHA1 f5ad3de7f65a5f44c1d52c8f1ce67099eec34e42 SHA256 ae4b13df8080264b9b7a92882ef15c593ae9290a27df59e448e15c3da596c72c
|
||||
MISC ChangeLog 17342 RMD160 4deaa123485ae4bfe02072bfeab7e03661132921 SHA1 0d24600f4e9edaa41e658d93b802ac2625e45080 SHA256 97df4e8b92ba4a73ccd4b01e514562875bf5c616784361587213f74dd1cba8d7
|
||||
MISC metadata.xml 181 RMD160 51814fbdcf7f32cfe70018b3af7fc798e41ff90d SHA1 faf40c45bd66b0072b95556cf7ab097d3be19511 SHA256 22c215902ccdc7fd8cdb765750fb23ea9d9b6c9d3edb1b45325c3469f8f6ffc5
|
233
media-plugins/gst-plugins-ffmpeg/files/0.10.5/lavc.patch
Normal file
233
media-plugins/gst-plugins-ffmpeg/files/0.10.5/lavc.patch
Normal file
@ -0,0 +1,233 @@
|
||||
Index: gst-ffmpeg-0.10.4/ext/ffmpeg/gstffmpegcfg.c
|
||||
===================================================================
|
||||
--- gst-ffmpeg-0.10.4.orig/ext/ffmpeg/gstffmpegcfg.c
|
||||
+++ gst-ffmpeg-0.10.4/ext/ffmpeg/gstffmpegcfg.c
|
||||
@@ -272,7 +272,9 @@ gst_ffmpeg_flags_get_type (void)
|
||||
{CODEC_FLAG_GRAY, "Only decode/encode grayscale", "gray"},
|
||||
{CODEC_FLAG_NORMALIZE_AQP,
|
||||
"Normalize Adaptive Quantization (masking, etc)", "aqp"},
|
||||
+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
|
||||
{CODEC_FLAG_TRELLIS_QUANT, "Trellis Quantization", "trellis"},
|
||||
+#endif
|
||||
{CODEC_FLAG_GLOBAL_HEADER,
|
||||
"Global headers in extradata instead of every keyframe",
|
||||
"global-headers"},
|
||||
@@ -669,6 +671,11 @@ gst_ffmpeg_cfg_init ()
|
||||
"Prediction Method",
|
||||
GST_TYPE_FFMPEG_PRED_METHOD, FF_PRED_LEFT, G_PARAM_READWRITE);
|
||||
gst_ffmpeg_add_pspec (pspec, config.prediction_method, FALSE, huffyuv, NULL);
|
||||
+#if LIBAVCODEC_VERSION_INT >= ((52<<16)+(0<<8)+0)
|
||||
+ pspec = g_param_spec_int ("trellis", "Trellis Quantization",
|
||||
+ "Trellis RD quantization", 0, 1, 1, G_PARAM_READWRITE);
|
||||
+ gst_ffmpeg_add_pspec (pspec, config.trellis, FALSE, mpeg, NULL);
|
||||
+#endif
|
||||
}
|
||||
|
||||
/* ==== END CONFIGURATION SECTION ==== */
|
||||
Index: gst-ffmpeg-0.10.4/ext/ffmpeg/gstffmpegcodecmap.c
|
||||
===================================================================
|
||||
--- gst-ffmpeg-0.10.4.orig/ext/ffmpeg/gstffmpegcodecmap.c
|
||||
+++ gst-ffmpeg-0.10.4/ext/ffmpeg/gstffmpegcodecmap.c
|
||||
@@ -332,7 +332,11 @@ gst_ffmpeg_codecid_to_caps (enum CodecID
|
||||
NULL);
|
||||
if (context) {
|
||||
gst_caps_set_simple (caps,
|
||||
+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
|
||||
"depth", G_TYPE_INT, context->bits_per_sample, NULL);
|
||||
+#else
|
||||
+ "depth", G_TYPE_INT, context->bits_per_coded_sample, NULL);
|
||||
+#endif
|
||||
}
|
||||
break;
|
||||
|
||||
@@ -511,7 +515,11 @@ gst_ffmpeg_codecid_to_caps (enum CodecID
|
||||
caps = gst_ff_vid_caps_new (context, codec_id, "video/x-huffyuv", NULL);
|
||||
if (context) {
|
||||
gst_caps_set_simple (caps,
|
||||
+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
|
||||
"bpp", G_TYPE_INT, context->bits_per_sample, NULL);
|
||||
+#else
|
||||
+ "bpp", G_TYPE_INT, context->bits_per_coded_sample, NULL);
|
||||
+#endif
|
||||
}
|
||||
break;
|
||||
|
||||
@@ -627,7 +635,11 @@ gst_ffmpeg_codecid_to_caps (enum CodecID
|
||||
"layout", G_TYPE_STRING, "microsoft", NULL);
|
||||
if (context) {
|
||||
gst_caps_set_simple (caps,
|
||||
+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
|
||||
"depth", G_TYPE_INT, (gint) context->bits_per_sample, NULL);
|
||||
+#else
|
||||
+ "depth", G_TYPE_INT, (gint) context->bits_per_coded_sample, NULL);
|
||||
+#endif
|
||||
} else {
|
||||
gst_caps_set_simple (caps, "depth", GST_TYPE_INT_RANGE, 1, 64, NULL);
|
||||
}
|
||||
@@ -638,7 +650,11 @@ gst_ffmpeg_codecid_to_caps (enum CodecID
|
||||
"layout", G_TYPE_STRING, "quicktime", NULL);
|
||||
if (context) {
|
||||
gst_caps_set_simple (caps,
|
||||
+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
|
||||
"depth", G_TYPE_INT, (gint) context->bits_per_sample, NULL);
|
||||
+#else
|
||||
+ "depth", G_TYPE_INT, (gint) context->bits_per_coded_sample, NULL);
|
||||
+#endif
|
||||
} else {
|
||||
gst_caps_set_simple (caps, "depth", GST_TYPE_INT_RANGE, 1, 64, NULL);
|
||||
}
|
||||
@@ -688,7 +704,11 @@ gst_ffmpeg_codecid_to_caps (enum CodecID
|
||||
caps = gst_ff_vid_caps_new (context, codec_id, "video/x-camtasia", NULL);
|
||||
if (context) {
|
||||
gst_caps_set_simple (caps,
|
||||
+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
|
||||
"depth", G_TYPE_INT, (gint) context->bits_per_sample, NULL);
|
||||
+#else
|
||||
+ "depth", G_TYPE_INT, (gint) context->bits_per_coded_sample, NULL);
|
||||
+#endif
|
||||
} else {
|
||||
gst_caps_set_simple (caps, "depth", GST_TYPE_INT_RANGE, 8, 32, NULL);
|
||||
}
|
||||
@@ -1026,7 +1046,11 @@ gst_ffmpeg_codecid_to_caps (enum CodecID
|
||||
caps = gst_ff_aud_caps_new (context, codec_id, "audio/x-alac", NULL);
|
||||
if (context) {
|
||||
gst_caps_set_simple (caps,
|
||||
+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
|
||||
"samplesize", G_TYPE_INT, context->bits_per_sample, NULL);
|
||||
+#else
|
||||
+ "samplesize", G_TYPE_INT, context->bits_per_coded_sample, NULL);
|
||||
+#endif
|
||||
}
|
||||
break;
|
||||
|
||||
@@ -1049,7 +1073,11 @@ gst_ffmpeg_codecid_to_caps (enum CodecID
|
||||
caps = gst_ff_aud_caps_new (context, codec_id, "audio/x-tta", NULL);
|
||||
if (context) {
|
||||
gst_caps_set_simple (caps,
|
||||
+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
|
||||
"samplesize", G_TYPE_INT, context->bits_per_sample, NULL);
|
||||
+#else
|
||||
+ "samplesize", G_TYPE_INT, context->bits_per_coded_sample, NULL);
|
||||
+#endif
|
||||
}
|
||||
break;
|
||||
case CODEC_ID_VORBIS:
|
||||
@@ -1416,7 +1444,11 @@ gst_ffmpeg_caps_to_pixfmt (const GstCaps
|
||||
|
||||
gst_structure_get_int (structure, "width", &context->width);
|
||||
gst_structure_get_int (structure, "height", &context->height);
|
||||
+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
|
||||
gst_structure_get_int (structure, "bpp", &context->bits_per_sample);
|
||||
+#else
|
||||
+ gst_structure_get_int (structure, "bpp", &context->bits_per_coded_sample);
|
||||
+#endif
|
||||
|
||||
fps = gst_structure_get_value (structure, "framerate");
|
||||
if (fps != NULL && GST_VALUE_HOLDS_FRACTION (fps)) {
|
||||
@@ -1647,7 +1679,11 @@ gst_ffmpeg_caps_with_codecid (enum Codec
|
||||
gint depth;
|
||||
|
||||
if (gst_structure_get_int (str, "depth", &depth)) {
|
||||
+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
|
||||
context->bits_per_sample = depth;
|
||||
+#else
|
||||
+ context->bits_per_coded_sample = depth;
|
||||
+#endif
|
||||
} else {
|
||||
GST_WARNING ("No depth field in caps %" GST_PTR_FORMAT, caps);
|
||||
}
|
||||
@@ -1680,7 +1716,11 @@ gst_ffmpeg_caps_with_codecid (enum Codec
|
||||
context->bit_rate = bitrate;
|
||||
}
|
||||
case CODEC_ID_ALAC:
|
||||
+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
|
||||
gst_structure_get_int (str, "samplesize", &context->bits_per_sample);
|
||||
+#else
|
||||
+ gst_structure_get_int (str, "samplesize", &context->bits_per_coded_sample);
|
||||
+#endif
|
||||
break;
|
||||
|
||||
case CODEC_ID_DVVIDEO:
|
||||
Index: gst-ffmpeg-0.10.4/ext/ffmpeg/gstffmpegdec.c
|
||||
===================================================================
|
||||
--- gst-ffmpeg-0.10.4.orig/ext/ffmpeg/gstffmpegdec.c
|
||||
+++ gst-ffmpeg-0.10.4/ext/ffmpeg/gstffmpegdec.c
|
||||
@@ -696,7 +696,11 @@ gst_ffmpegdec_setcaps (GstPad * pad, Gst
|
||||
|
||||
/* workaround encoder bugs */
|
||||
ffmpegdec->context->workaround_bugs |= FF_BUG_AUTODETECT;
|
||||
+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
|
||||
ffmpegdec->context->error_resilience = 1;
|
||||
+#else
|
||||
+ ffmpegdec->context->error_recognition = 1;
|
||||
+#endif
|
||||
|
||||
/* for slow cpus */
|
||||
ffmpegdec->context->lowres = ffmpegdec->lowres;
|
||||
@@ -2423,7 +2427,7 @@ gst_ffmpegdec_register (GstPlugin * plug
|
||||
AVCodec *in_plugin;
|
||||
gint rank;
|
||||
|
||||
- in_plugin = first_avcodec;
|
||||
+ in_plugin = av_codec_next(NULL);
|
||||
|
||||
GST_LOG ("Registering decoders");
|
||||
|
||||
@@ -2545,7 +2549,7 @@ gst_ffmpegdec_register (GstPlugin * plug
|
||||
gst_caps_unref (sinkcaps);
|
||||
if (srccaps)
|
||||
gst_caps_unref (srccaps);
|
||||
- in_plugin = in_plugin->next;
|
||||
+ in_plugin = av_codec_next(in_plugin);
|
||||
}
|
||||
|
||||
GST_LOG ("Finished Registering decoders");
|
||||
Index: gst-ffmpeg-0.10.4/ext/ffmpeg/gstffmpegenc.c
|
||||
===================================================================
|
||||
--- gst-ffmpeg-0.10.4.orig/ext/ffmpeg/gstffmpegenc.c
|
||||
+++ gst-ffmpeg-0.10.4/ext/ffmpeg/gstffmpegenc.c
|
||||
@@ -306,8 +306,8 @@ gst_ffmpegenc_getcaps (GstPad * pad)
|
||||
/* set some default properties */
|
||||
ctx->width = DEFAULT_WIDTH;
|
||||
ctx->height = DEFAULT_HEIGHT;
|
||||
- ctx->time_base.num = DEFAULT_FRAME_RATE_BASE;
|
||||
- ctx->time_base.den = 25 * DEFAULT_FRAME_RATE_BASE;
|
||||
+ ctx->time_base.num = 1;
|
||||
+ ctx->time_base.den = 25;
|
||||
ctx->bit_rate = DEFAULT_VIDEO_BITRATE;
|
||||
/* makes it silent */
|
||||
ctx->strict_std_compliance = -1;
|
||||
@@ -391,7 +391,9 @@ gst_ffmpegenc_setcaps (GstPad * pad, Gst
|
||||
|
||||
/* RTP payload used for GOB production (for Asterisk) */
|
||||
if (ffmpegenc->rtp_payload_size) {
|
||||
+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
|
||||
ffmpegenc->context->rtp_mode = 1;
|
||||
+#endif
|
||||
ffmpegenc->context->rtp_payload_size = ffmpegenc->rtp_payload_size;
|
||||
}
|
||||
|
||||
@@ -944,13 +946,13 @@ gst_ffmpegenc_register (GstPlugin * plug
|
||||
GType type;
|
||||
AVCodec *in_plugin;
|
||||
|
||||
- in_plugin = first_avcodec;
|
||||
|
||||
GST_LOG ("Registering encoders");
|
||||
|
||||
/* build global ffmpeg param/property info */
|
||||
gst_ffmpeg_cfg_init ();
|
||||
|
||||
+ in_plugin = av_codec_next(NULL);
|
||||
while (in_plugin) {
|
||||
gchar *type_name;
|
||||
GstCaps *srccaps = NULL, *sinkcaps = NULL;
|
||||
@@ -1027,7 +1029,7 @@ gst_ffmpegenc_register (GstPlugin * plug
|
||||
gst_caps_unref (sinkcaps);
|
||||
if (srccaps)
|
||||
gst_caps_unref (srccaps);
|
||||
- in_plugin = in_plugin->next;
|
||||
+ in_plugin = av_codec_next(in_plugin);
|
||||
}
|
||||
|
||||
GST_LOG ("Finished registering encoders");
|
15
media-plugins/gst-plugins-ffmpeg/files/0.10.5/offset.patch
Normal file
15
media-plugins/gst-plugins-ffmpeg/files/0.10.5/offset.patch
Normal file
@ -0,0 +1,15 @@
|
||||
Index: gst-ffmpeg-0.10.4/ext/ffmpeg/gstffmpegprotocol.c
|
||||
===================================================================
|
||||
--- gst-ffmpeg-0.10.4.orig/ext/ffmpeg/gstffmpegprotocol.c
|
||||
+++ gst-ffmpeg-0.10.4/ext/ffmpeg/gstffmpegprotocol.c
|
||||
@@ -175,8 +175,8 @@ gst_ffmpegdata_write (URLContext * h, un
|
||||
return size;
|
||||
}
|
||||
|
||||
-static offset_t
|
||||
-gst_ffmpegdata_seek (URLContext * h, offset_t pos, int whence)
|
||||
+static int64_t
|
||||
+gst_ffmpegdata_seek (URLContext * h, int64_t pos, int whence)
|
||||
{
|
||||
GstProtocolInfo *info;
|
||||
guint64 newpos;
|
@ -0,0 +1,72 @@
|
||||
diff -NrU5 gst-ffmpeg-0.10.5.orig/configure gst-ffmpeg-0.10.5/configure
|
||||
--- gst-ffmpeg-0.10.5.orig/configure 2008-10-14 15:37:05.000000000 +0200
|
||||
+++ gst-ffmpeg-0.10.5/configure 2008-10-14 15:38:00.000000000 +0200
|
||||
@@ -17231,68 +17231,10 @@
|
||||
_ACEOF
|
||||
|
||||
HAVE_FFMPEG_UNINSTALLED=0
|
||||
{ $as_echo "$as_me:$LINENO: Using system-installed FFMpeg code" >&5
|
||||
$as_echo "$as_me: Using system-installed FFMpeg code" >&6;}
|
||||
- { $as_echo "$as_me:$LINENO: WARNING:
|
||||
- ======================================================================
|
||||
- WARNING: you have chosen to build gst-ffmpeg against a random
|
||||
- external version of ffmpeg instead of building it against the tested
|
||||
- internal ffmpeg snapshot that is included with gst-ffmpeg.
|
||||
-
|
||||
- This is a very bad idea. So bad in fact that words cannot express
|
||||
- just how bad it is. Suffice to say that it is BAD.
|
||||
-
|
||||
- The GStreamer developers cannot and will not support a gst-ffmpeg
|
||||
- built this way. Any bug reports that indicate there is an external
|
||||
- version of ffmpeg involved will be closed immediately without further
|
||||
- investigation.
|
||||
-
|
||||
- The reason such a setup can't be supported is that the ffmpeg API
|
||||
- and ABI is in constant flux, yet there aren't any official releases
|
||||
- of the ffmpeg library to develop against. This makes it impossible
|
||||
- to guarantee that gst-ffmpeg will work reliably, or even compile,
|
||||
- with a randomly picked version ffmpeg. Even if gst-ffmpeg compiles
|
||||
- and superficially appears to work fine against your chosen external
|
||||
- ffmpeg version, that might just not be the case on other systems, or
|
||||
- even the same system at a later time, or when using decoders,
|
||||
- encoders, demuxers or muxers that have not been tested.
|
||||
-
|
||||
- Please do not create or distribute binary packages of gst-ffmpeg
|
||||
- that link against an external ffmpeg. Thank you!
|
||||
- ======================================================================
|
||||
- " >&5
|
||||
-$as_echo "$as_me: WARNING:
|
||||
- ======================================================================
|
||||
- WARNING: you have chosen to build gst-ffmpeg against a random
|
||||
- external version of ffmpeg instead of building it against the tested
|
||||
- internal ffmpeg snapshot that is included with gst-ffmpeg.
|
||||
-
|
||||
- This is a very bad idea. So bad in fact that words cannot express
|
||||
- just how bad it is. Suffice to say that it is BAD.
|
||||
-
|
||||
- The GStreamer developers cannot and will not support a gst-ffmpeg
|
||||
- built this way. Any bug reports that indicate there is an external
|
||||
- version of ffmpeg involved will be closed immediately without further
|
||||
- investigation.
|
||||
-
|
||||
- The reason such a setup can't be supported is that the ffmpeg API
|
||||
- and ABI is in constant flux, yet there aren't any official releases
|
||||
- of the ffmpeg library to develop against. This makes it impossible
|
||||
- to guarantee that gst-ffmpeg will work reliably, or even compile,
|
||||
- with a randomly picked version ffmpeg. Even if gst-ffmpeg compiles
|
||||
- and superficially appears to work fine against your chosen external
|
||||
- ffmpeg version, that might just not be the case on other systems, or
|
||||
- even the same system at a later time, or when using decoders,
|
||||
- encoders, demuxers or muxers that have not been tested.
|
||||
-
|
||||
- Please do not create or distribute binary packages of gst-ffmpeg
|
||||
- that link against an external ffmpeg. Thank you!
|
||||
- ======================================================================
|
||||
- " >&2;}
|
||||
-
|
||||
- sleep 15
|
||||
else
|
||||
|
||||
source "$srcdir/ffmpegrev"
|
||||
|
||||
{ $as_echo "$as_me:$LINENO: Using ffmpeg revision $FFMPEG_REVISION" >&5
|
@ -0,0 +1,72 @@
|
||||
diff -NrU5 gst-ffmpeg-0.10.6.orig/configure gst-ffmpeg-0.10.6/configure
|
||||
--- gst-ffmpeg-0.10.6.orig/configure 2008-12-05 23:57:18.000000000 +0100
|
||||
+++ gst-ffmpeg-0.10.6/configure 2008-12-06 00:02:04.000000000 +0100
|
||||
@@ -17130,68 +17130,10 @@
|
||||
_ACEOF
|
||||
|
||||
HAVE_FFMPEG_UNINSTALLED=0
|
||||
{ echo "$as_me:$LINENO: Using system-installed FFMpeg code" >&5
|
||||
echo "$as_me: Using system-installed FFMpeg code" >&6;}
|
||||
- { echo "$as_me:$LINENO: WARNING:
|
||||
- ======================================================================
|
||||
- WARNING: you have chosen to build gst-ffmpeg against a random
|
||||
- external version of ffmpeg instead of building it against the tested
|
||||
- internal ffmpeg snapshot that is included with gst-ffmpeg.
|
||||
-
|
||||
- This is a very bad idea. So bad in fact that words cannot express
|
||||
- just how bad it is. Suffice to say that it is BAD.
|
||||
-
|
||||
- The GStreamer developers cannot and will not support a gst-ffmpeg
|
||||
- built this way. Any bug reports that indicate there is an external
|
||||
- version of ffmpeg involved will be closed immediately without further
|
||||
- investigation.
|
||||
-
|
||||
- The reason such a setup can't be supported is that the ffmpeg API
|
||||
- and ABI is in constant flux, yet there aren't any official releases
|
||||
- of the ffmpeg library to develop against. This makes it impossible
|
||||
- to guarantee that gst-ffmpeg will work reliably, or even compile,
|
||||
- with a randomly picked version ffmpeg. Even if gst-ffmpeg compiles
|
||||
- and superficially appears to work fine against your chosen external
|
||||
- ffmpeg version, that might just not be the case on other systems, or
|
||||
- even the same system at a later time, or when using decoders,
|
||||
- encoders, demuxers or muxers that have not been tested.
|
||||
-
|
||||
- Please do not create or distribute binary packages of gst-ffmpeg
|
||||
- that link against an external ffmpeg. Thank you!
|
||||
- ======================================================================
|
||||
- " >&5
|
||||
-echo "$as_me: WARNING:
|
||||
- ======================================================================
|
||||
- WARNING: you have chosen to build gst-ffmpeg against a random
|
||||
- external version of ffmpeg instead of building it against the tested
|
||||
- internal ffmpeg snapshot that is included with gst-ffmpeg.
|
||||
-
|
||||
- This is a very bad idea. So bad in fact that words cannot express
|
||||
- just how bad it is. Suffice to say that it is BAD.
|
||||
-
|
||||
- The GStreamer developers cannot and will not support a gst-ffmpeg
|
||||
- built this way. Any bug reports that indicate there is an external
|
||||
- version of ffmpeg involved will be closed immediately without further
|
||||
- investigation.
|
||||
-
|
||||
- The reason such a setup can't be supported is that the ffmpeg API
|
||||
- and ABI is in constant flux, yet there aren't any official releases
|
||||
- of the ffmpeg library to develop against. This makes it impossible
|
||||
- to guarantee that gst-ffmpeg will work reliably, or even compile,
|
||||
- with a randomly picked version ffmpeg. Even if gst-ffmpeg compiles
|
||||
- and superficially appears to work fine against your chosen external
|
||||
- ffmpeg version, that might just not be the case on other systems, or
|
||||
- even the same system at a later time, or when using decoders,
|
||||
- encoders, demuxers or muxers that have not been tested.
|
||||
-
|
||||
- Please do not create or distribute binary packages of gst-ffmpeg
|
||||
- that link against an external ffmpeg. Thank you!
|
||||
- ======================================================================
|
||||
- " >&2;}
|
||||
-
|
||||
- sleep 15
|
||||
else
|
||||
|
||||
source "$srcdir/ffmpegrev"
|
||||
|
||||
{ echo "$as_me:$LINENO: Using ffmpeg revision $FFMPEG_REVISION" >&5
|
@ -0,0 +1,61 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-ffmpeg/gst-plugins-ffmpeg-0.10.5.ebuild,v 1.14 2010/01/15 12:02:48 scarabeus Exp $
|
||||
|
||||
inherit flag-o-matic eutils base
|
||||
|
||||
PD=${FILESDIR}/${PV}
|
||||
MY_PN=${PN/-plugins}
|
||||
MY_P=${MY_PN}-${PV}
|
||||
|
||||
# Create a major/minor combo for SLOT
|
||||
PVP=(${PV//[-\._]/ })
|
||||
SLOT=${PVP[0]}.${PVP[1]}
|
||||
#SLOT=0.10
|
||||
|
||||
DESCRIPTION="FFmpeg based gstreamer plugin"
|
||||
HOMEPAGE="http://gstreamer.freedesktop.org/modules/gst-ffmpeg.html"
|
||||
SRC_URI="http://gstreamer.freedesktop.org/src/${MY_PN}/${MY_P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
RDEPEND=">=media-libs/gstreamer-0.10.4
|
||||
>=media-libs/gst-plugins-base-0.10.4
|
||||
>=dev-libs/liboil-0.3.6
|
||||
>=media-video/ffmpeg-0.4.9_p20081014"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/pkgconfig"
|
||||
|
||||
PATCHES=( "${PD}/offset.patch"
|
||||
"${PD}/lavc.patch"
|
||||
"${PD}/system-ffmpeg-warning.patch"
|
||||
)
|
||||
|
||||
src_unpack() {
|
||||
unpack ${A}
|
||||
cd "${S}"
|
||||
base_src_prepare
|
||||
sed -i \
|
||||
-e 's,ffmpeg/avformat.h,libavformat/avformat.h,' \
|
||||
-e 's,ffmpeg/avcodec.h,libavcodec/avcodec.h,' \
|
||||
-e 's,ffmpeg/swscale.h,libswscale/swscale.h,' \
|
||||
-e 's,postproc/postprocess.h,libpostproc/postprocess.h,' \
|
||||
ext/ffmpeg/gst* \
|
||||
ext/libpostproc/gstpostproc.c \
|
||||
|| die "404. No files found."
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
append-flags -fno-strict-aliasing
|
||||
econf --with-system-ffmpeg
|
||||
emake || die "emake failed."
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install || die "emake install failed."
|
||||
dodoc AUTHORS ChangeLog NEWS README TODO
|
||||
}
|
@ -0,0 +1,59 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-ffmpeg/gst-plugins-ffmpeg-0.10.6.ebuild,v 1.2 2010/01/15 12:02:48 scarabeus Exp $
|
||||
|
||||
inherit flag-o-matic eutils base
|
||||
|
||||
PD=${FILESDIR}/${PV}
|
||||
MY_PN=${PN/-plugins}
|
||||
MY_P=${MY_PN}-${PV}
|
||||
|
||||
# Create a major/minor combo for SLOT
|
||||
PVP=(${PV//[-\._]/ })
|
||||
SLOT=${PVP[0]}.${PVP[1]}
|
||||
#SLOT=0.10
|
||||
|
||||
DESCRIPTION="FFmpeg based gstreamer plugin"
|
||||
HOMEPAGE="http://gstreamer.freedesktop.org/modules/gst-ffmpeg.html"
|
||||
SRC_URI="http://gstreamer.freedesktop.org/src/${MY_PN}/${MY_P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
RDEPEND=">=media-libs/gstreamer-0.10.4
|
||||
>=media-libs/gst-plugins-base-0.10.4
|
||||
>=dev-libs/liboil-0.3.6
|
||||
>=media-video/ffmpeg-0.4.9_p20081014"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/pkgconfig"
|
||||
|
||||
PATCHES=( "${PD}/system-ffmpeg-warning.patch" )
|
||||
|
||||
src_unpack() {
|
||||
unpack ${A}
|
||||
cd "${S}"
|
||||
base_src_prepare
|
||||
sed -i \
|
||||
-e 's,ffmpeg/avformat.h,libavformat/avformat.h,' \
|
||||
-e 's,ffmpeg/avcodec.h,libavcodec/avcodec.h,' \
|
||||
-e 's,ffmpeg/swscale.h,libswscale/swscale.h,' \
|
||||
ext/ffmpeg/gst* \
|
||||
ext/libpostproc/gstpostproc.c \
|
||||
|| die "404. No files found."
|
||||
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
append-flags -fno-strict-aliasing
|
||||
|
||||
econf --with-system-ffmpeg
|
||||
emake || die "emake failed."
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install || die "emake install failed."
|
||||
dodoc AUTHORS ChangeLog NEWS README TODO
|
||||
}
|
@ -0,0 +1,56 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-ffmpeg/gst-plugins-ffmpeg-0.10.7.ebuild,v 1.9 2010/01/28 18:41:22 jer Exp $
|
||||
|
||||
inherit flag-o-matic eutils base
|
||||
|
||||
PD=${FILESDIR}/${PV}
|
||||
MY_PN=${PN/-plugins}
|
||||
MY_P=${MY_PN}-${PV}
|
||||
|
||||
# Create a major/minor combo for SLOT
|
||||
PVP=(${PV//[-\._]/ })
|
||||
SLOT=${PVP[0]}.${PVP[1]}
|
||||
#SLOT=0.10
|
||||
|
||||
DESCRIPTION="FFmpeg based gstreamer plugin"
|
||||
HOMEPAGE="http://gstreamer.freedesktop.org/modules/gst-ffmpeg.html"
|
||||
SRC_URI="http://gstreamer.freedesktop.org/src/${MY_PN}/${MY_P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
RDEPEND=">=media-libs/gstreamer-0.10.22
|
||||
>=media-libs/gst-plugins-base-0.10.22
|
||||
>=dev-libs/liboil-0.3.6
|
||||
>=media-video/ffmpeg-0.5"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/pkgconfig"
|
||||
|
||||
src_unpack() {
|
||||
unpack ${A}
|
||||
cd "${S}"
|
||||
sed -i \
|
||||
-e 's,ffmpeg/avformat.h,libavformat/avformat.h,' \
|
||||
-e 's,ffmpeg/avcodec.h,libavcodec/avcodec.h,' \
|
||||
-e 's,ffmpeg/swscale.h,libswscale/swscale.h,' \
|
||||
ext/ffmpeg/gst* \
|
||||
ext/libpostproc/gstpostproc.c \
|
||||
|| die "404. No files found."
|
||||
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
append-flags -fno-strict-aliasing
|
||||
|
||||
econf --with-system-ffmpeg
|
||||
emake || die "emake failed."
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install || die "emake install failed."
|
||||
dodoc AUTHORS ChangeLog NEWS README TODO
|
||||
}
|
@ -0,0 +1,42 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-ffmpeg/gst-plugins-ffmpeg-0.10.9.ebuild,v 1.8 2010/08/05 20:45:27 ssuominen Exp $
|
||||
|
||||
inherit flag-o-matic eutils base
|
||||
|
||||
PD=${FILESDIR}/${PV}
|
||||
MY_PN=${PN/-plugins}
|
||||
MY_P=${MY_PN}-${PV}
|
||||
|
||||
# Create a major/minor combo for SLOT
|
||||
PVP=(${PV//[-\._]/ })
|
||||
SLOT=${PVP[0]}.${PVP[1]}
|
||||
#SLOT=0.10
|
||||
|
||||
DESCRIPTION="FFmpeg based gstreamer plugin"
|
||||
HOMEPAGE="http://gstreamer.freedesktop.org/modules/gst-ffmpeg.html"
|
||||
SRC_URI="http://gstreamer.freedesktop.org/src/${MY_PN}/${MY_P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
S=${WORKDIR}/${MY_P}
|
||||
|
||||
RDEPEND=">=media-libs/gstreamer-0.10.25
|
||||
>=media-libs/gst-plugins-base-0.10.25
|
||||
>=dev-libs/liboil-0.3.6"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/pkgconfig"
|
||||
|
||||
src_compile() {
|
||||
append-flags -fno-strict-aliasing
|
||||
|
||||
econf
|
||||
emake || die "emake failed."
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install || die "emake install failed."
|
||||
dodoc AUTHORS ChangeLog NEWS README TODO
|
||||
}
|
6
media-plugins/gst-plugins-ffmpeg/metadata.xml
Normal file
6
media-plugins/gst-plugins-ffmpeg/metadata.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gstreamer</herd>
|
||||
<herd>gnome</herd>
|
||||
</pkgmetadata>
|
638
media-plugins/gst-plugins-flac/ChangeLog
Normal file
638
media-plugins/gst-plugins-flac/ChangeLog
Normal file
@ -0,0 +1,638 @@
|
||||
# ChangeLog for media-plugins/gst-plugins-flac
|
||||
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-flac/ChangeLog,v 1.151 2010/09/11 10:01:25 nixnut Exp $
|
||||
|
||||
11 Sep 2010; <nixnut@gentoo.org> gst-plugins-flac-0.10.22.ebuild:
|
||||
ppc stable #329703
|
||||
|
||||
05 Sep 2010; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-flac-0.10.22.ebuild:
|
||||
Stable on alpha, bug #329703
|
||||
|
||||
05 Sep 2010; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-flac-0.10.22.ebuild:
|
||||
ia64/sh/sparc stable wrt #329703
|
||||
|
||||
04 Sep 2010; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-flac-0.10.21.ebuild:
|
||||
alpha/ia64/sh/sparc stable wrt #324691
|
||||
|
||||
10 Aug 2010; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-flac-0.10.22.ebuild:
|
||||
Stable for HPPA (bug #329703).
|
||||
|
||||
05 Aug 2010; Samuli Suominen <ssuominen@gentoo.org>
|
||||
gst-plugins-flac-0.10.22.ebuild:
|
||||
ppc64 stable wrt #324691
|
||||
|
||||
03 Aug 2010; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-flac-0.10.22.ebuild:
|
||||
arm stable, bug #329703
|
||||
|
||||
01 Aug 2010; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-flac-0.10.21.ebuild:
|
||||
Stable on alpha, bug #324691
|
||||
|
||||
*gst-plugins-flac-0.10.23 (31 Jul 2010)
|
||||
|
||||
31 Jul 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-flac-0.10.23.ebuild:
|
||||
Version bump to be in sync with the rest; no code changes
|
||||
|
||||
27 Jul 2010; Pacho Ramos <pacho@gentoo.org>
|
||||
gst-plugins-flac-0.10.22.ebuild:
|
||||
amd64 stable, bug 329703
|
||||
|
||||
27 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-flac-0.10.22.ebuild:
|
||||
x86 stable, bug 329703
|
||||
|
||||
24 Jul 2010; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-flac-0.10.21.ebuild:
|
||||
arm stable, bug #324691
|
||||
|
||||
12 Jul 2010; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-flac-0.10.21.ebuild:
|
||||
Stable for HPPA (bug #324691).
|
||||
|
||||
*gst-plugins-flac-0.10.22 (03 Jul 2010)
|
||||
|
||||
03 Jul 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
+gst-plugins-flac-0.10.22.ebuild:
|
||||
Version bump. Compatibility with flac files with odd sample rates
|
||||
|
||||
01 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-flac-0.10.21.ebuild:
|
||||
x86 stable, bug 324691
|
||||
|
||||
27 Jun 2010; <nixnut@gentoo.org> gst-plugins-flac-0.10.21.ebuild:
|
||||
ppc stable #324691
|
||||
|
||||
24 Jun 2010; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-flac-0.10.17.ebuild:
|
||||
Stable for HPPA (bug #308379).
|
||||
|
||||
24 Jun 2010; Markos Chandras <hwoarang@gentoo.org>
|
||||
gst-plugins-flac-0.10.21.ebuild:
|
||||
Stable on amd64 wrt bug #324691
|
||||
|
||||
18 Apr 2010; <nixnut@gentoo.org> gst-plugins-flac-0.10.17.ebuild:
|
||||
ppc stable #308379
|
||||
|
||||
05 Apr 2010; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-flac-0.10.17.ebuild:
|
||||
alpha/arm/ia64/sh/sparc stable wrt #308379
|
||||
|
||||
*gst-plugins-flac-0.10.21 (05 Apr 2010)
|
||||
|
||||
05 Apr 2010; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-flac-0.10.14.ebuild, +gst-plugins-flac-0.10.21.ebuild:
|
||||
Version bump. Fixes for FLAC decoder when FLAC is embedded in a container
|
||||
such as Ogg or Matroska. Push mode related bug fixes.
|
||||
|
||||
24 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-flac-0.10.17.ebuild:
|
||||
stable x86, bug 308379
|
||||
|
||||
19 Mar 2010; Pacho Ramos <pacho@gentoo.org>
|
||||
gst-plugins-flac-0.10.17.ebuild:
|
||||
amd64 stable, bug 308379
|
||||
|
||||
05 Jan 2010; nixnut <nixnut@gentoo.org> gst-plugins-flac-0.10.16.ebuild:
|
||||
ppc stable #290343
|
||||
|
||||
29 Dec 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-flac-0.10.16.ebuild:
|
||||
ia64/sh/sparc stable wrt #290343
|
||||
|
||||
29 Nov 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-flac-0.10.16.ebuild:
|
||||
Stable on alpha, bug #290343
|
||||
|
||||
27 Nov 2009; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-flac-0.10.16.ebuild:
|
||||
arm stable, bug #290343
|
||||
|
||||
18 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-flac-0.10.16.ebuild:
|
||||
x86 stable, bug 290343
|
||||
|
||||
18 Nov 2009; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-flac-0.10.16.ebuild:
|
||||
Stable for HPPA (bug #290343).
|
||||
|
||||
17 Nov 2009; Brent Baude <ranger@gentoo.org> ChangeLog:
|
||||
Marking gst-plugins-flac-0.10.16 ppc64 stable for bug 290343
|
||||
|
||||
*gst-plugins-flac-0.10.17 (17 Nov 2009)
|
||||
|
||||
17 Nov 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-flac-0.10.15.ebuild, +gst-plugins-flac-0.10.17.ebuild:
|
||||
Version bump. Small QA fixes
|
||||
|
||||
10 Nov 2009; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-flac-0.10.16.ebuild:
|
||||
Stable on amd64, bug #290343
|
||||
|
||||
*gst-plugins-flac-0.10.16 (07 Sep 2009)
|
||||
|
||||
07 Sep 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-flac-0.10.16.ebuild:
|
||||
Version bump
|
||||
|
||||
*gst-plugins-flac-0.10.15 (21 Aug 2009)
|
||||
|
||||
21 Aug 2009; Mart Raudsepp <leio@gentoo.org> metadata.xml,
|
||||
gst-plugins-flac-0.10.14.ebuild, +gst-plugins-flac-0.10.15.ebuild:
|
||||
Version bump - many bug fixes. Add short/long description for the package.
|
||||
|
||||
05 Aug 2009; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-flac-0.10.6.ebuild, -gst-plugins-flac-0.10.8.ebuild,
|
||||
-gst-plugins-flac-0.10.11.ebuild:
|
||||
Remove old
|
||||
|
||||
01 Jul 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-flac-0.10.14.ebuild:
|
||||
arm/ia64/sh/sparc stable wrt #266986
|
||||
|
||||
23 May 2009; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-flac-0.10.14.ebuild:
|
||||
Stable for HPPA (bug #266986).
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org> ChangeLog:
|
||||
Marking gst-plugins-flac-0.10.14 ppc64 stable for bug 266986
|
||||
|
||||
21 May 2009; Brent Baude <ranger@gentoo.org> ChangeLog:
|
||||
Marking gst-plugins-flac-0.10.14 ppc stable for bug 266986
|
||||
|
||||
14 May 2009; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-flac-0.10.14.ebuild:
|
||||
amd64 stable, bug #266986
|
||||
|
||||
12 May 2009; Christian Faulhammer <fauli@gentoo.org>
|
||||
gst-plugins-flac-0.10.14.ebuild:
|
||||
stable x86, bug 266986
|
||||
|
||||
03 May 2009; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-flac-0.10.14.ebuild:
|
||||
Stable on alpha, bug #266986
|
||||
|
||||
05 Apr 2009; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-flac-0.10.8.ebuild:
|
||||
arm/sh stable wrt #232054
|
||||
|
||||
*gst-plugins-flac-0.10.14 (30 Mar 2009)
|
||||
|
||||
30 Mar 2009; Olivier Crête <tester@gentoo.org>
|
||||
+gst-plugins-flac-0.10.14.ebuild:
|
||||
Version bump
|
||||
|
||||
*gst-plugins-flac-0.10.11 (05 Dec 2008)
|
||||
|
||||
05 Dec 2008; <ssuominen@gentoo.org> +gst-plugins-flac-0.10.11.ebuild:
|
||||
Version bump.
|
||||
|
||||
23 Sep 2008; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-flac-0.10.8.ebuild:
|
||||
Stable for HPPA (bug #232054).
|
||||
|
||||
08 Aug 2008; Markus Meier <maekke@gentoo.org>
|
||||
gst-plugins-flac-0.10.8.ebuild:
|
||||
x86 stable, bug #232054
|
||||
|
||||
07 Aug 2008; Tobias Klausmann <klausman@gentoo.org>
|
||||
gst-plugins-flac-0.10.8.ebuild:
|
||||
Stable on alpha, bug #232054
|
||||
|
||||
31 Jul 2008; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-flac-0.10.8.ebuild:
|
||||
ia64/sparc stable wrt #232054
|
||||
|
||||
01 Aug 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-flac-0.10.8.ebuild:
|
||||
Marking gst-plugins-flac-0.10.8 ppc64 stable for bug 232054
|
||||
|
||||
30 Jul 2008; Brent Baude <ranger@gentoo.org>
|
||||
gst-plugins-flac-0.10.8.ebuild:
|
||||
Marking gst-plugins-flac-0.10.8 ppc stable for bug 232054
|
||||
|
||||
26 Jul 2008; Gilles Dartiguelongue <eva@gentoo.org> ChangeLog:
|
||||
fix QA warning "IUSE undefined"
|
||||
|
||||
26 Jul 2008; Olivier Crête <tester@gentoo.org>
|
||||
gst-plugins-flac-0.10.8.ebuild:
|
||||
Stable on amd64, bug #232054
|
||||
|
||||
*gst-plugins-flac-0.10.8 (29 Jun 2008)
|
||||
|
||||
29 Jun 2008; Samuli Suominen <drac@gentoo.org>
|
||||
+gst-plugins-flac-0.10.8.ebuild:
|
||||
Version bump.
|
||||
|
||||
*gst-plugins-flac-0.10.7 (21 Feb 2008)
|
||||
|
||||
21 Feb 2008; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-flac-0.10.7.ebuild:
|
||||
version bump
|
||||
|
||||
10 Jan 2008; Samuli Suominen <drac@gentoo.org>
|
||||
-gst-plugins-flac-0.10.3.ebuild, -gst-plugins-flac-0.10.5.ebuild:
|
||||
Remove old versions.
|
||||
|
||||
01 Nov 2007; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-flac-0.10.6.ebuild:
|
||||
sparc stable wrt #190900, thanks to Alex Maclean for testing
|
||||
|
||||
11 Oct 2007; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-flac-0.10.6.ebuild:
|
||||
Stable on ppc64; bug #190900
|
||||
|
||||
26 Sep 2007; Raúl Porcel <armin76@gentoo.org>
|
||||
gst-plugins-flac-0.10.6.ebuild:
|
||||
alpha/ia64 stable wrt #190900
|
||||
|
||||
21 Sep 2007; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-flac-0.10.6.ebuild:
|
||||
Stable on amd64 wrt bug #190900.
|
||||
|
||||
10 Sep 2007; nixnut <nixnut@gentoo.org> gst-plugins-flac-0.10.6.ebuild:
|
||||
Stable on ppc wrt bug 190900
|
||||
|
||||
09 Sep 2007; Christian Faulhammer <opfer@gentoo.org>
|
||||
gst-plugins-flac-0.10.6.ebuild:
|
||||
x86 stable, bug 190900
|
||||
|
||||
03 Sep 2007; Jeroen Roovers <jer@gentoo.org>
|
||||
gst-plugins-flac-0.10.6.ebuild:
|
||||
Stable for HPPA (bug #190900).
|
||||
|
||||
*gst-plugins-flac-0.10.6 (30 Aug 2007)
|
||||
|
||||
30 Aug 2007; Samuli Suominen <drac@gentoo.org>
|
||||
+gst-plugins-flac-0.10.6.ebuild:
|
||||
Version bump.
|
||||
|
||||
26 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-flac-0.10.5.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
04 Jun 2007; Michael Sterrett <mr_bones_@gentoo.org>
|
||||
gst-plugins-flac-0.10.5.ebuild:
|
||||
fix the inherit order so the DESCRIPTION is correct
|
||||
|
||||
13 May 2007; Alexis Ballier <aballier@gentoo.org>
|
||||
gst-plugins-flac-0.10.5.ebuild:
|
||||
Add patch from Josh Coalson for flac 1.1.3+ compatibility, closes bug #157707
|
||||
|
||||
16 Feb 2007; Roy Marples <uberlord@gentoo.org>
|
||||
gst-plugins-flac-0.10.5.ebuild:
|
||||
Added ~x86-fbsd keyword.
|
||||
|
||||
*gst-plugins-flac-0.10.5 (25 Jan 2007)
|
||||
|
||||
25 Jan 2007; Jim Ramsay <lack@gentoo.org> +gst-plugins-flac-0.10.5.ebuild:
|
||||
Version bump - gst-plugins-good-0.10.5 is released
|
||||
|
||||
10 Jan 2007; Mart Raudsepp <leio@gentoo.org>
|
||||
-gst-plugins-flac-0.8.8.ebuild, -gst-plugins-flac-0.8.9.ebuild,
|
||||
-gst-plugins-flac-0.8.10.ebuild, -gst-plugins-flac-0.10.0.ebuild,
|
||||
-gst-plugins-flac-0.10.1.ebuild, -gst-plugins-flac-0.10.2.ebuild:
|
||||
Prune old versions
|
||||
|
||||
20 Oct 2006; Diego Pettenò <flameeyes@gentoo.org>
|
||||
gst-plugins-flac-0.8.8.ebuild, gst-plugins-flac-0.8.9.ebuild,
|
||||
gst-plugins-flac-0.8.10.ebuild, gst-plugins-flac-0.8.11.ebuild,
|
||||
gst-plugins-flac-0.8.12.ebuild, gst-plugins-flac-0.10.0.ebuild,
|
||||
gst-plugins-flac-0.10.1.ebuild, gst-plugins-flac-0.10.2.ebuild,
|
||||
gst-plugins-flac-0.10.3.ebuild:
|
||||
Depend on 1.1.2 version of flac, as the 1.1.3 version changes API.
|
||||
|
||||
19 Sep 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-flac-0.10.3.ebuild:
|
||||
Mark 0.10.3 stable on ia64. #139612
|
||||
|
||||
19 Aug 2006; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-flac-0.10.3.ebuild:
|
||||
Add ~ia64 keyword.
|
||||
|
||||
16 Aug 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-flac-0.10.3.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
03 Aug 2006; Joshua Kinard <kumba@gentoo.org>
|
||||
gst-plugins-flac-0.8.8.ebuild, gst-plugins-flac-0.8.9.ebuild,
|
||||
gst-plugins-flac-0.8.10.ebuild, gst-plugins-flac-0.8.11.ebuild,
|
||||
gst-plugins-flac-0.8.12.ebuild, gst-plugins-flac-0.10.0.ebuild,
|
||||
gst-plugins-flac-0.10.1.ebuild:
|
||||
Removing mips keywords as gst-plugins no longer functions too well on mips.
|
||||
|
||||
22 Jul 2006; Thomas Cort <tcort@gentoo.org>
|
||||
gst-plugins-flac-0.10.3.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
17 Jul 2006; Daniel Gryniewicz <dang@gentoo.org>
|
||||
gst-plugins-flac-0.10.3.ebuild:
|
||||
Marked stable on amd64 for bug #139612
|
||||
|
||||
16 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-flac-0.10.3.ebuild:
|
||||
hppa stable, bug #139612
|
||||
|
||||
14 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-flac-0.10.3.ebuild:
|
||||
ppc stable, bug #139612
|
||||
|
||||
12 Jul 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-flac-0.10.3.ebuild:
|
||||
Stable on x86 wrt bug #139612.
|
||||
|
||||
10 Jul 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-flac-0.10.3.ebuild:
|
||||
Stable on sparc wrt #139612
|
||||
|
||||
*gst-plugins-flac-0.10.3 (25 May 2006)
|
||||
|
||||
25 May 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-flac-0.10.3.ebuild:
|
||||
version bump
|
||||
|
||||
21 May 2006; Thomas Cort <tcort@gentoo.org>
|
||||
gst-plugins-flac-0.10.2.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
14 May 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-flac-0.10.2.ebuild:
|
||||
Added ~hppa
|
||||
|
||||
05 May 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-flac-0.10.2.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
03 May 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-flac-0.10.2.ebuild:
|
||||
Stable on sparc wrt #128737
|
||||
|
||||
13 Apr 2006; Thomas Cort <tcort@gentoo.org>
|
||||
gst-plugins-flac-0.10.2.ebuild:
|
||||
Added ~alpha keyword.
|
||||
|
||||
08 Apr 2006; Tobias Scherbaum <dertobi123@gentoo.org>
|
||||
gst-plugins-flac-0.10.2.ebuild:
|
||||
Added to ~ppc
|
||||
|
||||
23 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-flac-0.10.2.ebuild:
|
||||
Keyworded ~sparc
|
||||
|
||||
16 Mar 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-flac-0.10.2.ebuild:
|
||||
Added ~ppc64
|
||||
|
||||
*gst-plugins-flac-0.8.12 (23 Feb 2006)
|
||||
|
||||
23 Feb 2006; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-flac-0.8.12.ebuild:
|
||||
version bump of 0.8 series
|
||||
|
||||
18 Feb 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-flac-0.8.11.ebuild:
|
||||
Mark 0.8.11 stable on ia64
|
||||
|
||||
*gst-plugins-flac-0.10.2 (15 Feb 2006)
|
||||
|
||||
15 Feb 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
+gst-plugins-flac-0.10.2.ebuild:
|
||||
Version bump from upstream
|
||||
|
||||
09 Feb 2006; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-flac-0.8.11.ebuild:
|
||||
Mark 0.8.11 stable on alpha
|
||||
|
||||
09 Feb 2006; Guy Martin <gmsoft@gentoo.org>
|
||||
gst-plugins-flac-0.8.11.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-flac-0.8.11.ebuild:
|
||||
Stable on ppc wrt bug #119634.
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-flac-0.8.11.ebuild:
|
||||
Stable on amd64 wrt bug #119634.
|
||||
|
||||
23 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
|
||||
gst-plugins-flac-0.8.11.ebuild:
|
||||
Stable on x86 wrt bug #119634.
|
||||
|
||||
22 Jan 2006; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-flac-0.8.11.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
20 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-flac-0.8.11.ebuild:
|
||||
Stable on sparc wrt #119634
|
||||
|
||||
*gst-plugins-flac-0.10.1 (14 Jan 2006)
|
||||
|
||||
14 Jan 2006; Saleem Abdulrasool <compnerd@gentoo.org>
|
||||
+gst-plugins-flac-0.10.1.ebuild:
|
||||
Version bump from upstream
|
||||
|
||||
*gst-plugins-flac-0.10.0 (05 Dec 2005)
|
||||
|
||||
05 Dec 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
-gst-plugins-flac-0.9.7.ebuild, +gst-plugins-flac-0.10.0.ebuild:
|
||||
0.10.0 release
|
||||
|
||||
*gst-plugins-flac-0.9.7 (02 Dec 2005)
|
||||
|
||||
02 Dec 2005; <zaheer@gentoo.org> +gst-plugins-flac-0.9.7.ebuild:
|
||||
0.10 Prerelease
|
||||
|
||||
15 Sep 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-flac-0.8.10.ebuild:
|
||||
Mark 0.8.10 stable on alpha
|
||||
|
||||
*gst-plugins-flac-0.8.11 (05 Sep 2005)
|
||||
|
||||
05 Sep 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-flac-0.8.11.ebuild:
|
||||
version bump
|
||||
|
||||
03 Sep 2005; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-flac-0.8.10.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
02 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
|
||||
gst-plugins-flac-0.8.10.ebuild:
|
||||
Stable on ppc.
|
||||
|
||||
31 Aug 2005; Herbie Hopkins <herbs@gentoo.org>
|
||||
gst-plugins-flac-0.8.10.ebuild:
|
||||
Stable on amd64.
|
||||
|
||||
29 Aug 2005; Guy Martin <gmsoft@gentoo.org>
|
||||
gst-plugins-flac-0.8.10.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
26 Aug 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-flac-0.8.10.ebuild:
|
||||
stable on ia64
|
||||
|
||||
26 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-flac-0.8.10.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
25 Aug 2005; Leonardo Boshell <leonardop@gentoo.org>
|
||||
gst-plugins-flac-0.8.10.ebuild:
|
||||
Stable on x86.
|
||||
|
||||
12 Jul 2005; Stephen P. Becker <geoman@gentoo.org>
|
||||
gst-plugins-flac-0.8.8.ebuild:
|
||||
stable on mips
|
||||
|
||||
*gst-plugins-flac-0.8.10 (02 Jul 2005)
|
||||
|
||||
02 Jul 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-flac-0.8.10.ebuild:
|
||||
version bump
|
||||
|
||||
*gst-plugins-flac-0.8.9 (08 Jun 2005)
|
||||
|
||||
08 Jun 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
+gst-plugins-flac-0.8.9.ebuild:
|
||||
version bump
|
||||
|
||||
22 May 2005; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-flac-0.8.8.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
15 May 2005; Guy Martin <gmsoft@gentoo.org> gst-plugins-flac-0.8.8.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
09 May 2005; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-flac-0.8.8.ebuild:
|
||||
stable on ia64
|
||||
|
||||
30 Apr 2005; Michael Hanselmann <hansmi@gentoo.org>
|
||||
gst-plugins-flac-0.8.8.ebuild:
|
||||
Stable on ppc.
|
||||
|
||||
29 Apr 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-flac-0.8.8.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
27 Apr 2005; Jan Brinkmann <luckyduck@gentoo.org>
|
||||
gst-plugins-flac-0.8.8.ebuild:
|
||||
stable on amd64
|
||||
|
||||
25 Apr 2005; Zaheer Abbas Merali <zaheerm@gentoo.org>
|
||||
gst-plugins-flac-0.8.8.ebuild:
|
||||
stabilise on x86
|
||||
|
||||
08 Apr 2005; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-flac-0.8.8.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
02 Apr 2005; <zaheerm@gentoo.org> -gst-plugins-flac-0.6.4.ebuild:
|
||||
removing gstreamer 0.6.x
|
||||
|
||||
02 Apr 2005; Stephen P. Becker <geoman@gentoo.org>
|
||||
gst-plugins-flac-0.8.7.ebuild:
|
||||
stable on mips
|
||||
|
||||
21 Mar 2005; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-flac-0.8.7.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
13 Mar 2005; Mike Gardiner <obz@gentoo.org> gst-plugins-flac-0.8.7.ebuild:
|
||||
Keyworded ppc
|
||||
|
||||
11 Mar 2005; Heinrich Wendel <lanius@gentoo.org>
|
||||
gst-plugins-flac-0.8.7.ebuild:
|
||||
stable on amd64
|
||||
|
||||
09 Mar 2005; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-flac-0.8.7.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
08 Mar 2005; foser <foser@gentoo.org> gst-plugins-flac-0.8.7.ebuild :
|
||||
Fix flac dep (#70164)
|
||||
|
||||
*gst-plugins-flac-0.8.8 (08 Mar 2005)
|
||||
|
||||
25 Jan 2005; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-flac-0.8.5.ebuild:
|
||||
Stable on ppc64
|
||||
|
||||
12 Jan 2005; Guy Martin <gmsoft@gentoo.org> gst-plugins-flac-0.8.5.ebuild:
|
||||
Stable on hppa.
|
||||
|
||||
*gst-plugins-flac-0.8.7 (05 Jan 2005)
|
||||
|
||||
16 Dec 2004; Dylan Carlson <absinthe@gentoo.org>
|
||||
gst-plugins-flac-0.8.5.ebuild:
|
||||
Stable on amd64.
|
||||
|
||||
04 Dec 2004; Markus Rothe <corsair@gentoo.org>
|
||||
gst-plugins-flac-0.8.5.ebuild:
|
||||
Added ~ppc64 to KEYWORDS; bug #72454
|
||||
|
||||
15 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-flac-0.8.5.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
15 Nov 2004; Bryan Østergaard <kloeri@gentoo.org>
|
||||
gst-plugins-flac-0.8.5.ebuild:
|
||||
Stable on alpha.
|
||||
|
||||
03 Nov 2004; Stephen P. Becker <geoman@gentoo.org>
|
||||
gst-plugins-flac-0.8.5.ebuild:
|
||||
added ~mips keyword
|
||||
|
||||
*gst-plugins-flac-0.8.5 (22 Oct 2004)
|
||||
|
||||
20 Aug 2004; Gustavo Zacarias <gustavoz@gentoo.org>
|
||||
gst-plugins-flac-0.8.2.ebuild:
|
||||
Stable on sparc
|
||||
|
||||
18 Aug 2004; Aron Griffis <agriffis@gentoo.org>
|
||||
gst-plugins-flac-0.8.3.ebuild:
|
||||
add ~alpha and ~ia64 #56703
|
||||
|
||||
*gst-plugins-flac-0.8.3 (18 Aug 2004)
|
||||
|
||||
18 Aug 2004; foser <foser@gentoo.org> gst-plugins-flac-0.8.3.ebuild :
|
||||
New release
|
||||
|
||||
01 Aug 2004; <spider@gentoo.org> gst-plugins-flac-0.8.2.ebuild:
|
||||
stable on x86
|
||||
|
||||
*gst-plugins-flac-0.8.2 (29 Jun 2004)
|
||||
|
||||
29 Jun 2004; foser <foser@gentoo.org> gst-plugins-flac-0.8.2.ebuild :
|
||||
New release
|
||||
|
||||
*gst-plugins-flac-0.8.1 (23 Apr 2004)
|
||||
|
||||
23 Apr 2004; foser <foser@gentoo.org> gst-plugins-flac-0.8.1.ebuild :
|
||||
New release
|
||||
|
||||
*gst-plugins-flac-0.8.0 (06 Apr 2004)
|
||||
|
||||
06 Apr 2004; foser <foser@gentoo.org> gst-plugins-flac-0.8.0.ebuild :
|
||||
New release for gst 0.8 (#46711)
|
||||
|
||||
25 Feb 2004; Daniel Ahlberg <aliz@gentoo.org> gst-plugins-flac-0.6.4.ebuild:
|
||||
Adding amd64 keyword.
|
||||
|
||||
*gst-plugins-flac-0.6.4 (23 Oct 2003)
|
||||
|
||||
23 Oct 2003; foser <foser@gentoo.org> gst-plugins-flac-0.6.4.ebuild :
|
||||
New version
|
||||
*gst-plugins-flac-0.6.3 (23 Sep 2003)
|
||||
|
||||
23 Sep 2003; Brad Laue <brad@gentoo.org> gst-plugins-flac-0.6.3.ebuild,
|
||||
metadata.xml:
|
||||
Initial commit, flac plugin for gstreamer for flac encoding
|
||||
|
12
media-plugins/gst-plugins-flac/Manifest
Normal file
12
media-plugins/gst-plugins-flac/Manifest
Normal file
@ -0,0 +1,12 @@
|
||||
DIST gst-plugins-good-0.10.16.tar.bz2 2573811 RMD160 51f6dfc95932ae3a25d017257a3587e3081ad163 SHA1 655a22ea3f4f4dc0f9f200af7c85b4b725d960e7 SHA256 64bd5177913b8ccaa1502e88a255adb3e6024202ba8983e6a956061e57fe1640
|
||||
DIST gst-plugins-good-0.10.17.tar.bz2 2671700 RMD160 770a5a091751ea362600c2824cc860dc3f8830b3 SHA1 fb0b9054ee7d1674a7c2bcc2fccf5331d8e9b80c SHA256 4f41fbd325270416c9f55d900e470482a7d1e7efbdbb725ed03a085dec307ad6
|
||||
DIST gst-plugins-good-0.10.21.tar.bz2 2675836 RMD160 71cfebe965409ffc6d6d3a5b08e3923fc966fffa SHA1 ed619824f5ca4592bfe2b2f6df9d53f08bf5f360 SHA256 24445a1cf56302ab4ad5f56055d5c3d81c704b8f9f6875fe78a25d4f72716d22
|
||||
DIST gst-plugins-good-0.10.22.tar.bz2 2701164 RMD160 08784f5c5548af6328d0c898bd06b16c2f82457d SHA1 381f3603a1704aa36297937808220fb8c6c102f4 SHA256 89ba50e0e3b7355bd75c9b0a60866a67b9bd1de38458e540a57853998103d69f
|
||||
DIST gst-plugins-good-0.10.23.tar.bz2 2882183 RMD160 b19a61d796e0c384e074f61fc0515826fb6f6061 SHA1 d819a2690e5bfe83f1277c850b737a13f8f28c12 SHA256 2e7771a611cedb1e8208601cb26744fbf33109598e222afee1be8811ba4babcf
|
||||
EBUILD gst-plugins-flac-0.10.16.ebuild 551 RMD160 4f133e417f8020d399486f61c886288236b102e5 SHA1 da31532aaac41766dce0dadf40809c752fdc9ff0 SHA256 9e17a0ab3766b222bbd28ef4254a8133594559298399e18fd9944e890ba8a9da
|
||||
EBUILD gst-plugins-flac-0.10.17.ebuild 529 RMD160 7098e1bdbc468a673ea97978d1479246956e028f SHA1 1d9441688c2f1d9861929ddaa2e44e39fcc95cbc SHA256 dce7477b2e62339bd84494041b6cabcab5e3dcf5e2d68310aedb527f56e6ce1b
|
||||
EBUILD gst-plugins-flac-0.10.21.ebuild 533 RMD160 0675855cbacc2c04e23ea9645d5141606479c38d SHA1 b1ef5079852586b5cf450bb195ad343b376e51f4 SHA256 c272cc19bd2c9e7d66888e3e6bb219f1e82960ca9124b9771e09ecdb5f258844
|
||||
EBUILD gst-plugins-flac-0.10.22.ebuild 499 RMD160 60eae794f4e1edeab8e9fed5c5df13a109f6b6f2 SHA1 2dd391ea62b872faa625d3287c2db1389342687c SHA256 7fa6b4d4a19aa58036c99dd53d40aabaceb14882b71edadea0f42ec6b30a071b
|
||||
EBUILD gst-plugins-flac-0.10.23.ebuild 507 RMD160 feaac1cc470010c27624ffc9e23143cc328337a8 SHA1 0d6dc8e91da5c6fbd17a70a561de10906a326f83 SHA256 9d28cee2369478a82069a582dc5535798a3d59405a5077c1ad4496e8fb0e18d8
|
||||
MISC ChangeLog 18929 RMD160 f3138226f9881371a6fa43360b67d556c8c54266 SHA1 1a183a1f6d93ccf3be7ab3447c376b4f8d78cb0c SHA256 d22312eec78573ca478b79afc9abd42f5a6d09edd4297857d2b1fc79f52afb6f
|
||||
MISC metadata.xml 455 RMD160 a047f02e86ccc2e27a66c7363fe6aeec771c5e10 SHA1 efd92866fdc53183ceb62de00a39c061e1ae5db9 SHA256 05a3a5fb0be87346ffc02f9c05bbf64d81735f374c10565360481979ce758f47
|
@ -0,0 +1,15 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-flac/gst-plugins-flac-0.10.16.ebuild,v 1.9 2010/01/05 18:18:07 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer encoder/decoder/tagger for FLAC"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/flac-1.1.4
|
||||
>=media-libs/gstreamer-0.10.24
|
||||
>=media-libs/gst-plugins-base-0.10.24"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/pkgconfig"
|
@ -0,0 +1,14 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-flac/gst-plugins-flac-0.10.17.ebuild,v 1.6 2010/06/24 16:53:53 jer Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer encoder/decoder/tagger for FLAC"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ~ppc64 sh sparc x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/flac-1.1.4
|
||||
>=media-libs/gstreamer-0.10.25
|
||||
>=media-libs/gst-plugins-base-0.10.25"
|
||||
DEPEND="${RDEPEND}"
|
@ -0,0 +1,14 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-flac/gst-plugins-flac-0.10.21.ebuild,v 1.8 2010/09/04 11:59:52 armin76 Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer encoder/decoder/tagger for FLAC"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ~ppc64 sh sparc x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/flac-1.1.4
|
||||
>=media-libs/gstreamer-0.10.27
|
||||
>=media-libs/gst-plugins-base-0.10.27"
|
||||
DEPEND="${RDEPEND}"
|
@ -0,0 +1,13 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-flac/gst-plugins-flac-0.10.22.ebuild,v 1.9 2010/09/11 10:01:25 nixnut Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer encoder/decoder/tagger for FLAC"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/flac-1.1.4
|
||||
>=media-libs/gst-plugins-base-0.10.29"
|
||||
DEPEND="${RDEPEND}"
|
@ -0,0 +1,13 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-flac/gst-plugins-flac-0.10.23.ebuild,v 1.1 2010/07/31 10:56:48 leio Exp $
|
||||
|
||||
inherit gst-plugins-good
|
||||
|
||||
DESCRIPTION="GStreamer encoder/decoder/tagger for FLAC"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=media-libs/flac-1.1.4
|
||||
>=media-libs/gst-plugins-base-0.10.29"
|
||||
DEPEND="${RDEPEND}"
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user