Merge updates from master

This commit is contained in:
Repository mirror & CI
2020-05-10 20:07:56 +00:00
57 changed files with 900 additions and 26 deletions

0
app-emacs/vterm/files/bashrc Executable file → Normal file
View File

View File

@@ -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
}

1
dev-R/R6/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST R6_2.4.1.tar.gz 35536 BLAKE2B 0a2e7664d0b5911fe0f6c40bd80314ed6a100cbce9c9afe60a166e9fa0da773d16c0db545b28992b543d5a380c45bd977413026e422be13ca4706a4b0d7137e8 SHA512 bf165edf15f4fb3a4ad94b80bcf96f255b6889649b40c7f27af10841a55d81d02f8a42707fc08a5bcadfa94d77d67f4617739a75b3e7d99ba57bb9100dde98b0

19
dev-R/R6/R6-2.4.1.ebuild Normal file
View File

@@ -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}"

33
dev-R/R6/metadata.xml Normal file
View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
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.
</longdescription>
<upstream>
<bugs-to>
https://github.com/r-lib/R6/issues
</bugs-to>
<doc lang="en">
https://cran.r-project.org/web//packages/R6/R6.pdf
</doc>
<changelog>
https://cran.r-project.org/web//packages/R6/news/news.html
</changelog>
<maintainer>
<name>
Winston Chang
</name>
<email>
winston@stdout.org
</email>
</maintainer>
<remote-id type="github">
r-lib/R6
</remote-id>
</upstream>
</pkgmetadata>

1
dev-R/Rcpp/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST Rcpp_1.0.4.6.tar.gz 2751467 BLAKE2B 1df5a1ab26974a0d4ec2bf8708a0f81a7bc8e27a1d50deda50375a0086c8284e6521914581c8bf336359ae61ab1c3be2cd18e49040451c8921a54188f4c75da4 SHA512 d3099925cd897100fc510e6a0b7a4c4007ec92edf5c335d7d87f39aac35a6cd5da605c904527da802414992ca13302192625fde769ce62ab7542d5cb76f5c1df

View File

@@ -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"

33
dev-R/Rcpp/metadata.xml Normal file
View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
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
</longdescription>
<upstream>
<bugs-to>
https://github.com/RcppCore/Rcpp/issues
</bugs-to>
<doc lang="en">
https://cran.r-project.org/web//packages/Rcpp/Rcpp.pdf
</doc>
<changelog>
https://cran.r-project.org/web//packages/Rcpp/ChangeLog
</changelog>
<maintainer>
<name>
Dirk Eddelbuettel
</name>
<email>
edd@debian.org
</email>
</maintainer>
<remote-id type="github">
RcppCore/Rcpp
</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -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-}"

View File

@@ -0,0 +1 @@
DIST cellranger_1.1.0.tar.gz 63857 BLAKE2B 993ff76943ff1c3cacba0bdbfb609b8b19f16a3b61e061260e3fb82d2c2cb80db8c6c5f4904a0b93d4fcb7eb1f1ec082da206bb91e6ff97763ee9f65f91ddffc SHA512 5a27ce21b5d22b0eea06f64ef6faf26a63860ccefa17e3d4cb74ffceaf8b0b6f332b482d476dbc32f8174d5bfef01a5f9fc20673db2fa5386682be1baf11d2a9

View File

@@ -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-}"

View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Helper functions to work with spreadsheets and the "A1:D10" style of cell range specification.
</longdescription>
<upstream>
<bugs-to>
https://github.com/rsheets/cellranger/issues
</bugs-to>
<doc lang="en">
https://github.com/rsheets/cellranger/issues
</doc>
<changelog>
https://cran.r-project.org/web//packages/cellranger/news.html
</changelog>
<maintainer>
<name>
Jennifer Bryan
</name>
<email>
jenny@stat.ubc.ca
</email>
</maintainer>
<remote-id type="github">
rsheets/cellranger
</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -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

View File

@@ -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-}"

View File

@@ -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}"

1
dev-R/dplyr/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST dplyr_0.8.5.tar.gz 1378766 BLAKE2B 5093e178aa882913800d07c502aa3e3107d4152060e0070229091e483164493a94b1bc37f6f00d97641133b01301c013e81df38c8108954bce431447c298dd73 SHA512 08269e59c43aacc5959d516c1fed45d3dbbe0912aa92263ff8eda6454f216a739ea5989088852cf2ab60bf06fc8aea524557258df786e16b81f5f785cb627105

View File

@@ -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-}"

33
dev-R/dplyr/metadata.xml Normal file
View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
A fast, consistent tool for working with data frame like objects, both in memory and out of memory.
</longdescription>
<upstream>
<bugs-to>
https://github.com/tidyverse/dplyr/issues
</bugs-to>
<doc lang="en">
https://cran.r-project.org/web//packages/dplyr/dplyr.pdf
</doc>
<changelog>
https://cran.r-project.org/web//packages/dplyr/news/news.html
</changelog>
<maintainer>
<name>
Hadley Wickham
</name>
<email>
hadley@rstudio.com
</email>
</maintainer>
<remote-id type="github">
tidyverse/dplyr
</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -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}"

