Re: [gentoo-dev] last rites: dev-python/thrift

2022-04-01 Thread wuyy
On Fri, Apr 01, 2022 at 01:53:24PM +0200, Fabian Groffen wrote:
> # Fabian Groffen  (2022-04-01)
> # unused package, not enabling tests, bug #796830
> # Removal in 30 days
> dev-python/thrift
> 
> -- 
> Fabian Groffen
> Gentoo on a different level

Please also consider retain this package as a reverse dependency for 
https://github.com/ktrueda/parquet-tools. It is a commandline util to read 
parquet data, so I prepare to package in the future along with spark, 
apache-arrow and other big data infrastructure components in Spark-overlay 
where parquet data format is popular.

-- 


signature.asc
Description: PGP signature


Re: [gentoo-dev] last rites: dev-python/thrift

2022-04-01 Thread Fabian Groffen
Dropped this mask again, I missed a dep in the tree.

Fabian

On 01-04-2022 13:53:24 +0200, Fabian Groffen wrote:
> # Fabian Groffen  (2022-04-01)
> # unused package, not enabling tests, bug #796830
> # Removal in 30 days
> dev-python/thrift


-- 
Fabian Groffen
Gentoo on a different level


signature.asc
Description: PGP signature


Re: [gentoo-dev] last rites: dev-python/thrift

2022-04-01 Thread Fabian Groffen
On 01-04-2022 16:59:40 +0500, Anna Vyalkova wrote:
> On 2022-04-01 13:53, Fabian Groffen wrote:
> > # Fabian Groffen  (2022-04-01)
> > # unused package, not enabling tests, bug #796830
> > # Removal in 30 days
> > dev-python/thrift
> 
> It has a reverse dependency in GURU
> dev-python/jaeger-client
> 
> It will be needed if OpenStack packages are restored some day.

Can we move/copy the package to GURU?

Thanks,
Fabian

-- 
Fabian Groffen
Gentoo on a different level


signature.asc
Description: PGP signature


[gentoo-dev] last rites: dev-python/thrift

2022-04-01 Thread Fabian Groffen
# Fabian Groffen  (2022-04-01)
# unused package, not enabling tests, bug #796830
# Removal in 30 days
dev-python/thrift

-- 
Fabian Groffen
Gentoo on a different level


signature.asc
Description: PGP signature


[gentoo-dev] [PATCH] elisp-common.eclass: Drop support for EAPI 5

2022-04-01 Thread Ulrich Müller
>From Emacs overlay.

Signed-off-by: Ulrich Müller 
---
 eclass/elisp-common.eclass | 15 +++
 1 file changed, 3 insertions(+), 12 deletions(-)

diff --git a/eclass/elisp-common.eclass b/eclass/elisp-common.eclass
index 775bcbdb889c..a821e4a2dc6f 100644
--- a/eclass/elisp-common.eclass
+++ b/eclass/elisp-common.eclass
@@ -10,7 +10,7 @@
 # Mamoru Komachi 
 # Christian Faulhammer 
 # Ulrich Müller 
-# @SUPPORTED_EAPIS: 5 6 7 8
+# @SUPPORTED_EAPIS: 6 7 8
 # @BLURB: Emacs-related installation utilities
 # @DESCRIPTION:
 #
@@ -166,7 +166,7 @@
 # to above calls of elisp-site-regen().
 
 case ${EAPI:-0} in
-   5|6) inherit eapi7-ver ;;
+   6) inherit eapi7-ver ;;
7|8) ;;
*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
 esac
@@ -360,10 +360,6 @@ elisp-install() {
 elisp-modules-install() {
local subdir="$1"
shift
-   # Don't bother inheriting multilib.eclass for get_libdir(), but
-   # error out in old EAPIs that don't support it natively.
-   [[ ${EAPI} == 5 ]] \
-   && die "${ECLASS}: Dynamic modules not supported in EAPI 
${EAPI}"
ebegin "Installing dynamic modules for GNU Emacs support"
( # subshell to avoid pollution of calling environment
exeinto "${EMACSMODULES//@libdir@/$(get_libdir)}/${subdir}"
@@ -391,12 +387,7 @@ elisp-site-file-install() {
sf="${T}/${sf}"
ebegin "Installing site initialisation file for GNU Emacs"
[[ $1 == "${sf}" ]] || cp "$1" "${sf}"
-   if [[ ${EAPI} == 5 ]]; then
-   grep -q "@EMACSMODULES@" "${sf}" \
-   && die "${ECLASS}: Dynamic modules not supported in 
EAPI ${EAPI}"
-   else
-   modules=${EMACSMODULES//@libdir@/$(get_libdir)}
-   fi
+   modules=${EMACSMODULES//@libdir@/$(get_libdir)}
sed -i -e 
"1{:x;/^\$/{n;bx;};/^;.*${PN}/I!s:^:${header}\n\n:;1s:^:\n:;}" \
-e "s:@SITELISP@:${EPREFIX}${SITELISP}/${my_pn}:g" \
-e "s:@SITEETC@:${EPREFIX}${SITEETC}/${my_pn}:g" \
-- 
2.35.1