From ca3401a4a560a67573282577c2cf3dd6dc193378 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Wed, 17 Mar 2021 03:17:19 +0100 Subject: [PATCH 1/4] media-gfx/gephi-bin: new package uses maven so it's binary for now Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Alessandro Barbieri --- media-gfx/gephi-bin/Manifest | 1 + media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild | 47 ++++++++++++++++++++++ media-gfx/gephi-bin/metadata.xml | 22 ++++++++++ 3 files changed, 70 insertions(+) create mode 100644 media-gfx/gephi-bin/Manifest create mode 100644 media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild create mode 100644 media-gfx/gephi-bin/metadata.xml diff --git a/media-gfx/gephi-bin/Manifest b/media-gfx/gephi-bin/Manifest new file mode 100644 index 0000000000..76e18d1cfa --- /dev/null +++ b/media-gfx/gephi-bin/Manifest @@ -0,0 +1 @@ +DIST gephi-0.9.2-linux.tar.gz 80846981 BLAKE2B fccf8bc9ce1e1d422582ba5ac223c0608ac130150cb76eb079409f2357a24d097487d5b05d63c34a607757c2fb11d822202618c331fe3148c20a545ad36504cf SHA512 ea90a2f7c8e4cb63364dd0245bde68527048e5d2a807422c4ab3bf7d05373af982c4cde50774131d0a810ef0c31a7cbfaef3f4b1c46e458c7696c856072d20cd diff --git a/media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild b/media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild new file mode 100644 index 0000000000..08701750d1 --- /dev/null +++ b/media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +MYPN="${PN/-bin/}" +MYP="${MYPN}-${PV}" + +DESCRIPTION="The Open Graph Viz Platform" +HOMEPAGE="https://gephi.org/" +SRC_URI="https://github.com/gephi/gephi/releases/download/v${PV}/${MYP}-linux.tar.gz" + +LICENSE="CDDL GPL-3" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" +RESTRICT="strip" +RDEPEND="virtual/jre:1.8" + +S="${WORKDIR}" + +QA_PREBUILT=" + /opt/${MYPN}/platform/modules/lib/amd64/linux/libjnidispatch-422.so + /opt/${MYPN}/platform/modules/lib/i386/linux/libjnidispatch-422.so +" + +src_prepare() { + #remove windows things + rm -r "${S}/${MYP}"/bin/*.exe || die + rm -r "${S}/${MYP}"/platform/lib/*.exe || die + rm -r "${S}/${MYP}"/platform/lib/*.dll || die + rm -r "${S}/${MYP}/platform/modules/lib/x86" || die #windows only + rm -r "${S}/${MYP}"/platform/modules/lib/amd64/*.dll || die + + use amd64 && rm -rf "${S}/${MYP}/platform/modules/lib/i386" + use x86 && rm -rf "${S}/${MYP}/platform/modules/lib/amd64" + + eapply_user +} + +src_install() { + insinto "/opt/${MYPN}" + doins -r "${MYP}"/* + keepdir "/opt/${MYPN}/etc" + fperms a+x "/opt/${MYPN}/bin/gephi" + fperms a+x "/opt/${MYPN}/platform/lib/nbexec" + dosym "../../opt/${MYPN}/bin/gephi" "${EPREFIX}/usr/bin/gephi" +} diff --git a/media-gfx/gephi-bin/metadata.xml b/media-gfx/gephi-bin/metadata.xml new file mode 100644 index 0000000000..f600f36bbf --- /dev/null +++ b/media-gfx/gephi-bin/metadata.xml @@ -0,0 +1,22 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + https://github.com/gephi/gephi/issues + https://github.com/gephi/gephi/wiki/Releases + gephi/gephi + + +Gephi is an award-winning open-source platform for visualizing and manipulating large graphs. It runs on Windows, Mac OS X and Linux. Localization is available in English, French, Spanish, Japanese, Russian, Brazilian Portuguese, Chinese, Czech and German. + +Fast Powered by a built-in OpenGL engine, Gephi is able to push the envelope with very large networks. Visualize networks up to a million elements. All actions (e.g. layout, filter, drag) run in real-time. + +Simple Easy to install and get started. An UI that is centered around the visualization. Like Photoshop™ for graphs. + +Modular Extend Gephi with plug-ins. The architecture is built on top of Netbeans Platform and can be extended or reused easily through well-written APIs. + + From 0f81c02f229d0413efda1986607251450222d9aa Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Wed, 17 Mar 2021 03:41:01 +0100 Subject: [PATCH 2/4] media-gfx/gephi-bin: autodetect javahome Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Alessandro Barbieri --- media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild b/media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild index 08701750d1..25f378c202 100644 --- a/media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild +++ b/media-gfx/gephi-bin/gephi-bin-0.9.2.ebuild @@ -24,6 +24,8 @@ QA_PREBUILT=" " src_prepare() { + sed -e 's|\#jdkhome="\/path\/to\/jdk"|jdkhome=\$(java-config -O)|g' -i "${S}/${MYP}/etc/gephi.conf" + #remove windows things rm -r "${S}/${MYP}"/bin/*.exe || die rm -r "${S}/${MYP}"/platform/lib/*.exe || die From a1355b54a5d4be260d8211f6432133693324145f Mon Sep 17 00:00:00 2001 From: Andreas Zuber Date: Wed, 17 Mar 2021 09:46:43 +0100 Subject: [PATCH 3/4] games-engines/luxtorpeda: version bump to 24.0.0 Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Andreas Zuber --- games-engines/luxtorpeda/Manifest | 1 + .../luxtorpeda/luxtorpeda-24.0.0.ebuild | 236 ++++++++++++++++++ 2 files changed, 237 insertions(+) create mode 100644 games-engines/luxtorpeda/luxtorpeda-24.0.0.ebuild diff --git a/games-engines/luxtorpeda/Manifest b/games-engines/luxtorpeda/Manifest index 6cac9c7f72..51234f3ff1 100644 --- a/games-engines/luxtorpeda/Manifest +++ b/games-engines/luxtorpeda/Manifest @@ -64,6 +64,7 @@ DIST lock_api-0.1.5.crate 16967 BLAKE2B c44ebe24fa6074394d0719b293d447ab67a9a237 DIST log-0.4.6.crate 22303 BLAKE2B 3b1ad5e1cc1cf7bb223df569a6024b5749fdc973bb99a2a1f11772774cb384cc98214366e62d846b57c7d150f925cdf0e906f8113039204a82fbf001ae15133a SHA512 3844c771f97531ae7312c6bb0cf74ccaab94925f68bf1172419cc44fa4b5373f3ac6b42fb6d0ba636a970b295ea5d1b5abbe72b4da67a103e8dc4ed48a0cc5cb DIST loom-0.3.4.crate 53126 BLAKE2B f9eaaae82444b0be0c2fa82f2eb1baebdaa51eb01056f2fd591a0be577e12736b622664dfbbe754b3c1856179f465ff2c5cd5d7d98fd41cbdb970c2bb6b50df4 SHA512 fd56999d6a024659928298b461efe50e21e6e98c533d4e292021a4aacab59f033d89706ccd805f45d9f560f13220d60fa8ae59fb13683c034af3fff288a98e09 DIST luxtorpeda-23.0.0.tar.gz 38669 BLAKE2B fc84022fe73ee44b3ae8ccd878f1b028cbd07111ae202e06002c34e3e4074e72f9c8be563a11dfe2cd85450efadaf1e9535322c4ca98362b5d777c71d8cabce0 SHA512 397cd8cb55ed1dc2e02f8f825cd48e5dce77451c75aa689a3b71c51dc0f19bca89656bff33cfcd1b969540e33931d480fe3f75dc23fa2ed7e2adb3315d5f96b3 +DIST luxtorpeda-24.0.0.tar.gz 38488 BLAKE2B 074d1d08eb5a2aad0e1c4061ec944b4308675c92872e575c26f4a0ae46f47d8755cdfdd6a44ea0eda676277807db62c035ed17cab36d09bfc9e7c7b2ac4b51cd SHA512 a29e30c995cd20cb76fae9575ef6427311bd6d614e7d2ba7e1a63ceb64192508159574685e2129070d6c6902ac7180d20820a4961cb5ff6cb11afe2577d3e3a2 DIST lzma-sys-0.1.15.crate 632207 BLAKE2B b8fbc7e3ed2556ee4b7144211a747f0774ee2ee99dcd55ea4a33fbc4301a7dc0dfa51229b5e39dfa0bd626799a85ddfcaeab4442501e33d213ec6226554395cb SHA512 aa160b7038771ed39aa06b450ed3d2c80f76dae8b655e637e248f7507e0ccc37a01068ff20664fd59735aa4be253a2594837e709bad7e01bcc58905fb7865d91 DIST matches-0.1.8.crate 2216 BLAKE2B f18176110921b1cf6e58d52d12f1d1a3455ce2dc04421fbf1b392f66cdd81a88e924571fa27e307a06301d83b04f3b8a0ca3ae40d2da6f2decb8aac4e2801fbb SHA512 98b58f6a2694b03a7dd1be69ebf7e3ad14483fc8e4cb6e6c26a4937e4e660e843efb4dd04a7312dd9659ca02acd3775678f73b8faac44a76ffafaf873c22f590 DIST memchr-2.2.1.crate 20862 BLAKE2B 79c8b7772f6c4e76ef98e416cab1a87648fe1f78f77eb31a894a2b1611fcf2d8336e361ab3d692cd03579b33f6bc5adb20d42418475dac5441b8bf356e38e442 SHA512 0f5e11507a4235edaa8ef639753abf62f1c187c8c6e35b0c80c9306958e41893492d4995e28bf28e5710e8739c7e75bb75a515507ec87870741a3b426ba8f44d diff --git a/games-engines/luxtorpeda/luxtorpeda-24.0.0.ebuild b/games-engines/luxtorpeda/luxtorpeda-24.0.0.ebuild new file mode 100644 index 0000000000..76840c8e86 --- /dev/null +++ b/games-engines/luxtorpeda/luxtorpeda-24.0.0.ebuild @@ -0,0 +1,236 @@ +# Copyright 2017-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# Auto-Generated by cargo-ebuild 0.3.1 + +EAPI=7 + +CRATES=" +adler-0.2.2 +aho-corasick-0.7.4 +arrayvec-0.4.11 +async-compression-0.3.5 +autocfg-0.1.4 +base64-0.11.0 +base64-0.12.3 +bitflags-1.1.0 +block-buffer-0.9.0 +bumpalo-3.4.0 +byteorder-1.3.2 +bytes-0.4.12 +bytes-0.5.5 +bzip2-0.3.3 +bzip2-0.4.1 +bzip2-sys-0.1.9+1.0.8 +cc-1.0.58 +cfg-if-0.1.9 +cloudabi-0.0.3 +cpuid-bool-0.1.0 +crc32fast-1.2.0 +crossbeam-deque-0.7.1 +crossbeam-epoch-0.7.1 +crossbeam-queue-0.1.2 +crossbeam-utils-0.6.5 +digest-0.9.0 +dtoa-0.4.4 +encoding_rs-0.8.17 +filetime-0.2.7 +flate2-1.0.16 +fnv-1.0.6 +fuchsia-cprng-0.1.1 +fuchsia-zircon-0.3.3 +fuchsia-zircon-sys-0.3.3 +futures-0.1.28 +futures-channel-0.3.5 +futures-core-0.3.5 +futures-io-0.3.5 +futures-macro-0.3.5 +futures-sink-0.3.5 +futures-task-0.3.5 +futures-util-0.3.5 +generator-0.6.21 +generic-array-0.14.2 +h2-0.2.5 +hex-0.4.2 +http-0.2.1 +http-body-0.3.1 +httparse-1.3.4 +hyper-0.13.6 +hyper-rustls-0.20.0 +idna-0.2.0 +indexmap-1.0.2 +inotify-0.7.0 +inotify-sys-0.1.3 +iovec-0.1.4 +itoa-0.4.4 +js-sys-0.3.41 +json-0.11.14 +kernel32-sys-0.2.2 +lazy_static-1.4.0 +libc-0.2.72 +lock_api-0.1.5 +log-0.4.6 +loom-0.3.4 +lzma-sys-0.1.15 +matches-0.1.8 +memchr-2.2.1 +memoffset-0.2.1 +mime-0.3.13 +mime_guess-2.0.3 +miniz_oxide-0.4.0 +mio-0.6.22 +mio-uds-0.6.7 +miow-0.2.1 +net2-0.2.33 +nodrop-0.1.13 +num_cpus-1.10.1 +once_cell-1.4.0 +opaque-debug-0.3.0 +owning_ref-0.4.0 +parking_lot-0.7.1 +parking_lot_core-0.4.0 +percent-encoding-2.1.0 +pin-project-0.4.22 +pin-project-internal-0.4.22 +pin-project-lite-0.1.7 +pin-utils-0.1.0 +pkg-config-0.3.14 +podio-0.1.7 +proc-macro-hack-0.5.16 +proc-macro-nested-0.1.6 +proc-macro2-0.4.30 +proc-macro2-1.0.18 +psutil-1.6.0 +quote-0.6.13 +quote-1.0.7 +rand-0.6.5 +rand_chacha-0.1.1 +rand_core-0.3.1 +rand_core-0.4.0 +rand_hc-0.1.0 +rand_isaac-0.1.1 +rand_jitter-0.1.4 +rand_os-0.1.3 +rand_pcg-0.1.2 +rand_xorshift-0.1.1 +rdrand-0.4.0 +redox_syscall-0.1.56 +regex-1.2.0 +regex-syntax-0.6.10 +reqwest-0.10.6 +ring-0.16.15 +rustc_version-0.2.3 +rustls-0.17.0 +ryu-1.0.0 +scoped-tls-0.1.2 +scopeguard-0.3.3 +sct-0.6.0 +semver-0.9.0 +semver-parser-0.7.0 +serde-1.0.97 +serde_derive-1.0.97 +serde_json-1.0.40 +serde_regex-0.4.0 +serde_urlencoded-0.6.1 +sha-1-0.9.1 +slab-0.4.2 +smallvec-0.6.10 +socket2-0.3.12 +spin-0.5.2 +stable_deref_trait-1.1.1 +syn-0.15.42 +syn-1.0.33 +tar-0.4.26 +thread_local-0.3.6 +time-0.1.42 +tokio-0.1.22 +tokio-0.2.21 +tokio-codec-0.1.1 +tokio-current-thread-0.1.6 +tokio-executor-0.1.8 +tokio-fs-0.1.6 +tokio-io-0.1.12 +tokio-reactor-0.1.9 +tokio-rustls-0.13.1 +tokio-sync-0.1.6 +tokio-tcp-0.1.3 +tokio-threadpool-0.1.15 +tokio-timer-0.2.11 +tokio-udp-0.1.3 +tokio-uds-0.2.5 +tokio-util-0.3.1 +tower-service-0.3.0 +try-lock-0.2.2 +typenum-1.12.0 +ucd-util-0.1.5 +unicase-2.4.0 +unicode-bidi-0.3.4 +unicode-normalization-0.1.8 +unicode-xid-0.1.0 +unicode-xid-0.2.1 +untrusted-0.7.1 +url-2.1.1 +users-0.9.1 +utf8-ranges-1.0.3 +version_check-0.1.5 +version_check-0.9.2 +want-0.3.0 +wasm-bindgen-0.2.64 +wasm-bindgen-backend-0.2.64 +wasm-bindgen-futures-0.4.14 +wasm-bindgen-macro-0.2.64 +wasm-bindgen-macro-support-0.2.64 +wasm-bindgen-shared-0.2.64 +web-sys-0.3.41 +webpki-0.21.3 +webpki-roots-0.19.0 +winapi-0.2.8 +winapi-0.3.9 +winapi-build-0.1.1 +winapi-i686-pc-windows-gnu-0.4.0 +winapi-x86_64-pc-windows-gnu-0.4.0 +winreg-0.7.0 +ws2_32-sys-0.2.1 +xattr-0.2.2 +xdg-2.2.0 +xz2-0.1.6 +zip-0.5.6 +" + +inherit cargo + +DESCRIPTION="Steam Play compatibility tool to run games using native Linux engines" +HOMEPAGE="https://luxtorpeda.gitlab.io" + +MY_PV=$(ver_cut 1) +MY_P="${PN}-${MY_PV}" + +SRC_URI=" + https://github.com/luxtorpeda-dev/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz + $(cargo_crate_uris ${CRATES})" +RESTRICT="mirror" + +LICENSE="GPL-2 BSD Apache-2.0 BSD-2 ISC MIT MPL-2.0 Unlicense" +SLOT="0" +KEYWORDS="~amd64" + +BEPEND=">=dev-libs/openssl-1.1.1g" +RDEPEND="${BDEPEND}" + +S="${WORKDIR}/${MY_P}" + +src_prepare(){ + default + sed "s/%name%/${PN}/; s/%display_name%/${PN}/" compatibilitytool.template \ + > compatibilitytool.vdf || die "generating compatibilitytool.vdf failed" +} + +src_install() { + dodoc README.md CHANGELOG.md + + local TARGET="/usr/share/steam/compatibilitytools.d/luxtorpeda" + insinto $TARGET + doins compatibilitytool.vdf config.json toolmanifest.vdf + exeinto $TARGET + doexe target/release/luxtorpeda +} From 8065a889c71e009e4187d0f72d3df80752062204 Mon Sep 17 00:00:00 2001 From: Andreas Zuber Date: Wed, 17 Mar 2021 09:47:55 +0100 Subject: [PATCH 4/4] games-engines/luxtorpeda: cleanup old version Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Andreas Zuber --- games-engines/luxtorpeda/Manifest | 1 - .../luxtorpeda/luxtorpeda-23.0.0.ebuild | 236 ------------------ 2 files changed, 237 deletions(-) delete mode 100644 games-engines/luxtorpeda/luxtorpeda-23.0.0.ebuild diff --git a/games-engines/luxtorpeda/Manifest b/games-engines/luxtorpeda/Manifest index 51234f3ff1..73cd674427 100644 --- a/games-engines/luxtorpeda/Manifest +++ b/games-engines/luxtorpeda/Manifest @@ -63,7 +63,6 @@ DIST libc-0.2.72.crate 478292 BLAKE2B 23914e92f9ae57a023bbb9bd9cd823cf535ba14ce8 DIST lock_api-0.1.5.crate 16967 BLAKE2B c44ebe24fa6074394d0719b293d447ab67a9a23788821f2ba816b5e5b7a6b09d543c630a946b956811dd199144bf43568b52da5ebdd5e8b674e489f9efd2234d SHA512 e6049a8a840c11f00b6505dc9d01d1f759aa7bee47520f86e36caf6c52ca476236b09609b0a5cab0f4c247a40a4736f8fc04cf26fce0962cbbf2956ad4adbfde DIST log-0.4.6.crate 22303 BLAKE2B 3b1ad5e1cc1cf7bb223df569a6024b5749fdc973bb99a2a1f11772774cb384cc98214366e62d846b57c7d150f925cdf0e906f8113039204a82fbf001ae15133a SHA512 3844c771f97531ae7312c6bb0cf74ccaab94925f68bf1172419cc44fa4b5373f3ac6b42fb6d0ba636a970b295ea5d1b5abbe72b4da67a103e8dc4ed48a0cc5cb DIST loom-0.3.4.crate 53126 BLAKE2B f9eaaae82444b0be0c2fa82f2eb1baebdaa51eb01056f2fd591a0be577e12736b622664dfbbe754b3c1856179f465ff2c5cd5d7d98fd41cbdb970c2bb6b50df4 SHA512 fd56999d6a024659928298b461efe50e21e6e98c533d4e292021a4aacab59f033d89706ccd805f45d9f560f13220d60fa8ae59fb13683c034af3fff288a98e09 -DIST luxtorpeda-23.0.0.tar.gz 38669 BLAKE2B fc84022fe73ee44b3ae8ccd878f1b028cbd07111ae202e06002c34e3e4074e72f9c8be563a11dfe2cd85450efadaf1e9535322c4ca98362b5d777c71d8cabce0 SHA512 397cd8cb55ed1dc2e02f8f825cd48e5dce77451c75aa689a3b71c51dc0f19bca89656bff33cfcd1b969540e33931d480fe3f75dc23fa2ed7e2adb3315d5f96b3 DIST luxtorpeda-24.0.0.tar.gz 38488 BLAKE2B 074d1d08eb5a2aad0e1c4061ec944b4308675c92872e575c26f4a0ae46f47d8755cdfdd6a44ea0eda676277807db62c035ed17cab36d09bfc9e7c7b2ac4b51cd SHA512 a29e30c995cd20cb76fae9575ef6427311bd6d614e7d2ba7e1a63ceb64192508159574685e2129070d6c6902ac7180d20820a4961cb5ff6cb11afe2577d3e3a2 DIST lzma-sys-0.1.15.crate 632207 BLAKE2B b8fbc7e3ed2556ee4b7144211a747f0774ee2ee99dcd55ea4a33fbc4301a7dc0dfa51229b5e39dfa0bd626799a85ddfcaeab4442501e33d213ec6226554395cb SHA512 aa160b7038771ed39aa06b450ed3d2c80f76dae8b655e637e248f7507e0ccc37a01068ff20664fd59735aa4be253a2594837e709bad7e01bcc58905fb7865d91 DIST matches-0.1.8.crate 2216 BLAKE2B f18176110921b1cf6e58d52d12f1d1a3455ce2dc04421fbf1b392f66cdd81a88e924571fa27e307a06301d83b04f3b8a0ca3ae40d2da6f2decb8aac4e2801fbb SHA512 98b58f6a2694b03a7dd1be69ebf7e3ad14483fc8e4cb6e6c26a4937e4e660e843efb4dd04a7312dd9659ca02acd3775678f73b8faac44a76ffafaf873c22f590 diff --git a/games-engines/luxtorpeda/luxtorpeda-23.0.0.ebuild b/games-engines/luxtorpeda/luxtorpeda-23.0.0.ebuild deleted file mode 100644 index 88eddd465e..0000000000 --- a/games-engines/luxtorpeda/luxtorpeda-23.0.0.ebuild +++ /dev/null @@ -1,236 +0,0 @@ -# Copyright 2017-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# Auto-Generated by cargo-ebuild 0.3.1 - -EAPI=7 - -CRATES=" -adler-0.2.2 -aho-corasick-0.7.4 -arrayvec-0.4.11 -async-compression-0.3.5 -autocfg-0.1.4 -base64-0.11.0 -base64-0.12.3 -bitflags-1.1.0 -block-buffer-0.9.0 -bumpalo-3.4.0 -byteorder-1.3.2 -bytes-0.4.12 -bytes-0.5.5 -bzip2-0.3.3 -bzip2-0.4.1 -bzip2-sys-0.1.9+1.0.8 -cc-1.0.58 -cfg-if-0.1.9 -cloudabi-0.0.3 -cpuid-bool-0.1.0 -crc32fast-1.2.0 -crossbeam-deque-0.7.1 -crossbeam-epoch-0.7.1 -crossbeam-queue-0.1.2 -crossbeam-utils-0.6.5 -digest-0.9.0 -dtoa-0.4.4 -encoding_rs-0.8.17 -filetime-0.2.7 -flate2-1.0.16 -fnv-1.0.6 -fuchsia-cprng-0.1.1 -fuchsia-zircon-0.3.3 -fuchsia-zircon-sys-0.3.3 -futures-0.1.28 -futures-channel-0.3.5 -futures-core-0.3.5 -futures-io-0.3.5 -futures-macro-0.3.5 -futures-sink-0.3.5 -futures-task-0.3.5 -futures-util-0.3.5 -generator-0.6.21 -generic-array-0.14.2 -h2-0.2.5 -hex-0.4.2 -http-0.2.1 -http-body-0.3.1 -httparse-1.3.4 -hyper-0.13.6 -hyper-rustls-0.20.0 -idna-0.2.0 -indexmap-1.0.2 -inotify-0.7.0 -inotify-sys-0.1.3 -iovec-0.1.4 -itoa-0.4.4 -js-sys-0.3.41 -json-0.11.14 -kernel32-sys-0.2.2 -lazy_static-1.4.0 -libc-0.2.72 -lock_api-0.1.5 -log-0.4.6 -loom-0.3.4 -lzma-sys-0.1.15 -matches-0.1.8 -memchr-2.2.1 -memoffset-0.2.1 -mime-0.3.13 -mime_guess-2.0.3 -miniz_oxide-0.4.0 -mio-0.6.22 -mio-uds-0.6.7 -miow-0.2.1 -net2-0.2.33 -nodrop-0.1.13 -num_cpus-1.10.1 -once_cell-1.4.0 -opaque-debug-0.3.0 -owning_ref-0.4.0 -parking_lot-0.7.1 -parking_lot_core-0.4.0 -percent-encoding-2.1.0 -pin-project-0.4.22 -pin-project-internal-0.4.22 -pin-project-lite-0.1.7 -pin-utils-0.1.0 -pkg-config-0.3.14 -podio-0.1.7 -proc-macro-hack-0.5.16 -proc-macro-nested-0.1.6 -proc-macro2-0.4.30 -proc-macro2-1.0.18 -psutil-1.6.0 -quote-0.6.13 -quote-1.0.7 -rand-0.6.5 -rand_chacha-0.1.1 -rand_core-0.3.1 -rand_core-0.4.0 -rand_hc-0.1.0 -rand_isaac-0.1.1 -rand_jitter-0.1.4 -rand_os-0.1.3 -rand_pcg-0.1.2 -rand_xorshift-0.1.1 -rdrand-0.4.0 -redox_syscall-0.1.56 -regex-1.2.0 -regex-syntax-0.6.10 -reqwest-0.10.6 -ring-0.16.15 -rustc_version-0.2.3 -rustls-0.17.0 -ryu-1.0.0 -scoped-tls-0.1.2 -scopeguard-0.3.3 -sct-0.6.0 -semver-0.9.0 -semver-parser-0.7.0 -serde-1.0.97 -serde_derive-1.0.97 -serde_json-1.0.40 -serde_regex-0.4.0 -serde_urlencoded-0.6.1 -sha-1-0.9.1 -slab-0.4.2 -smallvec-0.6.10 -socket2-0.3.12 -spin-0.5.2 -stable_deref_trait-1.1.1 -syn-0.15.42 -syn-1.0.33 -tar-0.4.26 -thread_local-0.3.6 -time-0.1.42 -tokio-0.1.22 -tokio-0.2.21 -tokio-codec-0.1.1 -tokio-current-thread-0.1.6 -tokio-executor-0.1.8 -tokio-fs-0.1.6 -tokio-io-0.1.12 -tokio-reactor-0.1.9 -tokio-rustls-0.13.1 -tokio-sync-0.1.6 -tokio-tcp-0.1.3 -tokio-threadpool-0.1.15 -tokio-timer-0.2.11 -tokio-udp-0.1.3 -tokio-uds-0.2.5 -tokio-util-0.3.1 -tower-service-0.3.0 -try-lock-0.2.2 -typenum-1.12.0 -ucd-util-0.1.5 -unicase-2.4.0 -unicode-bidi-0.3.4 -unicode-normalization-0.1.8 -unicode-xid-0.1.0 -unicode-xid-0.2.1 -untrusted-0.7.1 -url-2.1.1 -users-0.9.1 -utf8-ranges-1.0.3 -version_check-0.1.5 -version_check-0.9.2 -want-0.3.0 -wasm-bindgen-0.2.64 -wasm-bindgen-backend-0.2.64 -wasm-bindgen-futures-0.4.14 -wasm-bindgen-macro-0.2.64 -wasm-bindgen-macro-support-0.2.64 -wasm-bindgen-shared-0.2.64 -web-sys-0.3.41 -webpki-0.21.3 -webpki-roots-0.19.0 -winapi-0.2.8 -winapi-0.3.9 -winapi-build-0.1.1 -winapi-i686-pc-windows-gnu-0.4.0 -winapi-x86_64-pc-windows-gnu-0.4.0 -winreg-0.7.0 -ws2_32-sys-0.2.1 -xattr-0.2.2 -xdg-2.2.0 -xz2-0.1.6 -zip-0.5.6 -" - -inherit cargo - -DESCRIPTION="Steam Play compatibility tool to run games using native Linux engines" -HOMEPAGE="https://luxtorpeda.gitlab.io" - -MY_PV=$(ver_cut 1) -MY_P="${PN}-${MY_PV}" - -SRC_URI=" - https://github.com/luxtorpeda-dev/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz - $(cargo_crate_uris ${CRATES})" -RESTRICT="mirror" - -LICENSE="GPL-2 BSD Apache-2.0 BSD-2 ISC MIT MPL-2.0 Unlicense" -SLOT="0" -KEYWORDS="~amd64" - -BEPEND=">=dev-libs/openssl-1.1.1g" -RDEPEND="${BDEPEND}" - -S="${WORKDIR}/${MY_P}" - -src_prepare(){ - default - sed "s/%name%/${PN}/; s/%display_name%/${PN}/" compatibilitytool.template \ - > compatibilitytool.vdf || die "generating compatibilitytool.vdf failed" -} - -src_install() { - dodoc README.md CHANGELOG.md - - local TARGET="/usr/share/steam/compatibilitytools.d/luxtorpeda" - insinto $TARGET - doins compatibilitytool.vdf config.json toolmanifest.vdf - exeinto $TARGET - doexe target/release/luxtorpeda -}