Merge updates from master

This commit is contained in:
Repository mirror & CI
2022-05-02 07:32:58 +00:00
444 changed files with 8380 additions and 4025 deletions

View File

@@ -97,8 +97,8 @@ Name | Buildsystem | Category | User | RFH
[mmtracking](https://github.com/open-mmlab/mmtracking) | setuptools | science | Alessandro-Barbieri | no
[ueberzug](https://github.com/seebye/ueberzug) | setuptools | cli | N-R-K |
[greenclip](https://github.com/erebe/greenclip) | cabal | desktop | N-R-K |
[google-drive-ocamlfuse](https://github.com/astrada/google-drive-ocamlfuse) | dune | filesystem | Alessandro-Barbieri | yes
[kaitai](https://github.com/kaitai-io/kaitai_struct) | sbt | util | Alessandro-Barbieri | yes
[googlesheets4](https://cran.r-project.org/web/packages/googlesheets4/index.html) | R | R | Alessandro-Barbieri | no
[casadi](https://web.casadi.org/) | cmake swig | science | Alessandro-Barbieri | no
[ipyleaflet](https://github.com/jupyter-widgets/ipyleaflet) | setuptools yarn | jupyter | Alessandro-Barbieri | yes
[gitlab](https://gitlab.com/gitlab-org/gitlab-foss) | yarn gem | vcs | Alessandro-Barbieri | yes

View File

@@ -0,0 +1,2 @@
DIST ananicy-cpp-v1.0.0-rc6.tar.bz2 41819 BLAKE2B f2d051e12784a66a141c294dd38c84f3d7d392cad0b8e7c8e563b11990695493ceb326df30869ca3647ac19be5eeda1e360e5dd358e1ab7e6af32f58cb240fbf SHA512 8703fd4a12a7a81385f6289a3eb16f7f42f160eebfc3493b3f82eeb2b104539e1911dafcacfc772a2add71dec89bcf94e53958021868f999bdfd1bdf06edac32
DIST minq-ananicy-9180bb4511e2de5229428303df1a4954b0c516d9.tar.gz 48127 BLAKE2B f8cd256b141df6cca7feba22595afa7f2d92284a86b9fc9794630faad339828b1343dae87537fd054b33a87d59278f56178fbcb5af545e710232e8c518ac9e66 SHA512 846849c4c0466166f09cf3da4ef1e5a339680bbe5b823838b4aa7f8b5b69871498c9387aff2eb01c09991cad894d145b3ae76bce4403f55bf14c78b42a81a1a5

View File

@@ -0,0 +1,55 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
ANANICY_COMMIT="9180bb4511e2de5229428303df1a4954b0c516d9" # for rules
MYPV="${PV/_rc/-rc}"
inherit cmake
DESCRIPTION="Ananicy rewritten in C++ for much lower CPU and memory usage"
HOMEPAGE="https://gitlab.com/ananicy-cpp/ananicy-cpp"
SRC_URI="
https://gitlab.com/ananicy-cpp/ananicy-cpp/-/archive/v${MYPV}/${PN}-v${MYPV}.tar.bz2
https://github.com/kuche1/minq-ananicy/archive/${ANANICY_COMMIT}.tar.gz -> minq-ananicy-${ANANICY_COMMIT}.tar.gz
"
S="${WORKDIR}/${PN}-v${MYPV}"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE="systemd"
RDEPEND="
dev-cpp/nlohmann_json
dev-libs/libfmt
dev-libs/spdlog
systemd? ( sys-apps/systemd )
"
DEPEND="
${RDEPEND}
dev-cpp/std-format
"
PATCHES=(
"${FILESDIR}/${P}-system-std-format.patch"
"${FILESDIR}/${P}-respect-flags.patch"
)
src_configure() {
local mycmakeargs=(
-DENABLE_SYSTEMD=$(usex systemd)
-DUSE_EXTERNAL_FMTLIB=ON
-DUSE_EXTERNAL_JSON=ON
-DUSE_EXTERNAL_SPDLOG=ON
)
cmake_src_configure
}
src_install() {
cmake_src_install
doinitd "${FILESDIR}/${PN}.initd"
insinto /etc
doins -r "${WORKDIR}/minq-ananicy-${ANANICY_COMMIT}/ananicy.d"
}

View File

@@ -0,0 +1,22 @@
--- b/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -49,7 +49,7 @@
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3")
-set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} -O2")
+set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO}")
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/include/version.hpp.in ${CMAKE_CURRENT_SOURCE_DIR}/include/version.hpp)
@@ -83,10 +83,6 @@
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -flto")
endif()
-if(CXX_ACCEPTS_SANITIZE AND NOT(STATIC))
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=undefined")
-endif()
-
if(OPTIMIZE_FOR_NATIVE_MICROARCH AND CXX_ACCEPTS_MARCH_NATIVE)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native")
endif()

View File

@@ -0,0 +1,22 @@
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -193,10 +193,8 @@
# std::format
set(STL_FORMAT_USE_EXTERNAL_FMTLIB ${USE_EXTERNAL_FMTLIB} CACHE BOOL "" FORCE)
-if (NOT TARGET stl_polyfill::format)
- add_subdirectory(external/std-format)
-endif()
-target_link_libraries(ananicy-cpp PRIVATE stl_polyfill::format)
+find_package(StlPolyfillFormat REQUIRED)
+target_include_directories(ananicy-cpp PRIVATE "/usr/include/polyfills/format")
# spdlog
@@ -242,4 +240,4 @@
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/ananicy-cpp.service
DESTINATION lib/systemd/system/
COMPONENT Runtime)
-endif()
\ Manca newline alla fine del file
+endif()

View File

@@ -0,0 +1,18 @@
#!/sbin/openrc-run
pidfile="/run/ananicy-cpp.pid"
command="/usr/bin/ananicy-cpp"
command_args="start"
command_background=true
start_pre() {
/usr/sbin/sysctl -e kernel.sched_autogroup_enabled=0
}
stop_post() {
/usr/sbin/sysctl -e kernel.sched_autogroup_enabled=1
}
stop() {
start-stop-daemon --stop --pidfile "$pidfile"
}

View File

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

View File

@@ -1,8 +1,11 @@
DIST aws-vault-6.4.0.tar.gz 53341 BLAKE2B 62931d5f54e233a8d6e7b3e6bf73c68dd34d50304f78082494320d85a237bf17ddf035cf5a2de1d653ebceee5e30415f042c2ee0c59a7f10a352d2d5fcc8391b SHA512 5b0f135179e16cf09c2a91697c058fb2d6ab4446367c211e820aeb2be04652653f45b3d6f39a77718a4f6d79817da43a786c845963691a9364f70a42ee2c8f78
DIST aws-vault-6.6.0.tar.gz 55785 BLAKE2B 5e330bdb987413d7cbc41e9dfdcf891424eee17b78d586372ce9b0ab34b780cbf1c79bacdb8819a0656abe7c0e0e37eab95eb64cfbe1dd0750568023062aa730 SHA512 083431b8184b8a050b2ac68aaeddb80d6d21da0c1b4db9161f252d493bd35d56eeb4c04ec94843916da39af07863bf035ab389517d3eec2623abc3583fe02cda
DIST github.com%2F99designs%2Fgo-keychain%2F@v%2Fv0.0.0-20191008050251-8e49817e8af4.mod 40 BLAKE2B 11eb28ecb4757a1ef3320e2d1a565225fc33a0c5081367690ad382a4bf158bc285437fe4ec99aa0dacbac4d5fe14dea1b2466a4193ef17b6bcf884b9d342076b SHA512 8e27a6f89458917aa6c72e866a5a4df8d58679b14297b778ae8951d04a2a24a3b01329459a1401dd964aecfe457893876b6e93e1a2d7561859260d3e43b054c7
DIST github.com%2F99designs%2Fgo-keychain%2F@v%2Fv0.0.0-20191008050251-8e49817e8af4.zip 2384298 BLAKE2B a02ec61304cc159fad7b42a43e20278706f6a4ebb7e9609197b1b1861b1e7de216250d24565af33e6bcabc2d43c1a486341ab4dedeee2c1e02a511497829a947 SHA512 b0af29c5e74369f5e1fa16f372af2d80ef99d45f7066fde6dbcf7cd2379f110ab55c157bad7c2503a5034842c47613d01229c9200219b22781e5afab04f71e93
DIST github.com%2F99designs%2Fkeyring%2F@v%2Fv1.1.6.mod 818 BLAKE2B 12de192387c87a1a5e36841fccd95167b12efdaada3077ed35a6588898d088f4ad5214ff2e6f08bcc1ed1e5b3a36cea21d0ad12f2167eb03d055a311241d288a SHA512 0f7d745e7d387e5f0954750f58e21086e9f7c41699a4c846deb8d7d24e0b53c73fde7f5cda8834290ad02acef79b90dc17274262be5a5b85011877e65185d2c3
DIST github.com%2F99designs%2Fkeyring%2F@v%2Fv1.1.6.zip 32483 BLAKE2B f9641f0b54a03a997f3364027acfff7431e27fe3e13d1d15da10636017f700a197e02d04e8e28d1a3f8d265599034cc61fd821edd08f53b0de57d9f3d450da9d SHA512 9b5bb06c793fc41d4ad82c23ee68e627e8b019afa516a9a1bb28311ab505242ddd3153db43729149ccd9566aef8ac9118d7151293a1b8e6fef51615bd5f8f883
DIST github.com%2F99designs%2Fkeyring%2F@v%2Fv1.2.1.mod 731 BLAKE2B bd91edb91bc01b9d295dd9e25f5dba5c26ca5e13383b340dd01328bc6c68b34e8651a2c2424757d1ca8432de2aa7a29010a2d51f9027b912a5ce4a0082611274 SHA512 392fe07636399e0049635d1b5948981f9903c9307612715db1817f437f5de72a24c83dee6b2161389d4fb1f2711b1a7bfc11efa6eec2b07f481f949558f06d76
DIST github.com%2F99designs%2Fkeyring%2F@v%2Fv1.2.1.zip 39847 BLAKE2B f67bac0df0617db3918cc7180df6583c7fc6f264ef4053a1eba3feb283696333c8a14fee4f507afb7b3ecc89e3a4ddf3aa26dfd606daa3d9030f0abe3db3556f SHA512 7f790804ee39382d2695d0bfa58231471fdf123203a58e286308a03794a60bc5c45ebc6133d58f411dbc7cdb40fa771784d14227b2cce685cfe0ca3b20abb920
DIST github.com%2Falecthomas%2Fkingpin%2F@v%2Fv0.0.0-20200323085623-b6657d9477a6.mod 323 BLAKE2B 124e6f8bdbcccbe68ddb6a5da0022f1bef89604e3c65dbedc1d7aa4066fdd120e8c4629c3e5717c1cd742742999f74e88dda32018a40ba659695758cc1f8277d SHA512 2ef94f0cea7b56dc1a0facc9656b5e15dc144c5423cba6000f0100e610cb8319cbf822b1db589c4e5d3150ba961f601c0b3ada9c0c3d58bbf0af67e0137e72ae
DIST github.com%2Falecthomas%2Fkingpin%2F@v%2Fv0.0.0-20200323085623-b6657d9477a6.zip 66413 BLAKE2B bdfd12f2e75ca190fcd917e820ba36c81cd349328d86ddcfc32066cd427f56aaded4bb1be8b68ecc9d362f24f0aacec7fb2faddf3f9166f0717d55285d2a62fc SHA512 390d2aa1135d7bc2be3e349d8ed9ba697e1af4d4905abbde371381a65f741450d5577c72013203bf9ece9bbb9c20bb2441eff8e91ffd28aac018fdb1e4ddbff6
DIST github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20160405071501-a0175ee3bccc.mod 38 BLAKE2B 2e1a897393e3527f0f82e6ab9baf62558d9cf54b56ada5d79aa1b206128de30395d9082bc600c4aa2a17e81095e429cc5874de95047854531cccc9ea0b867de7 SHA512 072ca7ba3d5ca815f58848db201002cc572d95334aeacfe44cb226505ad20d82ce06eb2ee059650912ae499db6291822c583296cb65a66e54adce62d6d850929
@@ -13,22 +16,48 @@ DIST github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20211218093645-b94a6e3cc137.m
DIST github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20211218093645-b94a6e3cc137.zip 8236 BLAKE2B b6867c55595f3e9c147b319b7baf1526d39931b6c9a1037f8eedfda33e1359671dc326b87f43a4b03498154dd54640d8f4ddb6298cc5414baa3964e3b7caa77c SHA512 9bebd415c5dc6a7f0dadc541ae5752f6dd3e29cdd9da9c2d0d4252d4293ed0771f8c8b2be5626fe43b72b977c3531930f4bbc9c2093af6f18c50d73004d4d05f
DIST github.com%2Faws%2Faws-sdk-go-v2%2F@v%2Fv1.13.0.mod 165 BLAKE2B e7412299b3320fb908607953a2a4d23cdfbae1e02b396013190b272b55208020777e83621437ff1575d1fdf488838f0234c910e1ef0b52e8f88e572587fdf015 SHA512 7fb1c2f0ba5dedc2d5d6f0ea92b3171589a0a23a8728570222c1dc1b7e09eea816e0422dab8d46c749a6554bc9f86217e14002dbfe65aef79931c203aa8fcea5
DIST github.com%2Faws%2Faws-sdk-go-v2%2F@v%2Fv1.13.0.zip 8859110 BLAKE2B 79c7bd1f9f81532ed9850bae4005b3f5ec5fe143d70cb18d3c4be6def3519cd3a3bf4fdde70202fe4b1fb81e9289265396f1c31cf63d4b7da5dd8fe12a5f0052 SHA512 99d3e6d9fc5f433f82c0b34747132064b30a2f4814c792a3542cef85a645672e9a9b6489b82ecd11ab9032c447155a0c2006d9bcee1d54a7742af3493aa90867
DIST github.com%2Faws%2Faws-sdk-go-v2%2F@v%2Fv1.14.0.mod 165 BLAKE2B dce4e4c0def0b75fa7592fec95a8dff0a1fee8612a08d5b249bb2663736c40c06f1ac1c8898feef12672d2a2163e2fa303252db078893d427b0bead208b9fa49 SHA512 f5840328037f1a0ff78284ef0e7ef40bb01536005a711d30c51a88b0e0c238b293642ed13638fbb28f423b61c88f16367334280b60aee1d46bb4ab8456fc3ce7
DIST github.com%2Faws%2Faws-sdk-go-v2%2F@v%2Fv1.14.0.zip 8954805 BLAKE2B 8de7a1cf99735e72c610888701887b27f70c2fe56c5a79d8992e89b06b361c678e40403ace70744ced5e14f4082cc2b391c0250942f11e550ce35b934ba855a6 SHA512 9d684cec76a7988da16c9bf86f3900ab64651e727880d40f2282c9d089d2a9ecd9d34f245be63c6741626e388988bd3b2f7eb84b021f8eec41b25e846f1a4831
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fconfig%2F@v%2Fv1.14.0.mod 1113 BLAKE2B 832654350458865dc86cad040e7e4a1d031e201bd3a5cbb81afc7eb3ae4c717019ce5f646be63dfeed29906f0e5af6d73f91ff38a6379b6057f1ffc5f4470158 SHA512 ecc2bd7723f5ef6fccd9dfc483f2e7637cf0d60c24a3d30230e966abe891f69b4bcf3e651221749009e95a50ba132333b35cffc95952d20d3d3331ea4f4e4f80
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fconfig%2F@v%2Fv1.14.0.zip 74981 BLAKE2B 56dd568394a62fe557e33b51f65f87e99893a7079b8fa32f840fa397d4ff7f6076be862efc5503d9e6fa339325c5ebfcaa9ba7f2d4705a480aa734e1db3d9dba SHA512 0d54ab2d144425bb53ef5dec85bf2f7123db03b3f5d77c7f78cdf1840282d10ea58db44b0e1387342c28de7ff487394a5356155847bf844a0dd32ac6ff26f47d
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fcredentials%2F@v%2Fv1.9.0.mod 879 BLAKE2B fefa8fdba6f611e1a1b4b5c2c86d0b34e42a20cd01f444455c9d90b54f304678dcc85d090cd2821f68602fc4f719d25aa924b329e26becd6d4c99528a2c7cc1e SHA512 97bfd10e9633ac3bb94361242668bfd77c3736cff40488d96be57e26c67813439757e936b49c3504748f67dd0eb0f64f656234bf918ceae87b5a2e9c493ea206
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fcredentials%2F@v%2Fv1.9.0.zip 45192 BLAKE2B e892645271c810d668f43426d5ab5627c592886b13b69baeacbbb9501b9002b3236e6678243d5542bf160922872caea36d83a286bfb6f3a96168f387d8661d94 SHA512 a5f8fa31697759a854ebe0af21b18c387d33f0cea508ce278502f3159ce19b96f12663c1c16f1146638848a47fc0e4cb7cec49255b6f4b1e4292b4b2eec0b943
DIST github.com%2Faws%2Faws-sdk-go-v2%2Ffeature%2Fec2%2Fimds%2F@v%2Fv1.11.0.mod 231 BLAKE2B c60dc72cd476d64b3b4f198eade0075f50b30e6a33535f983511ca26cbd8559495e30d2d3ec1c2eaf9636c2eb223bef944525832bad8fc7c156c2f038c5f7db3 SHA512 aa0446ca941fda764f5c549e90971ed28b005bed896bd9ddc6236d4a90da93696a453cc3755e31d25c7c030cf2349b1332ba014f51461b7254cb2d74bbbbb440
DIST github.com%2Faws%2Faws-sdk-go-v2%2Ffeature%2Fec2%2Fimds%2F@v%2Fv1.11.0.zip 40927 BLAKE2B 42731df1115018c562f35d0c3f4b9f7ec53b74c4baa453b09505a05ca670bedb0647968877bf4a83db756abf0a550a1cfb16743f6fc290ace1484d6ee60aa34d SHA512 28118ad2495328a6abde0daf80725facb50ea766c10ea0d1662404716dca8c71da8861cddfa86649929169272d9635506064c959c167f8658f85b06ff4da634a
DIST github.com%2Faws%2Faws-sdk-go-v2%2Finternal%2Fconfigsources%2F@v%2Fv1.1.4.mod 162 BLAKE2B fd3c08a37a04c5432391d3311b5628b2eecc89d228421511b58213ec6afafb01a844a301fc7eb308dc5025801ea748b476e3e81c2f4492f4c29c5913ce868a07 SHA512 092fd1d36ca20f48f58832c23c418b240774363581bf2149f1dc38256ee337ae8bef4f5c2beebd528291ddfd06bee644ca6e0010681a8f22f3d510617def4b46
DIST github.com%2Faws%2Faws-sdk-go-v2%2Finternal%2Fconfigsources%2F@v%2Fv1.1.4.zip 7181 BLAKE2B d2601f47eeb3af2b6dedd1420390f069185d4533875a23a130583afa21d109728cdef59370bdbf56859bfd3b597aff2e60f3650b825b213b8d2741ddbf1bb1e6 SHA512 bcfd63934148def11afb437ae3edd5cab8f10a5c0400a50b08bdd94284194b8d5bfc72fbac37629232354111187f3bc3ea5314564820d50c0df8dc5156bf8e3d
DIST github.com%2Faws%2Faws-sdk-go-v2%2Finternal%2Fconfigsources%2F@v%2Fv1.1.5.mod 162 BLAKE2B 42d3670d0462f080a9e5913bf66984af92a361a82bc0860b202d66644bbaf766843cabbc3bb0d1f471bb1f4fc6b883254ee2f6b39aaab0bff9d83bd2ce6167ce SHA512 13d9105839d0f91af930c9cf8a8d76f0ff2ea259c8b29bbc449e901e2a16288df9364f5605ebbfbf96a3ab999f6913a1163465db537c3347e6672e2d7b625873
DIST github.com%2Faws%2Faws-sdk-go-v2%2Finternal%2Fconfigsources%2F@v%2Fv1.1.5.zip 7182 BLAKE2B 359c4166112f9ef39bd0b7cf4a162746bdeb8c0113727863bf68548a2dc9cd4112d068210350d69994856e8d9e1cfc8d9914a25376a4a18e116eb0839a6cc24e SHA512 47dfcf355ce0307c0c24c3af657df434ebf4c6e33c0ad45ed67851cfcda680f5df6fd3b6e98b3657626e0bd4124b53477b7c1028b29afaff0b747060bc7126e9
DIST github.com%2Faws%2Faws-sdk-go-v2%2Finternal%2Fendpoints%2Fv2%2F@v%2Fv2.2.0.mod 236 BLAKE2B ff7577637ace04c063cff549155318556a368eeb26a719f56f2b437d012bb4714f70ff473eee6fcb4b0c05e80b2f941440012ee42c14f072017884aa83846905 SHA512 9849016e5f868cc1900381e181452b1ae49824daecfd230fddd28977edde49c0b3f0ec255f7cac9ffde39e3efea4309bde219ae627ccc06fda8f4bb64974761d
DIST github.com%2Faws%2Faws-sdk-go-v2%2Finternal%2Fendpoints%2Fv2%2F@v%2Fv2.2.0.zip 12752 BLAKE2B 6cda296c0f684bd783453392392d3c37259d4b2d0f6c925b2f7f06dd84bb3445c95a12d21a93a9d254480501bd6c5a46edf5750097036ec09acbe8abfd97ece9 SHA512 40e055a8284fb1ae4a05921743fe8830d34e2fa50172952d75478342be38aebd140ae32bb66a603126edc0b506ef0f6de6ae76acc2aad39933aee14ac95b2f3a
DIST github.com%2Faws%2Faws-sdk-go-v2%2Finternal%2Fendpoints%2Fv2%2F@v%2Fv2.3.0.mod 236 BLAKE2B 36d205e1e850376ddb83da4b64e2fb02559b93548831c060599fbc97089ae1178c18f77cf1f3d72f4a186255ea9b2940ec5804dcfd46b23e492095dd4b31f3eb SHA512 444e7a320503433f2c1faee06b9b0e324a155b948d872f01d0a97d5338462a849ac8c73903e1ebca559d283691398c8dda29dc967f64beb344064933e7293b8e
DIST github.com%2Faws%2Faws-sdk-go-v2%2Finternal%2Fendpoints%2Fv2%2F@v%2Fv2.3.0.zip 12753 BLAKE2B 0adbca620aafecb045a0c77e9617408c2be7ab6735d20462f6ac543c21e57664b8cc6c77f218d134532bf74e505a922f0dc0ace16d82cb7171978b2eefd94e61 SHA512 2848e717c56404c2c348f4c1bd41b8bfbef22a7e7080d4a4acfd5e825014e71035c20fc12dccc6a08a635bcbce37440bd0c73ed648d64ff404513d047ead2a5e
DIST github.com%2Faws%2Faws-sdk-go-v2%2Finternal%2Fini%2F@v%2Fv1.3.6.mod 152 BLAKE2B a73c9de1343a434942ebaf62ee3668616b3108a791d729d8915452d2e35f2b873b03bd39dade3893fde346930c40817cff3b93fac12213f071e0e603cbb482e3 SHA512 7ff3e1421807bcb39a02e148fe3ff4dfaf43c3a817fb605dd02a9b165656cfc79f17f5b27262320d45e7a973b9f34f2cb802ff942e38b3840979217e4dd28f44
DIST github.com%2Faws%2Faws-sdk-go-v2%2Finternal%2Fini%2F@v%2Fv1.3.6.zip 54076 BLAKE2B 5d4371a7e3cdd092f94ccc99f632e8b425cd508c278648d43710fd59e3fcf2e85d8e19dbeff46cc30a68adc09aa0d9df48ac3398a3e7df4ba1c48d36d9b9f78b SHA512 34de57be394cd77f83850e183e0a459f3d8f36b9069cf5acc69fd679665833c0235932f3707feb1b716d0a7d6f4d1f83e1c8176e34e3c22a04753bd45543d277
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Fiam%2F@v%2Fv1.16.0.mod 495 BLAKE2B e40ce0686a7555e40947e6190e8dc0e95fad2c770e73efd0b5cf16e89464b520d5c0441ad03a756cc251a5c0ef290c42da9303df6c21e93b112a633cdc837fd6 SHA512 6ae17d1a77510ee89ff0b8f038071ff19530d5ea16e64a0e7dfc55cb6d7f6313c2ef37c7b5823e37deb1f6641c506a26b811562507eeb141cb4fb2fe1eea704a
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Fiam%2F@v%2Fv1.16.0.zip 408432 BLAKE2B 1ac6cf21f3fc3c3217f2625780ba3b1afe1a9b4db435b35dc50e6e5f2be6e80535de938b6c9fcc8e402fda5e37121c0adffa8fddb2d00fe27bcebf6927667407 SHA512 a964e48079d5de0fb7e8c4b3838d7c6849b76c740b09583481f7bc1700331b2592cd979bdaf66fdcd3168d27fb2908dcc3960cab76d6406616fa8b99343c852b
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Fiam%2F@v%2Fv1.17.0.mod 495 BLAKE2B c3e1e36bf74972444f964240e7e201da7ab68a0799886f4176dbf7e0dc094c95de6ea30979e4ab1f28b13980376c1806a6334f986dd5f92dc04a2db8fa9e43cd SHA512 6a3d2aa9eeb6b599e855c4102c2e0fa90effa6a8fcfdc9dedeca98d9797ec0a74403c0fc0f61e8f8b1a023070c51d6c77c72328420798d43665ac8b94d2bd026
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Fiam%2F@v%2Fv1.17.0.zip 410795 BLAKE2B b2557fd041d0d0cd1033ecc41713dd861a3be40e9f6ca7d10f53e29245b63353bcf07e24019507a78e0f90ba3cbeb347b9a92820731842f8f8f0c903d515b1da SHA512 b4eca277e3f3297c856381fd186ff50d50ef1888d5da6e4d2cf88e0e1d50888e66c8906882879afe13056a2793e5d7d2e20a7f17ca934b56e41cee43d1e8b579
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Finternal%2Fpresigned-url%2F@v%2Fv1.7.0.mod 245 BLAKE2B 649808c3ea0bc6fde890d36ad3c1581e102f37b63d515bf33f2ca6a1d2e8c414276cc441ffc9754d34ea08288d73be1f47f627be6cc7e2fee1dad490e38538b2 SHA512 e9b1371a86e8202a2b252ac8a55ed2cb1cec6f6a9337e48e41e738dfeb3b7393334071f021b954d62bf713e6102c69bcea0c5ef0d503b252c962c7594d9dd25f
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Finternal%2Fpresigned-url%2F@v%2Fv1.7.0.zip 10665 BLAKE2B 7529b47cff23d94208fea9824560d3745d82ba2252f0e5a22a664e0dbef577f7029fba27de40c8d99b82a82f39b20ca9aefd6f76c616abb1418cfb66294b5947 SHA512 deda53f003ad8378c1bded619750815e72fd6665a41e5b0ecf7f5f4e39ab434fc56978d754e27612a1d96a68e2ef27ea940d9ad575c9a0f5887276f9aaae4d52
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Finternal%2Fpresigned-url%2F@v%2Fv1.8.0.mod 245 BLAKE2B 8da470d1c318de7be1cc56032beb3651c8c29a2c4126dfa3366d4d6904aceab0e1f8d8d1e81952fb5e2debfcda0c775f9ab124136275f16dfef7acb5951e106d SHA512 15ae783aeafaf348915de7bbb92b2fe831845628b247b3facc94b48cf1bb85b2e2447853e4dcf26b65a5c1db9847549571340219c9d2e0ddd43806007bef6f1c
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Finternal%2Fpresigned-url%2F@v%2Fv1.8.0.zip 10666 BLAKE2B f24f4ca7f2d300e2b92a2c825f97cd2917580269816e0aa01fdbac9d681c8199b19aa1a90135157d6e0c167bb248fb3946969916a5aca6d8974ccad46b8ad913 SHA512 b20ae8132d6c6a93cee2b21ad40fdc79678a66dfb5d6fec7e5f60fa6e6acf48db02cc91059c9697d47b49419718d0cfe9fda2b298588bf9fb7cbd593cda73d05
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Fsso%2F@v%2Fv1.10.0.mod 495 BLAKE2B cdd256d56fd1bff3a835889d988ea0a6c347cf6b17108a664abaf765cbed33f23937b784e55d540768ae3139f671ef794cd2233b51cbb59d73fc7b913d9110aa SHA512 d5e62a989c8c60cb8ccf74b4ac18c0d771d32d1943d055a9697a363e7e1c98dc2ef2b354f6f4c751064c2fbc5ef9def8c67e70c1cbe3a30eb87846c1713b6cdd
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Fsso%2F@v%2Fv1.10.0.zip 31612 BLAKE2B e26ee373e8a6c8a5de3cb29cbf2da7552da1b2e268de7f930f42bd4f2075e6c77ae2d40fb212cc349ac78f56ea1547f8fba19d38bd81c7ca53c5998f155aa654 SHA512 a175ba4366672736dd3358c90505afb4bc8532096712c2699b8b7edca75ea9521cd859a3a5efca7727cc21b65050fe985effc52167ae53141dcb593cfbbf82f5
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Fsso%2F@v%2Fv1.9.0.mod 495 BLAKE2B e7becef87c5bbdde2a8f5467773d62146d03364445396929521b53937a3d1f895d1897da1f53ba8900465cd27646cadd1506c4560f3f33a49041212d044210ca SHA512 ea379318292f13bb9ecdd2e816454354a55520cdc9e9951bf99a6154ae7e7db00d267ce7d48a6e58fbe78b2152871439c8b9464ac372b6927931559548032fd0
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Fsso%2F@v%2Fv1.9.0.zip 29574 BLAKE2B 9eddeb2a0d55be6d922a6a8df880a660c2a6a785819d52c9b88f15078556aa3c46295f7a3d6df53f36169fe7d73fdc21de2e469a2b23bfc7f6205df5f8ed0f50 SHA512 c3d90b7ce227e3fc2071b9535873f894516f658bd8a57bbff299f84fd4bf7fcdee40bfddb70a21cbe0d32b8e01888ae7524100568aeb0a96cb2f762dd57a3adc
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Fssooidc%2F@v%2Fv1.10.0.mod 499 BLAKE2B cc70d83824919406e7685d87c8ccd47c3671bf94ecdbd1f0719026dee6aab548eb2b93b0c8773fd9cecfd4a590a39846dcfa2aaaab9533c614bfe42b7aa1c6e9 SHA512 7f8450d37ef9ec7e5b0098717bbc5922456f222e43a7520c5c379b836f9c63ba0573f8c192258b7d8e03af7d5dad016dcb02b2027067e8508d33ac17c7a57bbb
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Fssooidc%2F@v%2Fv1.10.0.zip 28786 BLAKE2B d1bf5d1d7adfa8a280bce5c43c76e533a52ea5e52031753be85f7372ab28e6d45331ce9a15773fe0a646df547eb9009ffed93cbc3f6eef954c41bfe1bc1a45c2 SHA512 9db810c8ec0dc29534a2211cbb674edd2336592947c7e1ebe420f6266b23ef77837ac7b58ebc29d885587a78d8bb68433113c1f2e69c5516d2d6d6d5e14f7639
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Fssooidc%2F@v%2Fv1.11.0.mod 499 BLAKE2B 3c8b464845e615b9e91b54dcafbcc26d07963f81cdeca4a710765a58b3c4332739b6f10826f5ac2f1daeb7dfebece95ffb76959c7b4c152280591291bc9f73d3 SHA512 4aa8a738b6f10008c35ff8064d359a38f62832c8a27121437935000e943fce2498eb3b4ac2c51450adb8a23b12b66a0e5f247a46e334dfdac9dc55cd5833e2c3
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Fssooidc%2F@v%2Fv1.11.0.zip 30791 BLAKE2B 141f23192fd73d77bf45db852aeb6ab2fc5a887f1347ab32bcecb486625594db77f4bf5d50dd072d00cc55286be73ddbf68c4b804b0bacb6496bb5bcd5d85f33 SHA512 bec1fe657aa759c4b5a314ed26bd842c6f96497967019c007c33564489103c76806969bebd265625656adad000fb70015a2e9f56b8d57d6ecd66fd3bf6e6c601
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Fsts%2F@v%2Fv1.14.0.mod 673 BLAKE2B 3978336dd98626fedc5d85d8003d536137f9b4e1f9e65b251e50679b0040a248373fb8829ac5f2d9cb98e4d075319a5c5864b482427d822ffc46dc1ad490feeb SHA512 687c1dad3868523d89c2bac7c32cf397ecb296e5a1b8c00805b62ffd8bce1fe708540a24206b2b467aa23115f875d4e42683d21a7f256cc9025be6d2cb50197d
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Fsts%2F@v%2Fv1.14.0.zip 59096 BLAKE2B 261a3c6e266e9b3f8aad735820f80d10a2bdb6b49ad5606679ac91bfea7da5fd78eec033b6ba58b4bd330da320b6eb7552e612f55255dc42f7167319cff071e5 SHA512 cf70458794b435d07a02a400294d58a350fc757168527a3ad2575dc88bc275e694c5dff95400ba0173b3cf67fe93ddec85c822a7adeeb887033ba1612c47a8f7
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Fsts%2F@v%2Fv1.15.0.mod 673 BLAKE2B 1570783b76b8596a29fc7e85473d34326d910b4d39ea79911c9c0779c7cf4536237f8689b08ed6622de01b9855e1f00cd1a5a06d10d6d6590194e0c6e40fb224 SHA512 49bb70e59641010f870494ee8ad27e59426587582625fbaedac751a51fd3beb3c1c60a4584be0da48140d0b4000f430f7e13479e38eedeb77612644aea8a623c
DIST github.com%2Faws%2Faws-sdk-go-v2%2Fservice%2Fsts%2F@v%2Fv1.15.0.zip 61087 BLAKE2B 2f4ea7e76494d551bf6f8b6eedad3b6747b5531320e52984f66dc459f42505f3e54f9db1ea7e2a30bbebb1c8a25544e83a9d8623b181be0bc431525318b3739c SHA512 13addd7c6e57834a021d2f60e69ec61954d3c29a6fb40aea3cece709b429f60f11b991c98b81fc37de0c97d0608c4635d36ae30c3417b099d5849ccda0bdf9ab
DIST github.com%2Faws%2Fsmithy-go%2F@v%2Fv1.10.0.mod 82 BLAKE2B 4839687a1176430d645a94ee3dd297368c7055acacf35e7fe1a5b36b724f2ccf690c8ae39dfab52313c7f14c4fa348e723ad1c455401956ec4578203f1099655 SHA512 890d3bb3a7a05fe071f9c9a510a6e03f42061e1631f3049ba51f9db8ba853035650aa350fcba44f53d5a2853a19748d895451187ff1698f3845ebb19fe9f1da2
DIST github.com%2Faws%2Fsmithy-go%2F@v%2Fv1.10.0.zip 443848 BLAKE2B 963ff1bece982b8386b62fd6db688174163a93bbb39e56a56d3ad816cbb653bddfb26c30bbc82719d3a98243af9cd961dbecadcbe1dba6e5d9a330bb457af75b SHA512 a4fad05dec9fe1ebce0c571f9223fb9dd882419cd3916372003f23ea4f5d0bf3fc74645c714942e67c83e567d452f80c0060adcaad50b9859ccbdca11455a5b8
DIST github.com%2Faws%2Fsmithy-go%2F@v%2Fv1.11.0.mod 127 BLAKE2B 7af4545c36251a85d100d5ef51d1b2febd3a6b8e188f5b8425cfe4a27c0065d0f1f4fe310dfdf70d20580da74bb7e64f2c3b0bb02e19564e52a00720073ce8ed SHA512 82eb85a80b8235451590f85d512bff65f912e98073239e28016ab5cedffa686881bc08a8fd629a2d69189480b667b98a81bbe85eaa1b284d06b8bd6cb733b5e9
DIST github.com%2Faws%2Fsmithy-go%2F@v%2Fv1.11.0.zip 445701 BLAKE2B 19f6c48c96d5ad2c349dc02b69c577315b87942f97dce04ac564244998a1d161a4d24e792c22abd3a626337f7366e139c3f3bf912ded1a8618b49211dbbb8e0c SHA512 c33353c44f96c5df06ec0dcddc98bd329b1f2206dcf50f75f25a9ed91b444469b27bff76ca6ce3486bd07de843987cdca59b64e56f41a73108ba4ce102546336
DIST github.com%2Fdanieljoos%2Fwincred%2F@v%2Fv1.0.2.mod 37 BLAKE2B 7a07932748cb16d2731e7756d7d936a233a20ab8240bb505c741b363ac227ba54795027dad746ef0675976b6babb692bbd9d6400790460a7b6541ce2cad99ec6 SHA512 b18364819781c22dce30717fa8fd8a110f48d66aad299a6bf73f247dc04e1523219edd8d47170581bfaf18a1544c16809fcf3a55f51bb377a2c0d9c358643e5b
DIST github.com%2Fdanieljoos%2Fwincred%2F@v%2Fv1.1.2.mod 148 BLAKE2B bd14dbc2b3e85d51f49bb65c0df794d19c8b2a8c398cf28c312961480801e61ddced3958ff145eda209c47bf085cf922a4ea38a7c41c539c60b36c25563b86e3 SHA512 32cc810848a1a82f0dd6fb8fe58c74a49ac9b2e07a6cfb7e848e49f26fa4f9cf00f7b8e37d5379713fe4e8aed9d008af933cf750535200fdfb5b607202ef97c7
DIST github.com%2Fdanieljoos%2Fwincred%2F@v%2Fv1.1.2.zip 15626 BLAKE2B 40b7073ecc650271f2c223eda90d4df664c632c9a5433930937821ec4527eab60d4bb16289ab118b29ced22721ff6ccc4ec212855a4c8d86937efe61dd838275 SHA512 70910bb92e1d12ea692ef257efb0fd6005c6e652cba6958c228f8fdb324d7b3d0fb0038589ac7630defbf3ff927bea249b944293eb7784bd281cfd9eb1660b12
@@ -43,6 +72,8 @@ DIST github.com%2Fgodbus%2Fdbus%2F@v%2Fv0.0.0-20190726142602-4481cbc300e2.zip 93
DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.4.mod 105 BLAKE2B ffd22df03c1b351fb766a97818d46cc6aebeef365632d5263c90cf45a4acffdf5811da10ea2cd4747bc9691f74661c0b655961a065ed15a0194eeb4d1d12ca9b SHA512 cb203760fc6ca9c9d64811cf1342752faa5a95f27934c298407dc865f9561081210dd1b82b15ee2f5337b70d4c55d102d8884b5b9a5f70d9cbf85227a32b9713
DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.6.mod 105 BLAKE2B ffd22df03c1b351fb766a97818d46cc6aebeef365632d5263c90cf45a4acffdf5811da10ea2cd4747bc9691f74661c0b655961a065ed15a0194eeb4d1d12ca9b SHA512 cb203760fc6ca9c9d64811cf1342752faa5a95f27934c298407dc865f9561081210dd1b82b15ee2f5337b70d4c55d102d8884b5b9a5f70d9cbf85227a32b9713
DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.6.zip 132988 BLAKE2B 48845d9df9bc0766f93a141ddc1989fcf850d76273824d62ee11297774703bed33b1dcbe77817b6eb417769ed11249d8089d248631a8c6669a75a6d34e048653 SHA512 22df4fc49c44a1e73eb72295195633bc04b67fda27df452893ae77932879b62b344455b880972e78022a61dafb30eba8b5b6a872f6c66e093323fd5d1c086466
DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.7.mod 106 BLAKE2B 24d2d7974198d1bb1f72d7048091d63ed28addbdc9a128b8a20e7b66f2a437f452c3d7621fcb015218932a2e10c29d0f4d3db0339e97ec2eeebcdd7a8cec7220 SHA512 731d289da30616cc638958da98fbaed6eba9cd7b325c845bafa8f8a316c5fbfdf2eada196a0e25a50512c18d2a6aaa771d63cec0d42a25e9c8a2c7bc3d3f1cb3
DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.7.zip 132348 BLAKE2B 14bcdcadac7af94432cb33dbef2b4a33d46d98d9653fd43eef36ccd73c1617fd9fca910bf2ec03bd17e27182a831c52d6a0baa0821b3be5af8499f4a2b39ea21 SHA512 60e409c8210c4accc315004a674a397c4aa1d0fa150627756047ca3e87cbed4dd78509e76a490f7cd6989760ac0ad71fe8c712dfbf9009070a110290c2cb3126
DIST github.com%2Fgsterjov%2Fgo-libsecret%2F@v%2Fv0.0.0-20161001094733-a6f4afe4910c.mod 40 BLAKE2B b03ce41ed3c255741db89a7f7dbc96a58dc860ff124a9d2b8f4d4b588623824fa06cf66abbc66b222cc6fcf590e1005c5dd4f717868790884ff301cff88cb342 SHA512 d045f2aa023858483b35f27db2993ebdd6d745671c9cffb99bcbde4f869a06e857e4205f7bc1aaa8253668389b04ebd16582e05bc98b990347a05bfda7f89190
DIST github.com%2Fgsterjov%2Fgo-libsecret%2F@v%2Fv0.0.0-20161001094733-a6f4afe4910c.zip 5616 BLAKE2B 77d34c3f28af3eea63bfbe67abb23ba33432e0ec7b0cea4c247045a87851b3428f3a9cbec3ef11f52ee80feb32a23be55874345fc828eb7104736bdb47602d6b SHA512 2c8e8696e3fb1d8085e69d6f3f92e6c365d880b969c6b0e57af5557917405815bbd32aa4c132b875325824a9df67b0e7a1df5d52bbc2205233201443ac9d6e15
DIST github.com%2Fjmespath%2Fgo-jmespath%2F@v%2Fv0.4.0.mod 113 BLAKE2B 7ea9e809aab218e2d044bdd2e5994eb3489fd36cf7709613b6cc98b4c1acd6882ecb35b27cfc214779ef3fbeefc930d5803999e12440458af7d1314ec0eb2998 SHA512 50c1339c7ab002f6ceb599f51ec49717e88cc2c5ae1193fccc9431440a531dea27d54e1d0a87b987825545d106a2bbf0dbdbcfb9883fd0e8decad70d88514d68
@@ -64,6 +95,8 @@ DIST github.com%2Fskratchdot%2Fopen-golang%2F@v%2Fv0.0.0-20200116055534-eef84239
DIST github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.1.0.mod 32 BLAKE2B d698910da1ef00a70a1673b8c74105de195020ccd95d1e70c5dd1e1615210886ff9acbc9cfd03f46e99f5223b60b04695b8d362b9e0edd4e485480f802bd229a SHA512 4e366e5a60559a8863cb2a50280deb307d8bf885ca5440cce1b49a084b4cc4583b3481240125f35f161226592a43f2c0a426152f117d79b68c92c72a93f751d5
DIST github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.2.0.mod 137 BLAKE2B 47195334e42f0997d96b50b8364764426301d31cc7fbc289b89b173b877d54cc67133b07d4a21e6ecdfa2e4404a9cff32f06b53cfa9493e075ee2ff2cc46e605 SHA512 02d0b2b1df84750ad3d15f4b86b3f7989a22007e27b28e7b3a4d34b26ec7ccbaa5d48ac0032ad692bf7db150e101cabdc050b0aa1697cfb20f922c88b9f086b8
DIST github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.2.0.zip 42547 BLAKE2B af3f81b3947f0802a6542c60db0248aebac9521d75d0d991f76b5783f4eeb42f7902250cd22da1b8fcfc2f150342ffff53260276b7a6903c092febbe66f40ace SHA512 b21cdcb8683760280e515ae487e17b65b324b51dbdb36c6380ec0b272699297d388a34b1a6aac281b1aa149d85ca81640850e1fa0d84bf63f3dc67b794baa249
DIST github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.3.0.mod 137 BLAKE2B 47195334e42f0997d96b50b8364764426301d31cc7fbc289b89b173b877d54cc67133b07d4a21e6ecdfa2e4404a9cff32f06b53cfa9493e075ee2ff2cc46e605 SHA512 02d0b2b1df84750ad3d15f4b86b3f7989a22007e27b28e7b3a4d34b26ec7ccbaa5d48ac0032ad692bf7db150e101cabdc050b0aa1697cfb20f922c88b9f086b8
DIST github.com%2Fstretchr%2Fobjx%2F@v%2Fv0.3.0.zip 43066 BLAKE2B d2c82990c20fad932753f7589d6b3fcd4c1c08dda9efd745c7feb0364f7b6b00125d8ed6548da1eff49e42632eb7e257834226c5ac0b006d05cc7f096e6ee006 SHA512 66123e03f8ce8cf22ae43a921621a8f109a33b5e34ef05fd1062c593168a5328cdd458f80a61b78cde315d3a55ee3c3283b9e2a014bc7d12d8ec9b2d4b62ec10
DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.2.2.mod 35 BLAKE2B 0357260904c9ba41892132c7e07d2add9b10ce4a09e8db4966219d1f515f917581e2afa0987094c90759634bc2aeb66e758074e023ff331a8337f5090c0102f6 SHA512 5b7ce867497852e4918b8cde5f75ecf2f24b9c95ad112478ac132322e904243f1cea3d16f5731646efb669256dbefc129ac70a499c8b1d25403a14c7e4fad10b
DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.3.0.mod 154 BLAKE2B 60cd7801e7cd33746305cd636b048b25a86270ec3b29a21c3c078c7e95b769bce7e80c2c7c5474113786bd788c7f88f3719e34f02141038e0d161b36e32f39b9 SHA512 bb808fad059f5abd0171e4bdc724411eff2c7e8d303a4ffb3608a00e21bb3cfafe9e83b4b4e9bccd42c9a4331f67ddc6043e3dd5eaa9a122c86626eed43a8383
DIST github.com%2Fstretchr%2Ftestify%2F@v%2Fv1.4.0.mod 179 BLAKE2B 3bb7cee3118f0d335ade107dfefc3a594dc3883564fe4c9e96d615e179d394a49a3d6cd6584ba9c684772bc3dc6479af6a168dd3841c03957252667384f6ba11 SHA512 243bf1f69c146252164ad72f853773dcc77f15d7c9e9b731bee26a95e7c8f4ce9ed9738db601b01edb82f4b3808873e1f153a6d4a0c97be0babbe65abc0f8d52
@@ -84,6 +117,8 @@ DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210615035016-665e8c7367d1.mod 33 BLAKE
DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20210819135213-f52c844e1c1c.mod 33 BLAKE2B b74677ab15ab6b31640d71b052db667b0fb585ed6d1044e26bc5e4cf8da90e1ede81f8876babea843dd322b8b707189138e70c24d13d931f1f6dd04978ac222c SHA512 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655
DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20220114195835-da31bd327af9.mod 33 BLAKE2B b74677ab15ab6b31640d71b052db667b0fb585ed6d1044e26bc5e4cf8da90e1ede81f8876babea843dd322b8b707189138e70c24d13d931f1f6dd04978ac222c SHA512 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655
DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20220114195835-da31bd327af9.zip 1702263 BLAKE2B 29a01d1ca503380ebac78949fcdb048c5bb483d58c3ee1cb02772619b2e6af3e616ecc804266ebe114d14caffe99b974a9b781cce24fbc0045298a8deaab77e8 SHA512 2afbc059e6d0e502ebbbb9ea8b09b650eff59f0793d6ee0723a099abbb8de50d1901c98bba503c1281c0479def247f664251269b7c0733a56a1180b497fe889d
DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20220204135822-1c1b9b1eba6a.mod 33 BLAKE2B b74677ab15ab6b31640d71b052db667b0fb585ed6d1044e26bc5e4cf8da90e1ede81f8876babea843dd322b8b707189138e70c24d13d931f1f6dd04978ac222c SHA512 85e511b1261c1935f5ee4754ad31d1d946f9e10f0af9905f44c4348d6ce5104319c03fb38517dde616698f6487b0c62788cfa96bc0ffb3b6db80accd7e552655
DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20220204135822-1c1b9b1eba6a.zip 1702823 BLAKE2B 6d38b15b82843a07f16689a413120419ad367fb914ad2bb0048bfaf1368ee67706a5948a0ce38993b51d54e88742b949dfc8d4a00b0b00ba7c7c997b47c93086 SHA512 78bb85311083f34e4700709ad6d79055bb5739a144dda9d2b58caf79390e3af58b628aa7715ad32b438b8570f4a5c7a963d043acdf2d5b1eb061b501252cbafe
DIST golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20201126162022-7de9c90e9dd1.mod 95 BLAKE2B 8385688f2081360fc2694f05d128ff0c587ef131e1b5757a942d9335870200e06545318afb1a7d1f059d060f51fe94fc16a48a1d7ec31a9a83e07b3c93f34ce3 SHA512 a3401e3d20dc1aaaebbf3c296a783668003f2182ed77ec830431f97339e07eda1859fe8c3c7fdfb0125b3ed331d23208519df520f86e20c1a05c822b3d766b08
DIST golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20210927222741-03fcf44c2211.mod 95 BLAKE2B 1d166082ebb4ba2dc69bdce6b84f285aa98967551bbfc1cbadeb2db086ef01b66455cd86b78deeec5ae998a7057c7e4f12026b2e02a9c5053093b9f644a59d1f SHA512 81f571821c669188c4482da38b6921ac4c2c1747f8a803a6846531127cfde25dd04819d971f08f601c2d2cee2e636644c1648eff55dd24d89dfb3777e90fe9a0
DIST golang.org%2Fx%2Fterm%2F@v%2Fv0.0.0-20210927222741-03fcf44c2211.zip 21653 BLAKE2B 53f26212f031a9dd420c6e87a1f3e58bd78715475f1e33b7bc2eb65b556d95c8901819ce02be5e7ce6a8842fce670167e302e3311f9c47a9f1ec79bf272c770e SHA512 2f7ff46b02b31f30a73e1d574fafce089e51df788a2b34b18d505d1c191149a70f222b462664218c5451a7beaa7efaf4178470703887f2e438a4455603f359a3
@@ -98,7 +133,11 @@ DIST gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20200902074654-038fdea0a05b.mod 25 BLAKE2
DIST gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20200902074654-038fdea0a05b.zip 41507 BLAKE2B 1717646144575b87f757c60d60954498f6bbd58d166cfbf650fd16c7a96435f9a4ca93f775c47ac54348bf7416356b5a205f4683139aa59b3093c80a5236a93b SHA512 170b91617f7c7f85f2879c22bef923f2816702fe5774592711d1de1483d5f7359456f94a5a89b9f165d2c18d7ff00ce7b8b5c6d639b8647bdd0a8fa37f9f895a
DIST gopkg.in%2Fini.v1%2F@v%2Fv1.66.2.mod 23 BLAKE2B 4e15082dd2b6e386e93baa78307538fba456343420c52605d453c6309f256e8062ea4b821d70c926096ae58a8feb33c6b796726d2dcc886c58e8293f99ac92a7 SHA512 7650ff592e6f5a0393f794fbdf17a28ad228a2d29ca79685c9ab8d9ec395554f1691b2a0d061e6248cf542f89be4d9a68884f7b24de7c8ddfef9c02cfeedda73
DIST gopkg.in%2Fini.v1%2F@v%2Fv1.66.2.zip 67100 BLAKE2B 47ebe3fbb4bb104147053565f9df7b80df0c05582d37f09d057fd434a2246d2b142fc578df21da14d4de4ac66403da7a5d25db693b160697c926c4c4b2b813cc SHA512 dac276ad1107e8bbb684164cd0f4e8ead7c577c151c2b6ec477b81a1d91777ffc1e4f7f6fdd52d910ec30ab693f831c5613373c614f8668419e917a655a50e59
DIST gopkg.in%2Fini.v1%2F@v%2Fv1.66.4.mod 23 BLAKE2B 4e15082dd2b6e386e93baa78307538fba456343420c52605d453c6309f256e8062ea4b821d70c926096ae58a8feb33c6b796726d2dcc886c58e8293f99ac92a7 SHA512 7650ff592e6f5a0393f794fbdf17a28ad228a2d29ca79685c9ab8d9ec395554f1691b2a0d061e6248cf542f89be4d9a68884f7b24de7c8ddfef9c02cfeedda73
DIST gopkg.in%2Fini.v1%2F@v%2Fv1.66.4.zip 71583 BLAKE2B 3f86181e263d5d7c421a1f51b45bb68182cd61bca0365942ddc3a42df92425bbfa0763089323c2b57cda0398c160364eba0fbe999021b9594cf630206001103b SHA512 7f6efb9fb3804a84295ca653677e9a05b89456300922e66c81d89c863c69b89f6ae1e1954120da7eee79c06cb3c2f8885644cd70c51f38a501fccacbb0a5e73d
DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.mod 95 BLAKE2B adb3684980f1d8e6c23444e91028f8db55f1bc496114eb3508dbecf9917dbc8a0a4bed7c0d761123335a75b9ffe727e180f2d6aa5f84312edb05a798185c8362 SHA512 916ff67ddb6c2ba39905db4277ce42596d9ca5a42f8aa7f47f16335e78d91a1b30419fd1b7b6967b37e248363397ec527b38d2f500b3546edda5d2bce1944379
DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.8.mod 95 BLAKE2B adb3684980f1d8e6c23444e91028f8db55f1bc496114eb3508dbecf9917dbc8a0a4bed7c0d761123335a75b9ffe727e180f2d6aa5f84312edb05a798185c8362 SHA512 916ff67ddb6c2ba39905db4277ce42596d9ca5a42f8aa7f47f16335e78d91a1b30419fd1b7b6967b37e248363397ec527b38d2f500b3546edda5d2bce1944379
DIST gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.mod 95 BLAKE2B fbb87f0644ec9da5d4386358d23cdb15b0d23e8212e712f16f338455a3a0ad19fbfd63e92c955c359237ddfa8bb76d6d08280eead24d321668431891eca1e8ab SHA512 307ca9123efc577ca04828996ee9d8edbb51794ccb4b8d9f169ba689e7276aa5f6ae106a04b22b7fab853ffacfebcbf74468b64eaefd57445864c1fbc77fad9d
DIST gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20200313102051-9f266ea9e77c.zip 101467 BLAKE2B 8bb0aec8e693a4c0da59f1931e1fdcf6f94a236faba149d5af91e87284f39c693d20be65248eecde739cb555e371804fa6c723a56c69e6d02a347ba908e968b1 SHA512 bee7757d760f5ba1b9f7523af358652a5cb65f2b0064da097f78450871b2636efcbab0298a9871bbb3ce8012bf95a155949251d4f61464dde510097b936b47a8
DIST gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20210107192922-496545a6307b.mod 95 BLAKE2B fbb87f0644ec9da5d4386358d23cdb15b0d23e8212e712f16f338455a3a0ad19fbfd63e92c955c359237ddfa8bb76d6d08280eead24d321668431891eca1e8ab SHA512 307ca9123efc577ca04828996ee9d8edbb51794ccb4b8d9f169ba689e7276aa5f6ae106a04b22b7fab853ffacfebcbf74468b64eaefd57445864c1fbc77fad9d
DIST gopkg.in%2Fyaml.v3%2F@v%2Fv3.0.0-20210107192922-496545a6307b.zip 105245 BLAKE2B f0bcfd9d097905364d9c2b032b92a8aad64b63e0942eb864759b156eb97ac58769fbc035acf4ba57bd55db1b6596499ddc6d36e6d2e5cc584c2a465256ca3a73 SHA512 f9c0400f1f5590d7185ae3fdac7adf1787a5f5198e52ebd02841b7df5113c5e34de6a66fa01b2f5735be4b21190dffb46e9d8b084ad5c00ebd99599a39ff73db

View File

@@ -0,0 +1,122 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
EGO_SUM=(
"github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4"
"github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4/go.mod"
"github.com/99designs/keyring v1.2.1"
"github.com/99designs/keyring v1.2.1/go.mod"
"github.com/alecthomas/kingpin v0.0.0-20200323085623-b6657d9477a6"
"github.com/alecthomas/kingpin v0.0.0-20200323085623-b6657d9477a6/go.mod"
"github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod"
"github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751"
"github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod"
"github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod"
"github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137"
"github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137/go.mod"
"github.com/aws/aws-sdk-go-v2 v1.14.0"
"github.com/aws/aws-sdk-go-v2 v1.14.0/go.mod"
"github.com/aws/aws-sdk-go-v2/config v1.14.0"
"github.com/aws/aws-sdk-go-v2/config v1.14.0/go.mod"
"github.com/aws/aws-sdk-go-v2/credentials v1.9.0"
"github.com/aws/aws-sdk-go-v2/credentials v1.9.0/go.mod"
"github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.11.0"
"github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.11.0/go.mod"
"github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.5"
"github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.5/go.mod"
"github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.3.0"
"github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.3.0/go.mod"
"github.com/aws/aws-sdk-go-v2/internal/ini v1.3.6"
"github.com/aws/aws-sdk-go-v2/internal/ini v1.3.6/go.mod"
"github.com/aws/aws-sdk-go-v2/service/iam v1.17.0"
"github.com/aws/aws-sdk-go-v2/service/iam v1.17.0/go.mod"
"github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.8.0"
"github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.8.0/go.mod"
"github.com/aws/aws-sdk-go-v2/service/sso v1.10.0"
"github.com/aws/aws-sdk-go-v2/service/sso v1.10.0/go.mod"
"github.com/aws/aws-sdk-go-v2/service/ssooidc v1.11.0"
"github.com/aws/aws-sdk-go-v2/service/ssooidc v1.11.0/go.mod"
"github.com/aws/aws-sdk-go-v2/service/sts v1.15.0"
"github.com/aws/aws-sdk-go-v2/service/sts v1.15.0/go.mod"
"github.com/aws/smithy-go v1.11.0"
"github.com/aws/smithy-go v1.11.0/go.mod"
"github.com/danieljoos/wincred v1.1.2"
"github.com/danieljoos/wincred v1.1.2/go.mod"
"github.com/davecgh/go-spew v1.1.0/go.mod"
"github.com/davecgh/go-spew v1.1.1"
"github.com/davecgh/go-spew v1.1.1/go.mod"
"github.com/dvsekhvalnov/jose2go v1.5.0"
"github.com/dvsekhvalnov/jose2go v1.5.0/go.mod"
"github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2"
"github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2/go.mod"
"github.com/google/go-cmp v0.5.7"
"github.com/google/go-cmp v0.5.7/go.mod"
"github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c"
"github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c/go.mod"
"github.com/jmespath/go-jmespath v0.4.0/go.mod"
"github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod"
"github.com/kr/pty v1.1.1/go.mod"
"github.com/kr/text v0.1.0"
"github.com/kr/text v0.1.0/go.mod"
"github.com/mtibben/percent v0.2.1"
"github.com/mtibben/percent v0.2.1/go.mod"
"github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e"
"github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod"
"github.com/pmezard/go-difflib v1.0.0"
"github.com/pmezard/go-difflib v1.0.0/go.mod"
"github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966"
"github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966/go.mod"
"github.com/stretchr/objx v0.1.0/go.mod"
"github.com/stretchr/objx v0.3.0"
"github.com/stretchr/objx v0.3.0/go.mod"
"github.com/stretchr/testify v1.2.2/go.mod"
"github.com/stretchr/testify v1.3.0/go.mod"
"github.com/stretchr/testify v1.4.0/go.mod"
"github.com/stretchr/testify v1.7.0"
"github.com/stretchr/testify v1.7.0/go.mod"
"golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod"
"golang.org/x/sys v0.0.0-20210819135213-f52c844e1c1c/go.mod"
"golang.org/x/sys v0.0.0-20220204135822-1c1b9b1eba6a"
"golang.org/x/sys v0.0.0-20220204135822-1c1b9b1eba6a/go.mod"
"golang.org/x/term v0.0.0-20210927222741-03fcf44c2211"
"golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod"
"golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543"
"golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod"
"gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod"
"gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b"
"gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod"
"gopkg.in/ini.v1 v1.66.4"
"gopkg.in/ini.v1 v1.66.4/go.mod"
"gopkg.in/yaml.v2 v2.2.2/go.mod"
"gopkg.in/yaml.v2 v2.2.8/go.mod"
"gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod"
"gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b"
"gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod"
)
go-module_set_globals
DESCRIPTION="Securely store and access AWS credentials in development environments"
HOMEPAGE="https://github.com/99designs/aws-vault"
SRC_URI="https://github.com/99designs/aws-vault/archive/v${PV}.tar.gz -> ${P}.tar.gz
${EGO_SUM_SRC_URI}"
LICENSE="Apache-2.0 BSD BSD-2 MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""
src_compile() {
go build -ldflags "-s -w -X \"main.Version=${PV}\"" -o "${PN}" || die "go build failed"
}
src_install() {
dobin "${PN}"
dodoc README.md USAGE.md
}

View File

@@ -1,4 +1,5 @@
DIST chamber-2.10.7.tar.gz 45895 BLAKE2B 611c3da244ffde369788c1c75405fc806afffe9b80522d8647bf281ef465a435227806baa25e43912c2b7ded7de9981547e862d4b94516663a6bd0beada168ee SHA512 2d40463991f13448bd5ce27cfaf61baeb26fb4cf8fb4ee767c29d8657c8fbe1063ac824b94a0b31c0598c70a400781570fd89d3ceb58ea5c22cebef5537669dd
DIST chamber-2.10.9.tar.gz 45921 BLAKE2B 2fa2b9c973ccc7b25848326472281b589970b4e07667328a103122db8c96991390afbb018c2b3e104b5d18f2482f5f3f30220b7b9555f7d266bb89844823c89c SHA512 cf77fa1c9795f80e3c369b4f6fd6395b73ea0fb64496fa2b729da2490dffef6c5fbd2419342b3c40cf7d6503888384b513725a5856cc08776a6385b9b7875f3f
DIST github.com%2Faws%2Faws-sdk-go%2F@v%2Fv1.38.22.mod 178 BLAKE2B 1aa7ac654a0577f654dd63b5950fe13b02c6b0cce274f43cef0c850b44e507fe37a78286cb3326a5eb1c6ce15e969381dee14ff2a474f7a183cc40e56d81efa3 SHA512 376db876c55dce630bbe0b3bc3898bbcca0169965e8d12a76a1018da34301e1654159957142b4e6f103c0d9e1713e9e158fcf598e5c87131a3904e4452f12a7b
DIST github.com%2Faws%2Faws-sdk-go%2F@v%2Fv1.38.22.zip 20516549 BLAKE2B 7ed0d49d6b00807f90d9c1c84e2cc562ca6ccba401d2a3b954ce5db7a0671ccefbe4904fa816a8bba7cd11a2fcb749a69a47eff7c9ed28762bce170b825bab73 SHA512 ef7022f803fbb1d948eff921b52f59a2e705206a56963f597ae7536461249aa6faad2258bf6248d4bfb5087b5457a4f0f4bd96b6377e59f8ebb285ed3fa11656
DIST github.com%2Fbmizerany%2Fassert%2F@v%2Fv0.0.0-20160611221934-b7ed37b82869.mod 35 BLAKE2B 253b8f5c57339e04a68fcd945f25b655ae0d9b6a265fc3e02c9ab2a5cd0e41d68f5866e80aad321eda2e3fe0ae8b311ec0c4eb922d67e0c7f425ebff5d6dba69 SHA512 c19ab1ccc5297aae6bc7e3536b97091f3f877b1b76e5d93b89842e48ae3c9d4cf49a471ecf72ce6e2da001bd51ef3eb126a83bf5a35e50acc30a43db4d37c301

View File

@@ -0,0 +1,88 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
EGO_SUM=(
"github.com/aws/aws-sdk-go v1.38.22"
"github.com/aws/aws-sdk-go v1.38.22/go.mod"
"github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869"
"github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869/go.mod"
"github.com/davecgh/go-spew v1.1.0/go.mod"
"github.com/davecgh/go-spew v1.1.1"
"github.com/davecgh/go-spew v1.1.1/go.mod"
"github.com/inconshreveable/mousetrap v1.0.0"
"github.com/inconshreveable/mousetrap v1.0.0/go.mod"
"github.com/jmespath/go-jmespath v0.4.0"
"github.com/jmespath/go-jmespath v0.4.0/go.mod"
"github.com/jmespath/go-jmespath/internal/testify v1.5.1"
"github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod"
"github.com/kr/pretty v0.1.0"
"github.com/kr/pretty v0.1.0/go.mod"
"github.com/kr/pty v1.1.1/go.mod"
"github.com/kr/text v0.1.0"
"github.com/kr/text v0.1.0/go.mod"
"github.com/magiconair/properties v1.8.0"
"github.com/magiconair/properties v1.8.0/go.mod"
"github.com/pkg/errors v0.9.1"
"github.com/pkg/errors v0.9.1/go.mod"
"github.com/pmezard/go-difflib v1.0.0"
"github.com/pmezard/go-difflib v1.0.0/go.mod"
"github.com/segmentio/backo-go v0.0.0-20160424052352-204274ad699c"
"github.com/segmentio/backo-go v0.0.0-20160424052352-204274ad699c/go.mod"
"github.com/spf13/cobra v0.0.3"
"github.com/spf13/cobra v0.0.3/go.mod"
"github.com/spf13/pflag v1.0.2"
"github.com/spf13/pflag v1.0.2/go.mod"
"github.com/stretchr/objx v0.1.0/go.mod"
"github.com/stretchr/testify v1.2.2"
"github.com/stretchr/testify v1.2.2/go.mod"
"github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c"
"github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c/go.mod"
"golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod"
"golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod"
"golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod"
"golang.org/x/net v0.0.0-20201110031124-69a78807bb2b"
"golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod"
"golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod"
"golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod"
"golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f"
"golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod"
"golang.org/x/text v0.3.0/go.mod"
"golang.org/x/text v0.3.3"
"golang.org/x/text v0.3.3/go.mod"
"golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod"
"gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405"
"gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod"
"gopkg.in/segmentio/analytics-go.v3 v3.0.1"
"gopkg.in/segmentio/analytics-go.v3 v3.0.1/go.mod"
"gopkg.in/yaml.v2 v2.2.8"
"gopkg.in/yaml.v2 v2.2.8/go.mod"
"gopkg.in/yaml.v3 v3.0.0-20200506231410-2ff61e1afc86"
"gopkg.in/yaml.v3 v3.0.0-20200506231410-2ff61e1afc86/go.mod"
)
go-module_set_globals
DESCRIPTION="Managing secrets in AWS SSM Parameter Store"
HOMEPAGE="https://github.com/segmentio/chamber"
SRC_URI="https://github.com/segmentio/chamber/archive/v${PV}.tar.gz -> ${P}.tar.gz
${EGO_SUM_SRC_URI}"
LICENSE="Apache-2.0 BSD BSD-2 MIT"
SLOT="0"
KEYWORDS="~amd64"
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""
src_compile() {
go build -ldflags "-s -w -X \"main.Version=${PV}\"" -o "${PN}" || die "go build failed"
}
src_install() {
dobin "${PN}"
dodoc README.md CHANGELOG.md
}

View File

@@ -1 +1 @@
DIST CUSTOMRESCUECD-x86_64-0.12.6.iso 1613086720 BLAKE2B 3f09ad7bae1f8847476d9b1ae58bfb3c463ff4131438bc3f0aa605146db93ebcc90b6164ef7cfc201ae8bba46ba61b6d578e55444c04c647c6d972d6dc211e85 SHA512 6cf6136070ebafdcb934949ad41294e8c6753723c6ea4be56283b5299f51ae27856a9daeff74c7a67991139e4eb9bd172b0ea9f0e4cec645e170e6a6516e2c9a
DIST CUSTOMRESCUECD-x86_64-0.12.7.iso 1656078336 BLAKE2B d3d23f3cd3beae62c5e9053533372426dcaed7b3a655fced37c21fd14127445f49679f6bc9db706d403a37b86331a78c6ccddcf55199985600f0f90b50498682 SHA512 03f397c21979e488cce4a75f33eca5acb7ae4231887744ba9c0826d8f0340b84d908a343181ca3412c74ae7750f4b510d42f5ff198d44240a8dc302e924f0a26

View File

@@ -0,0 +1,55 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_P="CUSTOMRESCUECD-x86_64"
DESCRIPTION="A system rescue cd or usbstick for desktop and server based on gentoo"
HOMEPAGE="https://sourceforge.net/projects/customrescuecd/"
SRC_URI="mirror://sourceforge/customrescuecd/"${MY_P}"-"${PV}".iso"
LICENSE="GPL-3"
SLOT="${PV}"
KEYWORDS="~amd64"
RESTRICT="bindist mirror"
S=${WORKDIR}
src_unpack() { :; }
src_install() {
insinto "/usr/share/${PN%-*}"
doins "${DISTDIR}/${MY_P}-${PV}.iso"
}
pkg_postinst() {
local f=${EROOT}/usr/share/${PN%-*}/${PN}-newest.iso
# no version newer than ours? we're the newest!
if ! has_version ">${CATEGORY}/${PF}"; then
ln -f -s -v "${MY_P}-${PV}.iso" "${f}" || die
fi
}
pkg_postrm() {
local f=${EROOT}/usr/share/${PN%-*}/${PN}-newest.iso
# if there is no version newer than ours installed
if ! has_version ">${CATEGORY}/${PF}"; then
# and we are truly and completely uninstalled...
if [[ ! ${REPLACED_BY_VERSION} ]]; then
# then find an older version to set the symlink to
local newest_version=$(best_version "<${CATEGORY}/${PF}")
if [[ ${newest_version} ]]; then
# update the symlink
ln -f -s -v "${newest_version%-r*}.iso" "${f}" || die
else
# last version removed? clean up the symlink
rm -v "${f}" || die
# and the parent directory
rmdir "${f%/*}" || die
fi
fi
fi
}

View File

@@ -1,5 +1,5 @@
#!/sbin/openrc-run
# Copyright 1999-2018 Gentoo Foundation
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
description="Starts ${SVCNAME} service for OpenStack"

View File

@@ -37,6 +37,4 @@ pkg_postinst(){
einfo "It also stores JWKs in /var/db/tang."
einfo "If you want to change this, modify /etc/init.d/tangd or"
einfo "/usr/lib/systemd/system/tangd.service directly."
systemctl daemon-reload || die
}

View File

@@ -4,7 +4,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
inherit distutils-r1 toolchain-funcs
MY_PN="FORD"
DESCRIPTION="FORD, automatic documentation generator for modern Fortran programs"
@@ -36,6 +36,11 @@ DOCS=( CHANGELOG.md README.md README.rst )
distutils_enable_tests pytest
src_prepare() {
default
sed -i -e 's/"cpp /"'"$(tc-getCPP)"' /' ford/__init__.py || die # bug: 839300
}
python_test(){
# The 'test/test_projects' tests use subprocess, i.e. require FORD to be installed.
distutils_install_for_testing

View File

@@ -4,7 +4,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
inherit distutils-r1 toolchain-funcs
MY_PN="FORD"
DESCRIPTION="FORD, automatic documentation generator for modern Fortran programs"
@@ -36,6 +36,11 @@ DOCS=( CHANGELOG.md README.md README.rst )
distutils_enable_tests pytest
src_prepare() {
default
sed -i -e 's/"cpp /"'"$(tc-getCPP)"' /' ford/__init__.py || die # bug: 839300
}
python_test(){
# The 'test/test_projects' tests use subprocess, i.e. require FORD to be installed.
distutils_install_for_testing

View File

@@ -4,7 +4,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
inherit distutils-r1 toolchain-funcs
MY_PN="FORD"
DESCRIPTION="FORD, automatic documentation generator for modern Fortran programs"
@@ -41,6 +41,11 @@ EPYTEST_IGNORE=(
test/test_projects/test_external_project.py
)
src_prepare() {
default
sed -i -e 's/"cpp /"'"$(tc-getCPP)"' /' ford/__init__.py || die # bug: 839300
}
python_test(){
# The 'test/test_projects' tests use subprocess, i.e. require FORD to be installed.
distutils_install_for_testing

View File

@@ -1,11 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<!-- maintainer-needed -->
<upstream>
<changelog>https://github.com/WerWolv/ImHex/releases</changelog>
<bugs-to>https://github.com/WerWolv/ImHex/issues</bugs-to>

View File

@@ -1,2 +1,2 @@
DIST cpufetch-1.00.tar.gz 317439 BLAKE2B 8fdf21bebfd6d2ef760cc388b6da2d5c0665964ebcad2537e06c1bede40fffb151a5e37665ab52f2ec31f48a25c3aeb895e820b03ab7ec37d50a85e1bdce3a2b SHA512 94be5c5aacf9e5cde4fd4e4b14e433db523821fc27466c599e34c062ca32145edb0c8f84168e07c8a64f591fee1f5ab704d569bb70c53b7523d52f4882b573a1
DIST cpufetch-1.01.tar.gz 2759620 BLAKE2B 4d16cc0b1be94706b3e5d9481a2846d8c90807b792212389e7159739952d8df3f3cc02f6e828e53fe17a51ecba4370a273c5152c0af237fa0cededac88c76e3f SHA512 069580b6dd548af394c28b74af72b2979be16a69879c51c42e2f26611ea8bf78412bedb6bbc6ddbfd2f98f8b26f930cc2d8afcc81e4d6494c382cfec9de771c1
DIST cpufetch-1.02.tar.gz 2767499 BLAKE2B 041ac6ac304faa6fb2cc71fb4841d8e9a263d57ae6b79e0d6cdcf5149fd6bf0e89135f9f7eeaf25681d4a4ad73861d2eb45883cee1626b0cfa1bc21957110e44 SHA512 b548af4dccd632c2899a3b0fd70e67f7abdc4bd66371927876c851168d0df47e23bd8f798d82509b83b268c50b0e9a6697a56f6fcf7772711108e2538cd1c09a

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/Dr-Noob/cpufetch"
SRC_URI="https://github.com/Dr-Noob/cpufetch/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${PV}"
LICENSE="MIT"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64"
@@ -18,7 +18,7 @@ PATCHES=( "${FILESDIR}/${P}-makefile.patch" )
src_prepare() {
default
export CC=$(tc-getCC)
tc-export CC
}
src_install() {

View File

@@ -1,14 +1,9 @@
--- a/Makefile 2021-08-23 09:31:46.000000000 +0200
+++ b/Makefile 2021-10-16 23:40:53.698941777 +0200
@@ -1,4 +1,3 @@
-CC ?= gcc
CFLAGS+=-Wall -Wextra -pedantic
SANITY_FLAGS=-Wfloat-equal -Wshadow -Wpointer-arith
@@ -16,17 +15,17 @@
SRC_DIR=src/x86/
SOURCE += $(COMMON_SRC) $(SRC_DIR)cpuid.c $(SRC_DIR)apic.c $(SRC_DIR)cpuid_asm.c $(SRC_DIR)uarch.c
HEADERS += $(COMMON_HDR) $(SRC_DIR)cpuid.h $(SRC_DIR)apic.h $(SRC_DIR)cpuid_asm.h $(SRC_DIR)uarch.h
--- a/Makefile
+++ b/Makefile
@@ -23,17 +23,17 @@
HEADERS += $(SRC_DIR)freq/freq.h
CFLAGS += -pthread
endif
- CFLAGS += -DARCH_X86 -std=c99 -fstack-protector-all
+ CFLAGS += -DARCH_X86 -std=c99
else ifeq ($(arch), $(filter $(arch), ppc64le ppc64 ppcle ppc))
@@ -26,26 +21,31 @@
os := $(shell uname -s)
ifeq ($(os), Darwin)
@@ -51,20 +50,17 @@
@@ -58,18 +58,8 @@
OUTPUT=cpufetch.exe
endif
-all: CFLAGS += -O3
-all: CFLAGS += -O2
all: $(OUTPUT)
-debug: CFLAGS += -g -O0
debug: $(OUTPUT)
-debug: $(OUTPUT)
-
-static: CFLAGS += -static -O2
-static: $(OUTPUT)
-
-strict: CFLAGS += -O2 -Werror -fsanitize=undefined -D_FORTIFY_SOURCE=2
-strict: $(OUTPUT)
-
freq_nov.o: Makefile $(SRC_DIR)freq/freq_nov.c $(SRC_DIR)freq/freq_nov.h $(SRC_DIR)freq/freq.h
$(CC) $(CFLAGS) $(SANITY_FLAGS) -c -pthread $(SRC_DIR)freq/freq_nov.c -o $@
-static: CFLAGS += -static -O3
+static: CFLAGS += -static
static: $(OUTPUT)
-strict: CFLAGS += -O3 -Werror -fsanitize=undefined -D_FORTIFY_SOURCE=2
strict: $(OUTPUT)
@@ -80,7 +70,7 @@
$(CC) $(CFLAGS) $(SANITY_FLAGS) -c -mavx512f -pthread $(SRC_DIR)freq/freq_avx512.c -o $@
$(OUTPUT): Makefile $(SOURCE) $(HEADERS)
- $(CC) $(CFLAGS) $(SANITY_FLAGS) $(SOURCE) -o $(OUTPUT)
+ $(CC) $(CFLAGS) $(LDFLAGS) $(SANITY_FLAGS) $(SOURCE) -o $(OUTPUT)
+ $(CC) $(CFLAGS) -fPIE $(LDFLAGS) $(SANITY_FLAGS) $(SOURCE) -o $(OUTPUT)
run: $(OUTPUT)
./$(OUTPUT)

View File

@@ -1 +1,2 @@
DIST fastfetch-1.3.3.tar.gz 335035 BLAKE2B 9bd477c066d80a8e625d1feb300765762ee5fc8ffe3c09399f01cc146eaf26bbb2e6694034fb156c2753e349d15b6282df481710ac20a25e5ffee6fd05c87800 SHA512 15223a69f77c0ff112e153e860db28a429516a65385602439b8a8b0aa901842e438fcd08553a68539ae45979aa4474286a5ca23134da4d0608faa7d032c3a4ed
DIST fastfetch-1.3.4.tar.gz 335903 BLAKE2B fc2f6a0160ffe71e4d0fa8f0745f19eebd7c0603b2e8c704547d45d3052d3d353982d88779cca95b9c76741bd505d24bd50af7bf38d5aea045b9ae9d215d9ba0 SHA512 b64281bcbbe02fc8f69c2c020cdf92414a67a8c88a2adceab5fc65fdbc31a9ff1d76f7d14b9c9c6d0006f7a85e941bc5e072a4ed8143f0d24dfbf7d118355789

View File

@@ -0,0 +1,62 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Like neofetch but faster"
HOMEPAGE="https://github.com/LinusDierheimer/fastfetch"
if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/LinusDierheimer/fastfetch.git"
else
SRC_URI="https://github.com/LinusDierheimer/fastfetch/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
fi
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="X gnome imagemagick pci vulkan wayland xcb xfce xrandr"
# note - qa-vdb will always report errors because fastfetch loads the libs dynamically
RDEPEND="
sys-libs/zlib
X? ( x11-libs/libX11 )
gnome? (
dev-libs/glib
gnome-base/dconf
)
imagemagick? ( media-gfx/imagemagick:= )
pci? ( sys-apps/pciutils )
vulkan? ( media-libs/vulkan-loader )
wayland? ( dev-libs/wayland )
xcb? ( x11-libs/libxcb )
xfce? ( xfce-base/xfconf )
xrandr? ( x11-libs/libXrandr )
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
REQUIRED_USE="xrandr? ( X )"
src_configure() {
local mycmakeargs=(
-DENABLE_RPM=no
-DENABLE_LIBPCI=$(usex pci)
-DENABLE_VULKAN=$(usex vulkan)
-DENABLE_WAYLAND=$(usex wayland)
-DENABLE_XCB_RANDR=$(usex xcb)
-DENABLE_XCB=$(usex xcb)
-DENABLE_XRANDR=$(usex xrandr)
-DENABLE_X11=$(usex X)
-DENABLE_GIO=$(usex gnome)
-DENABLE_DCONF=$(usex gnome)
-DENABLE_XFCONF=$(usex xfce)
-DENABLE_IMAGEMAGICK7=$(use imagemagick && has_version '>=media-gfx/imagemagick-7.0.0' && echo yes || echo no)
-DENABLE_IMAGEMAGICK6=$(use imagemagick && has_version '<media-gfx/imagemagick-7.0.0' && echo yes || echo no)
-DENABLE_ZLIB=yes
)
cmake_src_configure
}

View File

@@ -16,12 +16,13 @@ fi
LICENSE="MIT"
SLOT="0"
IUSE="X gnome imagemagick pci vulkan wayland xcb xfce xrandr"
IUSE="X chafa gnome imagemagick pci vulkan wayland xcb xfce xrandr"
# note - qa-vdb will always report errors because fastfetch loads the libs dynamically
RDEPEND="
sys-libs/zlib
X? ( x11-libs/libX11 )
chafa? ( media-gfx/chafa )
gnome? (
dev-libs/glib
gnome-base/dconf
@@ -42,6 +43,7 @@ REQUIRED_USE="xrandr? ( X )"
src_configure() {
local mycmakeargs=(
-DENABLE_RPM=no
-DENABLE_LIBPCI=$(usex pci)
-DENABLE_VULKAN=$(usex vulkan)
-DENABLE_WAYLAND=$(usex wayland)
-DENABLE_XCB_RANDR=$(usex xcb)
@@ -54,6 +56,7 @@ src_configure() {
-DENABLE_IMAGEMAGICK7=$(use imagemagick && has_version '>=media-gfx/imagemagick-7.0.0' && echo yes || echo no)
-DENABLE_IMAGEMAGICK6=$(use imagemagick && has_version '<media-gfx/imagemagick-7.0.0' && echo yes || echo no)
-DENABLE_ZLIB=yes
-DENABLE_CHAFA=$(usex chafa)
)
cmake_src_configure

View File

@@ -9,6 +9,7 @@
<remote-id type="github">LinusDierheimer/fastfetch</remote-id>
</upstream>
<use>
<flag name="chafa">Enables text/graphics renderer with <pkg>media-gfx/chafa</pkg></flag>
<flag name="pci">Enables reading GPU via <pkg>sys-apps/pciutils</pkg></flag>
<flag name="vulkan">Enables reading GPU via <pkg>media-libs/vulkan-loader</pkg></flag>
<flag name="xfce">Enables support for XFCE config</flag>

View File

@@ -0,0 +1,26 @@
diff --git a/conf/pwrstatd.conf b/conf/pwrstatd.conf-new
index 548fc5e..c260823 100644
--- a/conf/pwrstatd.conf
+++ b/conf/pwrstatd.conf
@@ -18,8 +18,8 @@ powerfail-delay = 60
powerfail-active = yes
# Assign a path of script file for event of Power Failure.
-# The default is /etc/pwrstatd-powerfail.sh
-powerfail-cmd-path = /etc/pwrstatd-powerfail.sh
+# The default is /opt/powerpanel/pwrstatd-powerfail.sh
+powerfail-cmd-path = /opt/powerpanel/pwrstatd-powerfail.sh
# How much time in seconds to take script running for event of Power Failure.
# The allowed range is 0 ~ 3600. Default is 0 sec.
@@ -50,8 +50,8 @@ runtime-threshold = 300
lowbatt-active = yes
# Assign a path of script file for event of Battery Low.
-# The default is /etc/pwrstatd-lowbatt.sh
-lowbatt-cmd-path = /etc/pwrstatd-lowbatt.sh
+# The default is /opt/powerpanel/pwrstatd-lowbatt.sh
+lowbatt-cmd-path = /opt/powerpanel/pwrstatd-lowbatt.sh
# How much time in seconds to take script running for event of Battery Low.
# The allowed range is 0 ~ 60. Default is 0 sec.

View File

@@ -3,7 +3,7 @@
# Distributed under the terms of the GNU General Public License v2
name="pwrstatd daemon"
description=""
description="Daemon for PowerPanel"
command=/usr/sbin/pwrstatd
command_args="${pwrstatd_args}"
command_background=true

View File

@@ -4,6 +4,8 @@
EAPI=8
inherit systemd
DESCRIPTION="PowerPanel software for CyberPower UPS systems"
HOMEPAGE="https://www.cyberpowersystems.com/"
SRC_URI="x86? ( https://dl4jz3rbrsfum.cloudfront.net/software/PPL_32bit_v${PV}.tar.gz -> ${P}.tar.gz )
@@ -12,7 +14,7 @@ SRC_URI="x86? ( https://dl4jz3rbrsfum.cloudfront.net/software/PPL_32bit_v${PV}.t
LICENSE="PowerPanel"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="systemd"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}
@@ -20,7 +22,10 @@ RDEPEND="${DEPEND}
dev-libs/openssl
virtual/libusb"
BDEPEND=""
QA_FLAGS_IGNORED="CFLAGS LDFLAGS"
QA_FLAGS_IGNORED="/usr/sbin/pwrstat /usr/sbin/pwrstatd /usr/lib64/libpaho-mqtt3cs.so.1"
PATCHES=(
"${FILESDIR}/${PN}-scripts.patch"
)
src_install() {
dosbin bin/pwrstat
@@ -38,7 +43,7 @@ src_install() {
insinto /etc
doins conf/pwrstatd.conf
exeinto /etc
exeinto /opt/${PN}
doexe script/pwrstatd-powerfail.sh
doexe script/pwrstatd-lowbatt.sh
doexe script/pwrstatd-email.sh
@@ -47,37 +52,27 @@ src_install() {
newlib.so lib/libpaho-mqtt3cs.so.1.3.1 libpaho-mqtt3cs.so.1
if use systemd; then
insinto /usr/lib/systemd/system/
doins script/pwrstatd.service
newinitd script/default_pwrstatd pwrstatd
else
newinitd ${FILESDIR}/pwrstatd pwrstatd
fi
newinitd ${FILESDIR}/pwrstatd pwrstatd
systemd_dounit script/pwrstatd.service
systemd_newunit script/default_pwrstatd pwrstatd
fowners root:root /usr/sbin/pwrstat
fowners root:root /usr/sbin/pwrstatd
fowners root:root /etc/pwrstatd-powerfail.sh
fowners root:root /etc/pwrstatd-lowbatt.sh
fowners root:root /etc/pwrstatd-email.sh
fowners root:root /etc/shutdown.sh
fowners root:root /etc/hibernate.sh
fowners root:root /opt/${PN}/pwrstatd-powerfail.sh
fowners root:root /opt/${PN}/pwrstatd-lowbatt.sh
fowners root:root /opt/${PN}/pwrstatd-email.sh
fowners root:root /opt/${PN}/shutdown.sh
fowners root:root /opt/${PN}/hibernate.sh
fowners root:root /etc/init.d/pwrstatd
fowners root:root /etc/pwrstatd.conf
fperms 700 /usr/sbin/pwrstat
fperms 700 /usr/sbin/pwrstatd
fperms 755 /etc/pwrstatd-powerfail.sh
fperms 755 /etc/pwrstatd-lowbatt.sh
fperms 755 /etc/pwrstatd-email.sh
fperms 755 /etc/shutdown.sh
fperms 755 /etc/hibernate.sh
fperms 755 /opt/${PN}/pwrstatd-powerfail.sh
fperms 755 /opt/${PN}/pwrstatd-lowbatt.sh
fperms 755 /opt/${PN}/pwrstatd-email.sh
fperms 755 /opt/${PN}/shutdown.sh
fperms 755 /opt/${PN}/hibernate.sh
fperms 755 /etc/init.d/pwrstatd
fperms 755 /etc/pwrstatd.conf
}
pkg_postinst() {
if use systemd; then
systemctl daemon-reload
fi
}

View File

@@ -1,54 +0,0 @@
--- src/Makefile
+++ src/Makefile
@@ -83,7 +83,7 @@
endif
# Check for gnuplot existance
-ifneq (, $(shell which gnuplot))
+ifeq ($(PLOTS),yes)
CFLAGS += -DGNUPLOT
endif
@@ -116,38 +116,31 @@
endif
# NOTE: libxlsreader (libxls) is required for xls file reading support
- ifneq ($(shell pkg-config --exists libxls || echo 'no'),no)
+ ifeq ($(XLS),yes)
CFLAGS += -DXLS $(shell pkg-config --cflags libxls)
LDLIBS += $(shell pkg-config --libs libxls)
endif
# NOTE: libxml and libzip are required for xlsx file import support
- ifneq ($(shell pkg-config --exists libzip libxml-2.0 || echo 'no'),no)
+ ifeq ($(XML_ZIP),yes)
CFLAGS += -DODS -DXLSX $(shell pkg-config --cflags libxml-2.0 libzip)
LDLIBS += $(shell pkg-config --libs libxml-2.0 libzip)
endif
# NOTE: libxlsxwriter is required for xlsx file export support
- ifneq ($(shell pkg-config --exists xlsxwriter || echo 'no'),no)
+ ifeq ($(XLSX),yes)
CFLAGS += -DXLSX_EXPORT $(shell pkg-config --cflags xlsxwriter)
LDLIBS += $(shell pkg-config --libs xlsxwriter)
endif
# NOTE: lua support
- ifneq ($(shell pkg-config --exists lua || echo 'no'),no) # Check for user's default lua
+ ifeq ($(LUA),yes)
CFLAGS += -DXLUA $(shell pkg-config --cflags lua)
ifneq ($(shell uname -s),Darwin)
LDLIBS += $(shell pkg-config --libs lua) -Wl,--export-dynamic
else
LDLIBS += $(shell pkg-config --libs lua) -rdynamic
endif
- else ifneq ($(shell pkg-config --exists luajit || echo 'no'),no) # If not found, check for luajit
- CFLAGS += -DXLUA $(shell pkg-config --cflags luajit)
- ifneq ($(shell uname -s),Darwin)
- LDLIBS += $(shell pkg-config --libs luajit) -Wl,--export-dynamic
- else
- LDLIBS += $(shell pkg-config --libs luajit) -rdynamic
- endif
endif
else ifeq ($(shell uname -s),Darwin)
# macOS without pkg-config

View File

@@ -1,32 +0,0 @@
--- src/Makefile
+++ src/Makefile
@@ -57,8 +57,19 @@
#
# Choose one of the following commands for copying to different clipboards:
# You can later change it at runtime.
+ifeq ($(TMUX),yes)
+ CFLAGS += -DDEFAULT_COPY_TO_CLIPBOARD_CMD=\""tmux load-buffer"\"
+ CFLAGS += -DDEFAULT_PASTE_FROM_CLIPBOARD_CMD=\""tmux show-buffer"\"
+else ifeq ($(WAYLAND),yes)
+ CFLAGS += -DDEFAULT_COPY_TO_CLIPBOARD_CMD=\""wl-copy <"\"
+ CFLAGS += -DDEFAULT_PASTE_FROM_CLIPBOARD_CMD=\""wl-paste"\"
+else ifeq ($(X),yes)
+ CFLAGS += -DDEFAULT_COPY_TO_CLIPBOARD_CMD=\""xclip -i -selection clipboard <"\"
+ CFLAGS += -DDEFAULT_PASTE_FROM_CLIPBOARD_CMD=\""xclip -o -selection clipboard"\"
+endif
+
#to copy to tmux clipboard:
-CFLAGS += -DDEFAULT_COPY_TO_CLIPBOARD_CMD=\""tmux load-buffer"\"
+#CFLAGS += -DDEFAULT_COPY_TO_CLIPBOARD_CMD=\""tmux load-buffer"\"
#to copy to X clipboard:
#CFLAGS += -DDEFAULT_COPY_TO_CLIPBOARD_CMD=\""xclip -i -selection clipboard <"\"
#to copy to OSX clipboard:
@@ -66,7 +77,7 @@
#
# Choose one of the proposed commands for pasting from different clipboards:
# You can later change it at runtime.
-CFLAGS += -DDEFAULT_PASTE_FROM_CLIPBOARD_CMD=\""tmux show-buffer"\"
+#CFLAGS += -DDEFAULT_PASTE_FROM_CLIPBOARD_CMD=\""tmux show-buffer"\"
#CFLAGS += -DDEFAULT_PASTE_FROM_CLIPBOARD_CMD=\""xclip -o -selection clipboard"\"
#CFLAGS += -DDEFAULT_PASTE_FROM_CLIPBOARD_CMD=\""pbpaste"\"

View File

@@ -1,11 +0,0 @@
--- src/Makefile
+++ src/Makefile
@@ -2,7 +2,7 @@
name = sc-im
# The base directory where everything should be installed.
-prefix = /usr/local
+prefix = /usr
EXDIR = $(prefix)/bin
HELPDIR = $(prefix)/share/$(name)

View File

@@ -0,0 +1,143 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
LUA_COMPAT=( lua5-1 luajit )
inherit lua-single toolchain-funcs flag-o-matic
DESCRIPTION="Spreadsheet Calculator Improvised -- An ncurses spreadsheet program for terminal"
HOMEPAGE="https://github.com/andmarti1424/sc-im"
SRC_URI="https://github.com/andmarti1424/sc-im/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-4"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="X plots wayland xls xlsx lua ods tmux"
REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )"
DEPEND="
sys-libs/ncurses
lua? (
${LUA_DEPS}
)
ods? (
dev-libs/libxml2
dev-libs/libzip
)
plots? ( sci-visualization/gnuplot )
tmux? ( app-misc/tmux )
wayland? ( gui-apps/wl-clipboard )
X? ( x11-misc/xclip )
xls? (
dev-libs/libxls
)
xlsx? (
dev-libs/libxlsxwriter
dev-libs/libxml2
dev-libs/libzip
)
"
RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
S="${WORKDIR}/${P}/src"
pkg_setup() {
CONFLICTING=$(usex tmux "tmux " "")$(usex wayland "wayland " "")$(usex X "X" "")
if ( use tmux && ( use wayland || use X ) ) ; then
elog "Conflicting flags for clipboard support are set: ${CONFLICTING}"
elog "tmux support has been preferred."
elif ( use wayland && use X ) ; then
elog "Conflicting flags for clipboard support are set: ${CONFLICTING}"
elog "Wayland support has been preferred."
fi
# Run lua setup
lua-single_pkg_setup
}
src_prepare() {
default
# Clean Makefile from all sorts of flag / lib setting
sed -i -e '/CFLAGS +=\|LDLIBS +=/d' Makefile \
|| die "sed fix failed. Uh-oh..."
# Also clean the now useless comments and logic
sed -i -e '/#\|if\|else/d' Makefile \
|| die "sed fix failed. Uh-oh..."
}
src_configure() {
tc-export CC
PKGCONF=$(tc-getPKG_CONFIG)
LDLIBS="-lm"
# default flags that dont need optional dependencies
append-cflags -Wall -g \
-DNCURSES \
-D_XOPEN_SOURCE_EXTENDED -D_GNU_SOURCE \
'-DSNAME=\"sc-im\"' \
'-DHELP_PATH=\"/usr/share/sc-im\"' \
'-DLIBDIR=\"/usr/share/doc/sc-im\"' \
'-DDFLT_PAGER=\"less\"' \
'-DDFLT_EDITOR=\"vim\"' \
-DUSECOLORS \
'-DHISTORY_FILE=\"sc-iminfo\"' \
'-DHISTORY_DIR=\".cache\"' \
'-DCONFIG_FILE=\"scimrc\"' \
'-DCONFIG_DIR=\".config/sc-im\"' \
'-DINS_HISTORY_FILE=\"sc-iminfo\"' \
-DUNDO \
-DMAXROWS=65536 \
-DUSELOCALE \
-DMOUSE \
'-DDEFAULT_OPEN_FILE_UNDER_CURSOR_CMD=\""scopen"\"' \
-DAUTOBACKUP \
-DHAVE_PTHREAD
# setting default clipboard commands
if use tmux ; then
append-cflags '-DDEFAULT_COPY_TO_CLIPBOARD_CMD=\""tmux load-buffer"\"'
append-cflags '-DDEFAULT_PASTE_FROM_CLIPBOARD_CMD=\""tmux show-buffer"\"'
elif use wayland ; then
append-cflags '-DDEFAULT_COPY_TO_CLIPBOARD_CMD=\""wl-copy <"\"'
append-cflags '-DDEFAULT_PASTE_FROM_CLIPBOARD_CMD=\""wl-paste"\"'
elif use X ; then
append-cflags '-DDEFAULT_COPY_TO_CLIPBOARD_CMD=\""xclip -i -selection clipboard <"\"'
append-cflags '-DDEFAULT_PASTE_FROM_CLIPBOARD_CMD=\""xclip -o -selection clipboard"\"'
fi
# optional feature dependency
use plots && append-cflags -DGNUPLOT
if use xls; then
append-cflags -DXLS $(${PKGCONF} --cflags libxls)
LDLIBS+=" $(${PKGCONF} --libs libxls)"
fi
if use xlsx || use ods ; then
append-cflags -DODS -DXLSX $(${PKGCONF} --cflags libxml-2.0 libzip)
LDLIBS+=" -DODS -DXLSX $(${PKGCONF} --libs libxml-2.0 libzip)"
fi
if use xlsx ; then
append-cflags -DXLSX_EXPORT $(${PKGCONF} --cflags xlsxwriter)
LDLIBS+=" -DXLSX_EXPORT $(${PKGCONF} --libs xlsxwriter)"
fi
if use lua ; then
append-cflags -DXLUA $(${PKGCONF} --cflags lua)
LDLIBS+=" -DXLUA $(${PKGCONF} --libs lua) -rdynamic"
fi
append-cflags $(${PKGCONF} --cflags ncursesw) || append-cflags $(${PKGCONF} --cflags ncurses)
LDLIBS+=" $(${PKGCONF} --libs ncursesw)" || LDLIBS+=" $(${PKGCONF} --libs ncurses)"
}
src_compile() {
emake LDLIBS="${LDLIBS}" CFLAGS="${CFLAGS}"
}
src_install() {
emake DESTDIR="${D}" prefix="/usr" install
einstalldocs
}

View File

@@ -1,81 +0,0 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
LUA_COMPAT=( lua5-1 luajit )
inherit lua-single toolchain-funcs
DESCRIPTION="Spreadsheet Calculator Improvised -- An ncurses spreadsheet program for terminal"
HOMEPAGE="https://github.com/andmarti1424/sc-im"
SRC_URI="https://github.com/andmarti1424/sc-im/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-4"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="X plots wayland xls xlsx lua ods tmux"
REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )"
PATCHES=(
"${FILESDIR}/${P}-prefix.patch"
"${FILESDIR}/${P}-automagic.patch"
"${FILESDIR}/${P}-clipboard.patch"
)
DEPEND="
sys-libs/ncurses
lua? (
${LUA_DEPS}
)
ods? (
dev-haskell/libxml
dev-libs/libzip
)
plots? ( sci-visualization/gnuplot )
tmux? ( app-misc/tmux )
wayland? ( gui-apps/wl-clipboard )
X? ( x11-misc/xclip )
xls? (
dev-libs/libxls
)
xlsx? (
dev-libs/libxlsxwriter
dev-haskell/libxml
dev-libs/libzip
)
"
RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
S="${WORKDIR}/${P}/src"
pkg_setup() {
export X=$(usex X)
export TMUX=$(usex tmux)
export WAYLAND=$(usex wayland)
export PLOTS=$(usex plots)
export XLS=$(usex xls)
export XLSX=$(usex xlsx)
export LUA=$(usex lua)
( use xlsx || use ods ) && export XML_ZIP="yes"
# Notifying the user about which clipboard support is enabled if conflicting flags are set
# Prefer wayland support over X, and tmux support over both wayland and X.
CONFLICTING=$(usex tmux "tmux " "")$(usex wayland "wayland " "")$(usex X "X" "")
if ( use tmux && ( use wayland || use X ) ) ; then
elog "Conflicting flags for clipboard support are set: ${CONFLICTING}"
elog "tmux support has been preferred."
elif ( use wayland && use X ) ; then
elog "Conflicting flags for clipboard support are set: ${CONFLICTING}"
elog "Wayland support has been preferred."
fi
# Run lua setup
lua-single_pkg_setup
}
src_configure() {
tc-export CC
default
}

View File

@@ -6,4 +6,10 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<upstream>
<maintainer>
<name>Dirk Eddelbuettel</name>
<email>edd@debian.org</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,9 +6,12 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Support Functions and Datasets for Venables and Ripley's MASS //
Functions and datasets to support Venables and Ripley, "Modern
Applied Statistics with S" (4th edition, 2002).
</longdescription>
<longdescription lang="en">Functions and datasets to support Venables and Ripley,
"Modern Applied Statistics with S" (4th edition, 2002).</longdescription>
<upstream>
<maintainer>
<name>Brian Ripley</name>
<email>ripley@stats.ox.ac.uk</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,14 +6,10 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Sparse and Dense Matrix Classes and Methods // A rich hierarchy
of matrix classes, including triangular, symmetric, and
diagonal matrices, both dense and sparse and with pattern,
logical and numeric entries. Numerous methods for and
operations on these matrices, using 'LAPACK' and 'SuiteSparse'
libraries.
</longdescription>
<longdescription lang="en">A rich hierarchy of matrix classes, including triangular,
symmetric, and diagonal matrices, both dense and sparse and with
pattern, logical and numeric entries. Numerous methods for and
operations on these matrices, using 'LAPACK' and 'SuiteSparse' libraries.</longdescription>
<upstream>
<bugs-to>https://r-forge.r-project.org/tracker/?group_id=61</bugs-to>
<doc lang="en">https://cran.r-project.org/web/packages/Matrix/Matrix.pdf</doc>

View File

@@ -1,20 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<description>co-maintainers welcome</description>
<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>
<maintainer type="person">
<description>co-maintainers welcome</description>
<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>

View File

@@ -6,9 +6,12 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
ColorBrewer Palettes // Provides color schemes for maps (and
other graphics) designed by Cynthia Brewer as described at
http://colorbrewer2.org
</longdescription>
<longdescription lang="en">Provides color schemes for maps (and other graphics)
designed by Cynthia Brewer as described at http://colorbrewer2.org.</longdescription>
<upstream>
<maintainer>
<name>Erich Neuwirth</name>
<email>erich.neuwirth@univie.ac.at</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -1,20 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<longdescription lang="en">C++ Classes to Embed R in C++ (and C) Applications // C++ classes to embed R in C++ (and C) applications A C++ class providing the R interpreter is offered by this package making it easier to have "R inside" your C++ application. As R itself is embedded into your application, a shared library build of R is required. This works on Linux, OS X and even on Windows provided you use the same tools used to build R itself. Numerous examples are provided in the nine subdirectories of the examples/ directory of the installed package: standard, 'mpi' (for parallel computing), 'qt' (showing how to embed 'RInside' inside a Qt GUI application), 'wt' (showing how to build a "web-application" using the Wt toolkit), 'armadillo' (for 'RInside' use with 'RcppArmadillo'), 'eigen' (for 'RInside' use with 'RcppEigen'), and 'c_interface' for a basic C interface and 'Ruby' illustration. The examples use 'GNUmakefile(s)' with GNU extensions, so a GNU make is required (and will use the 'GNUmakefile' automatically). 'Doxygen'-generated documentation of the C++ classes is available at the 'RInside' website as well.</longdescription>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<upstream>
<bugs-to>https://github.com/eddelbuettel/rinside/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web/packages/RInside/RInside.pdf</doc>
<changelog>https://cran.r-project.org/web/packages/RInside/ChangeLog</changelog>
<maintainer>
<name>Dirk Eddelbuettel</name>
<email>edd@debian.org</email>
</maintainer>
<remote-id type="github">eddelbuettel/rinside</remote-id>
</upstream>
<longdescription lang="en">C++ classes to embed R in C++ (and C) applications
A C++ class providing the R interpreter is offered by this package
making it easier to have "R inside" your C++ application. As R itself
is embedded into your application, a shared library build of R is
required. This works on Linux, OS X and even on Windows provided you
use the same tools used to build R itself. Numerous examples are
provided in the nine subdirectories of the examples/ directory of
the installed package: standard, 'mpi' (for parallel computing), 'qt'
(showing how to embed 'RInside' inside a Qt GUI application), 'wt'
(showing how to build a "web-application" using the Wt toolkit),
'armadillo' (for 'RInside' use with 'RcppArmadillo'), 'eigen' (for
'RInside' use with 'RcppEigen'), and 'c_interface' for a basic C
interface and 'Ruby' illustration. The examples use 'GNUmakefile(s)'
with GNU extensions, so a GNU make is required (and will use the
'GNUmakefile' automatically). 'Doxygen'-generated documentation of
the C++ classes is available at the 'RInside' website as well.</longdescription>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<upstream>
<bugs-to>https://github.com/eddelbuettel/rinside/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web/packages/RInside/RInside.pdf</doc>
<changelog>https://cran.r-project.org/web/packages/RInside/ChangeLog</changelog>
<maintainer>
<name>Dirk Eddelbuettel</name>
<email>edd@debian.org</email>
</maintainer>
<remote-id type="github">eddelbuettel/rinside</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -1,20 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<description>co-maintainers welcome</description>
<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>
<maintainer type="person">
<description>co-maintainers welcome</description>
<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, via the
'Rcpp Gallery' site at &lt;https://gallery.rcpp.org&gt;, the paper by Eddelbuettel and
Francois (2011, &lt;doi:10.18637/jss.v040.i08&gt;), the book by Eddelbuettel (2013,
&lt;doi:10.1007/978-1-4614-6868-4&gt;) and the paper by Eddelbuettel and Balamuta (2018,
&lt;doi:10.1080/00031305.2017.1375990&gt;); see 'citation("Rcpp")' for details.</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

@@ -6,23 +6,24 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
'Rcpp' Integration for the 'Armadillo' Templated Linear Algebra
Library // 'Armadillo' is a templated C++ linear algebra
library (by Conrad Sanderson) that aims towards a good balance
between speed and ease of use. Integer, floating point and
complex numbers are supported, as well as a subset of
trigonometric and statistics functions. Various matrix
decompositions are provided through optional integration with
LAPACK and ATLAS libraries. The 'RcppArmadillo' package
includes the header files from the templated 'Armadillo'
library. Thus users do not need to install 'Armadillo' itself
in order to use 'RcppArmadillo'. From release 7.800.0 on,
'Armadillo' is licensed under Apache License 2; previous
releases were under licensed as MPL 2.0 from version 3.800.0
onwards and LGPL-3 prior to that; 'RcppArmadillo' (the 'Rcpp'
bindings/bridge to Armadillo) is licensed under the GNU GPL
version 2 or later, as is the rest of 'Rcpp'. Armadillo
requires a C++11 compiler.
</longdescription>
<longdescription lang="en">'Armadillo' is a templated C++ linear algebra library (by Conrad
Sanderson) that aims towards a good balance between speed and ease of
use. Integer, floating point and complex numbers are supported, as
well as a subset of trigonometric and statistics functions. Various
matrix decompositions are provided through optional integration with
LAPACK and ATLAS libraries. The 'RcppArmadillo' package includes the
header files from the templated 'Armadillo' library. Thus users do
not need to install 'Armadillo' itself in order to use
'RcppArmadillo'. From release 7.800.0 on, 'Armadillo' is licensed
under Apache License 2; previous releases were under licensed as MPL
2.0 from version 3.800.0 onwards and LGPL-3 prior to that;
'RcppArmadillo' (the 'Rcpp' bindings/bridge to Armadillo) is licensed
under the GNU GPL version 2 or later, as is the rest of 'Rcpp'.
Armadillo requires a C++11 compiler.</longdescription>
<upstream>
<maintainer>
<name>Dirk Eddelbuettel</name>
<email>edd@debian.org</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -1,29 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<upstream>
<bugs-to>https://github.com/coatless/rcppensmallen/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web/packages/RcppEnsmallen/RcppEnsmallen.pdf</doc>
<changelog>https://cran.r-project.org/web/packages/RcppEnsmallen/ChangeLog</changelog>
<maintainer>
<name>James Joseph Balamuta</name>
<email>balamut2@illinois.edu</email>
</maintainer>
<remote-id type="github">coatless/rcppensmallen</remote-id>
</upstream>
<longdescription lang="en">
Header-Only C++ Mathematical Optimization Library for 'Armadillo'
// 'Ensmallen' is a templated C++ mathematical optimization
library (by the 'MLPACK' team) that provides a simple set of
abstractions for writing an objective function to optimize.
Provided within are various standard and cutting-edge
optimizers that include full-batch gradient descent techniques,
small-batch techniques, gradient-free optimizers, and
constrained optimization.
</longdescription>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<upstream>
<bugs-to>https://github.com/coatless/rcppensmallen/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web/packages/RcppEnsmallen/RcppEnsmallen.pdf</doc>
<changelog>https://cran.r-project.org/web/packages/RcppEnsmallen/ChangeLog</changelog>
<maintainer>
<name>James Joseph Balamuta</name>
<email>balamut2@illinois.edu</email>
</maintainer>
<remote-id type="github">coatless/rcppensmallen</remote-id>
</upstream>
<longdescription lang="en">'Ensmallen' is a templated C++ mathematical optimization library
(by the 'MLPACK' team) that provides a simple set of abstractions for writing an
objective function to optimize. Provided within are various standard and
cutting-edge optimizers that include full-batch gradient descent techniques,
small-batch techniques, gradient-free optimizers, and constrained optimization.
The 'RcppEnsmallen' package includes the header files from the 'Ensmallen' library
and pairs the appropriate header files from 'armadillo' through the
'RcppArmadillo' package. Therefore, users do not need to install 'Ensmallen' nor
'Armadillo' to use 'RcppEnsmallen'. Note that 'Ensmallen' is licensed under
3-Clause BSD, 'Armadillo' starting from 7.800.0 is licensed under Apache License 2,
'RcppArmadillo' (the 'Rcpp' bindings/bridge to 'Armadillo') is licensed under
the GNU GPL version 2 or later. Thus, 'RcppEnsmallen' is also licensed under
similar terms. Note that 'Ensmallen' requires a compiler that supports
'C++11' and 'Armadillo' 9.800 or later.</longdescription>
</pkgmetadata>

View File

@@ -6,13 +6,16 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription>
'Rcpp' Bindings to Parser for Tom's Obvious Markup Language //
The configuration format defined by 'TOML' (which expands to
"Tom's Obvious Markup Language") specifies an excellent format
(described at https://toml.io/en/) suitable for both human
editing as well as the common uses of a machine-readable
format. This package uses 'Rcpp' to connect the 'cpptoml'
parser written by Chase Geigle (in C++11) to R.
</longdescription>
<longdescription lang="en">The configuration format defined by 'TOML' (which expands to
"Tom's Obvious Markup Language") specifies an excellent format
(described at &lt;https://toml.io/en/&gt;) suitable for both human editing
as well as the common uses of a machine-readable format. This package
uses 'Rcpp' to connect the 'cpptoml' parser written by Chase Geigle
(in C++11) to R.</longdescription>
<upstream>
<maintainer>
<name>Dirk Eddelbuettel</name>
<email>edd@debian.org</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,17 +6,20 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Safe Password Entry for R, Git, and SSH // Cross-platform
utilities for prompting the user for credentials or a
passphrase, for example to authenticate with a server or read a
protected key. Includes native programs for MacOS and Windows,
hence no 'tcltk' is required. Password entry can be invoked in
two different ways: directly from R via the askpass() function,
or indirectly as password-entry back-end for 'ssh-agent' or
'git-credential' via the SSH_ASKPASS and GIT_ASKPASS
environment variables. Thereby the user can be prompted for
credentials or a passphrase if needed when R calls out to git
or ssh.
</longdescription>
<longdescription lang="en">Cross-platform utilities for prompting the user for credentials or a
passphrase, for example to authenticate with a server or read a protected key.
Includes native programs for MacOS and Windows, hence no 'tcltk' is required.
Password entry can be invoked in two different ways: directly from R via the
askpass() function, or indirectly as password-entry back-end for 'ssh-agent'
or 'git-credential' via the SSH_ASKPASS and GIT_ASKPASS environment variables.
Thereby the user can be prompted for credentials or a passphrase if needed
when R calls out to git or ssh.</longdescription>
<upstream>
<maintainer>
<name>Jeroen Ooms</name>
<email>jeroen@berkeley.edu</email>
</maintainer>
<remote-id type="github">jeroen/askpass</remote-id>
<bugs-to>https://github.com/jeroen/askpass/issues</bugs-to>
</upstream>
</pkgmetadata>

View File

@@ -1,19 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
An extension to stopifnot() that makes it easy to declare the pre and post conditions that you code should satisfy, while also producing friendly error messages so that your users know what's gone wrong.
</longdescription>
<upstream>
<doc lang="en">https://cran.r-project.org/web/packages/assertthat/assertthat.pdf</doc>
<maintainer>
<name>Hadley Wickham</name>
<email>hadley@rstudio.com</email>
</maintainer>
</upstream>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">An extension to stopifnot() that makes it easy to declare
the pre and post conditions that you code should satisfy, while also
producing friendly error messages so that your users know what's gone
wrong.</longdescription>
<upstream>
<doc lang="en">https://cran.r-project.org/web/packages/assertthat/assertthat.pdf</doc>
<maintainer>
<name>Hadley Wickham</name>
<email>hadley@rstudio.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,10 +6,14 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Templating Framework for Report Generation // brew implements a
templating framework for mixing text and R code for report
generation. brew template syntax is similar to PHP, Ruby's erb
module, Java Server Pages, and Python's psp module.
</longdescription>
<longdescription lang="en">Implements a templating framework for mixing text and
R code for report generation. brew template syntax is similar
to PHP, Ruby's erb module, Java Server Pages, and Python's psp
module.</longdescription>
<upstream>
<maintainer>
<name>Greg Hunt</name>
<email>greg@firmansyah.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,10 +6,13 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Basic R Input Output // Functions to handle basic input output,
these functions always read and write UTF-8 (8-bit Unicode
Transformation Format) files and provide more explicit control
over line endings.
</longdescription>
<longdescription lang="en">Functions to handle basic input output, these functions
always read and write UTF-8 (8-bit Unicode Transformation Format)
files and provide more explicit control over line endings.</longdescription>
<upstream>
<maintainer>
<name>Gábor Csárdi</name>
<email>csardi.gabor@gmail.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,9 +6,13 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Call R from R // It is sometimes useful to perform a computation
in a separate R process, without affecting the current R
process at all. This packages does exactly that.
</longdescription>
<longdescription lang="en">It is sometimes useful to perform a computation in a
separate R process, without affecting the current R process at all.
This packages does exactly that.</longdescription>
<upstream>
<maintainer>
<name>Gábor Csárdi</name>
<email>csardi.gabor@gmail.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -1,19 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<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>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<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

@@ -1 +1 @@
DIST cli_3.2.0.tar.gz 493192 BLAKE2B 9017dea0acaa43f0e47a80a48e74d56cf44c7e124b50fc1b55284221e5920783c0f21b4215edfe32e475fcb3252f8aa97fce2b04ce7b7c53c41893674d0c2b7e SHA512 1f0f0a2d3c57830653b788ddef76a4944f4bd8beb6e0e8a71cc9da8242c0939d33b2b28066a6b1dd61b8870edc8d5635415bdaa626c0c4dfd8102fbb3b5cd7e3
DIST cli_3.3.0.tar.gz 495823 BLAKE2B 1bb1ed2bdbee43d5395d9392fca15646c9dcc76552f06415c24871b0070c0aa54e98308284c3d111ce5d1bff47d26b66b550f32086b379ce48c0b2a90461b989 SHA512 e888bee42595c89cce3dde076083f80f5118d1a33e9968ff580d2b13d233baa041355c46622fd611e1ce00c32e9a5a1bb29aab0d1bcc719dd9ced3821efd9de0

View File

@@ -1,7 +1,7 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=7
inherit R-packages

View File

@@ -1,20 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">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.</longdescription>
<upstream>
<bugs-to>https://github.com/r-lib/cli/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web//packages/cli/cli.pdf</doc>
<changelog>https://cran.r-project.org/web//packages/cli/news/news.html</changelog>
<maintainer>
<name>Gábor Csárdi</name>
<email>csardi.gabor@gmail.com</email>
</maintainer>
<remote-id type="github">r-lib/cli</remote-id>
</upstream>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">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 support ANSI
colors and text styles as well.</longdescription>
<upstream>
<bugs-to>https://github.com/r-lib/cli/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web//packages/cli/cli.pdf</doc>
<changelog>https://cran.r-project.org/web//packages/cli/news/news.html</changelog>
<maintainer>
<name>Gábor Csárdi</name>
<email>csardi.gabor@gmail.com</email>
</maintainer>
<remote-id type="github">r-lib/cli</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -6,24 +6,24 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
A Toolbox for Manipulating and Assessing Colors and Palettes //
Carries out mapping between assorted color spaces including
RGB, HSV, HLS, CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB, and
polar CIELAB. Qualitative, sequential, and diverging color
palettes based on HCL colors are provided along with
corresponding ggplot2 color scales. Color palette choice is
aided by an interactive app (with either a Tcl/Tk or a shiny
graphical user interface) and shiny apps with an HCL color
picker and a color vision deficiency emulator. Plotting
functions for displaying and assessing palettes include color
swatches, visualizations of the HCL space, and trajectories in
HCL and/or RGB spectrum. Color manipulation functions include:
desaturation, lightening/darkening, mixing, and simulation of
color vision deficiencies (deutanomaly, protanomaly,
tritanomaly). Details can be found on the project web page at
https://colorspace.R-Forge.R-project.org/ and in the
accompanying scientific paper: Zeileis et al. (2020, Journal of
Statistical Software, doi:10.18637/jss.v096.i01).
</longdescription>
<longdescription lang="en">Carries out mapping between assorted color spaces including RGB, HSV, HLS,
CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB, and polar CIELAB.
Qualitative, sequential, and diverging color palettes based on HCL colors
are provided along with corresponding ggplot2 color scales.
Color palette choice is aided by an interactive app (with either a Tcl/Tk
or a shiny graphical user interface) and shiny apps with an HCL color picker and a
color vision deficiency emulator. Plotting functions for displaying
and assessing palettes include color swatches, visualizations of the
HCL space, and trajectories in HCL and/or RGB spectrum. Color manipulation
functions include: desaturation, lightening/darkening, mixing, and
simulation of color vision deficiencies (deutanomaly, protanomaly, tritanomaly).
Details can be found on the project web page at &lt;https://colorspace.R-Forge.R-project.org/&gt;
and in the accompanying scientific paper: Zeileis et al. (2020, Journal of Statistical
Software, &lt;doi:10.18637/jss.v096.i01&gt;).</longdescription>
<upstream>
<maintainer>
<name>Achim Zeileis</name>
<email>Achim.Zeileis@R-project.org</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,16 +6,11 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
High Performance CommonMark and Github Markdown Rendering in R //
The CommonMark specification defines a rationalized version of
markdown syntax. This package uses the 'cmark' reference
implementation for converting markdown text into various
formats including html, latex and groff man. In addition it
exposes the markdown parse tree in xml format. Also includes
opt-in support for GFM extensions including tables, autolinks,
and strikethrough text.
</longdescription>
<longdescription lang="en">The CommonMark specification defines a rationalized version of markdown
syntax. This package uses the 'cmark' reference implementation for converting
markdown text into various formats including html, latex and groff man. In
addition it exposes the markdown parse tree in xml format. Also includes opt-in
support for GFM extensions including tables, autolinks, and strikethrough text.</longdescription>
<upstream>
<bugs-to>http://github.com/jeroen/commonmark/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web/packages/commonmark/commonmark.pdf</doc>

View File

@@ -6,14 +6,17 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Test Coverage for Packages // Track and report code coverage for
your package and (optionally) upload the results to a coverage
service like 'Codecov' https://codecov.io or 'Coveralls'
https://coveralls.io. Code coverage is a measure of the amount
of code being exercised by a set of tests. It is an indirect
measure of test quality and completeness. This package is
compatible with any testing methodology or framework and tracks
coverage of both R code and compiled C/C++/FORTRAN code.
</longdescription>
<longdescription lang="en">Track and report code coverage for your package and (optionally)
upload the results to a coverage service like 'Codecov' &lt;https://codecov.io&gt; or
'Coveralls' &lt;https://coveralls.io&gt;. Code coverage is a measure of the amount of
code being exercised by a set of tests. It is an indirect measure of test
quality and completeness. This package is compatible with any testing
methodology or framework and tracks coverage of both R code and compiled
C/C++/FORTRAN code.</longdescription>
<upstream>
<maintainer>
<name>Jim Hester</name>
<email>james.f.hester@gmail.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -1,27 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<longdescription>
A C++11 Interface for R's C Interface // Provides a header only,
C++11 interface to R's C interface. Compared to other
approaches 'cpp11' strives to be safe against long jumps from
the C API as well as C++ exceptions, conform to normal R
function semantics and supports interaction with 'ALTREP'
vectors.
</longdescription>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<upstream>
<bugs-to>https://github.com/r-lib/cpp11/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web/packages/cpp11/cpp11.pdf</doc>
<changelog>https://cran.r-project.org/web/packages/cpp11/ChangeLog</changelog>
<maintainer>
<name>Romain François</name>
<email>romain@rstudio.com</email>
</maintainer>
<remote-id type="github">r-lib/cpp11</remote-id>
</upstream>
<longdescription lang="en">Provides a header only, C++11 interface to R's C
interface. Compared to other approaches 'cpp11' strives to be safe
against long jumps from the C API as well as C++ exceptions, conform
to normal R function semantics and supports interaction with 'ALTREP'
vectors.</longdescription>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<upstream>
<bugs-to>https://github.com/r-lib/cpp11/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web/packages/cpp11/cpp11.pdf</doc>
<changelog>https://cran.r-project.org/web/packages/cpp11/ChangeLog</changelog>
<maintainer>
<name>Romain François</name>
<email>romain@rstudio.com</email>
</maintainer>
<remote-id type="github">r-lib/cpp11</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -1,19 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">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.</longdescription>
<upstream>
<bugs-to>https://github.com/r-lib/crayon/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web//packages/crayon/crayon.pdf</doc>
<maintainer>
<name>Gábor Csárdi</name>
<email>csardi.gabor@gmail.com</email>
</maintainer>
<remote-id type="github">r-lib/crayon</remote-id>
</upstream>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">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.</longdescription>
<upstream>
<bugs-to>https://github.com/r-lib/crayon/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web//packages/crayon/crayon.pdf</doc>
<maintainer>
<name>Gábor Csárdi</name>
<email>csardi.gabor@gmail.com</email>
</maintainer>
<remote-id type="github">r-lib/crayon</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -6,17 +6,19 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
A Modern and Flexible Web Client for R // The curl() and
curl_download() functions provide highly configurable drop-in
replacements for base url() and download.file() with better
performance, support for encryption (https, ftps), gzip
compression, authentication, and other 'libcurl' goodies. The
core of the package implements a framework for performing fully
customized requests where data can be processed either in
memory, on disk, or streaming via the callback or connection
interfaces. Some knowledge of 'libcurl' is recommended; for a
more-user-friendly web client see the 'httr' package which
builds on this package with http specific tools and logic.
</longdescription>
<longdescription lang="en">The curl() and curl_download() functions provide highly
configurable drop-in replacements for base url() and download.file() with
better performance, support for encryption (https, ftps), gzip compression,
authentication, and other 'libcurl' goodies. The core of the package implements a
framework for performing fully customized requests where data can be processed
either in memory, on disk, or streaming via the callback or connection
interfaces. Some knowledge of 'libcurl' is recommended; for a more-user-friendly
web client see the 'httr' package which builds on this package with http
specific tools and logic.</longdescription>
<upstream>
<maintainer>
<name>Jeroen Ooms</name>
<email>jeroen@berkeley.edu</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,9 +6,13 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Manipulate DESCRIPTION Files // Tools to read, write, create, and
manipulate DESCRIPTION files. It is intended for packages that
create or manipulate other packages.
</longdescription>
<longdescription lang="en">Tools to read, write, create, and manipulate DESCRIPTION
files. It is intended for packages that create or manipulate other
packages.</longdescription>
<upstream>
<maintainer>
<name>Gábor Csárdi</name>
<email>csardi.gabor@gmail.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,8 +6,10 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Diffs for R Objects // Generate a colorized diff of two R objects
for an intuitive visualization of their differences.
</longdescription>
<upstream>
<maintainer>
<name>Brodie Gaslam</name>
<email>brodie.gaslam@yahoo.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

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

View File

@@ -1 +1 @@
DIST dplyr_1.0.8.tar.gz 880713 BLAKE2B c3b606458a06aebdd0d1c0b6786b8ad4a06d031b8a4f2be2407781eb1239b9e8ab353d63f3c85db28d814bdb195bb48df3da5324a7ade79676b180bc037f1a2b SHA512 ba92210834853252b7ad2d4bb8f68ac70a0fc876f6928f729921f27218e313a549eb511f17d69a03c1e15c6651a19c19f0d0a04bb78a5ca563b2bdaec053ca6e
DIST dplyr_1.0.9.tar.gz 957637 BLAKE2B 3c6eef65b63339f76b8cbb09b34620bfa0a8502b3cca5c1aceccf57332b7642844c0ee9773c3a09e92bb0caf3398feca158e4942c0683cbf9c6f2629c99e1cb7 SHA512 0044bd937d68df71fff75d78851f15fd041912872ae0cfcc006b22f08f6ed633a978001a421b2a92500ca87c9170bf9cd3f6b081d045da0b41721af71b3911a2

View File

@@ -1,17 +1,18 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=7
inherit R-packages
DESCRIPTION='A Grammar of Data Manipulation'
LICENSE='MIT'
HOMEPAGE="
https://dplyr.tidyverse.org
https://github.com/tidyverse/dplyr
https://cran.r-project.org/package=dplyr
"
LICENSE='MIT'
KEYWORDS="~amd64"
DEPEND="
dev-cpp/plog

View File

@@ -1,19 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<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>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<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

@@ -1,20 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">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.</longdescription>
<upstream>
<bugs-to>https://github.com/r-lib/ellipsis/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web//packages/ellipsis/ellipsis.pdf</doc>
<changelog>https://cran.r-project.org/web//packages/ellipsis/news/news.html</changelog>
<maintainer>
<name>Hadley Wickham</name>
<email>hadley@rstudio.com</email>
</maintainer>
<remote-id type="github">r-lib/ellipsis</remote-id>
</upstream>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">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.</longdescription>
<upstream>
<bugs-to>https://github.com/r-lib/ellipsis/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web//packages/ellipsis/ellipsis.pdf</doc>
<changelog>https://cran.r-project.org/web//packages/ellipsis/news/news.html</changelog>
<maintainer>
<name>Hadley Wickham</name>
<email>hadley@rstudio.com</email>
</maintainer>
<remote-id type="github">r-lib/ellipsis</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -6,9 +6,10 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Parsing and Evaluation Tools that Provide More Details than the
Default // Parsing and evaluation tools that make it easy to
recreate the command line behaviour of R.
</longdescription>
<upstream>
<maintainer>
<name>Yihui Xie</name>
<email>xie@yihui.name</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -1,22 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Counterparts to R string manipulation functions that account for the effects of ANSI text formatting control sequences.
</longdescription>
<upstream>
<bugs-to>https://github.com/brodieG/fansi/issues</bugs-to>
<changelog>https://cran.r-project.org/web/packages/fansi/news/news.html</changelog>
<doc lang="en">https://cran.r-project.org/web/packages/fansi/fansi.pdf</doc>
<maintainer>
<name>Brodie Gaslam</name>
<email>brodie.gaslam@yahoo.com</email>
</maintainer>
<remote-id type="github">brodieG/fansi</remote-id>
</upstream>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">Counterparts to R string manipulation functions that account for
the effects of ANSI text formatting control sequences.</longdescription>
<upstream>
<bugs-to>https://github.com/brodieG/fansi/issues</bugs-to>
<changelog>https://cran.r-project.org/web/packages/fansi/news/news.html</changelog>
<doc lang="en">https://cran.r-project.org/web/packages/fansi/fansi.pdf</doc>
<maintainer>
<name>Brodie Gaslam</name>
<email>brodie.gaslam@yahoo.com</email>
</maintainer>
<remote-id type="github">brodieG/fansi</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -6,14 +6,17 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
High Performance Colour Space Manipulation // The encoding of
colour can be handled in many different ways, using different
colour spaces. As different colour spaces have different uses,
efficient conversion between these representations are
important. The 'farver' package provides a set of functions
that gives access to very fast colour space conversion and
comparisons implemented in C++, and offers speed improvements
over the 'convertColor' function in the 'grDevices' package.
</longdescription>
<longdescription lang="en">The encoding of colour can be handled in many different ways, using
different colour spaces. As different colour spaces have different uses,
efficient conversion between these representations are important. The
'farver' package provides a set of functions that gives access to very fast
colour space conversion and comparisons implemented in C++, and offers
speed improvements over the 'convertColor' function in the 'grDevices'
package.</longdescription>
<upstream>
<maintainer>
<name>Thomas Lin Pedersen</name>
<email>thomasp85@gmail.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -1,20 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">In order to reduce potential package dependencies and conflicts, generics provides a number of commonly used S3 generics.</longdescription>
<upstream>
<bugs-to>https://github.com/r-lib/generics/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web/packages/generics/generics.pdf</doc>
<changelog>https://cran.r-project.org/web/packages/generics/news/news.html</changelog>
<maintainer>
<name>Hadley Wickham</name>
<email>hadley@rstudio.com</email>
</maintainer>
<remote-id type="github">r-lib/generics</remote-id>
</upstream>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">In order to reduce potential package dependencies
and conflicts, generics provides a number of commonly used S3
generics.</longdescription>
<upstream>
<bugs-to>https://github.com/r-lib/generics/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web/packages/generics/generics.pdf</doc>
<changelog>https://cran.r-project.org/web/packages/generics/news/news.html</changelog>
<maintainer>
<name>Hadley Wickham</name>
<email>hadley@rstudio.com</email>
</maintainer>
<remote-id type="github">r-lib/generics</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -6,11 +6,14 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Create Elegant Data Visualisations Using the Grammar of Graphics
// A system for 'declaratively' creating graphics, based on
"The Grammar of Graphics". You provide the data, tell 'ggplot2'
how to map variables to aesthetics, what graphical primitives
to use, and it takes care of the details.
</longdescription>
<longdescription lang="en">A system for 'declaratively' creating graphics,
based on "The Grammar of Graphics". You provide the data, tell 'ggplot2'
how to map variables to aesthetics, what graphical primitives to use,
and it takes care of the details.</longdescription>
<upstream>
<maintainer>
<name>Thomas Lin Pedersen</name>
<email>thomas.pedersen@rstudio.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,4 +6,10 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<upstream>
<maintainer>
<name>Gábor Csárdi</name>
<email>csardi.gabor@gmail.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,11 +6,14 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Query 'git' Credentials from 'R' // Query, set, delete
credentials from the 'git' credential store. Manage 'GitHub'
tokens and other 'git' credentials. This package is to be used
by other packages that need to authenticate to 'GitHub' and/or
other 'git' repositories.
</longdescription>
<longdescription lang="en">Query, set, delete credentials from the 'git' credential
store. Manage 'GitHub' tokens and other 'git' credentials. This package
is to be used by other packages that need to authenticate to 'GitHub'
and/or other 'git' repositories.</longdescription>
<upstream>
<maintainer>
<name>Gábor Csárdi</name>
<email>csardi.gabor@gmail.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -1,20 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">An implementation of interpreted string literals, inspired by Python's Literal String Interpolation, Docstrings and Julia's Triple-Quoted String Literals</longdescription>
<upstream>
<bugs-to>https://github.com/tidyverse/glue/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web//packages/glue/glue.pdf</doc>
<changelog>https://cran.r-project.org/web//packages/glue/news/news.html</changelog>
<maintainer>
<name>Jim Hester</name>
<email>james.f.hester@gmail.com</email>
</maintainer>
<remote-id type="github">tidyverse/glue</remote-id>
</upstream>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">An implementation of interpreted string literals, inspired by
Python's Literal String Interpolation
&lt;https://www.python.org/dev/peps/pep-0498/&gt; and Docstrings
&lt;https://www.python.org/dev/peps/pep-0257/&gt; and Julia's Triple-Quoted
String Literals
&lt;https://docs.julialang.org/en/v1.3/manual/strings/#Triple-Quoted-String-Literals-1&gt;.</longdescription>
<upstream>
<bugs-to>https://github.com/tidyverse/glue/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web//packages/glue/glue.pdf</doc>
<changelog>https://cran.r-project.org/web//packages/glue/news/news.html</changelog>
<maintainer>
<name>Jennifer Bryan</name>
<email>jenny@rstudio.com</email>
</maintainer>
<remote-id type="github">tidyverse/glue</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -6,12 +6,15 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Arrange 'Grobs' in Tables // Tools to make it easier to work with
"tables" of 'grobs'. The 'gtable' package defines a 'gtable'
grob class that specifies a grid along with a list of grobs and
their placement in the grid. Further the package makes it easy
to manipulate and combine 'gtable' objects so that complex
compositions can be build up sequentially.
</longdescription>
<longdescription lang="en">Tools to make it easier to work with "tables" of
'grobs'. The 'gtable' package defines a 'gtable' grob class that specifies a
grid along with a list of grobs and their placement in the grid. Further the
package makes it easy to manipulate and combine 'gtable' objects so that
complex compositions can be build up sequentially.</longdescription>
<upstream>
<maintainer>
<name>Hadley Wickham</name>
<email>hadley@rstudio.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,11 +6,14 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription>
A Simpler Way to Find Your Files // Constructs paths to your
project's files. Declare the relative path of a file within
your project with 'i_am()'. Use the 'here()' function as a
drop-in replacement for 'file.path()', it will always locate
the files relative to your project root.
</longdescription>
<longdescription lang="en">Constructs paths to your project's files.
Declare the relative path of a file within your project with 'i_am()'.
Use the 'here()' function as a drop-in replacement for 'file.path()',
it will always locate the files relative to your project root.</longdescription>
<upstream>
<maintainer>
<name>Kirill Müller</name>
<email>krlmlr+r@mailbox.org</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,10 +6,13 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Syntax Highlighting for R Source Code // Provides syntax
highlighting for R source code. Currently it supports LaTeX and
HTML output. Source code of other languages is supported via
Andre Simon's highlight package (http://www.andre-simon.de).
</longdescription>
<longdescription lang="en">Provides syntax highlighting for R source code. Currently it
supports LaTeX and HTML output. Source code of other languages is supported
via Andre Simon's highlight package (&lt;http://www.andre-simon.de&gt;).</longdescription>
<upstream>
<maintainer>
<name>Yihui Xie</name>
<email>xie@yihui.name</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,10 +6,14 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Tools for Working with URLs and HTTP // Useful tools for working
with HTTP organised by HTTP verbs (GET(), POST(), etc).
Configuration functions make it easy to control additional
request components (authenticate(), add_headers() and so on).
</longdescription>
<longdescription lang="en">Useful tools for working with HTTP organised by
HTTP verbs (GET(), POST(), etc). Configuration functions make it easy
to control additional request components (authenticate(),
add_headers() and so on).</longdescription>
<upstream>
<maintainer>
<name>Hadley Wickham</name>
<email>hadley@rstudio.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,16 +6,12 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
High-Performance Stemmer, Tokenizer, and Spell Checker // Low
level spell checker and morphological analyzer based on the
famous 'hunspell' library https://hunspell.github.io. The
package can analyze or check individual words as well as parse
text, latex, html or xml documents. For a more user-friendly
interface use the 'spelling' package which builds on this
package to automate checking of files, documentation and
vignettes in all common formats.
</longdescription>
<longdescription lang="en">Low level spell checker and morphological analyzer based on the
famous 'hunspell' library &lt;https://hunspell.github.io&gt;. The package can analyze
or check individual words as well as parse text, latex, html or xml documents.
For a more user-friendly interface use the 'spelling' package which builds on
this package to automate checking of files, documentation and vignettes in all
common formats.</longdescription>
<upstream>
<bugs-to>https://github.com/ropensci/hunspell/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web/packages/hunspell/hunspell.pdf</doc>

View File

@@ -6,10 +6,13 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Read and Write '.ini' Files // Parse simple '.ini' configuration
files to an structured list. Users can manipulate this
resulting list with lapply() functions. This same structured
list can be used to write back to file after modifications.
</longdescription>
<longdescription lang="en">Parse simple '.ini' configuration files to an structured list. Users
can manipulate this resulting list with lapply() functions. This same
structured list can be used to write back to file after modifications.</longdescription>
<upstream>
<maintainer>
<name>David Valentim Dias</name>
<email>dvdscripter@gmail.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,10 +6,12 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Generate Isolines and Isobands from Regularly Spaced Elevation
Grids // A fast C++ implementation to generate contour lines
(isolines) and contour polygons (isobands) from regularly
spaced grids containing elevation data.
</longdescription>
<longdescription lang="en">A fast C++ implementation to generate contour lines (isolines) and
contour polygons (isobands) from regularly spaced grids containing elevation data.</longdescription>
<upstream>
<maintainer>
<name>Claus O. Wilke</name>
<email>wilke@austin.utexas.edu</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,20 +6,14 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
A Simple and Robust JSON Parser and Generator for R // A
reasonably fast JSON parser and generator, optimized for
statistical data and the web. Offers simple, flexible tools for
working with JSON in R, and is particularly powerful for
building pipelines and interacting with a web API. The
implementation is based on the mapping described in the
vignette (Ooms, 2014). In addition to converting JSON data
from/to R objects, 'jsonlite' contains functions to stream,
validate, and prettify JSON data. The unit tests included with
the package verify that all edge cases are encoded and decoded
consistently for use with dynamic data in systems and
applications.
</longdescription>
<longdescription lang="en">A reasonably fast JSON parser and generator, optimized for statistical
data and the web. Offers simple, flexible tools for working with JSON in R, and
is particularly powerful for building pipelines and interacting with a web API.
The implementation is based on the mapping described in the vignette (Ooms, 2014).
In addition to converting JSON data from/to R objects, 'jsonlite' contains
functions to stream, validate, and prettify JSON data. The unit tests included
with the package verify that all edge cases are encoded and decoded consistently
for use with dynamic data in systems and applications.</longdescription>
<upstream>
<bugs-to>https://github.com/jeroen/jsonlite/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web/packages/jsonlite/jsonlite.pdf</doc>

View File

@@ -1 +1 @@
DIST knitr_1.38.tar.gz 898373 BLAKE2B f7f5ce5150fe4520039a39fab92fb41296f20823317e0e8eab9cd34fbe4d5b186df3976be7af017741ff38e836df4aef337de5f2433f3575a6c4d674b930ee4d SHA512 4ae22fa21d10d4251bfa75803b700f1cbd3fab0203e45b5e9e4243b837ece5d30b86f637fa99d0d95d56c2fb5728d1153ce82dac7cb90c5246a2ea670cf8efaa
DIST knitr_1.39.tar.gz 898418 BLAKE2B 7afdbfc8aa01fa67273847508196e5ab6fc17db4b68f8287b41ee0f3af7ff4e237c0544ffe4bc303ef4256fd88966c950dafcad5ede735084e30963d92db0d60 SHA512 25c580cf4a22bf998e20762ae9ff73a0d9b9cbc1b34cb4c7efe678dba8a3b574df7f15c3871e5fbed75897b369dbcaef6c994c5b311f9ecd99cf3e9f91a1c360

View File

@@ -6,6 +6,11 @@ EAPI=7
inherit R-packages
DESCRIPTION='A General-Purpose Package for Dynamic report generation in R'
HOMEPAGE="
https://yihui.org/knitr/
https://github.com/yihui/knitr
https://cran.r-project.org/package=knitr
"
KEYWORDS="~amd64"
LICENSE='GPL-2+'

View File

@@ -6,9 +6,12 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
A General-Purpose Package for Dynamic Report Generation in R //
Provides a general-purpose tool for dynamic report generation
in R using Literate Programming techniques.
</longdescription>
<longdescription lang="en">Provides a general-purpose tool for dynamic report generation in R
using Literate Programming techniques.</longdescription>
<upstream>
<maintainer>
<name>Yihui Xie</name>
<email>xie@yihui.name</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,4 +6,10 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<upstream>
<maintainer>
<name>Nuno Sempere</name>
<email>nuno.semperelh@gmail.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,12 +6,15 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Trellis Graphics for R // A powerful and elegant high-level data
visualization system inspired by Trellis graphics, with an
emphasis on multivariate data. Lattice is sufficient for
typical graphics needs, and is also flexible enough to handle
most nonstandard requirements. See ?Lattice for an
introduction.
</longdescription>
<longdescription lang="en">A powerful and elegant high-level data visualization
system inspired by Trellis graphics, with an emphasis on
multivariate data. Lattice is sufficient for typical graphics needs,
and is also flexible enough to handle most nonstandard requirements.
See ?Lattice for an introduction.</longdescription>
<upstream>
<maintainer>
<name>Deepayan Sarkar</name>
<email>deepayan.sarkar@r-project.org</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,10 +6,13 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Lazy (Non-Standard) Evaluation // An alternative approach to non-
standard evaluation using formulas. Provides a full
implementation of LISP style 'quasiquotation', making it easier
to generate code with other code.
</longdescription>
<longdescription lang="en">An alternative approach to non-standard evaluation using
formulas. Provides a full implementation of LISP style 'quasiquotation',
making it easier to generate code with other code.</longdescription>
<upstream>
<maintainer>
<name>Hadley Wickham</name>
<email>hadley@rstudio.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -1,20 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">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.</longdescription>
<upstream>
<bugs-to>https://github.com/r-lib/lifecycle/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web//packages/lifecycle/lifecycle.pdf</doc>
<changelog>https://cran.r-project.org/web//packages/lifecycle/news/news.html</changelog>
<maintainer>
<name>Lionel Henry</name>
<email>lionel@rstudio.com</email>
</maintainer>
<remote-id type="github">r-lib/lifecycle</remote-id>
</upstream>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">Manage the life cycle of your exported functions
with shared conventions, documentation badges, and user-friendly
deprecation warnings.</longdescription>
<upstream>
<bugs-to>https://github.com/r-lib/lifecycle/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web//packages/lifecycle/lifecycle.pdf</doc>
<changelog>https://cran.r-project.org/web//packages/lifecycle/news/news.html</changelog>
<maintainer>
<name>Lionel Henry</name>
<email>lionel@rstudio.com</email>
</maintainer>
<remote-id type="github">r-lib/lifecycle</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -1,19 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Provides a mechanism for chaining commands with a new forward-pipe operator, %>%. This operator will forward a value, or the result of an expression, into the next function call/expression. There is flexible support for the type of right-hand side expressions. For more information, see package vignette. To quote Rene Magritte, "Ceci n'est pas un pipe."
</longdescription>
<upstream>
<doc lang="en">https://cran.r-project.org/web/packages/magrittr/magrittr.pdf</doc>
<maintainer>
<name>Stefan Milton Bache</name>
<email>stefan@stefanbache.dk</email>
</maintainer>
</upstream>
<maintainer type="person">
<description>co-maintainers welcome</description>
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">Provides a mechanism for chaining commands with a new
forward-pipe operator, %&gt;%. This operator will forward a value, or the
result of an expression, into the next function call/expression.
There is flexible support for the type of right-hand side expressions.
For more information, see package vignette. To quote Rene Magritte,
"Ceci n'est pas un pipe."</longdescription>
<upstream>
<doc lang="en">https://cran.r-project.org/web/packages/magrittr/magrittr.pdf</doc>
<maintainer>
<name>Lionel Henry</name>
<email>lionel@rstudio.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,12 +6,14 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Render Markdown with the C Library 'Sundown' // Provides R
bindings to the 'Sundown' Markdown rendering library
(https://github.com/vmg/sundown). Markdown is a plain-text
formatting syntax that can be converted to 'XHTML' or other
formats. See http://en.wikipedia.org/wiki/Markdown for more
information about Markdown.
</longdescription>
<longdescription lang="en">Provides R bindings to the 'Sundown' Markdown rendering library
(&lt;https://github.com/vmg/sundown&gt;). Markdown is a plain-text formatting
syntax that can be converted to 'XHTML' or other formats. See
&lt;http://en.wikipedia.org/wiki/Markdown&gt; for more information about Markdown.</longdescription>
<upstream>
<maintainer>
<name>Yihui Xie</name>
<email>xie@yihui.name</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,16 +6,18 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Mixed GAM Computation Vehicle with Automatic Smoothness
Estimation // Generalized additive (mixed) models, some of
their extensions and other generalized ridge regression with
multiple smoothing parameter estimation by (Restricted)
Marginal Likelihood, Generalized Cross Validation and similar,
or using iterated nested Laplace approximation for fully
Bayesian inference. See Wood (2017) doi:10.1201/9781315370279
for an overview. Includes a gam() function, a wide variety of
smoothers, 'JAGS' support and distributions beyond the
exponential family.
</longdescription>
<longdescription lang="en">Generalized additive (mixed) models, some of their extensions and
other generalized ridge regression with multiple smoothing
parameter estimation by (Restricted) Marginal Likelihood,
Generalized Cross Validation and similar, or using iterated
nested Laplace approximation for fully Bayesian inference. See
Wood (2017) &lt;doi:10.1201/9781315370279&gt; for an overview.
Includes a gam() function, a wide variety of smoothers, 'JAGS'
support and distributions beyond the exponential family.</longdescription>
<upstream>
<maintainer>
<name>Simon Wood</name>
<email>simon.wood@r-project.org</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,9 +6,12 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Map Filenames to MIME Types // Guesses the MIME type from a
filename extension using the data derived from /etc/mime.types
in UNIX-type systems.
</longdescription>
<longdescription lang="en">Guesses the MIME type from a filename extension using the data
derived from /etc/mime.types in UNIX-type systems.</longdescription>
<upstream>
<maintainer>
<name>Yihui Xie</name>
<email>xie@yihui.name</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,13 +6,16 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Utilities for Using Munsell Colours // Provides easy access to,
and manipulation of, the Munsell colours. Provides a mapping
between Munsell's original notation (e.g. "5R 5/10") and
hexadecimal strings suitable for use directly in R graphics.
Also provides utilities to explore slices through the Munsell
colour tree, to transform Munsell colours and display colour
palettes.
</longdescription>
<longdescription lang="en">Provides easy access to, and manipulation of, the Munsell
colours. Provides a mapping between Munsell's
original notation (e.g. "5R 5/10") and hexadecimal strings suitable
for use directly in R graphics. Also provides utilities
to explore slices through the Munsell colour tree, to transform
Munsell colours and display colour palettes.</longdescription>
<upstream>
<maintainer>
<name>Charlotte Wickham</name>
<email>cwickham@gmail.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,8 +6,4 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Linear and Nonlinear Mixed Effects Models // Fit and compare
Gaussian linear and nonlinear mixed-effects models.
</longdescription>
</pkgmetadata>

View File

@@ -6,9 +6,12 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Feed-Forward Neural Networks and Multinomial Log-Linear Models //
Software for feed-forward neural networks with a single hidden
layer, and for multinomial log-linear models.
</longdescription>
<longdescription lang="en">Software for feed-forward neural networks with a single
hidden layer, and for multinomial log-linear models.</longdescription>
<upstream>
<maintainer>
<name>Brian Ripley</name>
<email>ripley@stats.ox.ac.uk</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -6,21 +6,15 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">
Toolkit for Encryption, Signatures and Certificates Based on
OpenSSL // Bindings to OpenSSL libssl and libcrypto, plus
custom SSH key parsers. Supports RSA, DSA and EC curves P-256,
P-384, P-521, and curve25519. Cryptographic signatures can
either be created and verified manually or via x509
certificates. AES can be used in cbc, ctr or gcm mode for
symmetric encryption; RSA for asymmetric (public key)
encryption or EC for Diffie Hellman. High-level envelope
functions combine RSA and AES for encrypting arbitrary sized
data. Other utilities include key generators, hash functions
(md5, sha1, sha256, etc), base64 encoder, a secure random
number generator, and 'bignum' math methods for manually
performing crypto calculations on large multibyte integers.
</longdescription>
<longdescription lang="en">Bindings to OpenSSL libssl and libcrypto, plus custom SSH key parsers.
Supports RSA, DSA and EC curves P-256, P-384, P-521, and curve25519. Cryptographic
signatures can either be created and verified manually or via x509 certificates.
AES can be used in cbc, ctr or gcm mode for symmetric encryption; RSA for asymmetric
(public key) encryption or EC for Diffie Hellman. High-level envelope functions
combine RSA and AES for encrypting arbitrary sized data. Other utilities include key
generators, hash functions (md5, sha1, sha256, etc), base64 encoder, a secure random
number generator, and 'bignum' math methods for manually performing crypto
calculations on large multibyte integers.</longdescription>
<upstream>
<bugs-to>https://github.com/jeroen/openssl/issues</bugs-to>
<doc lang="en">https://cran.r-project.org/web/packages/openssl/openssl.pdf</doc>

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

@@ -0,0 +1 @@
DIST parsedate_1.3.0.tar.gz 19781 BLAKE2B 0e696547f222d9ab4cc1ce5a2a797d1c766191fd217483a35ba79ad48f6c03890dceed4962ea6acdab74089168ec518c8867e3079d413c02856b36d5f7bbc759 SHA512 fcddd3916139ba29843842524b1140bf33fe267baf36888c3d70accf77125b7a7955757a5d74db0700caad1373ce4902df42795ea502e448aa825d6e02ca01dc

View File

@@ -6,7 +6,13 @@
<email>lssndrbarbieri@gmail.com</email>
<name>Alessandro Barbieri</name>
</maintainer>
<longdescription lang="en">Parse dates automatically, without the need of
specifying a format. Currently it includes the git date parser.
It can also recognize and parse all ISO 8601 formats.</longdescription>
<upstream>
<remote-id type="github">janestreet/expect_test_helpers_core</remote-id>
<maintainer>
<name>Gábor Csárdi</name>
<email>csardi.gabor@gmail.com</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,21 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit R-packages
DESCRIPTION='Recognize and Parse Dates in Various Formats'
HOMEPAGE="
https://github.com/gaborcsardi/parsedate
https://cran.r-project.org/package=parsedate
"
KEYWORDS="~amd64"
LICENSE='GPL-2'
SUGGESTED_PACKAGES="
sci-CRAN/covr
sci-CRAN/testthat
sci-CRAN/withr
"

Some files were not shown because too many files have changed in this diff Show More