diff --git a/app-emacs/vterm/files/bashrc b/app-emacs/vterm/files/bashrc old mode 100755 new mode 100644 diff --git a/app-emacs/vterm/vterm-20200504.544.ebuild b/app-emacs/vterm/vterm-20200504.544.ebuild index 6de8fb88a1..2fe5652818 100644 --- a/app-emacs/vterm/vterm-20200504.544.ebuild +++ b/app-emacs/vterm/vterm-20200504.544.ebuild @@ -14,15 +14,16 @@ SLOT="0" KEYWORDS="~amd64 ~x86" RDEPEND=" - app-editors/emacs[dynamic-loading] + >=app-editors/emacs-26.1[dynamic-loading] dev-libs/libvterm " ELISP_REMOVE="${PN}-pkg.el" SITEFILE="50${PN}-gentoo.el" +DOC="README.md" src_configure() { - elisp-make-autoload-file + elisp_src_configure local mycmakeargs=( "USE_SYSTEM_LIBVTERM=yes" ) cmake_src_configure @@ -37,25 +38,23 @@ src_compile() { src_install() { elisp_src_install - dodoc README.md - # install vterm module elisp-install ${PN} *.so # add shell config files if has_version app-shells/bash; then elog "Adding configuration for bash." - exeinto /etc/bash/bashrc.d/ - newexe "${FILESDIR}/bashrc" bash-emacs-vterm.sh + insinto /etc/bash/bashrc.d/ + newins "${FILESDIR}/bashrc" emacs-vterm-bash.sh fi if has_version app-shells/zsh; then elog "Adding configuration for zsh." - exeinto /etc/profile.d/ - newexe "${FILESDIR}/zshrc" zsh-emacs-vterm.sh + insinto /etc/profile.d/ + newins "${FILESDIR}/zshrc" emacs-vterm-bash.sh fi if has_version app-shells/fish; then elog "Adding configuration for fish." - exeinto /etc/fish/conf.d/ - newexe "${FILESDIR}/config.fish" emacs-vterm.fish + insinto /etc/fish/conf.d/ + newins "${FILESDIR}/config.fish" emacs-vterm.fish fi } diff --git a/dev-R/R6/Manifest b/dev-R/R6/Manifest new file mode 100644 index 0000000000..8e57d266de --- /dev/null +++ b/dev-R/R6/Manifest @@ -0,0 +1 @@ +DIST R6_2.4.1.tar.gz 35536 BLAKE2B 0a2e7664d0b5911fe0f6c40bd80314ed6a100cbce9c9afe60a166e9fa0da773d16c0db545b28992b543d5a380c45bd977413026e422be13ca4706a4b0d7137e8 SHA512 bf165edf15f4fb3a4ad94b80bcf96f255b6889649b40c7f27af10841a55d81d02f8a42707fc08a5bcadfa94d77d67f4617739a75b3e7d99ba57bb9100dde98b0 diff --git a/dev-R/R6/R6-2.4.1.ebuild b/dev-R/R6/R6-2.4.1.ebuild new file mode 100644 index 0000000000..cd25ab1750 --- /dev/null +++ b/dev-R/R6/R6-2.4.1.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit R-packages-guru + +DESCRIPTION='Encapsulated Classes with Reference Semantics' +SRC_URI="http://cran.r-project.org/src/contrib/R6_2.4.1.tar.gz" +LICENSE='MIT' +HOMEPAGE=" + https://r6.r-lib.org + https://github.com/r-lib/R6 + https://cran.r-project.org/package=R6 +" +IUSE="${IUSE-}" +KEYWORDS="~amd64" +DEPEND=">=dev-lang/R-3.0" +RDEPEND="${DEPEND}" diff --git a/dev-R/R6/metadata.xml b/dev-R/R6/metadata.xml new file mode 100644 index 0000000000..6762d82c47 --- /dev/null +++ b/dev-R/R6/metadata.xml @@ -0,0 +1,33 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + Creates classes with reference semantics, similar to R's built-in reference classes. Compared to reference classes, R6 classes are simpler and lighter-weight, and they are not built on S4 classes so they do not require the methods package. These classes allow public and private members, and they support inheritance, even when the classes are defined in different packages. + + + + https://github.com/r-lib/R6/issues + + + https://cran.r-project.org/web//packages/R6/R6.pdf + + + https://cran.r-project.org/web//packages/R6/news/news.html + + + + Winston Chang + + + winston@stdout.org + + + + r-lib/R6 + + + diff --git a/dev-R/Rcpp/Manifest b/dev-R/Rcpp/Manifest new file mode 100644 index 0000000000..e80a5ed1e7 --- /dev/null +++ b/dev-R/Rcpp/Manifest @@ -0,0 +1 @@ +DIST Rcpp_1.0.4.6.tar.gz 2751467 BLAKE2B 1df5a1ab26974a0d4ec2bf8708a0f81a7bc8e27a1d50deda50375a0086c8284e6521914581c8bf336359ae61ab1c3be2cd18e49040451c8921a54188f4c75da4 SHA512 d3099925cd897100fc510e6a0b7a4c4007ec92edf5c335d7d87f39aac35a6cd5da605c904527da802414992ca13302192625fde769ce62ab7542d5cb76f5c1df diff --git a/dev-R/Rcpp/Rcpp-1.0.4.6.ebuild b/dev-R/Rcpp/Rcpp-1.0.4.6.ebuild new file mode 100644 index 0000000000..9edb4e6c88 --- /dev/null +++ b/dev-R/Rcpp/Rcpp-1.0.4.6.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit R-packages-guru + +DESCRIPTION='Seamless R and C++ Integration' +SRC_URI="http://cran.r-project.org/src/contrib/Rcpp_1.0.4.6.tar.gz" +LICENSE='GPL-2+' +HOMEPAGE=" + http://www.rcpp.org + http://dirk.eddelbuettel.com/code/rcpp.html + https://github.com/RcppCore/Rcpp + https://cran.r-project.org/package=Rcpp +" +IUSE="${IUSE-}" +KEYWORDS="~amd64" diff --git a/dev-R/Rcpp/metadata.xml b/dev-R/Rcpp/metadata.xml new file mode 100644 index 0000000000..6dda537840 --- /dev/null +++ b/dev-R/Rcpp/metadata.xml @@ -0,0 +1,33 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + The 'Rcpp' package provides R functions as well as C++ classes which offer a seamless integration of R and C++. Many R data types and objects can be mapped back and forth to C++ equivalents which facilitates both writing of new code as well as easier integration of third-party libraries. Documentation about 'Rcpp' is provided by several vignettes included in this package + + + + https://github.com/RcppCore/Rcpp/issues + + + https://cran.r-project.org/web//packages/Rcpp/Rcpp.pdf + + + https://cran.r-project.org/web//packages/Rcpp/ChangeLog + + + + Dirk Eddelbuettel + + + edd@debian.org + + + + RcppCore/Rcpp + + + diff --git a/dev-R/assertthat/assertthat-0.2.1.ebuild b/dev-R/assertthat/assertthat-0.2.1.ebuild index 2eed54a6a4..5460f30393 100644 --- a/dev-R/assertthat/assertthat-0.2.1.ebuild +++ b/dev-R/assertthat/assertthat-0.2.1.ebuild @@ -9,5 +9,5 @@ DESCRIPTION='Easy Pre and Post Assertions' HOMEPAGE="https://cran.r-project.org/package=assertthat" SRC_URI="http://cran.r-project.org/src/contrib/assertthat_0.2.1.tar.gz" LICENSE='GPL-3' - +KEYWORDS="~amd64" IUSE="${IUSE-}" diff --git a/dev-R/cellranger/Manifest b/dev-R/cellranger/Manifest new file mode 100644 index 0000000000..d7eecd606b --- /dev/null +++ b/dev-R/cellranger/Manifest @@ -0,0 +1 @@ +DIST cellranger_1.1.0.tar.gz 63857 BLAKE2B 993ff76943ff1c3cacba0bdbfb609b8b19f16a3b61e061260e3fb82d2c2cb80db8c6c5f4904a0b93d4fcb7eb1f1ec082da206bb91e6ff97763ee9f65f91ddffc SHA512 5a27ce21b5d22b0eea06f64ef6faf26a63860ccefa17e3d4cb74ffceaf8b0b6f332b482d476dbc32f8174d5bfef01a5f9fc20673db2fa5386682be1baf11d2a9 diff --git a/dev-R/cellranger/cellranger-1.1.0.ebuild b/dev-R/cellranger/cellranger-1.1.0.ebuild new file mode 100644 index 0000000000..8c1eb1801f --- /dev/null +++ b/dev-R/cellranger/cellranger-1.1.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit R-packages-guru + +DESCRIPTION='Translate Spreadsheet Cell Ranges to Rows and Columns' +SRC_URI="http://cran.r-project.org/src/contrib/cellranger_1.1.0.tar.gz" +LICENSE='MIT' +HOMEPAGE=" + https://github.com/rsheets/cellranger + https://cran.r-project.org/package=cellranger +" +IUSE="${IUSE-}" +KEYWORDS="~amd64" +DEPEND=" + >=dev-lang/R-3.0.0 + dev-R/rematch + dev-R/tibble +" +RDEPEND="${DEPEND-}" diff --git a/dev-R/cellranger/metadata.xml b/dev-R/cellranger/metadata.xml new file mode 100644 index 0000000000..8190e45b73 --- /dev/null +++ b/dev-R/cellranger/metadata.xml @@ -0,0 +1,33 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + Helper functions to work with spreadsheets and the "A1:D10" style of cell range specification. + + + + https://github.com/rsheets/cellranger/issues + + + https://github.com/rsheets/cellranger/issues + + + https://cran.r-project.org/web//packages/cellranger/news.html + + + + Jennifer Bryan + + + jenny@stat.ubc.ca + + + + rsheets/cellranger + + + diff --git a/dev-R/cli/cli-2.0.2.ebuild b/dev-R/cli/cli-2.0.2.ebuild index 1439403362..81511cf15d 100644 --- a/dev-R/cli/cli-2.0.2.ebuild +++ b/dev-R/cli/cli-2.0.2.ebuild @@ -12,7 +12,7 @@ HOMEPAGE=" " SRC_URI="http://cran.r-project.org/src/contrib/cli_2.0.2.tar.gz" LICENSE='MIT' - +KEYWORDS="~amd64" IUSE="${IUSE-}" DEPEND=" dev-R/assertthat diff --git a/dev-R/crayon/crayon-1.3.4.ebuild b/dev-R/crayon/crayon-1.3.4.ebuild index 1d0a3ce522..f6220ba5e8 100644 --- a/dev-R/crayon/crayon-1.3.4.ebuild +++ b/dev-R/crayon/crayon-1.3.4.ebuild @@ -12,5 +12,5 @@ HOMEPAGE=" " SRC_URI="http://cran.r-project.org/src/contrib/crayon_1.3.4.tar.gz" LICENSE='MIT' - +KEYWORDS="~amd64" IUSE="${IUSE-}" diff --git a/dev-R/digest/digest-0.6.25.ebuild b/dev-R/digest/digest-0.6.25.ebuild index f08e1512ab..946b5a10e1 100644 --- a/dev-R/digest/digest-0.6.25.ebuild +++ b/dev-R/digest/digest-0.6.25.ebuild @@ -12,7 +12,7 @@ HOMEPAGE=" " SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz" LICENSE='GPL-2+' - +KEYWORDS="~amd64" IUSE="${IUSE-}" RDEPEND=">=dev-lang/R-3.1.0" DEPEND="${RDEPEND}" diff --git a/dev-R/dplyr/Manifest b/dev-R/dplyr/Manifest new file mode 100644 index 0000000000..c61603878f --- /dev/null +++ b/dev-R/dplyr/Manifest @@ -0,0 +1 @@ +DIST dplyr_0.8.5.tar.gz 1378766 BLAKE2B 5093e178aa882913800d07c502aa3e3107d4152060e0070229091e483164493a94b1bc37f6f00d97641133b01301c013e81df38c8108954bce431447c298dd73 SHA512 08269e59c43aacc5959d516c1fed45d3dbbe0912aa92263ff8eda6454f216a739ea5989088852cf2ab60bf06fc8aea524557258df786e16b81f5f785cb627105 diff --git a/dev-R/dplyr/dplyr-0.8.5.ebuild b/dev-R/dplyr/dplyr-0.8.5.ebuild new file mode 100644 index 0000000000..b005fcd93e --- /dev/null +++ b/dev-R/dplyr/dplyr-0.8.5.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit R-packages-guru + +DESCRIPTION='A Grammar of Data Manipulation' +SRC_URI="http://cran.r-project.org/src/contrib/dplyr_0.8.5.tar.gz" +LICENSE='MIT' +HOMEPAGE=" + http://dplyr.tidyverse.org + https://github.com/tidyverse/dplyr + https://cran.r-project.org/package=dplyr +" +KEYWORDS="~amd64" +IUSE="${IUSE-}" +DEPEND=" + dev-cpp/plog + dev-libs/boost + >=dev-lang/R-3.2.0 + >=dev-R/assertthat-0.2.0 + dev-R/ellipsis + >=dev-R/glue-1.3.0 + >=dev-R/magrittr-1.5 + dev-R/pkgconfig + dev-R/R6 + >=dev-R/Rcpp-1.0.1 + >=dev-R/rlang-0.4.0 + >=dev-R/tibble-2.0.0 + >=dev-R/tidyselect-0.2.5 +" +RDEPEND="${DEPEND-}" diff --git a/dev-R/dplyr/metadata.xml b/dev-R/dplyr/metadata.xml new file mode 100644 index 0000000000..4b63e23a26 --- /dev/null +++ b/dev-R/dplyr/metadata.xml @@ -0,0 +1,33 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + A fast, consistent tool for working with data frame like objects, both in memory and out of memory. + + + + https://github.com/tidyverse/dplyr/issues + + + https://cran.r-project.org/web//packages/dplyr/dplyr.pdf + + + https://cran.r-project.org/web//packages/dplyr/news/news.html + + + + Hadley Wickham + + + hadley@rstudio.com + + + + tidyverse/dplyr + + + diff --git a/dev-R/ellipsis/ellipsis-0.3.0.ebuild b/dev-R/ellipsis/ellipsis-0.3.0.ebuild index 6f1dd4c423..16fe60296c 100644 --- a/dev-R/ellipsis/ellipsis-0.3.0.ebuild +++ b/dev-R/ellipsis/ellipsis-0.3.0.ebuild @@ -13,9 +13,10 @@ HOMEPAGE=" " SRC_URI="http://cran.r-project.org/src/contrib/ellipsis_0.3.0.tar.gz" LICENSE='GPL-3' - +KEYWORDS="~amd64" IUSE="${IUSE-}" DEPEND=" >=dev-lang/R-3.2 >=dev-R/rlang-0.3.0 " +RDEPEND="${DEPEND}" diff --git a/dev-R/fansi/fansi-0.4.1.ebuild b/dev-R/fansi/fansi-0.4.1.ebuild index 6293e8e99f..55cc043c1f 100644 --- a/dev-R/fansi/fansi-0.4.1.ebuild +++ b/dev-R/fansi/fansi-0.4.1.ebuild @@ -12,6 +12,7 @@ HOMEPAGE=" " SRC_URI="http://cran.r-project.org/src/contrib/fansi_0.4.1.tar.gz" LICENSE='GPL-2+' - +KEYWORDS="~amd64" IUSE="${IUSE-}" DEPEND=">=dev-lang/R-3.1.0" +RDEPEND="${DEPEND}" diff --git a/dev-R/glue/glue-1.4.0.ebuild b/dev-R/glue/glue-1.4.0.ebuild index f7e15c3c27..ba97a9cf43 100644 --- a/dev-R/glue/glue-1.4.0.ebuild +++ b/dev-R/glue/glue-1.4.0.ebuild @@ -13,6 +13,7 @@ HOMEPAGE=" " SRC_URI="http://cran.r-project.org/src/contrib/glue_1.4.0.tar.gz" LICENSE='MIT' - +KEYWORDS="~amd64" IUSE="${IUSE-}" DEPEND=">=dev-lang/R-3.1" +RDEPEND="${DEPEND}" diff --git a/dev-R/lifecycle/lifecycle-0.2.0.ebuild b/dev-R/lifecycle/lifecycle-0.2.0.ebuild index fc5b32fec0..333911dd5c 100644 --- a/dev-R/lifecycle/lifecycle-0.2.0.ebuild +++ b/dev-R/lifecycle/lifecycle-0.2.0.ebuild @@ -13,7 +13,7 @@ HOMEPAGE=" " SRC_URI="http://cran.r-project.org/src/contrib/lifecycle_0.2.0.tar.gz" LICENSE='GPL-3' - +KEYWORDS="~amd64" IUSE="${IUSE-}" DEPEND=" >=dev-lang/R-3.2 diff --git a/dev-R/magrittr/magrittr-1.5.ebuild b/dev-R/magrittr/magrittr-1.5.ebuild index d418d0a372..7ab6ebaee8 100644 --- a/dev-R/magrittr/magrittr-1.5.ebuild +++ b/dev-R/magrittr/magrittr-1.5.ebuild @@ -9,5 +9,5 @@ DESCRIPTION='A Forward-Pipe Operator for R' HOMEPAGE="https://cran.r-project.org/package=magrittr" SRC_URI="http://cran.r-project.org/src/contrib/magrittr_1.5.tar.gz" LICENSE='MIT' - +KEYWORDS="~amd64" IUSE="${IUSE-}" diff --git a/dev-R/pillar/Manifest b/dev-R/pillar/Manifest new file mode 100644 index 0000000000..08a6de0a00 --- /dev/null +++ b/dev-R/pillar/Manifest @@ -0,0 +1 @@ +DIST pillar_1.4.4.tar.gz 231021 BLAKE2B 21a5597f70f093ff50fe21f79e2903ee16efc724cdb2b99396d29e1857c8cf7c8700c5d3f440db95f692691b0df0e82ef3419d17777146c76dbd0c1418d9780d SHA512 e1b325908b6d79bbc5e944b4117a46016be88bc5a71ce8e5494a3a46a85039d6d216b1699014dcafbe2d4f3365130a65d0ef481f66b2e6ee9df49c1e8801aad4 diff --git a/dev-R/pillar/metadata.xml b/dev-R/pillar/metadata.xml new file mode 100644 index 0000000000..51d277fcef --- /dev/null +++ b/dev-R/pillar/metadata.xml @@ -0,0 +1,33 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + Provides 'pillar' and 'colonnade' generics designed for formatting columns of data using the full range of colours provided by modern terminals. + + + + https://github.com/r-lib/pillar/issues + + + https://cran.r-project.org/web//packages/pillar/pillar.pdf + + + https://cran.r-project.org/web//packages/pillar/news/news.html + + + + Kirill Müller + + + krlmlr+r@mailbox.org + + + + r-lib/pillar + + + diff --git a/dev-R/pillar/pillar-1.4.4.ebuild b/dev-R/pillar/pillar-1.4.4.ebuild new file mode 100644 index 0000000000..c35d385a63 --- /dev/null +++ b/dev-R/pillar/pillar-1.4.4.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit R-packages-guru + +DESCRIPTION='Coloured Formatting for Columns' +HOMEPAGE=" + https://github.com/r-lib/pillar + https://cran.r-project.org/package=pillar +" +SRC_URI="http://cran.r-project.org/src/contrib/pillar_1.4.4.tar.gz" +LICENSE='GPL-3' +KEYWORDS="~amd64" +IUSE="${IUSE-}" +DEPEND=" + dev-R/cli + >=dev-R/crayon-1.3.4 + dev-R/fansi + >=dev-R/rlang-0.3.0 + >=dev-R/vctrs-0.2.0 + >=dev-R/utf8-1.1.0 +" +RDEPEND="${DEPEND-}" diff --git a/dev-R/pkgconfig/Manifest b/dev-R/pkgconfig/Manifest new file mode 100644 index 0000000000..b38fd66156 --- /dev/null +++ b/dev-R/pkgconfig/Manifest @@ -0,0 +1 @@ +DIST pkgconfig_2.0.3.tar.gz 6080 BLAKE2B 0f779734326569e95b80d376d97b51d10114b2e8b8804a4c1e54ea67830708b295fc783aaf271028df33b13c45b3788f522e7831755626e37cf94ecc99bd7b58 SHA512 bfc5d0bf707ed6d13348d9c01f9470428fc2f020e72d0122a3356548bbebe4d8bd2b288dabd2ec90069935622b2df842f57a8fe9b67b51c01e7c7029921fcfb9 diff --git a/dev-R/pkgconfig/metadata.xml b/dev-R/pkgconfig/metadata.xml new file mode 100644 index 0000000000..b4cf9ea022 --- /dev/null +++ b/dev-R/pkgconfig/metadata.xml @@ -0,0 +1,30 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + Set configuration options on a per-package basis. Options set by a given package only apply to that package, other packages are unaffected. + + + + https://github.com/r-lib/pkgconfig/issues + + + https://cran.r-project.org/web//packages/pkgconfig/pkgconfig.pdf + + + + Gábor Csárdi + + + csardi.gabor@gmail.com + + + + r-lib/pkgconfig + + + diff --git a/dev-R/pkgconfig/pkgconfig-2.0.3.ebuild b/dev-R/pkgconfig/pkgconfig-2.0.3.ebuild new file mode 100644 index 0000000000..aea633890b --- /dev/null +++ b/dev-R/pkgconfig/pkgconfig-2.0.3.ebuild @@ -0,0 +1,16 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit R-packages-guru + +DESCRIPTION='Private Configuration for R Packages' +HOMEPAGE=" + https://github.com/r-lib/pkgconfig + https://cran.r-project.org/package=pkgconfig +" +SRC_URI="http://cran.r-project.org/src/contrib/pkgconfig_2.0.3.tar.gz" +LICENSE='MIT' +KEYWORDS="~amd64" +IUSE="${IUSE-}" diff --git a/dev-R/purrr/Manifest b/dev-R/purrr/Manifest new file mode 100644 index 0000000000..1f188324d1 --- /dev/null +++ b/dev-R/purrr/Manifest @@ -0,0 +1 @@ +DIST purrr_0.3.4.tar.gz 375062 BLAKE2B ec4383b49b9e49ffd8fb9cb76b975d9e699c820f0aed6ece0b75f84c71944345fb64f16932e664dee18c3a1f1e93a56d8b5153289437d8b13d281744be2b7a1e SHA512 30f121c751e6c85b986b872ed1bae6464d2f0f3b79493537d4f1b673d55725218dd982a2ed7b8b8a12b2aad586db3133e49721812f35bf3b2c692612759bb2ca diff --git a/dev-R/purrr/metadata.xml b/dev-R/purrr/metadata.xml new file mode 100644 index 0000000000..fe7357769d --- /dev/null +++ b/dev-R/purrr/metadata.xml @@ -0,0 +1,33 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + A complete and consistent functional programming toolkit for R. + + + + https://github.com/tidyverse/purrr/issues + + + https://cran.r-project.org/web//packages/purrr/purrr.pdf + + + https://cran.r-project.org/web//packages/purrr/news/news.html + + + + Lionel Henry + + + lionel@rstudio.com + + + + tidyverse/purrr + + + diff --git a/dev-R/purrr/purrr-0.3.4.ebuild b/dev-R/purrr/purrr-0.3.4.ebuild new file mode 100644 index 0000000000..f93a81531d --- /dev/null +++ b/dev-R/purrr/purrr-0.3.4.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit R-packages-guru + +DESCRIPTION='Functional Programming Tools' +SRC_URI="http://cran.r-project.org/src/contrib/purrr_0.3.4.tar.gz" +LICENSE='GPL-3' +HOMEPAGE=" + http://purrr.tidyverse.org + https://github.com/tidyverse/purrr + https://cran.r-project.org/package=purrr +" +KEYWORDS="~amd64" +IUSE="${IUSE-}" +DEPEND=" + >=dev-lang/R-3.2 + >=dev-R/magrittr-1.5 + >=dev-R/rlang-0.3.1 +" +RDEPEND="${DEPEND}" diff --git a/dev-R/rematch/rematch-1.0.1.ebuild b/dev-R/rematch/rematch-1.0.1.ebuild index 0ac3c338bf..9d524304dd 100644 --- a/dev-R/rematch/rematch-1.0.1.ebuild +++ b/dev-R/rematch/rematch-1.0.1.ebuild @@ -14,4 +14,4 @@ SRC_URI="http://cran.r-project.org/src/contrib/rematch_1.0.1.tar.gz" LICENSE='MIT' IUSE="${IUSE-}" -RDEPEND="" +KEYWORDS="~amd64" diff --git a/dev-R/rlang/rlang-0.4.6.ebuild b/dev-R/rlang/rlang-0.4.6.ebuild index f5e1bf5c46..e5e1db5a0a 100644 --- a/dev-R/rlang/rlang-0.4.6.ebuild +++ b/dev-R/rlang/rlang-0.4.6.ebuild @@ -13,6 +13,7 @@ HOMEPAGE=" https://github.com/r-lib/rlang https://cran.r-project.org/package=rlang " - +KEYWORDS="~amd64" IUSE="${IUSE-}" DEPEND=">=dev-lang/R-3.2.0" +RDEPEND="${DEPEND}" diff --git a/dev-R/tibble/Manifest b/dev-R/tibble/Manifest new file mode 100644 index 0000000000..bbb04be9be --- /dev/null +++ b/dev-R/tibble/Manifest @@ -0,0 +1 @@ +DIST tibble_3.0.1.tar.gz 399191 BLAKE2B c1d1c0f79f46cf0e44939bc3a81ed45a18ce60083bd7459864bada8485b24c82edbb0d5c804cded19b37366600b0d440695b4c0561245e504a8c1f5b52ed78c4 SHA512 ad97383dd6468730c37a059881a27114fbdd10431be1354fc3899863d043e58303b123c95c6f5a729c353d9f3445ce317d6742696bd1fb940095034ea6b89037 diff --git a/dev-R/tibble/metadata.xml b/dev-R/tibble/metadata.xml new file mode 100644 index 0000000000..600cf62f70 --- /dev/null +++ b/dev-R/tibble/metadata.xml @@ -0,0 +1,33 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + Provides a 'tbl_df' class (the 'tibble') that provides stricter checking and better formatting than the traditional data frame. + + + + https://github.com/tidyverse/tibble/issues + + + https://cran.r-project.org/web//packages/tibble/tibble.pdf + + + https://cran.r-project.org/web//packages/tibble/news/news.html + + + + Kirill Müller + + + krlmlr+r@mailbox.org + + + + tidyverse/tibble + + + diff --git a/dev-R/tibble/tibble-3.0.1.ebuild b/dev-R/tibble/tibble-3.0.1.ebuild new file mode 100644 index 0000000000..6e97a0745f --- /dev/null +++ b/dev-R/tibble/tibble-3.0.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit R-packages-guru + +DESCRIPTION='Simple Data Frames' +SRC_URI="http://cran.r-project.org/src/contrib/tibble_3.0.1.tar.gz" +LICENSE='MIT' +HOMEPAGE=" + https://tibble.tidyverse.org + https://github.com/tidyverse/tibble + https://cran.r-project.org/package=tibble +" +IUSE="${IUSE-}" +KEYWORDS="~amd64" +DEPEND=" + >=dev-lang/R-3.1.0 + dev-R/cli + >=dev-R/crayon-1.3.4 + >=dev-R/lifecycle-0.2.0 + >=dev-R/ellipsis-0.2.0 + >=dev-R/fansi-0.4.0 + dev-R/magrittr + >=dev-R/pillar-1.4.3 + dev-R/pkgconfig + >=dev-R/rlang-0.4.3 + >=dev-R/vctrs-0.2.4 +" +RDEPEND="${DEPEND-}" diff --git a/dev-R/tidyselect/Manifest b/dev-R/tidyselect/Manifest new file mode 100644 index 0000000000..e19452a4f2 --- /dev/null +++ b/dev-R/tidyselect/Manifest @@ -0,0 +1 @@ +DIST tidyselect_1.0.0.tar.gz 151161 BLAKE2B 8ce7203ae34fcc71905f785038469f8659ade390c858a039e036f5905e8f32c6b3b8165869be7573b46917293acb0f2a3aa800d78283165955cf8d27bec0eed1 SHA512 53775f43d896f271c9d988e84ca4a744dfb591d1ac42e811cffd1691a4a85000481102b61636831650bcddb9a07d7202341cb367cf587c3291e255ecf6ad64ff diff --git a/dev-R/tidyselect/metadata.xml b/dev-R/tidyselect/metadata.xml new file mode 100644 index 0000000000..97fc114613 --- /dev/null +++ b/dev-R/tidyselect/metadata.xml @@ -0,0 +1,33 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + A backend for the selecting functions of the 'tidyverse'. It makes it easy to implement select-like functions in your own packages in a way that is consistent with other 'tidyverse' interfaces for selection. + + + + https://github.com/r-lib/tidyselect/issues + + + https://cran.r-project.org/web//packages/tidyselect/tidyselect.pdf + + + https://cran.r-project.org/web//packages/tidyselect/news/news.html + + + + Lionel Henry + + + lionel@rstudio.com + + + + r-lib/tidyselect + + + diff --git a/dev-R/tidyselect/tidyselect-1.0.0.ebuild b/dev-R/tidyselect/tidyselect-1.0.0.ebuild new file mode 100644 index 0000000000..6188970696 --- /dev/null +++ b/dev-R/tidyselect/tidyselect-1.0.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit R-packages-guru + +DESCRIPTION='Select from a Set of Strings' +SRC_URI="http://cran.r-project.org/src/contrib/tidyselect_1.0.0.tar.gz" +LICENSE='GPL-3' +HOMEPAGE=" + https://tidyselect.r-lib.org + https://github.com/r-lib/tidyselect + https://cran.r-project.org/package=tidyselect +" +IUSE="${IUSE-}" +KEYWORDS="~amd64" +DEPEND=" + >=dev-lang/R-3.2 + dev-R/ellipsis + >=dev-R/glue-1.3.0 + >=dev-R/purrr-0.3.2 + >=dev-R/rlang-0.4.3 + >=dev-R/vctrs-0.2.2 +" +RDEPEND="${DEPEND-}" diff --git a/dev-R/utf8/utf8-1.1.4.ebuild b/dev-R/utf8/utf8-1.1.4.ebuild index be6c3e9aa7..8eeab1ec1e 100644 --- a/dev-R/utf8/utf8-1.1.4.ebuild +++ b/dev-R/utf8/utf8-1.1.4.ebuild @@ -12,5 +12,5 @@ HOMEPAGE=" DESCRIPTION='Unicode Text Processing' SRC_URI="http://cran.r-project.org/src/contrib/utf8_1.1.4.tar.gz" LICENSE='Apache-2.0' - +KEYWORDS="~amd64" IUSE="${IUSE-}" diff --git a/dev-R/vctrs/vctrs-0.2.4.ebuild b/dev-R/vctrs/vctrs-0.2.4.ebuild index ae677746ca..d981d0ba5b 100644 --- a/dev-R/vctrs/vctrs-0.2.4.ebuild +++ b/dev-R/vctrs/vctrs-0.2.4.ebuild @@ -14,6 +14,7 @@ SRC_URI="http://cran.r-project.org/src/contrib/vctrs_0.2.4.tar.gz" LICENSE='GPL-3' IUSE="${IUSE-}" +KEYWORDS="~amd64" DEPEND=" >=dev-lang/R-3.2 dev-R/digest diff --git a/dev-cpp/plog/Manifest b/dev-cpp/plog/Manifest new file mode 100644 index 0000000000..ddde6b823b --- /dev/null +++ b/dev-cpp/plog/Manifest @@ -0,0 +1 @@ +DIST plog-1.1.5_p20200501.tar.gz 42321 BLAKE2B 18f4722fbd985abc3c0b14f9eeea6d5c6b0ee8d01b3433ee167a5510f4d661b70e067a11f4a60a0573b4eec3c264d9260dd6bba6f87103769684e4e3e06235ac SHA512 6b0322c61682295150ec5a856faf597ac78897d30314b265908cd9d6da2956b1b2d8562c90818332e42a41f129a3b35ec3d56f1163e7ac979aea617cc01e9c3f diff --git a/dev-cpp/plog/metadata.xml b/dev-cpp/plog/metadata.xml new file mode 100644 index 0000000000..a7c96a6ed6 --- /dev/null +++ b/dev-cpp/plog/metadata.xml @@ -0,0 +1,20 @@ + + + + + + lssndrbarbieri@gmail.com + + + Alessandro Barbieri + + + + + https://github.com/SergiusTheBest/plog/issues + + + SergiusTheBest/plog + + + diff --git a/dev-cpp/plog/plog-1.1.5_p20200501.ebuild b/dev-cpp/plog/plog-1.1.5_p20200501.ebuild new file mode 100644 index 0000000000..9b7b096c6e --- /dev/null +++ b/dev-cpp/plog/plog-1.1.5_p20200501.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +COMMIT="fda4a26c26b2d1b2beb68d7b92b56950ec2b8ad2" + +DESCRIPTION="Portable, simple and extensible C++ logging library" +HOMEPAGE="https://github.com/SergiusTheBest/plog" +SRC_URI="https://github.com/SergiusTheBest/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64" + +LICENSE="MPL-2.0" +SLOT="0" +IUSE="examples" + +S="${WORKDIR}/${PN}-${COMMIT}" + +src_install() { + doheader -r "include/${PN}" + dodoc README.md + insinto "/usr/share/${P}/samples" + use examples && doins -r samples/. +} diff --git a/dev-libs/wren/Manifest b/dev-libs/wren/Manifest new file mode 100644 index 0000000000..782d2d9f5e --- /dev/null +++ b/dev-libs/wren/Manifest @@ -0,0 +1 @@ +DIST wren-0.2.0.tar.gz 1791488 BLAKE2B a2f48e9b115ea89cf25af1fe8cefa3c26639ce06f89796df4f5eb744b2382b44f83d6285eedfa9cb5681342cc8ebca535bae586445225622c8ebdb30c7088975 SHA512 67912df14d8afa16a4e50fa67e232870e08eb392601f7b1633bcfb242f2de7624b9a3501df9e1ae40fb62646db57ff6553733ddb3015b6b5086999dadf7d2da2 diff --git a/dev-libs/wren/metadata.xml b/dev-libs/wren/metadata.xml new file mode 100644 index 0000000000..854f4ec84f --- /dev/null +++ b/dev-libs/wren/metadata.xml @@ -0,0 +1,19 @@ + + + + + Wren is a small, fast, class-based concurrent scripting language + Think Smalltalk in a Lua-sized package with a dash of Erlang and wrapped up in a familiar, modern syntax. + + + m.santullo@posteo.net + Michele Santullo + + + https://github.com/wren-lang/wren/issues + wren-lang/wren + + + Install the wren command line interpreter + + diff --git a/dev-libs/wren/wren-0.2.0.ebuild b/dev-libs/wren/wren-0.2.0.ebuild new file mode 100644 index 0000000000..3491cfb1be --- /dev/null +++ b/dev-libs/wren/wren-0.2.0.ebuild @@ -0,0 +1,63 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="The Wren Programming Language" +HOMEPAGE="http://wren.io/" +if [[ ${PV} == 9999 ]]; then + EGIT_REPO_URI="https://github.com/wren-lang/${PN}.git" + inherit git-r3 + KEYWORDS="" +else + SRC_URI="https://github.com/wren-lang/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="static-libs tools" + +DEPEND=">=dev-libs/libuv-1.10.0" +RDEPEND="${DEPEND}" +BDEPEND="" +#BDEPEND="test? ( dev-lang/python )" +#RESTRICT="!test? ( test )" +RESTRICT="test" + +src_configure() { + return +} + +src_compile() { + local targets="" + + if use static-libs ; then + #do both shared and static libs + targets="${targets} vm" + else + targets="${targets} shared" + fi + if use tools ; then + targets="${targets} cli" + fi + #I don't think tests are working, I just get lots of linker errors + #if use test ; then + # targets="${targets} api_test unit_test" + #fi + + tc-export AR CC + emake -f util/wren.mk LIBUV_DIR="${EPREFIX}/usr" LIBUV="${EPREFIX}/usr/$(get_libdir)/libuv.so" VERBOSE=1 ${targets} +} + +src_install() { + if use tools ; then + dobin bin/wren + fi + if use static-libs ; then + dolib.a lib/libwren.a + fi + dolib.so lib/libwren.so +} diff --git a/dev-libs/wren/wren-9999.ebuild b/dev-libs/wren/wren-9999.ebuild new file mode 100644 index 0000000000..3491cfb1be --- /dev/null +++ b/dev-libs/wren/wren-9999.ebuild @@ -0,0 +1,63 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="The Wren Programming Language" +HOMEPAGE="http://wren.io/" +if [[ ${PV} == 9999 ]]; then + EGIT_REPO_URI="https://github.com/wren-lang/${PN}.git" + inherit git-r3 + KEYWORDS="" +else + SRC_URI="https://github.com/wren-lang/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="static-libs tools" + +DEPEND=">=dev-libs/libuv-1.10.0" +RDEPEND="${DEPEND}" +BDEPEND="" +#BDEPEND="test? ( dev-lang/python )" +#RESTRICT="!test? ( test )" +RESTRICT="test" + +src_configure() { + return +} + +src_compile() { + local targets="" + + if use static-libs ; then + #do both shared and static libs + targets="${targets} vm" + else + targets="${targets} shared" + fi + if use tools ; then + targets="${targets} cli" + fi + #I don't think tests are working, I just get lots of linker errors + #if use test ; then + # targets="${targets} api_test unit_test" + #fi + + tc-export AR CC + emake -f util/wren.mk LIBUV_DIR="${EPREFIX}/usr" LIBUV="${EPREFIX}/usr/$(get_libdir)/libuv.so" VERBOSE=1 ${targets} +} + +src_install() { + if use tools ; then + dobin bin/wren + fi + if use static-libs ; then + dolib.a lib/libwren.a + fi + dolib.so lib/libwren.so +} diff --git a/dev-python/aionotify/aionotify-0.2.0.ebuild b/dev-python/aionotify/aionotify-0.2.0.ebuild index 308dbee678..0359075dc8 100644 --- a/dev-python/aionotify/aionotify-0.2.0.ebuild +++ b/dev-python/aionotify/aionotify-0.2.0.ebuild @@ -15,6 +15,6 @@ LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" -DEPEND="test? ( dev-python/asynctest[${PYTHON_USEDEP}] )" - -distutils_enable_tests pytest +#DEPEND="test? ( dev-python/asynctest[${PYTHON_USEDEP}] )" +# +#distutils_enable_tests pytest diff --git a/eclass/R-packages-guru.eclass b/eclass/R-packages-guru.eclass index 0f28749108..6419cfec92 100644 --- a/eclass/R-packages-guru.eclass +++ b/eclass/R-packages-guru.eclass @@ -6,7 +6,6 @@ inherit eutils EXPORT_FUNCTIONS src_unpack src_prepare src_compile src_install pkg_postinst SLOT="0" -KEYWORDS="~amd64 ~x86" IUSE="byte-compile" DEPEND="dev-lang/R" diff --git a/net-fs/hubicfuse/Manifest b/net-fs/hubicfuse/Manifest new file mode 100644 index 0000000000..e2c06451a9 --- /dev/null +++ b/net-fs/hubicfuse/Manifest @@ -0,0 +1 @@ +DIST hubicfuse-3.0.1.tar.gz 94467 BLAKE2B c30561d9d35378d67666eaf663064bde082775c92e7fd018b57bcebd72939d82892534e62e506be34a2613fb3aa24bd402aa81e6f5e425b0b1922a49bbaf98b4 SHA512 39301395987c8e68c5de57361a6b1ce8c8cd58e3dfdf89b23ff9efd63900eb934261aab6df46d2cf73e4151b9815d1ebe4984cabd9145b83191835e6c4360e16 diff --git a/net-fs/hubicfuse/hubicfuse-3.0.1.ebuild b/net-fs/hubicfuse/hubicfuse-3.0.1.ebuild new file mode 100644 index 0000000000..d1fd3fa868 --- /dev/null +++ b/net-fs/hubicfuse/hubicfuse-3.0.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Support for mounting HubiC drive in GNU/Linux" +HOMEPAGE="https://github.com/TurboGit/hubicfuse" +SRC_URI="https://github.com/TurboGit/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SLOT="0" + +LICENSE="LGPL-3" +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86" +IUSE="libressl" + +DEPEND=" + net-misc/curl + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + sys-fs/fuse:0 + sys-apps/file + dev-libs/libxml2 + dev-libs/json-c +" +RDEPEND="${DEPEND}" + +DOCS=( README.md ) + +src_install() { + default + + dobin hubic_token + + ewarn "The hubiC service is now closed to new subscriptions:" + ewarn "https://www.ovh.co.uk/subscriptions-hubic-ended/" + ewarn "Make sure that you already have hubiC account." +} diff --git a/net-fs/hubicfuse/metadata.xml b/net-fs/hubicfuse/metadata.xml new file mode 100644 index 0000000000..b91fcbcfe7 --- /dev/null +++ b/net-fs/hubicfuse/metadata.xml @@ -0,0 +1,51 @@ + + + + + denis7774@gmail.com + Reva Denis aka RarogCmex + + + A FUSE application which provides access to hubiC's cloud files via a mount-point. + + This version contains support for DLO, symlinks and support to see other tenant's containers. + Those features are coming from https://github.com/LabAdvComp/cloudfuse + USAGE + Your hubiC Cloud configuration can be placed in a file named $HOME/.hubicfuse. All the following variables are required: + + client_id=[hubiC client id for the registered application] + client_secret=[hubiC client secret for the registered application] + refresh_token=[A refresh token you got from the script] + Optional variables: + + get_extended_metadata=[true/false, force download of additional file metadata like atime and mtime on first directory list] + curl_verbose=[true/false, enable verbose output for curl HTTP requests] + curl_progress_state=[true/false, enable verbose progress output for curl HTTP requests. Used for debugging.] + cache_statfs_timeout=[value in seconds, large timeout increases the file access speed] + debug_level=[0 default, 1 extremely verbose for debugging purposes] + enable_chmod=[true/false, false by default, still experimental feature] + enable_chown=[true/false, false by default, still experimental feature] + client_id and client_secret can be retrieved from the hubiC web interface + + The refresh_token can be obtained running the script provided (hubic_token) or with any + other method you like if you follow the example at https://api.hubic.com/ + + Then you can call hubicfuse: + + sudo hubicfuse /mnt/hubic -o noauto_cache,sync_read,allow_other + And finaly, it can be set in /etc/fstab: + + hubicfuse /mnt/hubic fuse user,noauto 0 0 + It also inherits a number of command-line arguments and mount options from the Fuse framework. + The "-h" argument should provide a summary. + + It is also possible to pass a custom hubicfuse settings file so that it is possible to mount multiple hubiC accounts: + + sudo hubicfuse /mnt/hubic1 -o noauto_cache,sync_read,allow_other,settings_filename=/root/hubic/account1.settings + sudo hubicfuse /mnt/hubic2 -o noauto_cache,sync_read,allow_other,settings_filename=/root/hubic/account2.settings + And finaly, in /etc/fstab : + + hubicfuse /mnt/hubic1 fuse user,noauto,settings_filename=/root/hubic/account1.settings 0 0 + hubicfuse /mnt/hubic2 fuse user,noauto,settings_filename=/root/hubic/account2.settings 0 0 + + diff --git a/net-im/discord-canary/Manifest b/net-im/discord-canary/Manifest new file mode 100644 index 0000000000..c9fbd62a83 --- /dev/null +++ b/net-im/discord-canary/Manifest @@ -0,0 +1 @@ +DIST discord-canary-0.0.103.tar.gz 68577002 BLAKE2B ec25101d595d42bfb2e4c867f535ee957241d46e11b407affda00b69c7fa57e5c9b644bee10866838531f5de1d90bc0d74ea2f1f0a7b6fd018e19117cd0be964 SHA512 d1f83e51fb15d7d414dc0a1fea67a5a4a66cf1afa6460a5f58cb1f807015b74de10327117475a8971f5ab7d79dd51e6bde25588e6a5264eebd9f505ba053127c diff --git a/net-im/discord-canary/discord-canary-0.0.103.ebuild b/net-im/discord-canary/discord-canary-0.0.103.ebuild new file mode 100644 index 0000000000..fcdb7ef26d --- /dev/null +++ b/net-im/discord-canary/discord-canary-0.0.103.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit desktop eutils xdg + +DESCRIPTION="All-in-one voice and text chat" + +HOMEPAGE="https://discordapp.com/" + +SRC_URI="https://dl-canary.discordapp.net/apps/linux/${PV}/discord-canary-${PV}.tar.gz" +RESTRICT="mirror bindist" +KEYWORDS="~amd64" + +SLOT="0" +LICENSE="all-rights-reserved" +RDEPEND="" +DEPEND="${RDEPEND} + sys-libs/libcxx + dev-libs/expat + dev-libs/nss + gnome-base/gconf + media-gfx/graphite2 + media-libs/alsa-lib + media-libs/libpng + net-print/cups + net-libs/gnutls + sys-libs/zlib + x11-libs/gtk+ + x11-libs/libnotify + x11-libs/libxcb + x11-libs/libXtst + media-libs/opus" + +S=${WORKDIR}/DiscordCanary + +QA_PREBUILT=" + opt/discord-canary/DiscordCanary + opt/discord-canary/libEGL.so + opt/discord-canary/libGLESv2.so + opt/discord-canary/swiftshader/libEGL.so + opt/discord-canary/swiftshader/libGLESv2.so + opt/discord-canary/libVkICD_mock_icd.so + opt/discord-canary/libffmpeg.so +" + +src_install() { + local destdir="/opt/${PN}" + + insinto $destdir + doins -r locales resources + doins \ + *.pak \ + *.png \ + *.dat \ + *.bin \ + *.so + + exeinto $destdir + doexe DiscordCanary + + dosym $destdir/DiscordCanary /usr/bin/discord-canary + make_desktop_entry discord Discord \ + "/opt/discord-canary/discord.png" \ + Network +} diff --git a/net-im/discord-canary/metadata.xml b/net-im/discord-canary/metadata.xml new file mode 100644 index 0000000000..7bb0ff776e --- /dev/null +++ b/net-im/discord-canary/metadata.xml @@ -0,0 +1,8 @@ + + + + + y0rune@aol.com + Marcin Woźniak + +