View File

@@ -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}"

View File

@@ -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}"

View File

@@ -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

View File

@@ -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-}"

1
dev-R/pillar/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST pillar_1.4.4.tar.gz 231021 BLAKE2B 21a5597f70f093ff50fe21f79e2903ee16efc724cdb2b99396d29e1857c8cf7c8700c5d3f440db95f692691b0df0e82ef3419d17777146c76dbd0c1418d9780d SHA512 e1b325908b6d79bbc5e944b4117a46016be88bc5a71ce8e5494a3a46a85039d6d216b1699014dcafbe2d4f3365130a65d0ef481f66b2e6ee9df49c1e8801aad4

33
dev-R/pillar/metadata.xml Normal file
View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Provides 'pillar' and 'colonnade' generics designed for formatting columns of data using the full range of colours provided by modern terminals.
</longdescription>
<upstream>
<bugs-to>
https://github.com/r-lib/pillar/issues
</bugs-to>
<doc lang="en">
https://cran.r-project.org/web//packages/pillar/pillar.pdf
</doc>
<changelog>
https://cran.r-project.org/web//packages/pillar/news/news.html
</changelog>
<maintainer>
<name>
Kirill Müller
</name>
<email>
krlmlr+r@mailbox.org
</email>
</maintainer>
<remote-id type="github">
r-lib/pillar
</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -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-}"

1
dev-R/pkgconfig/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST pkgconfig_2.0.3.tar.gz 6080 BLAKE2B 0f779734326569e95b80d376d97b51d10114b2e8b8804a4c1e54ea67830708b295fc783aaf271028df33b13c45b3788f522e7831755626e37cf94ecc99bd7b58 SHA512 bfc5d0bf707ed6d13348d9c01f9470428fc2f020e72d0122a3356548bbebe4d8bd2b288dabd2ec90069935622b2df842f57a8fe9b67b51c01e7c7029921fcfb9

View File

@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Set configuration options on a per-package basis. Options set by a given package only apply to that package, other packages are unaffected.
</longdescription>
<upstream>
<bugs-to>
https://github.com/r-lib/pkgconfig/issues
</bugs-to>
<doc lang="en">
https://cran.r-project.org/web//packages/pkgconfig/pkgconfig.pdf
</doc>
<maintainer>
<name>
Gábor Csárdi
</name>
<email>
csardi.gabor@gmail.com
</email>
</maintainer>
<remote-id type="github">
r-lib/pkgconfig
</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -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-}"

1
dev-R/purrr/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST purrr_0.3.4.tar.gz 375062 BLAKE2B ec4383b49b9e49ffd8fb9cb76b975d9e699c820f0aed6ece0b75f84c71944345fb64f16932e664dee18c3a1f1e93a56d8b5153289437d8b13d281744be2b7a1e SHA512 30f121c751e6c85b986b872ed1bae6464d2f0f3b79493537d4f1b673d55725218dd982a2ed7b8b8a12b2aad586db3133e49721812f35bf3b2c692612759bb2ca

33
dev-R/purrr/metadata.xml Normal file
View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
A complete and consistent functional programming toolkit for R.
</longdescription>
<upstream>
<bugs-to>
https://github.com/tidyverse/purrr/issues
</bugs-to>
<doc lang="en">
https://cran.r-project.org/web//packages/purrr/purrr.pdf
</doc>
<changelog>
https://cran.r-project.org/web//packages/purrr/news/news.html
</changelog>
<maintainer>
<name>
Lionel Henry
</name>
<email>
lionel@rstudio.com
</email>
</maintainer>
<remote-id type="github">
tidyverse/purrr
</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -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}"

View File

@@ -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"

View File

@@ -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}"

1
dev-R/tibble/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST tibble_3.0.1.tar.gz 399191 BLAKE2B c1d1c0f79f46cf0e44939bc3a81ed45a18ce60083bd7459864bada8485b24c82edbb0d5c804cded19b37366600b0d440695b4c0561245e504a8c1f5b52ed78c4 SHA512 ad97383dd6468730c37a059881a27114fbdd10431be1354fc3899863d043e58303b123c95c6f5a729c353d9f3445ce317d6742696bd1fb940095034ea6b89037

33
dev-R/tibble/metadata.xml Normal file
View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Provides a 'tbl_df' class (the 'tibble') that provides stricter checking and better formatting than the traditional data frame.
</longdescription>
<upstream>
<bugs-to>
https://github.com/tidyverse/tibble/issues
</bugs-to>
<doc lang="en">
https://cran.r-project.org/web//packages/tibble/tibble.pdf
</doc>
<changelog>
https://cran.r-project.org/web//packages/tibble/news/news.html
</changelog>
<maintainer>
<name>
Kirill Müller
</name>
<email>
krlmlr+r@mailbox.org
</email>
</maintainer>
<remote-id type="github">
tidyverse/tibble
</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -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-}"

