From 82c53fd72093f405e8efe0f3904f9a51a4663f94 Mon Sep 17 00:00:00 2001 From: "Ronny (tastytea) Gutbrod" Date: Mon, 3 May 2021 21:28:13 +0200 Subject: [PATCH 01/48] games-action/blackvoxel: Remove -zrelro again. I overlooked it when I extended the Makefile-patch before. Signed-off-by: Ronny (tastytea) Gutbrod --- .../files/blackvoxel-2.42-dont-strip-files.patch | 12 ++++++------ .../blackvoxel/files/blackvoxel-2.42-makefile.patch | 9 +++++---- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/games-action/blackvoxel/files/blackvoxel-2.42-dont-strip-files.patch b/games-action/blackvoxel/files/blackvoxel-2.42-dont-strip-files.patch index 7be84fbbf8..85f2b1290b 100644 --- a/games-action/blackvoxel/files/blackvoxel-2.42-dont-strip-files.patch +++ b/games-action/blackvoxel/files/blackvoxel-2.42-dont-strip-files.patch @@ -1,6 +1,6 @@ -From b6baebbd17479d9b6f6083797fa4eb63741fa52b Mon Sep 17 00:00:00 2001 +From a68c7c2d10bed88a5148828b6f8f02175af696ca Mon Sep 17 00:00:00 2001 From: tastytea -Date: Mon, 3 May 2021 03:05:19 +0200 +Date: Mon, 3 May 2021 21:25:36 +0200 Subject: [PATCH] Don't strip files. --- @@ -9,7 +9,7 @@ Subject: [PATCH] Don't strip files. 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile -index a85dd7e..51cb0fd 100644 +index 62c50cb..57f27d4 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ OBJ= $(SRC:src/%.cpp=obj/%.o) @@ -25,13 +25,13 @@ index a85dd7e..51cb0fd 100644 ifeq ($(KERNELNAME),Linux) CXXFLAGS+= -O3 -c -fmessage-length=0 -- LDFLAGS+=-s -zrelro -L"src/sc_Squirrel3/lib" -lGLU -lSDL -lGLEW -lGL -lsquirrel -lsqstdlib -+ LDFLAGS+=-zrelro -L"src/sc_Squirrel3/lib" -lGLU -lSDL -lGLEW -lGL -lsquirrel -lsqstdlib +- LDFLAGS+=-s -L"src/sc_Squirrel3/lib" -lGLU -lSDL -lGLEW -lGL -lsquirrel -lsqstdlib ++ LDFLAGS+=-L"src/sc_Squirrel3/lib" -lGLU -lSDL -lGLEW -lGL -lsquirrel -lsqstdlib else ifeq ($(KERNELNAME), FreeBSD) # To be done... CXXFLAGS+= -O3 -c -fmessage-length=0 - LDFLAGS+=-s -L"src/sc_Squirrel3/lib" -lGLU -lSDL -lGLEW -lGL -lsquirrel -lsqstdlib -+ LDFLAGS+=-L"src/sc_Squirrel3/lib" -lGLU -lSDL -lGLEW -lGL -lsquirrel -lsqstdlib ++ LDFLAGS+= -L"src/sc_Squirrel3/lib" -lGLU -lSDL -lGLEW -lGL -lsquirrel -lsqstdlib else ifeq ($(KERNELNAME), Darwin) CXXFLAGS+= -O3 -c -fmessage-length=0 - LDFLAGS+=-s -L"src/sc_Squirrel3/lib" -L"/usr/local/Cellar/glew" -L"/usr/local/Cellar/sdl" -I"/usr/local/Cellar/glew" -I"/usr/local/Cellar/sdl" -framework Cocoa -framework OpenGL -lSDLmain -lSDL -lGLEW -lsquirrel -lsqstdlib diff --git a/games-action/blackvoxel/files/blackvoxel-2.42-makefile.patch b/games-action/blackvoxel/files/blackvoxel-2.42-makefile.patch index f6f8572121..de29e1999b 100644 --- a/games-action/blackvoxel/files/blackvoxel-2.42-makefile.patch +++ b/games-action/blackvoxel/files/blackvoxel-2.42-makefile.patch @@ -1,9 +1,10 @@ -From a4fbc416e1c9884353f743f84ca98207f792b502 Mon Sep 17 00:00:00 2001 +From 6f28e09bf6c8b48e0b1e7acc8b755e076e41fe40 Mon Sep 17 00:00:00 2001 From: tastytea -Date: Mon, 3 May 2021 02:26:12 +0200 +Date: Mon, 3 May 2021 21:21:25 +0200 Subject: [PATCH] Don't overwrite build-flags, replace hardcoded tools with variables. +Also remove -zrelro from LDFLAGS. --- Makefile | 29 ++++++++++++++--------------- src/sc_Squirrel3/sq/Makefile | 8 ++++---- @@ -12,7 +13,7 @@ Subject: [PATCH] Don't overwrite build-flags, replace hardcoded tools with 4 files changed, 34 insertions(+), 35 deletions(-) diff --git a/Makefile b/Makefile -index 3fac7f3..a85dd7e 100644 +index 3fac7f3..62c50cb 100644 --- a/Makefile +++ b/Makefile @@ -8,10 +8,9 @@ ifndef bindir @@ -46,7 +47,7 @@ index 3fac7f3..a85dd7e 100644 - CFLAGS+= -O3 -c -fmessage-length=0 - LDFLAGS=-s -zrelro -L"src/sc_Squirrel3/lib" -lGLU -lSDL -lGLEW -lGL -lsquirrel -lsqstdlib + CXXFLAGS+= -O3 -c -fmessage-length=0 -+ LDFLAGS+=-s -zrelro -L"src/sc_Squirrel3/lib" -lGLU -lSDL -lGLEW -lGL -lsquirrel -lsqstdlib ++ LDFLAGS+=-s -L"src/sc_Squirrel3/lib" -lGLU -lSDL -lGLEW -lGL -lsquirrel -lsqstdlib else ifeq ($(KERNELNAME), FreeBSD) # To be done... - CFLAGS+= -O3 -c -fmessage-length=0 From a1cc0bbf78ace25982570994ef1eac6a0093c46e Mon Sep 17 00:00:00 2001 From: Samuel Bauer Date: Mon, 3 May 2021 21:35:27 +0200 Subject: [PATCH 02/48] games-action/blackvoxel: integrate work from #787074 in live ebuild Signed-off-by: Samuel Bauer --- games-action/blackvoxel/blackvoxel-9999.ebuild | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/games-action/blackvoxel/blackvoxel-9999.ebuild b/games-action/blackvoxel/blackvoxel-9999.ebuild index d20271cefc..2cdbbd8db5 100644 --- a/games-action/blackvoxel/blackvoxel-9999.ebuild +++ b/games-action/blackvoxel/blackvoxel-9999.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit git-r3 +inherit git-r3 toolchain-funcs DESCRIPTION="Blackvoxel Video Game" HOMEPAGE="https://www.blackvoxel.com/" @@ -30,11 +30,22 @@ src_prepare() { sed -i -e 's/LDFLAGS=/LDFLAGS+= /' -e '/LDFLAGS/s/-s -zrelro //' \ -e '/(CPU_BITS)/ { s/; make //; s/cd/+make -C/}' \ -e '/CFLAGS+/d' -e 's/CFLAGS=/CFLAGS+=/' \ + -e '/^CC=/d' -e 's/^LD=/CXX?=/' \ + -e 's/CFLAGS/CXXFLAGS/g' -e 's/\$(CC)/$(CXX)/' \ + -e 's/\$(LD)/$(CXX)/' \ Makefile || die + sed -i -e 's/\/$(CC)/' -e 's/\/$(CXX)/' \ + -e 's/\/$(AR)/' src/sc_Squirrel3/squirrel/Makefile \ + src/sc_Squirrel3/sqstdlib/Makefile \ + src/sc_Squirrel3/sq/Makefile || die default } src_compile() { + export CXX="$(tc-getCXX)" + export CC="$(tc-getCC)" + export AR="$(tc-getAR)" + emake blackvoxeldatadir="/usr/share/${PN}" bindir="/usr/bin" } From 6e07b70543852d33b276bea80cfb3d928d7c32ca Mon Sep 17 00:00:00 2001 From: Samuel Bauer Date: Mon, 3 May 2021 22:29:54 +0200 Subject: [PATCH 03/48] games-action/blackvoxel-9999: regex rework Signed-off-by: Samuel Bauer --- games-action/blackvoxel/blackvoxel-9999.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/games-action/blackvoxel/blackvoxel-9999.ebuild b/games-action/blackvoxel/blackvoxel-9999.ebuild index 2cdbbd8db5..f9dc33fc2c 100644 --- a/games-action/blackvoxel/blackvoxel-9999.ebuild +++ b/games-action/blackvoxel/blackvoxel-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 2020 Gentoo Authors +# Copyright 2018-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -34,7 +34,7 @@ src_prepare() { -e 's/CFLAGS/CXXFLAGS/g' -e 's/\$(CC)/$(CXX)/' \ -e 's/\$(LD)/$(CXX)/' \ Makefile || die - sed -i -e 's/\/$(CC)/' -e 's/\/$(CXX)/' \ + sed -i -e 's/\/$(CC)/' -e 's/\/$(AR)/' src/sc_Squirrel3/squirrel/Makefile \ src/sc_Squirrel3/sqstdlib/Makefile \ src/sc_Squirrel3/sq/Makefile || die From 4b38ffa0071c0a2ac4ed4382e092c0eb8caa2a1f Mon Sep 17 00:00:00 2001 From: "Ronny (tastytea) Gutbrod" Date: Mon, 3 May 2021 22:35:17 +0200 Subject: [PATCH 04/48] games-action/blackvoxel: Re-add jobserver-tweak to patch. Signed-off-by: Ronny (tastytea) Gutbrod --- .../files/blackvoxel-2.42-makefile.patch | 20 ++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/games-action/blackvoxel/files/blackvoxel-2.42-makefile.patch b/games-action/blackvoxel/files/blackvoxel-2.42-makefile.patch index de29e1999b..ba800e8279 100644 --- a/games-action/blackvoxel/files/blackvoxel-2.42-makefile.patch +++ b/games-action/blackvoxel/files/blackvoxel-2.42-makefile.patch @@ -1,4 +1,4 @@ -From 6f28e09bf6c8b48e0b1e7acc8b755e076e41fe40 Mon Sep 17 00:00:00 2001 +From 18ae2cca1ef8b9e04b463719d03b021245ecfeec Mon Sep 17 00:00:00 2001 From: tastytea Date: Mon, 3 May 2021 21:21:25 +0200 Subject: [PATCH] Don't overwrite build-flags, replace hardcoded tools with @@ -6,14 +6,14 @@ Subject: [PATCH] Don't overwrite build-flags, replace hardcoded tools with Also remove -zrelro from LDFLAGS. --- - Makefile | 29 ++++++++++++++--------------- + Makefile | 31 +++++++++++++++--------------- src/sc_Squirrel3/sq/Makefile | 8 ++++---- - src/sc_Squirrel3/sqstdlib/Makefile | 16 ++++++++-------- - src/sc_Squirrel3/squirrel/Makefile | 16 ++++++++-------- - 4 files changed, 34 insertions(+), 35 deletions(-) + src/sc_Squirrel3/sqstdlib/Makefile | 16 +++++++-------- + src/sc_Squirrel3/squirrel/Makefile | 16 +++++++-------- + 4 files changed, 35 insertions(+), 36 deletions(-) diff --git a/Makefile b/Makefile -index 3fac7f3..62c50cb 100644 +index 3fac7f3..d1104e7 100644 --- a/Makefile +++ b/Makefile @@ -8,10 +8,9 @@ ifndef bindir @@ -40,7 +40,7 @@ index 3fac7f3..62c50cb 100644 else # Unix like operating systems CPU_BITS= $(shell getconf LONG_BIT) -@@ -28,31 +27,31 @@ else +@@ -28,36 +27,36 @@ else KERNELNAME =$(shell uname -s) ifeq ($(KERNELNAME),Linux) @@ -82,6 +82,12 @@ index 3fac7f3..62c50cb 100644 + squirrel: +- cd src/sc_Squirrel3 ; make sq$(CPU_BITS) ++ +make -C src/sc_Squirrel3 sq$(CPU_BITS) + + clean: + @rm -rf obj diff --git a/src/sc_Squirrel3/sq/Makefile b/src/sc_Squirrel3/sq/Makefile index c2cfc7e..08fb2ef 100644 --- a/src/sc_Squirrel3/sq/Makefile From fca6b4c4a780bdbb39a4976a53277455cdeeaab6 Mon Sep 17 00:00:00 2001 From: Anna Vyalkova Date: Tue, 4 May 2021 00:10:32 +0500 Subject: [PATCH 05/48] dev-python/asynctest: drop package It doesn't support Python versions greater than 3.7. See https://github.com/Martiusweb/asynctest/issues/151 Closes: https://bugs.gentoo.org/783996 Signed-off-by: Anna Vyalkova --- dev-python/aionotify/aionotify-0.2.0.ebuild | 4 --- dev-python/asynctest/Manifest | 1 - dev-python/asynctest/asynctest-0.13.0.ebuild | 31 -------------------- dev-python/asynctest/metadata.xml | 22 -------------- 4 files changed, 58 deletions(-) delete mode 100644 dev-python/asynctest/Manifest delete mode 100644 dev-python/asynctest/asynctest-0.13.0.ebuild delete mode 100644 dev-python/asynctest/metadata.xml diff --git a/dev-python/aionotify/aionotify-0.2.0.ebuild b/dev-python/aionotify/aionotify-0.2.0.ebuild index bfcd6b918b..ec9f1337da 100644 --- a/dev-python/aionotify/aionotify-0.2.0.ebuild +++ b/dev-python/aionotify/aionotify-0.2.0.ebuild @@ -14,7 +14,3 @@ SRC_URI="https://github.com/rbarrois/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" - -DEPEND="test? ( dev-python/asynctest[${PYTHON_USEDEP}] )" - -distutils_enable_tests pytest diff --git a/dev-python/asynctest/Manifest b/dev-python/asynctest/Manifest deleted file mode 100644 index e193011fc0..0000000000 --- a/dev-python/asynctest/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST asynctest-0.13.0.tar.gz 67664 BLAKE2B 96a50544cd7ad5038abc01b46a7fd9f8bb87eeb7dfe60cb35ef910bd9583488733dfb78ab6f5de215a1c8715e0b36064d1ea75164a8840b207a8618bd806291f SHA512 cfa76a461c81d702f96cc06d6a6786c35373802a4d878927a1f11eaad741aef8e55130e4b07cfc78673210f0ebf45bf808b7c43aebb1b2835f40306b5e44b141 diff --git a/dev-python/asynctest/asynctest-0.13.0.ebuild b/dev-python/asynctest/asynctest-0.13.0.ebuild deleted file mode 100644 index 6210e149f0..0000000000 --- a/dev-python/asynctest/asynctest-0.13.0.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -PYTHON_COMPAT=( python3_{7,8,9} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Enhance the standard unittest with features for testing asyncio libraries" -HOMEPAGE=" - https://github.com/Martiusweb/asynctest - https://pypi.org/project/asynctest -" -SRC_URI="https://github.com/Martiusweb/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -distutils_enable_sphinx doc -distutils_enable_tests unittest - -src_prepare() { - sed -i 's|def test_events_watched_outside_test_are_ignored|@unittest.skip("this fail")\n def test_events_watched_outside_test_are_ignored|' test/test_selector.py - default -} - -python_test() { - "${EPYTHON}" -m unittest -v test || die "Testing failed with ${EPYTHON}" -} diff --git a/dev-python/asynctest/metadata.xml b/dev-python/asynctest/metadata.xml deleted file mode 100644 index ef09f84d87..0000000000 --- a/dev-python/asynctest/metadata.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - Martiusweb/asynctest - http://asynctest.readthedocs.org/en/latest - https://github.com/Martiusweb/asynctest/issues - - - martius@martiusweb.net - - - Martin Richard - - - - - The package asynctest is built on top of the standard unittest module and cuts down boilerplate code when testing libraries for asyncio. - - - From ac25ebc123a22ec255b519099470336e55d41430 Mon Sep 17 00:00:00 2001 From: Anna Vyalkova Date: Tue, 4 May 2021 00:27:27 +0500 Subject: [PATCH 06/48] dev-python/manhole: fix tests and bump to 1.8.0 Closes: https://bugs.gentoo.org/784041 Signed-off-by: Anna Vyalkova --- dev-python/manhole/Manifest | 2 +- ...hole-1.6.0.ebuild => manhole-1.8.0.ebuild} | 20 +++++++++++-------- 2 files changed, 13 insertions(+), 9 deletions(-) rename dev-python/manhole/{manhole-1.6.0.ebuild => manhole-1.8.0.ebuild} (75%) diff --git a/dev-python/manhole/Manifest b/dev-python/manhole/Manifest index 2d8dd7fb8f..940de3533f 100644 --- a/dev-python/manhole/Manifest +++ b/dev-python/manhole/Manifest @@ -1 +1 @@ -DIST manhole-1.6.0.tar.gz 30111 BLAKE2B e6cffb465d72d579d3c901b5f163248ea28f3a208d2b487207a4f2d949994b7b778808b19a3bde0047bc71c2fe1865a12f9dcc5ac4f5407745879c8648df6c89 SHA512 179a87529e371c4480b6ab0ad6cc6cc9e3942f4be339cacaf1f1b100e447b8b1f2903a03879e9df3376c86ced4421aa5a16d934c9b250f91715b28d03dca000a +DIST manhole-1.8.0.tar.gz 30823 BLAKE2B 7de4966faaa5a386097d9e3015318f3df5422f9f4525347ea93bc1b3cc988236e2db9dcdf7c5e4f058ad816c74beebab210af65fd331e2347da9c05035a22128 SHA512 041452d602895f7ceaafc74ac50713acd470120b022a942946de83f90d2d839ee15b333dfc329f88597b13e0b3fee436af526beae95a3ff94e51376fd2cc27e6 diff --git a/dev-python/manhole/manhole-1.6.0.ebuild b/dev-python/manhole/manhole-1.8.0.ebuild similarity index 75% rename from dev-python/manhole/manhole-1.6.0.ebuild rename to dev-python/manhole/manhole-1.8.0.ebuild index 8c035eb8e2..ff8d55f963 100644 --- a/dev-python/manhole/manhole-1.6.0.ebuild +++ b/dev-python/manhole/manhole-1.8.0.ebuild @@ -8,27 +8,29 @@ DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 -MYPN="python-${PN}" +MY_PN="python-${PN}" DESCRIPTION="Debugging manhole for python application" HOMEPAGE=" https://github.com/ionelmc/python-manhole - https://pypi.org/project/python-manhole + https://pypi.org/project/manhole " -SRC_URI="https://github.com/ionelmc/${MYPN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/ionelmc/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD-2" SLOT="0" KEYWORDS="~amd64 ~x86" -DEPEND="test? ( +DEPEND=" + test? ( dev-python/eventlet[${PYTHON_USEDEP}] dev-python/gevent[${PYTHON_USEDEP}] dev-python/process-tests[${PYTHON_USEDEP}] dev-python/requests[${PYTHON_USEDEP}] -)" + ) +" -S="${WORKDIR}/${MYPN}-${PV}" +S="${WORKDIR}/${MY_PN}-${PV}" distutils_enable_tests pytest distutils_enable_sphinx docs \ @@ -36,13 +38,15 @@ distutils_enable_sphinx docs \ dev-python/sphinxcontrib-napoleon python_test() { - pytest -vv \ + distutils_install_for_testing + epytest \ --deselect tests/test_manhole.py::test_non_daemon_connection \ --deselect tests/test_manhole.py::test_daemon_connection \ --deselect tests/test_manhole.py::test_uwsgi \ --deselect tests/test_manhole.py::test_fork_exec \ --deselect tests/test_manhole.py::test_connection_handler_exec[str] \ --deselect tests/test_manhole.py::test_connection_handler_exec[func] \ - --deselect tests/test_manhole_cli.py::test_help || die + --deselect tests/test_manhole.py::test_environ_variable_activation \ + --deselect tests/test_manhole_cli.py::test_help } From 0cbe2a7af68d02cd1f7f660b5adbb40930a58b61 Mon Sep 17 00:00:00 2001 From: Anna Vyalkova Date: Tue, 4 May 2021 01:02:37 +0500 Subject: [PATCH 07/48] dev-python/sphinx-tabs: fix tests and bump to 2.1.0 Closes: https://bugs.gentoo.org/784176 Signed-off-by: Anna Vyalkova --- dev-python/sphinx-tabs/Manifest | 2 +- .../sphinx-tabs/sphinx-tabs-1.3.0.ebuild | 41 ------------------- .../sphinx-tabs/sphinx-tabs-2.1.0.ebuild | 39 ++++++++++++++++++ 3 files changed, 40 insertions(+), 42 deletions(-) delete mode 100644 dev-python/sphinx-tabs/sphinx-tabs-1.3.0.ebuild create mode 100644 dev-python/sphinx-tabs/sphinx-tabs-2.1.0.ebuild diff --git a/dev-python/sphinx-tabs/Manifest b/dev-python/sphinx-tabs/Manifest index 48a1a08534..d0248b5bae 100644 --- a/dev-python/sphinx-tabs/Manifest +++ b/dev-python/sphinx-tabs/Manifest @@ -1 +1 @@ -DIST sphinx-tabs-1.3.0.tar.gz 23246 BLAKE2B 5bab0f184503acf21402c4e393e3db07d9ef292abad7bf1c3bc0c58836e9d18ffb13b86c445f9705b37bc22ec9caf312c4a69dde53aa86b58626ec2e330ff034 SHA512 d616a543bf0cd9184574928859714d975a063a7b607be0b93d548dceeed8d9442ee723d1557267258f7b1c50c917f66a31b15d4579c2adf360b965e10c7d23de +DIST sphinx-tabs-2.1.0.tar.gz 519866 BLAKE2B d67f573a1394ac6ebe2e36b66e400c7704c2c0dc5136a52107915defa3efafed73898b444759b20d6ecc232e05423ed8d614c1ba32b416c80ab58be317f67b9f SHA512 7c9f7332422813d994af7e7023ebc63bef3819c73b09765d5af8c33d19990c649b049c6d6479ff6a763a868828ebe5510081a547aab7af1414966b555b1a45b5 diff --git a/dev-python/sphinx-tabs/sphinx-tabs-1.3.0.ebuild b/dev-python/sphinx-tabs/sphinx-tabs-1.3.0.ebuild deleted file mode 100644 index 17fd9666f6..0000000000 --- a/dev-python/sphinx-tabs/sphinx-tabs-1.3.0.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( pypy3 python3_{7,8} ) - -inherit distutils-r1 - -DESCRIPTION="Create tabbed content in Sphinx documentation when building HTML" -HOMEPAGE="https://github.com/executablebooks/sphinx-tabs" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" - -RDEPEND=" - dev-python/docutils[${PYTHON_USEDEP}] - dev-python/sphinx[${PYTHON_USEDEP}] -" -BDEPEND=" - >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}] - test? ( - ${RDEPEND} - dev-python/path-py[${PYTHON_USEDEP}] - ) -" - -S="${WORKDIR}/${P}" - -distutils_enable_tests pytest - -python_test() { - # Ignore the module from ${S}, use the one from ${BUILD_DIR} - # Otherwise, ImportMismatchError may occur - # https://github.com/gentoo/gentoo/pull/1622#issuecomment-224482396 - # Override pytest options to skip flake8 - pytest -vv --ignore=rst --override-ini="addopts=--doctest-modules" \ - || die "tests failed with ${EPYTHON}" -} diff --git a/dev-python/sphinx-tabs/sphinx-tabs-2.1.0.ebuild b/dev-python/sphinx-tabs/sphinx-tabs-2.1.0.ebuild new file mode 100644 index 0000000000..db7bc0f7d1 --- /dev/null +++ b/dev-python/sphinx-tabs/sphinx-tabs-2.1.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) + +inherit distutils-r1 + +DESCRIPTION="Create tabbed content in Sphinx documentation when building HTML" +HOMEPAGE="https://github.com/executablebooks/sphinx-tabs https://pypi.org/project/sphinx-tabs/" +SRC_URI="https://github.com/executablebooks/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/docutils[${PYTHON_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}] +" +BDEPEND=" + >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}] + test? ( + dev-python/beautifulsoup:4[${PYTHON_USEDEP}] + dev-python/coverage[${PYTHON_USEDEP}] + dev-python/path-py[${PYTHON_USEDEP}] + dev-python/pygments[${PYTHON_USEDEP}] + dev-python/pytest-regressions[${PYTHON_USEDEP}] + dev-python/sphinx-testing[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_test() { + # TODO: package https://pypi.org/project/rinohtype/ + epytest --deselect tests/test_build.py::test_rinohtype_pdf +} From ab42dbc2c8f01b9f882b11752591e3cc646a1ef5 Mon Sep 17 00:00:00 2001 From: Anna Vyalkova Date: Tue, 4 May 2021 01:23:29 +0500 Subject: [PATCH 08/48] dev-python/sphinxcontrib-trio: disable failing test Closes: https://bugs.gentoo.org/784152 Signed-off-by: Anna Vyalkova --- .../sphinxcontrib-trio-1.1.2.ebuild | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/dev-python/sphinxcontrib-trio/sphinxcontrib-trio-1.1.2.ebuild b/dev-python/sphinxcontrib-trio/sphinxcontrib-trio-1.1.2.ebuild index 02eaa5fbc0..fe68a474e3 100644 --- a/dev-python/sphinxcontrib-trio/sphinxcontrib-trio-1.1.2.ebuild +++ b/dev-python/sphinxcontrib-trio/sphinxcontrib-trio-1.1.2.ebuild @@ -20,11 +20,18 @@ SLOT="0" RDEPEND="dev-python/sphinx[${PYTHON_USEDEP}]" -DEPEND="test? ( - dev-python/async_generator[${PYTHON_USEDEP}] - dev-python/contextlib2[${PYTHON_USEDEP}] - dev-python/cssselect[${PYTHON_USEDEP}] - dev-python/lxml[${PYTHON_USEDEP}] )" +BDEPEND=" + test? ( + dev-python/async_generator[${PYTHON_USEDEP}] + dev-python/contextlib2[${PYTHON_USEDEP}] + dev-python/cssselect[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}] +)" distutils_enable_sphinx docs/source distutils_enable_tests pytest + +python_test() { + # disable failing test + epytest --deselect tests/test_sphinxcontrib_trio.py::test_end_to_end +} From c5f334f70b5a09646d02f587b5d01c87c7cdfc07 Mon Sep 17 00:00:00 2001 From: Anna Vyalkova Date: Tue, 4 May 2021 01:31:32 +0500 Subject: [PATCH 09/48] dev-python/aspectlib: disable failing test Closes: https://bugs.gentoo.org/784011 Signed-off-by: Anna Vyalkova --- dev-python/aspectlib/aspectlib-1.5.2.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dev-python/aspectlib/aspectlib-1.5.2.ebuild b/dev-python/aspectlib/aspectlib-1.5.2.ebuild index 5290da0794..720bed2350 100644 --- a/dev-python/aspectlib/aspectlib-1.5.2.ebuild +++ b/dev-python/aspectlib/aspectlib-1.5.2.ebuild @@ -5,7 +5,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{7,8,9} ) -DISTUTILS_USE_SETUPTOOLS=rdepend +DISTUTILS_USE_SETUPTOOLS=bdepend inherit distutils-r1 @@ -29,7 +29,6 @@ DEPEND=" dev-python/mock[${PYTHON_USEDEP}] dev-python/nose[${PYTHON_USEDEP}] dev-python/process-tests[${PYTHON_USEDEP}] - www-servers/tornado[${PYTHON_USEDEP}] ) " @@ -37,3 +36,9 @@ S="${WORKDIR}/python-${P}" distutils_enable_tests pytest distutils_enable_sphinx docs dev-python/sphinx-py3doc-enhanced-theme + +python_test() { + # Test fails with tornado>=6 + # https://github.com/ionelmc/python-aspectlib/issues/15 + epytest --deselect tests/test_integrations_py3.py::test_decorate_tornado_coroutine +} From 143550df19c36e5906c8661a57cb0089e7b146af Mon Sep 17 00:00:00 2001 From: Anna Vyalkova Date: Tue, 4 May 2021 02:54:39 +0500 Subject: [PATCH 10/48] dev-python/hunter: fix tests and bump to 3.3.2 Dropped 3.1.3 because there's no way I'm messing with tests in another one version! >.< Closes: https://bugs.gentoo.org/787050 Signed-off-by: Anna Vyalkova --- dev-python/hunter/Manifest | 3 +- dev-python/hunter/hunter-3.1.3.ebuild | 51 ------------------- ...unter-3.3.1.ebuild => hunter-3.3.2.ebuild} | 23 ++++++++- 3 files changed, 23 insertions(+), 54 deletions(-) delete mode 100644 dev-python/hunter/hunter-3.1.3.ebuild rename dev-python/hunter/{hunter-3.3.1.ebuild => hunter-3.3.2.ebuild} (59%) diff --git a/dev-python/hunter/Manifest b/dev-python/hunter/Manifest index a814d24ebf..4766d81ce4 100644 --- a/dev-python/hunter/Manifest +++ b/dev-python/hunter/Manifest @@ -1,2 +1 @@ -DIST hunter-3.1.3.tar.gz 422149 BLAKE2B 2834b3daa6be461b78d468aa331a587a476b7109f5ff9c70b27bb51b26f6a390d2074425f4d98ddc692d4e11f1ee14a77f5066650e82687ebaa586051afab4c8 SHA512 ea9cc935240526d2942568073cecfb2bef32d7caedd0b370850b208a56c652bf356ba0e5675281946419aafd966cbff148490f6f4439d0d808335a3e831adbf7 -DIST hunter-3.3.1.tar.gz 533218 BLAKE2B 9ad62c4c5649b3389a480732a3f6939f54fe39f25362e5f796d78ab8286d6aada326035882d81a09c985765c4acc6283e1bd6665c473ca3edb9a84a6f2b301e6 SHA512 8ac5d2f993bc7c75adae532d4bff5a905c7ec84d32389fcfabb4c5ca3d511a73dc84725d5a450be7d1281e006ec049a5b43c01a79890e0b00302b6b7df291d55 +DIST hunter-3.3.2.tar.gz 535119 BLAKE2B 25551f04d0b2dafa6875c5c5660d2c57417bdc113960ec2b8d224c88a6b9d08b38bfbbb2deb516e7a36704164318137f5675409850c2eeff2c486a819731c756 SHA512 e3b5e7a3729074cf52a7a209e6f54a1319b3e94ff50abe4e6d8f00f3953720e3c2380de066c2a0a4e56c7a348fdd947425ae19c8907bd420d10ffb271bc07516 diff --git a/dev-python/hunter/hunter-3.1.3.ebuild b/dev-python/hunter/hunter-3.1.3.ebuild deleted file mode 100644 index 86af50715a..0000000000 --- a/dev-python/hunter/hunter-3.1.3.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8} ) - -DISTUTILS_USE_SETUPTOOLS=rdepend - -inherit distutils-r1 - -DESCRIPTION="Hunter is a flexible code tracing toolkit" -HOMEPAGE=" - https://github.com/ionelmc/python-hunter - https://pypi.org/project/hunter -" -SRC_URI="https://github.com/ionelmc/python-${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - dev-python/colorama[${PYTHON_USEDEP}] -" -DEPEND=" - ${RDEPEND} - test? ( - dev-python/aspectlib[${PYTHON_USEDEP}] - dev-python/hunter[${PYTHON_USEDEP}] - dev-python/manhole[${PYTHON_USEDEP}] - dev-python/pytest-benchmark[${PYTHON_USEDEP}] - dev-python/process-tests[${PYTHON_USEDEP}] - ) -" -BDEPEND=" - dev-python/cython[${PYTHON_USEDEP}] - >=dev-python/setuptools_scm-3.3.1[${PYTHON_USEDEP}] -" - -S="${WORKDIR}/python-${P}" - -distutils_enable_tests pytest -distutils_enable_sphinx docs ">=dev-python/sphinx-py3doc-enhanced-theme-2.3.2" - -python_prepare_all() { - # all tests in this file fail - rm tests/test_remote.py || die - - distutils-r1_python_prepare_all -} diff --git a/dev-python/hunter/hunter-3.3.1.ebuild b/dev-python/hunter/hunter-3.3.2.ebuild similarity index 59% rename from dev-python/hunter/hunter-3.3.1.ebuild rename to dev-python/hunter/hunter-3.3.2.ebuild index 952cd2f058..51a71d9017 100644 --- a/dev-python/hunter/hunter-3.3.1.ebuild +++ b/dev-python/hunter/hunter-3.3.2.ebuild @@ -25,7 +25,6 @@ DEPEND=" ${RDEPEND} test? ( dev-python/aspectlib[${PYTHON_USEDEP}] - dev-python/hunter[${PYTHON_USEDEP}] dev-python/manhole[${PYTHON_USEDEP}] dev-python/pytest-benchmark[${PYTHON_USEDEP}] dev-python/process-tests[${PYTHON_USEDEP}] @@ -45,5 +44,27 @@ python_prepare_all() { # all tests in this file fail rm tests/test_remote.py || die + sed 's/setuptools_scm>=3.3.1,!=4.0.0,<6.0/setuptools_scm>=3.3.1/' \ + -i setup.py || die + distutils-r1_python_prepare_all } + +python_compile() { + distutils-r1_python_compile + + if use test; then + "${EPYTHON}" tests/setup.py build_ext --force --inplace || die + fi +} + +python_test() { + local -x PYTHONPATH="${S}/tests:${BUILD_DIR}/lib:${PYTHONPATH}" + epytest --ignore=src \ + --deselect tests/test_integration.py::test_pth_activation \ + --deselect tests/test_integration.py::test_pth_sample4 \ + --deselect tests/test_integration.py::test_pth_sample2 \ + --deselect tests/test_integration.py::test_depth_limit_subprocess[depth_lt=2] \ + --deselect tests/test_integration.py::test_depth_limit_subprocess[depth_lt=3] \ + --deselect tests/test_integration.py::test_depth_limit_subprocess[depth_lt=4] +} From 1d9eff573b0e2423786eebc06299adcdd64f40da Mon Sep 17 00:00:00 2001 From: Anna Vyalkova Date: Tue, 4 May 2021 03:36:43 +0500 Subject: [PATCH 11/48] dev-python/clufter: respect LDFLAGS Closes: https://bugs.gentoo.org/780948 Signed-off-by: Anna Vyalkova --- dev-python/clufter/clufter-0.77.2.ebuild | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/dev-python/clufter/clufter-0.77.2.ebuild b/dev-python/clufter/clufter-0.77.2.ebuild index beca824018..c098d262de 100644 --- a/dev-python/clufter/clufter-0.77.2.ebuild +++ b/dev-python/clufter/clufter-0.77.2.ebuild @@ -10,16 +10,25 @@ inherit distutils-r1 DESCRIPTION="Tool/library for transforming/analyzing cluster configuration formats" HOMEPAGE="https://pagure.io/clufter" -SRC_URI="https://pagure.io/clufter/archive/v0.77.2/clufter-v0.77.2.tar.gz" +SRC_URI="https://pagure.io/${PN}/archive/v${PV}/${PN}-v${PV}.tar.gz" + +S="${WORKDIR}/${PN}-v${PV}" SLOT="0" -LICENSE="GPL-2" +LICENSE="GPL-2+" KEYWORDS="~amd64 ~x86" IUSE="" +DOCS=( __root__/README ) + DEPEND="dev-python/lxml dev-libs/libxml2" -S="${WORKDIR}/${PN}-v${PV}" +src_compile() { + # Build native extension first + pushd "${S}/__root__/ccs-flatten" || die + emake + popd || die -DOCS=( __root__/README ) + distutils-r1_src_compile +} From 99595231cca70a3253396d60e579dcef0f843bdd Mon Sep 17 00:00:00 2001 From: Samuel Bauer Date: Tue, 4 May 2021 02:10:07 +0200 Subject: [PATCH 12/48] games-util/hid-nintendo: new ebuild Signed-off-by: Samuel Bauer --- .../hid-nintendo/hid-nintendo-9999.ebuild | 23 +++++++++++++++++++ games-util/hid-nintendo/metadata.xml | 8 +++++++ 2 files changed, 31 insertions(+) create mode 100644 games-util/hid-nintendo/hid-nintendo-9999.ebuild create mode 100644 games-util/hid-nintendo/metadata.xml diff --git a/games-util/hid-nintendo/hid-nintendo-9999.ebuild b/games-util/hid-nintendo/hid-nintendo-9999.ebuild new file mode 100644 index 0000000000..fd4a5b06a7 --- /dev/null +++ b/games-util/hid-nintendo/hid-nintendo-9999.ebuild @@ -0,0 +1,23 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit git-r3 linux-mod + +DESCRIPTION="A Nintendo HID kernel module" +HOMEPAGE="https://github.com/nicman23/dkms-hid-nintendo https://github.com/DanielOgorchock/linux" +EGIT_REPO_URI="https://github.com/nicman23/dkms-hid-nintendo" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" + +MODULE_NAMES="${PN}(kernel/drivers/hid:${S}/src)" +BUILD_TARGETS="-C /usr/src/linux M=${S}/src" + +pkg_setup() { + CONFIG_CHECK="~HID ~HID_GENERIC ~USB_HID ~HIDRAW ~UHID" + check_extra_config + linux-mod_pkg_setup +} diff --git a/games-util/hid-nintendo/metadata.xml b/games-util/hid-nintendo/metadata.xml new file mode 100644 index 0000000000..c04f7b6646 --- /dev/null +++ b/games-util/hid-nintendo/metadata.xml @@ -0,0 +1,8 @@ + + + + + Samuel Bauer + samuel.bauer@yahoo.fr + + From 192fd415e53346474d599cab53cdf2290a772fbe Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 09:01:49 +0200 Subject: [PATCH 13/48] dev-cpp/wangle: add maintainer Signed-off-by: Alessandro Barbieri --- dev-cpp/wangle/metadata.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-cpp/wangle/metadata.xml b/dev-cpp/wangle/metadata.xml index 91cb5ddee6..5b7146169a 100644 --- a/dev-cpp/wangle/metadata.xml +++ b/dev-cpp/wangle/metadata.xml @@ -1,6 +1,11 @@ + + co-maintainers welcome + lssndrbarbieri@gmail.com + Alessandro Barbieri + Client / Server abstraction From dc79bafe7f6c5774b189d626b7c3fcfec418cc32 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:04:14 +0200 Subject: [PATCH 14/48] dev-cpp/plog: add myself as a maintainer Signed-off-by: Alessandro Barbieri --- dev-cpp/plog/metadata.xml | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/dev-cpp/plog/metadata.xml b/dev-cpp/plog/metadata.xml index a7c96a6ed6..53d8eab0d2 100644 --- a/dev-cpp/plog/metadata.xml +++ b/dev-cpp/plog/metadata.xml @@ -1,20 +1,12 @@ - + - - - lssndrbarbieri@gmail.com - - - Alessandro Barbieri - - - - - https://github.com/SergiusTheBest/plog/issues - - - SergiusTheBest/plog - - + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + https://github.com/SergiusTheBest/plog/issues + SergiusTheBest/plog + From 127039e488cac2c855538447cbeacf489de3c80b Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:12:49 +0200 Subject: [PATCH 15/48] dev-R/R6: tidy metadata Signed-off-by: Alessandro Barbieri --- dev-R/R6/metadata.xml | 46 +++++++++++++++---------------------------- 1 file changed, 16 insertions(+), 30 deletions(-) diff --git a/dev-R/R6/metadata.xml b/dev-R/R6/metadata.xml index 6762d82c47..fa78b3949f 100644 --- a/dev-R/R6/metadata.xml +++ b/dev-R/R6/metadata.xml @@ -1,33 +1,19 @@ - + - - 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 - - + + 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 + From 564830047a3d43a34da04480b48f6a15fbfa4425 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:13:37 +0200 Subject: [PATCH 16/48] dev-R/cellranger: tidy metadata Signed-off-by: Alessandro Barbieri --- dev-R/cellranger/metadata.xml | 42 +++++++++++++---------------------- 1 file changed, 15 insertions(+), 27 deletions(-) diff --git a/dev-R/cellranger/metadata.xml b/dev-R/cellranger/metadata.xml index c69b6fb396..90212defb6 100644 --- a/dev-R/cellranger/metadata.xml +++ b/dev-R/cellranger/metadata.xml @@ -1,30 +1,18 @@ - + - - lssndrbarbieri@gmail.com - Alessandro Barbieri - - - - 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 - - + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + 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 + From aa04c62332e693aed0df885ac1c4fbc29725b9a1 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:14:04 +0200 Subject: [PATCH 17/48] dev-R/Rcpp: tidy metadata Signed-off-by: Alessandro Barbieri --- dev-R/Rcpp/metadata.xml | 46 ++++++++++++++--------------------------- 1 file changed, 16 insertions(+), 30 deletions(-) diff --git a/dev-R/Rcpp/metadata.xml b/dev-R/Rcpp/metadata.xml index 6dda537840..3a299b984b 100644 --- a/dev-R/Rcpp/metadata.xml +++ b/dev-R/Rcpp/metadata.xml @@ -1,33 +1,19 @@ - + - - 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 - - + + 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 + From 04ce82d9cc143edc79f06c673c3e1f81dd73fcaa Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:14:30 +0200 Subject: [PATCH 18/48] dev-R/digest: tidy metadata Signed-off-by: Alessandro Barbieri --- dev-R/digest/metadata.xml | 46 ++++++++++++++------------------------- 1 file changed, 16 insertions(+), 30 deletions(-) diff --git a/dev-R/digest/metadata.xml b/dev-R/digest/metadata.xml index 4aee549a42..1d6b00e751 100644 --- a/dev-R/digest/metadata.xml +++ b/dev-R/digest/metadata.xml @@ -1,33 +1,19 @@ - + - - lssndrbarbieri@gmail.com - Alessandro Barbieri - - - Implementation of a function 'digest()' for the creation of hash digests of arbitrary R objects (using the 'md5', 'sha-1', 'sha-256', 'crc32', 'xxhash', 'murmurhash' and 'spookyhash' algorithms) permitting easy comparison of R language objects, as well as functions such as'hmac()' to create hash-based message authentication code. Please note that this package is not meant to be deployed for cryptographic purposes for which more comprehensive (and widely tested) libraries such as 'OpenSSL' should be used. - - - - https://github.com/eddelbuettel/digest/issues - - - https://cran.r-project.org/web//packages/digest/digest.pdf - - - https://cran.r-project.org/web//packages/digest/ChangeLog - - - - Dirk Eddelbuettel - - - edd@debian.org - - - - eddelbuettel/digest - - + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + Implementation of a function 'digest()' for the creation of hash digests of arbitrary R objects (using the 'md5', 'sha-1', 'sha-256', 'crc32', 'xxhash', 'murmurhash' and 'spookyhash' algorithms) permitting easy comparison of R language objects, as well as functions such as'hmac()' to create hash-based message authentication code. Please note that this package is not meant to be deployed for cryptographic purposes for which more comprehensive (and widely tested) libraries such as 'OpenSSL' should be used. + + https://github.com/eddelbuettel/digest/issues + https://cran.r-project.org/web//packages/digest/digest.pdf + https://cran.r-project.org/web//packages/digest/ChangeLog + + Dirk Eddelbuettel + edd@debian.org + + eddelbuettel/digest + From 1c7a087b85ff5b5fc5988c3111481487ee116d56 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:15:08 +0200 Subject: [PATCH 19/48] dev-R/cli: tidy metadata Signed-off-by: Alessandro Barbieri --- dev-R/cli/metadata.xml | 46 +++++++++++++++--------------------------- 1 file changed, 16 insertions(+), 30 deletions(-) diff --git a/dev-R/cli/metadata.xml b/dev-R/cli/metadata.xml index 8a26b07a14..3811a305ec 100644 --- a/dev-R/cli/metadata.xml +++ b/dev-R/cli/metadata.xml @@ -1,33 +1,19 @@ - + - - lssndrbarbieri@gmail.com - Alessandro Barbieri - - - A suite of tools to build attractive command line interfaces ('CLIs'), from semantic elements: headings, lists, alerts, paragraphs, etc. Supports custom themes via a 'CSS'-like language. It also contains a number of lower level 'CLI' elements: rules, boxes, trees, and 'Unicode' symbols with 'ASCII' alternatives. It integrates with the 'crayon' package to support 'ANSI' terminal colors. - - - - https://github.com/r-lib/cli/issues - - - https://cran.r-project.org/web//packages/cli/cli.pdf - - - https://cran.r-project.org/web//packages/cli/news/news.html - - - - Gábor Csárdi - - - csardi.gabor@gmail.com - - - - r-lib/cli - - + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + A suite of tools to build attractive command line interfaces ('CLIs'), from semantic elements: headings, lists, alerts, paragraphs, etc. Supports custom themes via a 'CSS'-like language. It also contains a number of lower level 'CLI' elements: rules, boxes, trees, and 'Unicode' symbols with 'ASCII' alternatives. It integrates with the 'crayon' package to support 'ANSI' terminal colors. + + https://github.com/r-lib/cli/issues + https://cran.r-project.org/web//packages/cli/cli.pdf + https://cran.r-project.org/web//packages/cli/news/news.html + + Gábor Csárdi + csardi.gabor@gmail.com + + r-lib/cli + From 1d51ddede461fe21781f3915f71d603e1b5c344f Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:15:40 +0200 Subject: [PATCH 20/48] dev-R/crayon: tidy metadata Signed-off-by: Alessandro Barbieri --- dev-R/crayon/metadata.xml | 42 ++++++++++++++------------------------- 1 file changed, 15 insertions(+), 27 deletions(-) diff --git a/dev-R/crayon/metadata.xml b/dev-R/crayon/metadata.xml index caab7c7651..0904f5e5e0 100644 --- a/dev-R/crayon/metadata.xml +++ b/dev-R/crayon/metadata.xml @@ -1,30 +1,18 @@ - + - - lssndrbarbieri@gmail.com - Alessandro Barbieri - - - Colored terminal output on terminals that support 'ANSI' color and highlight codes. It also works in 'Emacs' 'ESS'. 'ANSI' color support is automatically detected. Colors and highlighting can be combined and nested. New styles can also be created easily. This package was inspired by the 'chalk' 'JavaScript' project. - - - - https://github.com/r-lib/crayon/issues - - - https://cran.r-project.org/web//packages/crayon/crayon.pdf - - - - Gábor Csárdi - - - csardi.gabor@gmail.com - - - - r-lib/crayon - - + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + Colored terminal output on terminals that support 'ANSI' color and highlight codes. It also works in 'Emacs' 'ESS'. 'ANSI' color support is automatically detected. Colors and highlighting can be combined and nested. New styles can also be created easily. This package was inspired by the 'chalk' 'JavaScript' project. + + https://github.com/r-lib/crayon/issues + https://cran.r-project.org/web//packages/crayon/crayon.pdf + + Gábor Csárdi + csardi.gabor@gmail.com + + r-lib/crayon + From 0d83b83b5289cf33cc541c45aebcd27e43a33543 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:16:06 +0200 Subject: [PATCH 21/48] dev-R/ellipsis: tidy metadata Signed-off-by: Alessandro Barbieri --- dev-R/ellipsis/metadata.xml | 46 +++++++++++++------------------------ 1 file changed, 16 insertions(+), 30 deletions(-) diff --git a/dev-R/ellipsis/metadata.xml b/dev-R/ellipsis/metadata.xml index 2505476ccd..0cbede97fc 100644 --- a/dev-R/ellipsis/metadata.xml +++ b/dev-R/ellipsis/metadata.xml @@ -1,33 +1,19 @@ - + - - lssndrbarbieri@gmail.com - Alessandro Barbieri - - - The ellipsis is a powerful tool for extending functions. Unfortunately this power comes at a cost: misspelled arguments will be silently ignored. The ellipsis package provides a collection of functions to catch problems and alert the user. - - - - https://github.com/r-lib/ellipsis/issues - - - https://cran.r-project.org/web//packages/ellipsis/ellipsis.pdf - - - https://cran.r-project.org/web//packages/ellipsis/news/news.html - - - - Hadley Wickham - - - hadley@rstudio.com - - - - r-lib/ellipsis - - + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + The ellipsis is a powerful tool for extending functions. Unfortunately this power comes at a cost: misspelled arguments will be silently ignored. The ellipsis package provides a collection of functions to catch problems and alert the user. + + https://github.com/r-lib/ellipsis/issues + https://cran.r-project.org/web//packages/ellipsis/ellipsis.pdf + https://cran.r-project.org/web//packages/ellipsis/news/news.html + + Hadley Wickham + hadley@rstudio.com + + r-lib/ellipsis + From 3623ca5de9c9e7846550d5f7c8523561d1e394af Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:16:43 +0200 Subject: [PATCH 22/48] dev-R/dplyr: tidy metadata Signed-off-by: Alessandro Barbieri --- dev-R/dplyr/metadata.xml | 42 ++++++++++++++-------------------------- 1 file changed, 15 insertions(+), 27 deletions(-) diff --git a/dev-R/dplyr/metadata.xml b/dev-R/dplyr/metadata.xml index 8541447a67..f50e64bd95 100644 --- a/dev-R/dplyr/metadata.xml +++ b/dev-R/dplyr/metadata.xml @@ -1,30 +1,18 @@ - + - - lssndrbarbieri@gmail.com - Alessandro Barbieri - - - - 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 - - + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + 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 + From 9532d951ce6665ea0d2abea5d6bbdf9f1dd42e75 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:17:24 +0200 Subject: [PATCH 23/48] dev-R/lifecycle: tidy metadata Signed-off-by: Alessandro Barbieri --- dev-R/lifecycle/metadata.xml | 46 +++++++++++++----------------------- 1 file changed, 16 insertions(+), 30 deletions(-) diff --git a/dev-R/lifecycle/metadata.xml b/dev-R/lifecycle/metadata.xml index 617c5c710b..9dddc14133 100644 --- a/dev-R/lifecycle/metadata.xml +++ b/dev-R/lifecycle/metadata.xml @@ -1,33 +1,19 @@ - + - - lssndrbarbieri@gmail.com - Alessandro Barbieri - - - Manage the life cycle of your exported functions with shared conventions, documentation badges, and non-invasive deprecation warnings. The 'lifecycle' package defines four development stages (experimental, maturing, stable, and questioning) and three deprecation stages (soft-deprecated, deprecated, and defunct). It makes it easy to insert badges corresponding to these stages in your documentation. Usage of deprecated functions are signalled with increasing levels of non-invasive verbosity. - - - - https://github.com/r-lib/lifecycle/issues - - - https://cran.r-project.org/web//packages/lifecycle/lifecycle.pdf - - - https://cran.r-project.org/web//packages/lifecycle/news/news.html - - - - Lionel Henry - - - lionel@rstudio.com - - - - r-lib/lifecycle - - + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + Manage the life cycle of your exported functions with shared conventions, documentation badges, and non-invasive deprecation warnings. The 'lifecycle' package defines four development stages (experimental, maturing, stable, and questioning) and three deprecation stages (soft-deprecated, deprecated, and defunct). It makes it easy to insert badges corresponding to these stages in your documentation. Usage of deprecated functions are signalled with increasing levels of non-invasive verbosity. + + https://github.com/r-lib/lifecycle/issues + https://cran.r-project.org/web//packages/lifecycle/lifecycle.pdf + https://cran.r-project.org/web//packages/lifecycle/news/news.html + + Lionel Henry + lionel@rstudio.com + + r-lib/lifecycle + From 07a0810b6e6a891f5afaed7fff89de10a2eea7a1 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:18:01 +0200 Subject: [PATCH 24/48] dev-R/tidyselect: tidy metadata Signed-off-by: Alessandro Barbieri --- dev-R/tidyselect/metadata.xml | 46 ++++++++++++----------------------- 1 file changed, 16 insertions(+), 30 deletions(-) diff --git a/dev-R/tidyselect/metadata.xml b/dev-R/tidyselect/metadata.xml index 97fc114613..dbc035c790 100644 --- a/dev-R/tidyselect/metadata.xml +++ b/dev-R/tidyselect/metadata.xml @@ -1,33 +1,19 @@ - + - - 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 - - + + 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 + From de7b9a0e34814eac7daeed16b06b183a3e6c04b2 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:19:10 +0200 Subject: [PATCH 25/48] dev-R/pillar: tidy metadata Signed-off-by: Alessandro Barbieri --- dev-R/pillar/metadata.xml | 46 ++++++++++++++------------------------- 1 file changed, 16 insertions(+), 30 deletions(-) diff --git a/dev-R/pillar/metadata.xml b/dev-R/pillar/metadata.xml index 51d277fcef..0e97ae11ba 100644 --- a/dev-R/pillar/metadata.xml +++ b/dev-R/pillar/metadata.xml @@ -1,33 +1,19 @@ - + - - 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 - - + + 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 + From 732eef6cefc61bd76b5ac6665ab31cbb1906cb84 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:19:53 +0200 Subject: [PATCH 26/48] dev-R/glue: tidy metadata Signed-off-by: Alessandro Barbieri --- dev-R/glue/metadata.xml | 46 ++++++++++++++--------------------------- 1 file changed, 16 insertions(+), 30 deletions(-) diff --git a/dev-R/glue/metadata.xml b/dev-R/glue/metadata.xml index 2926723f18..0b46306f18 100644 --- a/dev-R/glue/metadata.xml +++ b/dev-R/glue/metadata.xml @@ -1,33 +1,19 @@ - + - - lssndrbarbieri@gmail.com - Alessandro Barbieri - - - An implementation of interpreted string literals, inspired by Python's Literal String Interpolation, Docstrings and Julia's Triple-Quoted String Literals - - - - https://github.com/tidyverse/glue/issues - - - https://cran.r-project.org/web//packages/glue/glue.pdf - - - https://cran.r-project.org/web//packages/glue/news/news.html - - - - Jim Hester - - - james.f.hester@gmail.com - - - - tidyverse/glue - - + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + An implementation of interpreted string literals, inspired by Python's Literal String Interpolation, Docstrings and Julia's Triple-Quoted String Literals + + https://github.com/tidyverse/glue/issues + https://cran.r-project.org/web//packages/glue/glue.pdf + https://cran.r-project.org/web//packages/glue/news/news.html + + Jim Hester + james.f.hester@gmail.com + + tidyverse/glue + From 9e12b19b28cb7e1292913daabeea3863b432a417 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:20:36 +0200 Subject: [PATCH 27/48] dev-R/utf8: tidy metadata Signed-off-by: Alessandro Barbieri --- dev-R/utf8/metadata.xml | 46 ++++++++++++++--------------------------- 1 file changed, 16 insertions(+), 30 deletions(-) diff --git a/dev-R/utf8/metadata.xml b/dev-R/utf8/metadata.xml index c77e99bc9f..b4800c6c8a 100644 --- a/dev-R/utf8/metadata.xml +++ b/dev-R/utf8/metadata.xml @@ -1,33 +1,19 @@ - + - - lssndrbarbieri@gmail.com - Alessandro Barbieri - - - Process and print 'UTF-8' encoded international text (Unicode). Input, validate, normalize, encode, format, and display. - - - - https://github.com/patperry/r-utf8/issues - - - https://cran.r-project.org/web//packages/utf8/utf8.pdf - - - https://cran.r-project.org/web//packages/utf8/NEWS - - - - Patrick O. Perry - - - patperry@gmail.com - - - - patperry/r-utf8 - - + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + Process and print 'UTF-8' encoded international text (Unicode). Input, validate, normalize, encode, format, and display. + + https://github.com/patperry/r-utf8/issues + https://cran.r-project.org/web//packages/utf8/utf8.pdf + https://cran.r-project.org/web//packages/utf8/NEWS + + Patrick O. Perry + patperry@gmail.com + + patperry/r-utf8 + From fb82e744b02eab849047e146c2d1622ccd287a80 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:21:09 +0200 Subject: [PATCH 28/48] dev-R/purrr: tidy metadata Signed-off-by: Alessandro Barbieri --- dev-R/purrr/metadata.xml | 42 ++++++++++++++-------------------------- 1 file changed, 15 insertions(+), 27 deletions(-) diff --git a/dev-R/purrr/metadata.xml b/dev-R/purrr/metadata.xml index 2e6f8ac039..22713e830e 100644 --- a/dev-R/purrr/metadata.xml +++ b/dev-R/purrr/metadata.xml @@ -1,30 +1,18 @@ - + - - lssndrbarbieri@gmail.com - Alessandro Barbieri - - - - 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 - - + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + 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 + From 2dc2a6873692b900911f6c41579601aaab8005c3 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:22:21 +0200 Subject: [PATCH 29/48] dev-R/pkgconfig: tidy metadata Signed-off-by: Alessandro Barbieri --- dev-R/pkgconfig/metadata.xml | 42 +++++++++++++----------------------- 1 file changed, 15 insertions(+), 27 deletions(-) diff --git a/dev-R/pkgconfig/metadata.xml b/dev-R/pkgconfig/metadata.xml index b4cf9ea022..fb53fae7b8 100644 --- a/dev-R/pkgconfig/metadata.xml +++ b/dev-R/pkgconfig/metadata.xml @@ -1,30 +1,18 @@ - + - - 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 - - + + 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 + From 46a5202b86f459a364607368de2fc00c2867b830 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:22:44 +0200 Subject: [PATCH 30/48] dev-R/rlang: tidy metadata Signed-off-by: Alessandro Barbieri --- dev-R/rlang/metadata.xml | 46 ++++++++++++++-------------------------- 1 file changed, 16 insertions(+), 30 deletions(-) diff --git a/dev-R/rlang/metadata.xml b/dev-R/rlang/metadata.xml index f03eca44f7..c7aea6c2fa 100644 --- a/dev-R/rlang/metadata.xml +++ b/dev-R/rlang/metadata.xml @@ -1,33 +1,19 @@ - + - - lssndrbarbieri@gmail.com - Alessandro Barbieri - - - A toolbox for working with base types, core R features like the condition system, and core 'Tidyverse' features like tidy evaluation. - - - - https://github.com/r-lib/rlang/issues - - - https://cran.r-project.org/web//packages/rlang/rlang.pdf - - - https://cran.r-project.org/web//packages/rlang/news/news.html - - - - Lionel Henry - - - lionel@rstudio.com - - - - r-lib/rlang - - + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + A toolbox for working with base types, core R features like the condition system, and core 'Tidyverse' features like tidy evaluation. + + https://github.com/r-lib/rlang/issues + https://cran.r-project.org/web//packages/rlang/rlang.pdf + https://cran.r-project.org/web//packages/rlang/news/news.html + + Lionel Henry + lionel@rstudio.com + + r-lib/rlang + From 86b9c1b0d5180edf1a24ff251a8f80a154465560 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:23:29 +0200 Subject: [PATCH 31/48] dev-R/tibble: tidy metadata Signed-off-by: Alessandro Barbieri --- dev-R/tibble/metadata.xml | 46 ++++++++++++++------------------------- 1 file changed, 16 insertions(+), 30 deletions(-) diff --git a/dev-R/tibble/metadata.xml b/dev-R/tibble/metadata.xml index 600cf62f70..35e77f9d9c 100644 --- a/dev-R/tibble/metadata.xml +++ b/dev-R/tibble/metadata.xml @@ -1,33 +1,19 @@ - + - - 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 - - + + 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 + From 1b86dccbe332af6b2e877976a73bd9c5eeb5104e Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:24:28 +0200 Subject: [PATCH 32/48] dev-R/vctrs: tidy metadata Signed-off-by: Alessandro Barbieri --- dev-R/vctrs/metadata.xml | 46 ++++++++++++++-------------------------- 1 file changed, 16 insertions(+), 30 deletions(-) diff --git a/dev-R/vctrs/metadata.xml b/dev-R/vctrs/metadata.xml index eaeb354abe..229f926b22 100644 --- a/dev-R/vctrs/metadata.xml +++ b/dev-R/vctrs/metadata.xml @@ -1,33 +1,19 @@ - + - - lssndrbarbieri@gmail.com - Alessandro Barbieri - - - Defines new notions of prototype and size that are used to provide tools for consistent and well-founded type-coercion and size-recycling, and are in turn connected to ideas of type- and size-stability useful for analysing function interfaces. - - - - https://github.com/r-lib/vctrs/issues - - - https://cran.r-project.org/web//packages/vctrs/vctrs.pdf - - - https://cran.r-project.org/web//packages/vctrs/news/news.html - - - - Hadley Wickham - - - hadley@rstudio.com - - - - r-lib/vctrs - - + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + Defines new notions of prototype and size that are used to provide tools for consistent and well-founded type-coercion and size-recycling, and are in turn connected to ideas of type- and size-stability useful for analysing function interfaces. + + https://github.com/r-lib/vctrs/issues + https://cran.r-project.org/web//packages/vctrs/vctrs.pdf + https://cran.r-project.org/web//packages/vctrs/news/news.html + + Hadley Wickham + hadley@rstudio.com + + r-lib/vctrs + From 8402038e74974e30da60458e4dd180097b04e55f Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Mon, 3 May 2021 19:24:54 +0200 Subject: [PATCH 33/48] dev-R/generics: tidy metadata Signed-off-by: Alessandro Barbieri --- dev-R/generics/metadata.xml | 46 +++++++++++++------------------------ 1 file changed, 16 insertions(+), 30 deletions(-) diff --git a/dev-R/generics/metadata.xml b/dev-R/generics/metadata.xml index a9e04ab610..33516733cb 100644 --- a/dev-R/generics/metadata.xml +++ b/dev-R/generics/metadata.xml @@ -1,33 +1,19 @@ - + - - lssndrbarbieri@gmail.com - Alessandro Barbieri - - - In order to reduce potential package dependencies and conflicts, generics provides a number of commonly used S3 generics. - - - - https://github.com/r-lib/generics/issues - - - https://cran.r-project.org/web/packages/generics/generics.pdf - - - https://cran.r-project.org/web/packages/generics/news/news.html - - - - Hadley Wickham - - - hadley@rstudio.com - - - - r-lib/generics - - + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + In order to reduce potential package dependencies and conflicts, generics provides a number of commonly used S3 generics. + + https://github.com/r-lib/generics/issues + https://cran.r-project.org/web/packages/generics/generics.pdf + https://cran.r-project.org/web/packages/generics/news/news.html + + Hadley Wickham + hadley@rstudio.com + + r-lib/generics + From bad11b43aacaf36c55b07221d00d25f72a05256c Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Tue, 4 May 2021 01:55:42 +0200 Subject: [PATCH 34/48] dev-R/tidyselect: add 1.1.1 Signed-off-by: Alessandro Barbieri --- dev-R/tidyselect/Manifest | 1 + dev-R/tidyselect/metadata.xml | 1 + dev-R/tidyselect/tidyselect-1.1.1.ebuild | 26 ++++++++++++++++++++++++ 3 files changed, 28 insertions(+) create mode 100644 dev-R/tidyselect/tidyselect-1.1.1.ebuild diff --git a/dev-R/tidyselect/Manifest b/dev-R/tidyselect/Manifest index b0b9a6b529..3db226ced9 100644 --- a/dev-R/tidyselect/Manifest +++ b/dev-R/tidyselect/Manifest @@ -1,2 +1,3 @@ DIST tidyselect_1.0.0.tar.gz 151161 BLAKE2B 8ce7203ae34fcc71905f785038469f8659ade390c858a039e036f5905e8f32c6b3b8165869be7573b46917293acb0f2a3aa800d78283165955cf8d27bec0eed1 SHA512 53775f43d896f271c9d988e84ca4a744dfb591d1ac42e811cffd1691a4a85000481102b61636831650bcddb9a07d7202341cb367cf587c3291e255ecf6ad64ff DIST tidyselect_1.1.0.tar.gz 90842 BLAKE2B 459409194e73797f69bbcc43658ccf5ebf519fabfecfb732efaa896684c179e49473c1719e80b04547149eb818fb620c71e8a7bb7f62906cf6404bb5efef903c SHA512 827bd7f3d3dd4a1397323bec2fa26b871afb9cbf082a9281c01d4f06f6020afc46ca0bc4968b7dd5d82033c8c53fc43866b1bc31b6084fd6715d0eab093480e8 +DIST tidyselect_1.1.1.tar.gz 92088 BLAKE2B 8c0156b16afe73aa1413bcbd4ae4c947d923e8af138bebab47938d17c286b7e33af76f723336db06ccf5fb0810a47a730b1d14125dad537a024e77e78596475c SHA512 24ffe050938eb79c4ad4fa92d9f29a33b8f21d52b250702212d0c291e95bfddf877c29e7b2ac3d69a9ac3681c2b222358a2f284f4632c6a97a3b2bfec3b7c6a7 diff --git a/dev-R/tidyselect/metadata.xml b/dev-R/tidyselect/metadata.xml index dbc035c790..898c2c1ff6 100644 --- a/dev-R/tidyselect/metadata.xml +++ b/dev-R/tidyselect/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri diff --git a/dev-R/tidyselect/tidyselect-1.1.1.ebuild b/dev-R/tidyselect/tidyselect-1.1.1.ebuild new file mode 100644 index 0000000000..4a1635d4e3 --- /dev/null +++ b/dev-R/tidyselect/tidyselect-1.1.1.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="mirror://cran/src/contrib/${PN}_${PV}.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.6 + >=dev-R/vctrs-0.3.0 +" +RDEPEND="${DEPEND-}" From 0ac45a58b5ed34ed0e274d4667589259f857f873 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Tue, 4 May 2021 01:58:17 +0200 Subject: [PATCH 35/48] dev-R/vctrs: add 0.3.8 Signed-off-by: Alessandro Barbieri --- dev-R/vctrs/Manifest | 1 + dev-R/vctrs/metadata.xml | 1 + dev-R/vctrs/vctrs-0.3.8.ebuild | 24 ++++++++++++++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 dev-R/vctrs/vctrs-0.3.8.ebuild diff --git a/dev-R/vctrs/Manifest b/dev-R/vctrs/Manifest index eea23a3c35..5025b25739 100644 --- a/dev-R/vctrs/Manifest +++ b/dev-R/vctrs/Manifest @@ -1 +1,2 @@ DIST vctrs_0.3.7.tar.gz 782590 BLAKE2B fa7b4a1b2b1f9518750575ad506c990a989811a123af44fc0451f71f25bd92adabdb6ca433c3e070ab906b385964a79b74e11cdd0f3988229ef5e45bbec7ad81 SHA512 6474585edab12d58ca9abe612e71148d9d6d3f7f32250645e0ffc463fc3a9007ccbfe8c7b7a6a752dab7f382490a15889cbe0e433e2a4d51ec659c54b37681f7 +DIST vctrs_0.3.8.tar.gz 782608 BLAKE2B 7b8ee4ae7d8255394d0e79dc7aa5c9c5782dfd47f3390dd6c346081546e8cc2fe8d6fc455c7902c0c8d2b498105088c1967919120d82d2c0da8c9f93b9c3146f SHA512 f5162fa4641779fc7cd0f77efb1d83efc01af0ba13d910337531980e2fa93abe6ce03f23a9a51db4f506faf716cc3fac820b91abac3e3282bc9cb73038fc5787 diff --git a/dev-R/vctrs/metadata.xml b/dev-R/vctrs/metadata.xml index 229f926b22..88bc66bdb6 100644 --- a/dev-R/vctrs/metadata.xml +++ b/dev-R/vctrs/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri diff --git a/dev-R/vctrs/vctrs-0.3.8.ebuild b/dev-R/vctrs/vctrs-0.3.8.ebuild new file mode 100644 index 0000000000..ea1063ec94 --- /dev/null +++ b/dev-R/vctrs/vctrs-0.3.8.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit R-packages-guru + +DESCRIPTION='Vector Helpers' +HOMEPAGE=" + https://github.com/r-lib/vctrs + https://cran.r-project.org/package=vctrs +" +SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz" +LICENSE='GPL-3' + +IUSE="${IUSE-}" +KEYWORDS="~amd64" +DEPEND=" + >=dev-lang/R-3.3 + >=dev-R/ellipsis-0.2.0 + dev-R/glue + >=dev-R/rlang-0.4.10 +" +RDEPEND="${DEPEND-}" From b033f8f04c554ac2e1952801169f08201f64b4f1 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Tue, 4 May 2021 02:00:42 +0200 Subject: [PATCH 36/48] dev-R/tibble: add 3.1.1 Signed-off-by: Alessandro Barbieri --- dev-R/tibble/Manifest | 1 + dev-R/tibble/metadata.xml | 2 +- dev-R/tibble/tibble-3.1.1.ebuild | 29 +++++++++++++++++++++++++++++ 3 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 dev-R/tibble/tibble-3.1.1.ebuild diff --git a/dev-R/tibble/Manifest b/dev-R/tibble/Manifest index 9088497023..dfafe0bcd2 100644 --- a/dev-R/tibble/Manifest +++ b/dev-R/tibble/Manifest @@ -1,2 +1,3 @@ DIST tibble_3.0.1.tar.gz 399191 BLAKE2B c1d1c0f79f46cf0e44939bc3a81ed45a18ce60083bd7459864bada8485b24c82edbb0d5c804cded19b37366600b0d440695b4c0561245e504a8c1f5b52ed78c4 SHA512 ad97383dd6468730c37a059881a27114fbdd10431be1354fc3899863d043e58303b123c95c6f5a729c353d9f3445ce317d6742696bd1fb940095034ea6b89037 DIST tibble_3.1.0.tar.gz 686464 BLAKE2B 64aff86b65ad92a168fe1aade9c94c86d2a120bc9fb71d6c820748f00cbc917043dcbe28344a1a78f98ea681661c8d6d1f43889c65e13d50c1ad87975d6b6a2d SHA512 13c695f671e958569fd3fe452e898c7ffe461a15235c06a549e65e393c5c205a6bfe948219f0b4c3e5d33db7f59d4da65bb09b44fa377f00d285d4bb10d83c38 +DIST tibble_3.1.1.tar.gz 686855 BLAKE2B a5aba307844c7f228e6fe74a2a978934fc39abb274d2dcba17a988d88f085dda40f546da657c537a4e15d85e8010b06deb965d99067252ab519e748a7b441b19 SHA512 4ac7dbaffbec467bbea5ac0e6e5814140180e0011fea5151f5ec29401e951e775bb8637897dc500e5133e1cfcb455560bf72dc16471ba6d6cd03d67eae7f95a7 diff --git a/dev-R/tibble/metadata.xml b/dev-R/tibble/metadata.xml index 35e77f9d9c..bf9b8d3a3c 100644 --- a/dev-R/tibble/metadata.xml +++ b/dev-R/tibble/metadata.xml @@ -11,7 +11,7 @@ https://cran.r-project.org/web//packages/tibble/tibble.pdf https://cran.r-project.org/web//packages/tibble/news/news.html - Kirill Müller + Kirill Müller krlmlr+r@mailbox.org tidyverse/tibble diff --git a/dev-R/tibble/tibble-3.1.1.ebuild b/dev-R/tibble/tibble-3.1.1.ebuild new file mode 100644 index 0000000000..1c7d1d0e7d --- /dev/null +++ b/dev-R/tibble/tibble-3.1.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 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="mirror://cran/src/contrib/${PN}_${PV}.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/ellipsis-0.2.0 + >=dev-R/fansi-0.4.0 + >=dev-R/lifecycle-0.2.0 + dev-R/magrittr + >=dev-R/pillar-1.6.0 + dev-R/pkgconfig + >=dev-R/rlang-0.4.3 + >=dev-R/vctrs-0.3.2 +" +RDEPEND="${DEPEND-}" From 6b11ba6d631a0c8563e6823ae26885eb611f0a40 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Tue, 4 May 2021 02:03:11 +0200 Subject: [PATCH 37/48] dev-R/pillar: add 1.6.0 Signed-off-by: Alessandro Barbieri --- dev-R/pillar/Manifest | 1 + dev-R/pillar/metadata.xml | 3 ++- dev-R/pillar/pillar-1.6.0.ebuild | 27 +++++++++++++++++++++++++++ 3 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 dev-R/pillar/pillar-1.6.0.ebuild diff --git a/dev-R/pillar/Manifest b/dev-R/pillar/Manifest index b67424fbda..889387d2b6 100644 --- a/dev-R/pillar/Manifest +++ b/dev-R/pillar/Manifest @@ -1,2 +1,3 @@ DIST pillar_1.4.4.tar.gz 231021 BLAKE2B 21a5597f70f093ff50fe21f79e2903ee16efc724cdb2b99396d29e1857c8cf7c8700c5d3f440db95f692691b0df0e82ef3419d17777146c76dbd0c1418d9780d SHA512 e1b325908b6d79bbc5e944b4117a46016be88bc5a71ce8e5494a3a46a85039d6d216b1699014dcafbe2d4f3365130a65d0ef481f66b2e6ee9df49c1e8801aad4 DIST pillar_1.5.1.tar.gz 1069450 BLAKE2B 31ef4984521be38e97912a3808341b3f03c4750aa974bfa680d43b969104dea1f818b76e5fb0e410e9da04deeee3553ace2cd40d3d8d964e390674ab4c923626 SHA512 a7dbcfa659506a10b03859d48ee3cabe1fea1874c82d0cecdf246f4a1de5aa4d24949ea5998d52fa172f296870960f572000c3f9784d1a073622f6f5d497befe +DIST pillar_1.6.0.tar.gz 1100197 BLAKE2B dd835ed62e4ae4e5406d0474a3f92d34a46fefe009b40e05c787c33ec23a9a51679a57840ffe46086fe68b0eaafb21d5b6fef82098defcbcd0e886699f82f0f3 SHA512 5258235a3a7233794f498c8bc44484b844e530a0976b2754466b2caf296df9724d5ae149ea54910efa8ecda97a1cc8978dc91663ade14dd16d9844506b4cf066 diff --git a/dev-R/pillar/metadata.xml b/dev-R/pillar/metadata.xml index 0e97ae11ba..70f5ff7657 100644 --- a/dev-R/pillar/metadata.xml +++ b/dev-R/pillar/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri @@ -11,7 +12,7 @@ https://cran.r-project.org/web//packages/pillar/pillar.pdf https://cran.r-project.org/web//packages/pillar/news/news.html - Kirill Müller + Kirill Müller krlmlr+r@mailbox.org r-lib/pillar diff --git a/dev-R/pillar/pillar-1.6.0.ebuild b/dev-R/pillar/pillar-1.6.0.ebuild new file mode 100644 index 0000000000..d58b252ec0 --- /dev/null +++ b/dev-R/pillar/pillar-1.6.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2021 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="mirror://cran/src/contrib/${PN}_${PV}.tar.gz" +LICENSE='GPL-3' +KEYWORDS="~amd64" +IUSE="${IUSE-}" +DEPEND=" + dev-R/cli + >=dev-R/crayon-1.3.4 + dev-R/ellipsis + dev-R/fansi + dev-R/lifecycle + >=dev-R/rlang-0.3.0 + >=dev-R/utf8-1.1.0 + >=dev-R/vctrs-0.2.0 +" +RDEPEND="${DEPEND-}" From 31787a9b111fa137d18d746b379e70e91a8b1c84 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Tue, 4 May 2021 02:05:30 +0200 Subject: [PATCH 38/48] dev-R/ellipsis: add 0.3.2 Signed-off-by: Alessandro Barbieri --- dev-R/ellipsis/Manifest | 1 + dev-R/ellipsis/ellipsis-0.3.2.ebuild | 22 ++++++++++++++++++++++ dev-R/ellipsis/metadata.xml | 1 + 3 files changed, 24 insertions(+) create mode 100644 dev-R/ellipsis/ellipsis-0.3.2.ebuild diff --git a/dev-R/ellipsis/Manifest b/dev-R/ellipsis/Manifest index 1392c6315b..5b7d106f28 100644 --- a/dev-R/ellipsis/Manifest +++ b/dev-R/ellipsis/Manifest @@ -1,2 +1,3 @@ DIST ellipsis_0.3.0.tar.gz 7371 BLAKE2B c7fe0e88a16bbf0a80f1c859804d781d8ae411856882d8629b5dbff4fa1d3c78e81759dd474f909e6c2c91e532086b705135561ee571edf1f095ff980aaf75a3 SHA512 85c92a10635bc8b71df2f44d83a8f9b915cb1e1de7969191e1b6fce216cdbb1d29e1abf1ce11c83455e0b177c74a7271d25646f53d7f4f39391e6f055958d3ea DIST ellipsis_0.3.1.tar.gz 7582 BLAKE2B aff80d5858fc6857a391e8fe8e324ab5995b366b7419d8d931d28ed6a176eb0105d8a61d368dde42a3244825eeabab8a0cbcce5c9f6ede7b0536b080300fe4a0 SHA512 a8752e3cc52e13ec9503eeb19956ab604a6d1588b892501a14493697dc829507b5cdd64a361de4469c37420c0ba85cde44ca7a24c5e016b9dfc817d5666fe328 +DIST ellipsis_0.3.2.tar.gz 8066 BLAKE2B 4dc77787aa019c720e96a6136a75b68a8ba94fd571cc2080c71188020f5c323712b23609c0cf22aba4eb2fcf75dd5d702c4c4ccfd442f15df6da8d9d7748260a SHA512 31017bd6d3dc54629d29d8743a9a582894b54bfe92362d4ed6959afd5383368aac19cd5b21a2a390b82e8130800aca035b501945527af964cce1fe8e420e5736 diff --git a/dev-R/ellipsis/ellipsis-0.3.2.ebuild b/dev-R/ellipsis/ellipsis-0.3.2.ebuild new file mode 100644 index 0000000000..48b30dbba2 --- /dev/null +++ b/dev-R/ellipsis/ellipsis-0.3.2.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='Tools for Working with ...' +HOMEPAGE=" + https://ellipsis.r-lib.org + https://github.com/r-lib/ellipsis + https://cran.r-project.org/package=ellipsis +" +SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.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/ellipsis/metadata.xml b/dev-R/ellipsis/metadata.xml index 0cbede97fc..7837b3e18e 100644 --- a/dev-R/ellipsis/metadata.xml +++ b/dev-R/ellipsis/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri From ad6b563e7a8a155882e7eec1960df24761f77b32 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Tue, 4 May 2021 02:07:26 +0200 Subject: [PATCH 39/48] dev-R/rlang: add 0.4.11 Signed-off-by: Alessandro Barbieri --- dev-R/rlang/Manifest | 1 + dev-R/rlang/metadata.xml | 1 + dev-R/rlang/rlang-0.4.11.ebuild | 19 +++++++++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 dev-R/rlang/rlang-0.4.11.ebuild diff --git a/dev-R/rlang/Manifest b/dev-R/rlang/Manifest index 40ba0057d3..ffcf1f3bfa 100644 --- a/dev-R/rlang/Manifest +++ b/dev-R/rlang/Manifest @@ -1,2 +1,3 @@ DIST rlang_0.4.10.tar.gz 915685 BLAKE2B a5738147b9977a6ae041962d3dab46a52c88d593e3a7bacce587bc48291f4084459cb1d2fde403bd476ac0476a360bf7e5886481a5be680c0e36ed1fa0b61d3f SHA512 f251217a448c484941d34edf5cb0964ab34f552c303ad3793084c03e57e4b6024c32a810644d3b2ba9d3b989b850b676ed5a89376d14507bbd2365feb4c7db2d +DIST rlang_0.4.11.tar.gz 861727 BLAKE2B ac6eea00435fb4f02a1857f2dcb46e83922bcfd7b26e4126bbc7ce7c7b7665d12d740fac5ab2d6e192b263792ec9bf9332785199c11f5e2e500827b842d20e85 SHA512 0448a104034a9f14dd735b1abfd3aa823abaad9a7ee96ca89393b15f2c54dd24f27712cb59e30393c3afeccb834471f3940259e864236212b3b4c797008d79b4 DIST rlang_0.4.6.tar.gz 835198 BLAKE2B 3b6f2ce9250a0fc390e4664606b1a8a3d9f1d3e9fbf1c3691a97183e04f6c1c7b9b97e363e3225bf294eaa25362d2fea743afff9d57b325471898ea971938f1e SHA512 d128a49a098de75d672d9f7bada3234aa2a2bdced69fd680822b9d2320431f01ec95440a3925038aabd493c83834a8d1f53b6dadac66974ad0e13d0ab3f1aec1 diff --git a/dev-R/rlang/metadata.xml b/dev-R/rlang/metadata.xml index c7aea6c2fa..203793964e 100644 --- a/dev-R/rlang/metadata.xml +++ b/dev-R/rlang/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri diff --git a/dev-R/rlang/rlang-0.4.11.ebuild b/dev-R/rlang/rlang-0.4.11.ebuild new file mode 100644 index 0000000000..98a8d11e2b --- /dev/null +++ b/dev-R/rlang/rlang-0.4.11.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit R-packages-guru + +DESCRIPTION='Functions for Base Types and Core R and Tidyverse Features' +SRC_URI="mirror://cran/src/contrib/${PN}_${PV}.tar.gz" +LICENSE='GPL-3' +HOMEPAGE=" + https://rlang.r-lib.org + https://github.com/r-lib/rlang + https://cran.r-project.org/package=rlang +" +KEYWORDS="~amd64" +IUSE="${IUSE-}" +DEPEND=">=dev-lang/R-3.3.0" +RDEPEND="${DEPEND}" From 709e2f090ebd5fec33b71b47f25805506d3bbbbe Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Tue, 4 May 2021 02:11:23 +0200 Subject: [PATCH 40/48] dev-R/*: comaintainers welcome Signed-off-by: Alessandro Barbieri --- dev-R/BH/metadata.xml | 1 + dev-R/R6/metadata.xml | 1 + dev-R/Rcpp/metadata.xml | 1 + dev-R/assertthat/metadata.xml | 1 + dev-R/cellranger/metadata.xml | 1 + dev-R/cli/metadata.xml | 3 ++- dev-R/crayon/metadata.xml | 3 ++- dev-R/digest/metadata.xml | 1 + dev-R/dplyr/metadata.xml | 1 + dev-R/fansi/metadata.xml | 1 + dev-R/generics/metadata.xml | 1 + dev-R/glue/metadata.xml | 1 + dev-R/lifecycle/metadata.xml | 1 + dev-R/magrittr/metadata.xml | 1 + dev-R/pkgconfig/metadata.xml | 3 ++- dev-R/plogr/metadata.xml | 1 + dev-R/purrr/metadata.xml | 1 + dev-R/rematch/metadata.xml | 3 ++- dev-R/utf8/metadata.xml | 1 + 19 files changed, 23 insertions(+), 4 deletions(-) diff --git a/dev-R/BH/metadata.xml b/dev-R/BH/metadata.xml index 6c0bdfd682..d2b2c8ce9f 100644 --- a/dev-R/BH/metadata.xml +++ b/dev-R/BH/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri diff --git a/dev-R/R6/metadata.xml b/dev-R/R6/metadata.xml index fa78b3949f..a0e5cf4e32 100644 --- a/dev-R/R6/metadata.xml +++ b/dev-R/R6/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri diff --git a/dev-R/Rcpp/metadata.xml b/dev-R/Rcpp/metadata.xml index 3a299b984b..f0b892de6c 100644 --- a/dev-R/Rcpp/metadata.xml +++ b/dev-R/Rcpp/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri diff --git a/dev-R/assertthat/metadata.xml b/dev-R/assertthat/metadata.xml index 17213dd27d..0b80472c5a 100644 --- a/dev-R/assertthat/metadata.xml +++ b/dev-R/assertthat/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri diff --git a/dev-R/cellranger/metadata.xml b/dev-R/cellranger/metadata.xml index 90212defb6..499a7581b2 100644 --- a/dev-R/cellranger/metadata.xml +++ b/dev-R/cellranger/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri diff --git a/dev-R/cli/metadata.xml b/dev-R/cli/metadata.xml index 3811a305ec..08e0ea7e52 100644 --- a/dev-R/cli/metadata.xml +++ b/dev-R/cli/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri @@ -11,7 +12,7 @@ https://cran.r-project.org/web//packages/cli/cli.pdf https://cran.r-project.org/web//packages/cli/news/news.html - Gábor Csárdi + Gábor Csárdi csardi.gabor@gmail.com r-lib/cli diff --git a/dev-R/crayon/metadata.xml b/dev-R/crayon/metadata.xml index 0904f5e5e0..fb94f5604e 100644 --- a/dev-R/crayon/metadata.xml +++ b/dev-R/crayon/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri @@ -10,7 +11,7 @@ https://github.com/r-lib/crayon/issues https://cran.r-project.org/web//packages/crayon/crayon.pdf - Gábor Csárdi + Gábor Csárdi csardi.gabor@gmail.com r-lib/crayon diff --git a/dev-R/digest/metadata.xml b/dev-R/digest/metadata.xml index 1d6b00e751..22fdc614dd 100644 --- a/dev-R/digest/metadata.xml +++ b/dev-R/digest/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri diff --git a/dev-R/dplyr/metadata.xml b/dev-R/dplyr/metadata.xml index f50e64bd95..af60343c31 100644 --- a/dev-R/dplyr/metadata.xml +++ b/dev-R/dplyr/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri diff --git a/dev-R/fansi/metadata.xml b/dev-R/fansi/metadata.xml index 2c74ee0126..3fc5e2d016 100644 --- a/dev-R/fansi/metadata.xml +++ b/dev-R/fansi/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri diff --git a/dev-R/generics/metadata.xml b/dev-R/generics/metadata.xml index 33516733cb..722e78acb6 100644 --- a/dev-R/generics/metadata.xml +++ b/dev-R/generics/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri diff --git a/dev-R/glue/metadata.xml b/dev-R/glue/metadata.xml index 0b46306f18..737004dd3f 100644 --- a/dev-R/glue/metadata.xml +++ b/dev-R/glue/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri diff --git a/dev-R/lifecycle/metadata.xml b/dev-R/lifecycle/metadata.xml index 9dddc14133..ea308b16d0 100644 --- a/dev-R/lifecycle/metadata.xml +++ b/dev-R/lifecycle/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri diff --git a/dev-R/magrittr/metadata.xml b/dev-R/magrittr/metadata.xml index adfd45e9c9..f17558b738 100644 --- a/dev-R/magrittr/metadata.xml +++ b/dev-R/magrittr/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri diff --git a/dev-R/pkgconfig/metadata.xml b/dev-R/pkgconfig/metadata.xml index fb53fae7b8..3f285d7555 100644 --- a/dev-R/pkgconfig/metadata.xml +++ b/dev-R/pkgconfig/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri @@ -10,7 +11,7 @@ https://github.com/r-lib/pkgconfig/issues https://cran.r-project.org/web//packages/pkgconfig/pkgconfig.pdf - Gábor Csárdi + Gábor Csárdi csardi.gabor@gmail.com r-lib/pkgconfig diff --git a/dev-R/plogr/metadata.xml b/dev-R/plogr/metadata.xml index 6c0bdfd682..d2b2c8ce9f 100644 --- a/dev-R/plogr/metadata.xml +++ b/dev-R/plogr/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri diff --git a/dev-R/purrr/metadata.xml b/dev-R/purrr/metadata.xml index 22713e830e..2a8d442aee 100644 --- a/dev-R/purrr/metadata.xml +++ b/dev-R/purrr/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri diff --git a/dev-R/rematch/metadata.xml b/dev-R/rematch/metadata.xml index 469ee641fb..57643a952b 100644 --- a/dev-R/rematch/metadata.xml +++ b/dev-R/rematch/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri @@ -13,7 +14,7 @@ A small wrapper on 'regexpr' to extract the matches and captured groups from the https://cran.r-project.org/web/packages/rematch/news.html https://cran.r-project.org/web/packages/rematch/rematch.pdf - Gabor Csardi + Gábor Csárdi gcsardi@mango-solutions.com MangoTheCat/rematch diff --git a/dev-R/utf8/metadata.xml b/dev-R/utf8/metadata.xml index b4800c6c8a..6f900fd255 100644 --- a/dev-R/utf8/metadata.xml +++ b/dev-R/utf8/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri From c846a9449b6a1def86dcaaddeadf13485092e8c1 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Tue, 4 May 2021 02:16:17 +0200 Subject: [PATCH 41/48] dev-cpp/plog: comaintainers welcome Signed-off-by: Alessandro Barbieri --- dev-cpp/plog/metadata.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-cpp/plog/metadata.xml b/dev-cpp/plog/metadata.xml index 53d8eab0d2..e1a700334c 100644 --- a/dev-cpp/plog/metadata.xml +++ b/dev-cpp/plog/metadata.xml @@ -2,6 +2,7 @@ + co-maintainers welcome lssndrbarbieri@gmail.com Alessandro Barbieri From 446e89bac18f066843b2d882cd51686ab9435ffc Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Tue, 4 May 2021 04:00:51 +0200 Subject: [PATCH 42/48] games-util/hid-nintendo: remove keyword Signed-off-by: Alessandro Barbieri --- games-util/hid-nintendo/hid-nintendo-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games-util/hid-nintendo/hid-nintendo-9999.ebuild b/games-util/hid-nintendo/hid-nintendo-9999.ebuild index fd4a5b06a7..fb7f49976a 100644 --- a/games-util/hid-nintendo/hid-nintendo-9999.ebuild +++ b/games-util/hid-nintendo/hid-nintendo-9999.ebuild @@ -11,7 +11,7 @@ EGIT_REPO_URI="https://github.com/nicman23/dkms-hid-nintendo" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="" MODULE_NAMES="${PN}(kernel/drivers/hid:${S}/src)" BUILD_TARGETS="-C /usr/src/linux M=${S}/src" From f03df5262366783471ce96aa8c7f24435f2481c3 Mon Sep 17 00:00:00 2001 From: Anna Vyalkova Date: Tue, 4 May 2021 12:39:57 +0500 Subject: [PATCH 43/48] dev-python/sphinx-tabs: remove unneeded dependency Signed-off-by: Anna Vyalkova --- dev-python/sphinx-tabs/sphinx-tabs-2.1.0.ebuild | 1 - 1 file changed, 1 deletion(-) diff --git a/dev-python/sphinx-tabs/sphinx-tabs-2.1.0.ebuild b/dev-python/sphinx-tabs/sphinx-tabs-2.1.0.ebuild index db7bc0f7d1..5ec8a858cc 100644 --- a/dev-python/sphinx-tabs/sphinx-tabs-2.1.0.ebuild +++ b/dev-python/sphinx-tabs/sphinx-tabs-2.1.0.ebuild @@ -23,7 +23,6 @@ BDEPEND=" >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}] test? ( dev-python/beautifulsoup:4[${PYTHON_USEDEP}] - dev-python/coverage[${PYTHON_USEDEP}] dev-python/path-py[${PYTHON_USEDEP}] dev-python/pygments[${PYTHON_USEDEP}] dev-python/pytest-regressions[${PYTHON_USEDEP}] From 863b6671ca136cea9c8a2b728ce4939b59e28106 Mon Sep 17 00:00:00 2001 From: Andrew Ammerlaan Date: Tue, 4 May 2021 10:33:22 +0200 Subject: [PATCH 44/48] media-tv/droidcam: version bump 1.7.3 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan --- media-tv/droidcam/Manifest | 2 +- .../{droidcam-1.7.2.ebuild => droidcam-1.7.3.ebuild} | 2 +- media-tv/droidcam/files/droidcam-makefile-fixes.patch | 11 ++++------- 3 files changed, 6 insertions(+), 9 deletions(-) rename media-tv/droidcam/{droidcam-1.7.2.ebuild => droidcam-1.7.3.ebuild} (97%) diff --git a/media-tv/droidcam/Manifest b/media-tv/droidcam/Manifest index cd933296e5..9d21ae1f81 100644 --- a/media-tv/droidcam/Manifest +++ b/media-tv/droidcam/Manifest @@ -1 +1 @@ -DIST droidcam-1.7.2.tar.gz 82690 BLAKE2B 3b7312f081dff747ccc9f8fab9a81bee079f697fa6bf8eb6982efa443a300751b9e8ebaa196950fc2c543e9abda3d9d7d26edc986cc916c36dcbccf9f6db0102 SHA512 0515760b3705abcb46acae5bbc05bba1d82416853c6438f776f6170e7469372d4d4236aae3500d409e572ae4e5289d3bd7416ed2729ea929e21146994c2de51c +DIST droidcam-1.7.3.tar.gz 83146 BLAKE2B b79d210a7d6a3cee7322b373cd92b2c1a326dd9887dff1df752e9818f9e7ed88dfdfd4a33a22ccb39c601df81c4e9538b1efa8029a9ad56f39d400fc50bc746b SHA512 39d6947b66f1be7896c56aa01d471cbd025deaeb2d2359f9434e5ea91e4302f4c16ee31486bb04fab1dfc7f6d8b2de3f6800ead665b7b3d366b01b25297beaba diff --git a/media-tv/droidcam/droidcam-1.7.2.ebuild b/media-tv/droidcam/droidcam-1.7.3.ebuild similarity index 97% rename from media-tv/droidcam/droidcam-1.7.2.ebuild rename to media-tv/droidcam/droidcam-1.7.3.ebuild index 69067567d1..6d94b398a4 100644 --- a/media-tv/droidcam/droidcam-1.7.2.ebuild +++ b/media-tv/droidcam/droidcam-1.7.3.ebuild @@ -134,7 +134,7 @@ pkg_postinst() { linux-mod_pkg_postinst readme.gentoo_print_elog - elog "Links to the Android/iPhone/iPad apps can be reached at" + elog "Links to the Android/iPhone/iPad apps can be found at" elog "https://www.dev47apps.com/" } diff --git a/media-tv/droidcam/files/droidcam-makefile-fixes.patch b/media-tv/droidcam/files/droidcam-makefile-fixes.patch index fb3c37b6de..c413d7edd1 100644 --- a/media-tv/droidcam/files/droidcam-makefile-fixes.patch +++ b/media-tv/droidcam/files/droidcam-makefile-fixes.patch @@ -1,8 +1,8 @@ diff --git a/Makefile b/Makefile -index 54738f5..bcb5800 100644 +index b5f696c..bcb5800 100644 --- a/Makefile +++ b/Makefile -@@ -6,25 +6,25 @@ +@@ -6,7 +6,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # Use at your own risk. See README file for more details. @@ -11,11 +11,8 @@ index 54738f5..bcb5800 100644 JPEG_INCLUDE ?= $(JPEG_DIR)/include JPEG_LIB ?= $(JPEG_DIR)/lib`getconf LONG_BIT` - CXX = g++ - CXXFLAGS = -std=c++11 -Wall -fPIC -no-pie - GTK = `pkg-config --libs --cflags gtk+-3.0` `pkg-config --libs x11` --#GTK += `pkg-config --cflags --libs appindicator3-0.1` -+GTK += `pkg-config --cflags --libs appindicator3-0.1` +@@ -16,15 +16,15 @@ GTK = `pkg-config --libs --cflags gtk+-3.0` `pkg-config --libs x11` + GTK += `pkg-config --cflags --libs appindicator3-0.1` LIBAV = `pkg-config --libs --cflags libswscale libavutil` LIBS = -lspeex -lasound -lpthread -lm -JPEG = -I$(JPEG_INCLUDE) $(JPEG_LIB)/libturbojpeg.a From fc946b8bd8a64c098eec2f468de3453912cca196 Mon Sep 17 00:00:00 2001 From: Andrew Ammerlaan Date: Tue, 4 May 2021 10:36:50 +0200 Subject: [PATCH 45/48] app-backup/timeshift: bump min vala version Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan --- app-backup/timeshift/timeshift-20.11.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-backup/timeshift/timeshift-20.11.1.ebuild b/app-backup/timeshift/timeshift-20.11.1.ebuild index b5b563c738..4e65c88935 100644 --- a/app-backup/timeshift/timeshift-20.11.1.ebuild +++ b/app-backup/timeshift/timeshift-20.11.1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -VALA_MIN_API_VERSION="0.40" +VALA_MIN_API_VERSION="0.44" inherit vala xdg DESCRIPTION="A system restore utility for Linux" From 29ca37125d7d43b62ddcf708eba4cd3a9e9f9a7f Mon Sep 17 00:00:00 2001 From: Andrew Ammerlaan Date: Tue, 4 May 2021 10:39:41 +0200 Subject: [PATCH 46/48] dev-libs/libcloudproviders: bump min vala version Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan --- dev-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild b/dev-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild index c9d4074894..3af6f641a1 100644 --- a/dev-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild +++ b/dev-libs/libcloudproviders/libcloudproviders-0.3.1.ebuild @@ -3,6 +3,7 @@ EAPI=7 +VALA_MIN_API_VERSION="0.44" VALA_USE_DEPEND="vapigen" inherit meson vala From ba612e4419f014665ffe72e195dce24734fb8360 Mon Sep 17 00:00:00 2001 From: Andrew Ammerlaan Date: Tue, 4 May 2021 10:40:26 +0200 Subject: [PATCH 47/48] games-board/openriichi: bump min vala version Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan --- games-board/openriichi/openriichi-0.2.1.1.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/games-board/openriichi/openriichi-0.2.1.1.ebuild b/games-board/openriichi/openriichi-0.2.1.1.ebuild index 30ede4b137..4e745a7057 100644 --- a/games-board/openriichi/openriichi-0.2.1.1.ebuild +++ b/games-board/openriichi/openriichi-0.2.1.1.ebuild @@ -3,6 +3,8 @@ EAPI=7 +VALA_MIN_API_VERSION="0.44" + inherit desktop meson vala xdg Engine_sha="e495846970a1b38d00c81a3f74568030f976ed31" From b884397de3b3c14432d872af056f0b85d896de91 Mon Sep 17 00:00:00 2001 From: Andrew Ammerlaan Date: Tue, 4 May 2021 10:41:07 +0200 Subject: [PATCH 48/48] games-util/gamehub: bump min vala version Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan --- games-util/gamehub/gamehub-0.16.0.1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/games-util/gamehub/gamehub-0.16.0.1.ebuild b/games-util/gamehub/gamehub-0.16.0.1.ebuild index 86a4856e28..65543a126f 100644 --- a/games-util/gamehub/gamehub-0.16.0.1.ebuild +++ b/games-util/gamehub/gamehub-0.16.0.1.ebuild @@ -1,8 +1,10 @@ -# Copyright 2020 Gentoo Authors +# Copyright 2020-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 +VALA_MIN_API_VERSION="0.44" + inherit gnome2-utils meson vala xdg DESCRIPTION="GameHub is a unified library for all your games"