From f0bf449c3a6b5f057d3581f5acbf15a274c26090 Mon Sep 17 00:00:00 2001 From: Andrea Postiglione Date: Mon, 14 Dec 2020 16:05:47 +0100 Subject: [PATCH 01/19] www-servers/thin-1.8.0: change category and some fix Signed-off-by: Andrea Postiglione --- dev-ruby/thin/thin-1.8.0.ebuild | 37 --------- {dev-ruby => www-servers}/thin/Manifest | 0 www-servers/thin/files/thin.confd-2 | 39 +++++++++ www-servers/thin/files/thin.initd-r4 | 87 +++++++++++++++++++++ {dev-ruby => www-servers}/thin/metadata.xml | 0 www-servers/thin/thin-1.8.0.ebuild | 87 +++++++++++++++++++++ 6 files changed, 213 insertions(+), 37 deletions(-) delete mode 100644 dev-ruby/thin/thin-1.8.0.ebuild rename {dev-ruby => www-servers}/thin/Manifest (100%) create mode 100644 www-servers/thin/files/thin.confd-2 create mode 100644 www-servers/thin/files/thin.initd-r4 rename {dev-ruby => www-servers}/thin/metadata.xml (100%) create mode 100644 www-servers/thin/thin-1.8.0.ebuild diff --git a/dev-ruby/thin/thin-1.8.0.ebuild b/dev-ruby/thin/thin-1.8.0.ebuild deleted file mode 100644 index e20cdff472..0000000000 --- a/dev-ruby/thin/thin-1.8.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -USE_RUBY="ruby24 ruby25 ruby26" - -inherit ruby-fakegem - -DESCRIPTION="This a Ruby gem that delivers a thin and fast web server" -HOMEPAGE="https://github.com/macournoyer/thin" -SRC_URI="https://github.com/macournoyer/thin/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Ruby" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -ruby_add_depend " - dev-ruby/eventmachine - dev-ruby/daemons - dev-ruby/rack -" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -each_ruby_configure() { - ${RUBY} -Cext/thin_parser extconf.rb || die -} - -each_ruby_compile() { - emake V=1 -Cext/thin_parser - cp ext/thin_parser/thin_parser.so lib/ || die -} - -all_ruby_install() { - ruby_fakegem_binwrapper thin -} diff --git a/dev-ruby/thin/Manifest b/www-servers/thin/Manifest similarity index 100% rename from dev-ruby/thin/Manifest rename to www-servers/thin/Manifest diff --git a/www-servers/thin/files/thin.confd-2 b/www-servers/thin/files/thin.confd-2 new file mode 100644 index 0000000000..ca89c44cfd --- /dev/null +++ b/www-servers/thin/files/thin.confd-2 @@ -0,0 +1,39 @@ +# /etc/conf.d/thin: Configuration for /etc/init.d/thin* +# Copy this file to /etc/conf.d/thin.SERVERNAME for server specific options. + +# Set the configuration file location. +# In start-all mode (/etc/init.d/thin), this must point to the directory where +# all the thin configurations are located. +# When starting a specific server (/etc/init.d/thin.SERVER), point to the exact +# location of the .yml configuration file. +# CONFIG="/etc/thin/${SVCNAME#*.}.yml" + +# Disable looking for a configuration file. +# You can use THIN_OPTS instead for setting command line options. +# NOCONFIG=0 + +# Set the Ruby interpreter to use. +# RUBY="/usr/bin/ruby" + +# Whether to start thin using `bundle exec' +# DO_BUNDLER=0 + +# What directory to cd into before starting thin +# (useful for DO_BUNDLER) +# CHDIR= + +# Set the user for this instance. +# (Should mirror "user" value in /etc/thin/${SVCNAME#*.}.yml) +# THIN_USER= + +# Set the group for this instance. +# (Should mirror "group" value in /etc/thin/${SVCNAME#*.}.yml) +# THIN_GROUP= + +# Set the pidfile for this instance. +# (Should mirror "pid" value in /etc/thin/${SVCNAME#*.}.yml) +# THIN_PID= + +# Set command line options to pass to thin. +# In specific server mode, '--tag SERVER_NAME' is automatically appended. +# THIN_OPTS= diff --git a/www-servers/thin/files/thin.initd-r4 b/www-servers/thin/files/thin.initd-r4 new file mode 100644 index 0000000000..9885a830e7 --- /dev/null +++ b/www-servers/thin/files/thin.initd-r4 @@ -0,0 +1,87 @@ +#!/sbin/openrc-run +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +SERVER=${SVCNAME#*.} +if [ ${SERVER} != thin ]; then + CONFIG=${CONFIG:-/etc/thin/${SERVER}.yml} +else + CONFIG=${CONFIG:-/etc/thin/} +fi +NOCONFIG=${NOCONFIG:-0} +RUBY=${RUBY:-/usr/bin/ruby} +DO_BUNDLER=${DO_BUNDLER:-0} +CHDIR=${CHDIR:-} +THIN_USER=${THIN_USER:-root} +THIN_GROUP=${THIN_GROUP:-root} +THIN_PID=${THIN_PID:-/var/run/thin/thin.pid} +THIN_OPTS=${THIN_OPTS:-} + +depend() { + need localmount +} + +checkconfig() { + if [ -n ${CHDIR} ]; then + cd "${CHDIR}" + + if [ $? -ne 0 ]; then + eerror "Cannot cd into requested directory" + return 1 + fi + fi + + [ ${SERVER} = thin -o ${NOCONFIG} != 0 ] && return 0 + + if [ ! -f ${CONFIG} ]; then + eerror "Unable to find the server configuration." + eerror "Please set the CONFIG variable in /etc/conf.d/${SVCNAME} or" + eerror "set NOCONFIG there to 1 to disable looking for a config file." + return 1 + fi +} + +buildargs() { + if [ ${NOCONFIG} = 0 -a ${SERVER} != thin ]; then + echo -n "-C ${CONFIG} " + fi + + echo -n "${THIN_OPTS}" +} + +action() { + checkconfig || return 1 + + [ ${DO_BUNDLER} -ne 0 ] && RUBY="${RUBY} /usr/bin/bundle exec" + + if [ ${SERVER} = thin ]; then + ebegin "$2 all thin servers in ${CONFIG}" + ${RUBY} /usr/bin/thin $1 $(buildargs) --all ${CONFIG} + eend $? + else + ebegin "$2 thin server ${SERVER}" + ${RUBY} /usr/bin/thin $(buildargs) --tag ${SERVER} $1 + eend $? + fi +} + +start() { + action start 'Starting' +} + +stop() { + action stop 'Stopping' +} + +restart() { + action restart 'Restarting' +} + +start_pre() { + # If the path to the pidfile is /var/run/thin/foo/thin.pid + # then checkpath will fail if /var/run/thin/ does not exist. + # This caught infra... + d=$(dirname ${THIN_PID}) + mkdir -p "$d" + checkpath -d -m 0775 -o ${THIN_USER}:${THIN_GROUP} "$d" +} diff --git a/dev-ruby/thin/metadata.xml b/www-servers/thin/metadata.xml similarity index 100% rename from dev-ruby/thin/metadata.xml rename to www-servers/thin/metadata.xml diff --git a/www-servers/thin/thin-1.8.0.ebuild b/www-servers/thin/thin-1.8.0.ebuild new file mode 100644 index 0000000000..bb8cdbb234 --- /dev/null +++ b/www-servers/thin/thin-1.8.0.ebuild @@ -0,0 +1,87 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +USE_RUBY="ruby24 ruby25 ruby26" + +inherit ruby-fakegem + +DESCRIPTION="This a Ruby gem that delivers a thin and fast web server" +HOMEPAGE="https://github.com/macournoyer/thin" +SRC_URI="https://github.com/macournoyer/thin/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Ruby" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +ruby_add_depend " + dev-ruby/eventmachine + dev-ruby/daemons + dev-ruby/rack +" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +all_ruby_prepare() { + # Fix Ragel-based parser generation (uses a *very* old syntax that + # is not supported in Gentoo) + sed -i -e 's: | rlgen-cd::' Rakefile || die + + # Fix specs' dependencies so that the extension is not rebuilt + # when running tests + rm tasks/spec.rake || die + + # Fix rspec version to allow newer 2.x versions + sed -i -e '/gem "rspec"/ s/1.2.9/2.0/' spec/spec_helper.rb || die + + # Avoid CLEAN since it may not be available and we don't need it. + sed -i -e '/CLEAN/ s:^:#:' tasks/*.rake || die + + # Disable a test that is known for freezing the testsuite, + # reported upstream. In thin 1.5.1 this just fails. + sed -i \ + -e '/should force kill process in pid file/,/^ end/ s:^:#:' \ + spec/daemonizing_spec.rb || die + + sed -i \ + -e '/tracing routines (with NO custom logger)/,/^ end/ s:^:#:'\ + spec/logging_spec.rb || die + + find spec/perf -name "*_spec.rb" -exec \ + sed -i '/be_faster_then/ i \ pending' {} \; + + sed -i -e "s/Spec::Runner/Rspec/" spec/spec_helper.rb || die + # nasty but too complex to fix up for now :( + use doc || rm tasks/rdoc.rake +} + + +each_ruby_configure() { + ${RUBY} -Cext/thin_parser extconf.rb || die +} + +each_ruby_compile() { + emake V=1 -Cext/thin_parser + cp ext/thin_parser/thin_parser.so lib/ || die +} + +all_ruby_install() { + ruby_fakegem_binwrapper thin +} + +all_ruby_install() { + all_fakegem_install + + keepdir /etc/thin + newinitd "${FILESDIR}"/${PN}.initd-r4 ${PN} + newconfd "${FILESDIR}"/${PN}.confd-2 ${PN} + + einfo + elog "Thin is now shipped with init scripts." + elog "The default script (/etc/init.d/thin) will start all servers that have" + elog "configuration files in /etc/thin/. You can symlink the init script to" + elog "files of the format 'thin.SERVER' to be able to start individual servers." + elog "See /etc/conf.d/thin for more configuration options." + einfo +} From 3dc60ca59d96a01cb752e05e59b3fe936fa57de1 Mon Sep 17 00:00:00 2001 From: Andrea Postiglione Date: Mon, 14 Dec 2020 16:17:43 +0100 Subject: [PATCH 02/19] www-servers/thin-1.8.0: add IUSE Signed-off-by: Andrea Postiglione --- www-servers/thin/thin-1.8.0.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/www-servers/thin/thin-1.8.0.ebuild b/www-servers/thin/thin-1.8.0.ebuild index bb8cdbb234..2715b040dc 100644 --- a/www-servers/thin/thin-1.8.0.ebuild +++ b/www-servers/thin/thin-1.8.0.ebuild @@ -14,6 +14,7 @@ SRC_URI="https://github.com/macournoyer/thin/archive/v${PV}.tar.gz -> ${P}.tar.g LICENSE="Ruby" SLOT="0" KEYWORDS="~amd64 ~x86" +IUSE="doc test" ruby_add_depend " dev-ruby/eventmachine From 3c782498b83df3db30f0d7300712591bbc64900b Mon Sep 17 00:00:00 2001 From: Azael Reyes Date: Mon, 14 Dec 2020 22:01:00 -0800 Subject: [PATCH 03/19] dev-libs/octetos-core: updating to 2.15.0 Signed-off-by: Azael Reyes Package-Manager: Portage-3.0.8, Repoman-3.0.1 --- dev-libs/octetos-core/Manifest | 1 + .../octetos-core-2.15.0_beta.ebuild | 35 +++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 dev-libs/octetos-core/octetos-core-2.15.0_beta.ebuild diff --git a/dev-libs/octetos-core/Manifest b/dev-libs/octetos-core/Manifest index 9ff9e49d35..3de700d390 100644 --- a/dev-libs/octetos-core/Manifest +++ b/dev-libs/octetos-core/Manifest @@ -1,5 +1,6 @@ DIST octetos-core-1.2.2_beta.tar.gz 121036 BLAKE2B 7dabc3013432ce5b7fd612a0b1634ebe5943a53de9031ccb7d7fd8fff95dd79f2d35553ec4b6b50e790bb115c762022c6f5d64d2525997e7af80bc7272d902ff SHA512 c7aef25a9547a202908a69679df42b8f7a988c3cbf8f87d1941aa6fb623d3979412900e97a41e3024d708dbd9cd968cecf57aa6f2ff20669c1e3e29947bd5571 DIST octetos-core-2.0.0_beta.tar.gz 122978 BLAKE2B 9ed7fcb95b9c2f85072bf73ac92710eaa9eb4c82e053f5f9b95220df47721ed115a2eeb32de9a19217cc97ad7b09797c03319df06bde3697a10ab81766d0bfa1 SHA512 fd35a35ddf18b869e393add16b237e7a489674b51b49ce6816367d95a0a8573dda90ac4e8c64ec35267e1192d63890b1a479ee7e5bb7162aa3c1858708fd95dd +DIST octetos-core-2.15.0_beta.tar.gz 96858 BLAKE2B eb49b8fb3b132a3f142a41735b9ad6f1190412dccdf6eb1fc8b83b9dafc8c8fc393d3ba2774b32664639dd85a227add3491732f6785a388089f0b8bd7c2cc995 SHA512 35846c2449966cca99bde02942e892ceb21223e40f35b4c1edf5d7a19c35ec26c301d6511d1cc3aa4c4142653e3e6ba1c82cfbddaa69e332fd2ce3bd79fc1791 DIST octetos-core-2.2.0_beta.tar.gz 123176 BLAKE2B f87131deccefce76a7fefb0e829564c166f01f316c54bd56e1283999434db809cb54be2278e1653dcb3a01a371b09b08fd95decf1b361c1515e5decf3609453d SHA512 10f70c02b7c0012f1dab31e96aa3337dccc662c51a31c2ad186b6e76815afa8645f3f2370d6eaa788cdbbded416bc36b53e1971005cca49ee10c0d8e6baac239 DIST octetos-core-2.2.1_beta.tar.gz 123179 BLAKE2B f31f1870c3467c02f2b7653dd81abdf44e1c8ab821d8ec404f0a9ddb296438caa631dd586c62727eb9ecaf83452a2b0923f2a72323e5a49e895b99b9296e409f SHA512 408569368b3dc2257149ad4c25c07a8deb3176fc6b08a003c98e59386ece3adcf0a45198b3802e3c0c1f537d4feb30703d5997f5bcae4e9d9e708829da46a843 DIST octetos-core-2.3.0_beta.tar.gz 123195 BLAKE2B 2590f495f8890301f2731463139f0ca653beba496b33d592e1000a64a8d773335d821990e2ad128d969bf50794ce55a5da71ba2cfff0fc307a6166238206806d SHA512 0e2e28c7c1109a9b5ec7b2a493a9aba747b2c88a83286b561487e3fec20ee1fba4d9b292f5b47cebf8cc90fbe011566314a98366bf2e7beb800b9c1e8baf839e diff --git a/dev-libs/octetos-core/octetos-core-2.15.0_beta.ebuild b/dev-libs/octetos-core/octetos-core-2.15.0_beta.ebuild new file mode 100644 index 0000000000..8254ceaea0 --- /dev/null +++ b/dev-libs/octetos-core/octetos-core-2.15.0_beta.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +MYPV="${PV/_beta/-beta/}" + +DESCRIPTION="C/C++ library to mainly provide Semantic Versioned implementation" +HOMEPAGE="https://github.com/azaeldevel/octetos-core" +SRC_URI="https://github.com/azaeldevel/${PN}/archive/${MYPV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + dev-libs/libconfig + dev-perl/XML-Parser +" +RDEPEND="${DEPEND}" +BDEPEND=" + dev-util/cunit + dev-util/intltool + sys-devel/bison + >=sys-devel/gcc-8.1 +" + +S="${WORKDIR}/${PN}-${MYPV}" + +src_prepare() { + default + eautoreconf -fi +} From 7fb66236859c86c578108b161fa98008b7de5171 Mon Sep 17 00:00:00 2001 From: Azael Reyes Date: Mon, 14 Dec 2020 22:14:49 -0800 Subject: [PATCH 04/19] dev-libs/octetos-coreutils: updating to 0.12.0 Signed-off-by: Azael Reyes Package-Manager: Portage-3.0.8, Repoman-3.0.1 --- dev-libs/octetos-coreutils/Manifest | 1 + .../octetos-coreutils-0.12.0_alpha.ebuild | 34 +++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 dev-libs/octetos-coreutils/octetos-coreutils-0.12.0_alpha.ebuild diff --git a/dev-libs/octetos-coreutils/Manifest b/dev-libs/octetos-coreutils/Manifest index 519468ed8d..2161d89803 100644 --- a/dev-libs/octetos-coreutils/Manifest +++ b/dev-libs/octetos-coreutils/Manifest @@ -1,4 +1,5 @@ DIST octetos-coreutils-0.11.1_alpha.tar.gz 31386 BLAKE2B 1a5367617f7b5ce8a3138ec4bb89a3417277a40a55811b57819a6d4f16bef1fc1821880bfe33bc6a34c26df434066a8bdd8e467685e7038e2a3896443d75947e SHA512 7fae5359ee39135496dcd777d4750c8b5c5175b318ef066b0d94fae6f48af75a731a56e0d4f9d3b4669910b9cfa7aed7f26d67085bc2f60237dabc5eedf75325 +DIST octetos-coreutils-0.12.0_alpha.tar.gz 32900 BLAKE2B 056574e81a8a25e0b332ee51c57aef4324dce2cc85762c0188e48213f6ee30898fd94d297050523df517c5b6adf061c7b352b8bd9356f010513456b96226180f SHA512 d32314aca16491b16c0eac49ebe1e2b7e500a061e57484f6c113909fc88778f8db2082392650dc6e00e02d7ebac416cbecd1764787f438969ac9db2194295ee3 DIST octetos-coreutils-0.3.0_alpha.tar.gz 56341 BLAKE2B f6eccfef565a3303939fefd45d9d0d10847032eb747ba9dc4fdca0f6d43aaf27aa6fc08273b89299cf071a5b0087c67a8eabecbba6542ab1b1ed7b9862397ebc SHA512 155fbf160edb48ad763e17ef2051b3b2e4b16c3bfda8156377d37d2d03710e7c7b933fbc02dfcba9deecedd844c770e2d116a3a1ff9535b407978a98e89bccdf DIST octetos-coreutils-0.4.0_alpha.tar.gz 56491 BLAKE2B b9438147acff96b81cacc21e59837c1f39c06c46ae4775ea3c6341f4168bde949bc348944807abc0b39b0936a61a871fd50852ac25c6e7af913597f7cc57035c SHA512 020830eced735604ce1fbdc2c1f54524c423b151319dcf161616f7654e04f0adf6a7726450f76bbbe4fc7eaa241d44c98a961b9157c277e3080dbdbea5de2093 DIST octetos-coreutils-0.4.0_alpha2.tar.gz 56491 BLAKE2B b9438147acff96b81cacc21e59837c1f39c06c46ae4775ea3c6341f4168bde949bc348944807abc0b39b0936a61a871fd50852ac25c6e7af913597f7cc57035c SHA512 020830eced735604ce1fbdc2c1f54524c423b151319dcf161616f7654e04f0adf6a7726450f76bbbe4fc7eaa241d44c98a961b9157c277e3080dbdbea5de2093 diff --git a/dev-libs/octetos-coreutils/octetos-coreutils-0.12.0_alpha.ebuild b/dev-libs/octetos-coreutils/octetos-coreutils-0.12.0_alpha.ebuild new file mode 100644 index 0000000000..95353f5c95 --- /dev/null +++ b/dev-libs/octetos-coreutils/octetos-coreutils-0.12.0_alpha.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +MYPV="${PV/_alpha/-alpha}" +MYP="${PN}-${MYPV}" + +DESCRIPTION="Similar to coreutils but is a C++ API." +HOMEPAGE="https://github.com/azaeldevel/octetos-coreutils" +SRC_URI="https://github.com/azaeldevel/${PN}/archive/${MYPV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +IUSE="" + +DEPEND="dev-libs/octetos-core" +RDEPEND="${DEPEND}" +BDEPEND="dev-util/cunit" + +S="${WORKDIR}/${MYP}" + +src_prepare() { + default + eautoreconf -fi +} + +src_configure() { + econf +} From 1cf8558d4ef0b7aec89edb4446124b224d316723 Mon Sep 17 00:00:00 2001 From: Theo Anderson Date: Tue, 15 Dec 2020 20:43:43 +1300 Subject: [PATCH 05/19] dev-python/python-mpv-jsonipc: bump to 1.1.13 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Theo Anderson --- dev-python/python-mpv-jsonipc/Manifest | 1 + .../python-mpv-jsonipc-1.1.13.ebuild | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 dev-python/python-mpv-jsonipc/python-mpv-jsonipc-1.1.13.ebuild diff --git a/dev-python/python-mpv-jsonipc/Manifest b/dev-python/python-mpv-jsonipc/Manifest index b23bf88252..3d5c27ad12 100644 --- a/dev-python/python-mpv-jsonipc/Manifest +++ b/dev-python/python-mpv-jsonipc/Manifest @@ -1,2 +1,3 @@ DIST python-mpv-jsonipc-1.1.11.tar.gz 7505 BLAKE2B bee145df85cc822c3797582b7ec66ed2d32eb01eb84f66a24c7504b4ebec164d18a047cbc6eb808e1e4fbdcb5d324ef6b340ec3f3d631b7e8eae23a6c686fb3f SHA512 6a4383349cc335adf750028223ed0e4dbaeaa90b11e59a5205778b58ac64992b60377ccf2626c512820178d50add2e1d98bb809a6e1e9759af69ae96f86350a1 DIST python-mpv-jsonipc-1.1.12.tar.gz 7575 BLAKE2B 24be588022c38bff75b16a39b5fdde0603afff9f2311deba334a5ff6e7520803e1ad381b067ae14109d83c655758f46541012009364624ea6dffadc5ffe2c3ad SHA512 64aa97f6b04e6e5529beb54530716d8749178a5b4d7cd88537bcbba4d72805562d80a9159663338c15e8c9801c99a3746e9c95c592c1f75a3bfcaa2f6d0f28b3 +DIST python-mpv-jsonipc-1.1.13.tar.gz 7560 BLAKE2B aeba9360400752baf412a43051782f950013b4408911d1faedbb652d5f28ff3fa9aa2df07ac280e4e5102236ae655b933d662576b66e57507f76fb76a309c21f SHA512 cc99048f03eb57a718209121fe471cc5e196514f58dce19ecbb352c0c3032e2722098597f5a4511942b76672d8aae34464f16809cf50abb203cea24e70e32ec3 diff --git a/dev-python/python-mpv-jsonipc/python-mpv-jsonipc-1.1.13.ebuild b/dev-python/python-mpv-jsonipc/python-mpv-jsonipc-1.1.13.ebuild new file mode 100644 index 0000000000..864c0eed5a --- /dev/null +++ b/dev-python/python-mpv-jsonipc/python-mpv-jsonipc-1.1.13.ebuild @@ -0,0 +1,16 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) + +inherit distutils-r1 + +DESCRIPTION="Python API to MPV using JSON IPC" +HOMEPAGE="https://github.com/iwalton3/python-mpv-jsonipc" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" From 2d7963fa101ae77c6fe18b128b53f9ba09e629a3 Mon Sep 17 00:00:00 2001 From: Theo Anderson Date: Tue, 15 Dec 2020 20:45:08 +1300 Subject: [PATCH 06/19] dev-python/python-mpv-jsonipc: drop old Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Theo Anderson --- dev-python/python-mpv-jsonipc/Manifest | 1 - .../python-mpv-jsonipc-1.1.11.ebuild | 16 ---------------- 2 files changed, 17 deletions(-) delete mode 100644 dev-python/python-mpv-jsonipc/python-mpv-jsonipc-1.1.11.ebuild diff --git a/dev-python/python-mpv-jsonipc/Manifest b/dev-python/python-mpv-jsonipc/Manifest index 3d5c27ad12..5d90757a5b 100644 --- a/dev-python/python-mpv-jsonipc/Manifest +++ b/dev-python/python-mpv-jsonipc/Manifest @@ -1,3 +1,2 @@ -DIST python-mpv-jsonipc-1.1.11.tar.gz 7505 BLAKE2B bee145df85cc822c3797582b7ec66ed2d32eb01eb84f66a24c7504b4ebec164d18a047cbc6eb808e1e4fbdcb5d324ef6b340ec3f3d631b7e8eae23a6c686fb3f SHA512 6a4383349cc335adf750028223ed0e4dbaeaa90b11e59a5205778b58ac64992b60377ccf2626c512820178d50add2e1d98bb809a6e1e9759af69ae96f86350a1 DIST python-mpv-jsonipc-1.1.12.tar.gz 7575 BLAKE2B 24be588022c38bff75b16a39b5fdde0603afff9f2311deba334a5ff6e7520803e1ad381b067ae14109d83c655758f46541012009364624ea6dffadc5ffe2c3ad SHA512 64aa97f6b04e6e5529beb54530716d8749178a5b4d7cd88537bcbba4d72805562d80a9159663338c15e8c9801c99a3746e9c95c592c1f75a3bfcaa2f6d0f28b3 DIST python-mpv-jsonipc-1.1.13.tar.gz 7560 BLAKE2B aeba9360400752baf412a43051782f950013b4408911d1faedbb652d5f28ff3fa9aa2df07ac280e4e5102236ae655b933d662576b66e57507f76fb76a309c21f SHA512 cc99048f03eb57a718209121fe471cc5e196514f58dce19ecbb352c0c3032e2722098597f5a4511942b76672d8aae34464f16809cf50abb203cea24e70e32ec3 diff --git a/dev-python/python-mpv-jsonipc/python-mpv-jsonipc-1.1.11.ebuild b/dev-python/python-mpv-jsonipc/python-mpv-jsonipc-1.1.11.ebuild deleted file mode 100644 index 864c0eed5a..0000000000 --- a/dev-python/python-mpv-jsonipc/python-mpv-jsonipc-1.1.11.ebuild +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) - -inherit distutils-r1 - -DESCRIPTION="Python API to MPV using JSON IPC" -HOMEPAGE="https://github.com/iwalton3/python-mpv-jsonipc" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" From 931c0a8bfcba8eac66e80072e70a515a0f90cfb7 Mon Sep 17 00:00:00 2001 From: Theo Anderson Date: Tue, 15 Dec 2020 20:45:52 +1300 Subject: [PATCH 07/19] media-video/jellyfin-mpv-shim: bump to 1.8.1 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Theo Anderson --- media-video/jellyfin-mpv-shim/Manifest | 1 + .../jellyfin-mpv-shim-1.8.1.ebuild | 57 +++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 media-video/jellyfin-mpv-shim/jellyfin-mpv-shim-1.8.1.ebuild diff --git a/media-video/jellyfin-mpv-shim/Manifest b/media-video/jellyfin-mpv-shim/Manifest index f148292073..574efc84db 100644 --- a/media-video/jellyfin-mpv-shim/Manifest +++ b/media-video/jellyfin-mpv-shim/Manifest @@ -1,3 +1,4 @@ DIST jellyfin-mpv-shim-1.8.0.tar.gz 174078 BLAKE2B 9800bf8302c2da91bc1b40dbf9bb9fa50b185811cec8fbc177e54bde3e24045ee0276e7d352ba2d96ff0d9ce0a5c4db91f7ccb30b3bd12d58ac5514249e10aa1 SHA512 9391bb27dff24ca7abb2266ceb9e5b3c64943c7d573b671b38edbe19d6253220ab7a2dc8b0aca58267057ad3c3754bfba74c6b904c4d7328fd5eb40a27422826 +DIST jellyfin-mpv-shim-1.8.1.tar.gz 199229 BLAKE2B 1f3540bd691e84860f7d4447c94bb032da11384050e94a578b90a66a4916436bd703fe287f7b1889c2ff2463252c43fc04b3d7d75462271a422cb4e3b44ff856 SHA512 dfe48c0a262a4fbe3bdf8680d1b4bf94f76306816610785d4a31be3baef7154a63f0f38cbd9d8be11f22f6cb133090159c7914195994108c0e8738ace44e6804 DIST jellyfin-mpv-shim-shader-pack-1.1.0.tar.gz 1326518 BLAKE2B ef1d1c699698cc62163b903e20e4a9cbad14169f2aca1058e58da5102e72be4291504cbad5bb877820fb7d4ed6749b04319bca7d210bfcf103693be9a0cc4e69 SHA512 26cacd859c0d0fef06fbd598007f291a652fd52d617af2df71104f705156ae78665dee2ae963f3e7bdb01e91d3fa41f555824a47f9d621d1627a06b2b5f9ba75 DIST jellyfin-web-1.6.2.zip 36138526 BLAKE2B 29248f99bf40c252a31f0b294f239e80909f7b4471945ef3fd767748af3b1fbf1a240edc80b7332d3371fcb03ef128f5f93b04867d99cf5efd9a361a44b7924e SHA512 f92af66cee0a54a41cd16079839bd785c33565db9d3c8263203b9939a531a017d2cdf049ed9f7c322c90175633face34ee6b607e467cb599884f40c43d99920c diff --git a/media-video/jellyfin-mpv-shim/jellyfin-mpv-shim-1.8.1.ebuild b/media-video/jellyfin-mpv-shim/jellyfin-mpv-shim-1.8.1.ebuild new file mode 100644 index 0000000000..13ac4d7ce5 --- /dev/null +++ b/media-video/jellyfin-mpv-shim/jellyfin-mpv-shim-1.8.1.ebuild @@ -0,0 +1,57 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..8} ) +PYTHON_REQ_USE="tk" +DISTUTILS_SINGLE_IMPL=1 +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +SHADER_PV="1.1.0" +WEB_PV="1.6.2" + +DESCRIPTION="MPV-based desktop and cast client for Jellyfin (Unofficial)" +HOMEPAGE="https://github.com/iwalton3/jellyfin-mpv-shim" +SRC_URI=" + https://github.com/iwalton3/jellyfin-mpv-shim/archive/v${PV}.tar.gz -> ${P}.tar.gz + https://github.com/iwalton3/default-shader-pack/archive/v${SHADER_PV}.tar.gz -> jellyfin-mpv-shim-shader-pack-${SHADER_PV}.tar.gz + https://github.com/iwalton3/jellyfin-web/releases/download/jwc${WEB_PV}-1/dist.zip -> jellyfin-web-${WEB_PV}.zip +" + +LICENSE="LGPL-3+ MIT Unlicense" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + app-arch/unzip + $(python_gen_cond_dep ' + dev-python/python-mpv[${PYTHON_USEDEP}] + dev-python/jellyfin-apiclient-python[${PYTHON_USEDEP}] + dev-python/python-mpv-jsonipc[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/pydantic[${PYTHON_USEDEP}] + ') +" +RDEPEND=" + ${DEPEND} + dev-libs/libappindicator:3= + $(python_gen_cond_dep ' + dev-python/flask[${PYTHON_USEDEP}] + dev-python/jinja[${PYTHON_USEDEP}] + dev-python/pillow[${PYTHON_USEDEP}] + dev-python/pystray[${PYTHON_USEDEP}] + >=dev-python/pywebview-3.3.1[${PYTHON_USEDEP}] + dev-python/werkzeug[${PYTHON_USEDEP}] + ') +" + +src_install() { + distutils-r1_src_install + insinto "$(python_get_sitedir)/${PN//-/_}/webclient_view/webclient" # jellyfin-web dist + doins -r "${WORKDIR}"/dist/* + insinto "$(python_get_sitedir)/${PN//-/_}/default_shader_pack" # mpv shaders + doins -r "${WORKDIR}"/default-shader-pack-${SHADER_PV}/* +} From 78855b7db4865ac0187584e9cee90d089e8d4015 Mon Sep 17 00:00:00 2001 From: Theo Anderson Date: Tue, 15 Dec 2020 20:49:00 +1300 Subject: [PATCH 08/19] app-admin/antidot: bump to 0.4.1 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Theo Anderson --- app-admin/antidot/Manifest | 11 + app-admin/antidot/antidot-0.4.1.ebuild | 373 +++++++++++++++++++++++++ 2 files changed, 384 insertions(+) create mode 100644 app-admin/antidot/antidot-0.4.1.ebuild diff --git a/app-admin/antidot/Manifest b/app-admin/antidot/Manifest index 593986b7b2..c2011c8650 100644 --- a/app-admin/antidot/Manifest +++ b/app-admin/antidot/Manifest @@ -13,6 +13,8 @@ DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.0.0.mod 374 BLAKE2B 4fef9f7da9f23 DIST dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.mod 36 BLAKE2B b430ef9388b0dfe932b201495a00275a6036338c99160d7362556be1e25924584b0802061d193533f23b1f76719dfd6a9484572babd25f1af0e53fd9bf07ac00 SHA512 196affe091247f94ceda4b56629bd62d4ee2b397f2c0f56c9534c02e43531b46705ad33543b58c1a4fc7a48e25e5923db087fe0485a93966a4086581c0d1d3e1 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.2.mod 719 BLAKE2B d95afef5c101e842eb6754ce837753f0d953c76546b5cfa0a25b672e42db57b78e7fcf9fbc48dab261301c448a811818f53aabb251edf6cb209adf196a5cc0a8 SHA512 11355981fa0cc2c28a274175a123c7a3ac5dab596ea08faa429da137611bcfacfa15b38110943b520a99565776039f2c48c5474eade25aa64b8eb5a3fdb3f098 DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.2.zip 154687 BLAKE2B e0f40114197a7b3fac1c2157407e0cd16e8e703124a00d5ed8378ca7614280e0ff82db9244eca6a2e4af604e78c0c315d992c74b8c58a151065a519e913b655d SHA512 cd0ca2f92c05614749b27f7a2208be174a31b4f25728b219e7b5e03f15d668f853700c3cebdd959a56b98252fd9810ffde2587f61a72f2d1c0057de9bdb92506 +DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.5.mod 719 BLAKE2B d95afef5c101e842eb6754ce837753f0d953c76546b5cfa0a25b672e42db57b78e7fcf9fbc48dab261301c448a811818f53aabb251edf6cb209adf196a5cc0a8 SHA512 11355981fa0cc2c28a274175a123c7a3ac5dab596ea08faa429da137611bcfacfa15b38110943b520a99565776039f2c48c5474eade25aa64b8eb5a3fdb3f098 +DIST github.com%2F!alec!aivazis%2Fsurvey%2Fv2%2F@v%2Fv2.2.5.zip 155176 BLAKE2B 49211d3b0f1e63b88ab40fc337651b05921918c5ac96c0b71410c1eabec633b2a05f9b9288686f8271c83cd64668ce2aeac56ff10c2a637305398cad75f9ebab SHA512 480d6c708fc50230bb37369c2f27455c040cce5c1154de047c24e8ce7aa1beb6d38b14d237abc31703f95a01420db310145683b8698d314ffa8e11fcd19c7b74 DIST github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod 34 BLAKE2B ce54a247aef91043830bdf0603c8452ba38eceb1495af6e7a74c9119234a0dc5cd080cb25258c28f5e270acf91189a5ed33e361cbf17de2be5e37dadbda1d90d SHA512 320941bc3b7fb8bc595e6135cbc513a7583d129f0cd92508055291e141191066303cf75148e25198c21f6c6c539a790ea3210f3ecf5de6a2a03b70c753091146 DIST github.com%2F!burnt!sushi%2Fxgb%2F@v%2Fv0.0.0-20160522181843-27f122750802.mod 33 BLAKE2B d234bf9be3dd919cb1f8d33750a24dca68c90fea110fd0ff62f0dba86d2ebbfc66d55fea62745b6383c5607bc91cfd78c9d2cf12df251397e85995c04707caa2 SHA512 dbfa64ac31b25fdbff12110c6f9815abfde65f281e40852e7165499a2cefb6656c74fe0b82f0f018304daa02b83b421e9c15654efabad39787c69c1b2996a79d DIST github.com%2F!netflix%2Fgo-expect%2F@v%2Fv0.0.0-20180615182759-c93bf25de8e8.mod 36 BLAKE2B 000094171fec75b4e45d40bf820417400401971e3f18eb68588d15466e709097607b89ba18c8d8b6d2d658e4f718ab0662cc605c76c955464d9e6d45609945f5 SHA512 a1e0fa80fdf59962a05f1f6b1232c17f301010ada93a8628a89ea187de325c75f7d85359306c613371552671ffef2e513938e2d2ff57731dd2b226a54f87049d @@ -20,6 +22,8 @@ DIST github.com%2F!netflix%2Fgo-expect%2F@v%2Fv0.0.0-20180615182759-c93bf25de8e8 DIST github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.mod 34 BLAKE2B 83966cb7de9bb687f99f17c5c89c03718258d2df34e3dda01b96a2fcb1273a0ba0e3253ba5950d5458193d3e54962371317a8fe85020ae338b44e864bd96667f SHA512 9081c69a2480ef726f547047306dc9136211ac7550882e68d458e2c04e5343366cb08f20525a51c804ab9a554dfe8363a1d9660bc0f9e501e1d996f7b6f320e4 DIST github.com%2Fadrg%2Fxdg%2F@v%2Fv0.2.2.mod 80 BLAKE2B d33149d8f400ae7fc0e0a02d74bc7a917d48d56b144fe699e01e479f60bda6c132c673bce8432031f9ffc9ecaa83907dbc299391b7c7e6590f9eaf57dc713b45 SHA512 f0652d7667b3c2aea72c784b441da178ccb9406b21fb3353ce8ee73ac50111cf0106e5d5448b0e498677c1856c0c387ac926c67fad49914250375133427a0879 DIST github.com%2Fadrg%2Fxdg%2F@v%2Fv0.2.2.zip 19713 BLAKE2B a97cfd56e4d2c4e606c7e81bd8e380a829dbb4ac155d9fd28ac9027671f55af9a9007612d67000ac3d1421f8276ebcaa46471f30c5cafc6772e151ed4dad3e37 SHA512 43fb63735ba43141228b3d1b55e2047220aae3ea3477c618bfb0de6e9d94fabde20356f58e8bf14e7f89b9b52e56d7ef0b0bbd2f38cd8ed543b337e92730c076 +DIST github.com%2Fadrg%2Fxdg%2F@v%2Fv0.2.3.mod 80 BLAKE2B d33149d8f400ae7fc0e0a02d74bc7a917d48d56b144fe699e01e479f60bda6c132c673bce8432031f9ffc9ecaa83907dbc299391b7c7e6590f9eaf57dc713b45 SHA512 f0652d7667b3c2aea72c784b441da178ccb9406b21fb3353ce8ee73ac50111cf0106e5d5448b0e498677c1856c0c387ac926c67fad49914250375133427a0879 +DIST github.com%2Fadrg%2Fxdg%2F@v%2Fv0.2.3.zip 20501 BLAKE2B c4a726c7ace1922ae9ba9614a74a2546ea1b23a1644ff15ac0bbdee172cc5eb391ceba6ced765c1f22362b7a44ec1db3e2b3fa5208a1cb48650d490e21f3ddb5 SHA512 68307852f4c4d4bed89c59977e55c9bbccc819293d0ae41c1b63a677c822dcbd499c13b155ba11f869dfedf66bfdbf6b6dfeb45427f3e39a80a539649da55be0 DIST github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20160405071501-a0175ee3bccc.mod 38 BLAKE2B 2e1a897393e3527f0f82e6ab9baf62558d9cf54b56ada5d79aa1b206128de30395d9082bc600c4aa2a17e81095e429cc5874de95047854531cccc9ea0b867de7 SHA512 072ca7ba3d5ca815f58848db201002cc572d95334aeacfe44cb226505ad20d82ce06eb2ee059650912ae499db6291822c583296cb65a66e54adce62d6d850929 DIST github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20151022065526-2efee857e7cf.mod 35 BLAKE2B 873b4b9c8491117a0b99bcc183ae96fc7e392c68d7271b73b5d7876574a5c7d67580425b35445ff2fff326c5cc7f328326d5d11946699c213cb2b84e8a9a0aad SHA512 7f23b8c5622c02b295646c7baf6f2ea3dd01e11e18ac9c263b853c7f771f5d098d8bcb75971f0cdc33d1c4765b563f3382ec5dc4bf20010065c3f1bc94e93175 DIST github.com%2Farmon%2Fcircbuf%2F@v%2Fv0.0.0-20150827004946-bbbad097214e.mod 32 BLAKE2B f5b653f20e85bc44cbd3882fdd8f425c0b71733eae4bcdf2623952f1ed2524e8067a169f1cc0025f6570aaa4653969baa7d4626db6cf0dccb0d7378cc36da6b2 SHA512 a201f9c169bba0d962c2595ee8c625a2b7e39873e4bb3eb1ca646340638917dabb2309f1ba4b71d9fca4cf2da2d3684076c67ba362dd07a39538a45240f7f987 @@ -67,6 +71,8 @@ DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.2.0.zip 74164 BLAKE2B 6a3c04c2986b35 DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.3.0.mod 40 BLAKE2B c717b6aaf18662c20120746a021b0ca878e7b190b3456cab24ec98032390a85b0af8540295e470647d403bf1beb582c8f8a74fa7129c4cbf747257206235c5a5 SHA512 351dc24af135b9c9d714aadce40fe9fa1ec05a35a4df90af79926d5119c3f33a6510ab9d78243748d7dad10bd2178f47d342ea2389972b88d5e9b4be6dee7daa DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.3.mod 105 BLAKE2B ffd22df03c1b351fb766a97818d46cc6aebeef365632d5263c90cf45a4acffdf5811da10ea2cd4747bc9691f74661c0b655961a065ed15a0194eeb4d1d12ca9b SHA512 cb203760fc6ca9c9d64811cf1342752faa5a95f27934c298407dc865f9561081210dd1b82b15ee2f5337b70d4c55d102d8884b5b9a5f70d9cbf85227a32b9713 DIST github.com%2Fgoogle%2Fgo-cmp%2F@v%2Fv0.5.3.zip 128502 BLAKE2B ef97c0c1a5cf29f7783ccc29c2c814514df1ac440220e7cf7ff9e9e02482d7e2643fc2d29e785d1ef306120e6dc9421341bcba9d6c0893f5c11e6d285c9d60bc SHA512 244978b1d80efb4754617428c690b421c1cdf5840ae33676576e2e028352ca9804bfadd31f3329bf0b35413e074e1269fd8a4eaf64d13a53f331c12ef3848734 +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.4.zip 128896 BLAKE2B 4981d158f2cbe026d5b56192173ff9da3ee72a91c766235e485530d30524066f4c619e7beb7e8daaf8f38746239516e754be3915126a908910faa812fcc55b38 SHA512 371abaf9db7012c40704d4f5ff322dafa27211f434b477a632f88e57db3f2cda168cef55c293262425a1039caed3bee9a65d48fa8b3d71680d66d3cc041de845 DIST github.com%2Fgoogle%2Fmartian%2F@v%2Fv2.1.0+incompatible.mod 33 BLAKE2B 694b57887cca857fe6950b0df444dc6e3d757dde540c1846ddcd4bb8f96a5eef3f469eaec30cf415541ff2f53acaafffbf4032189122875603d7e5e3dad2ef97 SHA512 cffb5dc1c6531ae9d5998b3a57ba14de5dd8631a36dd48975da07ce5ec052d97b6f632c5d30ab9ab695f178758837aae8a6344c67d57c7a39ca8e9243f8211df DIST github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20181206194817-3ea8567a2e57.mod 31 BLAKE2B 705b12f16ca8f0258457d0972bc8845b553e9e8d9001de0f4a4a548afe23424b0902fee4c84e94bcbc4615401d1369730a60bc57de85aa674300c1a96ad1f128 SHA512 c7e8b1bdd0360b88ccdcfd0cfe73e5cce50010a21db41ec2d533f7863b67930fbb84f430b9ffb663c394256628b05e884b812c040354779e0fdac2a422ac57e9 DIST github.com%2Fgoogle%2Fpprof%2F@v%2Fv0.0.0-20190515194954-54271f7e092f.mod 31 BLAKE2B 705b12f16ca8f0258457d0972bc8845b553e9e8d9001de0f4a4a548afe23424b0902fee4c84e94bcbc4615401d1369730a60bc57de85aa674300c1a96ad1f128 SHA512 c7e8b1bdd0360b88ccdcfd0cfe73e5cce50010a21db41ec2d533f7863b67930fbb84f430b9ffb663c394256628b05e884b812c040354779e0fdac2a422ac57e9 @@ -141,6 +147,8 @@ DIST github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv0.0.0-20160808181253-ca63d7c0 DIST github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.1.2.mod 41 BLAKE2B 291f73049327af60c94a2b2113b8e370f90d2a3fc7074c58ac523ce2a613ebada88ce048a73cf882c68ff552dd6df0be42f796f4ed11a549c0b7ca6c67f61c38 SHA512 7816e3703475601df65f20ad4e5d1f6bbedc4a7c87c594518358c1a9c24421aa5ccb6e8389ad983a514a823674c6f0f771f1f367b10d99691dbd8db7105ec44e DIST github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.3.3.mod 50 BLAKE2B 59fc5ab80023eb3670c6f77e705dfb39bfbe64511e5222558ac6debc1f3786782e4e75954b89ba17dfc58ce463d8c9ac0807d448a41eb630cf5e0c4f51782df5 SHA512 408cfe4466cf47530cfdf1bb6ff94b5d77b17208a2a9b3d2bfb63b4853a68f46ba707c604bf03e2173f80dfe480bcf4c0be5b3f48872cc865ac0bac3d488f7b0 DIST github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.3.3.zip 31024 BLAKE2B 0764e170ebb5ee0b3c4a827b6df9eb62d6804202375a3c37b115879f7c716c026f80aa08118b6bb7ac1a1572070efe8acb235e1ae2e1a4f154a5cff4f4a4bc80 SHA512 e61765ecbb25ee639710d666f5523cbdca9ac5792782926d5ae7e0b13545e0bc5d0aa5d090bfb5e2b6ea218b55fa3fe4ceb8a51e5ac432f7d6e5c9eb86aa043c +DIST github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.4.0.mod 50 BLAKE2B 59fc5ab80023eb3670c6f77e705dfb39bfbe64511e5222558ac6debc1f3786782e4e75954b89ba17dfc58ce463d8c9ac0807d448a41eb630cf5e0c4f51782df5 SHA512 408cfe4466cf47530cfdf1bb6ff94b5d77b17208a2a9b3d2bfb63b4853a68f46ba707c604bf03e2173f80dfe480bcf4c0be5b3f48872cc865ac0bac3d488f7b0 +DIST github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.4.0.zip 32411 BLAKE2B cc45d6d4c837e1b61a7efeaccc85109b4078947708834bf7846f6f2f94ada2d8c36946cec49d716169059466b3b6c061fae5cbb4d809f0599197fec8a6529b68 SHA512 2e1ae17da5121647697a24732e5f35afc8a9e195c5a380710161e43fb00c62a93c8527ea24a7025ad8dd868471f753e7d0f6432135b6f3ca2c350089050f914f DIST github.com%2Fmodern-go%2Fconcurrent%2F@v%2Fv0.0.0-20180306012644-bacd9c7ef1dd.mod 39 BLAKE2B a4d082021123db99b5d72a1d8d0011a517a79ff7b07238f0f01e550be684f18be03907b6280e673aaabee5ea837ce14b9e4daf278a23605c8dca8fba76bf40ac SHA512 4f29e15b1d18a8952c14f5142aa863b77b7be820129512cfeb3f8bc3335ff637a8a86c0284832a20543abc2c5351a3c0f992d52db895385e45f176af899b5844 DIST github.com%2Fmodern-go%2Freflect2%2F@v%2Fv1.0.1.mod 37 BLAKE2B 3643a4250f81729708917dc751cbff6ab6e37761ca94784062a4eaf243682a9e2c755ce793024cba1737d0eee1c52c29984fe3008a2471ed24a759da87ec7081 SHA512 72fe8dfeed7041bf92af829dd84513f0c97f709d69586a044f830fd3de43deb27d0b02000338e00897a44c57806ad036cafcdb9661b1852ff76886ad92bd83f9 DIST github.com%2Fmwitkow%2Fgo-conntrack%2F@v%2Fv0.0.0-20161129095857-cc309e4a2223.mod 39 BLAKE2B 391eaf696f1a5c764f9e156ae3f6285ae5bf8a4abf2a735fd13fd1591f3bb97737502b79df093156305503ed4b63e0d458900e61fa8717f96ee17a6d43bc2f79 SHA512 9fccb6717f5b37cff2d858cc31f7e16aed120a67498c2f0d24aa30ffac4eba2e87822b12d62f700a0c62d7561708bab2e13e35e89cf5407cfb06a0de5c70808b @@ -327,6 +335,8 @@ DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.4.mod 95 BLAKE2B adb3684980f1d8e6c23444e9102 DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.8.mod 95 BLAKE2B adb3684980f1d8e6c23444e91028f8db55f1bc496114eb3508dbecf9917dbc8a0a4bed7c0d761123335a75b9ffe727e180f2d6aa5f84312edb05a798185c8362 SHA512 916ff67ddb6c2ba39905db4277ce42596d9ca5a42f8aa7f47f16335e78d91a1b30419fd1b7b6967b37e248363397ec527b38d2f500b3546edda5d2bce1944379 DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.3.0.mod 95 BLAKE2B adb3684980f1d8e6c23444e91028f8db55f1bc496114eb3508dbecf9917dbc8a0a4bed7c0d761123335a75b9ffe727e180f2d6aa5f84312edb05a798185c8362 SHA512 916ff67ddb6c2ba39905db4277ce42596d9ca5a42f8aa7f47f16335e78d91a1b30419fd1b7b6967b37e248363397ec527b38d2f500b3546edda5d2bce1944379 DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.3.0.zip 80765 BLAKE2B d6d8bfba5082aabb1a247add43b21ffa058b58fef60e8efbf973b724273cda2496ef0c9b226ad14bfea17f141f077d3bd98dfe3dbcf3c2938fd64570abd662b2 SHA512 2a89b2bce856cc11f3b71edec9e538048acf07f6aabbe27236b663b284c086c5862f086734e58727e9db8912a113fea51f72dad1a45a9e85860764f9c27b19d2 +DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.4.0.mod 95 BLAKE2B 888532a43aa7569fc03a62d78507081f30342eb4be40c01252683b16cd3658dd7b30d5f8a071dffe2c05f57bbee3afbc1ee4324c471788c633a878d498ff7d57 SHA512 2790882fbfa812468b9b3443630b1f1ee67a968eb20da8e4a1bfd410e4b516a8a7e77c07414b64f17e11e2151161b85d019e172cc833a45b19e66d4c70f89f82 +DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.4.0.zip 81183 BLAKE2B 0e3222d715fe7e9e8e9a10abad817f75bdd095f9af250d6bdf1ee2881930c739111de8b526175c9204995c48e0ade9852541a7f22b0ce1261f473986a2739182 SHA512 d6f4ac547609c943adfc6b518ff03ac09da566ba2b29466abe8f6db3d5a41ae7e5c187068dce4e77271905b1aa88497ca49a43bb9bbf9c94011b7ccf1b4b2f42 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 honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190102054323-c2f93a96b099.mod 26 BLAKE2B db6cc87a17bed88b955e6b36a17568930239c94a969211b02c2d5acc70386fbea63ac44365a0d3241e900125bd64644d698d8f1bdcabc3e6cf99c47259c63df5 SHA512 d00ae74b24e7fb3ff351ff68b88e59636153bbcf92b36e81e91556e3e75a7ccfb08ce471f757f92fd7612378944de3d7309c73923812e2df6a26b74e999ca9ce @@ -335,3 +345,4 @@ DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.0-20190418001031-e561f6794a2a.mod 26 BLA DIST honnef.co%2Fgo%2Ftools%2F@v%2Fv0.0.1-2019.2.3.mod 300 BLAKE2B 3e3f5a2be0918cbaacd5e43e59fcc6c7c6999645f0c9214cd5a522c31d34b6d3dad61e3ddae8ccdb2f3f0d90b406c047802ee3d9d54dc40fe6eff9cd35620792 SHA512 0c8aa788d0c03d6d049f0dd7468d0f81ce2131ccedd5a5a3a18362b7d30eef7ef325277844eefe4b707b1ad71c6f83a44e110b7af7b98e05406d347237a7bafb DIST rsc.io%2Fbinaryregexp%2F@v%2Fv0.2.0.mod 36 BLAKE2B 61110bed2b9e99e0250cf6e8b842257202c89b3462edf9368b73cab29f9dbd4dcc66c3e290a1d6329b7d62321eecc52082a8c4c0797eac743a29a8a00910a93f SHA512 db50ff677b0bdccbc1a1ad3df7c5cc76f2fcccf3ab99d08d1c2868440eb9b893fe89452f4286f7d42f2f16abf0f4acda67fe86e174dcfa730a743aafcc166774 DIST v0.3.0.tar.gz 32719 BLAKE2B d9f760687bb62f508930573380f975b675d697bcc8a31ad6e9dd95f1fd00940655560345732ab47945aa147b0298585e3398d0a061ab8e8e5ee8a97a3f45479e SHA512 3a5820d36eead3e1c92dcad9348ab897cb9ca496ba0a2b30e48b837dddc9b7794c914cde0be5d5b6ae33313d57eb224de09a7cb3f4a1d7ac72bba2b04e85df9f +DIST v0.4.1.tar.gz 34959 BLAKE2B a687d3db6fcc420857b741f65ffd23f6669f44d9715c6b25d87d9b9b6e8f6e20b44cbf0a24cac2a8454db8bc9cd0a8c8cd616996649c0cae5bc467642f691928 SHA512 84dd68aee75645e7dcc8b29544d69d84727061184abe14677ce0a97b60986a3ddc4c277019b1b2bf4f33e779b88cd3886db3ce46cb091c0df8b51c44ab122f18 diff --git a/app-admin/antidot/antidot-0.4.1.ebuild b/app-admin/antidot/antidot-0.4.1.ebuild new file mode 100644 index 0000000000..e2f9f8e193 --- /dev/null +++ b/app-admin/antidot/antidot-0.4.1.ebuild @@ -0,0 +1,373 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit go-module + +EGO_SUM=( + "cloud.google.com/go v0.26.0/go.mod" + "cloud.google.com/go v0.34.0/go.mod" + "cloud.google.com/go v0.38.0/go.mod" + "cloud.google.com/go v0.44.1/go.mod" + "cloud.google.com/go v0.44.2/go.mod" + "cloud.google.com/go v0.45.1/go.mod" + "cloud.google.com/go v0.46.3/go.mod" + "cloud.google.com/go/bigquery v1.0.1/go.mod" + "cloud.google.com/go/datastore v1.0.0/go.mod" + "cloud.google.com/go/firestore v1.1.0/go.mod" + "cloud.google.com/go/pubsub v1.0.1/go.mod" + "cloud.google.com/go/storage v1.0.0/go.mod" + "dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod" + "github.com/AlecAivazis/survey/v2 v2.2.5" + "github.com/AlecAivazis/survey/v2 v2.2.5/go.mod" + "github.com/BurntSushi/toml v0.3.1/go.mod" + "github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod" + "github.com/Netflix/go-expect v0.0.0-20180615182759-c93bf25de8e8" + "github.com/Netflix/go-expect v0.0.0-20180615182759-c93bf25de8e8/go.mod" + "github.com/OneOfOne/xxhash v1.2.2/go.mod" + "github.com/adrg/xdg v0.2.3" + "github.com/adrg/xdg v0.2.3/go.mod" + "github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod" + "github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod" + "github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod" + "github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod" + "github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod" + "github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod" + "github.com/beorn7/perks v1.0.0/go.mod" + "github.com/bgentry/speakeasy v0.1.0/go.mod" + "github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod" + "github.com/cespare/xxhash v1.1.0/go.mod" + "github.com/client9/misspell v0.3.4/go.mod" + "github.com/coreos/bbolt v1.3.2/go.mod" + "github.com/coreos/etcd v3.3.13+incompatible/go.mod" + "github.com/coreos/go-semver v0.3.0/go.mod" + "github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod" + "github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod" + "github.com/cpuguy83/go-md2man/v2 v2.0.0/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/dgrijalva/jwt-go v3.2.0+incompatible/go.mod" + "github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod" + "github.com/fatih/color v1.7.0/go.mod" + "github.com/fsnotify/fsnotify v1.4.7/go.mod" + "github.com/ghodss/yaml v1.0.0/go.mod" + "github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod" + "github.com/go-kit/kit v0.8.0/go.mod" + "github.com/go-logfmt/logfmt v0.3.0/go.mod" + "github.com/go-logfmt/logfmt v0.4.0/go.mod" + "github.com/go-stack/stack v1.8.0/go.mod" + "github.com/gogo/protobuf v1.1.1/go.mod" + "github.com/gogo/protobuf v1.2.1/go.mod" + "github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod" + "github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod" + "github.com/golang/mock v1.1.1/go.mod" + "github.com/golang/mock v1.2.0/go.mod" + "github.com/golang/mock v1.3.1/go.mod" + "github.com/golang/protobuf v1.2.0/go.mod" + "github.com/golang/protobuf v1.3.1/go.mod" + "github.com/golang/protobuf v1.3.2/go.mod" + "github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod" + "github.com/google/btree v1.0.0/go.mod" + "github.com/google/go-cmp v0.2.0" + "github.com/google/go-cmp v0.2.0/go.mod" + "github.com/google/go-cmp v0.3.0/go.mod" + "github.com/google/go-cmp v0.5.4" + "github.com/google/go-cmp v0.5.4/go.mod" + "github.com/google/martian v2.1.0+incompatible/go.mod" + "github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod" + "github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod" + "github.com/google/renameio v0.1.0/go.mod" + "github.com/googleapis/gax-go/v2 v2.0.4/go.mod" + "github.com/googleapis/gax-go/v2 v2.0.5/go.mod" + "github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod" + "github.com/gorilla/websocket v1.4.2/go.mod" + "github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod" + "github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod" + "github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod" + "github.com/hashicorp/consul/api v1.1.0/go.mod" + "github.com/hashicorp/consul/sdk v0.1.1/go.mod" + "github.com/hashicorp/errwrap v1.0.0/go.mod" + "github.com/hashicorp/go-cleanhttp v0.5.1/go.mod" + "github.com/hashicorp/go-immutable-radix v1.0.0/go.mod" + "github.com/hashicorp/go-msgpack v0.5.3/go.mod" + "github.com/hashicorp/go-multierror v1.0.0/go.mod" + "github.com/hashicorp/go-rootcerts v1.0.0/go.mod" + "github.com/hashicorp/go-sockaddr v1.0.0/go.mod" + "github.com/hashicorp/go-syslog v1.0.0/go.mod" + "github.com/hashicorp/go-uuid v1.0.0/go.mod" + "github.com/hashicorp/go-uuid v1.0.1/go.mod" + "github.com/hashicorp/go.net v0.0.1/go.mod" + "github.com/hashicorp/golang-lru v0.5.0/go.mod" + "github.com/hashicorp/golang-lru v0.5.1/go.mod" + "github.com/hashicorp/hcl v1.0.0/go.mod" + "github.com/hashicorp/logutils v1.0.0/go.mod" + "github.com/hashicorp/mdns v1.0.0/go.mod" + "github.com/hashicorp/memberlist v0.1.3/go.mod" + "github.com/hashicorp/serf v0.8.2/go.mod" + "github.com/hinshun/vt10x v0.0.0-20180616224451-1954e6464174" + "github.com/hinshun/vt10x v0.0.0-20180616224451-1954e6464174/go.mod" + "github.com/inconshreveable/mousetrap v1.0.0" + "github.com/inconshreveable/mousetrap v1.0.0/go.mod" + "github.com/jonboulle/clockwork v0.1.0/go.mod" + "github.com/json-iterator/go v1.1.6/go.mod" + "github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod" + "github.com/jtolds/gls v4.20.0+incompatible/go.mod" + "github.com/julienschmidt/httprouter v1.2.0/go.mod" + "github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51" + "github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod" + "github.com/kisielk/errcheck v1.1.0/go.mod" + "github.com/kisielk/gotool v1.0.0/go.mod" + "github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod" + "github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/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/pty v1.1.4" + "github.com/kr/pty v1.1.4/go.mod" + "github.com/kr/text v0.1.0" + "github.com/kr/text v0.1.0/go.mod" + "github.com/magiconair/properties v1.8.1/go.mod" + "github.com/mattn/go-colorable v0.0.9/go.mod" + "github.com/mattn/go-colorable v0.1.2" + "github.com/mattn/go-colorable v0.1.2/go.mod" + "github.com/mattn/go-isatty v0.0.3/go.mod" + "github.com/mattn/go-isatty v0.0.8" + "github.com/mattn/go-isatty v0.0.8/go.mod" + "github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod" + "github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b" + "github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b/go.mod" + "github.com/miekg/dns v1.0.14/go.mod" + "github.com/mitchellh/cli v1.0.0/go.mod" + "github.com/mitchellh/go-homedir v1.0.0/go.mod" + "github.com/mitchellh/go-homedir v1.1.0/go.mod" + "github.com/mitchellh/go-testing-interface v1.0.0/go.mod" + "github.com/mitchellh/gox v0.4.0/go.mod" + "github.com/mitchellh/iochan v1.0.0/go.mod" + "github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod" + "github.com/mitchellh/mapstructure v1.1.2/go.mod" + "github.com/mitchellh/mapstructure v1.4.0" + "github.com/mitchellh/mapstructure v1.4.0/go.mod" + "github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod" + "github.com/modern-go/reflect2 v1.0.1/go.mod" + "github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod" + "github.com/oklog/ulid v1.3.1/go.mod" + "github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod" + "github.com/pelletier/go-toml v1.2.0/go.mod" + "github.com/pkg/errors v0.8.0/go.mod" + "github.com/pkg/errors v0.8.1/go.mod" + "github.com/pmezard/go-difflib v1.0.0" + "github.com/pmezard/go-difflib v1.0.0/go.mod" + "github.com/posener/complete v1.1.1/go.mod" + "github.com/prometheus/client_golang v0.9.1/go.mod" + "github.com/prometheus/client_golang v0.9.3/go.mod" + "github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod" + "github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod" + "github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod" + "github.com/prometheus/common v0.4.0/go.mod" + "github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod" + "github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod" + "github.com/prometheus/tsdb v0.7.1/go.mod" + "github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod" + "github.com/rogpeppe/go-internal v1.3.0/go.mod" + "github.com/russross/blackfriday/v2 v2.0.1/go.mod" + "github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod" + "github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod" + "github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod" + "github.com/sirupsen/logrus v1.2.0/go.mod" + "github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod" + "github.com/smartystreets/goconvey v1.6.4/go.mod" + "github.com/soheilhy/cmux v0.1.4/go.mod" + "github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod" + "github.com/spf13/afero v1.1.2/go.mod" + "github.com/spf13/cast v1.3.0/go.mod" + "github.com/spf13/cobra v1.1.1" + "github.com/spf13/cobra v1.1.1/go.mod" + "github.com/spf13/jwalterweatherman v1.0.0/go.mod" + "github.com/spf13/pflag v1.0.3" + "github.com/spf13/pflag v1.0.3/go.mod" + "github.com/spf13/pflag v1.0.5" + "github.com/spf13/pflag v1.0.5/go.mod" + "github.com/spf13/viper v1.7.0/go.mod" + "github.com/stretchr/objx v0.1.0/go.mod" + "github.com/stretchr/objx v0.1.1/go.mod" + "github.com/stretchr/testify v1.2.1/go.mod" + "github.com/stretchr/testify v1.2.2" + "github.com/stretchr/testify v1.2.2/go.mod" + "github.com/stretchr/testify v1.3.0/go.mod" + "github.com/stretchr/testify v1.6.1" + "github.com/stretchr/testify v1.6.1/go.mod" + "github.com/subosito/gotenv v1.2.0/go.mod" + "github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod" + "github.com/wzshiming/ctc v1.2.3" + "github.com/wzshiming/ctc v1.2.3/go.mod" + "github.com/wzshiming/winseq v0.0.0-20200112104235-db357dc107ae" + "github.com/wzshiming/winseq v0.0.0-20200112104235-db357dc107ae/go.mod" + "github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod" + "go.etcd.io/bbolt v1.3.2/go.mod" + "go.opencensus.io v0.21.0/go.mod" + "go.opencensus.io v0.22.0/go.mod" + "go.uber.org/atomic v1.4.0/go.mod" + "go.uber.org/multierr v1.1.0/go.mod" + "go.uber.org/zap v1.10.0/go.mod" + "golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod" + "golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod" + "golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod" + "golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod" + "golang.org/x/crypto v0.0.0-20190530122614-20be4c3c3ed5/go.mod" + "golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5" + "golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod" + "golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod" + "golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod" + "golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod" + "golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod" + "golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod" + "golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod" + "golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod" + "golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod" + "golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod" + "golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod" + "golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod" + "golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod" + "golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod" + "golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod" + "golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod" + "golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod" + "golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod" + "golang.org/x/mod v0.1.0/go.mod" + "golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod" + "golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod" + "golang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/go.mod" + "golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod" + "golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod" + "golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod" + "golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod" + "golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod" + "golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod" + "golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod" + "golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod" + "golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod" + "golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod" + "golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod" + "golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod" + "golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod" + "golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod" + "golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod" + "golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod" + "golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod" + "golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod" + "golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod" + "golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod" + "golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod" + "golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod" + "golang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5/go.mod" + "golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod" + "golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod" + "golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod" + "golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod" + "golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod" + "golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod" + "golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod" + "golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod" + "golang.org/x/sys v0.0.0-20190530182044-ad28b68e88f1/go.mod" + "golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod" + "golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod" + "golang.org/x/sys v0.0.0-20200107162124-548cf772de50" + "golang.org/x/sys v0.0.0-20200107162124-548cf772de50/go.mod" + "golang.org/x/text v0.3.0/go.mod" + "golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod" + "golang.org/x/text v0.3.2" + "golang.org/x/text v0.3.2/go.mod" + "golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod" + "golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod" + "golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod" + "golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod" + "golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod" + "golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod" + "golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod" + "golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod" + "golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod" + "golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod" + "golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod" + "golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod" + "golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod" + "golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod" + "golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod" + "golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod" + "golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod" + "golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod" + "golang.org/x/tools v0.0.0-20191112195655-aa38f8e97acc/go.mod" + "golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod" + "golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543" + "golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod" + "google.golang.org/api v0.4.0/go.mod" + "google.golang.org/api v0.7.0/go.mod" + "google.golang.org/api v0.8.0/go.mod" + "google.golang.org/api v0.9.0/go.mod" + "google.golang.org/api v0.13.0/go.mod" + "google.golang.org/appengine v1.1.0/go.mod" + "google.golang.org/appengine v1.4.0/go.mod" + "google.golang.org/appengine v1.5.0/go.mod" + "google.golang.org/appengine v1.6.1/go.mod" + "google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod" + "google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod" + "google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod" + "google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod" + "google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod" + "google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod" + "google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod" + "google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod" + "google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod" + "google.golang.org/grpc v1.19.0/go.mod" + "google.golang.org/grpc v1.20.1/go.mod" + "google.golang.org/grpc v1.21.1/go.mod" + "gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod" + "gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod" + "gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127" + "gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod" + "gopkg.in/errgo.v2 v2.1.0/go.mod" + "gopkg.in/ini.v1 v1.51.0/go.mod" + "gopkg.in/resty.v1 v1.12.0/go.mod" + "gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod" + "gopkg.in/yaml.v2 v2.2.1/go.mod" + "gopkg.in/yaml.v2 v2.2.4/go.mod" + "gopkg.in/yaml.v2 v2.2.8/go.mod" + "gopkg.in/yaml.v2 v2.4.0" + "gopkg.in/yaml.v2 v2.4.0/go.mod" + "gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c" + "gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod" + "honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod" + "honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod" + "honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod" + "honnef.co/go/tools v0.0.1-2019.2.3/go.mod" + "rsc.io/binaryregexp v0.2.0/go.mod" +) + +go-module_set_globals + +DESCRIPTION="Cleans up your \$HOME from those pesky dotfiles" +HOMEPAGE="https://github.com/doron-cohen/antidot" +SRC_URI=" + https://github.com/doron-cohen/antidot/archive/v${PV}.tar.gz + ${EGO_SUM_SRC_URI} +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +RESTRICT="mirror" + +src_compile() { + go build -v -work -x -o ${PN} || die +} + +src_install() { + dobin ${PN} + einstalldocs +} + +pkg_postinst() { + elog "To get started with antidot, first run 'antidot update'" + elog "Then add the output of 'antidot init' to your .bash_profile or similar" +} From 60da1d5f892715388107beb018ab2bfd439a0e32 Mon Sep 17 00:00:00 2001 From: Huang Rui Date: Tue, 15 Dec 2020 17:07:41 +0800 Subject: [PATCH 09/19] x11-themes/obsidian2-gtk-theme: bump to 2.17 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Huang Rui --- x11-themes/obsidian2-gtk-theme/Manifest | 1 + .../obsidian2-gtk-theme-2.17.ebuild | 35 +++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-2.17.ebuild diff --git a/x11-themes/obsidian2-gtk-theme/Manifest b/x11-themes/obsidian2-gtk-theme/Manifest index bb4c1f86ad..1cfba8ef61 100644 --- a/x11-themes/obsidian2-gtk-theme/Manifest +++ b/x11-themes/obsidian2-gtk-theme/Manifest @@ -1 +1,2 @@ DIST obsidian2-gtk-theme-2.16.tar.gz 946770 BLAKE2B 7530662bad8ce1645333391c4fa9c3bc84bc220861d6f8a42177c108d699b6106f6dc133ab360e7c24dc732d44635647e1ebf96874fbd7a0d1cd15958bf32a99 SHA512 4e68a1d8b0c09e4e595bfd349c8d14855c1c9aca8ce72e130981cf02a75bd0eeb9a49cbcde131177761c2b7ebd495550b0b6201eabbbd3878bba433ddce80af0 +DIST obsidian2-gtk-theme-2.17.tar.gz 958471 BLAKE2B 7eb39a6ad371a43d0a6693724626d6ffb8e00bda04d5490f59d5f8d7822b08d486295558454021e51157f0fc381ac8691adbc5b6138c511bebcec78141c99830 SHA512 266e7974622b5fcbd56791649279e369efb78798b16562eb4aa4b0f8d647ccd9497189effc457b9d008408a34f8f40a7ff47dab81c4df286064ac39f9438a548 diff --git a/x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-2.17.ebuild b/x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-2.17.ebuild new file mode 100644 index 0000000000..0e69865d88 --- /dev/null +++ b/x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-2.17.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +GIT_PN="theme-obsidian-2" + +DESCRIPTION="Obsidian Gnome Theme, based upon Adwaita-Maia dark skin" + +HOMEPAGE="https://github.com/madmaxms/theme-obsidian-2" + +if [[ "${PV}" == "9999" ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/madmaxms/${GIT_PN}.git" +else + SRC_URI="https://github.com/madmaxms/${GIT_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + S="${WORKDIR}/${GIT_PN}-${PV}" +fi + +LICENSE="GPL-3" +SLOT="0" + +RDEPEND=" + >=x11-libs/gtk+-3.22 + x11-themes/gtk-engines-adwaita +" +DEPEND="${RDEPEND}" + +DOCS=( README.md ) + +src_install() { + insinto /usr/share/themes + doins -r Obsidian* +} From b6ef1b7025d64889c5d7e34ba7f76a634fcd382e Mon Sep 17 00:00:00 2001 From: Huang Rui Date: Tue, 15 Dec 2020 17:08:12 +0800 Subject: [PATCH 10/19] x11-themes/obsidian2-gtk-theme: drop 2.16 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Huang Rui --- x11-themes/obsidian2-gtk-theme/Manifest | 1 - .../obsidian2-gtk-theme-2.16.ebuild | 35 ------------------- 2 files changed, 36 deletions(-) delete mode 100644 x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-2.16.ebuild diff --git a/x11-themes/obsidian2-gtk-theme/Manifest b/x11-themes/obsidian2-gtk-theme/Manifest index 1cfba8ef61..511f5c9427 100644 --- a/x11-themes/obsidian2-gtk-theme/Manifest +++ b/x11-themes/obsidian2-gtk-theme/Manifest @@ -1,2 +1 @@ -DIST obsidian2-gtk-theme-2.16.tar.gz 946770 BLAKE2B 7530662bad8ce1645333391c4fa9c3bc84bc220861d6f8a42177c108d699b6106f6dc133ab360e7c24dc732d44635647e1ebf96874fbd7a0d1cd15958bf32a99 SHA512 4e68a1d8b0c09e4e595bfd349c8d14855c1c9aca8ce72e130981cf02a75bd0eeb9a49cbcde131177761c2b7ebd495550b0b6201eabbbd3878bba433ddce80af0 DIST obsidian2-gtk-theme-2.17.tar.gz 958471 BLAKE2B 7eb39a6ad371a43d0a6693724626d6ffb8e00bda04d5490f59d5f8d7822b08d486295558454021e51157f0fc381ac8691adbc5b6138c511bebcec78141c99830 SHA512 266e7974622b5fcbd56791649279e369efb78798b16562eb4aa4b0f8d647ccd9497189effc457b9d008408a34f8f40a7ff47dab81c4df286064ac39f9438a548 diff --git a/x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-2.16.ebuild b/x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-2.16.ebuild deleted file mode 100644 index 0e69865d88..0000000000 --- a/x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-2.16.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -GIT_PN="theme-obsidian-2" - -DESCRIPTION="Obsidian Gnome Theme, based upon Adwaita-Maia dark skin" - -HOMEPAGE="https://github.com/madmaxms/theme-obsidian-2" - -if [[ "${PV}" == "9999" ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/madmaxms/${GIT_PN}.git" -else - SRC_URI="https://github.com/madmaxms/${GIT_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" - S="${WORKDIR}/${GIT_PN}-${PV}" -fi - -LICENSE="GPL-3" -SLOT="0" - -RDEPEND=" - >=x11-libs/gtk+-3.22 - x11-themes/gtk-engines-adwaita -" -DEPEND="${RDEPEND}" - -DOCS=( README.md ) - -src_install() { - insinto /usr/share/themes - doins -r Obsidian* -} From ae2d5a468c7d0fb1ff5332d8948db0c5ef21ff73 Mon Sep 17 00:00:00 2001 From: "Ronny (tastytea) Gutbrod" Date: Tue, 15 Dec 2020 10:23:25 +0100 Subject: [PATCH 11/19] net-misc/mastorss: Version bump 0.13.1. Signed-off-by: Ronny (tastytea) Gutbrod --- net-misc/mastorss/Manifest | 1 + net-misc/mastorss/mastorss-0.13.1.ebuild | 32 ++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 net-misc/mastorss/mastorss-0.13.1.ebuild diff --git a/net-misc/mastorss/Manifest b/net-misc/mastorss/Manifest index 8d1bb98cde..fd9b3e31c5 100644 --- a/net-misc/mastorss/Manifest +++ b/net-misc/mastorss/Manifest @@ -1 +1,2 @@ DIST mastorss-0.13.0.tar.gz 50548 BLAKE2B 56b05c43842760881c9bc27bbd404804beba0216b2d8a129aea78a41cf2fe832d357615b74ecf56c491af7a789e72691766d46cc6172b89057f7a5b179ff09e8 SHA512 c5034d483fc3139f9276b62c0a9181754fd847f45d6286bfd39b20ed602ae3ec72031ed898c5f3b3dba627e978232180cbd50340e3579771a7a42b6a98f83161 +DIST mastorss-0.13.1.tar.gz 51109 BLAKE2B a1cf754e46b028e773f12f6527433c74302c7067fae374b973bd736537fa121194227f83dfb25eca545e3d0f46bb61edc11f5ac290773108ad8970e5936d40d9 SHA512 ac9e98213afb92ea2bb9c65163c384c802bb9a036d477c7d8d87f669372910d9f5d79b50dbc160852629e7dce7a09f695308a00b76b7f454c0f80f15c6bc32b6 diff --git a/net-misc/mastorss/mastorss-0.13.1.ebuild b/net-misc/mastorss/mastorss-0.13.1.ebuild new file mode 100644 index 0000000000..b9573f586a --- /dev/null +++ b/net-misc/mastorss/mastorss-0.13.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake +[[ "${PV}" == "9999" ]] && inherit git-r3 + +DESCRIPTION="Another RSS to Mastodon bot" +HOMEPAGE="https://schlomp.space/tastytea/mastorss" +if [[ "${PV}" != "9999" ]]; then + SRC_URI="https://schlomp.space/tastytea/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/${PN}" + KEYWORDS="~amd64" +else + EGIT_REPO_URI="https://schlomp.space/tastytea/mastorss.git" +fi + +LICENSE="GPL-3" +SLOT="0" +IUSE="" + +RDEPEND=" + dev-libs/boost + >=dev-cpp/mastodonpp-0.5.6 + dev-libs/jsoncpp +" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig + app-text/asciidoc +" From f675ef28b6876f1e092ec3c61742e55fa69a97ee Mon Sep 17 00:00:00 2001 From: Theo Anderson Date: Tue, 15 Dec 2020 21:05:59 +1300 Subject: [PATCH 12/19] app-misc/cheat: bump to 4.2.0 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Theo Anderson --- app-misc/cheat/Manifest | 9 +++ app-misc/cheat/cheat-4.2.0.ebuild | 112 ++++++++++++++++++++++++++++++ 2 files changed, 121 insertions(+) create mode 100644 app-misc/cheat/cheat-4.2.0.ebuild diff --git a/app-misc/cheat/Manifest b/app-misc/cheat/Manifest index 02b1f1398e..f661bd3a17 100644 --- a/app-misc/cheat/Manifest +++ b/app-misc/cheat/Manifest @@ -1,8 +1,11 @@ DIST cheat-4.0.2.tar.gz 1529674 BLAKE2B e5246d7e9087e339fe853597946116fd92671d5f7881b63c589cab82ab6f33eec4b9d5256990fe2e63bb930c9cbd2b00b634148773b5657ee9d26492e076d81e SHA512 fc18437eb2e6bc3a886ceb37dd19038f731f181f83d9e55bae6e37674c8b337732f9a9cf3d56046261ad232496cd5b837150c03a2dbf99a55991b1e59e6f6045 +DIST cheat-4.2.0.tar.gz 1565865 BLAKE2B ffcdcb5beae2009549d8fd7f4f3c520439321736e56b23c731b3415fa7a212c9f700f63ae22c133f939d7ed39cc6eca9cee68afdc6065d9fcf7df7f177f9c626 SHA512 88c4ccb8c14730c1194144d03cac7b5b3fe6cd0f03db8ff5cfd8993966e68ae88d1ab1c241a3cd364f92540cd0351738a04e91e73ab85a583f4c0e99ce6e581e DIST github.com%2Falecthomas%2Fassert%2F@v%2Fv0.0.0-20170929043011-405dbfeb8e38.mod 36 BLAKE2B d0745757255951a92d471fdb1eeaae2e118d367caf0fcea00a405536d7e30609f22276e7a453aac1ca38063635df798a0843f279c178d394a7cbef9c9f9b3c27 SHA512 87ff97fea3e25aa903503e56fe5afc337918f7253dd7175833adb144a7296451a7d4ebd76df504737a5b4c5237b1102920728d21a587957d5d25db5d38e1217b DIST github.com%2Falecthomas%2Fassert%2F@v%2Fv0.0.0-20170929043011-405dbfeb8e38.zip 73310 BLAKE2B b0aaa346be477c14bd504f98219659c8a82ba08afdd94f1a5ffbb44cfcb6cc9b014c1ee35aec6071d4733134931e6d2a569940e9f1f06a5e69b00f56d82579e9 SHA512 adf9a3b8bda92edd028f497ca10648900a7aac4dae9372469b511afc74e79f8b990e448f375ab2a8df651a491bab5413196c06db531adc10358865f74de6f26b DIST github.com%2Falecthomas%2Fchroma%2F@v%2Fv0.7.3.mod 687 BLAKE2B b987855d98e0e6181e8f28c12976081b5e0699cffc79b0721c811eaf6962e6edc5a01135519f787eac6d38e742517aa4d6e061ac4e5ba986e5c5e0cbd2a19177 SHA512 bf5c7b4933d685d90882099aa8c5bc33f8ec58e5a35138180b58771185306b6119cfaab319a43ade929b4560be9746f9155c8d55d1755df12b177613982c7617 DIST github.com%2Falecthomas%2Fchroma%2F@v%2Fv0.7.3.zip 780356 BLAKE2B f1e5a30ad9e46d9f59c5fa3ef7732bc5071f5012ff3205d23b67a52b0c90eda2b8ecf370de54d3cab98d0f4695122f478cd70bee8751d68c3bbfd627418a0583 SHA512 74f74db02dd92d45ae77cbc64ffce73b87066cdeebc23a4f5cd509660accb72d72be398fd0571871e651191e62eef30da7e104ba4a4e88db323a0609cfaa48e2 +DIST github.com%2Falecthomas%2Fchroma%2F@v%2Fv0.8.2.mod 687 BLAKE2B b987855d98e0e6181e8f28c12976081b5e0699cffc79b0721c811eaf6962e6edc5a01135519f787eac6d38e742517aa4d6e061ac4e5ba986e5c5e0cbd2a19177 SHA512 bf5c7b4933d685d90882099aa8c5bc33f8ec58e5a35138180b58771185306b6119cfaab319a43ade929b4560be9746f9155c8d55d1755df12b177613982c7617 +DIST github.com%2Falecthomas%2Fchroma%2F@v%2Fv0.8.2.zip 816641 BLAKE2B 5ca6160412d4760ff0d7cbe7a5805bf2af26402dedeb3ee46cff993db6c7d88dff20d21e69f4959798515531bb7cc21ec3383963cd310efabb97a7b8bdcc79cc SHA512 431e8a1e183f2bd140fdfcca245fa4fe7c7ab096f17ae3b91f66e0198bc3d58b6242d68cc784d307333b6746d72ea58d6f46ec2611913f8babac92f83ece755e DIST github.com%2Falecthomas%2Fcolour%2F@v%2Fv0.0.0-20160524082231-60882d9e2721.mod 36 BLAKE2B 60ece6720c6735e5b01efc335fef7d7f1186087068e573d5fa073b811053ea60b761350f9c371dada8cdeb5b285911c4ff87495b800f9c19ffeb69739f4b143b SHA512 971e35af5346054a0930f5543dc936c5f32ca801433d3ca26461ae7c1583b4f814376e8880f4d5329c46c36a3bde5ee4290b825bf19fd70c6bf2fbbab03f8ff1 DIST github.com%2Falecthomas%2Fcolour%2F@v%2Fv0.0.0-20160524082231-60882d9e2721.zip 4919 BLAKE2B a939fbc897831f04ef6995f3d6220d56b8b3a8e3ae4486b605b9601aeb5bf764249cdd619248ba55b650e15e208a720fe1571df99a850a0b742755ab36f86c0f SHA512 7947f0ed3b2b42b8454af3cfb0fb27ec38af8234936d7cfe29017d1168b80873dbb6ac1345719fc5c405df9c814bd732a4ecf6f985da880f4ad83cf2f25b7834 DIST github.com%2Falecthomas%2Fkong%2F@v%2Fv0.2.4.mod 219 BLAKE2B 188d73a4d4cf4bcb52cea7b32d8d8898086532d50e8ed0e92825e2b34ae1e035111dbc27b995b9a12d70e6be509d99bc693a0af8e3734641dc23cd1da39cf984 SHA512 165cb7ab17309c66d509af018c8a521bd90f9a58fec8fa9437e5b32aa2105ef1be19a1a0a1b13a51300e308c5e63c6cb74897ad938bd6f8b3bfb2d372347d02f @@ -16,6 +19,8 @@ DIST github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.mod 34 BLAKE2B 7e09c2779bf7a84 DIST github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.zip 60320 BLAKE2B 86bdbc333e5c23ccf4f805945ca9f2aecc5c242d2ae824d20127eceaa2bf7bbab239ff2799572a2c8fa206166a36e97d5eccc8fc5021743d8ad32f39cd53b9eb SHA512 7b4e4df2fea731e23e05437f26f24e32b2e99028d685b72e3a726c1cb616ada4a77ca4fb9db4a6fae48178cc5172e724b74499bc776d63a9110cb97377d5edeb DIST github.com%2Fdlclark%2Fregexp2%2F@v%2Fv1.2.0.mod 34 BLAKE2B 900b7c39f85b3c32ae1cdcb56063defb238ec2dd7620f1a13b0a7b7a5c1eb237854d00d7a6063cc546fb6c7a41bb0fe6d71ba4589bca57d8dd1183a806685f9e SHA512 91475e539eb45a642590606c6174f07b3461691aa18cc232362694890b446a7f033834676273e33cac54db288a793fd70d07d5997997716f954d1806ac879091 DIST github.com%2Fdlclark%2Fregexp2%2F@v%2Fv1.2.0.zip 691188 BLAKE2B a59e078427dcfedf06e31b212306e6c1bf0ba16248a86b5b3bfabe913acab2ef35b6d3f9f6b165cd773cffc9f030f1aa930e1a3dea7e066820949703962614bb SHA512 009731d05f05cfa69b710df82c894a2f31a53bd90aa3554b34bffc9f304548e5ed5c1142338e8917fd526e0fc54d1b5cb010eba8508a689efa0d852bdfe484c4 +DIST github.com%2Fdlclark%2Fregexp2%2F@v%2Fv1.4.0.mod 34 BLAKE2B 900b7c39f85b3c32ae1cdcb56063defb238ec2dd7620f1a13b0a7b7a5c1eb237854d00d7a6063cc546fb6c7a41bb0fe6d71ba4589bca57d8dd1183a806685f9e SHA512 91475e539eb45a642590606c6174f07b3461691aa18cc232362694890b446a7f033834676273e33cac54db288a793fd70d07d5997997716f954d1806ac879091 +DIST github.com%2Fdlclark%2Fregexp2%2F@v%2Fv1.4.0.zip 692349 BLAKE2B 02c92a8873c16c3cc5d0f558e760e4f6f9a7c08b4d16b264a667c6a78f42264aa156cd1ef4740b08c8d417d9b138d8dabdbf47cd4e28c2708a6650f9adb4c0c6 SHA512 0e0de83ae85cbd89d7594697a9e1786338cf2f27083f2fe3f95d5eb127fe488169472a5efc59bd5023ee3a27eff2074aa4ec2909ccffa38aedd83c529fa2c9a2 DIST github.com%2Fdocopt%2Fdocopt-go%2F@v%2Fv0.0.0-20180111231733-ee0de3bc6815.mod 35 BLAKE2B 03d1120023db31c39a39e5b7f336b05bed30e652c890e12986c81778e49c771e97e8ff0dcbb053f00627ffdb229223b385a9524fa1d35ee83860ca3e0b0701e8 SHA512 7f90935b89bc2fc83b0f52d0090d8cc3f7262415b1feb9c19420f663da4ab8d87bb5cf42c2a558038c57e3e772b468132509b45fe40a4993d0b64b80aeb64ebf DIST github.com%2Fdocopt%2Fdocopt-go%2F@v%2Fv0.0.0-20180111231733-ee0de3bc6815.zip 45402 BLAKE2B bcaba5db279468e0879501ec5f859edc4d600d777fad112a7f679b915ca14fce6b8f7b2e0b75d3d76f11d6ee37710c03c83d70e2fb2b793b2f9f1656e52a3a92 SHA512 15d0c4f21eb5fbc1546b79e7c52c553859835fdd2850b82fe03edf5419779c33449074d9ac353e99340096b138c72ef98ca057eb51e0d7777d2d926a847836f2 DIST github.com%2Fkr%2Fpretty%2F@v%2Fv0.1.0.mod 67 BLAKE2B 2e1b4a8a38998179a32db321d331db54f881770a89719410876cdde1799cb8558ca2862bc70838d606540606d05918c4b115cf1c125945a77ed376c2efc4aa85 SHA512 4d841fc7a022e4e09e0a95925ad92a75809a67c30fb88de9190e4a2196383038dab9a5b3294b6a0b4786248977a0e09eea857a34100cbf22f8a52912ce9fa58d @@ -52,6 +57,8 @@ DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200116001909-b77594299b42.zip 1913147 DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200223170610-d5e6a3e2c0ae.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200413165638-669c56c373c4.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200413165638-669c56c373c4.zip 1471634 BLAKE2B cd90cd97113e500e5d20b6bb1c9921be7132157089936ca68d862efc531e2e3a8ede741d6c682c8f38122dc33cb65c84a8962eb1eb9cf25277502740639091d6 SHA512 c3fce15b61446dc0805383e55eefcbace75fe1e8149561692624f47ad69d20eb81e6415dc0000beec435a6caf0937b9bbbef67504016a5f77faaf72a46125085 +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201126233918-771906719818.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab +DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20201126233918-771906719818.zip 1530019 BLAKE2B 8c40931e785824b6e379fd0372647a3ed286ff9abd9245ad328b9c6862fed06d7a3bfb051e44b22847361b8588224f5b28efe623999688d57ce473296652d2f7 SHA512 ea86d8335445737bda343fc12b351342408b639da38e3a538b2b44f6fccf7d174ed5279e40e8e32e163328f072283db0778b2b83fa63bdbb37939577ef489c55 DIST gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.mod 25 BLAKE2B 6470f3d94700c4d8b3176d692bdb91646750f2c6a866ff2ef4183aff1de01f024a8757f97b4626ec0355092e5f25e7ded91cd5be845f627d107c58b1daf400d7 SHA512 9ac0f80ef05881387cb2f48f81560f3207fe586ea16495383662e6d62e43d93fac01dfe72e1d0063d3ab065331dab3a8098d7da4f1830ba1aff6f27f8e1bc1b2 DIST gopkg.in%2Fcheck.v1%2F@v%2Fv0.0.0-20161208181325-20d25e280405.zip 39844 BLAKE2B b3dab69dbd1ebb999938c12595de7007dce9431cfeaeb5e77aba80c49918d1a4edf7fb95279e9b66686cb45deaf57a011c083e55fb66ec2c614582ba323954da SHA512 97c96a92ec86372c2f06141c30bceaa86ed62c1db34696f9542f43f3411cb0a37dea654de923a5ee054e603198179b9048e3b477da140e4092ffadc4525b9241 DIST gopkg.in%2Fcheck.v1%2F@v%2Fv1.0.0-20190902080502-41f04d3bba15.mod 25 BLAKE2B 6470f3d94700c4d8b3176d692bdb91646750f2c6a866ff2ef4183aff1de01f024a8757f97b4626ec0355092e5f25e7ded91cd5be845f627d107c58b1daf400d7 SHA512 9ac0f80ef05881387cb2f48f81560f3207fe586ea16495383662e6d62e43d93fac01dfe72e1d0063d3ab065331dab3a8098d7da4f1830ba1aff6f27f8e1bc1b2 @@ -63,3 +70,5 @@ DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.2.mod 95 BLAKE2B adb3684980f1d8e6c23444e9102 DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.2.4.mod 95 BLAKE2B adb3684980f1d8e6c23444e91028f8db55f1bc496114eb3508dbecf9917dbc8a0a4bed7c0d761123335a75b9ffe727e180f2d6aa5f84312edb05a798185c8362 SHA512 916ff67ddb6c2ba39905db4277ce42596d9ca5a42f8aa7f47f16335e78d91a1b30419fd1b7b6967b37e248363397ec527b38d2f500b3546edda5d2bce1944379 DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.3.0.mod 95 BLAKE2B adb3684980f1d8e6c23444e91028f8db55f1bc496114eb3508dbecf9917dbc8a0a4bed7c0d761123335a75b9ffe727e180f2d6aa5f84312edb05a798185c8362 SHA512 916ff67ddb6c2ba39905db4277ce42596d9ca5a42f8aa7f47f16335e78d91a1b30419fd1b7b6967b37e248363397ec527b38d2f500b3546edda5d2bce1944379 DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.3.0.zip 80765 BLAKE2B d6d8bfba5082aabb1a247add43b21ffa058b58fef60e8efbf973b724273cda2496ef0c9b226ad14bfea17f141f077d3bd98dfe3dbcf3c2938fd64570abd662b2 SHA512 2a89b2bce856cc11f3b71edec9e538048acf07f6aabbe27236b663b284c086c5862f086734e58727e9db8912a113fea51f72dad1a45a9e85860764f9c27b19d2 +DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.4.0.mod 95 BLAKE2B 888532a43aa7569fc03a62d78507081f30342eb4be40c01252683b16cd3658dd7b30d5f8a071dffe2c05f57bbee3afbc1ee4324c471788c633a878d498ff7d57 SHA512 2790882fbfa812468b9b3443630b1f1ee67a968eb20da8e4a1bfd410e4b516a8a7e77c07414b64f17e11e2151161b85d019e172cc833a45b19e66d4c70f89f82 +DIST gopkg.in%2Fyaml.v2%2F@v%2Fv2.4.0.zip 81183 BLAKE2B 0e3222d715fe7e9e8e9a10abad817f75bdd095f9af250d6bdf1ee2881930c739111de8b526175c9204995c48e0ade9852541a7f22b0ce1261f473986a2739182 SHA512 d6f4ac547609c943adfc6b518ff03ac09da566ba2b29466abe8f6db3d5a41ae7e5c187068dce4e77271905b1aa88497ca49a43bb9bbf9c94011b7ccf1b4b2f42 diff --git a/app-misc/cheat/cheat-4.2.0.ebuild b/app-misc/cheat/cheat-4.2.0.ebuild new file mode 100644 index 0000000000..d910f38cad --- /dev/null +++ b/app-misc/cheat/cheat-4.2.0.ebuild @@ -0,0 +1,112 @@ +# Copyright 2019-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit go-module + +EGO_SUM=( + "github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38" + "github.com/alecthomas/assert v0.0.0-20170929043011-405dbfeb8e38/go.mod" + "github.com/alecthomas/chroma v0.8.2" + "github.com/alecthomas/chroma v0.8.2/go.mod" + "github.com/alecthomas/colour v0.0.0-20160524082231-60882d9e2721" + "github.com/alecthomas/colour v0.0.0-20160524082231-60882d9e2721/go.mod" + "github.com/alecthomas/kong v0.2.4/go.mod" + "github.com/alecthomas/repr v0.0.0-20180818092828-117648cd9897" + "github.com/alecthomas/repr v0.0.0-20180818092828-117648cd9897/go.mod" + "github.com/creack/pty v1.1.9/go.mod" + "github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964" + "github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964/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/dlclark/regexp2 v1.2.0" + "github.com/dlclark/regexp2 v1.2.0/go.mod" + "github.com/dlclark/regexp2 v1.4.0" + "github.com/dlclark/regexp2 v1.4.0/go.mod" + "github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815" + "github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/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/kr/text v0.2.0" + "github.com/kr/text v0.2.0/go.mod" + "github.com/mattn/go-colorable v0.1.6/go.mod" + "github.com/mattn/go-isatty v0.0.12" + "github.com/mattn/go-isatty v0.0.12/go.mod" + "github.com/mitchellh/go-homedir v1.1.0" + "github.com/mitchellh/go-homedir v1.1.0/go.mod" + "github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e" + "github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod" + "github.com/pkg/errors v0.8.1" + "github.com/pkg/errors v0.8.1/go.mod" + "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/sergi/go-diff v1.0.0" + "github.com/sergi/go-diff v1.0.0/go.mod" + "github.com/sergi/go-diff v1.1.0" + "github.com/sergi/go-diff v1.1.0/go.mod" + "github.com/stretchr/objx v0.1.0/go.mod" + "github.com/stretchr/testify v1.2.2/go.mod" + "github.com/stretchr/testify v1.3.0" + "github.com/stretchr/testify v1.3.0/go.mod" + "github.com/stretchr/testify v1.4.0" + "github.com/stretchr/testify v1.4.0/go.mod" + "golang.org/x/sys v0.0.0-20200116001909-b77594299b42" + "golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod" + "golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod" + "golang.org/x/sys v0.0.0-20200413165638-669c56c373c4" + "golang.org/x/sys v0.0.0-20200413165638-669c56c373c4/go.mod" + "golang.org/x/sys v0.0.0-20201126233918-771906719818" + "golang.org/x/sys v0.0.0-20201126233918-771906719818/go.mod" + "gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405" + "gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod" + "gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod" + "gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f" + "gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod" + "gopkg.in/yaml.v1 v1.0.0-20140924161607-9f9df34309c0" + "gopkg.in/yaml.v1 v1.0.0-20140924161607-9f9df34309c0/go.mod" + "gopkg.in/yaml.v2 v2.2.2/go.mod" + "gopkg.in/yaml.v2 v2.2.4/go.mod" + "gopkg.in/yaml.v2 v2.4.0" + "gopkg.in/yaml.v2 v2.4.0/go.mod" +) + +go-module_set_globals + +DESCRIPTION="cheat allows you to create and view interactive cheatsheets on the command-line" +HOMEPAGE="https://github.com/cheat/cheat" +SRC_URI=" + https://github.com/cheat/cheat/archive/${PV}.tar.gz -> ${P}.tar.gz + ${EGO_SUM_SRC_URI} +" + +# licenses present in the final built +# software. Checked with dev-go/golicense +LICENSE="MIT Apache-2.0 BSD BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="zsh-completion" + +RDEPEND="zsh-completion? ( !app-shells/zsh-completions )" +BDEPEND="app-text/pandoc" + +src_test() { + # we can't use the default behavior + # since the check rule performs formatting + # with a non-standard go tool + emake test +} + +src_install() { + dobin "dist/${PN}" + if use zsh-completion; then + insinto /usr/share/zsh/site-functions + newins scripts/cheat.zsh _cheat + fi + doman doc/cheat.1 +} From 0e91b97a94e587ec1de6e2efd60c130df2fe7a5d Mon Sep 17 00:00:00 2001 From: Theo Anderson Date: Tue, 15 Dec 2020 22:36:51 +1300 Subject: [PATCH 13/19] dev-libs/wren: move to dev-lang/wren Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Theo Anderson --- {dev-libs => dev-lang}/wren/Manifest | 0 {dev-libs => dev-lang}/wren/metadata.xml | 0 {dev-libs => dev-lang}/wren/wren-0.2.0-r1.ebuild | 0 {dev-libs => dev-lang}/wren/wren-9999.ebuild | 0 profiles/updates/4Q-2020 | 1 + 5 files changed, 1 insertion(+) rename {dev-libs => dev-lang}/wren/Manifest (100%) rename {dev-libs => dev-lang}/wren/metadata.xml (100%) rename {dev-libs => dev-lang}/wren/wren-0.2.0-r1.ebuild (100%) rename {dev-libs => dev-lang}/wren/wren-9999.ebuild (100%) diff --git a/dev-libs/wren/Manifest b/dev-lang/wren/Manifest similarity index 100% rename from dev-libs/wren/Manifest rename to dev-lang/wren/Manifest diff --git a/dev-libs/wren/metadata.xml b/dev-lang/wren/metadata.xml similarity index 100% rename from dev-libs/wren/metadata.xml rename to dev-lang/wren/metadata.xml diff --git a/dev-libs/wren/wren-0.2.0-r1.ebuild b/dev-lang/wren/wren-0.2.0-r1.ebuild similarity index 100% rename from dev-libs/wren/wren-0.2.0-r1.ebuild rename to dev-lang/wren/wren-0.2.0-r1.ebuild diff --git a/dev-libs/wren/wren-9999.ebuild b/dev-lang/wren/wren-9999.ebuild similarity index 100% rename from dev-libs/wren/wren-9999.ebuild rename to dev-lang/wren/wren-9999.ebuild diff --git a/profiles/updates/4Q-2020 b/profiles/updates/4Q-2020 index 4ba05313df..16b624f6ba 100644 --- a/profiles/updates/4Q-2020 +++ b/profiles/updates/4Q-2020 @@ -1,2 +1,3 @@ move x11-themes/sweet-gtk-theme x11-themes/sweet-dark-gtk-theme move app-text/git-delta dev-util/git-delta +move dev-libs/wren dev-lang/wren \ No newline at end of file From bf7e5e416239d18bfe6c5223a82884b6c136dd1f Mon Sep 17 00:00:00 2001 From: Theo Anderson Date: Tue, 15 Dec 2020 22:40:10 +1300 Subject: [PATCH 14/19] dev-lang/wren: bump to 0.3.0 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Theo Anderson --- dev-lang/wren/Manifest | 2 + dev-lang/wren/wren-0.3.0.ebuild | 65 +++++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+) create mode 100644 dev-lang/wren/wren-0.3.0.ebuild diff --git a/dev-lang/wren/Manifest b/dev-lang/wren/Manifest index 782d2d9f5e..b9f78a9a0c 100644 --- a/dev-lang/wren/Manifest +++ b/dev-lang/wren/Manifest @@ -1 +1,3 @@ DIST wren-0.2.0.tar.gz 1791488 BLAKE2B a2f48e9b115ea89cf25af1fe8cefa3c26639ce06f89796df4f5eb744b2382b44f83d6285eedfa9cb5681342cc8ebca535bae586445225622c8ebdb30c7088975 SHA512 67912df14d8afa16a4e50fa67e232870e08eb392601f7b1633bcfb242f2de7624b9a3501df9e1ae40fb62646db57ff6553733ddb3015b6b5086999dadf7d2da2 +DIST wren-0.3.0.tar.gz 1228834 BLAKE2B ff809008646970815b0f3ef3457d12ad1e6ac431b32f059035b15f1ad9f46247510a28d34d789472c6dc9fe1caeee71e09bd5484fe21dfdb356d8fcfc206a812 SHA512 8c05b69539b8a51289efecbd998bf1d054ff90944b949720b512b7a1202ace9ba56779f2e995097571459da6d8447f925f54c8170a3f6edeeaac6df265ffdc4c +DIST wren-cli-0.3.0.tar.gz 509755 BLAKE2B 13034a6aeaa7ef2a20163714233c4750f1ab88fb232758c26bd35f8616c239936b1f80bf95c95da4d2ad2436a7813f1763002637030473a9abed8d0a4532d61d SHA512 8d4894c5e669c0c03bfb546c37cb9e917990a6cb6c59d399cbb5a03a9c9de7954bc203646ac776643c73ab9cb6e331868707d82e7c2ebd8625a9d80f4aea4f20 diff --git a/dev-lang/wren/wren-0.3.0.ebuild b/dev-lang/wren/wren-0.3.0.ebuild new file mode 100644 index 0000000000..5240bf6e34 --- /dev/null +++ b/dev-lang/wren/wren-0.3.0.ebuild @@ -0,0 +1,65 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) + +inherit distutils-r1 toolchain-funcs + +DESCRIPTION="The Wren Programming Language" +HOMEPAGE="https://wren.io/" +SRC_URI=" + https://github.com/wren-lang/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz + https://github.com/wren-lang/${PN}-cli/archive/${PV}.tar.gz -> ${PN}-cli-${PV}.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="dev-libs/libuv" +DEPEND="${RDEPEND}" + +src_prepare() { + default + + # Don't pre-strip + sed -i 's/-s$//' projects/make/wren_shared.make || die + sed -i 's/-s$//' "${WORKDIR}"/wren-cli-${PV}/projects/make/wren_cli.make || die + + cat < ${PN}.pc +prefix="${EPREFIX}/usr" +libdir="\${prefix}/$(get_libdir)" +includedir="\${prefix}/include" + +Name: ${PN} +Description: ${DESCRIPTION} +URL: ${HOMEPAGE} +Version: ${PV} +Libs: "-L\${libdir}\" -l${PN} +Cflags: "-I\${includedir}" +EOF +} + +src_compile() { + cd projects/make + emake + cd "${WORKDIR}/wren-cli-${PV}/projects/make" + emake +} + +python_test() { + ${EPYTHON} util/test.py || die +} + +src_install() { + newbin "${WORKDIR}"/wren-cli-${PV}/bin/wren_cli wren + dolib.so lib/libwren.so + doheader src/include/wren.h + doheader src/include/wren.hpp + + insinto /usr/$(get_libdir)/pkgconfig + doins ${PN}.pc + einstalldocs +} From 499874d36c52332d1b3d79f3a3c9ce527878f05f Mon Sep 17 00:00:00 2001 From: Theo Anderson Date: Tue, 15 Dec 2020 22:40:27 +1300 Subject: [PATCH 15/19] dev-lang/wren: drop 9999 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Theo Anderson --- dev-lang/wren/wren-9999.ebuild | 79 ---------------------------------- 1 file changed, 79 deletions(-) delete mode 100644 dev-lang/wren/wren-9999.ebuild diff --git a/dev-lang/wren/wren-9999.ebuild b/dev-lang/wren/wren-9999.ebuild deleted file mode 100644 index 689c8a5dcd..0000000000 --- a/dev-lang/wren/wren-9999.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="The Wren Programming Language" -HOMEPAGE="https://wren.io/" -if [[ ${PV} == 9999 ]]; then - EGIT_REPO_URI="https://github.com/wren-lang/${PN}.git" - inherit git-r3 - KEYWORDS="" -else - SRC_URI="https://github.com/wren-lang/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="MIT" -SLOT="0" -IUSE="static-libs tools" - -DEPEND=">=dev-libs/libuv-1.10.0" -RDEPEND="${DEPEND}" -BDEPEND="" -#BDEPEND="test? ( dev-lang/python )" -#RESTRICT="!test? ( test )" -RESTRICT="test" - -src_configure() { - return -} - -src_compile() { - local targets="" - - if use static-libs ; then - #do both shared and static libs - targets="${targets} vm" - else - targets="${targets} shared" - fi - if use tools ; then - targets="${targets} cli" - fi - #I don't think tests are working, I just get lots of linker errors - #if use test ; then - # targets="${targets} api_test unit_test" - #fi - - echo "prefix=\"${EPREFIX}/usr\"" > ${PN}.pc - echo "libdir=\"\${prefix}/$(get_libdir)\"" >> ${PN}.pc - echo "includedir=\"\${prefix}/include\"" >> ${PN}.pc - echo "" >> ${PN}.pc - echo "Name: ${PN}" >> ${PN}.pc - echo "Description: ${DESCRIPTION}" >> ${PN}.pc - echo "URL: ${HOMEPAGE}" >> ${PN}.pc - echo "Version: ${PV}" >> ${PN}.pc - echo "Libs: \"-L\${libdir}\" -l${PN}" >> ${PN}.pc - echo "Cflags: \"-I\${includedir}\"" >> ${PN}.pc - - tc-export AR CC - emake -f util/wren.mk LIBUV_DIR="${EPREFIX}/usr" LIBUV="${EPREFIX}/usr/$(get_libdir)/libuv.so" VERBOSE=1 ${targets} -} - -src_install() { - if use tools ; then - dobin bin/wren - fi - if use static-libs ; then - dolib.a lib/libwren.a - fi - dolib.so lib/libwren.so - doheader src/include/wren.h - doheader src/include/wren.hpp - - insinto /usr/$(get_libdir)/pkgconfig - doins ${PN}.pc -} From 36ba9beceec6469351ea02b05fb5e9d9a4978d00 Mon Sep 17 00:00:00 2001 From: Andrea Postiglione Date: Tue, 15 Dec 2020 12:16:05 +0100 Subject: [PATCH 16/19] sys-cluster/pcs-0.10.7: modify thin dependency Signed-off-by: Andrea Postiglione --- sys-cluster/pcs/pcs-0.10.7.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-cluster/pcs/pcs-0.10.7.ebuild b/sys-cluster/pcs/pcs-0.10.7.ebuild index 0c84f9fb50..c4cfeedbd4 100644 --- a/sys-cluster/pcs/pcs-0.10.7.ebuild +++ b/sys-cluster/pcs/pcs-0.10.7.ebuild @@ -53,7 +53,7 @@ ruby_add_rdepend " dev-ruby/rack-test dev-ruby/rubygems dev-ruby/sinatra - dev-ruby/thin + www-servers/thin dev-ruby/thor dev-ruby/tilt " From 1eedca9eede41a1b3489001f1aa29f0795d36d82 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Tue, 15 Dec 2020 15:49:13 +0000 Subject: [PATCH 17/19] media-sound/scream: remove from guru. It got just added to ::gentoo Bug: https://bugs.gentoo.org/718800 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Alexey Sokolov --- media-sound/scream/Manifest | 1 - media-sound/scream/metadata.xml | 11 ------- media-sound/scream/scream-3.6.ebuild | 41 --------------------------- media-sound/scream/scream-9999.ebuild | 41 --------------------------- 4 files changed, 94 deletions(-) delete mode 100644 media-sound/scream/Manifest delete mode 100644 media-sound/scream/metadata.xml delete mode 100644 media-sound/scream/scream-3.6.ebuild delete mode 100644 media-sound/scream/scream-9999.ebuild diff --git a/media-sound/scream/Manifest b/media-sound/scream/Manifest deleted file mode 100644 index d7e02efe74..0000000000 --- a/media-sound/scream/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST scream-3.6.tar.gz 999237 BLAKE2B d199d9658958ac53d973c25421ee3a7f2c1ec9666c34596639942bcbfa5efb60e4aad033adc2fdbd810f676f412357283dc5fda6224752587498f7636ade1662 SHA512 4fd07a808d8f0ead3551061e96fe2f9b54ef6f34d1d615fb6454185fc6ffc67f71afb08a876550363cb3f8c15bbff461936808031e5aba5885626c92880e92ec diff --git a/media-sound/scream/metadata.xml b/media-sound/scream/metadata.xml deleted file mode 100644 index 368ae35c5b..0000000000 --- a/media-sound/scream/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - alexey+gentoo@asokolov.org - Alexey Sokolov - - - duncanthrax/scream - - diff --git a/media-sound/scream/scream-3.6.ebuild b/media-sound/scream/scream-3.6.ebuild deleted file mode 100644 index e246e9de68..0000000000 --- a/media-sound/scream/scream-3.6.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="Plays sound received from network or from a QEMU Windows VM" -HOMEPAGE="https://github.com/duncanthrax/scream" - -if [[ ${PV} == *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI=${EGIT_REPO_URI:-"https://github.com/duncanthrax/scream.git"} -else - SRC_URI="https://github.com/duncanthrax/scream/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -S="${S}/Receivers/unix" - -LICENSE="Ms-PL" -SLOT="0" -IUSE="alsa pulseaudio" - -BDEPEND=" - virtual/pkgconfig -" -DEPEND=" - alsa? ( media-libs/alsa-lib ) - pulseaudio? ( media-sound/pulseaudio ) -" -RDEPEND="${DEPEND}" - -src_configure() { - local mycmakeargs=( - -DALSA_ENABLE=$(usex alsa) - -DPULSEAUDIO_ENABLE=$(usex pulseaudio) - ) - - cmake_src_configure -} diff --git a/media-sound/scream/scream-9999.ebuild b/media-sound/scream/scream-9999.ebuild deleted file mode 100644 index e246e9de68..0000000000 --- a/media-sound/scream/scream-9999.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="Plays sound received from network or from a QEMU Windows VM" -HOMEPAGE="https://github.com/duncanthrax/scream" - -if [[ ${PV} == *9999* ]]; then - inherit git-r3 - EGIT_REPO_URI=${EGIT_REPO_URI:-"https://github.com/duncanthrax/scream.git"} -else - SRC_URI="https://github.com/duncanthrax/scream/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -S="${S}/Receivers/unix" - -LICENSE="Ms-PL" -SLOT="0" -IUSE="alsa pulseaudio" - -BDEPEND=" - virtual/pkgconfig -" -DEPEND=" - alsa? ( media-libs/alsa-lib ) - pulseaudio? ( media-sound/pulseaudio ) -" -RDEPEND="${DEPEND}" - -src_configure() { - local mycmakeargs=( - -DALSA_ENABLE=$(usex alsa) - -DPULSEAUDIO_ENABLE=$(usex pulseaudio) - ) - - cmake_src_configure -} From bba38927d6208179be5737c7a00649310160e81f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Gasewicz?= Date: Tue, 15 Dec 2020 19:29:55 +0100 Subject: [PATCH 18/19] dev-python/cx-oracle: new package MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Michał Gasewicz --- dev-python/cx-oracle/Manifest | 1 + dev-python/cx-oracle/cx-oracle-8.0.1.ebuild | 42 +++++++++++++++++++++ dev-python/cx-oracle/metadata.xml | 18 +++++++++ 3 files changed, 61 insertions(+) create mode 100644 dev-python/cx-oracle/Manifest create mode 100644 dev-python/cx-oracle/cx-oracle-8.0.1.ebuild create mode 100644 dev-python/cx-oracle/metadata.xml diff --git a/dev-python/cx-oracle/Manifest b/dev-python/cx-oracle/Manifest new file mode 100644 index 0000000000..ac617c7f83 --- /dev/null +++ b/dev-python/cx-oracle/Manifest @@ -0,0 +1 @@ +DIST cx_Oracle-8.0.1.tar.gz 325704 BLAKE2B 523296c4746d86307b141f8bb2f3b5611ff6a9ffae88183d0ac5c477cc6aa298a5f4f16bffacc6fd175c47f7fdf2f20c3a4b8959ae8cc774bf9c31fe5282ec5d SHA512 57c907f6ee812f6a58af0437acba927c2d9b3c9c06592d02c22fe4766d063807595a0ececa941ccb24d35f74fe1a53d28a7ba6c5acbe35ea997ad413a8fcd2e2 diff --git a/dev-python/cx-oracle/cx-oracle-8.0.1.ebuild b/dev-python/cx-oracle/cx-oracle-8.0.1.ebuild new file mode 100644 index 0000000000..7426529fac --- /dev/null +++ b/dev-python/cx-oracle/cx-oracle-8.0.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{5,6,7,8} ) + +inherit distutils-r1 + +MY_PN="cx_Oracle" +MY_P=${MY_PN}-${PV} +DESCRIPTION="Python interface to Oracle" +HOMEPAGE=" + https://oracle.github.io/python-cx_Oracle/ + https://pypi.org/project/cx-Oracle/ +" +SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" + +LICENSE="Computronix" +SLOT="0" +KEYWORDS="~amd64" +IUSE="examples" + +DEPEND="dev-db/oracle-instantclient" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${MY_P} + +DOCS=( README.txt ) + +pkg_postinst() { + return + # no python_mod_optimize +} + +src_install() { + distutils-r1_src_install + if use examples; then + docinto examples + dodoc -r samples/. || die + fi +} diff --git a/dev-python/cx-oracle/metadata.xml b/dev-python/cx-oracle/metadata.xml new file mode 100644 index 0000000000..2593817a31 --- /dev/null +++ b/dev-python/cx-oracle/metadata.xml @@ -0,0 +1,18 @@ + + + + + https://cx-oracle.readthedocs.io + https://cx-oracle.readthedocs.io/en/latest/release_notes.html#releasenotes + https://github.com/oracle/python-cx_Oracle/issues + oracle/python-cx_Oracle + + + rozstrojenie.jazni@gmail.com + Michał Gasewicz + + cx_Oracle is a Python extension module that enables access to Oracle Database. + + Install examples, usually source code + + From 65be268899bf3303fbbe8d7569e75fe26e1cc2b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Gasewicz?= Date: Tue, 15 Dec 2020 19:36:51 +0100 Subject: [PATCH 19/19] cx_Oracle license MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Gasewicz --- licenses/Computronix | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 licenses/Computronix diff --git a/licenses/Computronix b/licenses/Computronix new file mode 100644 index 0000000000..eb62ea961a --- /dev/null +++ b/licenses/Computronix @@ -0,0 +1,36 @@ +LICENSE AGREEMENT FOR CX_ORACLE + +Copyright 2016, 2018, Oracle and/or its affiliates. All rights reserved. + +Portions Copyright 2007-2015, Anthony Tuininga. All rights reserved. + +Portions Copyright 2001-2007, Computronix (Canada) Ltd., Edmonton, Alberta, +Canada. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions, and the disclaimer that follows. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions, and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the names of the copyright holders nor the names of any contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +DISCLAIMER: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +*AS IS* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Computronix is a registered trademark of Computronix (Canada) Ltd. +