From 3e02c80346e90720279af8702b3b8535ab3afb5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Sun, 26 Jul 2020 23:26:46 +0200 Subject: [PATCH 1/7] www-apps/code-server-bin: new package; add version 3.4.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Maciej Barć --- www-apps/code-server-bin/Manifest | 2 + .../code-server-bin-3.4.1.ebuild | 80 +++++++++++++++++++ .../files/code-server-bin-3.4.1-node.patch | 8 ++ .../code-server-bin/files/code-server.service | 11 +++ www-apps/code-server-bin/metadata.xml | 19 +++++ 5 files changed, 120 insertions(+) create mode 100644 www-apps/code-server-bin/Manifest create mode 100644 www-apps/code-server-bin/code-server-bin-3.4.1.ebuild create mode 100644 www-apps/code-server-bin/files/code-server-bin-3.4.1-node.patch create mode 100644 www-apps/code-server-bin/files/code-server.service create mode 100644 www-apps/code-server-bin/metadata.xml diff --git a/www-apps/code-server-bin/Manifest b/www-apps/code-server-bin/Manifest new file mode 100644 index 0000000000..99f5c6c7d7 --- /dev/null +++ b/www-apps/code-server-bin/Manifest @@ -0,0 +1,2 @@ +DIST code-server-3.4.1-linux-amd64.tar.gz 74127655 BLAKE2B 95e916e64c886688b370407ba932624a70b024cae64a57e7eb77f31c6a352138313fbced149adf2ee698d925b9e2a818823b25931a42a01d5e2eaedb082bbf1d SHA512 efd55c84fda96f22bec79b54f60d02a8d098f41cef77549c805c125eb845efae43d3f4703908f0542a78146eda67ebd9787f89b1c14b1b8044fdfd534f2b9173 +DIST code-server-3.4.1-linux-arm64.tar.gz 73470946 BLAKE2B 278a1fef95b612242f4126eea53d7b8dc824fc5dda55ff6b2f1e7752d3ebecebcf30045c1c2bb2a18d1ad7999b20c29398a3c5715920d6e8d8c94eaa76e8a619 SHA512 24168006e737a6579869b8e4b157e21d9ef85282b811783163f0d2291e47bee7e0794c8327663182922b473ff57999432e6c53502849836a53d300728341d1bc diff --git a/www-apps/code-server-bin/code-server-bin-3.4.1.ebuild b/www-apps/code-server-bin/code-server-bin-3.4.1.ebuild new file mode 100644 index 0000000000..0eb856dbfe --- /dev/null +++ b/www-apps/code-server-bin/code-server-bin-3.4.1.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PN="${PN/-bin/}" +MY_PV="${MY_PN}-${PV}" + +BASE_URI="https://github.com/cdr/${MY_PN}/releases/download/${PV}/${MY_PV}-linux" + +inherit systemd + +DESCRIPTION="VS Code in the browser (binary version with unbundled node and ripgrep)" +HOMEPAGE="https://coder.com/" +SRC_URI=" + amd64? ( ${BASE_URI}-amd64.tar.gz ) + arm64? ( ${BASE_URI}-arm64.tar.gz ) +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="-* ~amd64 ~arm64" +IUSE="" + +# In case we ever make a non-"-binary" pkg +DEPEND=" + !www-apps/code-server +" +RDEPEND=" + ${DEPEND} + >=net-libs/nodejs-12.16.1[ssl] + sys-apps/ripgrep +" + +S="${WORKDIR}/${MY_PV}-linux-${ARCH}" + +PATCHES=( + "${FILESDIR}/${PN}-${PV}-node.patch" +) + +src_prepare() { + default + + # We remove as much precompiled code as we can, + # node modules not written in JS cannot be removed + # thus "-bin". + + # use system node + rm node || die + rm lib/node || die + + # remove bundled ripgrep binary + rm lib/vscode/node_modules/vscode-ripgrep/bin/rg || die + + # not needed + rm code-server + rm postinstall.sh +} + +src_install() { + local mydocs="LICENSE.txt README.md ThirdPartyNotices.txt" + for doc in ${mydocs} + do + (dodoc "${doc}" && rm "${doc}") || die + done + + insinto "/usr/lib/${MY_PN}" + doins -r . + fperms +x "${EPREFIX}/usr/lib/${MY_PN}/bin/${MY_PN}" + dosym "${EPREFIX}/usr/lib/${MY_PN}/bin/${MY_PN}" "${EPREFIX}/usr/bin/${MY_PN}" + + dosym "${EPREFIX}/usr/bin/rg" "${EPREFIX}/usr/lib/${MY_PN}/lib/vscode/node_modules/vscode-ripgrep/bin/rg" + + systemd_dounit "${FILESDIR}/${MY_PN}.service" +} + +pkg_postinst() { + elog "When using code-server systemd service run it as a user" + elog "For example: 'systemctl --user enable --now code-server'" +} diff --git a/www-apps/code-server-bin/files/code-server-bin-3.4.1-node.patch b/www-apps/code-server-bin/files/code-server-bin-3.4.1-node.patch new file mode 100644 index 0000000000..8bcfe362cc --- /dev/null +++ b/www-apps/code-server-bin/files/code-server-bin-3.4.1-node.patch @@ -0,0 +1,8 @@ +--- a/bin/code-server ++++ b/bin/code-server +@@ -33,4 +33,4 @@ root() { + } + + ROOT="$(root)" +-exec "$ROOT/lib/node" "$ROOT" "$@" ++exec node "$ROOT" --disable-telemetry "$@" diff --git a/www-apps/code-server-bin/files/code-server.service b/www-apps/code-server-bin/files/code-server.service new file mode 100644 index 0000000000..a2f48e938e --- /dev/null +++ b/www-apps/code-server-bin/files/code-server.service @@ -0,0 +1,11 @@ +[Unit] +Description=code-server +After=network.target + +[Service] +Type=exec +ExecStart=/usr/bin/code-server +Restart=always + +[Install] +WantedBy=default.target diff --git a/www-apps/code-server-bin/metadata.xml b/www-apps/code-server-bin/metadata.xml new file mode 100644 index 0000000000..e3d6450157 --- /dev/null +++ b/www-apps/code-server-bin/metadata.xml @@ -0,0 +1,19 @@ + + + + + xgqt@protonmail.com + Maciej Barć + + + cdr/code-server + + + Run VS Code on any machine anywhere and access it in the browser. + Code on your Chromebook, tablet, and laptop with a consistent development environment. + Develop on a Linux machine and pick up from any device with a web browser. + Take advantage of large cloud servers to speed up tests, compilations, downloads, and more. + Preserve battery life when you're on the go as all intensive tasks runs on your server. + Make use of a spare computer you have lying around and turn it into a full development environment. + + From 0975524020ef5ea898c57142000b15c84c13fb4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Sun, 26 Jul 2020 23:53:16 +0200 Subject: [PATCH 2/7] www-apps/code-server-bin: expand case of die on failed removal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Maciej Barć --- www-apps/code-server-bin/code-server-bin-3.4.1.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/www-apps/code-server-bin/code-server-bin-3.4.1.ebuild b/www-apps/code-server-bin/code-server-bin-3.4.1.ebuild index 0eb856dbfe..c7be5a525a 100644 --- a/www-apps/code-server-bin/code-server-bin-3.4.1.ebuild +++ b/www-apps/code-server-bin/code-server-bin-3.4.1.ebuild @@ -53,12 +53,15 @@ src_prepare() { rm lib/vscode/node_modules/vscode-ripgrep/bin/rg || die # not needed - rm code-server - rm postinstall.sh + rm code-server || die + rm postinstall.sh || die } src_install() { - local mydocs="LICENSE.txt README.md ThirdPartyNotices.txt" + # already in /usr/portage/licenses/MIT + rm LICENSE.txt || die + + local mydocs="README.md ThirdPartyNotices.txt" for doc in ${mydocs} do (dodoc "${doc}" && rm "${doc}") || die From f56995185d43d02dcc33f4cdb8e728c0e61c398b Mon Sep 17 00:00:00 2001 From: Matthias Coppens Date: Mon, 27 Jul 2020 11:20:26 +0200 Subject: [PATCH 3/7] gui-apps/wdisplays: Updated patch This commit updates the patch for wdisplays-1.0 and updates the revision number, since the patch solves a runtime issue. This commit also cleans the ebuilds a bit. Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Matthias Coppens --- gui-apps/wdisplays/files/wdisplays-1.0-pull20.patch | 7 +++---- .../{wdisplays-1.0-r1.ebuild => wdisplays-1.0-r2.ebuild} | 3 +-- gui-apps/wdisplays/wdisplays-9999.ebuild | 3 +-- 3 files changed, 5 insertions(+), 8 deletions(-) rename gui-apps/wdisplays/{wdisplays-1.0-r1.ebuild => wdisplays-1.0-r2.ebuild} (96%) diff --git a/gui-apps/wdisplays/files/wdisplays-1.0-pull20.patch b/gui-apps/wdisplays/files/wdisplays-1.0-pull20.patch index 607c69b78a..200acd899d 100644 --- a/gui-apps/wdisplays/files/wdisplays-1.0-pull20.patch +++ b/gui-apps/wdisplays/files/wdisplays-1.0-pull20.patch @@ -1,4 +1,4 @@ -From 657e2966e556c78f121075c69fe1ba8d2b4dcb73 Mon Sep 17 00:00:00 2001 +From 5198a9c94b40ff157c284df413be5402f1b75118 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Wed, 8 Jul 2020 11:57:35 +0200 Subject: [PATCH] Use correct versions when binding globals @@ -17,7 +17,7 @@ Closes: https://github.com/cyclopsian/wdisplays/issues/18 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/outputs.c b/src/outputs.c -index 9ebf7e5..40410ec 100644 +index 9ebf7e5..a5007e8 100644 --- a/src/outputs.c +++ b/src/outputs.c @@ -534,20 +534,20 @@ static void registry_handle_global(void *data, struct wl_registry *registry, @@ -31,7 +31,7 @@ index 9ebf7e5..40410ec 100644 } else if (strcmp(interface, zxdg_output_manager_v1_interface.name) == 0) { state->xdg_output_manager = wl_registry_bind(registry, name, - &zxdg_output_manager_v1_interface, version); -+ &zxdg_output_manager_v1_interface, 3); ++ &zxdg_output_manager_v1_interface, 2); } else if(strcmp(interface, zwlr_screencopy_manager_v1_interface.name) == 0) { state->copy_manager = wl_registry_bind(registry, name, - &zwlr_screencopy_manager_v1_interface, version); @@ -46,4 +46,3 @@ index 9ebf7e5..40410ec 100644 } } - diff --git a/gui-apps/wdisplays/wdisplays-1.0-r1.ebuild b/gui-apps/wdisplays/wdisplays-1.0-r2.ebuild similarity index 96% rename from gui-apps/wdisplays/wdisplays-1.0-r1.ebuild rename to gui-apps/wdisplays/wdisplays-1.0-r2.ebuild index 88076f1e75..f77ab59f4f 100644 --- a/gui-apps/wdisplays/wdisplays-1.0-r1.ebuild +++ b/gui-apps/wdisplays/wdisplays-1.0-r2.ebuild @@ -10,6 +10,7 @@ case "${PV}" in ;; *) SRC_URI="${EGIT_REPO_URI}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" esac inherit meson xdg @@ -24,6 +25,4 @@ DEPEND="${BDEPEND}" LICENSE="GPL-3+" SLOT="0" -KEYWORDS="~amd64" - PATCHES=("${FILESDIR}/${P}-pull20.patch") diff --git a/gui-apps/wdisplays/wdisplays-9999.ebuild b/gui-apps/wdisplays/wdisplays-9999.ebuild index 88964cfb43..e277e11ac5 100644 --- a/gui-apps/wdisplays/wdisplays-9999.ebuild +++ b/gui-apps/wdisplays/wdisplays-9999.ebuild @@ -10,6 +10,7 @@ case "${PV}" in ;; *) SRC_URI="${EGIT_REPO_URI}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" esac inherit meson xdg @@ -23,5 +24,3 @@ DEPEND="${BDEPEND}" LICENSE="GPL-3+" SLOT="0" - -KEYWORDS="" From b937683d6f15e78e519f0234ddfe348b5ce1d6d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Mon, 27 Jul 2020 23:44:37 +0200 Subject: [PATCH 4/7] net-misc/gallery-dl: new package; add version 1.14.3 and 9999 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Maciej Barć --- net-misc/gallery-dl/Manifest | 1 + net-misc/gallery-dl/gallery-dl-1.14.3.ebuild | 49 ++++++++++++++++++++ net-misc/gallery-dl/gallery-dl-9999.ebuild | 49 ++++++++++++++++++++ net-misc/gallery-dl/metadata.xml | 14 ++++++ 4 files changed, 113 insertions(+) create mode 100644 net-misc/gallery-dl/Manifest create mode 100644 net-misc/gallery-dl/gallery-dl-1.14.3.ebuild create mode 100644 net-misc/gallery-dl/gallery-dl-9999.ebuild create mode 100644 net-misc/gallery-dl/metadata.xml diff --git a/net-misc/gallery-dl/Manifest b/net-misc/gallery-dl/Manifest new file mode 100644 index 0000000000..d505f12054 --- /dev/null +++ b/net-misc/gallery-dl/Manifest @@ -0,0 +1 @@ +DIST v1.14.3.tar.gz 317004 BLAKE2B 9ff327dde9e4fb361e87e40b835cf5324f639b0f2d61ff762854d685a381c0f2b098545c295eae0b92fdb67aea23cd03379af3bae22a9a928e4dcb3d5b40f689 SHA512 66971ed49c7d90bf249fe5b48848c05f2e085cca04a448fd818b69a0fcd27b8739414ec506f429ef4ca9ae45f7a8919fdfefbd9206bb5bb475ca3e783f5ef494 diff --git a/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild b/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild new file mode 100644 index 0000000000..3d34bec5a6 --- /dev/null +++ b/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=(python3_{6,7,8}) + +inherit eutils distutils-r1 + +DESCRIPTION="Download image galleries and collections from several image hosting sites" +HOMEPAGE="https://github.com/mikf/gallery-dl" + +if [[ "${PV}" == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/mikf/${PN}.git" + KEYWORDS="" +else + SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="GPL-2" +SLOT="0" +IUSE="bash-completion zsh-completion" + +RDEPEND=" + >=dev-python/requests-2.11.0[${PYTHON_USEDEP}] +" + +# tests require network access +#distutils_enable_tests setup.py + +src_compile() { + if use bash-completion || use zsh-completion + then + emake completion + fi + + emake man + + # this will install shell completion and man pages generated above (if any) + distutils-r1_src_compile +} + +pkg_postinst() { + elog "Optionad dependencies:" + elog "media-video/ffmpeg - for Pixiv Ugoira to WebM conversion" + elog "net-misc/youtube-dl - for video downloads" +} diff --git a/net-misc/gallery-dl/gallery-dl-9999.ebuild b/net-misc/gallery-dl/gallery-dl-9999.ebuild new file mode 100644 index 0000000000..3d34bec5a6 --- /dev/null +++ b/net-misc/gallery-dl/gallery-dl-9999.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=(python3_{6,7,8}) + +inherit eutils distutils-r1 + +DESCRIPTION="Download image galleries and collections from several image hosting sites" +HOMEPAGE="https://github.com/mikf/gallery-dl" + +if [[ "${PV}" == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/mikf/${PN}.git" + KEYWORDS="" +else + SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="GPL-2" +SLOT="0" +IUSE="bash-completion zsh-completion" + +RDEPEND=" + >=dev-python/requests-2.11.0[${PYTHON_USEDEP}] +" + +# tests require network access +#distutils_enable_tests setup.py + +src_compile() { + if use bash-completion || use zsh-completion + then + emake completion + fi + + emake man + + # this will install shell completion and man pages generated above (if any) + distutils-r1_src_compile +} + +pkg_postinst() { + elog "Optionad dependencies:" + elog "media-video/ffmpeg - for Pixiv Ugoira to WebM conversion" + elog "net-misc/youtube-dl - for video downloads" +} diff --git a/net-misc/gallery-dl/metadata.xml b/net-misc/gallery-dl/metadata.xml new file mode 100644 index 0000000000..5346852777 --- /dev/null +++ b/net-misc/gallery-dl/metadata.xml @@ -0,0 +1,14 @@ + + + + + xgqt@protonmail.com + Maciej Barć + + + cdr/code-server + + +gallery-dl is a command-line program to download image-galleries and -collections from several image hosting sites (see Supported Sites). It is a cross-platform tool with many configuration options and powerful filenaming capabilities. + + From 5f72262e86181b04cc015bc3b87e2b256b6fb6c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Mon, 27 Jul 2020 23:46:38 +0200 Subject: [PATCH 5/7] net-misc/gallery-dl: fix metadata MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Maciej Barć --- net-misc/gallery-dl/metadata.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/net-misc/gallery-dl/metadata.xml b/net-misc/gallery-dl/metadata.xml index 5346852777..9a5ad89674 100644 --- a/net-misc/gallery-dl/metadata.xml +++ b/net-misc/gallery-dl/metadata.xml @@ -6,9 +6,10 @@ Maciej Barć - cdr/code-server + mikf/gallery-dl -gallery-dl is a command-line program to download image-galleries and -collections from several image hosting sites (see Supported Sites). It is a cross-platform tool with many configuration options and powerful filenaming capabilities. + gallery-dl is a command-line program to download image-galleries and -collections from several image hosting sites. + It is a cross-platform tool with many configuration options and powerful filenaming capabilities. From 73213ffb5d0da2b1a05c0573f2c511ac0e18225e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Tue, 28 Jul 2020 00:27:56 +0200 Subject: [PATCH 6/7] net-misc/gallery-dl: restrict tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Maciej Barć --- net-misc/gallery-dl/gallery-dl-1.14.3.ebuild | 3 ++- net-misc/gallery-dl/gallery-dl-9999.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild b/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild index 3d34bec5a6..b8344dbcd2 100644 --- a/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild +++ b/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild @@ -19,6 +19,7 @@ else KEYWORDS="~amd64" fi +RESTRICT="test" LICENSE="GPL-2" SLOT="0" IUSE="bash-completion zsh-completion" @@ -28,7 +29,7 @@ RDEPEND=" " # tests require network access -#distutils_enable_tests setup.py +distutils_enable_tests setup.py src_compile() { if use bash-completion || use zsh-completion diff --git a/net-misc/gallery-dl/gallery-dl-9999.ebuild b/net-misc/gallery-dl/gallery-dl-9999.ebuild index 3d34bec5a6..b8344dbcd2 100644 --- a/net-misc/gallery-dl/gallery-dl-9999.ebuild +++ b/net-misc/gallery-dl/gallery-dl-9999.ebuild @@ -19,6 +19,7 @@ else KEYWORDS="~amd64" fi +RESTRICT="test" LICENSE="GPL-2" SLOT="0" IUSE="bash-completion zsh-completion" @@ -28,7 +29,7 @@ RDEPEND=" " # tests require network access -#distutils_enable_tests setup.py +distutils_enable_tests setup.py src_compile() { if use bash-completion || use zsh-completion From 17c40d87ae6647c1ff76c9b1f48743df20d535f5 Mon Sep 17 00:00:00 2001 From: Andrew Ammerlaan Date: Tue, 28 Jul 2020 11:11:59 +0200 Subject: [PATCH 7/7] net-misc/gallery-dl: fix typo also add DISTUTILS_USE_SETUPTOOLS to prevent warning during prepare phase Package-Manager: Portage-3.0.0, Repoman-2.3.23 Signed-off-by: Andrew Ammerlaan --- net-misc/gallery-dl/gallery-dl-1.14.3.ebuild | 3 ++- net-misc/gallery-dl/gallery-dl-9999.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild b/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild index b8344dbcd2..9e9053bfa3 100644 --- a/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild +++ b/net-misc/gallery-dl/gallery-dl-1.14.3.ebuild @@ -4,6 +4,7 @@ EAPI=7 PYTHON_COMPAT=(python3_{6,7,8}) +DISTUTILS_USE_SETUPTOOLS=rdepend inherit eutils distutils-r1 @@ -44,7 +45,7 @@ src_compile() { } pkg_postinst() { - elog "Optionad dependencies:" + elog "Optional dependencies:" elog "media-video/ffmpeg - for Pixiv Ugoira to WebM conversion" elog "net-misc/youtube-dl - for video downloads" } diff --git a/net-misc/gallery-dl/gallery-dl-9999.ebuild b/net-misc/gallery-dl/gallery-dl-9999.ebuild index b8344dbcd2..9e9053bfa3 100644 --- a/net-misc/gallery-dl/gallery-dl-9999.ebuild +++ b/net-misc/gallery-dl/gallery-dl-9999.ebuild @@ -4,6 +4,7 @@ EAPI=7 PYTHON_COMPAT=(python3_{6,7,8}) +DISTUTILS_USE_SETUPTOOLS=rdepend inherit eutils distutils-r1 @@ -44,7 +45,7 @@ src_compile() { } pkg_postinst() { - elog "Optionad dependencies:" + elog "Optional dependencies:" elog "media-video/ffmpeg - for Pixiv Ugoira to WebM conversion" elog "net-misc/youtube-dl - for video downloads" }