* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog vdr-plugin.eclass
@ 2012-01-15 17:11 Christian Ruppert (idl0r)
0 siblings, 0 replies; 14+ messages in thread
From: Christian Ruppert (idl0r) @ 2012-01-15 17:11 UTC (permalink / raw
To: gentoo-commits
idl0r 12/01/15 17:11:08
Modified: ChangeLog vdr-plugin.eclass
Log:
Add EAPI 4 support
Revision Changes Path
1.89 eclass/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.89&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.89&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.88&r2=1.89
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- ChangeLog 15 Jan 2012 16:40:12 -0000 1.88
+++ ChangeLog 15 Jan 2012 17:11:08 -0000 1.89
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.88 2012/01/15 16:40:12 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.89 2012/01/15 17:11:08 idl0r Exp $
+
+ 15 Jan 2012; Christian Ruppert <idl0r@gentoo.org> vdr-plugin.eclass:
+ Add EAPI 4 support
15 Jan 2012; Michał Górny <mgorny@gentoo.org> autotools-utils.eclass:
Improve the --docdir configure grep.
1.78 eclass/vdr-plugin.eclass
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.78&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.78&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?r1=1.77&r2=1.78
Index: vdr-plugin.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- vdr-plugin.eclass 31 Dec 2011 01:01:56 -0000 1.77
+++ vdr-plugin.eclass 15 Jan 2012 17:11:08 -0000 1.78
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.77 2011/12/31 01:01:56 hd_brummy Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.78 2012/01/15 17:11:08 idl0r Exp $
#
# Author:
# Matthias Schwarzott <zzam@gentoo.org>
@@ -68,7 +68,7 @@
inherit base multilib eutils flag-o-matic
-if ! has "${EAPI:-0}" 0 1 2 3; then
+if ! has "${EAPI:-0}" 0 1 2 3 4; then
die "API of vdr-plugin.eclass in EAPI=\"${EAPI}\" not established"
fi
@@ -479,7 +479,7 @@
fi
if [ -z "$1" ]; then
case "${EAPI:-0}" in
- 2|3)
+ 2|3|4)
vdr-plugin_src_util unpack
;;
*)
@@ -622,7 +622,7 @@
}
case "${EAPI:-0}" in
- 2|3)
+ 2|3|4)
EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm pkg_config
;;
*)
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog vdr-plugin.eclass
@ 2012-01-15 20:54 Christian Ruppert (idl0r)
0 siblings, 0 replies; 14+ messages in thread
From: Christian Ruppert (idl0r) @ 2012-01-15 20:54 UTC (permalink / raw
To: gentoo-commits
idl0r 12/01/15 20:54:56
Modified: ChangeLog vdr-plugin.eclass
Log:
Add maintainer, description tags etc.
Revision Changes Path
1.91 eclass/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.91&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.91&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.90&r2=1.91
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog 15 Jan 2012 20:03:50 -0000 1.90
+++ ChangeLog 15 Jan 2012 20:54:56 -0000 1.91
@@ -1,11 +1,14 @@
# ChangeLog for eclass directory
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.90 2012/01/15 20:03:50 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.91 2012/01/15 20:54:56 idl0r Exp $
15 Jan 2012; Michał Górny <mgorny@gentoo.org> autotools-utils.eclass:
Quiet grep output.
15 Jan 2012; Christian Ruppert <idl0r@gentoo.org> vdr-plugin.eclass:
+ Add maintainer, description tags etc.
+
+ 15 Jan 2012; Christian Ruppert <idl0r@gentoo.org> vdr-plugin.eclass:
Add EAPI 4 support
15 Jan 2012; Michał Górny <mgorny@gentoo.org> autotools-utils.eclass:
1.79 eclass/vdr-plugin.eclass
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.79&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.79&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?r1=1.78&r2=1.79
Index: vdr-plugin.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- vdr-plugin.eclass 15 Jan 2012 17:11:08 -0000 1.78
+++ vdr-plugin.eclass 15 Jan 2012 20:54:56 -0000 1.79
@@ -1,16 +1,18 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.78 2012/01/15 17:11:08 idl0r Exp $
-#
+# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.79 2012/01/15 20:54:56 idl0r Exp $
+
+# @ECLASS: vdr-plugin.eclass
+# @MAINTAINER:
+# vdr@gentoo.org
+# @BLURB: common vdr plugin ebuild functions
+# @DESCRIPTION:
+# Eclass for easing maitenance of vdr plugin ebuilds
+
# Author:
# Matthias Schwarzott <zzam@gentoo.org>
# Joerg Bornkessel <hd_brummy@gentoo.org>
-# vdr-plugin.eclass
-#
-# eclass to create ebuilds for vdr plugins
-#
-
# Example ebuild (basic version without patching):
#
# EAPI="2"
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog vdr-plugin.eclass
@ 2012-02-11 20:44 Christian Ruppert (idl0r)
0 siblings, 0 replies; 14+ messages in thread
From: Christian Ruppert (idl0r) @ 2012-02-11 20:44 UTC (permalink / raw
To: gentoo-commits
idl0r 12/02/11 20:44:40
Modified: ChangeLog vdr-plugin.eclass
Log:
Remove vdr_add_local_patch() and use epatch_user() from eutils instead. Issue a error in case the old variable to pass user patches is still used. Also the example has been removed as it was actually a common ebuild example, nothing specific. Update descriptions.
Revision Changes Path
1.127 eclass/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.127&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.127&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.126&r2=1.127
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.126
retrieving revision 1.127
diff -u -r1.126 -r1.127
--- ChangeLog 11 Feb 2012 12:20:33 -0000 1.126
+++ ChangeLog 11 Feb 2012 20:44:40 -0000 1.127
@@ -1,6 +1,12 @@
# ChangeLog for eclass directory
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.126 2012/02/11 12:20:33 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.127 2012/02/11 20:44:40 idl0r Exp $
+
+ 11 Feb 2012; Christian Ruppert <idl0r@gentoo.org> vdr-plugin.eclass:
+ Remove vdr_add_local_patch() and use epatch_user() from eutils instead. Issue
+ a error in case the old variable to pass user patches is still used. Also the
+ example has been removed as it was actually a common ebuild example, nothing
+ specific. Update descriptions.
11 Feb 2012; Ulrich Müller <ulm@gentoo.org> elisp-common.eclass:
Delete declaration of unused variable.
1.80 eclass/vdr-plugin.eclass
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.80&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.80&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?r1=1.79&r2=1.80
Index: vdr-plugin.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- vdr-plugin.eclass 15 Jan 2012 20:54:56 -0000 1.79
+++ vdr-plugin.eclass 11 Feb 2012 20:44:40 -0000 1.80
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.79 2012/01/15 20:54:56 idl0r Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.80 2012/02/11 20:44:40 idl0r Exp $
# @ECLASS: vdr-plugin.eclass
# @MAINTAINER:
@@ -9,64 +9,39 @@
# @DESCRIPTION:
# Eclass for easing maitenance of vdr plugin ebuilds
-# Author:
-# Matthias Schwarzott <zzam@gentoo.org>
-# Joerg Bornkessel <hd_brummy@gentoo.org>
-
-# Example ebuild (basic version without patching):
-#
-# EAPI="2"
-# inherit vdr-plugin
-# IUSE=""
-# SLOT="0"
-# DESCRIPTION="vdr Plugin: DVB Frontend Status Monitor (signal strengt/noise)"
-# HOMEPAGE="http://www.saunalahti.fi/~rahrenbe/vdr/femon/"
-# SRC_URI="http://www.saunalahti.fi/~rahrenbe/vdr/femon/files/${P}.tgz"
-# LICENSE="GPL-2"
-# KEYWORDS="~x86"
-# DEPEND=">=media-video/vdr-1.6.0"
-#
-#
-
-# For patching you should modify src_prepare phase:
-#
-# src_prepare() {
-# epatch "${FILESDIR}"/${P}-xxx.patch
-# vdr-plugin_src_prepare
-# }
-
-# Installation of a config file for the plugin
-#
-# If ${VDR_CONFD_FILE} is set install this file
-# else install ${FILESDIR}/confd if it exists.
-
-# Gets installed as /etc/conf.d/vdr.${VDRPLUGIN}.
-# For the plugin vdr-femon this would be /etc/conf.d/vdr.femon
-
-
-# Installation of an rc-addon file for the plugin
-#
-# If ${VDR_RCADDON_FILE} is set install this file
-# else install ${FILESDIR}/rc-addon.sh if it exists.
-#
-# Gets installed under ${VDR_RC_DIR}/plugin-${VDRPLUGIN}.sh
-# (in example vdr-femon this would be /usr/share/vdr/rcscript/plugin-femon.sh)
-#
-# This file is sourced by the startscript when plugin is activated in /etc/conf.d/vdr
-# It could be used for special startup actions for this plugins, or to create the
-# plugin command line options from a nicer version of a conf.d file.
-
-# HowTo use own local patches; Example
-#
-# Add to your /etc/make.conf:
-# VDR_LOCAL_PATCHES_DIR="/usr/local/patch"
-#
-# Add two DIR's in your local patch dir, ${PN}/${PV},
-# e.g for vdr-burn-0.1.0 should be:
-# /usr/local/patch/vdr-burn/0.1.0/
-#
-# all patches which ending on diff or patch in this DIR will automatically applied
+# Authors:
+# Matthias Schwarzott <zzam@gentoo.org>
+# Joerg Bornkessel <hd_brummy@gentoo.org>
+# Christian Ruppert <idl0r@gentoo.org>
+
+# Plugin config file installation:
+#
+# A plugin config file can be specified through the $VDR_CONFD_FILE variable, it
+# defaults to ${FILESDIR}/confd. Each config file will be installed as e.g.
+# ${D}/etc/conf.d/vdr.${VDRPLUGIN}
+
+# Installation of rc-addon files:
+# NOTE: rc-addon files must be valid shell scripts!
+#
+# Installing rc-addon files is basically the same as for plugin config files
+# (see above), it's just using the $VDR_RCADDON_FILE variable instead.
+# The default value when $VDR_RCADDON_FILE is undefined is:
+# ${FILESDIR}/rc-addon.sh and will be installed as
+# ${VDR_RC_DIR}/plugin-${VDRPLUGIN}.sh
+#
+# The rc-addon files will be sourced by the startscript when the specific plugin
+# has been enabled.
+# rc-addon files may be used to prepare everything that is necessary for the
+# plugin start/stop, like passing extra command line options and so on.
+
+# Applying your own local/user patches:
+# This is done by using the epatch_user() function of the eutils.eclass.
+# Simply put your patches into one of these directories:
+# /etc/portage/patches/<CATEGORY>/<PF|P|PN>/
+# Quote: where the first of these three directories to exist will be the one to
+# use, ignoring any more general directories which might exist as well.
#
+# For more details about it please take a look at the eutils.class.
inherit base multilib eutils flag-o-matic
@@ -248,16 +223,6 @@
touch "${WORKDIR}"/.vdr-plugin_makefile_patched
}
-vdr_add_local_patch() {
- if test -d "${VDR_LOCAL_PATCHES_DIR}/${PN}"; then
- echo
- einfo "Applying local patches"
- for LOCALPATCH in "${VDR_LOCAL_PATCHES_DIR}/${PN}/${PV}"/*.{diff,patch}; do
- test -f "${LOCALPATCH}" && epatch "${LOCALPATCH}"
- done
- fi
-}
-
vdr_has_gettext() {
has_version ">=media-video/vdr-1.5.7"
}
@@ -437,12 +402,19 @@
einfo "Compiling against"
einfo "\tvdr-${VDRVERSION} [API version ${APIVERSION}]"
+
+
+ if [ -n "${VDR_LOCAL_PATCHES_DIR}" ]; then
+ eerror "Using VDR_LOCAL_PATCHES_DIR is deprecated!"
+ eerror "Please move all your patches into"
+ eerror "${EROOT}/etc/portage/patches/${CATEGORY}/${P}"
+ eerror "and remove or unset the VDR_LOCAL_PATCHES_DIR variable."
+ die
+ fi
}
vdr-plugin_src_util() {
-
while [ "$1" ]; do
-
case "$1" in
all)
vdr-plugin_src_util unpack add_local_patch patchmakefile i18n
@@ -455,7 +427,7 @@
;;
add_local_patch)
cd "${S}" || die "Could not change to plugin-source-directory!"
- vdr_add_local_patch
+ epatch_user
;;
patchmakefile)
cd "${S}" || die "Could not change to plugin-source-directory!"
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog vdr-plugin.eclass
@ 2012-02-15 18:41 Joerg Bornkessel (hd_brummy)
0 siblings, 0 replies; 14+ messages in thread
From: Joerg Bornkessel (hd_brummy) @ 2012-02-15 18:41 UTC (permalink / raw
To: gentoo-commits
hd_brummy 12/02/15 18:41:25
Modified: ChangeLog vdr-plugin.eclass
Log:
move media-tv to virtual/linuxtv-dvb-headers, bug #403929
Revision Changes Path
1.136 eclass/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.136&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.136&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.135&r2=1.136
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.135
retrieving revision 1.136
diff -u -r1.135 -r1.136
--- ChangeLog 13 Feb 2012 23:50:12 -0000 1.135
+++ ChangeLog 15 Feb 2012 18:41:24 -0000 1.136
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.135 2012/02/13 23:50:12 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.136 2012/02/15 18:41:24 hd_brummy Exp $
+
+ 15 Feb 2012; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-plugin.eclass:
+ move media-tv to virtual/linuxtv-dvb-headers, bug #403929
13 Feb 2012; Zac Medico <zmedico@gentoo.org> python.eclass:
Enable PyPy 1.8 support. Merged from the progress overlay:
1.81 eclass/vdr-plugin.eclass
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?r1=1.80&r2=1.81
Index: vdr-plugin.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- vdr-plugin.eclass 11 Feb 2012 20:44:40 -0000 1.80
+++ vdr-plugin.eclass 15 Feb 2012 18:41:24 -0000 1.81
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.80 2012/02/11 20:44:40 idl0r Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.81 2012/02/15 18:41:24 hd_brummy Exp $
# @ECLASS: vdr-plugin.eclass
# @MAINTAINER:
@@ -65,7 +65,7 @@
COMMON_DEPEND=">=media-tv/gentoo-vdr-scripts-0.4.2"
DEPEND="${COMMON_DEPEND}
- media-tv/linuxtv-dvb-headers"
+ virtual/linuxtv-dvb-headers"
RDEPEND="${COMMON_DEPEND}
>=app-admin/eselect-vdr-0.0.2"
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog vdr-plugin.eclass
@ 2012-03-09 22:44 Joerg Bornkessel (hd_brummy)
0 siblings, 0 replies; 14+ messages in thread
From: Joerg Bornkessel (hd_brummy) @ 2012-03-09 22:44 UTC (permalink / raw
To: gentoo-commits
hd_brummy 12/03/09 22:44:58
Modified: ChangeLog vdr-plugin.eclass
Log:
removed vdr-plugin_pkg_config function, unused, changed on 2008 to eselect vdrplugin handling
Revision Changes Path
1.159 eclass/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.159&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.159&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.158&r2=1.159
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.158
retrieving revision 1.159
diff -u -r1.158 -r1.159
--- ChangeLog 9 Mar 2012 22:01:11 -0000 1.158
+++ ChangeLog 9 Mar 2012 22:44:58 -0000 1.159
@@ -1,6 +1,10 @@
# ChangeLog for eclass directory
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.158 2012/03/09 22:01:11 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.159 2012/03/09 22:44:58 hd_brummy Exp $
+
+ 09 Mar 2012; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-plugin.eclass:
+ removed vdr-plugin_pkg_config function, unused, changed on 2008 to eselect
+ vdrplugin handling
09 Mar 2012; Sergei Trofimovich <slyfox@gentoo.org> haskell-cabal.eclass:
Drop haddock from DEPENDS when USE=doc haddock. haddock-2.9.2+ can be used
1.82 eclass/vdr-plugin.eclass
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.82&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.82&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?r1=1.81&r2=1.82
Index: vdr-plugin.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- vdr-plugin.eclass 15 Feb 2012 18:41:24 -0000 1.81
+++ vdr-plugin.eclass 9 Mar 2012 22:44:58 -0000 1.82
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.81 2012/02/15 18:41:24 hd_brummy Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.82 2012/03/09 22:44:58 hd_brummy Exp $
# @ECLASS: vdr-plugin.eclass
# @MAINTAINER:
@@ -590,11 +590,6 @@
delete_orphan_plugindb_file
}
-vdr-plugin_pkg_config() {
- ewarn "emerge --config ${PN} is no longer supported"
- vdr-plugin_print_enable_command
-}
-
case "${EAPI:-0}" in
2|3|4)
EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm pkg_config
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog vdr-plugin.eclass
@ 2012-03-09 23:14 Joerg Bornkessel (hd_brummy)
0 siblings, 0 replies; 14+ messages in thread
From: Joerg Bornkessel (hd_brummy) @ 2012-03-09 23:14 UTC (permalink / raw
To: gentoo-commits
hd_brummy 12/03/09 23:14:47
Modified: ChangeLog vdr-plugin.eclass
Log:
readded vdr-plugin_pkg_config dummy function
Revision Changes Path
1.160 eclass/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.160&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.160&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.159&r2=1.160
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -r1.159 -r1.160
--- ChangeLog 9 Mar 2012 22:44:58 -0000 1.159
+++ ChangeLog 9 Mar 2012 23:14:46 -0000 1.160
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.159 2012/03/09 22:44:58 hd_brummy Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.160 2012/03/09 23:14:46 hd_brummy Exp $
+
+ 09 Mar 2012; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-plugin.eclass:
+ readded vdr-plugin_pkg_config dummy function
09 Mar 2012; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-plugin.eclass:
removed vdr-plugin_pkg_config function, unused, changed on 2008 to eselect
1.83 eclass/vdr-plugin.eclass
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.83&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.83&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?r1=1.82&r2=1.83
Index: vdr-plugin.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- vdr-plugin.eclass 9 Mar 2012 22:44:58 -0000 1.82
+++ vdr-plugin.eclass 9 Mar 2012 23:14:46 -0000 1.83
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.82 2012/03/09 22:44:58 hd_brummy Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.83 2012/03/09 23:14:46 hd_brummy Exp $
# @ECLASS: vdr-plugin.eclass
# @MAINTAINER:
@@ -590,6 +590,10 @@
delete_orphan_plugindb_file
}
+vdr-plugin_pkg_config() {
+:
+}
+
case "${EAPI:-0}" in
2|3|4)
EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm pkg_config
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog vdr-plugin.eclass
@ 2012-03-18 23:33 Joerg Bornkessel (hd_brummy)
0 siblings, 0 replies; 14+ messages in thread
From: Joerg Bornkessel (hd_brummy) @ 2012-03-18 23:33 UTC (permalink / raw
To: gentoo-commits
hd_brummy 12/03/18 23:33:49
Modified: ChangeLog vdr-plugin.eclass
Log:
move eerror to ewarn, make the gettext warning less importend
Revision Changes Path
1.171 eclass/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.171&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.171&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.170&r2=1.171
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -r1.170 -r1.171
--- ChangeLog 17 Mar 2012 00:01:59 -0000 1.170
+++ ChangeLog 18 Mar 2012 23:33:49 -0000 1.171
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.170 2012/03/17 00:01:59 mpagano Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.171 2012/03/18 23:33:49 hd_brummy Exp $
+
+ 18 Mar 2012; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-plugin.eclass:
+ move eerror to ewarn, make the gettext warning less importend
17 Mar 2012; Michael Pagano <mpagano@gentoo.org> kernel-2.eclass:
Fix eclass for rc kernels, and fix testing tarball download location. bug
1.84 eclass/vdr-plugin.eclass
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?r1=1.83&r2=1.84
Index: vdr-plugin.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- vdr-plugin.eclass 9 Mar 2012 23:14:46 -0000 1.83
+++ vdr-plugin.eclass 18 Mar 2012 23:33:49 -0000 1.84
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.83 2012/03/09 23:14:46 hd_brummy Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.84 2012/03/18 23:33:49 hd_brummy Exp $
# @ECLASS: vdr-plugin.eclass
# @MAINTAINER:
@@ -294,9 +294,7 @@
else
vdr_i18n_convert_to_gettext
if [[ $? != 0 ]]; then
- eerror ""
- eerror "Plugin will have only english OSD texts"
- eerror "it needs manual fixing."
+ einfo "Plugin has no OSD texts or will have only english OSD texts"
fi
fi
else
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog vdr-plugin.eclass
@ 2012-04-07 10:12 Joerg Bornkessel (hd_brummy)
0 siblings, 0 replies; 14+ messages in thread
From: Joerg Bornkessel (hd_brummy) @ 2012-04-07 10:12 UTC (permalink / raw
To: gentoo-commits
hd_brummy 12/04/07 10:12:21
Modified: ChangeLog vdr-plugin.eclass
Log:
some plugins gives false positive results on gettext handling, add this plugins here
Revision Changes Path
1.205 eclass/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.205&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.205&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.204&r2=1.205
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.204
retrieving revision 1.205
diff -u -r1.204 -r1.205
--- ChangeLog 4 Apr 2012 16:37:50 -0000 1.204
+++ ChangeLog 7 Apr 2012 10:12:21 -0000 1.205
@@ -1,6 +1,10 @@
# ChangeLog for eclass directory
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.204 2012/04/04 16:37:50 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.205 2012/04/07 10:12:21 hd_brummy Exp $
+
+ 07 Apr 2012; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-plugin.eclass:
+ some plugins gives false positive results on gettext handling, add this
+ plugins here
04 Apr 2012; Davide Pesavento <pesa@gentoo.org> qt4-build.eclass:
Update from qt overlay, fixes #407523.
1.85 eclass/vdr-plugin.eclass
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?r1=1.84&r2=1.85
Index: vdr-plugin.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- vdr-plugin.eclass 18 Mar 2012 23:33:49 -0000 1.84
+++ vdr-plugin.eclass 7 Apr 2012 10:12:21 -0000 1.85
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.84 2012/03/18 23:33:49 hd_brummy Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.85 2012/04/07 10:12:21 hd_brummy Exp $
# @ECLASS: vdr-plugin.eclass
# @MAINTAINER:
@@ -229,6 +229,9 @@
plugin_has_gettext() {
[[ -d po ]]
+ # some plugins gives false positive results, keep this list short
+ # temporary workout, ToDo: fix the plugins/eclass
+ has_version ">=media-plugins/vdr-streamdev-0.5.0"
}
vdr_i18n_convert_to_gettext() {
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog vdr-plugin.eclass
@ 2012-04-07 10:18 Joerg Bornkessel (hd_brummy)
0 siblings, 0 replies; 14+ messages in thread
From: Joerg Bornkessel (hd_brummy) @ 2012-04-07 10:18 UTC (permalink / raw
To: gentoo-commits
hd_brummy 12/04/07 10:18:24
Modified: ChangeLog vdr-plugin.eclass
Log:
vdr-vdrmanager added for gettext handling
Revision Changes Path
1.206 eclass/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.206&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.206&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.205&r2=1.206
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.205
retrieving revision 1.206
diff -u -r1.205 -r1.206
--- ChangeLog 7 Apr 2012 10:12:21 -0000 1.205
+++ ChangeLog 7 Apr 2012 10:18:24 -0000 1.206
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.205 2012/04/07 10:12:21 hd_brummy Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.206 2012/04/07 10:18:24 hd_brummy Exp $
+
+ 07 Apr 2012; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-plugin.eclass:
+ vdr-vdrmanager added for gettext handling
07 Apr 2012; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-plugin.eclass:
some plugins gives false positive results on gettext handling, add this
1.86 eclass/vdr-plugin.eclass
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.86&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.86&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?r1=1.85&r2=1.86
Index: vdr-plugin.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- vdr-plugin.eclass 7 Apr 2012 10:12:21 -0000 1.85
+++ vdr-plugin.eclass 7 Apr 2012 10:18:24 -0000 1.86
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.85 2012/04/07 10:12:21 hd_brummy Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.86 2012/04/07 10:18:24 hd_brummy Exp $
# @ECLASS: vdr-plugin.eclass
# @MAINTAINER:
@@ -232,6 +232,7 @@
# some plugins gives false positive results, keep this list short
# temporary workout, ToDo: fix the plugins/eclass
has_version ">=media-plugins/vdr-streamdev-0.5.0"
+ has_version ">=media-plugins/vdr-vdrmanager-0.6"
}
vdr_i18n_convert_to_gettext() {
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog vdr-plugin.eclass
@ 2012-04-18 16:52 Joerg Bornkessel (hd_brummy)
0 siblings, 0 replies; 14+ messages in thread
From: Joerg Bornkessel (hd_brummy) @ 2012-04-18 16:52 UTC (permalink / raw
To: gentoo-commits
hd_brummy 12/04/18 16:52:30
Modified: ChangeLog vdr-plugin.eclass
Log:
removed unneeded path install for /usr/local/share; fix i18n install bug, start with vdr-1.7.27 bug 411945, thanks to Marc Perrudin for this workaround
Revision Changes Path
1.214 eclass/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.214&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.214&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.213&r2=1.214
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.213
retrieving revision 1.214
diff -u -r1.213 -r1.214
--- ChangeLog 16 Apr 2012 10:28:47 -0000 1.213
+++ ChangeLog 18 Apr 2012 16:52:30 -0000 1.214
@@ -1,6 +1,10 @@
# ChangeLog for eclass directory
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.213 2012/04/16 10:28:47 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.214 2012/04/18 16:52:30 hd_brummy Exp $
+
+ 18 Apr 2012; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-plugin.eclass:
+ removed unneeded path install for /usr/local/share; fix i18n install bug,
+ start with vdr-1.7.27 bug 411945, thanks to Marc Perrudin for this workaround
16 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> cmake-utils.eclass:
Whitespace cmake dep. Add build_rules to CMAKE_BUILD_DIR rather than to T as
1.87 eclass/vdr-plugin.eclass
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?r1=1.86&r2=1.87
Index: vdr-plugin.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- vdr-plugin.eclass 7 Apr 2012 10:18:24 -0000 1.86
+++ vdr-plugin.eclass 18 Apr 2012 16:52:30 -0000 1.87
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.86 2012/04/07 10:18:24 hd_brummy Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.87 2012/04/18 16:52:30 hd_brummy Exp $
# @ECLASS: vdr-plugin.eclass
# @MAINTAINER:
@@ -378,11 +378,7 @@
DVB_INCLUDE_DIR="/usr/include"
TMP_LOCALE_DIR="${WORKDIR}/tmp-locale"
- if has_version ">=media-video/vdr-1.6.0_p2-r7"; then
- LOCDIR="/usr/share/locale"
- else
- LOCDIR="/usr/share/vdr/locale"
- fi
+ LOCDIR="/usr/share/locale"
if ! has_vdr; then
# set to invalid values to detect abuses
@@ -436,8 +432,11 @@
vdr_patchmakefile
;;
i18n)
- cd "${S}" || die "Could not change to plugin-source-directory!"
- vdr_i18n
+ # i18n-to-gettext tool removed starting with version 1.7.27
+ if has_version "<media-video/vdr-1.7.27"; then
+ cd "${S}" || die "Could not change to plugin-source-directory!"
+ vdr_i18n
+ fi
;;
esac
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog vdr-plugin.eclass
@ 2012-04-23 23:13 Joerg Bornkessel (hd_brummy)
0 siblings, 0 replies; 14+ messages in thread
From: Joerg Bornkessel (hd_brummy) @ 2012-04-23 23:13 UTC (permalink / raw
To: gentoo-commits
hd_brummy 12/04/23 23:13:52
Modified: ChangeLog vdr-plugin.eclass
Log:
reverted last changes in plugin_has_gettext function
Revision Changes Path
1.221 eclass/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.221&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.221&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.220&r2=1.221
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.220
retrieving revision 1.221
diff -u -r1.220 -r1.221
--- ChangeLog 20 Apr 2012 07:22:47 -0000 1.220
+++ ChangeLog 23 Apr 2012 23:13:52 -0000 1.221
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.220 2012/04/20 07:22:47 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.221 2012/04/23 23:13:52 hd_brummy Exp $
+
+ 23 Apr 2012; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-plugin.eclass:
+ reverted last changes in plugin_has_gettext function
20 Apr 2012; Patrick Lauer <patrick@gentoo.org> depend.apache.eclass:
Typo
1.88 eclass/vdr-plugin.eclass
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?r1=1.87&r2=1.88
Index: vdr-plugin.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- vdr-plugin.eclass 18 Apr 2012 16:52:30 -0000 1.87
+++ vdr-plugin.eclass 23 Apr 2012 23:13:52 -0000 1.88
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.87 2012/04/18 16:52:30 hd_brummy Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.88 2012/04/23 23:13:52 hd_brummy Exp $
# @ECLASS: vdr-plugin.eclass
# @MAINTAINER:
@@ -229,10 +229,6 @@
plugin_has_gettext() {
[[ -d po ]]
- # some plugins gives false positive results, keep this list short
- # temporary workout, ToDo: fix the plugins/eclass
- has_version ">=media-plugins/vdr-streamdev-0.5.0"
- has_version ">=media-plugins/vdr-vdrmanager-0.6"
}
vdr_i18n_convert_to_gettext() {
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog vdr-plugin.eclass
@ 2013-02-18 9:43 Joerg Bornkessel (hd_brummy)
0 siblings, 0 replies; 14+ messages in thread
From: Joerg Bornkessel (hd_brummy) @ 2013-02-18 9:43 UTC (permalink / raw
To: gentoo-commits
hd_brummy 13/02/18 09:43:19
Modified: ChangeLog vdr-plugin.eclass
Log:
vdr-plugin.eclass, add eerror to get .eclass depricated
Revision Changes Path
1.678 eclass/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.678&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.678&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.677&r2=1.678
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.677
retrieving revision 1.678
diff -u -r1.677 -r1.678
--- ChangeLog 14 Feb 2013 16:29:00 -0000 1.677
+++ ChangeLog 18 Feb 2013 09:43:18 -0000 1.678
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.677 2013/02/14 16:29:00 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.678 2013/02/18 09:43:18 hd_brummy Exp $
+
+ 18 Feb 2013; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-plugin.eclass:
+ vdr-plugin.eclass, add eerror to get .eclass depricated
14 Feb 2013; Justin Lecher <jlec@gentoo.org> intel-sdp.eclass:
Make it possible to bypass license check from ebuilds
1.91 eclass/vdr-plugin.eclass
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.91&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.91&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?r1=1.90&r2=1.91
Index: vdr-plugin.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- vdr-plugin.eclass 27 Sep 2012 16:35:42 -0000 1.90
+++ vdr-plugin.eclass 18 Feb 2013 09:43:18 -0000 1.91
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.90 2012/09/27 16:35:42 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.91 2013/02/18 09:43:18 hd_brummy Exp $
# @ECLASS: vdr-plugin.eclass
# @MAINTAINER:
@@ -441,6 +441,11 @@
}
vdr-plugin_src_unpack() {
+ # mark vdr-plugin.eclass deprecated
+ eerror "\n\tvdr-plugin.eclass is deprecated"
+ eerror "\tMaintainer: please fix your ebuilds to use"
+ eerror "\tvdr-plugin-2.eclass \n"
+
if [[ -z ${VDR_INCLUDE_DIR} ]]; then
eerror "Wrong use of vdr-plugin.eclass."
eerror "An ebuild for a vdr-plugin will not work without calling vdr-plugin_pkg_setup."
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog vdr-plugin.eclass
@ 2014-01-15 1:12 Joerg Bornkessel (hd_brummy)
0 siblings, 0 replies; 14+ messages in thread
From: Joerg Bornkessel (hd_brummy) @ 2014-01-15 1:12 UTC (permalink / raw
To: gentoo-commits
hd_brummy 14/01/15 01:12:10
Modified: ChangeLog vdr-plugin.eclass
Log:
vdr-plugin.eclass marked @DEAD
Revision Changes Path
1.1114 eclass/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1114&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1114&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1113&r2=1.1114
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1113
retrieving revision 1.1114
diff -u -r1.1113 -r1.1114
--- ChangeLog 14 Jan 2014 20:50:23 -0000 1.1113
+++ ChangeLog 15 Jan 2014 01:12:10 -0000 1.1114
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1113 2014/01/14 20:50:23 mpagano Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1114 2014/01/15 01:12:10 hd_brummy Exp $
+
+ 15 Jan 2014; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-plugin.eclass:
+ vdr-plugin.eclass marked @DEAD
14 Jan 2014; Michael Pagano <mpagano@gentoo.org> linux-mod.eclass:
Remove use of sed in linux-mod.eclass. Replace with bash.
1.92 eclass/vdr-plugin.eclass
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.92&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?rev=1.92&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/vdr-plugin.eclass?r1=1.91&r2=1.92
Index: vdr-plugin.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- vdr-plugin.eclass 18 Feb 2013 09:43:18 -0000 1.91
+++ vdr-plugin.eclass 15 Jan 2014 01:12:10 -0000 1.92
@@ -1,6 +1,8 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.91 2013/02/18 09:43:18 hd_brummy Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vdr-plugin.eclass,v 1.92 2014/01/15 01:12:10 hd_brummy Exp $
+
+# @DEAD
# @ECLASS: vdr-plugin.eclass
# @MAINTAINER:
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog vdr-plugin.eclass
@ 2014-04-26 5:13 Joerg Bornkessel (hd_brummy)
0 siblings, 0 replies; 14+ messages in thread
From: Joerg Bornkessel (hd_brummy) @ 2014-04-26 5:13 UTC (permalink / raw
To: gentoo-commits
hd_brummy 14/04/26 05:13:24
Modified: ChangeLog
Removed: vdr-plugin.eclass
Log:
vdr-plugin.eclass removed, see #497058, #489116
Revision Changes Path
1.1226 eclass/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1226&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1226&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1225&r2=1.1226
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
retrieving revision 1.1225
retrieving revision 1.1226
diff -u -r1.1225 -r1.1226
--- ChangeLog 25 Apr 2014 19:39:42 -0000 1.1225
+++ ChangeLog 26 Apr 2014 05:13:24 -0000 1.1226
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1225 2014/04/25 19:39:42 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1226 2014/04/26 05:13:24 hd_brummy Exp $
+
+ 26 Apr 2014; Joerg Bornkessel <hd_brummy@gentoo.org> -vdr-plugin.eclass:
+ vdr-plugin.eclass removed, see #497058, #489116
25 Apr 2014; Johannes Huber <johu@gentoo.org> kde4-base.eclass:
Sync with kde overlay. Remove custom branch calculation for kde workspace.
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2014-04-26 5:13 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-11 20:44 [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog vdr-plugin.eclass Christian Ruppert (idl0r)
-- strict thread matches above, loose matches on Subject: below --
2014-04-26 5:13 Joerg Bornkessel (hd_brummy)
2014-01-15 1:12 Joerg Bornkessel (hd_brummy)
2013-02-18 9:43 Joerg Bornkessel (hd_brummy)
2012-04-23 23:13 Joerg Bornkessel (hd_brummy)
2012-04-18 16:52 Joerg Bornkessel (hd_brummy)
2012-04-07 10:18 Joerg Bornkessel (hd_brummy)
2012-04-07 10:12 Joerg Bornkessel (hd_brummy)
2012-03-18 23:33 Joerg Bornkessel (hd_brummy)
2012-03-09 23:14 Joerg Bornkessel (hd_brummy)
2012-03-09 22:44 Joerg Bornkessel (hd_brummy)
2012-02-15 18:41 Joerg Bornkessel (hd_brummy)
2012-01-15 20:54 Christian Ruppert (idl0r)
2012-01-15 17:11 Christian Ruppert (idl0r)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox