Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 703172 - dev-tex/cjk-latex-4.8.4: Incorrect doins changes
Summary: dev-tex/cjk-latex-4.8.4: Incorrect doins changes
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All All
: Normal normal
Assignee: TeX project
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2019-12-17 07:21 UTC by Arfrever Frehtes Taifersar Arahesis
Modified: 2020-07-03 11:35 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Arfrever Frehtes Taifersar Arahesis 2019-12-17 07:21:24 UTC
Commit 066b32ac4d0d0166394d2f2188e061268bd5d721 (https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=066b32ac4d0d0166394d2f2188e061268bd5d721) beside porting to EAPI="7" included some unrelated and incorrect changes in arguments of doins.

'doins (-r) X/*' never has the same effect as 'doins (-r) X' or 'doins (-r) X/'.

When X contains A B C, then:
  'doins -r X/*' would install:
    ${path_set_by_insinto}/A
    ${path_set_by_insinto}/B
    ${path_set_by_insinto}/C

  'doins -r X' or 'doins -r X/' would install:
    ${path_set_by_insinto}/X/A
    ${path_set_by_insinto}/X/B
    ${path_set_by_insinto}/X/C


In commit 066b32ac4d0d0166394d2f2188e061268bd5d721, the following changes result in installation of files in different places than before:

-	doins -r texinput/*
+	doins -r texinput
...
-	doins -r jisksp40/texmf/*
+	doins -r jisksp40/texmf
...
-	doins -r kanji48/texmf/*
+	doins -r kanji48/texmf
...
-	doins -r texmf/*
+	doins -r texmf
...
-	doins utils/hbf2gf/cfg/*
+	doins -r utils/hbf2gf/cfg/
...
-	doins utils/subfonts/*
+	doins -r utils/subfonts/
...
-		doins -r doc/*
+		doins -r doc
Comment 1 Arfrever Frehtes Taifersar Arahesis 2020-01-22 01:21:50 UTC
Zlogene: Why have you closed this bug without writing any explanation?

Ebuild is still not corrected.
Comment 2 Larry the Git Cow gentoo-dev 2020-07-03 11:35:03 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95967d209b8d5190127d74302aaa38f8ebe852c5

commit 95967d209b8d5190127d74302aaa38f8ebe852c5
Author:     David Seifert <soap@gentoo.org>
AuthorDate: 2020-07-03 11:34:48 +0000
Commit:     David Seifert <soap@gentoo.org>
CommitDate: 2020-07-03 11:34:48 +0000

    dev-tex/cjk-latex: [QA] Fix incorrect doins calls
    
    Closes: https://bugs.gentoo.org/703172
    Package-Manager: Portage-2.3.103, Repoman-2.3.23
    Signed-off-by: David Seifert <soap@gentoo.org>

 ...cjk-latex-4.8.4.ebuild => cjk-latex-4.8.4-r1.ebuild} | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)