View File

@@ -0,0 +1 @@
DIST tidyselect_1.0.0.tar.gz 151161 BLAKE2B 8ce7203ae34fcc71905f785038469f8659ade390c858a039e036f5905e8f32c6b3b8165869be7573b46917293acb0f2a3aa800d78283165955cf8d27bec0eed1 SHA512 53775f43d896f271c9d988e84ca4a744dfb591d1ac42e811cffd1691a4a85000481102b61636831650bcddb9a07d7202341cb367cf587c3291e255ecf6ad64ff

View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
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.
</longdescription>
<upstream>
<bugs-to>
https://github.com/r-lib/tidyselect/issues
</bugs-to>
<doc lang="en">
https://cran.r-project.org/web//packages/tidyselect/tidyselect.pdf
</doc>
<changelog>
https://cran.r-project.org/web//packages/tidyselect/news/news.html
</changelog>
<maintainer>
<name>
Lionel Henry
</name>
<email>
lionel@rstudio.com
</email>
</maintainer>
<remote-id type="github">
r-lib/tidyselect
</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -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-}"

View File

@@ -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-}"

View File

@@ -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

1
dev-cpp/plog/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST plog-1.1.5_p20200501.tar.gz 42321 BLAKE2B 18f4722fbd985abc3c0b14f9eeea6d5c6b0ee8d01b3433ee167a5510f4d661b70e067a11f4a60a0573b4eec3c264d9260dd6bba6f87103769684e4e3e06235ac SHA512 6b0322c61682295150ec5a856faf597ac78897d30314b265908cd9d6da2956b1b2d8562c90818332e42a41f129a3b35ec3d56f1163e7ac979aea617cc01e9c3f

20
dev-cpp/plog/metadata.xml Normal file
View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>
lssndrbarbieri@gmail.com
</email>
<name>
Alessandro Barbieri
</name>
</maintainer>
<upstream>
<bugs-to>
https://github.com/SergiusTheBest/plog/issues
</bugs-to>
<remote-id type="github">
SergiusTheBest/plog
</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -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/.
}

1
dev-libs/wren/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST wren-0.2.0.tar.gz 1791488 BLAKE2B a2f48e9b115ea89cf25af1fe8cefa3c26639ce06f89796df4f5eb744b2382b44f83d6285eedfa9cb5681342cc8ebca535bae586445225622c8ebdb30c7088975 SHA512 67912df14d8afa16a4e50fa67e232870e08eb392601f7b1633bcfb242f2de7624b9a3501df9e1ae40fb62646db57ff6553733ddb3015b6b5086999dadf7d2da2

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<longdescription lang="en">
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.
</longdescription>
<maintainer type="person">
<email>m.santullo@posteo.net</email>
<name>Michele Santullo</name>
</maintainer>
<upstream>
<bugs-to>https://github.com/wren-lang/wren/issues</bugs-to>
<remote-id type="github">wren-lang/wren</remote-id>
</upstream>
<use>
<flag name="tools">Install the wren command line interpreter</flag>
</use>
</pkgmetadata>

View File

@@ -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
}

View File

@@ -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
}

View File

@@ -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

View File

@@ -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"

View File

@@ -0,0 +1 @@
DIST hubicfuse-3.0.1.tar.gz 94467 BLAKE2B c30561d9d35378d67666eaf663064bde082775c92e7fd018b57bcebd72939d82892534e62e506be34a2613fb3aa24bd402aa81e6f5e425b0b1922a49bbaf98b4 SHA512 39301395987c8e68c5de57361a6b1ce8c8cd58e3dfdf89b23ff9efd63900eb934261aab6df46d2cf73e4151b9815d1ebe4984cabd9145b83191835e6c4360e16

View File

@@ -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."
}

View File

@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM 'http://www.gentoo.org/dtd/metadata.dtd'>
<pkgmetadata>
<maintainer type="person">
<email>denis7774@gmail.com</email>
<name>Reva Denis aka RarogCmex</name>
</maintainer>
<longdescription lang="en">
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
</longdescription>
</pkgmetadata>

View File

@@ -0,0 +1 @@
DIST discord-canary-0.0.103.tar.gz 68577002 BLAKE2B ec25101d595d42bfb2e4c867f535ee957241d46e11b407affda00b69c7fa57e5c9b644bee10866838531f5de1d90bc0d74ea2f1f0a7b6fd018e19117cd0be964 SHA512 d1f83e51fb15d7d414dc0a1fea67a5a4a66cf1afa6460a5f58cb1f807015b74de10327117475a8971f5ab7d79dd51e6bde25588e6a5264eebd9f505ba053127c

View File

@@ -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
}

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>y0rune@aol.com</email>
<name>Marcin Woźniak</name>
</maintainer>
</pkgmetadata>