From 49f278d5347061181467e4d7867a20881ce582f1 Mon Sep 17 00:00:00 2001
From: Hans de Graaff <graaff@gentoo.org>
Date: Sun, 9 Dec 2018 08:07:50 +0100
Subject: eclass/ruby-fakegem.eclass: fix warning about compressed docs

Remove automatically generated compressed versions of the javascript
code to avoid warnings about colliding files by ecompress.

We can only do this for the "rdoc" recipe because that is the only
predictable generation method. The other recipes will need to handle
this in the ebuilds.

Signed-off-by: Hans de Graaff <graaff@gentoo.org>
---
 eclass/ruby-fakegem.eclass | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

(limited to 'eclass/ruby-fakegem.eclass')

diff --git a/eclass/ruby-fakegem.eclass b/eclass/ruby-fakegem.eclass
index ecbf6403e43d..e2c333a5e7f4 100644
--- a/eclass/ruby-fakegem.eclass
+++ b/eclass/ruby-fakegem.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # @ECLASS: ruby-fakegem.eclass
@@ -380,6 +380,7 @@ all_fakegem_compile() {
 				;;
 			rdoc)
 				rdoc ${RUBY_FAKEGEM_DOC_SOURCES} || die "failed to (re)build documentation"
+				rm -f doc/js/*.gz || die "failed to remove duplicated compressed javascript files"
 				;;
 			yard)
 				yard doc ${RUBY_FAKEGEM_DOC_SOURCES} || die "failed to (re)build documentation"
-- 
cgit v1.2.3-65-gdbad