diff options
author | Louis Sautier <sautier.louis@gmail.com> | 2016-03-24 22:30:42 +0100 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2016-03-24 22:24:09 +0000 |
commit | 0b0ce619e69119a96b5a11ac77a44b07aa68a919 (patch) | |
tree | 0923d78d0a82d3ca04b50988dcc479aba68b189e /www-apps/airdcpp-webui | |
parent | net-p2p/airdcpp-webclient: bump to 1.0.2 (diff) | |
download | gentoo-0b0ce619e69119a96b5a11ac77a44b07aa68a919.tar.gz gentoo-0b0ce619e69119a96b5a11ac77a44b07aa68a919.tar.bz2 gentoo-0b0ce619e69119a96b5a11ac77a44b07aa68a919.zip |
www-apps/airdcpp-webui: bump to 1.0.3
Package-Manager: portage-2.2.28
Closes: https://github.com/gentoo/gentoo/pull/1124
Diffstat (limited to 'www-apps/airdcpp-webui')
-rw-r--r-- | www-apps/airdcpp-webui/Manifest | 1 | ||||
-rw-r--r-- | www-apps/airdcpp-webui/airdcpp-webui-1.0.3.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/www-apps/airdcpp-webui/Manifest b/www-apps/airdcpp-webui/Manifest index 39b2d1b9d687..94231c7aa499 100644 --- a/www-apps/airdcpp-webui/Manifest +++ b/www-apps/airdcpp-webui/Manifest @@ -1,3 +1,4 @@ DIST airdcpp-webui-0.16.2.tgz 10910907 SHA256 d6b51beb090cf85f9dcc967ec163e211f263f05f792ac8e1ffa6af2625a03d92 SHA512 ccf7cacece5916d5c473ced387c7e2bc93f96d79bd840eec716cccf245c29e445a5eeaa8b8cb969bf25fcb5a546e90f23d05272d6092826eb23920c248342947 WHIRLPOOL 92d6ba833484758887e758cc2518f0f2e3360cd7452bff7ef0c1c9d752f03a6c51e9513ec16cdad03bb29b11d528ba791001267c0f357a0754161149f48dc323 DIST airdcpp-webui-1.0.0.tgz 10951669 SHA256 8fa13325e83d3541f96c154002751f3637d783f6a95edf63e2c71ca98ec200cd SHA512 5ad12e7ca96eb99542ef56a724894534f7644bf6d95cf68b776b2a7a230d4f8d1eed377c356cc06fbf2d7e5afd85afcb98cdcafe31faefbd529d52a23cf302c4 WHIRLPOOL 04ef6ede1656cf4cca990466a69d8b70c540ff3b40e998fba90e084cf50b64e41070a0689c0ea5adfaa376b4ad047e6b6939ffbc641708dfc5bf365ceedab101 DIST airdcpp-webui-1.0.2.tgz 10951832 SHA256 bab92904323f1fb8cbd72bb4d0991a1e6a5ff7045bf9cc12d0c5151cb1e51c98 SHA512 b28b469aa8ad32501c705b0c94fa04c5cc2a9fef5eb75da5b2a8103ef7e20064aae66bd260bdf84a9de72f02aef709c3015889a31b16b1ba037d5da7518871ed WHIRLPOOL dd37578397a21630508412107f1659abfed67d50e348bfd95cbbbea8951338c461f8261575e0b02dd708f5b7a54bd0fa1d3b85e44e5a6c2049f38dd34e723fdb +DIST airdcpp-webui-1.0.3.tgz 10882321 SHA256 87a3b20ee4e4b9bc713fc54ba2c79c12c97ee080c302aa9869d9e1f37a25803a SHA512 16fa92fab308ab9b399b5ca2ce0de6027c42180a200e7205cdda572281ecee9f182def9d6de34d12fb7442585ff3d2b0dfd675262227a467bab244409702d573 WHIRLPOOL 67c68c374cf85d1949bd305e4c736138b65ac384fe74d1099d764b8b72c42393bd3270d86ddc274d815509dc5069b9fa4e141f43dab2c433b6302ce9f29e7e97 diff --git a/www-apps/airdcpp-webui/airdcpp-webui-1.0.3.ebuild b/www-apps/airdcpp-webui/airdcpp-webui-1.0.3.ebuild new file mode 100644 index 000000000000..7796c4349935 --- /dev/null +++ b/www-apps/airdcpp-webui/airdcpp-webui-1.0.3.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="WEB interface for airdcpp-webclient" +HOMEPAGE="https://www.npmjs.com/package/airdcpp-webui" +SRC_URI="https://registry.npmjs.org/${PN}/-/${P}.tgz" + +KEYWORDS="~amd64 ~x86" +LICENSE="MIT" +SLOT="0" +IUSE="" + +RDEPEND="=net-p2p/airdcpp-webclient-${PV%.*}*" + +S="${WORKDIR}/package" + +src_install() { + insinto "/usr/share/airdcpp/web-resources" + doins -r "${S}/dist"/* +} |