Merge updates from master

This commit is contained in:
Repository mirror & CI 2023-08-28 16:46:32 +00:00
commit baadadab1a
26 changed files with 300 additions and 27 deletions

View File

@ -1,2 +1,3 @@
DIST terragrunt-bin-0.38.6.bin 35379973 BLAKE2B 03d6d21a933aac91775d15e6f4e3f7434353bea9e8b4dd1ce7add38f86aebb78cbfb91cc7d6aacc3d96945f1c07713e27f20e4e15a616bfa6d2d395938a7831d SHA512 d72c821de9bc8c5df3432e7f2e4f105c222fb303f80775e2f5798d54686d00c15ff064092b5bff6a8808c575bf921fa2afd0b22e05def4cc47067a13b6560192
DIST terragrunt-bin-0.45.4.bin 44067450 BLAKE2B 7e9c57e8e74066e177e328fef26358692fb1867d83ec2287b4cc1ff914bc1801d9dc1ce106b187245ef07723bac77873ad4d8a52a10ef6a8cbd4f1f166a9ef69 SHA512 18a1897b245e637ba98321e95a10dd9586666f9771b48ca20f39f42e2bdeecd51519e2fbe78c94858141844332c3ee5bfea80255dfc06bad7f94782bac5b436d
DIST terragrunt-bin-0.50.8.bin 46866216 BLAKE2B b8c28692ed77d9b590a2baecb4146665878739cebd4f75f027bef7e2ccf6885ffacd00f10cd857df84777a2e08fd140aa18d705459229c0bb3900b5b773b9891 SHA512 47567fc5f4f010ef6463cf3370c5bcac7034049af0b511da570b113f112542eb31e05e86a66d38113c41da127ffe990b81d6872a7ae8794f0e77ee5eea94b797

View File

@ -0,0 +1,23 @@
# Copyright 2022-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A thin wrapper for Terraform"
HOMEPAGE="https://www.gruntwork.io"
SRC_URI="https://github.com/gruntwork-io/${PN%-bin}/releases/download/v${PV}/terragrunt_linux_amd64 -> ${P}.bin"
S="${WORKDIR}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="-* ~amd64"
QA_FLAGS_IGNORED=".*"
src_unpack() {
cp "${DISTDIR}/${P}.bin" terragrunt || die
}
src_install() {
dobin terragrunt
}

View File

@ -0,0 +1,63 @@
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
NO_DOT_PV=$(ver_rs 1- '')
DESCRIPTION="A free file archiver for extremely high compression"
HOMEPAGE="https://www.7-zip.org/ https://sourceforge.net/projects/sevenzip/"
SRC_URI="https://sourceforge.net/projects/sevenzip/files/7-Zip/${PV}/7z${NO_DOT_PV}-src.tar.xz/download -> ${PN}-${PV}.tar.xz"
LICENSE="LGPL-2 BSD"
IUSE="asm"
SLOT="0"
KEYWORDS="~amd64"
S="${WORKDIR}/CPP/7zip/"
RESTRICT="mirror"
RDEPEND=""
DEPEND="${RDEPEND}"
BDEPEND="asm? ( dev-lang/jwasm )"
pkg_setup() {
# instructions in DOC/readme.txt, Compiling 7-Zip for Unix/Linux
# TLDR; every combination of options (clang|gcc)+(asm/noasm)
# has a dedicated makefile & builddir
mfile="cmpl"
if tc-is-clang; then
mfile="${mfile}_clang"
bdir=c
elif tc-is-gcc; then
mfile="${mfile}_gcc"
bdir=g
else
die "Unsupported compiler: $(tc-getCC)"
fi
if use asm ; then
mfile="${mfile}_x64"
bdir="${bdir}_x64"
fi
export mfile="${mfile}.mak"
export bdir
}
src_prepare() {
default
sed -i -e 's/-Werror //g' ./7zip_gcc.mak || die "Error removing -Werror"
sed -i -e 's/$(LFLAGS_STRIP)//g' ./7zip_gcc.mak \
|| die "Error removing hardcoded strip"
}
src_compile() {
pushd "./Bundles/Alone2" || die "Unable to switch directory"
# USE_JWASM=1 - if asm: use JWasm assembler instead of Asmc (not a gentoo package)
emake DISABLE_RAR=1 USE_JWASM=1 --file "../../${mfile}"
popd > /dev/null || die "Unable to switch directory"
}
src_install() {
dobin "./Bundles/Alone2/b/${bdir}/7zz"
}

1
app-arch/7zip/Manifest Normal file
View File

@ -0,0 +1 @@
DIST 7zip-23.01.tar.xz 1378588 BLAKE2B 348484b24b39db70e513fe50d79954ea0e2dd669f83e3601fa796c8f0ca4734132ca20fac8cda9b8ba550bad9146627fc0ae07056abb99028ef6d825b6a533bd SHA512 e39f660c023aa65e55388be225b5591fe2a5c9138693f3c9107e2eb4ce97fafde118d3375e01ada99d29de9633f56221b5b3d640c982178884670cd84c8aa986

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<use>
<flag name="asm">Use <pkg>dev-lang/jwasm</pkg> to include optimized code</flag>
</use>
<maintainer type="person">
<email>m@matous.dev</email>
<name>Martin Matouš</name>
</maintainer>
<upstream>
<maintainer>
<name>Igor Pavlov</name>
</maintainer>
<remote-id type="sourceforge">sevenzip</remote-id>
<changelog>https://www.7-zip.org/history.txt</changelog>
<bugs-to>https://sourceforge.net/p/sevenzip/bugs/</bugs-to>
</upstream>
</pkgmetadata>

View File

@ -27,4 +27,11 @@ RDEPEND="
dev-python/simplejson[${PYTHON_USEDEP}]
dev-python/tld[${PYTHON_USEDEP}]
dev-python/tqdm[${PYTHON_USEDEP}]
dev-python/ahocorasick[${PYTHON_USEDEP}]
dev-python/appdirs[${PYTHON_USEDEP}]
"
src_prepare() {
rm -rf "${S}/tests"
distutils-r1_src_prepare
}

View File

@ -31,6 +31,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
QA_PREBUILT="usr/lib/*"
RDEPEND="
app-misc/ca-certificates
$(python_gen_cond_dep '
dev-python/beautifulsoup4[${PYTHON_USEDEP}]
dev-python/distro[${PYTHON_USEDEP}]

View File

@ -1,4 +1,4 @@
DIST drogon-1.8.3.tar.gz 543846 BLAKE2B 3faf24f0d3d9115ea463b38c285e43f098dab488df905cc0e467fec1dc981b1587d97112547eb5b5324775d5176a743ff55ebc383243b15efcab64accf9aba10 SHA512 48653f40b408cebe3e2b250df97c1819d090f85daa1f8d6b252aa6824a69f742762dbc1869a3aac378740dd01d0a2cf30af85779c5e56cffa82e2ad8a950fd83
DIST drogon-1.8.4.tar.gz 550065 BLAKE2B 393c98f5c6f65368e9f89f46c4804a738a153139cc12adbe76c6ceff888637887f0dfa8099099255589e87d27e2840b4a9d65d88140bd18c5202f6eb344a43cc SHA512 381b4b576d316e55690dc0531cfeaeee4c0e00ce540a502e1c1870eea9a463d00d7e4bc9a354c459e5fbc6da5f046757f07ff2077bb3a9603f97f448f2d17ea2
DIST trantor-1.5.10.tar.gz 112413 BLAKE2B 7ee04f57ba6f41edcc4c5334c63c7194e8a581edaec771ca6a2b2f6c444603da7a43d5ebf30ac89b9302f4302c4a54af9cee3c9532545345f0bf51b56b95dae3 SHA512 27ddc46b81747ba43f2abb5d6f3b82257ee6a7295f3cca3da0320dea2e6ef4b6276641a3fc3f61a082aa7ea360ee56663cebf4c6301ba79dcdbbdc96a450cb28
DIST drogon-1.8.6.tar.gz 561577 BLAKE2B ad64cbb22b766403156a34cc604e7f9304541a98b86eea83b7afbb3d451c4aa176b7d359db5bfff48ce3f5475e436e13c8cf8d7adc1f4de123026ae2da1e4870 SHA512 4ca09f52fde3b080255c0938d510ea5592ec30e4ea9b7648a7ea1b528c9f096e1c1534647d5bf93d7923b43106227c6c1c3b67f238becbd6da15e8acecbf4c5c
DIST trantor-1.5.11.tar.gz 113152 BLAKE2B 6ec0c8ae98835ad5fa94ab154ac3910496ddba2f67e307f90b48ee5bc39d3b4158adcac39b1bd2c2b7343a31f9fba394a6cbbb4fa86c1d1a8f1f28887d5a7955 SHA512 dd65938bebb2e6714e5603db3bfc82cd1a63395c17dce014147a41fdc74548cb526e1457a7472aa51bb80ce629a9935b4db9eeadf735efaf30899ef73f776a58
DIST trantor-1.5.13.tar.gz 143230 BLAKE2B 298870f3b132d4dbacbab88b9689fd2e8fec7450dcca82fc985393b718a701008debea7a50f2d7814871a9399bb423f21b9a9454de59468f7bfade51b70a283d SHA512 4f4cef4103faa323e5213c1b59c0d86606831e97127594d5c9248481ba4ce66905c40c25c5d83d00e78936d53ba03b8450e6848199a85e9120bb8f2522bf7805

View File

@ -5,7 +5,7 @@ EAPI=8
inherit cmake
MY_TRANTOR_V="1.5.10"
MY_TRANTOR_V="1.5.13"
DESCRIPTION="C++14/17 based HTTP web application framework"
HOMEPAGE="https://github.com/drogonframework/drogon"
@ -17,7 +17,8 @@ SRC_URI="
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+brotli doc examples mariadb postgres redis sqlite +ssl test"
IUSE="+brotli doc examples mariadb postgres redis sqlite test +yaml"
# REQUIRED_USE="test? ( postgres sqlite mariadb )"
RESTRICT="!test? ( test )"
RDEPEND="
@ -29,12 +30,12 @@ RDEPEND="
postgres? ( dev-db/postgresql:= )
redis? ( dev-libs/hiredis:= )
sqlite? ( dev-db/sqlite:3 )
ssl? ( dev-libs/openssl:= )
elibc_Darwin? ( sys-libs/native-uuid )
elibc_SunOS? ( sys-libs/libuuid )
!elibc_Darwin? ( !elibc_SunOS? (
sys-apps/util-linux
) )
yaml? ( dev-cpp/yaml-cpp:= )
"
DEPEND="
${RDEPEND}
@ -42,6 +43,8 @@ DEPEND="
"
BDEPEND="doc? ( app-doc/doxygen )"
PATCHES=( "${FILESDIR}"/${PN}-1.8.4-fix-test-build.patch )
DOCS=( CONTRIBUTING.md ChangeLog.md README.md README.zh-CN.md README.zh-TW.md )
src_unpack() {
@ -50,20 +53,12 @@ src_unpack() {
# the cert is in the trantor submodule normally, but we unbundle that
if use test; then
mkdir -p ${P}/trantor/trantor/tests || die
cp -v trantor-${MY_TRANTOR_V}/trantor/tests/server.pem \
${P}/trantor/trantor/tests/server.pem \
|| die "could not copy test certificate"
cp -v trantor-${MY_TRANTOR_V}/trantor/tests/server.{crt,key} \
${P}/trantor/trantor/tests/ \
|| die "could not copy test certificate and/or key"
fi
}
src_prepare() {
use examples && DOCS+=( "${S}/examples" )
cmake_comment_add_subdirectory "trantor"
cmake_src_prepare
}
src_configure() {
use doc && HTML_DOCS=( "${BUILD_DIR}/docs/drogon/html/." )
@ -76,7 +71,8 @@ src_configure() {
-DBUILD_REDIS=$(usex redis)
-DBUILD_TESTING=$(usex test)
-DBUILD_BROTLI=$(usex brotli)
$(cmake_use_find_package ssl OpenSSL)
-DBUILD_YAML_CONFIG=$(usex yaml)
-DUSE_SUBMODULE=NO
$(cmake_use_find_package doc Doxygen)
)
@ -84,6 +80,7 @@ src_configure() {
}
src_install() {
use examples && DOCS+=( "${S}/examples" )
docompress -x /usr/share/doc/${PF}/examples
cmake_src_install

View File

@ -1,2 +1,2 @@
DIST trantor-1.5.10.tar.gz 112413 BLAKE2B 7ee04f57ba6f41edcc4c5334c63c7194e8a581edaec771ca6a2b2f6c444603da7a43d5ebf30ac89b9302f4302c4a54af9cee3c9532545345f0bf51b56b95dae3 SHA512 27ddc46b81747ba43f2abb5d6f3b82257ee6a7295f3cca3da0320dea2e6ef4b6276641a3fc3f61a082aa7ea360ee56663cebf4c6301ba79dcdbbdc96a450cb28
DIST trantor-1.5.11.tar.gz 113152 BLAKE2B 6ec0c8ae98835ad5fa94ab154ac3910496ddba2f67e307f90b48ee5bc39d3b4158adcac39b1bd2c2b7343a31f9fba394a6cbbb4fa86c1d1a8f1f28887d5a7955 SHA512 dd65938bebb2e6714e5603db3bfc82cd1a63395c17dce014147a41fdc74548cb526e1457a7472aa51bb80ce629a9935b4db9eeadf735efaf30899ef73f776a58
DIST trantor-1.5.13.tar.gz 143230 BLAKE2B 298870f3b132d4dbacbab88b9689fd2e8fec7450dcca82fc985393b718a701008debea7a50f2d7814871a9399bb423f21b9a9454de59468f7bfade51b70a283d SHA512 4f4cef4103faa323e5213c1b59c0d86606831e97127594d5c9248481ba4ce66905c40c25c5d83d00e78936d53ba03b8450e6848199a85e9120bb8f2522bf7805

View File

@ -36,7 +36,7 @@ src_configure() {
"-DBUILD_DOC=$(usex doc)"
"-DBUILD_TESTING=$(usex test)"
"-DBUILD_C-ARES=$(usex adns)"
"$(cmake_use_find_package ssl OpenSSL)"
"-DTRANTOR_USE_TLS=$(usex ssl openssl none)"
)
cmake_src_configure

View File

@ -0,0 +1 @@
DIST pyahocorasick-1.4.4.tar.gz 89581 BLAKE2B c803883561623ef306fb91857dd1da1a85712ed1387c1449e88798018e8785bbcddc5fb8942f640ae454db03c05856169d1abc5c78a27c5962cc2f5b8fa3a60e SHA512 2b2ef6d99abe8e051feb943b02c58e9854118e4408d01b86b422d0576b204de081b2ea5d5fb775a0886e02d38d905e3331016771c67f412f97d0633f805dc250

View File

@ -0,0 +1,23 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
MY_PN="py${PN}"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Python module implementing Aho-Corasick algorithm"
HOMEPAGE="https://github.com/WojciechMula/pyahocorasick"
SRC_URI="https://github.com/WojciechMula/${MY_PN}/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${MY_P}"
distutils_enable_tests pytest

View File

@ -0,0 +1,19 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
EGIT_REPO_URI="https://github.com/WojciechMula/pyahocorasick.git"
inherit distutils-r1 git-r3
DESCRIPTION="Python module implementing Aho-Corasick algorithm"
HOMEPAGE="https://github.com/WojciechMula/pyahocorasick"
SRC_URI=""
LICENSE="BSD"
SLOT="0"
KEYWORDS=""
distutils_enable_tests pytest

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>spiderx@spiderx.dp.ua</email>
<name>Vladimir Pavljuchenkov</name>
</maintainer>
<longdescription lang="en">
pyahocorasick is a fast and memory efficient library for exact or
approximate multi-pattern string search meaning that you can find
multiple key strings occurrences at once in some input text.
The library provides an ahocorasick Python module that you can use
as a plain dict-like Trie or convert a Trie to an automaton for
efficient Aho-Corasick search.
</longdescription>
<upstream>
<remote-id type="github">WojciechMula/pyahocorasick</remote-id>
<remote-id type="pypi">pyahocorasick</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1 @@
DIST evernote3-1.25.14.tar.gz 128787 BLAKE2B d3be20f6f582d30e19d20e8c91920f3b09588d035f337b784064c9659df6ce22cb6ece3736ced60dc33d8f04a0544241314cc5efd54a238f38b865361433155d SHA512 a7f80bb804c69274fb48a33f039787fcf8ee45a4af380f1e757df4f7b36bcfdf855a0776e8f7140286db1d1c52480c5be9d08ade3fc02d8d743f62329e48b287

View File

@ -0,0 +1,21 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Evernote SDK"
HOMEPAGE="https://github.com/Evernote/evernote-sdk-python3"
KEYWORDS="~amd64 ~x86"
LICENSE="Apache-2.0"
SLOT="0"
RDEPEND="dev-python/oauth2[${PYTHON_USEDEP}]
dev-python/oauthlib[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/requests-oauthlib[${PYTHON_USEDEP}]"

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<name>Vitaly Zdanevich</name>
<email>zdanevich.vitaly@ya.ru</email>
</maintainer>
<upstream>
<remote-id type="github">Evernote/evernote-sdk-python3</remote-id>
<remote-id type="pypi">evernote3</remote-id>
<bugs-to>https://github.com/Evernote/evernote-sdk-python3/issues</bugs-to>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1 @@
DIST oauth2-1.9.gh.tar.gz 27353 BLAKE2B 07fd62f16e4053d2bac7c1ab672fd178967ff20c9e3ecd6a1c31d5898fa0aeb6170944b07b2345f73aa9b2928622e7e0e88f2a96cf0d0bb4ea89417de80917cd SHA512 ba3183aa4e5512920fa540955321646c167d23dfd4bc2fad4d5426e1b71e35e91fe11f6cd919a7913015f9bf33c43849659cb97c862a57b5c2e288ace29ad452

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<longdescription lang="en">
This library implements OAuth 1.0 and not OAuth 2.0.
This code was originally forked from Leah Culver and Andy Smith's oauth.py code. Some of the tests come from a fork by Vic Fryzel, while a revamped Request class and more tests were merged in from Mark Paschal's fork. A number of notable differences exist between this code and its forefathers:
100% unit test coverage.
The DataStore object has been completely ripped out. While creating unit tests for the library I found several substantial bugs with the implementation and confirmed with Andy Smith that it was never fully baked.
Classes are no longer prefixed with OAuth.
The Request class now extends from dict.
The library is likely no longer compatible with Python 2.3.
The Client class works and extends from httplib2. It's a thin wrapper that handles automatically signing any normal HTTP request you might wish to make.
</longdescription>
<maintainer type="person">
<name>Vitaly Zdanevich</name>
<email>zdanevich.vitaly@ya.ru</email>
</maintainer>
<upstream>
<remote-id type="github">joestump/python-oauth2</remote-id>
<remote-id type="pypi">oauth2</remote-id>
<bugs-to>https://github.com/joestump/python-oauth2/issues</bugs-to>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYPI_NO_NORMALIZE=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{3..12} )
inherit distutils-r1
DESCRIPTION="A fully tested, abstract interface to creating OAuth clients and servers."
HOMEPAGE="https://github.com/joestump/python-oauth2"
SRC_URI="https://github.com/joestump/python-${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
S=${WORKDIR}/python-${P}
KEYWORDS="~amd64 ~x86"
LICENSE="MIT"
SLOT="0"
RDEPEND="dev-python/httplib2[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
dev-python/pycodestyle[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
src_prepare() {
rm -rf "${S}/tests"
distutils-r1_src_prepare
}

View File

@ -108,18 +108,20 @@ src_unpack() {
cd "${S}" || die
# "zig build" doesn't have "fetch" subcommand yet
ezig build --help || die "Fetching Zig modules failed"
local ZLS_GEN_FLAGS="--generate-version-data master --generate-version-data-path version_data_offline.zig"
ezig build gen --verbose -- ${ZLS_GEN_FLAGS} || die "Pre-generating Zig version data failed"
}
src_compile() {
ezig build -Doptimize=ReleaseSafe -Ddata_version=master --verbose || die
ezig build -Doptimize=ReleaseSafe -Dversion_data_file_path=version_data_offline.zig --verbose || die
}
src_test() {
ezig build test -Doptimize=ReleaseSafe -Ddata_version=master --verbose || die
ezig build test -Doptimize=ReleaseSafe -Dversion_data_file_path=version_data_offline.zig --verbose || die
}
src_install() {
DESTDIR="${ED}" ezig build install --prefix /usr -Doptimize=ReleaseSafe -Ddata_version=master --verbose || die
DESTDIR="${ED}" ezig build install --prefix /usr -Doptimize=ReleaseSafe -Dversion_data_file_path=version_data_offline.zig --verbose || die
dodoc README.md
}

View File

@ -2,7 +2,7 @@ DIST cc-1.0.73.crate 57880 BLAKE2B be8d7a25a54afdd759844e76aec61526fc2bd5ca09480
DIST cxx-1.0.71.crate 195479 BLAKE2B 956f735ad6a417337dd6e0f71ba49d21e8ad9724e288b8d05a013c76bdeb0c3565197f8fc02f861a13f68c6823a969b05852c4abc0ef48d3deb4a3ede3ce7d3c SHA512 1b770312e5ea69a9fa3882e2e507d9de4505dbf09fdab4e6cacdeed7a00122b1cc88583d7353959cd0375a380b7e8563a673c4602fc036130f248db97225b305
DIST cxxbridge-flags-1.0.71.crate 5593 BLAKE2B 4f3c72079b42cf41c66dc779a792c76d860e7b85220508b9284b23645b8fae3911864b76719457952bb3b7e666312022def72204c2d096afa2683716cb9f0c5d SHA512 53f5783c4c15b87eac8f6c7ca911b5b3c92a5821040c4000586a118b441aaab17f798f878433436e881f0edd531d9243234cdb4bacfea16fe1f60df080a2d6b9
DIST cxxbridge-macro-1.0.71.crate 59620 BLAKE2B ce4b5bfc016a799312cfc2000bcc7b0b701636a558b66d079e3a69ed3a4c83c3c22cbba7bcd3168107d5dd3a0728e2e8887c0089ac7ef022957cc0559ed7a2c5 SHA512 13b0f742ecf4724214b896bcd3c4fedff011751661bd657ca902f123fcb869e835ce850acb1cb9ebe0cb1d13fb9aecc74c7730586ebd465500c2e01cfe686dbc
DIST ddnet-17.2.tar.gz 45652108 BLAKE2B 2ff0959260fd2485dc90a8174b205b721dbcfac72227524eba825b8017d60f7fd3d075d33cb372ae7c405f7be0d14de74a7a393e2392e3a00c0a434843647edf SHA512 03b59dbd482705493b41b6bd3bb44dde20b7faed1e84ed1ae6fd18c4943d8f2083be7c968c15a466dffd1242f4091edb25c5c4d5c075591b27bea6f83cfb352f
DIST ddnet-17.2.1.tar.gz 45654486 BLAKE2B 802a0fda5348546056eb1cd41616a02d8257a33bdb075b23f0f092d04826b7b6a128d05686f2f03ab0c6e80234186a7aa94f8bdc46e27ee6cb430bc5c03e5c87 SHA512 d766964d31ef62a84d85c12e022656258b5621e20e7561694a27b8a2821f86f0d3ad566110ca171b20f429cd83520bb58fab0edee1a879f76898bf1db722e34a
DIST link-cplusplus-1.0.6.crate 8150 BLAKE2B 82b0eb89926a7f3b7e427242ff3f65eba78f467f1ab972f7f280daf09e2be7188d8e851a21018a268871d5dc9cf7dfda4ef24952b5bc38bd722a5537504c1ddb SHA512 9f77f71f7261472de0d97b2c26efb43f3d49dafbaa1eb853340467260a65d85344e94e023540e068051108afd63cc48c6a5c8025f50922a73dc6409134418e74
DIST proc-macro2-1.0.40.crate 40559 BLAKE2B d83cf7283393a82ca65263afc375d123bd2f48b719c9eab6859c52dc0c2b9b4b5af3090a0ebd0fedf0e1095f0bafbc443016f751a0485dc654bcd80a6f71e326 SHA512 bb179524bd41e36735010a7ec53e096359ffc3688ab97806a45ed9cfb17e8688ce352bbb8cd3bd4e15a4299e8500603c86591b17cfa31bca03f299f6f6347992
DIST quote-1.0.20.crate 28160 BLAKE2B db257025f64817b1b58eecb8e64e63f1782d8a7fcb42ed6c3364254ec5a26705e49ce0637c880b0355b99a77473ce3083caae2cfabbd1a1a7e4fc826bae2cb7c SHA512 d12f4a425273b99ae655da11fcf5dad2609e20ad3e7d85cde08c7d09f444a5c7a3505470bad2d48b1ba8ea59ebf38ab87aa1052e47ec414acfc05dcb07d438be

View File

@ -1,4 +1,4 @@
DIST go-sendxmpp-0.5.6-vendor.tar.xz 1381836 BLAKE2B 1854a7d8fe37da69020c9f9e5df85abd12dde180c27b5242dd2bcf9ae0c7b6dec750dc22dbcdcf39b6ab2a7da89c1c5fe0eb330fa07af731bb7bda4ba40510d2 SHA512 eeaf60e6d0a82ed38d4ee0c3f95822d5d4b1e48f220e19d16f59602a822a27b6041b66abbca20e405aaf95f7e77e17a3e5715a4af444137653c1da7ac5914e54
DIST go-sendxmpp-0.5.6.tar.bz2 28854 BLAKE2B 30932bc6f6c5665b59f2c3b1586ed7eb6f959b8a08cb861cf136612152c36999bda05727994a5583aa56f0c987f357c9e01d2c6392204c68339e6dd9d92b0c71 SHA512 a5d1241db6fd40a87ec46d5878d9e3f663614d76e6f375cb0f9a208c3960cc3661ac3bd5967cf6f6991c0b408a64facadab36642720a5387644d55fd774c0792
DIST go-sendxmpp-0.6.0-vendor.tar.xz 1387104 BLAKE2B de7eed4eb45bb12199f3eb92ac2d84a0d6ee9ad648b6d0d5a70f059c510bdd317d5ff60345a443d03f5b02f72048f7962b73a635449a0818a4f30fcd5513c550 SHA512 c396cfacb92723285f3eee410a17ac6e7bae346e1783cf14ae812cd6809cf76cbfec2d37461617ce9938461df6a2387bb54570eca67434bb343d383cdf45857e
DIST go-sendxmpp-0.6.0.tar.bz2 30272 BLAKE2B 488caef5d0f5d1f7b248d6374588e8f640684b7b95d87e26f99e8653123715a682e3e89e065c5751e28619f5e07230f04d8a5032a5b3b666ad657f3447884044 SHA512 2f11a72650ef32c5fb2caacc68b3d331025d651d858ba50632914c467a9108366f5bb6c1dd938bd7e3869ef014bba60595c8b82bdb3ae8797159fd048cfd828d
DIST go-sendxmpp-0.6.1-vendor.tar.xz 1388196 BLAKE2B d206b79daeae2b5cb49d9556f8b3ee9104531a1fa8f2828ab592c1477e8b259d21f1acb5085ec545a7d229b27aaf7a44c197f56a7684733fd848af31129babc4 SHA512 39b76f65195bf7a1563fe837d1c073aacbb83e493f1ae622988ee23eb34d6af15a74b4c1c090a3641e40d31a4d292b6012624957a8ac6384ce031076f7e0087c
DIST go-sendxmpp-0.6.1.tar.bz2 30102 BLAKE2B b00f8e3513ab8ad1cdb0d2a5465f4caba64380580f29e244a0a0be752732cffdaed54896243efda64fbd3a1efe8571e562346c004d46de6cbe11f7c7e9c6ccf6 SHA512 9a3a9a415ba68251c923f76be75caef93a7a2a3323a2cd03933c79f0c72d497af6c0837fd434c87ffd90e42a955e6c10c3133ca7e723594c9494962b95e933e2

View File

@ -1,10 +1,13 @@
# Copyright 2020-2022 Gentoo Authors
# Copyright 2020-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
# NOTE: To create the vendor tarball, run:
# `go mod vendor && cd .. && tar -caf ${P}-vendor.tar.xz ${P/-0/-v0}/vendor`
DESCRIPTION="A little tool to send messages to an XMPP contact or MUC"
HOMEPAGE="https://salsa.debian.org/mdosch/go-sendxmpp"
SRC_URI="
@ -13,7 +16,7 @@ SRC_URI="
"
S="${WORKDIR}/${PN}-v${PV}"
LICENSE="BSD-2 BSD MIT MIT-with-advertising"
LICENSE="BSD-2 BSD MIT"
SLOT="0"
KEYWORDS="~amd64"