Sync with portage [Mon Jun 1 14:15:31 MSK 2020].

develop
root 4 years ago
parent e979afbe35
commit 7ea93b0d9e

Binary file not shown.

Binary file not shown.

@ -0,0 +1,8 @@
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit acct-group
ACCT_GROUP_ID=307

@ -2,7 +2,7 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>voyageur@gentoo.org</email>
<name>Bernard Cafarelli</name>
<email>williamh@gentoo.org</email>
<name>William Hubbs</name>
</maintainer>
</pkgmetadata>

Binary file not shown.

@ -0,0 +1,12 @@
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit acct-user
DESCRIPTION="User for clair"
ACCT_USER_ID=307
ACCT_USER_GROUPS=( clair )
acct-user_add_deps

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>mozilla@gentoo.org</email>
<name>Gentoo Mozilla Team</name>
<maintainer type="person">
<email>williamh@gentoo.org</email>
<name>William Hubbs</name>
</maintainer>
</pkgmetadata>

Binary file not shown.

@ -36,6 +36,7 @@ RDEPEND="${DEPEND}
"
pkg_pretend() {
use inotify && CONFIG_CHECK+=" ~INOTIFY_USER"
use namespaces && CONFIG_CHECK="~NAMESPACES ~UTS_NS ~IPC_NS ~USER_NS ~PID_NS ~NET_NS"
use seccomp && CONFIG_CHECK+=" ~SECCOMP"
check_extra_config

@ -0,0 +1,143 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/clsync/clsync.git"
inherit git-r3
KEYWORDS=""
else
SRC_URI="https://github.com/clsync/${MY_PN}/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
inherit autotools linux-info systemd
DESCRIPTION="Live sync tool based on inotify, written in GNU C"
HOMEPAGE="https://github.com/clsync/clsync http://ut.mephi.ru/oss/clsync"
LICENSE="GPL-3+"
SLOT="0"
IUSE="apidoc +caps +clsync cluster control-socket cgroups doc debug
examples extra-debug extra-hardened gio +hardened +highload-locks
+inotify mhash namespaces seccomp socket-library static-libs"
REQUIRED_USE="
|| ( clsync socket-library )
|| ( gio inotify )
mhash? ( cluster )
seccomp? ( caps )
"
BDEPEND="
virtual/pkgconfig
apidoc? ( app-doc/doxygen[dot] )
"
DEPEND="
caps? ( sys-libs/libcap )
cgroups? ( dev-libs/libcgroup )
clsync? ( dev-libs/glib:2 )
mhash? ( app-crypt/mhash )
"
RDEPEND="${DEPEND}
!app-doc/clsync-docs
!dev-libs/libclsync
"
pkg_pretend() {
if use clsync; then
use inotify && CONFIG_CHECK+=" ~INOTIFY_USER"
use namespaces && CONFIG_CHECK="~NAMESPACES ~UTS_NS ~IPC_NS ~USER_NS ~PID_NS ~NET_NS"
use seccomp && CONFIG_CHECK+=" ~SECCOMP"
check_extra_config
fi
}
src_prepare() {
eapply_user
eautoreconf
}
src_configure() {
local harden_level=0
use hardened && harden_level=1
use extra-hardened && harden_level=2
local debug_level=0
use debug && debug_level=1
use extra-debug && debug_level=2
econf \
--enable-debug=${debug_level} \
--enable-paranoid=${harden_level} \
--without-bsm \
--without-kqueue \
$(use_enable caps capabilities) \
$(use_enable clsync) \
$(use_enable cluster) \
$(use_enable control-socket socket) \
$(use_enable highload-locks) \
$(use_enable namespaces unshare) \
$(use_enable seccomp) \
$(use_enable socket-library) \
$(use_with cgroups libcgroup) \
$(use_with gio gio lib) \
$(use_with inotify inotify native) \
$(use_with mhash)
}
src_compile() {
default
if use apidoc; then
doxygen .doxygen || die "doxygen failed"
fi
}
src_install() {
emake DESTDIR="${D}" install
if use socket-library; then
find "${ED}" -name "*.la" -delete
use static-libs || find "${ED}" -name "*.a" -delete || die "failed to remove static libs"
fi
if use clsync; then
newinitd "${FILESDIR}/${PN}.initd" "${PN}"
newconfd "${FILESDIR}/${PN}.confd" "${PN}"
# filter rules and sync scripts are supposed to be here
insinto /etc/${PN}
newins "${FILESDIR}/${PN}.conf" "${PN}.conf"
keepdir /etc/${PN}
systemd_dounit "examples/clsync@.service"
fi
if use doc; then
dodoc -r DEVELOPING NOTES PROTOCOL SHORTHANDS TODO doc/devel/*
else
rm "${ED}/usr/share/doc/${PF}/"{DEVELOPING,LICENSE,PROTOCOL,TODO}* || die
fi
use apidoc && dodoc -r doc/doxygen/html
if ! use examples; then
rm -r "${ED}/usr/share/doc/${PF}/examples" || die
fi
}
pkg_postinst() {
einfo "${PN} is just a convenient way to run synchronization tools on live data,"
einfo "it doesn't copy data itself, so you need to install software to do actual"
einfo "data transfer. Usually net-misc/rsync is a good choise, but ${PN} is"
einfo "is flexible enough to use any user tool, see manual page for details."
einfo
einfo "${PN} init script can be multiplexed, to use symlink init script to"
einfo "othername and use conf.d/othername to configure it."
einfo
einfo "If you're interested in improved security, enable"
einfo "USE=\"caps cgroups extra-hardened namespaces seccomp\""
if use socket-library; then
einfo
einfo "clsync instances you are going to use _must_ be compiled"
einfo "with control-socket support"
fi
}

@ -15,6 +15,8 @@
namespaces, seccomp, code hardening.
</longdescription>
<use>
<flag name="apidoc">Provide doxygen generated API docs.</flag>
<flag name="clsync">Build clsync binary. Most likely you want it. However it is possible to build only libclsync without clsync itself. </flag>
<flag name="cluster">Enable clustering support (allows master-master clsync on multiple hosts). Not fully implemented yet.</flag>
<flag name="control-socket">Enable AF_UNIX control socket support.</flag>
<flag name="cgroups">Use cgroups to limit /dev access.</flag>
@ -23,6 +25,7 @@
<flag name="gio">Enable GIO for FS monitoring (glib based alternative to inotify interface, not recommended; if both are compiled, may be selected at runtime).</flag>
<flag name="highload-locks">Allows to use spinlocks for short delays instead of mutexes, but only on SMP systems.</flag>
<flag name="namespaces">Enable namespaces isolation.</flag>
<flag name="socket-library">Build the control and monitoring socket library: libclsync.</flag>
</use>
<upstream>
<remote-id type="github">clsync/clsync</remote-id>

@ -1,6 +1,7 @@
DIST cloud.google.com%2Fgo%2F@v%2Fv0.26.0.mod 27 BLAKE2B 814b0fa8f12d5ce6171fa629b5a7eb34e0e882cc0c5430986896bb38c243e08dc83098f271227f4ba019e78f16dc97fbb381e833aff1819833d243b08add916b SHA512 5132f3438533427c0ab0fbb7a12112a7830ea9122662ed46019ff89c71d9cf80c02edc32dd5c892da572031b5a2cce100f2602fa6a19bea6be7c02781f701273
DIST cloud.google.com%2Fgo%2F@v%2Fv0.26.0.zip 2508208 BLAKE2B d17c22f3d8e3f0b52bab350e86c8fe29ea474e104ba89e3238e71dbd29139717a0d26586589f47303da4eb743fe86a76f727b772707584aba5bf76d8f5ef1969 SHA512 6dc6f4229011d8606e1eb3c046640f6938dae2e12a1b0a9e2a22b7d26b4ab50051cee09d17fc05298ef5d4901a6b7e12d4b06b8b8eac6b1e71442653eb25b541
DIST consul-1.7.2.tar.gz 22755052 BLAKE2B d863ac756f487004d0c1361bf470c1202bc2e2d1364414d4aad16dc313c7bb5021c45b1c8080ded707d67120ac009afcfc0bba37ccc99eb474049e57779f3db1 SHA512 d13d7750c745aeeb2577ed334bfef1ac8a4e0c6f671a6705c0b8978217d071ebcf32455c0bfc83a77fd03caef68a6e256d95b48d5406deaaaba263f1a97b23c2
DIST consul-1.7.3.tar.gz 22785232 BLAKE2B fde414c0f76dcd2aa267114a6ebe12f57e5165d67a581fbc2fa1eda6a50e67ff81f993c5e9898975e21a66942526a0460f47a0fc5f90062fa345dfbef5a77ca1 SHA512 6cbc4f3fce613b3f8ac220038cd013ce14801ccc6c999b12e42f2149277f845531932243b063fbd83d92b84ed75000c47636f7883bd04079c0b82c642e021c01
DIST github.com%2F!azure%2Fazure-sdk-for-go%2F@v%2Fv16.0.0+incompatible.mod 41 BLAKE2B de145bd0fb63d51b475e0f5d293b9957a170a7c7c206f1cf2d8eb9abdb67a80051b25116b68c5f450bcc8163bb942d34d9bd4ed0b41f4e06d0d510d9b1aeff55 SHA512 be976846ed78cec5b19618c7364c47e66c3475519bed166ad1e6b666399ea08028fa621869ab4980981fc70256acc9a7dd1c1e52c8d3d44cb0ac75f9907b6d3e
DIST github.com%2F!azure%2Fazure-sdk-for-go%2F@v%2Fv16.0.0+incompatible.zip 16060635 BLAKE2B 6c358031305d8c8245b52bc58ed08cea5cb07c3e80cb3043f369ac6faf893a95d66c31fec38f07fe9029f53239c509bc060cfdebda8ac8d5ae556dfa0d6851e3 SHA512 bfd8f9859e519d6e45f2324e3907f88a1e661ca597f8bb3b7ae772246ba9972e09d0883abc887346fed55928f5d8422cf4212e32377e9900137cd63f0f9a93b8
DIST github.com%2F!azure%2Fgo-autorest%2F@v%2Fv10.15.3+incompatible.mod 36 BLAKE2B 71643bf27cc23617d54777e18c77d9015af83e9e9c1ec846c333d91760e70e57e51e3b9fb0b6ec8bae5140893237ae6f08bfd6a50b452145d6bd635a4abfec12 SHA512 d7c80a07fa3633acb681d54fae5743c6aab0d5f1f9e1edc3f7037a7abcf12c5536c524e856f9ea3d876b2b0fdf2884fa307ed16fd9758aba17a3d28766df1377
@ -144,6 +145,8 @@ DIST github.com%2Fhashicorp%2Fgo-msgpack%2F@v%2Fv0.5.5.mod 39 BLAKE2B c5b445c060
DIST github.com%2Fhashicorp%2Fgo-msgpack%2F@v%2Fv0.5.5.zip 63182 BLAKE2B 6f6ca7aef3a60232a715cecb6f2a4f642fc32388229890699371d7a901498726bace0e37c800db4096769c65cebef01dc4abff9a111daa3cae8fd8352ff18174 SHA512 a50702f312dc7b0a9dc95c3415980e51d082e0c36820917b7ff5bc0965e06d5ead6d7749cf8c87c7671456e9c07e9625e342b644aa6f49a10b4483a198f845b4
DIST github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.0.0.mod 87 BLAKE2B 34587a565b583aac6338d7d23b4e7c2ce12deb6700e00bec711d3d8d829ef1ae356eb1b28873d5bc2a0d6ed249dd6095539a1dfd8c177bec32e08d97f4003620 SHA512 d47dfa43806a386eb74b60f692b3bc580997edb9d7feff6633992a5adbf94d102a238e036d828952e204960152c62895288af6f09e2582e8b1408d259fb834c0
DIST github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.0.0.zip 14840 BLAKE2B afc6e5519fc2dc1209382c6ffb6f73d29dc97b6cfa03ef525d6095e65870a1ce25ca59d56648e24bc399f53f6879c0a3ce91e27645a48734602292c7d99bfe16 SHA512 8f86f79788cec64d9ce4f02af2ab7acd64f2014e5b592256f07563841444520bf4810a1dfa76abf04909dbe5f3298c67c0a88e636e45a181e461a2fac08d385c
DIST github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.0.mod 96 BLAKE2B ada026bc3e6104973cb7900d638acb7976ee8301e98cea55548fc800d8954997b666d0c605dcf1de0f639932c8834bd13e8f8512e74529a818d3de978f0163d4 SHA512 7276c308f91ed52579965e7e83e839351f2170cef2b58ef67887d5eb926dd21fd502f98ddc84ca8e6f16c81171490c1e2d9a131569b5d6d56a1e2ba28f227451
DIST github.com%2Fhashicorp%2Fgo-multierror%2F@v%2Fv1.1.0.zip 17595 BLAKE2B 06dae93e8077ab6235d59b57646a162ff31e044624bab3b6ec86c7aaadf49c36b262b957704151db889c515c425630299d396d0b76919403eabf4a3e71098ef6 SHA512 aa4b145476a80d7be7959bf7d0a9a278765496dbf915d083fbc40c5b216a52126af9ba12cf09f9cc178ce53987822ed61c92e2a0295fa977f8a460262e857c30
DIST github.com%2Fhashicorp%2Fgo-plugin%2F@v%2Fv1.0.1.mod 770 BLAKE2B 22eef413edcfeb0337641d6567fdfb73d32f8ab2b3e624a3e5dafa15d31ca15c98c9740d4e9c8652adc5cd9f336153c029b086c260cf9ed8beda64b9c0c06028 SHA512 65489f1fe43c58303bd999f4c8d96b6bdb4d194b78e14d2ae9de9ce4fa877827f47d5d3c79e8417c88d1571b135678c069571e528b061238a9d59dfc8b472097
DIST github.com%2Fhashicorp%2Fgo-plugin%2F@v%2Fv1.0.1.zip 105218 BLAKE2B f08840f6a06d88834cc537a458805b9589a3fd247ce94bea5ea99c39061ea6a710d9bbf7a5864ec2a3b136a72997bf5755e94685104aaec76352633c7334fe2a SHA512 d2487934034ddf55c95fc98c02de482c9182079960698c21e14e8b89016c9229853e835695aac7a21ad11abd263fab8464bc8014eb9fcff52bbc2ae1866a00a4
DIST github.com%2Fhashicorp%2Fgo-raftchunking%2F@v%2Fv0.6.1.mod 276 BLAKE2B 1ed39160b23bffe3c57b2d21b4881b8c9adad956bb2b929a8ae2abe94d8abbec24c73a7a679cf7051f7b8b0a61167ce8c6958532dcff3df4de87a2148196626c SHA512 4385e13d97a4b7243d73f9415c943c40595444bc576f917ca59ea8cf6da3a5794b82ece26a484fb06fc2e2aaf0a46e3904ba22f9236f673c59fdf7e09a297546
@ -188,6 +191,8 @@ DIST github.com%2Fhashicorp%2Fmemberlist%2F@v%2Fv0.1.3.mod 921 BLAKE2B df064db28
DIST github.com%2Fhashicorp%2Fmemberlist%2F@v%2Fv0.1.3.zip 103250 BLAKE2B d322a7ccfc3ca434f8f44cc07769e4179197d1d48d85bf7c4e666f9a6c12640dc4196937af09ba7a07c9da1bdbba5749f2c37744ae28b7c526174aa7af072866 SHA512 af29d68cb9eeadc11a5d0e9033ac0c9a9aa9972935b2cc7eb76e951db9b12124f16b0a6ad91a5990b37c08c8b39258f32a9e63afad75e114fc853ec89504db93
DIST github.com%2Fhashicorp%2Fmemberlist%2F@v%2Fv0.1.6.mod 930 BLAKE2B 57a45b6fb8d71a650588f54042a48e04085980f044df42be676b6985d12df508b5e82ec4816df18be51b38ff8be4a42432d8ab4f32bc3b54e2420dc6a903a5c3 SHA512 b0d79367b189b5794c6f8aa68adb1695452d259136cef5e5731813b8ca31b014f7c719f881b40d6c2df5ffcde73d44956158a1c847d0296431651228361f5470
DIST github.com%2Fhashicorp%2Fmemberlist%2F@v%2Fv0.1.6.zip 108299 BLAKE2B 636c6b766006dae64701678775421e1ae3fce829da1e7b1e8c7c2687098e5b19237be43839de7906ead9fd4d88763654aea4aa013df9808ac1c606bc18d328a2 SHA512 db23ad5568f7c7d142e88a4246509f06e35aba2fffe6a609ea036337a64d72f9398220e4cf63968bd2cf832c9adb0d59cc88f94a2627e60bd1d967df48e673b9
DIST github.com%2Fhashicorp%2Fmemberlist%2F@v%2Fv0.2.2.mod 666 BLAKE2B 08fb3e2246113cf7bafaec3440000e224723f5947d6cb6656d31a36a033b968243c6e05dbbc89d87231b02e18f1d7c6200813ababc3e43b14c5407e980e5e75c SHA512 8b5cf65d942a763e666773ce3d9f1bfc88ed6ca051ccaa036d0236f52d383cea94bfe280ed62cf0e2dbc2af586dbd5008e1a62b958d434045933513fade28e88
DIST github.com%2Fhashicorp%2Fmemberlist%2F@v%2Fv0.2.2.zip 114585 BLAKE2B 846541b55472ef94a8d2606e9cccc82fc52d189e48bd94aef69871455088915595bcc21224ef7728750ac1ba8e3caef7c303446671416f71b74d03de647a3f23 SHA512 13275b8246248b1c3001acba9ea6178a10263fb8ff3cc205d2cccb86682eccad96695bac455a32f2407f7fbd9a4bc3b68cacab722bcc242c606248753efba3d1
DIST github.com%2Fhashicorp%2Fnet-rpc-msgpackrpc%2F@v%2Fv0.0.0-20151116020338-a14192a58a69.mod 47 BLAKE2B 67dc6ab625743aeecd408ea7bf04f70243ffb0a997cfc49206db31f0de98b3a30ef06afcc69726d771512585ea9f855bd42306de4a15ae99c07f49138cb79c20 SHA512 d1ab435b05bfa15b854c2ad3ead3678f0671f79fe9ec7d1352122438e62e40fcae32501a0f539f10747cc8762e8d94c0535d176f89c626c650beacb9c4f82f49
DIST github.com%2Fhashicorp%2Fnet-rpc-msgpackrpc%2F@v%2Fv0.0.0-20151116020338-a14192a58a69.zip 4515 BLAKE2B ae028eecfc31eea1056857da702cf0f4521a43ae5a1f1e2a267c1aefb9b5e703703d4f13d87928089e67d4721df1bbed2f7247e72db2cf7b24281114e5956327 SHA512 de6607396bc85d72d44c291a4d4eec7c98f0b54c27a92fbe0b89bc8916ca59294c419e4591da7d12ebe0541867bfb9c57f46ca4be19562129646ec2a764c0604
DIST github.com%2Fhashicorp%2Fraft%2F@v%2Fv1.1.1.mod 410 BLAKE2B 192e571d096d665a55c29da1dc35ba17c52d6f5b0c3f522c80b355bf881ffe269b27a62fe44761143966aaa5bede99800918999a313869c1a81dba98b710a1ad SHA512 e44c233e6bf407eac6a4eb6f7a72dc0118575b6dfe48a9d0afb95d99a847ad30f75b11e6d008238b7761965182df56e52ec183bb0905e054a638c76898368e6d
@ -200,6 +205,8 @@ DIST github.com%2Fhashicorp%2Fserf%2F@v%2Fv0.8.2.mod 774 BLAKE2B 3b47f3c78972eb5
DIST github.com%2Fhashicorp%2Fserf%2F@v%2Fv0.8.2.zip 540021 BLAKE2B edeffa17022930bd4a779b44fdfbfac3b301ffa9853841ad8ec2f047a4276580d385867dabc3f965822d80ce75a777272cba283347db6856215c89ecebc2c176 SHA512 acc3212eb8404e04fd4016dcfbdeaf519e7ff7a0b1c651d3ba9ffb3dac0565f4195ebca66c0d9fe2a6439d8057699a743447fc78ed671dfb971f1e818e6abf3a
DIST github.com%2Fhashicorp%2Fserf%2F@v%2Fv0.8.5.mod 693 BLAKE2B b1f4b4893f87a8af176cac7c5f0ae327efba67b52ed075e52e019489e9ccc815eba4df5f60825d28cd2b8097914934109e3b4dd9758d07d2d0ca228768b9f49f SHA512 c2c27911a47cc4c95faad6ea770506670a2c8ebe0ea4a7b24897348da1756d6a28dbd0e518cd8d0eae4de3cdd4425c1c3c3262ff7ea8b9f0d45684e2b47ee5a5
DIST github.com%2Fhashicorp%2Fserf%2F@v%2Fv0.8.5.zip 544544 BLAKE2B f39c5cfe3c5853827b276a9d685459384ea7908237d49762b3d55ed279d2fe44b67feff4be685b1c8254125f0e7fc91dac5d336fb3a144dce42656cec33b4763 SHA512 26c8a0cc981bb44e948dbba039aaee8a969d09512f0ec6b8078c0fb7e2229c3d7d60834745bf9c5e1dd5bb175684dc7c8d45b55af4d75d8088a1dc3897fdd67f
DIST github.com%2Fhashicorp%2Fserf%2F@v%2Fv0.9.2.mod 831 BLAKE2B dd6e545fc4ad948b65363b0f0103006761b944d99e0b627eda3994a7548031bbe31996d39ace7bec504f4952d610c4153ca3a9b75901c0eeca39d9476e481ba1 SHA512 175744788ef938ee696ef7f706261fe1200ab134e27f7957641f74dd9606424f68c479c0ed9a9f3c1e9fb1bcd23dbf7edde7d02c4a45160cb8dc2c251734905e
DIST github.com%2Fhashicorp%2Fserf%2F@v%2Fv0.9.2.zip 549210 BLAKE2B 72ed5b7d30dd04c6fe9bff0811d0cd85790379850fa3b635a9371057097716f1171e70e1a8e1ed54d3e577a28a600de1dc51d263a7534a0b92a8faca97f8700d SHA512 6b4e0ff25e43c00d063c54827b4683732de82cd09366152fa8cfea74cbe874155e8b8323f4878dbd1c5ea208843a24af71bac009362ce23872767208788f17f0
DIST github.com%2Fhashicorp%2Fvault%2Fapi%2F@v%2Fv1.0.4.mod 577 BLAKE2B 6966cd924bfb433dee02347599c131e85701a7ad37be76369b3a72ba8d6d3927abf1337426eb508a5a27c77f5005240a08ade70e93e546ed752a70fee483a3ef SHA512 78b71a31222bb3bcb5310c929587b13f19343f6aae9284654bdc3ebee9249c9a8440d428af8273acba18ff144265bcb2e8cccbcec6e18b9cbec2fb0f73dd3abf
DIST github.com%2Fhashicorp%2Fvault%2Fapi%2F@v%2Fv1.0.4.zip 72918 BLAKE2B 13c10ae1ffb312d91cc1a4dbcb072ca3e9ab4cba3758a04c6c4ea0d7b875453819fa8188861bf6f284f57e44a70f8d6c436699289f44a33082ed8088b1323bd3 SHA512 c4d0ef607d0116b64507ebf631d5190bc6cd2c5508ccf060b226ab7c4798a45b595fae0d132968918ccdb644cf05335d7de76c84ac7a188f4b7aafe8068d725d
DIST github.com%2Fhashicorp%2Fvault%2Fsdk%2F@v%2Fv0.1.13.mod 1594 BLAKE2B c6b069c73847f3b115faacacc323ab407df86f81a9056347ebbd15eb12ac642d8e8a7b0410afbd076f18b704c18830144a4bed5a98e6f31d67c14fd1219fa7a0 SHA512 c4a38235e1b91838e6743f4bff89ba737e6427a65e9a2d34c750b63a75ea86b7ce13243b93d13d34f9f384dbf678fbae5c5b5e056eeece9d17511b9e197444e9
@ -247,6 +254,8 @@ DIST github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.0.9.mod 37 BLAKE2B 6bd675a05c0b
DIST github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.0.9.zip 10606 BLAKE2B d9aed996970ecc4828716e86ddbc85a7949f60ceacc7326708ce499bfc09250bc8ee336806b229a44064839e7ce34f5cb2a7607da5e82c417a737ea869f97f03 SHA512 dd1763a8d04540b3e579d397fa4888c4bd8c00c3963cfcd1fe42af7c1990ef85f9a2e2fd5c5f2c7d3e6817448df5e2237241ff5a2cda651b061cc8932e0afdca
DIST github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.mod 80 BLAKE2B 486156a648d66786de2a05b45b054ffbc6ccbb45ffe98230d3b3126ff533fd546af1b348fdcf67b1b3ae9310918869355fc39390a4f67b99cd7a1bbd1c6cf891 SHA512 f69ecc2e8097c17a9c0002181451d56a8a7496f62e87f437802420e9af27c5f80da2be189597759f2a5ee2656dca8c1cf91a5374b8e46919f7a6e0f9579d2526
DIST github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.4.zip 12838 BLAKE2B 668586a4df02fa2d5db174a4ada1245a463946d4bccdef2599b791414af4f10eb07f56c61484977eeb21499db7f9b46f8fea03feebbaae5511504c13e3f7a64d SHA512 c3104e921a94b1a424cbf6936e8e5cdf5823947132f41190c211e050c9c8b7135c7b319eee0667a2b958c9f4fda27b9cbad4436d37b512e269716249dbfbef65
DIST github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.6.mod 160 BLAKE2B 10c23e5a0edbdd398d6913ee8e4665e15ab0c30c6aad4d8e113533d421058858a4c23898f8f360b72cc39922bf9b4e7c6c656faab76ec4616e05285932bfef03 SHA512 60840c731813699f19e9a23f3cc0e890c0b0e8228510b0021aa2696f35f3aefa1fc06eb396c5035214ac185816d5757896da1bfaf59e2dd24ca750f5b792e6c5
DIST github.com%2Fmattn%2Fgo-colorable%2F@v%2Fv0.1.6.zip 13586 BLAKE2B 8f8bc0b542920d0effcd6939a66e34609401f564af0c1f6330bff2925abc664add3c36534bdf8602ac176e74ed85ec8c8597f748a7ec82db9e9f86207c563fee SHA512 bd6adb6aaf44c6c59bda2407a05e192d3336154cec35d0a6b6244cc5b93dc5e53509abded7c5999af166821749dd2e55333a8813ce64c310ba5db2df597bc171
DIST github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.10.mod 104 BLAKE2B ee5067e0e89fe2d374ea852dac828c094db84c3a3d2d8a991abeaf40385431015577eeb6b11a66033e8da599e808f9385a84843fd8f87dea487bd3bc9ba233da SHA512 f144089cc85271c7d91b9a6faf169018bb12177dd770db0092dfd0b4c71846e5cc6dea385c0158a974cfe86971e5642858a6d633c64d3b598f1ab254fd47db28
DIST github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.11.mod 104 BLAKE2B b8d6df41ff2e8952e12f0518d455969d7a496b8318052ca37ffabc663d9602b9df70385274818af8bf1b50e70a44ade59b0436133e08818ceb385d34a3b44c03 SHA512 218110264da1c7396295627414259fcc65cc9823216d6c03f2a6d7499e17205e540821add3216ba673efda92f1e5bfbb817416874fc745ed1d926c43fdd9bc99
DIST github.com%2Fmattn%2Fgo-isatty%2F@v%2Fv0.0.12.mod 104 BLAKE2B a8f54d5566d54ac27763dd535705d64dddd862f32d23f234b1ffbf759cbf4aa16886c90a96198ae2f4c0d0bc892932f1b8244e8ff0f8150bb87123947d734016 SHA512 7bd9f6a38aa9a16c3569142164389d1c4046170f66b5e9044f7aaa3192e9d2e2ccec486e3bc7fbac868c9693b6d333068c1a34ccd9e79dec1746a86348951503
@ -262,6 +271,8 @@ DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.26.mod 371 BLAKE2B 3ff3ff24a8fa567c715
DIST github.com%2Fmiekg%2Fdns%2F@v%2Fv1.1.26.zip 214127 BLAKE2B 305af1bdb26a01095cb780a27be74f6a3d53c72b1af1b6388dc284290271c6a2cd39e06b6d8856d81584b35be6c2ff1ee38d79175502a9e2bab782f29cb855ae SHA512 2ac387028c1ffe54d5223a0325e2c36c827ad93e24c628ac353da6b4b97df9ccbb3f8d0440449d3b190f30ffcfd7fb865e3e030b882dcbdea116f20e3184fcf5
DIST github.com%2Fmitchellh%2Fcli%2F@v%2Fv1.0.0.mod 416 BLAKE2B 845f9f6d79c8b18d4a070255eb93aac9afc50ad01593fc5c6076c59e4b5c09f34856b29ab24809a67fd10ffc5cc28908faff8358a52cc8885947c53622d6090d SHA512 7cbcae5e1749c55a0c3fa25b007035c0c44c8f982a37635735afb95c63a20ba019a51e74244c568a170b5a379ccb10cc8c9df716b6261d324755ea92c7f462f4
DIST github.com%2Fmitchellh%2Fcli%2F@v%2Fv1.0.0.zip 30028 BLAKE2B 2d6bd9a97203fa6b04ff50734a1f7da69641cc4fab3830aef9820c63f680182efebc9802ab33aa471c4701bce8ae571cb1ca13a8f48f820358b921ca19ef98ee SHA512 37d61427d0ff8e8b7f9183046aaaf829e5006abb3b0e3824c0dfab2c96f03dbecbaab9ea983a8835da953ec664cc6074097f13382edd4fb19ee7eeb21cff4668
DIST github.com%2Fmitchellh%2Fcli%2F@v%2Fv1.1.0.mod 425 BLAKE2B 8e9c5ee0d4795def5f031ec58ce255227d2d17c80e0ebe028218e3022bb7c5b2cb831981a3247279a5405f36a061e7f0ec717f7d71ae96f33b56d20d0dbea520 SHA512 743b2f950677b8d24423a2491cfd67edcfb45d032e6995a743ebb1f3d6ec6f407f2e4d1d56b2bd14cbe4c519523ee83470f3e594f2da6e0b3fe7c2dfbad9c961
DIST github.com%2Fmitchellh%2Fcli%2F@v%2Fv1.1.0.zip 30608 BLAKE2B 68db36e6420be62aa1594d415cc95da064c3f80e220891bc747ab61d1bada168fa8c33875bb8f5a1b3cbfcae6b9f48cc28fd792b884f7378b797f5f7445c268a SHA512 41d05b304a7325dbb01dc2704407f5a7c7f7c1255c58cfde66b1d9668b15e1b5e83b5159b25a6ad7d6fed90e64446b32c1633135a018bbb4357c495e3efc8a83
DIST github.com%2Fmitchellh%2Fcopystructure%2F@v%2Fv1.0.0.mod 91 BLAKE2B 22854387f9c0bc85c6f4b7b9c5ce8a774c10c6be0c43ec6d188b6ff2f2e394ffdedcdd1bc0b8ba0e31fa3c418cc9339a78a798beeb355032a0724b284573c38a SHA512 8858ec62f3bcef65224ee7d66bbc16c080b2ed16609c46c5c6b6d983b9f7eef9e020a2ae78a16d0226c0f02c609ec5da92565861c02a81494cd6060dd56d005b
DIST github.com%2Fmitchellh%2Fcopystructure%2F@v%2Fv1.0.0.zip 11210 BLAKE2B a469026ecf6a1ee2f2d56091fd90f00857cf5e57164ead9e53c15af03d10a8b737a1d2b2fc336e3e972af014dacf8f1321ee1fa1cc9dab93790fb6d03ae195ed SHA512 30b1a531823403a911d9f877352218890bbea15d82390b4561ebaa4bab09f493d49181ea5c34078c18df31b1896165e80c4862b450ef5858ed8af55b2a0c42eb
DIST github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.0.0.mod 39 BLAKE2B e28ca0cdd6db21c4b97e47151a6c11487314f26d5a259f9d7f5581f3d92648a57d931e1d6b004597f76cf10916fbe14728c99192e24b6da674de2cdc9cc4e78e SHA512 a2b7ed5a25e6dcab620357d5c216546bdb554edbc6fd927a0703e788d7e7a10a743471d10f5c7cc56ad829ab35c7272c61d210e55947363447832e924844e9ee
@ -271,6 +282,8 @@ DIST github.com%2Fmitchellh%2Fgo-homedir%2F@v%2Fv1.1.0.zip 4163 BLAKE2B 7e003600
DIST github.com%2Fmitchellh%2Fgo-testing-interface%2F@v%2Fv0.0.0-20171004221916-a61a99592b77.mod 49 BLAKE2B d388b11419bfd0c80b52fb3bb5a2600712364115efe7b40ac02ba2da11d40ca30dffac19646056a4aa754de05c490d1f68af4549bdd1fab7596dae593eada97d SHA512 3e334e248e9584b050eb81bd23071a8542185c64b5f112f46b82c6842d2b8707099403bbba1b8485d64cd62faaacab3fd52e868bb405ca6e6067034e66ffc51b
DIST github.com%2Fmitchellh%2Fgo-testing-interface%2F@v%2Fv1.0.0.mod 49 BLAKE2B d388b11419bfd0c80b52fb3bb5a2600712364115efe7b40ac02ba2da11d40ca30dffac19646056a4aa754de05c490d1f68af4549bdd1fab7596dae593eada97d SHA512 3e334e248e9584b050eb81bd23071a8542185c64b5f112f46b82c6842d2b8707099403bbba1b8485d64cd62faaacab3fd52e868bb405ca6e6067034e66ffc51b
DIST github.com%2Fmitchellh%2Fgo-testing-interface%2F@v%2Fv1.0.0.zip 4603 BLAKE2B 409e75eaeb540957751fdf5471d8db1aecefc29511c1344edb6b9091c1052bcf22c06611d929b652682434fbd50f0b730d959e69a1979737ef29cb101ac5aba2 SHA512 e4c9a39de4fcc5087e1dfc0071920c53a95fdbd23c8e0b30cf56f7d11625e6eec44f5fd0ab6b942a5cbed86ee2b02d525f03ee026f7d60f70d1e14a82d9b335b
DIST github.com%2Fmitchellh%2Fgo-testing-interface%2F@v%2Fv1.0.3.mod 49 BLAKE2B d388b11419bfd0c80b52fb3bb5a2600712364115efe7b40ac02ba2da11d40ca30dffac19646056a4aa754de05c490d1f68af4549bdd1fab7596dae593eada97d SHA512 3e334e248e9584b050eb81bd23071a8542185c64b5f112f46b82c6842d2b8707099403bbba1b8485d64cd62faaacab3fd52e868bb405ca6e6067034e66ffc51b
DIST github.com%2Fmitchellh%2Fgo-testing-interface%2F@v%2Fv1.0.3.zip 4619 BLAKE2B 1b7f74c9c949ac5a590447646f5ba0c94c8ca3ce100577450f0ad436bef2d5773d08dbeab902b48e70929486c0ccf0b9d3b4a1a7cde52d5e7355c4380198cfe1 SHA512 dce03675e6485a49826b01c998c83ea3dd5ea9623d0b73ca9e1959a2c8a972f6ad13e657d6f60c8693c229bf41b20cf362e278f8a22b40bb70db3bc94006912a
DIST github.com%2Fmitchellh%2Fgo-wordwrap%2F@v%2Fv1.0.0.mod 40 BLAKE2B 089a3d8f85648feb04c692c4e108e1e843217ef67fb3d5c00ffec847c06eeae55a9432c206753cb220595441da76b635f33a9812ca92f04959b4e7dd08644abb SHA512 e8e4f318e3cc6d203ccc62c0b47af2aebee3fb99680cd6bd24af023442154ffa9c3d4bcf9064af5220f01d3cee71e7c600e465e3651ae0d7d15e2abee1caed27
DIST github.com%2Fmitchellh%2Fgox%2F@v%2Fv0.4.0.mod 32 BLAKE2B d511476a16a86c50db84dbacb40afb4b30ac3f72c4fd5a8b20fdd8bc6de1c46592bd16b24f77bd037dcb23ba86cd217fa740b59a784c6fff0fea1720d2045695 SHA512 451fbf9129c151784d97cfe6af29d27a277b6821411cfa5b23e6730ba0f5d5a830054eb6ed660dd2192c16abd54d5999be5b80e39bbac3499c3198311d01ec1f
DIST github.com%2Fmitchellh%2Fhashstructure%2F@v%2Fv0.0.0-20170609045927-2bca23e0e452.mod 42 BLAKE2B 8ffe9f17b9bfd55d7f3b44a0571132809a2d18960cad73780b88d31a723fb380b82c2c3952030a0bb4802929b625583e8aec8875c36a2720c0135ed8b59fe4d1 SHA512 414c86e4d26a8cd2f215353f04ca7ba0eaa17af36e3d3708164cb3698b8d198355bc7bf57897fb9d96cfa822ed50681a18157540a752998060c1549348791755
@ -279,6 +292,8 @@ DIST github.com%2Fmitchellh%2Fiochan%2F@v%2Fv1.0.0.mod 35 BLAKE2B 0b603da65c4738
DIST github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv0.0.0-20160808181253-ca63d7c062ee.mod 41 BLAKE2B 291f73049327af60c94a2b2113b8e370f90d2a3fc7074c58ac523ce2a613ebada88ce048a73cf882c68ff552dd6df0be42f796f4ed11a549c0b7ca6c67f61c38 SHA512 7816e3703475601df65f20ad4e5d1f6bbedc4a7c87c594518358c1a9c24421aa5ccb6e8389ad983a514a823674c6f0f771f1f367b10d99691dbd8db7105ec44e
DIST github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.1.2.mod 41 BLAKE2B 291f73049327af60c94a2b2113b8e370f90d2a3fc7074c58ac523ce2a613ebada88ce048a73cf882c68ff552dd6df0be42f796f4ed11a549c0b7ca6c67f61c38 SHA512 7816e3703475601df65f20ad4e5d1f6bbedc4a7c87c594518358c1a9c24421aa5ccb6e8389ad983a514a823674c6f0f771f1f367b10d99691dbd8db7105ec44e
DIST github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.1.2.zip 25943 BLAKE2B 9cf08441a9bb45da31ac429a372a969a822a0c5de569352bc25403cdc3e8559a7110dd2612cc9b93c91882973aefdc70f8ddadf44c1488eb0c3f5bc62cca2b73 SHA512 43d57d9ca99ee6af49e8a39be4d65799afccc8cb077a8c5b473a9147eba30d4653a8a4cb86abce66d4c8639d1eb0d961c4a50907ce9af2b2864acb615a2ecfc8
DIST github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.2.3.mod 50 BLAKE2B 59fc5ab80023eb3670c6f77e705dfb39bfbe64511e5222558ac6debc1f3786782e4e75954b89ba17dfc58ce463d8c9ac0807d448a41eb630cf5e0c4f51782df5 SHA512 408cfe4466cf47530cfdf1bb6ff94b5d77b17208a2a9b3d2bfb63b4853a68f46ba707c604bf03e2173f80dfe480bcf4c0be5b3f48872cc865ac0bac3d488f7b0
DIST github.com%2Fmitchellh%2Fmapstructure%2F@v%2Fv1.2.3.zip 28419 BLAKE2B 401adf54267565490e3df3de54063893cdc3dec5babdd5ac4410a85ef16a65dbe13168ffe85a78ed9cf13d02cc873fde44fe5927c691b99587a96dd49aa3ce22 SHA512 33509ea85f0e0b364d5844f27ee5616d53b4665b75851a6a860169d5cb08f9c1e531ffa0b7108dfac4098e17b0d641dfe6ff824ae7abd0a9ee4c1ab47848a1ab
DIST github.com%2Fmitchellh%2Freflectwalk%2F@v%2Fv1.0.0.mod 40 BLAKE2B 82487f50b9cfb3e87f2500b992a68361ad1971106763efb2ae4833e3a0505d6131b87aad4f994d203123b8fde60d5799afe67704ae72d36b3b4e85240ace49a6 SHA512 e7ba1cdb05cc6f30a57cdbfd08d55766cdad89875e4db393c304c5004d8907d07952b9b7f542bdec1c8b2f722fbc5d2283a8ff9cae53b6da0f3b075b8d05f60f
DIST github.com%2Fmitchellh%2Freflectwalk%2F@v%2Fv1.0.1.mod 40 BLAKE2B 82487f50b9cfb3e87f2500b992a68361ad1971106763efb2ae4833e3a0505d6131b87aad4f994d203123b8fde60d5799afe67704ae72d36b3b4e85240ace49a6 SHA512 e7ba1cdb05cc6f30a57cdbfd08d55766cdad89875e4db393c304c5004d8907d07952b9b7f542bdec1c8b2f722fbc5d2283a8ff9cae53b6da0f3b075b8d05f60f
DIST github.com%2Fmitchellh%2Freflectwalk%2F@v%2Fv1.0.1.zip 8002 BLAKE2B 0a8b00c6fa6fb7ee0edbd7c64c09d542cb3b5f3171663982d5391161855f908c91d938dd38d13c66f638fd37c6729f96f195ae75ca7e4dc9baad3f15cefcf619 SHA512 39e87a715707ec9243a382b6e9a3d951234a73e6a50be0f3e15825ebfc9d9a0cdc52e9584909e2f09c852525c1de0f2c5214f6786d3352ca9a9ead579f9d35c7
@ -314,6 +329,8 @@ DIST github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.mod 37 BLAKE2B 94636062c94f
DIST github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.zip 12433 BLAKE2B 0c911c9d173080abd8edbbab1f47222343801d8eeae36b4add24773e3282fc2a39283fdf519a3d4483e39cdb7d9509b8570d151f46841ac1a616f312dc4cb0ba SHA512 3b85697185ba85cdef6202444ab6cabeabfad8a03d66b3839a852586b1f91ddae7897a57c8c138d5647022aa44906c7ef3c5339d520f90eeea0742a935da8cf2
DIST github.com%2Fposener%2Fcomplete%2F@v%2Fv1.1.1.mod 35 BLAKE2B 763a350270dbd9e5a8f735ded2a13c7bde23a356f8f4187b4fe430b1dbf995cc9ca2dad54a38e927c07ba01b5c21f8aadcce69b8a94baaafee013d4a9fd0c988 SHA512 79b29fa26101598261ce7406c81be4fa53d79e89a7bed072abcd572d7f35f3a408da45055f1b05c7ace8acdb0ac2ea005d79a4766e7657087ca46327ebce842c
DIST github.com%2Fposener%2Fcomplete%2F@v%2Fv1.1.1.zip 30137 BLAKE2B 0a91beca32707841cfe1369c4139ca20fe8ad59c60e029ab9aa81f1473f35a52bcece594ada0b5c39a7c74b7e5c242f211516a325b89e02e7f1fedc7c8027988 SHA512 ea36b27874c4cb46a27507907458e217c72f988f857dd43986bb58317d9564d6b2dd7ca84f6e70de92030114b3e6893dea61f315535254a826f897b60cc9f601
DIST github.com%2Fposener%2Fcomplete%2F@v%2Fv1.2.3.mod 136 BLAKE2B 3708d63176898e5b9b06ad69d2ca1b4bc3bc62c5dabc6df3d77f476ea9b588f27efc18ce5f098b50ac0fdd7c71b36f76175e2cc3cee878c3f4815303b17071e8 SHA512 9138e434a2810bd96269cda05a0cb03bc7e6f28949f6d6379468567e40938846c85f581b4bc3549a53605dd9436e25662f27f216a60a4bdd816b038d6af570c0
DIST github.com%2Fposener%2Fcomplete%2F@v%2Fv1.2.3.zip 33879 BLAKE2B 2941a11911a8b9857e5dafc63c6477a1fa80dbc7118720302735277d9d10d292b0da58575da6a3a961a517912079a7c55d7101fd1e401297b189e06623c15299 SHA512 e88934a079336ceec1566612c97e0e5b0fd38fdf91377917d92208f39415c0ef2503fb3ac8923af4dfc43e146a71b5e28d4ad810efed32ffd9831e1e2aedf495
DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.2.mod 540 BLAKE2B 4d43a0901fa46da74e62fa22f61dfebdf6468f2766bd43dfd487d7a5434f961d181ecf26015ff9134e8d3f9c2dc03da6abbcd0030348facda3a499af9a04665d SHA512 9add81238044589ae2cf38042b963953d507e40945118fd62ac1cbf41bde1b001a69423c50b7045b721488b3d53489b4ce3c544b68f6c4e31e340d2581f7c8a6
DIST github.com%2Fprometheus%2Fclient_golang%2F@v%2Fv0.9.2.zip 193855 BLAKE2B 992f1dd35201c2f388e3fb03bc51a592a4b36db69a27b52d9e840a95d920cfdffcb2dce6fe2b8fc30a718d87b07383df2ce8e97a4a2a40d4f2f0ceec35c1d4a7 SHA512 79cebb06e6a958cded21781e651e1afd406c7502a945f2c97c9b910d0621a46a7a84f8fc8fbe7c21547146ec407a8f475eb0e711f37273e28f2fa5b3062ad19d
DIST github.com%2Fprometheus%2Fclient_model%2F@v%2Fv0.0.0-20180712105110-5c3871d89910.mod 42 BLAKE2B 5519896b44b7bc3089a8965dc61aae63745c64ba1a390d3fff1202be7f8dd34f59862c04b49e377d6616a93a0341662becce65d431d445703a160ba49eda208b SHA512 c84dfe43954b19c1e4ac5ff8738e79db469f3bc1dc55e69b12503d0a5cf125cc74f4797ddbfe64b2a1bd1e2940575c32678671d51f67161c4f5b53b2a85ac46a
@ -322,6 +339,8 @@ DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20181126121408-4724e9255275.
DIST github.com%2Fprometheus%2Fcommon%2F@v%2Fv0.0.0-20181126121408-4724e9255275.zip 132691 BLAKE2B 9bfe80a4f61a6b7a2e0dbd235e1a05ca032982ef14a9989c415ad143c84c42cdcace926a5683f2273b84c5babe8c0e5b95c680805324217a7afa18b3c82b0bec SHA512 4459c32fb8b90650c6fca37477e2ec49c5e3eb68a8151c88099017fd2c9c13d2a066bef75061a47ed27398e96aa40a6cbe2524146ad1f315d94d7359d0a7ba74
DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181204211112-1dc9a6cbc91a.mod 36 BLAKE2B 3c6acbd1022261065a321c6f3cfa2946b58011f45fae9b98761397eb7e5e0984dae4ea34c4f837f798ab29ca8e26ed3f07771be10e500a99ce7e5e9f4c401b5c SHA512 05f032eba0c264b186936c2b9831624a01999972d4f1bba6aa15c452407eb10d402f1ac674eb41e2d24fa66e85ae2e56efd2326fc4ecc741169b9908d7935335
DIST github.com%2Fprometheus%2Fprocfs%2F@v%2Fv0.0.0-20181204211112-1dc9a6cbc91a.zip 103337 BLAKE2B 0bbcc8096a261b4697bf5cb23b3141a885a5d987db3187d776860206ee796c41e78210e5e36942fdee76862033d629f2e2fbe72522a50c846aef973c22ff6d74 SHA512 132a26cbef951377102cff398932b442920500d12e80ad50bbe05ced623d1618e0d56d95ec5fa36354f4295ef9757e4750fe91a25add4f2175d12e6245269425
DIST github.com%2Frboyer%2Fsafeio%2F@v%2Fv0.2.1.mod 85 BLAKE2B b5702bb668542b4c88cc63201fedb0fa72a00f6134ac660f5fd392e425a61e4b94a1fca8df1917242f2d6b83b8f810b20f3524a870d1ae1d67fc04ba718abd2b SHA512 0649a85ce1922565fdb4f3eea0c095560bbeb655a382ef6603cfc0fbf1ea4053050a17672c30e91e62ae7816cf178fdcb00e7ef395cfdc2245dad5b63f835184
DIST github.com%2Frboyer%2Fsafeio%2F@v%2Fv0.2.1.zip 6533 BLAKE2B 087713f137203900b2118c96d7cbaa0a0279095d236ef3050cf4accdfbdec03711917e898da4363851b01c7e0b4144f0848cb1fa5599bdd126504f415699b860 SHA512 8e0ea31f6ba2b89da5c78033796d351279bd981437df2ad40d1c426fdedb07b006ed90318a6429030cae2ce0bea4d0cc7228c22887f4d137768527baa7f8598f
DIST github.com%2Frenier%2Fxmlrpc%2F@v%2Fv0.0.0-20170708154548-ce4a1a486c03.mod 32 BLAKE2B 4148c4c08d4c5062bccbad5db4c68a75a3ed1de631b32999a78bd16336a1fe6c753a7bb3e54b99483506e49454184bceec726f99b8e31d59ce08fe9282dcbe16 SHA512 51a5ef03eef2165adeef916aabe1277815cf25b930b52c52ff4eb959504734dc14bd3f37e61ec61b03c75f27ede85035c401bc7e294569246ffffe332520f76f
DIST github.com%2Frenier%2Fxmlrpc%2F@v%2Fv0.0.0-20170708154548-ce4a1a486c03.zip 16827 BLAKE2B c742a9187a1f70ad64305fa5b115313c2578bdc81f9e7ca860048b4e573decda1073975c111c76fb2e9ff9af3c84b278bb679fa69ef53c16b7ff1169a8f79b9f SHA512 d7247d7c28a0eda048a8ff9ef6ae8a1c136e185cd94bb756f83f4fed8b459101c168175ada72ba31a2ce7481647040421468ca920f2987389884173b2ae4be98
DIST github.com%2Fryanuber%2Fcolumnize%2F@v%2Fv0.0.0-20160712163229-9b3edd62028f.mod 37 BLAKE2B 6f0d51a83cccf661003d3c9a10b10fca12a5933730c676a4279c47a0b8563ae5d897845ac84079070bf47b32ea1c2ec80879b85bf8ac72b91f1a63239292758f SHA512 0af9557d073093339188a1d8f226798eccb05d43e1394ac9d207118ada9449332077161e2d6ba2327d9b736aafae79d4a08abad233ae9aca9917c677809ce2c7
@ -424,6 +443,8 @@ DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20191026070338-33540a1f6037.mod 33 BLAKE
DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200116001909-b77594299b42.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab
DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200124204421-9fbb57f87de9.mod 33 BLAKE2B 8be160de26713fd50f15adfb6fd7fff2643ee587aa17de9385b1e315869d0ecf102fc567294666bf232aa677d1ab04ba8341157f3d9b66a0f53543a7a47cf148 SHA512 0c7b940d567c7685dcb55c76c69aedeaab2170f4f3bde458994c879bf344169f34fb3f3ca899b0f138a8b0b8be5031217b57a6edf5980e6066ff5cb92d1ff9ab
DIST golang.org%2Fx%2Fsys%2F@v%2Fv0.0.0-20200124204421-9fbb57f87de9.zip 1914030 BLAKE2B 7c223aa748649c75cfd8e921bcb10cdae7b52fd8d9096c7a5a0b0a167a307a4813e7b0976647e2d70c658f1a75e9821f78f0969c9ef73da3d498d6755d504f2f SHA512 43ed7210474ffec7b4f9a0dc29e9f4ae5f2ab6ecc5b9f02ed28d9751d8f11e3cc27700e5b0838a76f450d9bfe074d56176d5140daa3f3d40b287695ebd3dec18
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-20200223170610-d5e6a3e2c0ae.zip 1918660 BLAKE2B 015e9ad74f145cdd7cdeb55d7b2d8949d6e7baedaae36089fa53cb257b4fb49830aeb299ea3a1f782b2f033443a18d009cafcf0211d1709d4d37b4b97d5f3d08 SHA512 24a653028d079c52ba8128d9f43452d2ecabd374c8eba36d44704c3f70cac50761597c7b7bb6524ba50fcde696fbcded57c29f04f35e42c62e23a9790852bb56
DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.mod 25 BLAKE2B 31009af0fdcd0f8730c9985287e6e364ec4e5183e57e92560dbc80a2010eced51b8a90f01a82b49384268c8a0adbf69d179c205d3f68e0eb459169d2ea9528f0 SHA512 ca081ef7cccd7bbedc6843fbe0c452352661a07e1298cd02ff338ed79d807c6401d613a3cf20011189d2f98a794ffa410547b3e352eb58a6f0a84822285d391d
DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.0.zip 6349244 BLAKE2B 0aa464ac7b7d17fa7ec0627b64cd2301ed4f2819f837807db7a55725950dacb40be899b5148b07ea31b51530818edcccc6444a9800755e1d369ba8f1bce949b0 SHA512 982d78f580a7eac99a0c51e6f1fd2b2c3b91f56cd5e2b96fe960510049f7daf5915264f73f55f05675eee232a52998f9667fa84a9ccba15ed7819e4c93f583a7
DIST golang.org%2Fx%2Ftext%2F@v%2Fv0.3.1-0.20181227161524-e6919f6577db.mod 88 BLAKE2B f3dd520e0e4e9b57feab62ecabb9169f37f1ce49b2846b949f9266f807767d38f55e4aa8ea006229c6f81cfc1e2c9dc0d1e3c186235e416dfb90fe7e04751d07 SHA512 d9361afb453b10c9d02787568ec33ea4c97a115899c6b3d1a1246547a749244e9218475ae5ae9f741d9b355260d2d3c33852673e805fcdd5f26f3ca40f035884

@ -0,0 +1,513 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit go-module systemd
GIT_COMMIT=8b4a3d952
DESCRIPTION="A tool for service discovery, monitoring and configuration"
HOMEPAGE="https://www.consul.io"
# Upstream doesn't use "-mod=vendor" in their build system, and the
# vendor directory is incomplete.
# On the next bump, remove this if they have added "-mod=vendor"
EGO_SUM=(
"cloud.google.com/go v0.26.0"
"cloud.google.com/go v0.26.0/go.mod"
"github.com/Azure/azure-sdk-for-go v16.0.0+incompatible"
"github.com/Azure/azure-sdk-for-go v16.0.0+incompatible/go.mod"
"github.com/Azure/go-autorest v10.7.0+incompatible/go.mod"
"github.com/Azure/go-autorest v10.15.3+incompatible"
"github.com/Azure/go-autorest v10.15.3+incompatible/go.mod"
"github.com/BurntSushi/toml v0.3.1/go.mod"
"github.com/DataDog/datadog-go v2.2.0+incompatible"
"github.com/DataDog/datadog-go v2.2.0+incompatible/go.mod"
"github.com/Microsoft/go-winio v0.4.3"
"github.com/Microsoft/go-winio v0.4.3/go.mod"
"github.com/NYTimes/gziphandler v1.0.1"
"github.com/NYTimes/gziphandler v1.0.1/go.mod"
"github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6"
"github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod"
"github.com/abdullin/seq v0.0.0-20160510034733-d5467c17e7af"
"github.com/abdullin/seq v0.0.0-20160510034733-d5467c17e7af/go.mod"
"github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e"
"github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod"
"github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da"
"github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod"
"github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878"
"github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878/go.mod"
"github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310"
"github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod"
"github.com/armon/go-radix v1.0.0"
"github.com/armon/go-radix v1.0.0/go.mod"
"github.com/aws/aws-sdk-go v1.25.41"
"github.com/aws/aws-sdk-go v1.25.41/go.mod"
"github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973"
"github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod"
"github.com/bgentry/speakeasy v0.1.0"
"github.com/bgentry/speakeasy v0.1.0/go.mod"
"github.com/boltdb/bolt v1.3.1"
"github.com/boltdb/bolt v1.3.1/go.mod"
"github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible"
"github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod"
"github.com/circonus-labs/circonusllhist v0.1.3"
"github.com/circonus-labs/circonusllhist v0.1.3/go.mod"
"github.com/client9/misspell v0.3.4/go.mod"
"github.com/coredns/coredns v1.1.2"
"github.com/coredns/coredns v1.1.2/go.mod"
"github.com/davecgh/go-spew v1.1.0/go.mod"
"github.com/davecgh/go-spew v1.1.1"
"github.com/davecgh/go-spew v1.1.1/go.mod"
"github.com/denverdino/aliyungo v0.0.0-20170926055100-d3308649c661"
"github.com/denverdino/aliyungo v0.0.0-20170926055100-d3308649c661/go.mod"
"github.com/dgrijalva/jwt-go v3.2.0+incompatible"
"github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod"
"github.com/digitalocean/godo v1.1.1"
"github.com/digitalocean/godo v1.1.1/go.mod"
"github.com/digitalocean/godo v1.10.0"
"github.com/digitalocean/godo v1.10.0/go.mod"
"github.com/dimchansky/utfbom v1.1.0"
"github.com/dimchansky/utfbom v1.1.0/go.mod"
"github.com/dnaeon/go-vcr v1.0.1"
"github.com/dnaeon/go-vcr v1.0.1/go.mod"
"github.com/docker/go-connections v0.3.0"
"github.com/docker/go-connections v0.3.0/go.mod"
"github.com/elazarl/go-bindata-assetfs v0.0.0-20160803192304-e1a2a7ec64b0"
"github.com/elazarl/go-bindata-assetfs v0.0.0-20160803192304-e1a2a7ec64b0/go.mod"
"github.com/envoyproxy/go-control-plane v0.8.0"
"github.com/envoyproxy/go-control-plane v0.8.0/go.mod"
"github.com/envoyproxy/protoc-gen-validate v0.0.14"
"github.com/envoyproxy/protoc-gen-validate v0.0.14/go.mod"
"github.com/fatih/color v1.7.0"
"github.com/fatih/color v1.7.0/go.mod"
"github.com/fatih/color v1.9.0"
"github.com/fatih/color v1.9.0/go.mod"
"github.com/fatih/structs v1.1.0/go.mod"
"github.com/fsnotify/fsnotify v1.4.7"
"github.com/fsnotify/fsnotify v1.4.7/go.mod"
"github.com/ghodss/yaml v1.0.0"
"github.com/ghodss/yaml v1.0.0/go.mod"
"github.com/go-check/check v0.0.0-20140225173054-eb6ee6f84d0a/go.mod"
"github.com/go-ldap/ldap v3.0.2+incompatible"
"github.com/go-ldap/ldap v3.0.2+incompatible/go.mod"
"github.com/go-ole/go-ole v1.2.1"
"github.com/go-ole/go-ole v1.2.1/go.mod"
"github.com/go-test/deep v1.0.2-0.20181118220953-042da051cf31/go.mod"
"github.com/go-test/deep v1.0.2"
"github.com/go-test/deep v1.0.2/go.mod"
"github.com/gogo/googleapis v1.1.0"
"github.com/gogo/googleapis v1.1.0/go.mod"
"github.com/gogo/protobuf v1.1.1"
"github.com/gogo/protobuf v1.1.1/go.mod"
"github.com/gogo/protobuf v1.2.1"
"github.com/gogo/protobuf v1.2.1/go.mod"
"github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b"
"github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod"
"github.com/golang/mock v1.1.1"
"github.com/golang/mock v1.1.1/go.mod"
"github.com/golang/protobuf v1.2.0"
"github.com/golang/protobuf v1.2.0/go.mod"
"github.com/golang/protobuf v1.3.1"
"github.com/golang/protobuf v1.3.1/go.mod"
"github.com/golang/snappy v0.0.1"
"github.com/golang/snappy v0.0.1/go.mod"
"github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c"
"github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod"
"github.com/google/go-cmp v0.2.0"
"github.com/google/go-cmp v0.2.0/go.mod"
"github.com/google/go-querystring v0.0.0-20170111101155-53e6ce116135"
"github.com/google/go-querystring v0.0.0-20170111101155-53e6ce116135/go.mod"
"github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf"
"github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf/go.mod"
"github.com/googleapis/gnostic v0.2.0"
"github.com/googleapis/gnostic v0.2.0/go.mod"
"github.com/gophercloud/gophercloud v0.0.0-20180828235145-f29afc2cceca"
"github.com/gophercloud/gophercloud v0.0.0-20180828235145-f29afc2cceca/go.mod"
"github.com/gopherjs/gopherjs v0.0.0-20180825215210-0210a2f0f73c"
"github.com/gopherjs/gopherjs v0.0.0-20180825215210-0210a2f0f73c/go.mod"
"github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7"
"github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod"
"github.com/hashicorp/errwrap v1.0.0"
"github.com/hashicorp/errwrap v1.0.0/go.mod"
"github.com/hashicorp/go-bexpr v0.1.2"
"github.com/hashicorp/go-bexpr v0.1.2/go.mod"
"github.com/hashicorp/go-checkpoint v0.0.0-20171009173528-1545e56e46de"
"github.com/hashicorp/go-checkpoint v0.0.0-20171009173528-1545e56e46de/go.mod"
"github.com/hashicorp/go-cleanhttp v0.5.0/go.mod"
"github.com/hashicorp/go-cleanhttp v0.5.1"
"github.com/hashicorp/go-cleanhttp v0.5.1/go.mod"
"github.com/hashicorp/go-connlimit v0.2.0"
"github.com/hashicorp/go-connlimit v0.2.0/go.mod"
"github.com/hashicorp/go-discover v0.0.0-20191202160150-7ec2cfbda7a2"
"github.com/hashicorp/go-discover v0.0.0-20191202160150-7ec2cfbda7a2/go.mod"
"github.com/hashicorp/go-hclog v0.0.0-20180709165350-ff2cf002a8dd/go.mod"
"github.com/hashicorp/go-hclog v0.8.0/go.mod"
"github.com/hashicorp/go-hclog v0.9.1"
"github.com/hashicorp/go-hclog v0.9.1/go.mod"
"github.com/hashicorp/go-hclog v0.12.0"
"github.com/hashicorp/go-hclog v0.12.0/go.mod"
"github.com/hashicorp/go-immutable-radix v1.0.0"
"github.com/hashicorp/go-immutable-radix v1.0.0/go.mod"
"github.com/hashicorp/go-immutable-radix v1.1.0"
"github.com/hashicorp/go-immutable-radix v1.1.0/go.mod"
"github.com/hashicorp/go-memdb v1.0.3"
"github.com/hashicorp/go-memdb v1.0.3/go.mod"
"github.com/hashicorp/go-msgpack v0.5.3/go.mod"
"github.com/hashicorp/go-msgpack v0.5.5"
"github.com/hashicorp/go-msgpack v0.5.5/go.mod"
"github.com/hashicorp/go-multierror v1.0.0"
"github.com/hashicorp/go-multierror v1.0.0/go.mod"
"github.com/hashicorp/go-multierror v1.1.0"
"github.com/hashicorp/go-multierror v1.1.0/go.mod"
"github.com/hashicorp/go-plugin v1.0.1/go.mod"
"github.com/hashicorp/go-raftchunking v0.6.1"
"github.com/hashicorp/go-raftchunking v0.6.1/go.mod"
"github.com/hashicorp/go-retryablehttp v0.5.3/go.mod"
"github.com/hashicorp/go-retryablehttp v0.5.4"
"github.com/hashicorp/go-retryablehttp v0.5.4/go.mod"
"github.com/hashicorp/go-rootcerts v1.0.1/go.mod"
"github.com/hashicorp/go-rootcerts v1.0.2"
"github.com/hashicorp/go-rootcerts v1.0.2/go.mod"
"github.com/hashicorp/go-sockaddr v1.0.0/go.mod"
"github.com/hashicorp/go-sockaddr v1.0.2"
"github.com/hashicorp/go-sockaddr v1.0.2/go.mod"
"github.com/hashicorp/go-syslog v1.0.0"
"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"
"github.com/hashicorp/go-uuid v1.0.1/go.mod"
"github.com/hashicorp/go-version v1.1.0"
"github.com/hashicorp/go-version v1.1.0/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"
"github.com/hashicorp/golang-lru v0.5.1/go.mod"
"github.com/hashicorp/hcl v1.0.0"
"github.com/hashicorp/hcl v1.0.0/go.mod"
"github.com/hashicorp/hil v0.0.0-20160711231837-1e86c6b523c5"
"github.com/hashicorp/hil v0.0.0-20160711231837-1e86c6b523c5/go.mod"
"github.com/hashicorp/logutils v1.0.0/go.mod"
"github.com/hashicorp/mdns v1.0.0/go.mod"
"github.com/hashicorp/mdns v1.0.1"
"github.com/hashicorp/mdns v1.0.1/go.mod"
"github.com/hashicorp/memberlist v0.1.3/go.mod"
"github.com/hashicorp/memberlist v0.2.2"
"github.com/hashicorp/memberlist v0.2.2/go.mod"
"github.com/hashicorp/net-rpc-msgpackrpc v0.0.0-20151116020338-a14192a58a69"
"github.com/hashicorp/net-rpc-msgpackrpc v0.0.0-20151116020338-a14192a58a69/go.mod"
"github.com/hashicorp/raft v1.1.1/go.mod"
"github.com/hashicorp/raft v1.1.2"
"github.com/hashicorp/raft v1.1.2/go.mod"
"github.com/hashicorp/raft-boltdb v0.0.0-20171010151810-6e5ba93211ea"
"github.com/hashicorp/raft-boltdb v0.0.0-20171010151810-6e5ba93211ea/go.mod"
"github.com/hashicorp/serf v0.8.2/go.mod"
"github.com/hashicorp/serf v0.9.2"
"github.com/hashicorp/serf v0.9.2/go.mod"
"github.com/hashicorp/vault/api v1.0.4"
"github.com/hashicorp/vault/api v1.0.4/go.mod"
"github.com/hashicorp/vault/sdk v0.1.13"
"github.com/hashicorp/vault/sdk v0.1.13/go.mod"
"github.com/hashicorp/vic v1.5.1-0.20190403131502-bbfe86ec9443"
"github.com/hashicorp/vic v1.5.1-0.20190403131502-bbfe86ec9443/go.mod"
"github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb/go.mod"
"github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d"
"github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d/go.mod"
"github.com/hpcloud/tail v1.0.0"
"github.com/hpcloud/tail v1.0.0/go.mod"
"github.com/imdario/mergo v0.3.6"
"github.com/imdario/mergo v0.3.6/go.mod"
"github.com/istio/gogo-genproto v0.0.0-20190124151557-6d926a6e6feb/go.mod"
"github.com/jarcoal/httpmock v0.0.0-20180424175123-9c70cfe4a1da"
"github.com/jarcoal/httpmock v0.0.0-20180424175123-9c70cfe4a1da/go.mod"
"github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af"
"github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod"
"github.com/joyent/triton-go v0.0.0-20180628001255-830d2b111e62"
"github.com/joyent/triton-go v0.0.0-20180628001255-830d2b111e62/go.mod"
"github.com/json-iterator/go v1.1.5"
"github.com/json-iterator/go v1.1.5/go.mod"
"github.com/jtolds/gls v4.2.1+incompatible/go.mod"
"github.com/kisielk/errcheck v1.1.0/go.mod"
"github.com/kisielk/gotool v1.0.0/go.mod"
"github.com/kr/pretty v0.1.0/go.mod"
"github.com/kr/pretty v0.2.0"
"github.com/kr/pretty v0.2.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/likexian/gokit v0.0.0-20190309162924-0a377eecf7aa/go.mod"
"github.com/likexian/gokit v0.0.0-20190418170008-ace88ad0983b/go.mod"
"github.com/likexian/gokit v0.0.0-20190501133040-e77ea8b19cdc/go.mod"
"github.com/likexian/gokit v0.20.16/go.mod"
"github.com/likexian/simplejson-go v0.0.0-20190409170913-40473a74d76d/go.mod"
"github.com/likexian/simplejson-go v0.0.0-20190419151922-c1f9f0b4f084/go.mod"
"github.com/likexian/simplejson-go v0.0.0-20190502021454-d8787b4bfa0b/go.mod"
"github.com/linode/linodego v0.7.1"
"github.com/linode/linodego v0.7.1/go.mod"
"github.com/mattn/go-colorable v0.0.9/go.mod"
"github.com/mattn/go-colorable v0.1.4/go.mod"
"github.com/mattn/go-colorable v0.1.6"
"github.com/mattn/go-colorable v0.1.6/go.mod"
"github.com/mattn/go-isatty v0.0.3/go.mod"
"github.com/mattn/go-isatty v0.0.8/go.mod"
"github.com/mattn/go-isatty v0.0.10/go.mod"
"github.com/mattn/go-isatty v0.0.11/go.mod"
"github.com/mattn/go-isatty v0.0.12"
"github.com/mattn/go-isatty v0.0.12/go.mod"
"github.com/matttproud/golang_protobuf_extensions v1.0.1"
"github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod"
"github.com/miekg/dns v1.0.14/go.mod"
"github.com/miekg/dns v1.1.26"
"github.com/miekg/dns v1.1.26/go.mod"
"github.com/mitchellh/cli v1.0.0/go.mod"
"github.com/mitchellh/cli v1.1.0"
"github.com/mitchellh/cli v1.1.0/go.mod"
"github.com/mitchellh/copystructure v1.0.0"
"github.com/mitchellh/copystructure v1.0.0/go.mod"
"github.com/mitchellh/go-homedir v1.0.0/go.mod"
"github.com/mitchellh/go-homedir v1.1.0"
"github.com/mitchellh/go-homedir v1.1.0/go.mod"
"github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77/go.mod"
"github.com/mitchellh/go-testing-interface v1.0.0"
"github.com/mitchellh/go-testing-interface v1.0.0/go.mod"
"github.com/mitchellh/go-testing-interface v1.0.3"
"github.com/mitchellh/go-testing-interface v1.0.3/go.mod"
"github.com/mitchellh/go-wordwrap v1.0.0/go.mod"
"github.com/mitchellh/gox v0.4.0/go.mod"
"github.com/mitchellh/hashstructure v0.0.0-20170609045927-2bca23e0e452"
"github.com/mitchellh/hashstructure v0.0.0-20170609045927-2bca23e0e452/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.2.3"
"github.com/mitchellh/mapstructure v1.2.3/go.mod"
"github.com/mitchellh/reflectwalk v1.0.0/go.mod"
"github.com/mitchellh/reflectwalk v1.0.1"
"github.com/mitchellh/reflectwalk v1.0.1/go.mod"
"github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd"
"github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod"
"github.com/modern-go/reflect2 v1.0.1"
"github.com/modern-go/reflect2 v1.0.1/go.mod"
"github.com/nicolai86/scaleway-sdk v1.10.2-0.20180628010248-798f60e20bb2"
"github.com/nicolai86/scaleway-sdk v1.10.2-0.20180628010248-798f60e20bb2/go.mod"
"github.com/oklog/run v1.0.0/go.mod"
"github.com/onsi/ginkgo v1.6.0"
"github.com/onsi/ginkgo v1.6.0/go.mod"
"github.com/onsi/gomega v1.4.1/go.mod"
"github.com/onsi/gomega v1.4.2"
"github.com/onsi/gomega v1.4.2/go.mod"
"github.com/packethost/packngo v0.1.1-0.20180711074735-b9cb5096f54c"
"github.com/packethost/packngo v0.1.1-0.20180711074735-b9cb5096f54c/go.mod"
"github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod"
"github.com/pascaldekloe/goe v0.1.0"
"github.com/pascaldekloe/goe v0.1.0/go.mod"
"github.com/peterbourgon/diskv v2.0.1+incompatible"
"github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod"
"github.com/pierrec/lz4 v2.0.5+incompatible"
"github.com/pierrec/lz4 v2.0.5+incompatible/go.mod"
"github.com/pkg/errors v0.8.0/go.mod"
"github.com/pkg/errors v0.8.1"
"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/posener/complete v1.2.3"
"github.com/posener/complete v1.2.3/go.mod"
"github.com/prometheus/client_golang v0.9.2"
"github.com/prometheus/client_golang v0.9.2/go.mod"
"github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910"
"github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod"
"github.com/prometheus/common v0.0.0-20181126121408-4724e9255275"
"github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod"
"github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a"
"github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod"
"github.com/rboyer/safeio v0.2.1"
"github.com/rboyer/safeio v0.2.1/go.mod"
"github.com/renier/xmlrpc v0.0.0-20170708154548-ce4a1a486c03"
"github.com/renier/xmlrpc v0.0.0-20170708154548-ce4a1a486c03/go.mod"
"github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod"
"github.com/ryanuber/columnize v2.1.0+incompatible"
"github.com/ryanuber/columnize v2.1.0+incompatible/go.mod"
"github.com/ryanuber/go-glob v1.0.0"
"github.com/ryanuber/go-glob v1.0.0/go.mod"
"github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529"
"github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod"
"github.com/shirou/gopsutil v0.0.0-20181107111621-48177ef5f880"
"github.com/shirou/gopsutil v0.0.0-20181107111621-48177ef5f880/go.mod"
"github.com/shirou/w32 v0.0.0-20160930032740-bb4de0191aa4"
"github.com/shirou/w32 v0.0.0-20160930032740-bb4de0191aa4/go.mod"
"github.com/sirupsen/logrus v1.0.6"
"github.com/sirupsen/logrus v1.0.6/go.mod"
"github.com/smartystreets/assertions v0.0.0-20180820201707-7c9eb446e3cf/go.mod"
"github.com/smartystreets/goconvey v0.0.0-20180222194500-ef6db91d284a/go.mod"
"github.com/softlayer/softlayer-go v0.0.0-20180806151055-260589d94c7d"
"github.com/softlayer/softlayer-go v0.0.0-20180806151055-260589d94c7d/go.mod"
"github.com/spf13/pflag v1.0.2/go.mod"
"github.com/spf13/pflag v1.0.3"
"github.com/spf13/pflag v1.0.3/go.mod"
"github.com/stretchr/objx v0.1.0/go.mod"
"github.com/stretchr/objx v0.1.1"
"github.com/stretchr/objx v0.1.1/go.mod"
"github.com/stretchr/testify v1.2.2/go.mod"
"github.com/stretchr/testify v1.3.0/go.mod"
"github.com/stretchr/testify v1.4.0"
"github.com/stretchr/testify v1.4.0/go.mod"
"github.com/tencentcloud/tencentcloud-sdk-go v3.0.83+incompatible"
"github.com/tencentcloud/tencentcloud-sdk-go v3.0.83+incompatible/go.mod"
"github.com/tent/http-link-go v0.0.0-20130702225549-ac974c61c2f9/go.mod"
"github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926"
"github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod"
"github.com/vmware/govmomi v0.18.0"
"github.com/vmware/govmomi v0.18.0/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-20190923035154-9ee001bba392/go.mod"
"golang.org/x/crypto v0.0.0-20191106202628-ed6320f186d4"
"golang.org/x/crypto v0.0.0-20191106202628-ed6320f186d4/go.mod"
"golang.org/x/exp v0.0.0-20190121172915-509febef88a4/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-20190313153728-d0100b6bd8b3/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-20180906233101-161cd47e91fd/go.mod"
"golang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/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-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-20190503192946-f4e77d36d62c/go.mod"
"golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod"
"golang.org/x/net v0.0.0-20190923162816-aa69164e4478"
"golang.org/x/net v0.0.0-20190923162816-aa69164e4478/go.mod"
"golang.org/x/oauth2 v0.0.0-20170807180024-9a379c6b3e95/go.mod"
"golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be"
"golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/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"
"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-20180909124046-d0be0721c37e/go.mod"
"golang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5/go.mod"
"golang.org/x/sys v0.0.0-20190129075346-302c3dd5f1cc/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-20190403152447-81d4e9dc473e/go.mod"
"golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod"
"golang.org/x/sys v0.0.0-20190508220229-2d0786266e9c/go.mod"
"golang.org/x/sys v0.0.0-20190523142557-0e01d883c5c5/go.mod"
"golang.org/x/sys v0.0.0-20190922100055-0a153f010e69/go.mod"
"golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe/go.mod"
"golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod"
"golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod"
"golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod"
"golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9/go.mod"
"golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae"
"golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod"
"golang.org/x/text v0.3.0/go.mod"
"golang.org/x/text v0.3.1-0.20181227161524-e6919f6577db/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-20180412165947-fbb02b2291d2/go.mod"
"golang.org/x/time v0.0.0-20190308202827-9d24e82272b4"
"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-20190524140312-2c0ae7006135/go.mod"
"golang.org/x/tools v0.0.0-20190907020128-2ca718005c18/go.mod"
"golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod"
"google.golang.org/api v0.0.0-20180829000535-087779f1d2c9"
"google.golang.org/api v0.0.0-20180829000535-087779f1d2c9/go.mod"
"google.golang.org/appengine v1.1.0/go.mod"
"google.golang.org/appengine v1.4.0"
"google.golang.org/appengine v1.4.0/go.mod"
"google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod"
"google.golang.org/genproto v0.0.0-20190404172233-64821d5d2107"
"google.golang.org/genproto v0.0.0-20190404172233-64821d5d2107/go.mod"
"google.golang.org/grpc v1.14.0/go.mod"
"google.golang.org/grpc v1.19.0/go.mod"
"google.golang.org/grpc v1.19.1/go.mod"
"google.golang.org/grpc v1.22.0/go.mod"
"google.golang.org/grpc v1.23.0"
"google.golang.org/grpc v1.23.0/go.mod"
"gopkg.in/airbrake/gobrake.v2 v2.0.9"
"gopkg.in/airbrake/gobrake.v2 v2.0.9/go.mod"
"gopkg.in/asn1-ber.v1 v1.0.0-20181015200546-f715ec2f112d/go.mod"
"gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod"
"gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15"
"gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod"
"gopkg.in/fsnotify.v1 v1.4.7"
"gopkg.in/fsnotify.v1 v1.4.7/go.mod"
"gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2"
"gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2/go.mod"
"gopkg.in/inf.v0 v0.9.1"
"gopkg.in/inf.v0 v0.9.1/go.mod"
"gopkg.in/resty.v1 v1.12.0"
"gopkg.in/resty.v1 v1.12.0/go.mod"
"gopkg.in/square/go-jose.v2 v2.3.1"
"gopkg.in/square/go-jose.v2 v2.3.1/go.mod"
"gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7"
"gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod"
"gopkg.in/yaml.v2 v2.2.1/go.mod"
"gopkg.in/yaml.v2 v2.2.2/go.mod"
"gopkg.in/yaml.v2 v2.2.8"
"gopkg.in/yaml.v2 v2.2.8/go.mod"
"honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod"
"honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod"
"k8s.io/api v0.0.0-20180806132203-61b11ee65332/go.mod"
"k8s.io/api v0.0.0-20190325185214-7544f9db76f6"
"k8s.io/api v0.0.0-20190325185214-7544f9db76f6/go.mod"
"k8s.io/apimachinery v0.0.0-20180821005732-488889b0007f/go.mod"
"k8s.io/apimachinery v0.0.0-20190223001710-c182ff3b9841"
"k8s.io/apimachinery v0.0.0-20190223001710-c182ff3b9841/go.mod"
"k8s.io/client-go v8.0.0+incompatible"
"k8s.io/client-go v8.0.0+incompatible/go.mod"
)
go-module_set_globals
SRC_URI="https://github.com/hashicorp/consul/archive/v${PV}.tar.gz -> ${P}.tar.gz
${EGO_SUM_SRC_URI}"
LICENSE="MPL-2.0 Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND="dev-go/gox"
COMMON_DEPEND="
acct-group/consul
acct-user/consul"
DEPEND="${COMMON_DEPEND}"
RDEPEND="${COMMON_DEPEND}"
src_compile() {
# The dev target sets causes build.sh to set appropriate XC_OS
# and XC_ARCH, and skips generation of an unused zip file,
# avoiding a dependency on app-arch/zip.
GIT_DESCRIBE="v${PV}" \
GIT_DIRTY="" \
GIT_COMMIT="${GIT_COMMIT}" \
emake dev-build
}
src_install() {
dobin bin/consul
keepdir /etc/consul.d
insinto /etc/consul.d
doins "${FILESDIR}/"*.json.example
keepdir /var/log/consul
fowners consul:consul /var/log/consul
newinitd "${FILESDIR}/consul.initd" "${PN}"
newconfd "${FILESDIR}/consul.confd" "${PN}"
insinto /etc/logrotate.d
newins "${FILESDIR}/${PN}.logrotated" "${PN}"
systemd_dounit "${FILESDIR}/consul.service"
}

@ -1,48 +0,0 @@
From 21ca284ffe6901b06e1136ce57dc07e0effd2a3e Mon Sep 17 00:00:00 2001
From: Fabian Groffen <grobian@gentoo.org>
Date: Mon, 3 Aug 2015 19:40:59 +0200
Subject: [PATCH 1/2] NetworkCollector: psutil.network_io_counters was renamed
---
src/collectors/network/network.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/collectors/network/network.py b/src/collectors/network/network.py
index d835162..90c2f59 100644
--- a/src/collectors/network/network.py
+++ b/src/collectors/network/network.py
@@ -96,7 +96,7 @@ def collect(self):
self.log.error('No network metrics retrieved')
return None
- network_stats = psutil.network_io_counters(True)
+ network_stats = psutil.net_io_counters(True)
for device in network_stats.keys():
network_stat = network_stats[device]
results[device] = {}
From 314d6057ca95bae6d3e6369556522574eb905c3f Mon Sep 17 00:00:00 2001
From: Fabian Groffen <grobian@gentoo.org>
Date: Mon, 3 Aug 2015 19:41:20 +0200
Subject: [PATCH 2/2] MemoryCollector: psutil renamed phymem_usage and
virtmem_usage
---
src/collectors/memory/memory.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/collectors/memory/memory.py b/src/collectors/memory/memory.py
index 7c9b1fb..9057115 100644
--- a/src/collectors/memory/memory.py
+++ b/src/collectors/memory/memory.py
@@ -103,8 +103,8 @@ def collect(self):
self.log.error('No memory metrics retrieved')
return None
- phymem_usage = psutil.phymem_usage()
- virtmem_usage = psutil.virtmem_usage()
+ phymem_usage = psutil.virtual_memory()
+ virtmem_usage = psutil.swap_memory()
units = 'B'
for unit in self.config['byte_unit']:

@ -15,7 +15,7 @@ if [[ ${PV} == *9999 ]];then
EGIT_BRANCH="stable/ussuri"
else
SRC_URI="https://tarballs.openstack.org/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~x86"
KEYWORDS="amd64 ~arm64 x86"
fi
LICENSE="Apache-2.0"

Binary file not shown.

@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]] ; then
LIBMSPACK_DEPEND="~dev-libs/libmspack-9999:="
else
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
MY_PV="${PV/_alpha/alpha}"
MY_P="${PN}-${MY_PV}"
SRC_URI="https://www.cabextract.org.uk/${P}.tar.gz"

@ -1 +1,2 @@
DIST xarchiver-0.5.4.14.tar.gz 1081542 BLAKE2B 591d93dfbaa98164bc169105462155b09ed87dab8ad5adff6653e77673095a29d7f00cdaeed1b928039fe3cc5f668f8da46885905ae73d03f5b4c71dd279a7b4 SHA512 b38881e6cdfb402499efbd18ab25cac3869cd48ef96941a4bb3cb8b6b130a2317abe3b1d11bfc3d60e81eef7cafa34515fefc11e469443d96d139c2f09cf4498
DIST xarchiver-0.5.4.15.tar.gz 1072943 BLAKE2B 6f80c8dba510bf5c05dfe5c8f12aafbd4f563861878c73b7da78562836ef4b85f9bc8e4ed7cda5d98c5e33a211a2677d163c2912f1bb605e0085627ca4ee5cbb SHA512 e5174241dd45dd6186d91b15a15b207a8b356480d9ce1a7b9ac2da167878cdb14316a3e7abf3f2aac8d41a02777df2131e205c7d5971a376ff7dd0ca70fbc82f

@ -0,0 +1,63 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools xdg-utils
DESCRIPTION="A GTK+ archive manager that can be used with Thunar"
HOMEPAGE="https://github.com/ib/xarchiver"
SRC_URI="https://github.com/ib/xarchiver/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="doc"
# older pigz versions have incompatible command-line processing
# https://bugs.gentoo.org/661464
RDEPEND=">=dev-libs/glib-2:=
x11-libs/gtk+:3=
!!<app-arch/pigz-2.4[symlink]"
DEPEND="${RDEPEND}
dev-util/intltool
sys-devel/gettext
virtual/pkgconfig
doc? (
app-text/docbook-xml-dtd
app-text/docbook-xsl-stylesheets
dev-libs/libxml2
dev-libs/libxslt
)"
src_prepare() {
sed -e '/COPYING/d' -e '/NEWS/d' -i doc/Makefile.am || die
default
mkdir m4 || die
eautoreconf
}
src_configure() {
local myconf=(
$(use_enable doc)
)
econf "${myconf[@]}"
}
pkg_postinst() {
xdg_desktop_database_update
xdg_icon_cache_update
elog "You need external programs for some formats, including:"
elog "7zip - app-arch/p7zip"
elog "arj - app-arch/unarj app-arch/arj"
elog "lha - app-arch/lha"
elog "lzop - app-arch/lzop"
elog "rar - app-arch/unrar app-arch/rar"
elog "zip - app-arch/unzip app-arch/zip"
}
pkg_postrm() {
xdg_desktop_database_update
xdg_icon_cache_update
}

Binary file not shown.

@ -1 +1,2 @@
DIST rdiff-backup-2.0.0.tar.gz 408352 BLAKE2B c2a7ae90ea147398d648142e20761e3caf4f08948dcd0a3de22254a13857d3e99cb2801c83084dd13dd84764cebc7651b42a70a788553c67925521e2ed123953 SHA512 0bf06d4eefffd41e86224d798e6ac6852ca0fd356be73d651ffaf63c37aaa043a6d22f8025619ab4a86e54f6e98e61f445ab68a6f87f4f2f48e635507ea110ec
DIST rdiff-backup-2.0.3.tar.gz 422823 BLAKE2B 0d4f3165abb8893dfe0619ae80f4c93e676012c4cc763c28cd1aac4eee84e6f8ae2717b5b9722c1b89a9599f3ce487580eac6780799e028f269ea1ce4a40deea SHA512 a4d517182ba1521195f46abde67e7963c7b44722b37d20a7f9afb446a1b90095deba1da9aaa940d174d5cf8dd01948619846d689e5675326b271141b355831fb

@ -0,0 +1,23 @@
diff -Naur rdiff-backup-2.0.3.orig/setup.py rdiff-backup-2.0.3/setup.py
--- rdiff-backup-2.0.3.orig/setup.py 2020-05-17 11:28:17.000000000 +0200
+++ rdiff-backup-2.0.3/setup.py 2020-05-31 00:36:19.404101919 +0200
@@ -194,19 +194,6 @@
scripts=["src/rdiff-backup", "src/rdiff-backup-statistics", "src/rdiff-backup-delete"],
data_files=[
("share/man/man1", ["build/rdiff-backup.1", "build/rdiff-backup-statistics.1"]),
- (
- "share/doc/rdiff-backup",
- [
- "CHANGELOG.md",
- "COPYING",
- "README.md",
- "docs/FAQ.md",
- "docs/examples.md",
- "docs/DEVELOP.md",
- "docs/Windows-README.md",
- "docs/Windows-DEVELOP.md",
- ],
- ),
("share/bash-completion/completions", ["tools/bash-completion/rdiff-backup"]),
],
# options is a hash of hash with command -> option -> value

@ -0,0 +1,32 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Local/remote mirroring+incremental backup"
HOMEPAGE="https://github.com/rdiff-backup/rdiff-backup"
SRC_URI="https://github.com/rdiff-backup/${PN}/releases/download/v${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
IUSE="examples"
DEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]
>=net-libs/librsync-1.0:0="
RDEPEND="dev-python/pylibacl[${PYTHON_USEDEP}]
dev-python/pyxattr[${PYTHON_USEDEP}]
>=net-libs/librsync-1.0:0="
PATCHES=(
"${FILESDIR}/${PN}-2.0.3-no-docs.patch"
)
python_install_all() {
local DOCS=( docs/FAQ.md )
use examples && DOCS+=( docs/examples.md )
distutils-r1_python_install_all
}

@ -1,3 +1,4 @@
DIST snapper-0.5.6.tar.bz2 580047 BLAKE2B 3b945acbf734db1925dad5515323a64a2c08ee8226a593025f9160e0d1b1140734b2b498d036256946159900b50fec8567147dc0a974c281be747e977bcbd05b SHA512 392427d097cbe221bf7ca0ae20bc065dffaa4d0017ed750c41748d71128fc7ce054bb4425d6dbed7308a530df71815f80f56e60d72aab17ef3e0a16f3b3ba47e
DIST snapper-0.8.6.tar.bz2 607016 BLAKE2B 3e496fa22b1ecce2079d79caeb530ca1538febcc6bdf04aa0256e5b43bb546ea66436e60eeaae6722bc869c60579bc47c556671c5878dd671c266102516f04bb SHA512 f01a309a8dcfff455bf480ff297108e8ec3603d469d50f08740176e22bc2b8dd211de678fa8ce12c1ccd828348a35c6d347ca51b829d7b8c30b3fbaba4e9e2d9
DIST snapper-0.8.7.tar.bz2 622381 BLAKE2B 82d1a9c91beb309e87acfa914b55b2ff5900edc023a5ecd6f2bee6b1a15adb1336656f3f1fffea4a9971aa449b7825750e6c680806d4574faada5bba0a6d14f1 SHA512 6fa63c2453f93a724f0ac23d84ff2c5aafc654463e84a4f767bb8a75a0d4fb7ca7314811179d5fefddddce0df4441298c67b473596aa720d86eeefa43011b727
DIST snapper-0.8.9.tar.gz 373192 BLAKE2B 55c927136518e91b45631f3087fce13e8e08228274ef7c54164a7024e382a45bfa5b40687fd5e3d770fc87019d8e93af5c681013a023cd89dcb1f16863a77421 SHA512 5a3e45839cd4b5e621425df2e1214ca5014a391d17b489fdf7d315e8ac9959741c1f6fcf7adf644276ed11488bc0f88fcfa563198bd78824867d267df204659d

@ -0,0 +1,80 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools systemd bash-completion-r1
DESCRIPTION="Command-line program for btrfs and lvm snapshot management"
HOMEPAGE="http://snapper.io/"
SRC_URI="https://github.com/openSUSE/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="lvm pam xattr"
RDEPEND="dev-libs/boost:=[threads]
dev-libs/libxml2
dev-libs/icu:=
sys-apps/acl
sys-apps/dbus
sys-apps/util-linux
>=sys-fs/btrfs-progs-3.17.1
sys-libs/zlib
virtual/libintl
lvm? ( sys-fs/lvm2 )
pam? ( sys-libs/pam )
xattr? ( sys-apps/attr )"
DEPEND="${RDEPEND}
dev-libs/libxslt
sys-devel/gettext
virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/cron-confd.patch
)
src_prepare() {
default
sed -e "s,/usr/lib/systemd/system,$(systemd_get_systemunitdir),g" \
-i data/Makefile.* \
|| die "Failed to fix systemd services and timers installation path"
eautoreconf
}
src_configure() {
# ext4 code does not work anymore
# snapper does not build without btrfs
local myeconfargs=(
--with-conf="/etc/conf.d"
--disable-zypp
--enable-rollback
--disable-ext4
--enable-btrfs
$(use_enable lvm)
$(use_enable pam)
$(use_enable xattr xattrs)
)
econf "${myeconfargs[@]}"
}
src_install() {
default
# Existing configuration file required to function
keepdir /etc/snapper/configs
newconfd data/sysconfig.snapper snapper
find "${D}" -name '*.la' -delete || die
newbashcomp "${FILESDIR}"/${PN}.bash ${PN}
}
pkg_postinst() {
elog "In order to use Snapper, you need to set up"
elog "at least one config first. To do this, run:"
elog "snapper create-config <subvolume>"
elog "For more information, see man (8) snapper or"
elog "http://snapper.io/documentation.html"
}

@ -1,2 +1,2 @@
DIST synology-cloud-station-backup-4450.i686.deb 70673598 BLAKE2B 99cba6612e778d3639439f5c59037c87bdd03f87f8c19f1f33d4ef6548341481c3326cd3c5eb97aaea9cb966bad8047d6e3f300c5cf6730a14f8b4b1822fa4cb SHA512 e2321180f9de3736e1ec7020b7dca6092cf85a90ae3fe795a6da4825e9a9989e9b6a268072d831cf8cd4f73557728f79a42c4ff86726737234c50f2503e6b93b
DIST synology-cloud-station-backup-4450.x86_64.deb 71439298 BLAKE2B 09743a246d95e95f283575a50cead5600dc03068e19e92b8c0d965275efd9fdb633ac7be6648a97137eacb988a9bfa33d74682c8e6c582e39d7f09b608065ba2 SHA512 dda1ec9368f1292b2bdd46dec57b4f228166bf55e41acb584a2090df5158724dbb4b8aac3d62b51ffdbb0c93350f8300c14f932705e707521288cf8e2dd04448
DIST synology-cloud-station-backup-4469.i686.deb 70695418 BLAKE2B 890273fcb17f538fa83d78d4e127b8d74225d57aca43f26ba9c21da3c0d36ab7aaff7365b4540caa763ea9bdfbdee847dabcfb0ffb583d16d1d6223100d7ccf2 SHA512 1c9c346d778395fa678a99fc133d93d6f0fa2c623eb06b8164e717974a6c611197175b626cbff10bbcd2e944bc56a5bb4a168a6fc25f6603b33c5b95ac13b357
DIST synology-cloud-station-backup-4469.x86_64.deb 71454138 BLAKE2B 6e819d0d339034db0f543d26ce42eb344da63094261a8b14edfc9e78185bcb5be283f8aebfcac61c23166c59016074df9494947efb859ea15b49536e650f2195 SHA512 19199377e82eb8cf0d429de756fd5b47ea64f70c5094263f104c186bf847cc2f95930add5f604f5a0d16680c07d55e79d26191697ff28ffbdc86c43b7d039c18

@ -4,7 +4,7 @@
EAPI=7
inherit xdg
SVER="4.3.2"
SVER="4.3.3"
DESCRIPTION="Back up your files from multiple client computers to a centralized Synology NAS"
HOMEPAGE="https://www.synology.com/en-global/releaseNote/CloudStationBackup"
@ -23,6 +23,8 @@ RDEPEND="${DEPEND}"
BDEPEND=""
RESTRICT="bindist mirror strip"
QA_PREBUILT="*"
S="${WORKDIR}"
src_unpack() {

Binary file not shown.

@ -0,0 +1,17 @@
Author: Andreas Beckmann <anbe@debian.org>
Description: fix FTBFS with gcc-10
gcc-10 defaults to -fno-common
see https://gcc.gnu.org/gcc-10/porting_to.html
Bug-Debian: https://bugs.debian.org/957351
--- a/i7z_Dual_Socket.c
+++ b/i7z_Dual_Socket.c
@@ -37,7 +37,7 @@ float Read_Voltage_CPU(int cpu_num);
extern struct program_options prog_options;
FILE *fp_log_file;
-struct timespec global_ts;
+extern struct timespec global_ts;
extern FILE *fp_log_file_freq_1, *fp_log_file_freq_2;
extern char* CPU_FREQUENCY_LOGGING_FILE_single;

@ -0,0 +1,25 @@
Author: Andreas Beckmann <anbe@debian.org>
Description: fix typos found by Lintian
--- a/helper_functions.c
+++ b/helper_functions.c
@@ -528,7 +528,7 @@ void Test_Or_Make_MSR_DEVICE_FILES()
n=`expr $n + 1`; \
done; \
");
- printf ("i7z DEBUG: modprobbing for msr\n");
+ printf ("i7z DEBUG: modprobing for msr\n");
system ("modprobe msr");
} else {
printf ("i7z DEBUG: You DO NOT have root privileges, mknod to create device entries won't work out\n");
--- a/perfmon-i7z/helper_functions.cpp
+++ b/perfmon-i7z/helper_functions.cpp
@@ -484,7 +484,7 @@ void Test_Or_Make_MSR_DEVICE_FILES()
n=`expr $n + 1`; \
done; \
");
- printf ("i7z DEBUG: modprobbing for msr\n");
+ printf ("i7z DEBUG: modprobing for msr\n");
system ("modprobe msr");
} else {
printf ("i7z DEBUG: You DONOT have root privileges, mknod to create device entries won't work out\n");

@ -36,14 +36,13 @@ PATCHES=(
"${FILESDIR}"/install-i7z_rw_registers.patch
"${FILESDIR}"/use_stdbool.patch
"${FILESDIR}"/nehalem.patch
"${FILESDIR}"/gcc-10.patch
"${FILESDIR}"/typos.patch
)
S="${WORKDIR}/${PN}-${COMMIT}"
src_configure() {
# Workaround to build with gcc-10 until I find a patch
append-cflags -fcommon
tc-export CC PKG_CONFIG
cd GUI || die
use qt5 && eqmake5 ${PN}_GUI.pro

Binary file not shown.

@ -1,4 +1,4 @@
# Copyright 1999-2018 Gentoo Foundation
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
@ -12,7 +12,7 @@ SRC_URI="https://github.com/cernekee/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="amd64 arm arm64 ppc64 x86"
IUSE="gtk"
IUSE="gtk static"
# || ( dev-libs/nettle dev-libs/libtomcrypt ) libtomcrypt is not packaged
RDEPEND="
@ -26,5 +26,5 @@ src_prepare() {
}
src_configure() {
econf $(use_with gtk)
econf $(use_with gtk) --enable-static=$(usex static)
}

Binary file not shown.

@ -19,6 +19,7 @@ BDEPEND=">=dev-lang/nasm-2.09.04"
S="${WORKDIR}/${MY_P}"
PATCHES=("${FILESDIR}"/${P}-makefile.patch)
QA_FLAGS_IGNORED="/usr/bin/e3" #726484
src_compile() {
emake -- $(usex amd64 64 32) LD="$(tc-getLD)"

@ -9,7 +9,7 @@ SRC_URI="https://github.com/mawww/kakoune/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Unlicense"
SLOT="0"
KEYWORDS="~amd64 ~x86"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="static-libs"
DEPEND="sys-libs/ncurses:0=[unicode]"

Binary file not shown.

@ -1,3 +1,3 @@
DIST emms-4.4.tar.gz 288922 BLAKE2B d86cd9124f1d92d9d91aa96c45f7fd5e86776ff5f15cfa5e139eb40bc72e673f394b3d5209e64da62d3ab02ef18d6ac690e1d4e4273f3aad9c53b7e5ac4e7839 SHA512 d0aaac80728b542366885916e43c2c50302a5a5d6c9e35ff53a5b46a7185fda19459ea28f0d77929920873d7d9732fa531a4ef50f5052ed4df42cc474d14d0ba
DIST emms-5.2.tar.gz 314013 BLAKE2B 171166ee85ed34c9c2015f92ba395dda4bcf635c4db01b6aea3c09afe0f6db73eb79f38ee8c110ea45c3cbbc5167ecec18eb8d039b8925dc0447da8746ad5354 SHA512 5ff70d129d4ec44d79e574eb4eddb4605fd75e98fa190770a841efd3d430e0cf4d55787d567eaff0b5746af68fb7b19a4d2dfd37de678b97e1b3c8db3690c768
DIST emms-5.3.tar.gz 315572 BLAKE2B 6a4a59763e9c1c2e7d75bc11832b2ba86b7ba34303c33f6a9591897571393777fd7b544fed5fd9c76b13eedf87ea899d0a1c61390c4803c2700dff64b8321e69 SHA512 0a162f1b5fbf1cc4fcf50606d7ab3155effccd4862d33a4d59374573c571c128726b075ee91e0b364a23d5b08e00b4403a601dfcf0c25eaf594680178cb8e06d
DIST emms-5.4.tar.gz 311583 BLAKE2B fc5a67a0e1e35f9e9d83112e0f98a7489e0aff7ca6a2b4a633b296eb20218ffa798f33754069da9be93fe8725a0438db77e0f8aa25bdf617f45cba954abdf556 SHA512 a274938ace810404a8891c60e8f54fadc60054e2b7f1139941b69b40e8693f2177ec9ecd795517e17a0b7ca3477f2e75a0a844408ad35975a4b69266c466fbff

Binary file not shown.

@ -0,0 +1,29 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Transparent application input fuzzer"
HOMEPAGE="http://caca.zoy.org/wiki/zzuf"
SRC_URI="https://github.com/samhocevar/zzuf/releases/download/v${PV}/${P}.tar.bz2"
LICENSE="WTFPL-2"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~x86"
IUSE="static-libs"
# Uses dlopen hack to hijack many libc functions.
# Fails 2 tests with sandbox enabled: check-zzuf-A-autoinc check-utils
RESTRICT="test"
DOCS=( AUTHORS COPYING TODO )
src_configure() {
econf $(use_enable static-libs static)
}
src_install() {
default
find "${D}" -name '*.la' -delete || die
}

Binary file not shown.

@ -96,15 +96,13 @@ src_install() {
strip-linguas -i po
emake install DESTDIR="${ED}" "LINGUAS=""${LINGUAS}"""
if use python; then
python_optimize
fi
ruby-ng_src_install
if use perl; then
perl_delete_localpod
fi
#can't figure out a better way to do this
mv "${ED}"/usr/man/man3/* "${ED}/usr/share/man/man3/" || die
rm -r "${ED}/usr/man" || die
}

@ -1 +1,2 @@
DIST icdiff-1.9.1.tar.gz 24387 BLAKE2B 482b128f03ac8af7e98db9b32ba7d9cf8bcd1a395eb50653a98ac186da26fea7933ee13f01840bb6c105e0f573a519a3e20ad83fbd8e513bfdd6c8c6d14b90c5 SHA512 f73108f6f3a4a2fc40e041bbe7b5934acd76684bb54a3fa544e9f146fd3c528528928378496f53ad92d649547ccc491a77296b6fa57e4534abb13d61c0df8d58
DIST icdiff-1.9.5.tar.gz 31914 BLAKE2B 8d9b9b5104c3075addae2954b41c27ccebe3b4723b0e71ef88a214d7fa0ff7d8cb9ac52cada8ddec929d308a356daf37ef4463a52667f7e229a4a33d1d993e86 SHA512 f4c50da1e73a1af2fd63feabfd180125637a856a8757356eb3b48bbc21871f36a2c876acd2e2ba9d354c8f6e658f6e262fbbfd65fa4078d0adebc1353d87e40a

@ -0,0 +1,29 @@
diff --git a/test.sh b/test.sh
index fd1679e..5b756f3 100755
--- a/test.sh
+++ b/test.sh
@@ -86,6 +86,8 @@ function check_git_diff() {
local gitdiff=tests/$1
shift
+ # does not work with newer versions of git
+ if false; then
echo " check_gitdiff $gitdiff matches git icdiff $@"
# Check when using icdiff in git
if $FIRST_TIME_CHECK_GIT_DIFF; then
@@ -96,13 +98,14 @@ function check_git_diff() {
export PATH=$PATH:"$(pwd)"
fi
local tmp=/tmp/git-icdiff.output
- git icdiff $1 $2 &> $tmp
+ git icdiff --no-index $1 $2 &> $tmp
if ! diff $tmp $gitdiff; then
echo "Got: ($tmp)"
cat $tmp
echo "Expected: ($gitdiff)"
fail
fi
+ fi
}
check_gold gold-recursive.txt --recursive tests/{a,b} --cols=80

@ -0,0 +1,28 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DISTUTILS_USE_SETUPTOOLS=rdepend
PYTHON_COMPAT=( python3_{6,7,8,9} )
inherit distutils-r1
DESCRIPTION="Colourized diff that supports side-by-side diffing"
HOMEPAGE="https://www.jefftk.com/icdiff"
SRC_URI="https://github.com/jeffkaufman/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-release-${PV}"
LICENSE="PSF-2"
SLOT="0"
KEYWORDS="~amd64"
PATCHES=(
"${FILESDIR}/icdiff-1.9.5-tests.patch"
)
DOCS=(README.md ChangeLog)
python_test() {
bash test.sh "${EPYTHON%.*}" || die "Tests failed with ${EPYTHON}"
}

@ -14,7 +14,7 @@ SRC_URI="mirror://gentoo/${P}.tar.xz
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="caps debug python seccomp"
RDEPEND="caps? ( >=sys-libs/libcap-2.24 )

Binary file not shown.

@ -1 +0,0 @@
DIST ganyremote-6.3.3.tar.gz 303612 BLAKE2B 4865e6e4cb94e380e3bea3a4d27eb6ed60d8455bad3b530167a0e1a2aae458e5ead602869f4fba1917bc9887fec7e96393a694a48482fa339abddce48a506e24 SHA512 cfb0d5896c3c4ee575f2d77d17b8f8e13624202100994415147f1ddb2b6c04c179ec4a4b31369830705ae1d0068e50fe0c3a5fd4acc2de6e02ec0a530a0a6182

@ -1,55 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit autotools python-r1
DESCRIPTION="Gnome frontend to Anyremote"
HOMEPAGE="http://anyremote.sourceforge.net/"
SRC_URI="mirror://sourceforge/anyremote/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="bluetooth"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
>=app-mobilephone/anyremote-6.5[bluetooth=]
dev-python/pygtk[${PYTHON_USEDEP}]
bluetooth? ( dev-python/pybluez[${PYTHON_USEDEP}] )
"
DEPEND="${RDEPEND}
sys-devel/gettext
"
DOCS=( AUTHORS ChangeLog NEWS README )
src_prepare() {
# using gettextize no-interactive example from dev-util/bless package
cp $(type -p gettextize) "${T}"/ || die
sed -i -e 's:read dummy < /dev/tty::' "${T}/gettextize" || die
"${T}"/gettextize -f --no-changelog > /dev/null || die
# remove deprecated entry
sed -e "/Encoding=UTF-8/d" \
-i ganyremote.desktop || die "fixing .desktop file failed"
# fix documentation directory wrt bug #316087
sed -i "s/doc\/${PN}/doc\/${PF}/g" Makefile.am || die
eautoreconf
# disable bluetooth check to avoid errors
if ! use bluetooth ; then
sed -e "s/usepybluez = True/usepybluez = False/" -i ganyremote || die
fi
}
src_install() {
default
python_replicate_script "${D}"/usr/bin/ganyremote
}

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<!-- maintainer-needed -->
<upstream>
<remote-id type="sourceforge">anyremote</remote-id>
</upstream>
</pkgmetadata>

Binary file not shown.

@ -1,24 +1,12 @@
DIST amd64-debug-libreoffice-6.3.4.2-r1.tar.xz 1582210944 BLAKE2B d631020a890cfbfa342f17752334952bbe8dd828c3704751813792c647e8bd09d85dd9f706a7708295365014d12ab0167352510d10f70868e74bc2f12397181d SHA512 baf4bc9344487e0d20279e82f70c697d34fb0d5bc877518f776e3ad638ef2e883f76ee514e120d8d1936f93a1516b343b95dab4ac184972a558065bb0b9e316d
DIST amd64-debug-libreoffice-6.4.3.2.tar.xz 1575837176 BLAKE2B ee243e729bbe5747a5bbdade14c95324f127db92f426a5814b2b4d3a93c373c13b75b6a229b643cb05225ff8a44425516c4450650afaae556e053ee8217a563d SHA512 429c7d0c6a8205daa2025f9ff0b40d8c40748586d8f2099327ca17f45fc3ed797716cc9c3ec6d1568ff8b36721c5ca30fe7b4f8d8df4d5fadb046162d3befc16
DIST amd64-debug-libreoffice-gnome-6.3.4.2-r1.xd3 1635618 BLAKE2B 090cb16753f121b1b51158eeef02faf4559da3db21014f856c1fdd020656924e726b779c44f008f67639be048210461395ed8a2253cf67103aca4994d1af26e6 SHA512 89e1998499f4f531b2fadd0855db08de045788714e71a8c768bcc947f81d6ea9770c6bd8c0feae1d02436c4aad105714aa6b957398c6325b89f3cd35e1b71445
DIST amd64-debug-libreoffice-gnome-6.4.3.2.xd3 1650286 BLAKE2B 8db44dc00dee6d592109b2701168ace2433e1eae391a25ba991af247f2786000436144b554a924d2a0e65763dec90938e872c04f982a5e98ee8cdfd1aa4c7152 SHA512 b5ee4c747f083365c62f1cc606739e8d5c6724f7094c873f4cd7ce2e28ab0c72b4518d4fc19c1b2b54bba78dad85fc35be4c004bbba6d76084ea33ad5c4bb782
DIST amd64-debug-libreoffice-gnome-java-6.3.4.2-r1.xd3 783523882 BLAKE2B ca707c7f8ac69ab1d052d4b6fc0e2ad8ec55468bfa956425f2d26f96ba80f4722f81e74cec9cc4cc253b9031c8db24f755f24bc9ba7c118f0a1f42a1b065540e SHA512 d2422a8d1ad1cd689836fdd3bc8fb0c1e7b38eff0fcd4f5e4ec00a1f8e50da0630214502eb5b8fda3b74c159c1d46ef7b7a266db7ba5c7b1bb767050f5378808
DIST amd64-debug-libreoffice-gnome-java-6.4.3.2.xd3 776124041 BLAKE2B ee631608b5fa67d45320ee715b0209e1fb1aef9329a56c0258013fb5159fc8334eaddf81e8c41dce9af406f15ea2fbd806d2c7acf0b29839b713394c309804ac SHA512 81eebbe43ce848637deff115f7367e1da2136435393d98bc6583e2eba998c7e2894b555ef7db8e420aa2fb353f1dfeba54fddcac55c81de216a3721c4b524559
DIST amd64-debug-libreoffice-java-6.3.4.2-r1.xd3 781874299 BLAKE2B c6f56c1787e5910bc766e21e80f2f51477293da338da42331b23d21adb9a0d94601c9a0712627c1220a3b7b336f3a9a14a262362cd32655833fa0dee1bb8971c SHA512 d3bcc8eb1b219d445653e4e3601aea0c3fc8cdb03ebc5be28263ea013e6eebd9bbb50ca49a2bc34564ab7abff441078c15396aee9edeeef8bbcebdf67ac11dad
DIST amd64-debug-libreoffice-java-6.4.3.2.xd3 774470299 BLAKE2B 5d2db389270288ad469539b8ce2ec76af2cfb2da13211b7a2a42eea49fd8eaa9aa0627a517c81a78a017ee8b0bdaa41a05cf90ab26ab4b9d4dad93cc2ad90013 SHA512 4c97eba50625489453e92c96e5efe347cb15d396fe97981bf25d97e75d6dfba6943c31663e239484f0291b65bc5c7da195de1c8620488195f0246cf69a40591a
DIST amd64-debug-libreoffice-kde-6.3.4.2-r1.xd3 481593623 BLAKE2B 7728b7946427bffb77582df79f6445e2c862b27b1361404e6c65a3603a0ffca8ff80cf081b1b33f5b9da274576a4b5fb83fc43826574de952946f79b9de66e67 SHA512 18a0d9156bbb05c29fb298581aa3d6a3a0eb893253f1bc58b3ef2c07e316afafb22adb4912bea23b0037cce56fb616a650cdfea11159994c364ae2611a2f5e2a
DIST amd64-debug-libreoffice-kde-6.4.3.2.xd3 480378879 BLAKE2B c17f97544fedd20b1e29405c592681acbd800c144ae7b2939be70b505811267981a31ad2bdb9faea0958229a6e757e7537b48757c58ec405265b8151fb6bb2d1 SHA512 16c7e0093ae26e6d7a8a1da7bd907ad12e591943c1f3fb3297057ae224b05ffc982884c29366e700e68cd84a802cf3e242d2919bde673c49b361f0df4104ffbb
DIST amd64-debug-libreoffice-kde-java-6.3.4.2-r1.xd3 785235399 BLAKE2B fd497e17592a3c57d2199ed9a4d593dab8da5d51def18c0221724fbee312a1cd9d600da6c4fe6a82204446e388afde9cccc5603a0718fb350334e8b942e2e7df SHA512 61ed5c21f56b6a156a5839c07ae92c396a8eff3de892da7964e9526b1c4fe2fb43cb5e3d9c501f58f44040d2b2ab7bc75afb6d8f0a453e95b642270bacb4ec5a
DIST amd64-debug-libreoffice-kde-java-6.4.3.2.xd3 783683127 BLAKE2B c0c87c05ad781507fd740e37f6f685c37daa453519d8bfe969807ff50f277eb7b5d8720ee6bb8638264313de58dc072adbbaa715549a56812d6d758203c7251c SHA512 7117a0e536a2303595d652ea41e1f5ec5d92e4ea70fadc5dd5116e2b320e156d0ac467bbf3e44e71fe89a329b6094f4776170e7cb2ebc17b9131dd6b6eac917e
DIST x86-debug-libreoffice-6.3.4.2-r1.tar.xz 1541803308 BLAKE2B 3bd60878521d95b070ff8148428378e82ec598a796b8f7ecfd5641f947158441333981a797932c3bd81eb52e676ef45530a24fac1263b4431ee17ccc8c9cca2e SHA512 9a0a03103f0175491d00c0150e1723097f9132c018ce4113818dce684e999d2be9bdd7378bc38f117c492c246160447d0ad2aad51c040dd751cf05f81a307824
DIST x86-debug-libreoffice-6.4.3.2.tar.xz 1540005828 BLAKE2B 0a688eea8362ebe95adaa0d8581676fa3867e27f928e55b435046c1b498dc0c62e6d11ec82ce5cb537ac9f1154632d610d021e44c0a1ba34de67a7e4f64b2033 SHA512 e781bf4815392f11bfa0375733d285d1276e9819813e9653c2eb2610fc423b4e75af9d7887d22d029452b1146dcbed615d0767ac6bb57c26af8d0d8c5291e26e
DIST x86-debug-libreoffice-gnome-6.3.4.2-r1.xd3 1580744 BLAKE2B 6ca748f91a14a83ed571b2f9592adba07d4be720471e4f6f359ed4841344e4c7ea0a4f5269d67347d5d0d2872314bff8468338141f727626fa123bd81a6df8c0 SHA512 b4d300202c9d0c848e898725105ef7ca14092d3724d90adab85d299ff9cde863c91891ea559d29061743a9c87276480bc11058b6a7367b0471bb6b1ccc2c60d6
DIST x86-debug-libreoffice-gnome-6.4.3.2.xd3 1604587 BLAKE2B b08806ff2131b3fdca314d9cf994f4728a73acc92fa3e0bf36f85030907a65b9fe19ef4d4418a13ad1d97f6b07b1782bf7f104856d0f51b938f27d0e694ada44 SHA512 6e51203533eacffaf43192d69059840c00ddaa1aaa9388ed72aa233ddfb1c0898f44105a09bcc7dbf4be484c294eb8dc076f1700dddf4effcd1ac0ec7ba32f00
DIST x86-debug-libreoffice-gnome-java-6.3.4.2-r1.xd3 756328183 BLAKE2B b41fab086bb75a0225e3348261dfe9d807c60a67a9389312125de262d3ba1bb211e2f7cc74d62ca8672696263c74fc9b6053e63494fc0b819b3d1ac16726babf SHA512 666ca8f9ed8909ea03e443a0ef1e93ff26adaa636306e83eb97aa11e12684201a8ede54bb06c874846043f945d4784ee23c9159b9a5a40c3992d47d6aebbe4b8
DIST x86-debug-libreoffice-gnome-java-6.4.3.2.xd3 739065723 BLAKE2B f954ff41ae88631201e9a840fb503c6ea6cb0295bc6220e795b631361b3e528639a576fb5a43202a32189dd537f62877cf24a4e35fd52a30fb9579be824e8cba SHA512 50294507c95ee8d9b5887cb60b4ff32db7764cd2d858af5f4dd35bbcf38a7943a1eb8f10fe8fd6edd370a128013fb3a1ebddbd2d64d3a418b1325cf133506e2a
DIST x86-debug-libreoffice-java-6.3.4.2-r1.xd3 754738195 BLAKE2B 465a3bce988708cbe276f18cb57148d657bcc13e78ed1253476cac210e5a19fde386e879e1a1c477ea78430fa641909da2d45c8f53d302f3a10028fedd041532 SHA512 633e783e3376826445412da96b7fde459475ae621088b8a10ca0eaa28374a31607009384a5311bfcfd3e7eb29d83a0a61476556fe003da4bf111268bbb38bc51
DIST x86-debug-libreoffice-java-6.4.3.2.xd3 737453940 BLAKE2B dc658db476b80d268f97307009939a3663e52038ff262dfd23805532f4b1f7c5e370e31b246a33c86269a2f121ea052f5847fa3debc7f861acf652225b14a250 SHA512 90c33969bbc078d654b8775d0048647f32091ad27afa68a3ce41777b98051c86df382758554c94f0dcee5dd024ceb177da214b0c238629a28c88ccff0bbb0a82
DIST x86-debug-libreoffice-kde-6.3.4.2-r1.xd3 428615251 BLAKE2B f4d70c1aaccb76e2eb760ff45ac1b62afb06c4409fe44ad3ba7f44e5bf3faadc883e3f88f36c17405d73d677a15d24d4c0b4604d1b3045fcde534f2ed4abd9c5 SHA512 6bff60b2b9ed16810864545cbf0802bf1e4bcae15deb7ab38fd60062f0635f5c4fede58db2104774fdc46dfe246e7fd1cd16475f7eae5a27674044199f6016d7
DIST x86-debug-libreoffice-kde-6.4.3.2.xd3 457748753 BLAKE2B 1d0c3a4ad240a80a997db83d90ae20d70f9a4439c5a962db656fc72005a7c8e20bc129626ff040af5542cf36f22f872a6672796b9a7c7d493457b976005ac7eb SHA512 31880b33b8e056cc20eec5aa81a18b08223183a0d59590f2914eb371984e19d660df8502d3ae88b03ba11bb65e91015eabd1d6e008cc35c83e7a7124e742c211
DIST x86-debug-libreoffice-kde-java-6.3.4.2-r1.xd3 754478768 BLAKE2B bc30a4d65fd66f580c46188edb1e1d4c309761128949ffa421248feb729f0abe25b2d9765cb27adfd5359400279325d23e71369b1d082a3f819b121a3eff992c SHA512 5d1909896e3a34a22c5ace74485305c25ce8bb713ab9e81699c186784c0016f5c31904c626462fc2fd1fbdcd3e9ed2b58e623c8b0ae53f5e6afd3ca6fceef4f6
DIST x86-debug-libreoffice-kde-java-6.4.3.2.xd3 737345990 BLAKE2B 00c365c8e8c8b0444198bb30a5ac12e9381471ae7e90a0a9f1a26aa3fc4d34074243a69a64da94ba0cc89dd4238ce54e6b8bfb6334d2983db24fc44c26722ac1 SHA512 c787d6d6c9872dfc0b409226240270a9687205f5892a820621d019c13109048c2d01c4afb23bbbc3b4aa9c5c47fcd07a4f50f1e995f6b1536fbe0540fc2f5c5a

@ -1,87 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
BASE_PACKAGENAME="debug"
BASE_AMD64_URI="https://tamiko.kyomu.43-1.org/distfiles/amd64-${BASE_PACKAGENAME}-"
BASE_X86_URI="https://tamiko.kyomu.43-1.org/distfiles/x86-${BASE_PACKAGENAME}-"
DESCRIPTION="LibreOffice, a full office productivity suite. Binary package, debug info"
HOMEPAGE="https://www.libreoffice.org"
SRC_URI_AMD64="
${BASE_AMD64_URI}libreoffice-${PVR}.tar.xz
kde? (
!java? ( ${BASE_AMD64_URI}libreoffice-kde-${PVR}.xd3 )
java? ( ${BASE_AMD64_URI}libreoffice-kde-java-${PVR}.xd3 )
)
gnome? (
!java? ( ${BASE_AMD64_URI}libreoffice-gnome-${PVR}.xd3 )
java? ( ${BASE_AMD64_URI}libreoffice-gnome-java-${PVR}.xd3 )
)
!kde? ( !gnome? (
java? ( ${BASE_AMD64_URI}libreoffice-java-${PVR}.xd3 )
) )
"
SRC_URI_X86="
${BASE_X86_URI}libreoffice-${PVR}.tar.xz
kde? (
!java? ( ${BASE_X86_URI}libreoffice-kde-${PVR}.xd3 )
java? ( ${BASE_X86_URI}libreoffice-kde-java-${PVR}.xd3 )
)
gnome? (
!java? ( ${BASE_X86_URI}libreoffice-gnome-${PVR}.xd3 )
java? ( ${BASE_X86_URI}libreoffice-gnome-java-${PVR}.xd3 )
)
!kde? ( !gnome? (
java? ( ${BASE_X86_URI}libreoffice-java-${PVR}.xd3 )
) )
"
SRC_URI="
amd64? ( ${SRC_URI_AMD64} )
x86? ( ${SRC_URI_X86} )
"
IUSE="gnome java kde"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="-* amd64 x86"
RDEPEND="=app-office/${PN/-debug}-${PVR}[gnome=,java=,kde=]"
DEPEND="dev-util/xdelta:3"
RESTRICT="test strip"
S="${WORKDIR}"
QA_PREBUILT="/usr/*"
src_unpack() {
einfo "Uncompressing distfile ${ARCH}-${BASE_PACKAGENAME}-libreoffice-${PVR}.tar.xz"
xz -cd "${DISTDIR}/${ARCH}-${BASE_PACKAGENAME}-libreoffice-${PVR}.tar.xz" > "${WORKDIR}/${ARCH}-${BASE_PACKAGENAME}-libreoffice-${PVR}.tar" || die
local patchname
use kde && patchname="-kde"
use gnome && patchname="-gnome"
use java && patchname="${patchname}-java"
if [[ -n "${patchname}" ]]; then
einfo "Patching distfile ${ARCH}-${BASE_PACKAGENAME}-libreoffice-${PVR}.tar using ${ARCH}-${BASE_PACKAGENAME}-libreoffice${patchname}-${PVR}.xd3"
xdelta3 -d -s "${WORKDIR}/${ARCH}-${BASE_PACKAGENAME}-libreoffice-${PVR}.tar" "${DISTDIR}/${ARCH}-${BASE_PACKAGENAME}-libreoffice${patchname}-${PVR}.xd3" "${WORKDIR}/tmpdist.tar" || die
mv "${WORKDIR}/tmpdist.tar" "${WORKDIR}/${ARCH}-${BASE_PACKAGENAME}-libreoffice-${PVR}.tar" || die
fi
einfo "Unpacking new ${ARCH}-${BASE_PACKAGENAME}-libreoffice-${PVR}.tar"
unpack "./${ARCH}-${BASE_PACKAGENAME}-libreoffice-${PVR}.tar"
}
src_configure() { :; }
src_compile() { :; }
src_install() {
dodir /usr
cp -aR "${S}"/usr/* "${ED}"/usr/ || die
}

@ -46,7 +46,7 @@ SRC_URI="
IUSE="gnome java kde"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="-* amd64 ~x86"
KEYWORDS="-* amd64 x86"
RDEPEND="=app-office/${PN/-debug}-${PVR}[gnome=,java=,kde=]"

@ -1,24 +1,12 @@
DIST amd64-bin-libreoffice-6.3.4.2-r1.tar.xz 120405708 BLAKE2B 0395c234ab0197cc4c80b1164a98d9638ac35703c195a56152b1cbca43eb4f49b6180d264ae9ee3c1cdf12e711db0d4e23f7dc7d919e74cb8e7d6bbe5d18f778 SHA512 c22669ae2e93bdcef6b1b6bb4b1aac9a17ecf6aceb3cc249e9f8925e18244185c03d5e420457bba8506628b6b997858e132012807fde4c73c62c84590c972872
DIST amd64-bin-libreoffice-6.4.3.2.tar.xz 113273468 BLAKE2B b32633570226dcc79afef682bc9cd99e7e6fc7c29361d2ed42b177444318a3a1ef53e6f001515e9602304569e6d164644f74e69095e4050281eedb7106e02576 SHA512 94c597f096053dd5340e63e21778a36892c10545779f63cd9123e2d8b50ef27979b6cfe68c0954de17c706b8adade834b7361a370b6b0df367b2971b9d604770
DIST amd64-bin-libreoffice-gnome-6.3.4.2-r1.xd3 1045524 BLAKE2B 22879632b95de6b39887c4bd8066685c86d1993e0b36e079e8d7582bb53a2338f6e07f0743bcb11b384099676e9df7b0ee61d1943e172b43dab8b4ab409034b9 SHA512 8d4fec241583782e14abc832175c11199d27400f9f3f876c7d31be89dbdf6e346a9d38049594657726368d40d5d80d8e2b96c30a6b971f24a98288abd032310b
DIST amd64-bin-libreoffice-gnome-6.4.3.2.xd3 1223025 BLAKE2B 60a826223df7190e23dad0cad2a5f46acc80590dc53ddbbb44725e8b2011ecd687c3d05db112c5e769f0f7962f68c8281cc25822f3b806e593cc640670101e85 SHA512 9a087dea29278eb14c6d121370b9803b9232b6ed6ce10d236fa7c5d6a326a0ac3eacf52f1dd488198449fd7ba7728e7e92627cfb67924406d3ec557ac0268522
DIST amd64-bin-libreoffice-gnome-java-6.3.4.2-r1.xd3 28708504 BLAKE2B d804206438db8f62dc8b60f0a5ac454812188da276e62364f42bc7f80035958f10e99af8f22088ab3d8ad28fa87581a722b6c167aa7e4382ba644770c6278af1 SHA512 3130d2db027980dcf4ca06ee54c9957006acb5978d9da243722f9ec92616ecb3cc9c00639623c0a4125d95fb7cae4d813a689cddd3e0e7eb7136c7ec6f8f8417
DIST amd64-bin-libreoffice-gnome-java-6.4.3.2.xd3 27598984 BLAKE2B e6f20918bb3e7355df26d4f212d1e1e90f73fd79e5aad1308403bdd11a9ef3318d244c2a78216a22eba619ed2f4c6b42273bfe064b14045d5ba6cbd0fecf44ba SHA512 377e27ee97ed15ad7963d3f4ae6c22bad24dca52f3552e8a557d30bb81099e9487b0a803fedf41a5254a998d17f401f723774f3e5a0d3fe0b386f76296d582e8
DIST amd64-bin-libreoffice-java-6.3.4.2-r1.xd3 28563471 BLAKE2B 548eb7147726909020fb7f1b063110c54c1bae5f6403ac4dde81125c1591b527c11f1fe0f86d46779d0ca8ffb9e2c2c9802f9dfaef113b2067482d970f80c89d SHA512 e9882ff68ae93cd4c64dd790b288bc4c54f16d26c8f78507452cf46e1ec12c0d30bd3c875973f5ebf816bc57529e71b4495363f2ad5e1b33a4c3e01672d9abe8
DIST amd64-bin-libreoffice-java-6.4.3.2.xd3 27479788 BLAKE2B 2d4c33e39eb99a43c1aee46d1e78739918228833d3868457c5e64211fb4cba21fe3c2432fb9cf6f164bf060141f68c8cb986dfe1f1093de6a6b429a63e5425b0 SHA512 f991e5125efe64500dfeb30cf145f85e61460cfb133990f7b7662d5bb281e9b152b7a62a04a2671240b015cd61064f7c537260ad69cd386bc832e02235890098
DIST amd64-bin-libreoffice-kde-6.3.4.2-r1.xd3 17993514 BLAKE2B 773b1051efc1d4ee0c3cd7f87c8e08ae62a66dc1410be10e842c06b7ce3fb371bfccd6e5b80a9640e063afcc6f72175fb075dcf1657a89b8cb95ace13d6618d9 SHA512 c72409dfbc88bc5864d7b70a101212aefc75ed037b896fb761a5a62460d7d46567401284caf5d518044d0ea306ecded89bc6e1f86d96dda6a97b6ee78ca6a265
DIST amd64-bin-libreoffice-kde-6.4.3.2.xd3 17773121 BLAKE2B b606a90277eacfc8a7683edad75027142ae9348292cb72e82836ce0686c4ddabb78752e3e93eb994d1967fde77d7f7dc0c73a6b6199b8abc230d7ca39fd5a4d9 SHA512 ae29d2975d88fe14e0518989218c3e05ca722073ed3de8f8d2ee18d30c6a49ea8f9aaf58d2f5ffdb52a175361108b62ad543e4e1a283bfc968b518cdd191c628
DIST amd64-bin-libreoffice-kde-java-6.3.4.2-r1.xd3 28570032 BLAKE2B 7f2e117bd82c315f984dfb4bfadf25e5b5bca1a6b8bfe47cdb8ef6fa30dfdc01ae4a29edf9b2750b28bbd7648c93bf84aa273034581afeb48b16764fa511d11e SHA512 ba36687555e7ad863a9b4a385f7689506dd5e567a77a61560792aa278ce77d30ff02ae134c1b09dcc1068335bb008a29e24175ba79bd38fac273b626e713ddeb
DIST amd64-bin-libreoffice-kde-java-6.4.3.2.xd3 27844140 BLAKE2B 4ecb445fab0600a56927001d5994584c230ff3c4c467301e235e1905ed29661b0467459af70384e063873c8a824565d902fb07282a53894be115d90d68c68bdf SHA512 9e459cee94554aad8898042c0f14465889aee83a11e100e7b3f233c2d6d9d5a201f52e825d8fe1ecbadbd0c8f0155c28870aa6e517d543d3ba3d3c4185c95704
DIST x86-bin-libreoffice-6.3.4.2-r1.tar.xz 122245316 BLAKE2B 0a61ff884bd78b57bff1c120d52728d3a3d9c13c21620b6b324defbb3043420ce52eb3a52e4a582228518d467857d710d4d290b3e5a1a12c8be10ca3a0d73a2f SHA512 4c705bbba757c370c6b21c0381d22f7719e426bdc8dbab435f1abef14732144af48a77628dcadd414af6bea566917b9c526dafd62ac0b7d1e84ce50616b9f216
DIST x86-bin-libreoffice-6.4.3.2.tar.xz 115234220 BLAKE2B 88eba1138e1cbc6fbf4ec63d5b47215aad89ffa72318633c770e5adbf4c2c2d6e36d4868bec0789795dfc23eb2ee140dbc7224f2c1bd22bd82e22be89c44375a SHA512 1526c94a8d9c49639b6d888f283624c87a43d9c66add0d7971eebfa92e9c922dc4c752a49af7c0c3a7ec7e6b96bc38eadd7a29a4eda24fd3c7b617b27dcb609b
DIST x86-bin-libreoffice-gnome-6.3.4.2-r1.xd3 1043556 BLAKE2B dfac5bc6503d050411980bda03f281f74608abe304a22d20fdc9df6ec13cd5700e55007f69f9884d78acb15f066582fb887b9723421bb3e4789953137d13eca8 SHA512 3b5c88c3248f0faad9b4cf223861a63c24ae951f84ce4c73f2838895e17c9094fa91e24dff79a95f34c4ff25fb8ec3d90ca59b07ca3ace7146d19689da70b9d1
DIST x86-bin-libreoffice-gnome-6.4.3.2.xd3 1225517 BLAKE2B b61fa6a5b51eba1f260d16c9bf2cf0d08d3734dc20a11e44e2730dfb8d62b42d59ba4d8708ffdaea8005fd94a852b3c2e7391d859e2c706275e5a7a067f982b9 SHA512 b94ca1f1038285bb8604f685433904f3c186dd6e1c707be9b806153c68fd29aa87601cda0a5d0e77911f67a344815a7e7d255091466620ca9a21a1d606d8c0eb
DIST x86-bin-libreoffice-gnome-java-6.3.4.2-r1.xd3 27040719 BLAKE2B c29f8c84dfd59344b0bec981f27e08e77fc1ea0c138fb9461579a40ace2dd8e985bf23103ca19183577057946fad8494401858d4df7eacc01d5051ee323d52c4 SHA512 44888d46157e31a95f7289aab6ae8bc6f03ff35de6cde7fa06de02844b031d55fac4779de608e03ce80af891261fd6f12f36628028bcf320cf8dfdc7b6cc4184
DIST x86-bin-libreoffice-gnome-java-6.4.3.2.xd3 25224776 BLAKE2B 5fa64d26595a69ec514517f4f9429d697319f99a5b3765908a5ef53969023b70fa76c42401e3abfb0229e233f81a111751bdf774629a2eb43054c89b071d29e8 SHA512 9cd1fb2a0b433ff98b515989bfa9fc0f5d8d502c2f3ddab8bf3e9e22ae7833bed37497302cf8f27269e7eafd78bb26bf34dd8a2ff458a4a876bfd90804d6952e
DIST x86-bin-libreoffice-java-6.3.4.2-r1.xd3 25338180 BLAKE2B ed97b18e75a4c7db8e06778f0279d241c6e279c64968aa1dd39712644ae654e8c5be86ce0866d0b561d4287543d4f077e28ba4c48bef2d36d630fd182f3befed SHA512 a8ac0f146f827a944d953e518f1050d549750d295a86c39a6de40f558c8267d496dfd54f6206b0dc745f56d87e0b8f9bcea456d41cc4d9e25ae08ac62339096f
DIST x86-bin-libreoffice-java-6.4.3.2.xd3 24828153 BLAKE2B da19912f611914e4de44526cdf81cc3cd029554ebfe1ea1d850c79f95877e686fc1d372804ea9e0f20355c898f00b66e471b8a8f06ad69451686f2f04242d899 SHA512 86ad918ad2a5352d771fff149a80f0d01fb877c91b1dcaee8a4429eade5bee3f64ac389146831b26091fff3a0670e885b675e56b21f9e4beb48af91b895ddb11
DIST x86-bin-libreoffice-kde-6.3.4.2-r1.xd3 15518276 BLAKE2B fa0e8787b50063579383208cb7bacea952bdf55b9d945ddebc1d0ff5e2e008573e2e1711a5cfb7e50bc2dcf4d1584bb6d47208cfa31321654758214a30137f95 SHA512 dd7f6dd9337fbe06df0779bf3a5a1a0fc8f382a5ea9c6c5eb02d5fe6418de19701d8305cea726c729503c89520043444b622b31814023931a9da3933bee6e7b2
DIST x86-bin-libreoffice-kde-6.4.3.2.xd3 16007423 BLAKE2B 6fd735641dfa0a3340a27c7f5ec76495559905f0dda02d4d71a40fd2619e4331b47cf4c34329927d97f29ad96450f9ef91456563384c7f375e1bba3855892012 SHA512 e448d6cb693a92a26690f8c8604f2bb9a43883d862678e0c071b8a3289e06397ddacf45adecea2ac456f924693787879828dc0d9d210e5700edc73b1bafde6c3
DIST x86-bin-libreoffice-kde-java-6.3.4.2-r1.xd3 26706960 BLAKE2B bd8a07d94fdaca1bfb718b99ea726487619b74fd6b3d2488db8f98c1e98a5c62cc29e89d3260b50ac42d3185315227d3583caa6a559254649bab713e5b832632 SHA512 aae33cf21f8bc06b7051cc3b253d9a8feabd1ca848fd8aa337d7de7cf65832bac6aff82c29f499d6278b5eb38f6352a29ce216283f401efda487b1b69ddd499f
DIST x86-bin-libreoffice-kde-java-6.4.3.2.xd3 25368218 BLAKE2B 9070e9428a52699fdae67ce85502c69171a7e09d45b3cd51c1d783d677de971d3db5aeabf056a4f6b774c0988d7f3f405279f4ae24352c3e9904a385ff93c25a SHA512 e705d70a7a6841309cc0c0f6e1ecef9d2280299a3650558d8d3fe11a07f01d0a10e61046629989b8c7a949f639fa288a79c0116c1edaec4b5a5e6e1b9bf45f0b

@ -1,252 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
BASE_PACKAGENAME="bin"
BASE_AMD64_URI="https://tamiko.kyomu.43-1.org/distfiles/amd64-${BASE_PACKAGENAME}-"
BASE_X86_URI="https://tamiko.kyomu.43-1.org/distfiles/x86-${BASE_PACKAGENAME}-"
PYTHON_COMPAT=( python3_6 )
PYTHON_REQ_USE="threads,xml"
inherit java-pkg-opt-2 python-single-r1 prefix toolchain-funcs xdg-utils
DESCRIPTION="A full office productivity suite. Binary package"
HOMEPAGE="https://www.libreoffice.org"
SRC_URI_AMD64="
${BASE_AMD64_URI}libreoffice-${PVR}.tar.xz
kde? (
!java? ( ${BASE_AMD64_URI}libreoffice-kde-${PVR}.xd3 )
java? ( ${BASE_AMD64_URI}libreoffice-kde-java-${PVR}.xd3 )
)
gnome? (
!java? ( ${BASE_AMD64_URI}libreoffice-gnome-${PVR}.xd3 )
java? ( ${BASE_AMD64_URI}libreoffice-gnome-java-${PVR}.xd3 )
)
!kde? ( !gnome? (
java? ( ${BASE_AMD64_URI}libreoffice-java-${PVR}.xd3 )
) )
"
SRC_URI_X86="
${BASE_X86_URI}libreoffice-${PVR}.tar.xz
kde? (
!java? ( ${BASE_X86_URI}libreoffice-kde-${PVR}.xd3 )
java? ( ${BASE_X86_URI}libreoffice-kde-java-${PVR}.xd3 )
)
gnome? (
!java? ( ${BASE_X86_URI}libreoffice-gnome-${PVR}.xd3 )
java? ( ${BASE_X86_URI}libreoffice-gnome-java-${PVR}.xd3 )
)
!kde? ( !gnome? (
java? ( ${BASE_X86_URI}libreoffice-java-${PVR}.xd3 )
) )
"
SRC_URI="
amd64? ( ${SRC_URI_AMD64} )
x86? ( ${SRC_URI_X86} )
"
IUSE="gnome java kde"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="-* amd64 x86"
BIN_COMMON_DEPEND="
app-text/hunspell:0/1.7
=app-text/libexttextcat-3.4*
=app-text/libmwaw-0.3*
dev-libs/boost:0/1.72.0
dev-libs/icu:0/65.1
=dev-libs/liborcus-0.14*
>=media-gfx/graphite2-1.3.10
media-libs/harfbuzz:0/0.9.18[icu]
media-libs/libpng:0/16
>=sys-devel/gcc-9.2.0
>=sys-libs/glibc-2.29
virtual/jpeg-compat:62
"
# PLEASE place any restrictions that are specific to the binary builds
# into the BIN_COMMON_DEPEND block above.
# All dependencies below this point should remain identical to those in
# the source ebuilds.
COMMON_DEPEND="
${BIN_COMMON_DEPEND}
${PYTHON_DEPS}
app-arch/unzip
app-arch/zip
app-crypt/gpgme[cxx]
app-text/hunspell:=
>=app-text/libabw-0.1.0
>=app-text/libebook-0.1
app-text/libepubgen
>=app-text/libetonyek-0.1
app-text/libexttextcat
app-text/liblangtag
>=app-text/libmspub-0.1.0
>=app-text/libmwaw-0.3.1
app-text/libnumbertext
>=app-text/libodfgen-0.1.0
app-text/libqxp
app-text/libstaroffice
app-text/libwpd:0.10[tools]
app-text/libwpg:0.3
>=app-text/libwps-0.4
app-text/mythes
>=dev-cpp/clucene-2.3.3.4-r2
>=dev-cpp/libcmis-0.5.2
dev-db/unixODBC
dev-lang/perl
dev-libs/boost:=[nls]
dev-libs/expat
dev-libs/hyphen
dev-libs/icu:=
dev-libs/libassuan
dev-libs/libgpg-error
>=dev-libs/liborcus-0.14.0
dev-libs/librevenge
dev-libs/libxml2
dev-libs/libxslt
dev-libs/nspr
dev-libs/nss
>=dev-libs/redland-1.0.16
>=dev-libs/xmlsec-1.2.28[nss]
media-gfx/fontforge
media-gfx/graphite2
media-libs/fontconfig
media-libs/freetype:2
>=media-libs/harfbuzz-0.9.42:=[graphite,icu]
media-libs/lcms:2
>=media-libs/libcdr-0.1.0
>=media-libs/libepoxy-1.3.1[X]
>=media-libs/libfreehand-0.1.0
media-libs/libpagemaker
>=media-libs/libpng-1.4:0=
>=media-libs/libvisio-0.1.0
media-libs/libzmf
net-libs/neon
net-misc/curl
sci-mathematics/lpsolve
sys-libs/zlib
virtual/glu
virtual/jpeg:0
virtual/opengl
x11-libs/cairo[X]
x11-libs/libXinerama
x11-libs/libXrandr
x11-libs/libXrender
net-print/cups
sys-apps/dbus
gnome? (
dev-libs/glib:2
gnome-base/dconf
gnome-extra/evolution-data-server
)
media-libs/gstreamer:1.0
media-libs/gst-plugins-base:1.0
!kde? (
dev-libs/glib:2
dev-libs/gobject-introspection
gnome-base/dconf
media-libs/mesa[egl]
x11-libs/gtk+:3
x11-libs/pango
)
kde? (
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
kde-frameworks/kconfig:5
kde-frameworks/kcoreaddons:5
kde-frameworks/ki18n:5
kde-frameworks/kio:5
kde-frameworks/kwindowsystem:5
)
dev-db/mariadb-connector-c
"
RDEPEND="${COMMON_DEPEND}
!app-office/libreoffice
!app-office/openoffice
media-fonts/liberation-fonts
|| ( x11-misc/xdg-utils kde-plasma/kde-cli-tools )
java? ( >=virtual/jre-1.6 )
kde? ( kde-frameworks/breeze-icons:* )
"
PDEPEND="
=app-office/libreoffice-l10n-${PV}*
"
DEPEND="dev-util/xdelta:3"
# only one flavor at a time
REQUIRED_USE="kde? ( !gnome ) gnome? ( !kde ) ${PYTHON_REQUIRED_USE}"
RESTRICT="test strip"
S="${WORKDIR}"
PYTHON_UPDATER_IGNORE="1"
QA_PREBUILT="/usr/*"
pkg_setup() {
python-single-r1_pkg_setup
}
src_unpack() {
einfo "Uncompressing distfile ${ARCH}-${BASE_PACKAGENAME}-libreoffice-${PVR}.tar.xz"
xz -cd "${DISTDIR}/${ARCH}-${BASE_PACKAGENAME}-libreoffice-${PVR}.tar.xz" > "${WORKDIR}/${ARCH}-${BASE_PACKAGENAME}-libreoffice-${PVR}.tar" || die
local patchname
use kde && patchname="-kde"
use gnome && patchname="-gnome"
use java && patchname="${patchname}-java"
if [[ -n "${patchname}" ]]; then
einfo "Patching distfile ${ARCH}-${BASE_PACKAGENAME}-libreoffice-${PVR}.tar using ${ARCH}-${BASE_PACKAGENAME}-libreoffice${patchname}-${PVR}.xd3"
xdelta3 -d -s "${WORKDIR}/${ARCH}-${BASE_PACKAGENAME}-libreoffice-${PVR}.tar" "${DISTDIR}/${ARCH}-${BASE_PACKAGENAME}-libreoffice${patchname}-${PVR}.xd3" "${WORKDIR}/tmpdist.tar" || die
mv "${WORKDIR}/tmpdist.tar" "${WORKDIR}/${ARCH}-${BASE_PACKAGENAME}-libreoffice-${PVR}.tar" || die
fi
einfo "Unpacking new ${ARCH}-${BASE_PACKAGENAME}-libreoffice-${PVR}.tar"
unpack "./${ARCH}-${BASE_PACKAGENAME}-libreoffice-${PVR}.tar"
}
src_prepare() {
cp "${FILESDIR}"/50-${PN} "${T}"
eprefixify "${T}"/50-${PN}
default
}
src_configure() { :; }
src_compile() { :; }
src_install() {
dodir /usr
cp -aR "${S}"/usr/* "${ED}"/usr/
# prevent revdep-rebuild from attempting to rebuild all the time
insinto /etc/revdep-rebuild && doins "${T}/50-${PN}"
}
pkg_postinst() {
xdg_icon_cache_update
xdg_desktop_database_update
xdg_mimeinfo_database_update
use java || \
ewarn 'If you plan to use the Base application you should enable java or you will get crashes and missing features.'
}
pkg_postrm() {
xdg_icon_cache_update
xdg_desktop_database_update
xdg_mimeinfo_database_update
}

@ -51,7 +51,7 @@ SRC_URI="
IUSE="gnome java kde"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="-* amd64 ~x86"
KEYWORDS="-* amd64 x86"
BIN_COMMON_DEPEND="
app-text/hunspell:0/1.7

@ -1,171 +1,3 @@
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_am.tar.gz 2569032 BLAKE2B 10fe7cd22fd5a0ec518e92ceac76d2a83e6f1c9c9f4867bae8053a4682261682664bb58237eddb7d1a5d3a5c0ba83f8fc6da157a5de902198e43029e175e311f SHA512 9f167f053ec3f1c6ac57351ac367a9a86417a269c6439bd9841b9a1aeb6233fe0b2d81f344b84995a05eccf00dafec59cf86d03cdc3fe6f8d561fdf7ba78ceb9
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_ast.tar.gz 2452848 BLAKE2B f310d71dbb13517861c2a5dd9c97fc65eaa02a4f8bf9b1d5542bf60d7728dc8fe28c5f1199fac6866febbb8574d2e857aa47826ca3daf6a1b1be792f558a4821 SHA512 0b5302795c0ecbd7ef9184a16e11d272e4b4f4963f48d3455923a196f9edabb7983ae83d5c1b53f20ce6f5b839e0df4e36ea71e1e703e96fd5f4ec04c2ae17ff
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_bg.tar.gz 2640476 BLAKE2B 0e661f67b7d49f4664f8c7759d74e437c2fe1f07e293098e39be37f5e0def3e55517d189b98beecd5b433cbc7ed04e575aa203bb8285aad6c615f2402208d65b SHA512 c0568930ed7a22f2fcd1c939123248d5de9a09a53971254ee3307aa0937073070b8627d16d2e1a60b54c2e792b8dd5da3efcf10f3b4b4667378c174c278054d9
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_bn-IN.tar.gz 2643943 BLAKE2B 37f8c79d2f5405e307781b2b90e33218f1dc2acb78509e75a3a3a5e15106cec1b3c1a288ff6ad7a321c0fa28b721fc73b65a092c1c0deaa4bca640f7c8e7af4f SHA512 cf08e612c27b6bffd0cecf311c5053636b353beacac8d5d354e40f93649126ab31912e5ccd988d677f8f23ffd017c2c6ca6e9790878479cfc482c1cc7bef3d0a
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_bn.tar.gz 2625289 BLAKE2B 0376cd843a1615807dcc7c73d5236c61345105b90aa8d46ea12141049e86496546f7ce2436b7a8e093394886e380feb91c43df1eeb77220556ec80bf8627c864 SHA512 2daa70b26206a4f7c47ba04627bc24c5fa29bc4bbc201ef7883466f015e6ccbdc64ca173fd6087db685b322d3b94576bcef7ba891d17a4f78113b328cb6a3da4
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_bo.tar.gz 2645201 BLAKE2B 0f230960cc9d991df45bcda810e7176d9df23db6e16b61b6e5f33dc3bfe2b08b5e9e9d4ec5367e7afbcb94a7e7ec0301e3b3cb1535ad8d8425389579ccb12c87 SHA512 8444d5bea902c121765583db64f2be954b81a8cd43f68ef3e70f495875c24771ba3835f1a5eeb6b3ed4a49eef68bc69b187524e88355fc04d9669ed4c0f3fbf0
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_bs.tar.gz 2364320 BLAKE2B 51db305cba90c02640e82639b53e8dd502f582502a4dbfd1914b0e621bc7013a9f8faad6c2911b3a179a043a14c16329a8840714e3f077fd36a263d9a4bdc316 SHA512 14673b454ab77568db218e60c6b26c0ee78d80435b160bba8ffd58fdc27d5fc42e28369901354a02901b596f4cbb3a900f31aa1ae279035ec16ebd2b23fd5f66
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_ca-valencia.tar.gz 2445142 BLAKE2B ff50ba208617ea33d1b40b9f26fd63e91eb06adbe22831acc1df52734fdfe5c138b193882bb13fce28bce0e768dcaaee439b2eb6ba46170159c87d02ccab7866 SHA512 bce9d0c7b2a44e366cf680ceea092af3ec3ff85e40486c6ed4a00a5d7cfe8c9aa9459b42f9a33ea17b889fb6853fff680ce8ccb9285deb867812f6fd3a4a24b6
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_ca.tar.gz 2431627 BLAKE2B 33186c3bba4e53deb916e989eb40fb604eddd315284a461b8f71983de53e7afd01175a4ba75c44945c0a0286eb1a89c6b0da414f13d4a46497e0eba2211c451e SHA512 43dc223afa7bc71d6f9b8c1d60c60558b5ea74a0334015a4c0ed6085eed0aa659ed6a103db23504232e53eedc859dbb5ba415423dd75ee6e5f805aaae771d8f3
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_cs.tar.gz 2434284 BLAKE2B 66ce8b7f9fbdb10d0e107736bd250289466150083f38ac766b648a16bd99523ec79021eca3440f8505a1d21f366039b1a7a8b2ec17bd055bbb4668c28bd9aaa6 SHA512 2cb8af4ccb82ed9368d24a0682ce530103de27bd14ca0c957bc3dd0f5f94fb137382a0dc733b07e20713408b3f4afd9a694ee43023c9319d9a158ff829a4896c
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_da.tar.gz 2394322 BLAKE2B 0a8c84e973ade7c29e9b61d1aa0607280a4b5285926bbbb78a1dc2f4dfb76d2cf92eca1d911680d6da9c5468bceef600d8c954c9a9256ad77633471651d768de SHA512 73d32e3aa8f8300fb3870cfea5818957737152bb43b5bf5ac1d18ec81034842700fb6fe3934bcec5a3dccd27501b50c50ba6100b270396fc8c6559f23dbade9c
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_de.tar.gz 2491248 BLAKE2B 9ce23684fdfd454f7b2183fab8fda1a77699eb0830e13866f656ca23e2d511ea1465b29a80ccfa35dcabd4219a3d22cc2f58e5d175a86d995cba3b5132429bad SHA512 d1651855ae5026d382629c42e67a1d0a24d4bdc235070eb7c67df566724822b93ea18f61d08cb83ab1c59cabee8397c2de74f9d2c817960a3b12ea9816bfe802
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_dz.tar.gz 2800496 BLAKE2B 3141b2f936d535993b91ddde4de1e8845ff6c023ac9f84fa179c0644292e09d0a4eeee16a496d474c27589fb81d8d12c947a0a1d4d9eb62f5e0a3b4465ed31ad SHA512 bc0b2ff0b6693945ca2958bb097e64e01edba6c149d8f6d68b97ce7f7139624b1ceeda132702d2eef7d5bef1a209c2221304d9b0d409b88552df21c7ef07e908
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_el.tar.gz 2843157 BLAKE2B e58e1201d82f78466a161783c1fe1eff3b9ede354a258d8034e3d5b8c094dc27af6eff7aba4a6e99680245f0a8c0cfe4a32c95571991c81af1f48fa38258b873 SHA512 fcb989b9811a7e965d7d9d6ae9a18a8b6135c35e0e347ec1ff9d2c97b94ed214d55ef914d7edf266b49b423d8797e982271bcffd1b233361f48f8f4f8f5ba651
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_en-GB.tar.gz 2272678 BLAKE2B 74b5d96cbd59072d8afec3fce37eff5998b0ba196fd52d9054827db8bc6219cea36a9369e00bb8128d41b89c96d0843a8405ab157f34118e446adf04aec518ff SHA512 bc5784dbc95c1817a04470ea1b9f536716ba522aea6d641e4cda5d5dfa9a5b61e32bcbe219c5281db2c4ae400fd831cf641aee54f0d908b73e62ddcda7cd688b
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_en-US.tar.gz 2119116 BLAKE2B 4fb5d24124114f716dc9e61d5e2a40101086f1bb24e2dc01e6f401f1e807a074a667707dde06475b56444b6936f5ac8a0cc8564de4c7a58ab975733d3ca6bef3 SHA512 337f94168d1d5693dd54cca6fe70952e0c26def7e17c643cb7ea7548088d94e9cf896a0796f09ef2734a00eb338ce36716bb5ebe484a8f309ac7dcc6404e8a13
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_en-ZA.tar.gz 2269522 BLAKE2B 66e9fefe9ff8bb8b2784cc9c8641ff28d690558fe8fd46fa2c1d4915946312e3b1a6f9d82484b7d4139accb6d04c126dc638461aec1e8281331ec1372245dd6f SHA512 2078eca2490561f2281c5c3d203923dcd83c0abfabdd5518f85452c53ba6d0a49d82ed29abb90992fce2ab69bbfc3f445ba5725cb5aab267317eacf5531fd7e3
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_eo.tar.gz 2349197 BLAKE2B 8869fa553b031bc7e79757033f7bb9164ab9f862f6063a5bd3ad076950728bd1670dc68e1be8130703cb435196308b7ab119be1d117649f79ca09b798b725113 SHA512 eb1bb54ef153da7d4756266d82b147782bb2255580587b939d1808f762e972d420e8a6bc50788630b0678953460b1dee513047966a1bd890e1075f6bbe7459bd
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_es.tar.gz 2476822 BLAKE2B d677caf1b5c27133ff2f4ff2011908144ca2a31561f0517ebf2902cce32232558d496f534ad0842b4f345faea41add5a7502bc5ea26bdcdd368b9e618ff058d5 SHA512 0e53ffb8f63e4463880c369b48e82e0b59bd3630f235b96d70f5a0fc95b4d9734d85a6f519de56aa9a1c35d56034191d2f10a2bd22fae3afb5400d8e08543394
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_et.tar.gz 2380987 BLAKE2B 49fe93615cfd35c95680b62c1f20f2a2bdc8a9d1460f0b093415774ed2ff035ca1c336a2fa182965c91c6eef6da311fa8e5389f15ae35dc5c9853efa48f2d617 SHA512 e455e76a4600cfc0297bd1ad9ef9a4c4b3bb2302d7b46a1df575f1185083f20c46c21c27c367957ec11f0a56e5cfca6073cd6ec7090b930e76a63bebd52685c7
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_eu.tar.gz 2349294 BLAKE2B 78de233306f8415de7994893907407dbeb4070322d5eca177c1efb518ea8c2a2b4716496ea3d101b8e2e4d13a7062a19ca79c52aecd866c3ed5b1369cfaf71c5 SHA512 9a80b3759d50ff4dc2135100418dd9ff924b876da60c93f15f02bd6575f515bbf5ebe2fae3d12d21d090ef064d6fd2ffc55cadb81087e9ef93bd1d820cad8e7e
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_fi.tar.gz 2444612 BLAKE2B 3272ab30fe53512b712465e19795e7cc815bdda3ebd5d14d6f6be56dafc6a95886d93775f6b98408b722d6b93142fa1f85499bbf264a8861bf213a1aa0ba3e8b SHA512 0154e8a16e1148b012690414dc45db0d74d4d81de133dd6c2e5af99dddbcb868bb391134322acc5f21f9b46b641ee80937d7c48eb682bb6051b7ea241afa4640
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_fr.tar.gz 2456580 BLAKE2B 340c9045ecffcda59a53005540044ba69317fc8aa47c5bd13c84612420a1429f8672f73d76c82bca6f13de3f3e7aff183b788d25259172c9cda57d4a11e601ba SHA512 c8f049f8f9adc09a0b4713be9f767f47f427921048a4d68e44e5e9fe4d26e8a767735274f17e23be44f33bf00cfdaed88f3f9265642607582bcd8c8941e59b9f
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_gl.tar.gz 2429120 BLAKE2B a114b9b9f2229c14dfeb11d857177263a3cac633704a8d93732d55d503a76efc6c98a977d63b8226e5a65769d2ab623c3a237078c6279bad913ed6d5780dc4ab SHA512 66154ec67f6fd38f5bb5dce5eee7f2af1c8fd6439ffb8bafe320e0456232122b23902c79fdcac1c2c1029a883481df6266555e18fd3e59c41ecfb3566b2e1540
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_gu.tar.gz 2317254 BLAKE2B df0438716c5639fb154ef3de6af5f61ac96944d3ef447ba42c37863ff68f05c093e89d4f6c36fe8efd944f402456d4f3206feee0e35522493335f7f21ab2761e SHA512 b5ebd01f601f89d517c0609177f0b2ae6134ee51d43d01a9e6a9f4891d9b2870652e2a078650f5255c06a7494be30ed932bbbdf0a6ff77213ace988d0f59b384
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_he.tar.gz 2212308 BLAKE2B e902abc49adf153d7ab22264b437c934e924c19a57aa0e072ea6e8509b0b512987549ee91b7b08d514709fbe5517c6e608cc4301d39927e7c357f041648961c1 SHA512 50d4d9d5e8b0e3cca4e20850e2ee1d39fcff7ee71b4ad4ccc54af33e1db1333c984df7898162424b6e21fb2f1f10d612409d32efffc4fd5ade5634c61c54c890
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_hi.tar.gz 2422010 BLAKE2B 6959cd38c3051e6a356656ee337d1ef736b4156e8be6d1ecc4db69e116c8306c0eee1c268a0a566143b3ef5343690544ad5a9548b53fed538c2a141f7823069f SHA512 1a84c849731febb6469092cb91b39a9cea4b04a94161ebdf59cd75155f0f87eaf7893bd385656e46223016a411043a09046cde7d651b51e45007b52015ae16d4
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_hr.tar.gz 2330444 BLAKE2B 73c5599aa503dd62b0a2c5ab598350d1c6af4c3789a7df08790f4a0cf9207bfd3747e5284cb26a10249998f2737aeae7f50d22821edc6f4dfecea54ee536f24e SHA512 e6eb4132977a1c6be0ae1a6472b57b4f5376f68460042b5d49026bcce580029898ce35d6ae985a55c2ac722b030ad62bedc2f0b927be9c58df4c1e3953a48f3e
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_hu.tar.gz 2556094 BLAKE2B 07e3c55babf73bbb43761b9d759fa27f6232551090ec79854751457f00862b8588fabf1010c29b4d50e6ad6ee8d65568d12693a8ef137ad4303ad25fee2acd16 SHA512 4e06d53617f607d5816b69960fe47d6dee401eff564a2a5ce864eb437fa928bf23d221bfc97e2a82bae2abaa0df39ea97a4b4e77ec898b2d8958a611eafac410
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_id.tar.gz 2329744 BLAKE2B 4973f5d8f63be41362edcaa14bfe9f774db6b900c65333cc8854b1ac562e072003a0cc01c166b0c9417cb9579c116984d76456eab77126c8f0ba2eae190da868 SHA512 7a558a2d444685c698e2b40dfd3a452b4e66567e5abebc979e5bbd217d0efa9b39bd5ee8a583fbee77f614015aba926f526e408960e0d6d1204d9a48300646f3
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_is.tar.gz 2349705 BLAKE2B f129c5bb58655a73fd355f639b4f4b7646bb1693d3372247ceaa62cfc58db1bc5438c8dfe64f5ba7f0e60c243d2924a90da1ba25d8cb41a15bc9ee14192fdf7f SHA512 b4e25f8509bff1604e71284d7fba430cd7a00dd7a672350d387f4d9c15ee3cf39c32fb23245d34da9d29ca5c6e4d1e72484ec9a05d374f34e40684cbc4470db1
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_it.tar.gz 2427530 BLAKE2B 149b593ba36adef4c3c8ff8ecabf840b2bb863b7953810111dda3480fff522b23eedef09f24aad4ee472e5ed8bb30662a7dea5b65990af6b205138906f4d976d SHA512 05211869cb4108de85367c53e5117632c1f944d6555a6af6d737e6cb3e512d72ccb53ea8ba2ca628fa9937d82569f1a0a213bf4d382ebbd777013133b7679def
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_ja.tar.gz 2595535 BLAKE2B 89177297365a17a0842dae3b9045c97f976bc8f35eb91be35995780448b653c89ad4cf252844e74fea333db96540701eae96dd6ca357ec0f3e556e9a0407b8c5 SHA512 7957228b5d03bc55c1fe042069545af6f7a3f3c6e1150b00faacf1772da931a2022852a7addea594df300d1d935de563c4579b9c4abcd5dbe2d74bda51e54884
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_ka.tar.gz 2452621 BLAKE2B 1c6ae59aa89aec81ce69210e04665acbb3027453621db3df018b2eb412b23dba5d4dd07b6bbb3d603bc77484e76e7a1e94af8c1fb5654a9579312b46e57be9b9 SHA512 d62085bec9280638fcb5c1a3d8826d2389bbe89ff7fb858e3a6af07261de0e1bec49446bd61a30d1ac32c00c76565be9eb1ba7206c60df81c8e56d6933064e62
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_km.tar.gz 2746944 BLAKE2B b47638b645a06b875b9c3c4ef278fabe3a392645495b85d92a3df6d37c05a44fd95bdb3e36a5a12805c050e3ff033741a258671215effdc4b0ae88280f5d2332 SHA512 cdeae161e86d1f96a0ce6286a9c3a5f87a9867d16af6f6b5d09d9b64fd134614e4ccfa5cf2ec9d5b9a4edeb1896f9f726c9aeab8f53582519a47ab2e177b1d8c
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_ko.tar.gz 2472569 BLAKE2B 95a1d5f8964a0c108ba6aad9174020cc7d6cfb2f870fa9e946d617766f480345e4ffda010b810314b9fd9237c0b83ec754d9d6947c3f3f9c67670c51b386adb0 SHA512 e8236ebc0114ce653c3a943d84aef3b0c1d3a84b1e18488296550c140ef4c3d0e93f66eab0735e5d43ba4387a5ef2530473397600e8e1abcdd9eb0a1ac42af0b
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_mk.tar.gz 2438396 BLAKE2B aa122394937b7a2889e4ab9df3dec9ac5c4c7ab9bb55fe89b388582b122fa873529f47f2d4c6aea0e4d4db8987d2aea981623d5c80532af4c06c826b405dac28 SHA512 c69dd1dfa5918e9655195d5bc4f15cdb79b7654ab745e40e0df0b5ed7462d859041e321bb70b4f60e086c1a9ba873d55fedbe46f36f59217a62a5d8baef1d09b
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_nb.tar.gz 2373645 BLAKE2B a6a8a178dcd48d5343d0336d1ab15544b2cbfda2ec3e5d6a9c62117b02429b23b0c09c0c8719d377ac3d99f3fbcbe5e2ddbacbe6379529c70a3391e8198ade86 SHA512 b490a839bb009591aa1cad6bfd884cfd77e50b80202d0853f6746df08c5e7ea1bdbcf1f86ab2a16206b6ab930cc0f0b61674da0e84eee6e4a21105dd1adf000f
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_ne.tar.gz 2667851 BLAKE2B e055dd74a626f8388700d0bf2fb86f3d9310ccca034758c7046792c0ca76060a3dc34de44947d9a02cc37af9bf5382d1ec7059c010a40c2890b99b2eed265daf SHA512 758725fd73e41a2dbb4400d255dc81f342a15841917ad90340ccb271319800176a066bfde16d8b5d1cf0745763533d5cab891ba46ed7d7774c759bfb64be0fcd
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_nl.tar.gz 2426070 BLAKE2B 1101fbc7054c14b0b3cefe55896e652854030b4a4ffea54a6ea068d2d9cd5e52c228a8711b84e9b6f9305a69588526457e7ccad5d5633dcfc666234196ba56c5 SHA512 4d87c14f7e7f08c93abf689a529886298c61d7b6bef1b4f8e1ce1e17c00771488c0086383b0720d8a83b9855592e45c1e172b4816b3e979da86870bc6b9a210e
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_nn.tar.gz 2367628 BLAKE2B 895c25626c909c4bc6dde4af3c0a123cae53121d716129179148b411ad24c300110944fe38fd8e73850d56d74ae384d22c47a1154d51c95679f59b182dcf4e20 SHA512 10d725fba428f689298c4938e5842e03185ed5b45f52007f42d818eb3912339e2199f16b1badfc7995b307162fdb2f8c6033a861d7150fe9c60a09d33c99e17b
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_om.tar.gz 2457578 BLAKE2B d4f271bc6b8e9e12c66eb7a0b1432cd39789ebeed369413395fdf7cf3ab36de76cf60c9fe2da78722d7ad6110f26f75ddb111b25d8be6c568fad6edc6324ad0d SHA512 d33140198b190abe35b7be821fd22d9862be7073127f38a0f66cb6ee944ca7ccda19b1f5892824b795c9b3c8e11e2aadc9bb063977c728bdc7c029f8ea8a440b
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_pl.tar.gz 2527071 BLAKE2B c081911e3b56c3df69d633c8f00f11cd2c387f7d3c68b422ca18b3bda8e69316b6ce0d9f4f558d745297e166516491d28edf4a50f30db6fbbf95f5a963c663dd SHA512 5d953a9025b221dc883713494f0e5f470acda95e4b4e16a0922a43fc9d3ceeaffb77bae5d19989ffe187e472c5559d0d0fdd95c35175103fe6a9869ace0ba02f
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_pt-BR.tar.gz 2444168 BLAKE2B dab4ab6b9e7b28cbc159301d7ceafb2d4121499d4f6c661aa5d5208fcf1ccde93f2bec01ffe9e213a1f76742dffe324e8edab6c89a2799e7aa97f129844d9f41 SHA512 dc47b2e6ce9e59426700e705448effc7878129631b14ed962f8f5cddb84d025ba89b37a447d6e8f603ad0ce03ebcf71d1a7e0dc0779d9b8a7babd3391464f8c3
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_pt.tar.gz 2390396 BLAKE2B 1b140982edfab96b1827a687b677fd89a7189beadf4a99fc029bb028ae38fb7f46e4115a8ad91b4c6c2517e08ac4e1fa63c20cf0f3cdfda071d7db4468ffda06 SHA512 1398b4a13cf4afa3fe047f3865513e198c6481fd766a0d282bba5f0da228ca108f851e7246eb088ace532ce607a0cbedaf61bb743b236433491d6fe6f02c70a4
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_ru.tar.gz 2706522 BLAKE2B 3eab446b43b79f393c5ebf2bf12566fdc64530f3e014292286f459cf4aaa07aca6ec09e331b369a43a65dbe907095762e356e36e4753ed38996b2c8af24bca8e SHA512 299b7997380a2b8a87dec615b8d721222fb9977a6ca744aec9f8188f6d85218223da1e05a4a4701aa46704da78dd2af245b19cc1e0fcb09bd8bdac3219bc3d5a
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_si.tar.gz 2408003 BLAKE2B d8f7030665f080bfb379a8034440b1238bb18600909bbe554e3593844762dc91c72e29a99cb363b8b62dab2ce439d8251b9922f149deed31dfeb2c99c1f9b3f7 SHA512 cfef92fde2c3faf029ee52fd5b73a8dea1257d750d28a049ecb86ff3b1e93d978817945e809e9857cdf232f747108f80eb7a09a36be73586d33b8ef561b74d02
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_sk.tar.gz 2464362 BLAKE2B 5dfcf39e6ebcb479a3dbf6f1a638f70b1e9d8d94cc87c65f0d7b7a7ead07b0874b4b5708def6aecf4fd0bff82eeb507565a81edae8cef015e4048119c38a3b55 SHA512 e905633071705c33283f24991aebea433180820d45b4ae48d14e19e853ca459d700ce2fb58aad68e375ccc85f1993a3fe29383e4dd2d5107d40000792b070959
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_sl.tar.gz 2413225 BLAKE2B f10cd9d5cd3ec1371ae540689adff017d32ed7dc08ffd99f6a109fae3404782f50dea3709de740d3668ac951ae9a432ff37d7ca28a18c2e3411b27f09079b5d8 SHA512 2b4955fe1573b054463d170a4f556f295e50af0887d02a037f2648f82631c390e24d205d24a14dd6bf21aac6111a958f318b25dd1163a5d7d13bb9527e7f55bc
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_sq.tar.gz 2323768 BLAKE2B 104287e2011af3e1d2c1aac6ddc31e4a9dfcfb24341e9218fde9c6d7d7f75a3880e18830767e26c7d7efa670ac4292673444eb7455207f7359ba4de6a7ebb437 SHA512 adb9e3b4f67954fd13c0d5eeb1e5ebabcbb2d2884aae8c44e7d7a556e0837b4cfa960b57fcf82ea23378468d5d8b9acae184c53c1708d0bc2e32eee14eb4e2ce
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_sv.tar.gz 2409541 BLAKE2B f3e9f4c1ffd8371da99acdeade29610cfe2e62f668cc7ba8f5e4d7231badca53f3cf17fb08744d0f5044eaa15ff3be5f63357c4424e52f7d3122972cbad00c39 SHA512 52cb36290d0c1e100a9462518787bcf619edc41c04e2e1bd65dcc37234a667270f6cbca14e2d4e1cb34b8c04bbc59f5241a59bba34e3df77d4c7f585d414d1f6
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_tg.tar.gz 2409673 BLAKE2B 3600586e0d97728582614807f336c4e9dd10cc03d34b6e06317e22ebcd5a145f7b45db4a7ad7734209d39ada89364eae36406042c4408c4c479614048fdc6564 SHA512 f108e2368c11577d591c01e00b631de7227ce03ad8562d0ddecfac1a73d1b6b96b228672ba29795c9932664b0402ab3abd5781475ed3eba7b8288d8a2ca80af4
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_tr.tar.gz 2479183 BLAKE2B fa374c239cee8ecd8ec88a00d95c6502215045b9c8d0ec33fb8cc8aca02e433b79ce2a135d084b870c33794e7e981d908ff1f3b43b12a460a7edc2af5204987c SHA512 485b732bbe441f5d56025f566a5bf633c1088ec178ff173f18b0d05da9151fdbb6572b7c5bbd0077ddd667f666466e817f5b0e5c7678c9faf16f9b2b59791a2c
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_ug.tar.gz 2376104 BLAKE2B 7d85bf70377582435a9ccd218279d7ece20665d27b9160a8ff3b160647ff7b1a683833ef2a080413b5baca4589026b73b976e9fad24ad63c0788c761668483f8 SHA512 492eb09ccca4ff595acd2beb5da607eeb554c630640a5e2663f022be19af3c1aaaf08ad4d0d3a1dc774c69a500fdac88ae6991ec4e5311f63ece6d7f4abb6432
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_uk.tar.gz 2663053 BLAKE2B 5afecda99c8bdc5cdc7c15f634fccc4c4d560913bcd08094da558e00cbd35c2d63bae3904303d2a8e09c9b40c5f4e29d189fbfbad62baffa8bd53ff7d875e1bc SHA512 3305473ea3e299d022f9344bd1f6b6a7260d257e8641efa9d87e71c019e79c95ed74b8f51644f084c925207435d9abacb76358498efec4c1a0959ae951497a8d
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_vi.tar.gz 2464081 BLAKE2B ff867c1f6eff8d865ebf7ee04f71f36d4c6b1dee20237c06956f029291c50980a35e84e5af92dbabfc4bcb6ff1fc3011684a958d5d2c2df6a99858dcf192f8e5 SHA512 cb6b012ccacde89bbdc644b757755a37f33a75653e09c69e05bf72683b2b3af6213c557a3d586283fb093ae0cae4b2187542d4b21026397e8af03b83f33c0641
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_zh-CN.tar.gz 2405546 BLAKE2B 36beb367c3e7cf1f2c155f7c9223d64a1231090aff7112debdf736a4b415328d35a9db44b6b5166b74cddd72de61b6cf6b70862039dc1b2b8e9c46bc3ac7aae3 SHA512 a23cd26c64ba26d6484a3bf55c5f06f73418f34ee969f7a826376baa932981bad4ada929ae9dcbaf9f050bf690ed0f99269b60cf6138ff76e34967c14af1ad24
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_helppack_zh-TW.tar.gz 2504531 BLAKE2B 414e5d120decfb4321a30332b410e6223872b7399ae92da420657eb2579a6c7e6fd5b3a6f36a1c9047a68211fd3657f305525d40fcc5c8274c344bc705d67e8d SHA512 51d2f18ac58d437ad83b656f6a34f656b3c964627b7019347cf34ee33778e47cd041f3cd7f3244c9e7a18421a1d475a61cb6962fe546ddcfad82998daf79d392
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_af.tar.gz 1018582 BLAKE2B a394bfcef05944b1aca7d298fdc0dab8268e4d8cf01f02316e314e13cf7fc9eb00d6217514c9e32def763e4a742af901a59fc30a6d87bac7d7e91bb350aa81d6 SHA512 9022e49e63d4c242da6a66300d286a75f7ef881bdc0a084c580a290fc7a4684b5d126f8e3f5d760c8de7199f31ab656735e91f8f0d6ccbd2d52d9f67fc832f29
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_am.tar.gz 771131 BLAKE2B 9786eeffcb4e264f1e222fb3db2be974020db3f2817a22ca4f974f5d8e47b649a61a085a13792dbf4e65ec6f80718f39bc3a68f44d13303bd4f8d0a4d61cb495 SHA512 7f57149caaec6dfaf432ca5bf5e3baa25cc1b496a5d5d3438d3d55451157a99a1207de53a6520ff37e01b99963962d1f2ed28e1c979d158622cbe322575d687b
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_ar.tar.gz 2409284 BLAKE2B b91b0794b2b175c102d8a53dbbbb8feae36693bc68e0090f4026fec845581989e8fea641a33b5c996d36c541a1d5c4de327ec41bafb46edfdb3a09aa22599c7b SHA512 b37c89666b3ac8a4ee2d9e08611a7093d22342661bfdc4c7035e6d81a896d8bcdeb53c94836cfb694ffc42bb3b967a9b15952c2b039201c5aa97ebae644d0657
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_as.tar.gz 527798 BLAKE2B 3af1ca4b4ed9b935357bf2aa46a1a2af7f24071983215262787cf966ed9b839e90fc85c9ac7948dcbdfc75b84cafd72b1be2dc7d072034b4cf414ae4bff09be8 SHA512 f3c1fa4a596656e8c6e60b2632fb1c241523f4c162a79e43903e5fb406e53d417682e26bb31fe2eb5fadfabbc5fa2757e71ba17047a7cb539a1604aa5bf9e0d9
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_ast.tar.gz 436111 BLAKE2B 0368ac8935e83f6ea68e20a47bc0222e02ff89fc4a7a010aa5fe3772ae8470dae605cf418b9792471351470b42bca39f2ddddfbf1c2c84854db2f6b70ff27809 SHA512 822f1d1499d58fe3635e8b117c15ea15066ec18dd674992d41c88c755f25e65f67f7de8bf7038be719a389e9d3784c2cca4e9cb52f84b19963b2b451d20fc073
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_be.tar.gz 1047890 BLAKE2B ddac7a19783421165cfa9c17e6a143c74ee152d69fc468502a09a1d2b3a4ecb2c62cef8717a186e983cbdb2b8b838795ec21998f68b1c11c98887f338c53c3b0 SHA512 5ff11baa20673c595c45abbef6a27eb1d717b309aa6d7153e1041341cebbed70c57a61324c3de0006bbdfe56a45e700f8c48645ae35d7c9cd259cb522265260d
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_bg.tar.gz 2479493 BLAKE2B bc6d4a20d679b5ee76a7cec76be3a63f38b2692c3f001d239cbdb5cf8be566b6b0daccd4e6764948d2c085cfd761b0e30fe4265874a5709f12dbb430b4c7561b SHA512 b290bca13e4589305231f177cdbb87e4489444a57eeb0e8dba71ae803527c4ea5a8cb4fb6d0077f85d450421e6ed38d3d59404ee63e42b623a0418ccdf7c9d30
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_bn-IN.tar.gz 643503 BLAKE2B 51ee712dc491cf7fd5b30b670c707dbc83661b0d367968f4a3d3d2407c4b288fa3b3af1568084a2ac619943a047d2a847f36a73a68b836100341995917c76cdd SHA512 20c0400c5e1d58b327665e8da09a0b5c0d2242562ebea50e5c1cd9dc17116c304d9946e019a83fa9236ceb6d30e3c7ae3dc7a9002a4cf49d88285b5bd11493c7
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_bn.tar.gz 785772 BLAKE2B 0547a21bc80a74d1db907d6841db1ad455bdfc4c580766265ec325fa77f69a48746d02f49eac8c42790b30fee575a82cd65defd7b295f32f61b9fc585c0be4bd SHA512 8eedabdb5f39a98996861971e0034695a245f452a26f6ec2ad92b0f08e65a3e7c5474c5891350b02de315fb40e7c10c611c583ee802b65493d21c6e4c76c6938
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_bo.tar.gz 377456 BLAKE2B 04c4c2b34f470793ced02da66098432702b1e36aeab4c0178b779059713359e6c71b2c2f82b5c52b2c92623f991b17afefba7bd7f07a61963aeea1eb059c7fad SHA512 417c6c5cb2893fa49c2a189e62e777b3db2404bf1edd1d3063dd31b30880d609b4c700cc99a54bd1db6ddd6da8239cf8347a79c44f1f922cad9d4fdac0ec761d
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_br.tar.gz 1532634 BLAKE2B 8058628473a834bf9c29d3a6db8c7b2f181c30f2bf3897bea3d5de5eb0f37f3370ddff5fb64a966c2036f6a356537a966bb7241c4cf141466ba9559ed4ad00e0 SHA512 9f323e50250ece08ad0b39be8236cacc789ed9b6a037e06173196f55904e57be19c9675959022e56dee55d6ab76b0a0ff3870143b9d1e443f04ef365aa53c7d0
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_brx.tar.gz 335233 BLAKE2B 6c08d3daebe763f69e97c030b09810de4077d4b2ac28e3b80e7e3981d4ccae50b90a71f0f85ecfcd1e4ee0bf137d33754d998bae0956299c80162929f4a7d4a1 SHA512 182ce0e68414f83ad680947f525a4f6cb0c91d901f5fe51b492e1a153c4811d0235860271b79d071317249a6fadc6c1c0acb336231accef33aa4a52637a96ed4
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_bs.tar.gz 632072 BLAKE2B 474a616376fad658a9dbf988cce7f78275648f21160357ab10799ad060dba3f1bfb4d3380602248e8dc832ce73543be03463d94012c755d2796cf9ee39ad1219 SHA512 854229d66c675a56ae11185d2b911f6580d2b147195bf3ffae8b54b8b959e9524979b82b7cb9465b3b632b629f849ba99b7d6fb7dbc600108ac9cb8b8c5a93cf
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_ca-valencia.tar.gz 1993887 BLAKE2B 1fa6273c8b48b8c03115c4a9c9a561ef0287bc89e45dfbe01225f2a87c1fae339a17aff6e98f21f01565364553a8aaf9a30c967c5b9398543c30aea72dd22588 SHA512 d1aaabb8c34b2d3b4b226eaf65d58749ab4d0292f902ef2d7493c7cd3fddfb26ede9ef640ab89eb30001fab613844c2790d2a182daa95e678c871c1b0d237add
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_ca.tar.gz 2033653 BLAKE2B 1b5247355245b3b07f7794f403f639cbd0bcb9dda0bfa157f1f1f474f129e3b8a9a39135dc58de004c27a8a4e5841c6aff0f849c78361529cced13f4f271c120 SHA512 4880e9df8602c631b1e83d6fb8824245f89b301acc0d2d361f1ee320ca484393ec8beb992510f2ff02dadae0544ec90c4c62eb0f0a889b831651fdcfa69dcde1
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_cs.tar.gz 3218283 BLAKE2B caa40b01d1c85fd034947f8807bdf1f0b1898cc468e9fd4cd78ed180d3cc3db40d63322093b69435e06595e9a66fcacda745fb6a4cc375c25c69accaea2c5f38 SHA512 b01bb826dcef2343ee6f7604e896bcc12407e329d397f2eb84f3a75aaa367ce6556160066215ca16181c7e9f0062b0fe98704c3610e1abe83fc732cb136e6d42
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_cy.tar.gz 753744 BLAKE2B 2ae33b0f5ac09457379d9dd5882981a23dfaac22227aec364a68470eace88efff6e023272c69ead3b67142384ecb3bf13632fa51ad8c15304ac37dc3cb833c9d SHA512 73701210dd5a76a6cc49a464306dc8f2c9f8b17612aa72e4862956fdca81ee15c58d77c2123623b38f7c8edfd404c31f697bcfd1b2cdf6f5fb93a56371ec8124
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_da.tar.gz 2857974 BLAKE2B 5c48d26a9a5b99035747e5b8202c504790fab3f3aa48f6d2297e8805c59f1825e64a03c018623dd88a127179f48a41780604db85682060ca2b028ab3b5dfbf21 SHA512 3b89592cd23cac52a4573da4dec504b6c212fd49fdc09307f4f75f6404742e014a633f5c5d173f08735ea0794c4fc18313c3073080aa5d8078f51f01a79baa9b
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_de.tar.gz 21785398 BLAKE2B 15391282f2041540a3130042a79140ae54330b37437c670fc467300db46e98e8edab1f006afe5452c774b43d4c107e73ff75fc52694492cf5c1c8cadbf6476b1 SHA512 c32dd8497263623bab97bfe4f186e75d49428c20d924a980847a5d3cb5bfb8ab5e52444aa93ae98ccaa0a8477ec958c1031a825944f28cbf61f4cf2adc8f95fc
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_dgo.tar.gz 438184 BLAKE2B 2ffb53c0f17c993d2c82abe3069e41067bc10a7ae1ee219b8bea4e64c88415b7215fef4c2c2119eb2764c8f739558441eb3986faf47119cdd748e8ca3e8ed23b SHA512 5b808086d8ffc82f8d13bd647653594592f395b9682f915d9406db36f5989c0b938947960aa1b9bf7c6e0577850dc8e8f41110dd079eccc7cbdbf15d91e3399e
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_dz.tar.gz 366200 BLAKE2B f9ee2dd627591fda4fef1c741d4e093d7a1d56c4ee6ef567c62f30e3dc42e782182980f05b6ccc3004367b5b766d161dcfcac43468f3a23d0393995872e2b264 SHA512 eff58f85d10817cb1b7ae112933a4732c3e3093747b994bc6a971dbfcbcf78eab3aab06b5ee0a6505dd1f2ec5a45b4ebdd39e127197f2772ebb79219e83c8ced
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_el.tar.gz 2861016 BLAKE2B 377808abe1e17bdb3cfd9c11c23c12755665254033d12c6d831e5d8424651038e8c84b25df7e800d47a430c9f60718f22e695532336c27d52a25f91981ad40fe SHA512 2c5d586bdc6f7914f6382c5caea2cdc016ff5d4ff37ce72eecc44ef0a385601f821b5d9a687653eed9a25d91f5d1117d9525cd5a4556f45b85a4146400b6b221
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_en-GB.tar.gz 7375601 BLAKE2B 8c406ef3353fe58d0f79c35a34ee097cd5ecc1f0f991b1069cfde1d7342f493581d055808fdd5e3ee5e7b36e64558b7bca59758c0597188d868178bde0eab2a9 SHA512 e232490f94c620ce73f3f467a7e3e9a95f7cd73b283ae2b7539cd98bc63a1da195f8c7a529dc6327954fb3481fbda4cc8afe0f6e7f97f7ac2d28b831bc4df003
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_en-ZA.tar.gz 6933353 BLAKE2B d3cf06941c1a73df141b070c60c3291153b5b7d9edd7be645861ffefa37bd17b2212bf11e6d89016d8faf000681d478d8d09baa875cfbe1b7826ec53ae6ce6f1 SHA512 fcfbfa3ba18283bc325e290af9c0dbeab90a74678301c20cc4d327243b080349bdb94edf6170c53273c7f45663f15d38092a8ec1926582a53599b7187316dcb2
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_eo.tar.gz 749455 BLAKE2B 0dfdcc281586295099753dd5e08df843369632cc36464e77b230d1b0826c3f30dc44243164718d2c011e0ae60b4f882ea3816822980def623daaf0d5cf1ad91e SHA512 7afa058c8e384f06a927a6cef4fbf45933238fb7f3bef1225ffa881c5f7c2413b39dce7890abbfd7519694aa0ee2538f10b2b5145c33ff66b5f8f7a1ea31589b
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_es.tar.gz 2271328 BLAKE2B 50333af3a827f1ed64ea30199330e43442eb4726dfe499b51bef70aa44fa73f15e5b8479333c3ee2206bf8f2d4be4ad294e087385d737428bde01dfb7524a36f SHA512 631a4f17b300807dd19b96b7662049bb8c3ac5abf9eec08953a188f6bef847c870400729728c27587ae1ca5b50ca62270a4a6d4c9f57122ea2fca87b50a93507
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_et.tar.gz 1665581 BLAKE2B 6abe415cb4019073e45cc12b17169ca7b8d30a341c8d5626f14b50098e473cada880b93e62938533e5dc34e009578d06a5aad67045f4398bd9e6b468fafe2e8f SHA512 e86a97243d8b6a7b7168540a3c0a96b325cab2c0fbd380352a0d4c5e525edd2f960ae86fdc1115b5ee871ced8e42725d657e586b853372f8a1284626576ffe66
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_eu.tar.gz 760516 BLAKE2B 1864dc2abddc1123f98f51aac38b712bd76565a87d96b26e7c0f12b079d5157a82e14725666e2c9e75f43cacf74aee120a47fdc62b6f877219b7dfc08136ae1b SHA512 8aa247e908a7a76f4b1128f230a16d87275a95043f830c698b83b4411c160c2daa72160c60431ed8fe4340381843764ce7959102df6d308a31f0cb43d64cf003
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_fa.tar.gz 331776 BLAKE2B 6b22d91688cc859dae41c13d6cfbf9aec3d369c09a191aaab71d66d3fc86106f06957c2bc46dfb75e918bbac5aba03c1b71ea5df175ae88392c14a5bc8ae0cd1 SHA512 81f4e96deb59cc984070aa894153d48e042bd412cbcc661a54f8f46a6afa1b777616dba24e5e534069798cbb112b2aa6e09b64aae12bb1ece5928ff25381a357
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_fi.tar.gz 741139 BLAKE2B 6cbe150c615b9552cd96d141e4d52e2a8561b7303b4aa6dc9d41f63e3735fc44aece09b1971f3e6744ba812d47ed67813c2544e6f4bea66369856f5609ed963d SHA512 03474269658df5f7896863163885faf049b97f6e6e7edee8a7457bcb6f38d92e4cc4ca882ccefcbe92458f2c88ffc9e42ebb80f2a2197ae35ac2503b2abbcda2
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_fr.tar.gz 3065200 BLAKE2B 956d7c3c386cfc509a111d9180fa711520d5ff0604ac4eef3762f82699148acc6b35674d5f69ca6103f2821ad2106cffb648465cbc2a6b5d0fa1d0923dacbc00 SHA512 a753323320dd17b1f8b27ff21cbbc7309f209931f96e4ea35514ab76f654f929cde6c859a08e118c15d8d2c356bd3afb0e74b7f373f8e32e609fe03e1c63aa0d
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_ga.tar.gz 738821 BLAKE2B bc848358db1b2b2cbbbbed8f9ed314a4ce20f9cf1b870871e0e0379ed6c0df6cfbdab36d2e285340f1559d7a4d77802b5f17a0e6ebf33cc482b8224268ac7ebf SHA512 d5205771172471a4ce162bd8f40a5abb5d04357f14ebeaed01f6422f6dc76a766cd68b45363127cbd2fcc2834895e89f74ca526dfdc535f620897b97041f68d8
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_gd.tar.gz 1794393 BLAKE2B 93a285fa24969a91f54d2f7eaf5c2792fc18cd50dd1784e43c4c989e2d5158799dfcc342d9c30f3ca7d3669bc5e38a7bf299a282d6a65f64929c9d5c630f8c33 SHA512 cab7b17ef2d44958dbac17a8e37924273385a2291760b3c72b906c43b235dc9386e76d8aaacc82693276ccba21a236b24f21d95a33d16ff0ea56fa2ea10a9561
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_gl.tar.gz 2649229 BLAKE2B 4eec7b6d1b408f9a6b68d1351e98e762b7a25c3857b6dd39c2994b2951312dc671030214da625c19b3882f5ff5e232de8662d7c6c80587ce6c30b8b2024cbc34 SHA512 7bf24126e330cfed16c129ed939cd1645d36b02b88c8c904a244aa4dbd4679b2a76b995bb917a419c7f9f1e3c0b527fdb3df93aac2140be1d6d2bdb20b8b20ab
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_gu.tar.gz 1223527 BLAKE2B 554b44a99f4fa2f69a72904b30798a77e2f61f2ad9d41958f214fab58bb17a75e57b0fdaeec2b5d04d632381b03b5e6435f95df813b87e4ffc59a7ce9663ffa0 SHA512 6adf0ed820ae5c49a7ab94f99251cab926547562219d2eea05778c018bd8dea229acbc5eb3aae5379076e7f3c64070df0f775036552580972544fc164f504194
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_gug.tar.gz 519894 BLAKE2B 54108075e30bfb6ae903ce1f59fad9c4d23093d8ea52ef5ef080e49b1ac0c805e676b0d059425444d391736f5ef36981be3105d262bd94dbeb126908c780ec4a SHA512 08044ba9477264e39832459a9d2af65117d6d4ced86900ddce1230472c9eb1fb549fcfd13d9d481caef8c60a48db3e485568dc93b64e231b48d025e1a1396f50
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_he.tar.gz 1661611 BLAKE2B 54f62158b975a007fd3accccf6d499ea5206c8c4be768ec28028ec4a473b07a48ece51946011c2fdf51cc425c786dcda4947a53ca5e4322ca1cc4d144466f920 SHA512 143f1943dcc0703752b184070f700d44ef3017eb6053c3d7bd2565eb9917249b26d62088caa367393019fc2ff24645b701676c56314ac4c6e78ed4868ae0f9d8
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_hi.tar.gz 567044 BLAKE2B 62ccdec15820d44d09873c3c35513ad987b0313b3c39e0ef1334711bc8ad5ee056df1cc61d24fd2372a18aaf6ba7dca0e8cf1aaf2e221d94d7edd80a4d2ca941 SHA512 45f6bab73715fda7b3f6f3836511ccbb3a21a90c0fb61d751e60a85241900a1226de5095bc007da422d8b49b98702dfd3e78aa0754221b6ae584aed929483c84
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_hr.tar.gz 1000892 BLAKE2B 4479dfe68909f769ca0d67531341d774fc20c1c2185a87bdc852bfc44caa648b5ba60f7f93b0a7d89f3f2779798ef11d515ab97a282430e5c5183c6c73f29973 SHA512 c8570f004429987f17180b28ea01d9677de22415cc8919996d0d30f860fbc3f97a5abe0b11a886756ca6887aa40287c39c9a778104fa43a3ca825d3e52520915
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_hu.tar.gz 3033757 BLAKE2B 8748de5b3c80fa95815da286a4e65e0b393acb9a5885c25b3f41aaacf579a7c5b6f9a3529dc499ae7ec24adfce9ef68159e48a2e92ea4adf42999e5ffd35f43a SHA512 a6d60d8486fbe1ad04966c4d7d149ce807e2e31861f739704a1f21d2356b99088a5fa74ca4db0eab46af5d5e89c17763a06346238f8e48d1bf108e3f5cfc25ad
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_id.tar.gz 1594025 BLAKE2B 478b65074034393a705cd449346535ef33d838dd9b5b13f27bef49115c31350dbc0d86604406e8b333ab04df20c0e145dde77ee0663c248608d549de27a4d734 SHA512 d75765b0026f5264368c8ca01408f442cc089b57a173d0dd0677733abff2229c7cacdbc737eba16a8613c6224f37cb355a08cf6fd1737b5e3ccf5cae7c5c4368
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_is.tar.gz 1521774 BLAKE2B c19f1a405729f649030d15870ff962aeb177d1783cc255da84e94c9d0459b7c090d962fb446c1ef725783ad7b6aabc67f7a9820a9ed492e5c7636d6c175df795 SHA512 c6747659cd4a25bd7529aabecde22370cd11eba439567f2f436b3d5cdf0ac03ecd03922a41880ed21065a60d4edd53a6d80ad1ef69abf83c491bdcf580669be6
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_it.tar.gz 2100513 BLAKE2B 61fb34fad6864373719aaf65d29828ea6b6fd9545a5387f1744d3810e9574a6fbd572d8aabdfda58b44bd25fb49b1686d3af5dea373ba4540895c3a4e9653be2 SHA512 165b56d1c204cb6b2d087b471ed69996fdcd5322c5210f4a06645ccdf24e899fb988f0bbb1ebaeda6a605f418633697fac798d841bd1e925116d33f997e9abee
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_ja.tar.gz 807442 BLAKE2B 701cfc0ce61c73480209c6c2eb1e569c638d791d6f613220f999f91cac471b1573e9ffcb9f0398b65515ebdf52cb5856fc762da32af578800df36f19dd2e6713 SHA512 80a30178e1211e483ede89c71342a8ca9cc195f562b54cff03d9bb0200dbe6be774c2c939e8cd21960c294831c00698a29f0ff12116eb488674ddc3515017b12
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_ka.tar.gz 358052 BLAKE2B 078098d3263400942cd65ae86a8f3ac79b851bbac8770f22e947a2deaa7007b79c1d6fe992922ccd7adaa60b3950fbda43bd92b38d7098f771249829838a576f SHA512 328b3c4c6427ea7ed0694c96c5125aa4b2caa77d55b38120db2742be9a3125faca9c2010d8422c88d281250775a341749eb03f21e133d3407a2759b7bb011b38
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_kk.tar.gz 776611 BLAKE2B 2d71d5a9653c01584c3a6ca51472b14e7d0be3c1befd1bb2941aa490ca927803c52e701483256857f66346e7fabe5c8a52715640e0922514cd6bc40e0d9395c1 SHA512 e5cec93efdce612e0e1162bceffe895695336f0a8ee7593a70a71c1fe377fef88595705e5d693210482723164bdf249ff4fd9255a5088e2eaaa986c5ef6608dd
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_km.tar.gz 677906 BLAKE2B 82a9366b7d5a5479ad581e549abd35a29306eeed9b15b910c9c5257bb79babd69ae6a5359f6823baebbcc1cc184fe02c6449f4bfde13a732078e3c1942e788b0 SHA512 37164a05ff05afa69fdbb7d342705845b9755e9c255d18caade5cf9f0e298ce7b37eae78a5514a95ba3f170357bdc4bb71e93e60528549b6289d9889b94c534f
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_kmr-Latn.tar.gz 331625 BLAKE2B 4a009db3beeee9b435a9592f05e98be172b0f31db68e41fd6d67f9c0f39a5e195734955b194d4c0581361877bb4fc65568687397757de0dffc7a1e3f208d41bf SHA512 5d1330ff4d4cdbc2653478e42637dfd7f542beeaba52db38d679ed875b7eb9af933a1dedf4c7060e2cf396e7e74c708c74049d6e7f6ee9e3715a0646ba0cb863
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_kn.tar.gz 579374 BLAKE2B 9adeadaf979156f5d897695f66f3585fa7828f97fc406c7d399a07689648c381b551ae540b4c48aa532d269ad28fa93a5d7c55f0ebde483dc12b26142415855b SHA512 b9e17e389272a611e6529afce88e9442c7ac8cfd0ae1dcdaa1db9d4b5f47c035bd40b769699a3ab7808286db45abae0329eb627f11cbc2af73b419199a8929cc
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_ko.tar.gz 805606 BLAKE2B ff863757fe15d64669dba9bc75df1ced8eb304b98b28a632f0d50700f62ae20bce12e0a5c8c8188f7c1d22614577fdcc687c9f0e060db1ddc4f2f93baaa00b29 SHA512 6444a9ce10511f804a6f0ac6bf0b6e4f868920032e68a9b775ff114bec524ff29c86a84a59cb87090a537d19feb81a725349dda88e6e5803c1bbb1b67c12a536
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_kok.tar.gz 409983 BLAKE2B d71a1bd11697d701c2c7e625a60b8c8aa88d5fe8e051049120ad23d8024d6854f6e3f38c5ecb2d9a43650f15f2ff4a890cf35931f5656626d8e1aacd500de9ec SHA512 7c70f83caf32cffee73db827f31d1b6fdb7b3b95a1e5d3051fffa0900bd3769b999512a51a0f9408ac6808faff5ed992f72c0b5de2d1fc00705e243c4ef2b68f
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_ks.tar.gz 328897 BLAKE2B f93e6e2d5aba531ee880b7a7cb0aed9e6d190ad39279edf2c7f1ba2fab33d67dbb9bcd592609db0d4bd33bd8b8de1a7c9e2424ebb36183746ac9318e49706bb4 SHA512 d136f80d77eb9d46ea8850406aa1c5fb7d138210ec98f304e9f14aa5771670cadf2ab15877badedfba9ead9baf638e516303cde49131f1b5428f68595209d4ae
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_lb.tar.gz 142696 BLAKE2B f08647371dee54adf43c1eb8933ac377c7a77f54e1da66f1679f205bf43002a05f69d9ace6d2521f4e2f67417347142acaf519a28bd1f8ba3a9b6c5a176199d7 SHA512 fc36d5620e05bb18b8332ff6acad711b8e5775f207984bb0489cf14f182f8ddf2bc9e59c107929556098b99782a1b009b1173d25ef7e45ad60d11d565a47f42e
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_lo.tar.gz 431817 BLAKE2B 3bb0a6b649a7feeecbac80f85790cd534b425cd99f1aa46c39d4a320cfccdf13088b6f5d5d45bb079709c0e0033151b64b5993751513b5114557735d7a574cda SHA512 6b7b7340a3b5b50d16168428d149a38570573651cc4f14cdfe14ff6b7cce685ebe8dfeda9b75da425bf35cf94c8cf71c109c8f7a4414ed582eaf015f34590f1d
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_lt.tar.gz 1061509 BLAKE2B b3abef7030c0f99f1cb7d9c14cf1321518765657b5dcb2d1b5d5418552ef0525a802110f0e5b5d233ff98aa050da476380671da9662d2aad2195dd26ca4c2bf6 SHA512 232c308b0e4575c9852c77ba7c6dc3d7d455beecb26c86b8bd63aba79de99888e13f424e031324e418b5749382266333e5c95102f5991878c492928702b7d38e
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_lv.tar.gz 1507326 BLAKE2B 5a816918f80954af0ec6a32f433ff2366093e13b87e040eebbf25ede8cdfad05caf39e9ea95485bc85bfd8f5938d1682afb00a438122c7621f115c855302a669 SHA512 6d43cd98a44aee9935fbb614620ec9cd2629c042c782ebe0458c9da8125f268b5ae6af921e0ba445474739550d70debe0e7ba05a38bd1f6fc793e0b34ab13645
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_mai.tar.gz 329569 BLAKE2B 452cc4425d1276deb8c0fd9b65b17474dee6b3e69d2f668527f7109cc5dd7b27a0c903113ca0db6cb2c82122f1aa135c28cfd75c5521c485ad3aacb59fc9719e SHA512 7a2374d68eed73f28eed6c5bde70b782b6cbe997bf233289b774884798c231036632ae6c8fcc3f20dd15b87fdff3e4a22a1efcc1e58a7d8741524a8223533bf3
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_mk.tar.gz 382074 BLAKE2B 1866c9a511f9a4e4f9d319628d3235e1f4dff5ccc71641ea29ce9d8915921a480f315500b408554ea205b3ee48da7b275142199be95934180f55bd4e9da50330 SHA512 64f60c77dd53454b32a90ce87a8f76cb8fdfafe082269e8c4bd22b97a60bab6ed658396f58dc1c8445b9ed875d666ee262cf90314db0a587a362f64fe3d053a2
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_ml.tar.gz 539140 BLAKE2B 3af7a274fd6bbdb8bde433bb2b200e72f961639e1d632ebf30d14bb2e7f6d5485bb9ce04703d3cf1fa6365b07e03eea8f7cffa339133f3b5ee1797d798ac01e1 SHA512 bfc99615f860ad82d2ecf8e5917f93cd3f825ba8bb1f05777389206ddb2a8aa682047c278bf3630625d3206a56f589af276e4700656195101e1695513f69a069
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_mn.tar.gz 505903 BLAKE2B 4267805fc929c724539f6c06058fe68c3fa8f7a4322eda0aed2d3793767dcd4e12403ec2a44c9c3e513fb9b66c9a2bc63a23d332802445c61aa12830b808fedc SHA512 2ec66f72eea3b49021f026d9f44bf701850d855e709301a82bb03cd21d193bad4eb46b43fc37c636643a5c0e0f80a48f10028ca7c0c17ee39fa27e3508b60057
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_mni.tar.gz 401422 BLAKE2B e62f0f644822139c04d05c68409758a4e87dafd663ef0e335ce71b5771092e34b8e5a55d588d2e0b3d4d745c1eea92c60d5a64ba0c86cb0fb70bbf2308fd525e SHA512 996b4b8ee4041dc65f0067eb3409dbf13a31c3fca3b22afdeffe13093a9dcf805d0b67d4e49d64fa4dfbaa3d14564178e00df8e1a2e039f43d5ad65b5e55a0a9
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_mr.tar.gz 574026 BLAKE2B 6355cfa4434dc707585da5cd9752cd46f261e6a89f1808a473aac6b11b90e4c6488248c2308a39770fe2c1cc59c37bc31870a7e9b0e86e764e9b383914504a97 SHA512 f112a451519750424dabe8887b1cf0ee2422a6eda3fb7e393fe0e4beca09bba794bad1add46acb4a1aa5924ef36e3f1a6ca91c874bef376b20d9fe0c2609c02f
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_my.tar.gz 461524 BLAKE2B 1bb059fe56fee3763f5e5ff9586f8fec0d557f0baaf5d79fa3fff26d2216156af111390afd8ba305e3d506683836eb88d55a1037db106a099de437dbccb41508 SHA512 d49c43b0f6c067d4076a1aefb12984747691ce72f3d186d3a4a10b171bb35de63145221bc8b5ae178b7c9d6ef5714a6a17538ecf4491b0827b4ea9e529242437
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_nb.tar.gz 4095839 BLAKE2B 50e40bbd7c43e65d7156150c9bb5a6b9cc8f2d637ce85a42d92f2803c46d6ef42ec3b0d975129c24d0d689c30015fa4d71566085edfe101f0df11fe04381c3b7 SHA512 eaa941e426f054d218c5025c87997e55ec8ef8855d4e31d181c0ac3478b0ec703c481d5d1586675bd4f59a8af4dbbe2058e01cbcf988f6f6f5cd8431c3ed1a3e
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_ne.tar.gz 849450 BLAKE2B 152b7c4ea6f536ae8814e7fceed6eececf3c9121da77d07be2fe81d9c4b446c68b7684b18760c08be562e7f01b129102144b760632b80d4ab80a8ad780f84ec2 SHA512 e3bc79a3f2c7cdc8ace4ce4737179c31724b449a314fc5f2175547d06b050307d9b9fd4efddb89464d59a30ca28d543ffb3db468275713febd721c11305b9340
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_nl.tar.gz 1553110 BLAKE2B 96afb79416191c486b4a228ea824f11c4d3d0ce5232f7d334bf62b933b08f534093f2446d26374d42b425f69e4c8f751aaa37a103bbdaae4ba83fdf8c9d3cf89 SHA512 e32c10f8945d75d904f27f8ff58e2699a92557788f2695477976a6e7968836fc303e8b94e3c92a9cbd16b35d6f69170736225d72224748892048cb7f600d7629
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_nn.tar.gz 4095388 BLAKE2B 17100075dee65be576ced5f50df7ed2b61ec097e484c89b885d17ef73c07dd69bbb4188a1079635633131c9ea3799b8ee3734ddb9ab9af3e75390b0e7ba04491 SHA512 81a459c7318b99338afdde256d3e236c6669f944f39adbfe764943355b388efc251c89380414d17b5c1a84580c36289451943e9804c32325435d52e16930baec
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_nr.tar.gz 276496 BLAKE2B 0c4fcd4f013d7328f25e3e86d9207c9b097237da3749e784d7122a8d8de94698e822cdb3c5ecd76a5867ce37799e6634cb363e3ec4dffa7c16659dce6b373c4f SHA512 a3ffe626f504367a1583d97dce64f645b5ab8c34ee9ff9b81f5fbf43ff6b2f01caae2417b27e5532e75eeef39a2ef4ad5a8d292435076e670bc94714d9fa8771
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_nso.tar.gz 320179 BLAKE2B d9ddd3d98e4cbb1340b8f67e2bbc8b90a0defd5a0fd929b67ea78e3cb569679b7c45a09fb377db2e6c3e886881c65cea3164ad02adefb2435c1ca31164f4d3c3 SHA512 a5ff0e8240a323a9720d214e340a55ddd135faf7663256f0783aeb5123347286ca556b0cfd95ea34d1104cee8fc73c8e3f5b58c17f1534bda49ec3d045c31ecc
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_oc.tar.gz 907327 BLAKE2B 3bc2906a0742c7a6cd11c2368cbba62601973d3f1ed23b752bd05e4aa3a9ffbf8df2ee41dbb7458ac959199a73d1749c5eeea1a49c485a143423e63e652551bc SHA512 fd483644736be991bb26c39e3d1d14d2c95099eda4db6245c465f60143b33ac130f302066abcbef65898111186afeb95c1a11a4782f1dd68cc16505dc2167be9
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_om.tar.gz 368624 BLAKE2B 3dbf305419c82d9d33e2297861bd1af243af16c89936b24be2980263c950673d68845454d89170951b0f378c83a5c2237d8a7a50a738ecc4c11ecdc32da8d798 SHA512 620f67df04c99b3549897ae9ab9156b9d733ff819b403c6fb65dd35ff6c2e1f161c809bbe0a2d688cf619e9422156ec0ec31af7ff3b88286bd72f419c696922a
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_or.tar.gz 597205 BLAKE2B af112ea416947353176d6859bd0f088aca3cf011d0c4f1e442aa8bcb1a8d1870d0a6bafd172be4aa1fe9bb002ab1fb6fabfd1cba48f45ac0bb6ffd5c0edf4cd7 SHA512 f42163e9638d27ab58ebf31910ac64248a541d7c1869388a0a14cac92bf0ced5fef1cdfc1687f142a72a3a198a35b181bb9740feb0b695ea5cec94fb9dea3db5
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_pa-IN.tar.gz 473121 BLAKE2B 0a13eeb20ea19af98d84739673e4f0c8128fd611d03a339dd9f13d57febebc6279d77a6448293ad55601761815affb63469e9c3507e0a6f2a2526957e6f5defc SHA512 3d8cf207f677c9efdfc492c1c299aff51eba9e3f7543da818a1a8d060939d787f574494e92ca1ab170add555e4424607071ab37f6e961041a2332c756150cc00
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_pl.tar.gz 3089343 BLAKE2B 6097f2e3ce0fdb657e205619cb224e8838a8291f8e35b45531584703cf4f4fa302c51eb5b8c3baa4949a174ebed9f8297a31debb6158ceee3eea93eed4064834 SHA512 bedf72889e702e9d342ed083dd3a1c890878047a026f7cf298c52eba90a550e99d1a3cd28f414bec24895a35a58d123cc073ec5920d2e8931e8ac0f2b1455af9
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_pt-BR.tar.gz 2844686 BLAKE2B 99267d9b4b3c3cc7b222a15810603bfaf329151dc17f97141b619ad718925093f5cc169fbcc77dcdf923f39d389d74b5a1aace68a08ceca045006583a5610aad SHA512 f689381164a30c296a9579767cefd8f4114993bc2ab8e2916a921c9196b6050fba9ed799f345a2cebc4831cebf9a5bbe54311e0390df3c18fc04a93d2d664098
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_pt.tar.gz 2400976 BLAKE2B c41c926cc44443267cd1d62dced828110edeb1ff5b85b447ca2ff13f4a450d1475733253e4304dac50ed49237fb8254f776430a55aa8ab1f0fdc9c3303df9c10 SHA512 10f41bf25d3677c37b2ba7c8681cef27b65c5b100bc5449ed130665e261a60d84ece1c98727d0d01f3d36b766375cf8b02fca66e29635ed60f2752296a5c1e8d
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_ro.tar.gz 2524998 BLAKE2B 2c61d4d82466939242ab08c67b82566f181f51a9664b4d6498b50dc0329e6d9af00f69a7e19f6e569f6319b20c26699e1298fc19286ad0b081810a81a7436bb7 SHA512 8c2caeb9b42acf1a854719bd209fb9ed0d0f468897e8661db1a8bd34540c4be0c076a3936f05380f4bdedfdaa2d0be0084f515348f39c35cfdc628db37321fb2
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_ru.tar.gz 1932620 BLAKE2B 8d3a2a90077702b8c1dd54ef2c5b25045ba06fc933f00f0fe49a5e325ea1baa19aab5586224f06f21373ea57ec4cfd689c9610705b6244c4648d166a635c63ee SHA512 0a4c959b6c3e17494f3c3b24d6c721863539b33cf3dd4af47dedcdda9f80a2b1c6e5b748b0cb943325eb36fa1740a115128115554ad236580c41f108ec4d007a
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_rw.tar.gz 344689 BLAKE2B 6aabf437ab1fce5062e0bad7f834d337768b94596488e1c9b78a5f026e84cfbe61b87441fb10c05398303d29c6f97369260f9199e97ae791ab87ddfaefac56e3 SHA512 afb5888464aecf77a653110c5623c8217cd35a9f94b1eace0984f9cdc0ca3b4e98fc78978ba50fd50254c5e5208a35dce6359b5ab77417752cbff4d3d80160f0
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_sa-IN.tar.gz 448672 BLAKE2B 2a479d75e46e664cb75989d03bde805c14ac436a72fec0de5f5369ab66288c66bf00b07320abeb15f92cf84b8fac415965368a771cf9a403de93672dde72c8d5 SHA512 3755d554ff01ae28d0b230332669aaffd8d34e2cfad2d225bc1bf73e00edd6dc5c682100e2620d5cbc77f79877589b92887d151ad5f7e5599ac81475e8f1843e
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_sat.tar.gz 518810 BLAKE2B 7b1e7cda50929d00f891188f6cdb739f411abf7daba75732cd899ca563d5aeca55c3b4f49316b0d36717cbd19e311607aecef29a779ef333502ae0baf35dfbf3 SHA512 54b9ed9a89882099bae8721b884bd6b19a63292a09166566ed726c21c889bb89ed496aa10267f2c8863ad30466578dec9b234b03104486bfaa3c071844e0a974
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_sd.tar.gz 435061 BLAKE2B 4b43695e97415197da04ed1a4dae195f3f670e2edc8480f3e0422501a25c8522a1db42d69d51d92090faa638e1483424b52213c978f0a7466f2b060e3a6f8861 SHA512 d57bafe7eee8161e6545e209129d7e6df1dd1c8a4494ab34e24297ed64c413d4c6c7ef50cce4d7f3ff5efa586f67ee92c28250a0e397715fa1a667d1da205d20
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_si.tar.gz 735660 BLAKE2B f21dca855d57bfcce6534a36ce40a380e6025b8579791ea98840b9754f3436194a53a682ddbbd5c51a0e8f2a93ec21980c9c375c26e3ee250261f3d48f24c284 SHA512 42b4485cd9c46b740a8d16f25ac59326d35bb2b98a89ec665dd1d5113157907de4e5b3bf1a96f18f1cfb614d0c10a933410d0ef0a6088a0da48a0efce2ac4cdd
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_sid.tar.gz 448161 BLAKE2B 03559981234be45e09e042d4505dffed60ca17a376da93b673bcaf076a0eac1ff2f330bfff02ddbb9153f4245c597115001c750690ca9bd637bd2ed5c96124d1 SHA512 67877a7c250eb2f179baf37bb0a8f509c5ab7d0d704ed9b36ebcc1b24747b045f5869e933fc3066c180fb77d32ebfb96bbfc363be387bf6718d7f41cb14454d4
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_sk.tar.gz 2043513 BLAKE2B de37940f5d2b75eb8f020df35b45177ffc4ef733b76ca42875c153a8cf31b2e5578144f2647d6cd862c3999798c97091ada140f674f906e6597800724e921edb SHA512 80d1bcf4fc0096ce7e702b3062c07a20de6b7a9799cecb5173392d2705c5c64c3899818bbcf1cdff4982ca52303a2f61d5f23f0412f425e64957b098e83e4297
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_sl.tar.gz 2475059 BLAKE2B 4b057d3437e65b04f73b0fb45a750bd0eec470fbc30578542edd6a116b9223c2312805a0593d2011c42fe5eb8c2ee5d3ced8f4b1efbadac0a7914c624cda0768 SHA512 94967e80c637db763f7093f7621b3db62e82d2cbe0546932720451e6693ed4342dfa56e4bbbda0fe8b7c91b82086df1590f0d6cb9d8b911294fb74c303a15589
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_sq.tar.gz 1167047 BLAKE2B db63278cae45fe860aaf8d9d95ebb8624facaecc2df4bc104185d4a90bffb30288034af3ee77f7e24c2e711e3a2ef75fc41cd24ea79ebe6904961c7dfbc99f33 SHA512 1d52f621746c01076dc32269db63f0df0dc6418eb13f4d0e225bae548d2370b0c26382c6e69012d88511bafa8a537cbd5e755469d82100b9ded936ec76bc9b9a
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_sr-Latn.tar.gz 2409115 BLAKE2B bc0374397e46f7b575cd99738098619d225859b74592401f264b6faea03d3065ca0b8269c9fc0c9a127260f06c3abee00811098f83441e144685c0d7970f9cfe SHA512 c1f204d37ae295ed079feafdd5c8cd6b563830acf69daa42d8bdc8c776dffd1ed9a3f0eb82c4f44969717cd3d3c6afde485b0a41228df1e202320b3379013dff
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_sr.tar.gz 2428174 BLAKE2B a2921fcba98220d25c6544715070be6d166653ab85d0641c5775af37359e142ca2e9eaf352e99269b69b43700d218c95aee260c0d0bc57d6f97af26cc49cb352 SHA512 93615f84cbf7ca81eb80c97b202c120acfaef1ca482f8bd1ca292b58db8ece6dcbd82084caeec86a1049a637916275d501f04ec76ae1a0f548df08c3fdd62543
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_ss.tar.gz 284559 BLAKE2B 324710dc0e1107488a35cf7ab286968f390f7ab687e80f21e0b69a65ccc76d140e42bba662a283e398204221cdb42dfc2cbf1a593faedfa39ab6cb4923b8ca97 SHA512 56beb98b38a234f12c4ad81db2d59bdad69b3a6d32b5caa6a9ad347fb641f264d7f6b6180ba4f2bebcf60c20df94b29b74e2b716f4db788c8a6787e664b915f3
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_st.tar.gz 278980 BLAKE2B 276a7838abec9dcf7b350c841f28f41710ba8658426a4ac558f06805ec1caba771a6364ea6cb50d7d8e2ca8412102cd9daab3473ec2430ae2ad7daef0c3fa3a1 SHA512 4971d78c3c4f29f0f6702be804a23a8bdccc0a5bff24976289b8386c37c45a8dfa9903c2359e6bce84a9b0233bb4ca159bc20670f441504eae26c506e9bf7d93
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_sv.tar.gz 2609715 BLAKE2B 109c2c3e8aefe2fdc6c2066ecb76764051ffaa46fd806c579b5bc5c02e57d0935abbadac645182c764fa829864e6867a7afa7c9b95fd18466c8a17f00e30c25c SHA512 2527a79aee47d77b28a43d925c398b372182eba13dfe9496adf16804161492422b8d08e6d7ceadebe5d6be32b2914e3a9c173b440601083dcd6ee7ccfa49e7c3
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_sw-TZ.tar.gz 317532 BLAKE2B e1c0a55636578589d94ab1c1f5f486f9eb769231a80a4424b1e7c5d8330fce601a70f560d2ae113b91c7fac1069c1fdd7e4303166ff646b061e93b1e772a48c1 SHA512 94f333419a030c8fe88b124a3fca5343a9160bb51f09f2f80f35fa4e68ae0ab0a4c46f22eb9da765aba4737d2da003cd0989c9d45d1d632435cda566eb785196
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_ta.tar.gz 680531 BLAKE2B a6d7c984c7db4b83317fbe7289868dd302ca2124fbd3b23400ef7481bfc5b1cf16f82901f494364de5c63f69af9190c5b2f3a6cbfc2c33eec398497f1f7e4b6a SHA512 dc45335258c2ffa9829c3c320fb81bd81133b85ce63680b659748fe272f5844203fa08644748ffc3f5590add97aa66a4ad16ba3b870d63ef6d7fa1eee6b9a545
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_te.tar.gz 1083899 BLAKE2B 6d62c5327b2695c5df389f994b197cbb75ecf7ad2c1cabdad40f49d7dbd07cf68ee91ce4e6f9d1f0bdd603241c77114ee052984f8d2b0d998874abb7a26b0972 SHA512 6a5476b714c45d3cad40fcbfa77d3e58ba74a915c4b83de767dff48035f9de5567a9085fcfc311364edc3c683188dc3c4a4df5191ba53d18e2a44b963f9e64c3
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_tg.tar.gz 357081 BLAKE2B 88fe096c9a73330a6055807ccb86c21789ebbbe97550aa5cd977bc49f9ee79e97654bf7191cd3a3cc6a11769a965b15996a1bc3bbae9d8eb66e8676b61ad38fb SHA512 3af7ee4ac0f4d21ed3b71226166a7c50cc9d34849fa0d41da619a85363d1195847a4156635c84415535129a0403b68c8ea860e25edde96a0bfd514a278c1a212
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_th.tar.gz 718478 BLAKE2B 96e6d6d62166f6271002c6c67a122db5a830d736e8fc890552d44771382022e9e6aea0056d22c9173ee99d0ce9003a17c1597916e92104105dfd9e983ac64e77 SHA512 56e33e320957e674c251acb4580f6132c445f91d045a6d868e6a94f1944e491dc3e5b8eb84d7b0ca25993505d8a1bed7ab692bc419479469340ab8a5766a009b
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_tn.tar.gz 258890 BLAKE2B 4b13d68c6a8fd6d866b8d5bb318b6d8ae53238188630fe3307f160c0b01b12ee53275e6c53c269c06493a23c640c752eed0afd2df662cece5782c7aab27d4cd5 SHA512 6e3f8bf781009a82617af9a3bdb50512f9a7b4ac73ff8a1830874f13feeca9c6c87783bdea2791503c793fbc556f88d82d2e18209b0d67a49f45fc7afe69b2d4
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_tr.tar.gz 776209 BLAKE2B fddd4879a093b1c172451b3cd93dacde07ae2a00bbd748b869bded96d0b8e8e9fc2d33801d80eb5411a3c79c6667948d4edfa551830fe30cfd6d282bc1c69e91 SHA512 8643b98a7f1ee174ecbdbe83d8c36f49f31f871bd1d93ba888c3d424c11fe8884a7f1086d52e056dc007b41ef31032796108ffeeb1d0557b66a6ad2efa6b8144
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_ts.tar.gz 276115 BLAKE2B 01c0f0eb3516bd46b6dc8ee96aede246ad1c9e59c640aed05058e0609c2e7eb93886baa07300f9ce45ecf9324252f21f286d2a31f5dfd503989d02dc07235c82 SHA512 080d375e885bc9e18ad0cc4cb67e46733af0caee905059e27fff01780a4f64aa5b757bff09bdfb218b8f3f2ad268d4ad9b358d080eed91ec3b6184c2cdb8e8ea
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_tt.tar.gz 183024 BLAKE2B a16988f743c97926065ee00d944c3a9b77a58329489d8f77bbbae29195be3a6bd0f4a7232568961bd92e2d2bc10ca0da28770318852e0e74cff4a05d5a0b38d9 SHA512 01899f0b69b80ac4da95180b9829c40a7016bfcd65557d68d37b9727aef0654a3caa799633329421848c9c16b9d29e07735600d36d0b0e0cc4ca14a578b66b07
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_ug.tar.gz 544584 BLAKE2B 071692fb2410bdb7c790dfbe73501360bf22e8bda9eba4150eecadfe566a5a075067400d4a2bd935a127dd01a33d42608fc04d4e353c43c3631a9127adaf38c2 SHA512 422637e285b344ed3e9c12ef3ac0ecddaae87520bf9bca8d32c18ef93fa5418da77e119ba3662af623b0435f8ede91092b7778ae1f6dcb6a5425b5047ed47913
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_uk.tar.gz 1653867 BLAKE2B ac6d15e1f1a7cccf214974cde389aef4300ca1a1041ad3b291fb3a925e67fefa3235193fffbf1003c7b0021150a86edfae28916e48bedc3dabb67eeadcd88f27 SHA512 10aa3e93b2181d758365d982db3d56aa15d382afbb6521449475180e817e5863cfd42f5f4d45ded8a056a265f49ca6e125e402f4988854ca40f56ae4a563d4cd
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_uz.tar.gz 313125 BLAKE2B 00834a27f00910b58bfb9d6ef348f9a7046b6df1b6c81f20902ea7405341b43996e3adba1b5437e8c7a9bc5d1fb051e4480adefb307a949306f87f17e25b5d5c SHA512 07adc460b15a006d7744ab7b99f8bad2a720338bfd3e6cd68088901f580eba89179095729c7d4faf5491212d2d6627400c82554e7112e5a5c29bf788ec23b7cc
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_ve.tar.gz 280602 BLAKE2B 82fd04d616627475af95ac48820ffcfbe3121568dda9d424f34aa8b2b90c50ddc2c8b23ef6db2511164a0c323253e3c03e18b6f4a54eb32dadfdc473cb939670 SHA512 484ba594db0e9d611cb020ebe4f140230f3bc00368be211da173901abfe774ac90e51483fbd3edc557c040e4801012f318fa360cd220c9fd727466174af22618
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_vi.tar.gz 462726 BLAKE2B f08051badc26ed7e73e260fbd77c07b400516461b053e716e8fbe42297af4732587b26a623277af90cc4a425a8fcb5db7dfea45f4ed6950387f6be5661027af7 SHA512 7c36bf41d1e349736b367f19b1d62c07940f3ae3a9ed3e843de99523527f020b702f7f0cc0c165e550936850ca9b4f5d21a30a19c59389a0808bf8de1016d10b
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_xh.tar.gz 288729 BLAKE2B e121c4540ca52ee607a18ec554e9077a35c4c9b9c5f611cf49a44863d66f81d15bcbbd2d080179e2da17562027f13a18a4e391d2d07a1fb5ba3169c68f5e255c SHA512 fc41d2e72ea27cf08d359269848604e03c454417b4797a98dd44e0ddaeafd427998578f6581ec9ff8faaf2a1723a16663273136a28ced6ee8da1cc122668a771
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_zh-CN.tar.gz 836794 BLAKE2B 561f7dbd4e9df8edd2675d4406ce5896f0b5ec20d79d8ee5cd0f39f429b54e1044aa01690169eb8e772235635c12a35a432a9c7f518a533d7270afb9cf8c4a9d SHA512 5193dfe554eef4b35b6dc6c4de2ac5b46a814a15dfdb07548ca11af20a3a55780819d0229e36a49b289809d0fe66ff40cd1b6dbe40668eb7394a656431ec371c
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_zh-TW.tar.gz 813840 BLAKE2B 745e1fa9b0656dbb653d698ee89f47bfeca7de4906f2c00fd9244c48294e5f4df53a218f4adcea506878edf85d1d7c75ba09c8411f669f72688eee7f3cb4daa6 SHA512 ac90af321b989a5ea247a0db8b3071c4ebf0aedbfb23f78cd6e141e50931eafb9bbb44f70b26256569ddc447806ee6dcc784e4d70256218dda4cce8812975e99
DIST LibreOffice_6.3.4.2_Linux_x86-64_rpm_langpack_zu.tar.gz 319374 BLAKE2B 7654828ce36bd19e7aad8a86d58d582cd51a4bf367704744bc835a85df818d67e54ff5e92fa09c5a15b734d7aa8bf0df1d54d7237887f1495a0f33adc8975905 SHA512 b8d408ac7d3556fca53a03fd681b507e62bdcb4035f668474dc1d685390f2fed5758144b62aae526aaff2912c53d83b0e07385af48b0c941826bea052e92540f
DIST LibreOffice_6.4.3.2_Linux_x86-64_rpm_helppack_am.tar.gz 3552486 BLAKE2B 5758f1ae9c9fdf5c84db5fca97de4eb50e8d49478ba8d7649eb6af0846d6f70ea2bb03f594efdb3c8ba75792b74ecacdeaee9805c299ec1452e03c6acdb38257 SHA512 982c5b70bd909998f8767bc3c3ec3873107173163af879e022439d77c13ceefcfc1b09b025e7a2c1f51123350da7ebbbacd788a04a251b8019763d994e7f5b30
DIST LibreOffice_6.4.3.2_Linux_x86-64_rpm_helppack_ast.tar.gz 3294394 BLAKE2B 23cc9fa6369dc870dee073711a7bc56f8ae9286cd540b94829cbbaa728800f948bdcfc9adbadb163d6921198d95928741e30eacfb359d28928fb8cdf144c591a SHA512 fde6bb8b71f0d97743a0d265a5883cfd1b7213a08407d76e358418696ee9ebd8ebd6cce0855d884a9317e1403c7af531bfc7472752631f8e9ae8ed955a45ab4c
DIST LibreOffice_6.4.3.2_Linux_x86-64_rpm_helppack_bg.tar.gz 3580157 BLAKE2B 6194ae07b5fee1aa0eb98eaa315c998d84ae5baa379c038ba59211fd54ba85696729014d5cc6a690d7c4b697d5e491a75bd0fd6d317c28028b558b2896315d62 SHA512 edee85d90f8c9e93e41b7df6829b528259b2df5d31c988e3b2d28cde15f190ab6a55837ba5a773c9bb16b884c5d437ae767d6c788ca7bbea214dd64154ea41ac

@ -1,91 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit rpm
BASE_PV=$(ver_cut 1-3)
MY_PV="${PV/_alpha/.alpha}"
MY_PV="${MY_PV/_beta/.beta}"
[[ ${PV} == *alpha* || ${PV} == *beta* ]] && PN_DEV="Dev"
DESCRIPTION="Translations for the Libreoffice suite"
HOMEPAGE="https://www.libreoffice.org"
BASE_SRC_URI_TESTING="https://download.documentfoundation.org/${PN/-l10n/}/testing/${BASE_PV}/rpm"
BASE_SRC_URI_STABLE="https://download.documentfoundation.org/${PN/-l10n/}/stable/${BASE_PV}/rpm"
LICENSE="|| ( LGPL-3 MPL-1.1 )"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="offlinehelp"
#
# when changing the language lists, please be careful to preserve the spaces (bug 491728)
#
# "en:en-US" for mapping from Gentoo "en" to upstream "en-US" etc.
LANGUAGES_HELP=" am ast bg bn-IN bn bo bs ca-valencia ca cs da de dz el en-GB en:en-US en-ZA eo es et eu fi fr gl gu he hi hr hu id is it ja ka km ko mk nb ne nl nn om pl pt-BR pt ru si sk sl sq sv tg tr ug uk vi zh-CN zh-TW "
LANGUAGES="${LANGUAGES_HELP}af ar as be br brx cy dgo fa ga gd gug kk kmr-Latn kn kok ks lb lo lt lv mai ml mn mni mr my nr nso oc or pa:pa-IN ro rw sa:sa-IN sat sd sid sr-Latn sr ss st sw-TZ ta te th tn ts tt uz ve xh zu "
for lang in ${LANGUAGES_HELP}; do
helppack="offlinehelp? ( ${BASE_SRC_URI_STABLE}/x86_64/LibreOffice${PN_DEV}_${BASE_PV}_Linux_x86-64_rpm_helppack_${lang#*:}.tar.gz -> LibreOffice_${MY_PV}_Linux_x86-64_rpm_helppack_${lang#*:}.tar.gz ${BASE_SRC_URI_TESTING}/x86_64/LibreOffice${PN_DEV}_${MY_PV}_Linux_x86-64_rpm_helppack_${lang#*:}.tar.gz -> LibreOffice_${MY_PV}_Linux_x86-64_rpm_helppack_${lang#*:}.tar.gz )"
SRC_URI+=" l10n_${lang%:*}? ( ${helppack} )"
done
for lang in ${LANGUAGES}; do
if [[ ${lang%:*} != en ]]; then
langpack="${BASE_SRC_URI_STABLE}/x86_64/LibreOffice${PN_DEV}_${BASE_PV}_Linux_x86-64_rpm_langpack_${lang#*:}.tar.gz -> LibreOffice_${MY_PV}_Linux_x86-64_rpm_langpack_${lang#*:}.tar.gz ${BASE_SRC_URI_TESTING}/x86_64/LibreOffice${PN_DEV}_${MY_PV}_Linux_x86-64_rpm_langpack_${lang#*:}.tar.gz -> LibreOffice_${MY_PV}_Linux_x86-64_rpm_langpack_${lang#*:}.tar.gz"
SRC_URI+=" l10n_${lang%:*}? ( ${langpack} )"
fi
IUSE+=" l10n_${lang%:*}"
done
unset lang helppack langpack
RDEPEND+="app-text/hunspell"
RESTRICT="strip"
S="${WORKDIR}"
src_prepare() {
default
local lang dir rpmdir
# First remove dictionaries, we want to use system ones.
find "${S}" -name *dict*.rpm -delete || die "Failed to remove dictionaries"
for lang in ${LANGUAGES}; do
# break away if not enabled
use l10n_${lang%:*} || continue
dir=${lang#*:}
# for english we provide just helppack, as translation is always there
if [[ ${lang%:*} != en ]]; then
rpmdir="LibreOffice_${MY_PV}_Linux_x86-64_rpm_langpack_${dir}/RPMS/"
[[ -d ${rpmdir} ]] || die "Missing directory: ${rpmdir}"
rpm_unpack ./${rpmdir}/*.rpm
fi
if [[ "${LANGUAGES_HELP}" =~ " ${lang} " ]] && use offlinehelp; then
rpmdir="LibreOffice_${MY_PV}_Linux_x86-64_rpm_helppack_${dir}/RPMS/"
[[ -d ${rpmdir} ]] || die "Missing directory: ${rpmdir}"
rpm_unpack ./${rpmdir}/*.rpm
fi
done
}
src_configure() { :; }
src_compile() { :; }
src_install() {
local dir="${S}"/opt/${PN/-l10n/}$(ver_cut 1-2)/
# Condition required for people who do not install anything e.g. no l10n
# or just english with no offlinehelp.
if [[ -d "${dir}" ]] ; then
insinto /usr/$(get_libdir)/${PN/-l10n/}/
doins -r "${dir}"/*
fi
# remove extensions that are in l10n for some weird reason
rm -rf "${ED}"/usr/$(get_libdir)/${PN/-l10n/}/share/extensions/ || \
die "Failed to remove extensions"
}

@ -17,7 +17,7 @@ BASE_SRC_URI_STABLE="https://download.documentfoundation.org/${PN/-l10n/}/stable
LICENSE="|| ( LGPL-3 MPL-1.1 )"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="offlinehelp"
#

@ -5,11 +5,9 @@ DIST 798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip 1521926 BLAKE2B d2769842c18
DIST QR-Code-generator-1.4.0.tar.gz 146339 BLAKE2B b2cb329877426861e0245747ac1e8f1275ca7428b3c6768af60dec5c9bb46e93a3fee81fc77257e151604b5f6748c9f29582e9fccc2a4088747c95fe5f673124 SHA512 314a757bfdf9a38bcf07fd7a0103d28a2d1dd7311b8234761304efeef7bfdb740db78ab01e6b67e99a28d523cc2be9c1073b2de9d65e853d191c3dad19af56d0
DIST a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip 23150 BLAKE2B 51db6bd90585b13857ecb494c805c9fb6874e1e65d7aee73d23e1716670836a14b376bcca810f96fd55b0ed653b2660a268030f246c822cbb04f867ef763a3b3 SHA512 2d3835f7ac356805025cafedcad97faa48d0f5da386e6ac7b7451030059df8e2fdb0861ade07a576ebf9fb5b88a973585ab0437944b06aac9289d6898ba8586a
DIST dtoa-20180411.tgz 48893 BLAKE2B 4a03dc67e44353ae1c0653c8305d2df9bcfef16b48dff6df5c857a6bd0510a92aa6d9b9660ad63b2344d5195fef072e526f8d7900791b15442923b63196dda3f SHA512 722aa814c33a34bfffe6c0201b0035cc3b65854a0ba9ae2f51620a89d68019353e2c306651b35bca337186b22b2e9865ef3c5e3df8e9328006f882e4577f8c85
DIST libreoffice-6.3.4.2.tar.xz 225632492 BLAKE2B 587fe7e6298ded60fa08963f572733eb8e387c00b428201bb6f1de7eddcf9d9ee97438231ed3f961bd22628bde0fd9dfeacb63febdc566cde781bcebb9c9a71d SHA512 2ed687ae805da36635419729066a2924f1e38a6b0f8d2692c42b366450a261012adfcd8a5d7915d9cfd292d07519fc32c596cdb56d7be6b12a49618b18d6f3d2
DIST libreoffice-6.4.3.2.tar.xz 230409812 BLAKE2B f9cdad1540c45525bd70596dc3033e3466fcdf3d96547222b936141e49ff6d45581ca59d0e42c4bb79fcb63586d748ccafae712369e024105235e2a9b69be7ce SHA512 ee11c704fa7184ffe371aa36c835c4c7fb06ef03d08fa0a5a9e647e80610db275e091d1ac79c1fe11af0c7f14dd72c821da9e7e6ba59573fc88cec79f84c873a
DIST libreoffice-6.4.4.2.tar.xz 231325236 BLAKE2B 25e1c765cb0ff9c195ca46a9fe857eef22ab6319da6b069e2c5c093a8f13eac2e1c5efa31fbacd4e3acbdc07e75745ff5c62c180cb61141319422720405a4638 SHA512 8e2b6a2d34fbc182ce4ec0b6d6bfb30665ff5cee0a27a22551c71d4eddf63b812d676ea8dea9a2e4bb028a2365b5e23908679efbe4696032e1abeedecb85b8d3
DIST libreoffice-branding-gentoo-0.8.tar.xz 151568 BLAKE2B f03c7ddeb53c5ca3fd23401679601fcf2c4037ba17be4eb7b784c7ce7ebb71a24b8ab4aac8b7da8c6b1f14dd23bc1294ba85ff4f70ad271fb4ee3c5372e10883 SHA512 785031a699b1d1895ce4b50ffc3ddf645f3a0ef9acdf37facfd18cf75db9484cb8f53a50abb63d6006ead76a80b6ff5aa99661063245ebb84bd64013d713de7f
DIST libreoffice-help-6.3.4.2.tar.xz 13191636 BLAKE2B c1696efa0ec9fef9dbcc0c0388de8a384484af1453d200e08820ba910cdcb65638b189566a19868281fd1777213812fde06adb07c1a662302eea1d0a791ff5a0 SHA512 8c74c82c7d73adb1523300d1f7500769f5a623fdba60b440a63c122cbfeb631a6a34ecbcb115b0154a6957be1918306f7d0c1f465030f8e8cfd5c9a1acad17c9
DIST libreoffice-help-6.4.3.2.tar.xz 88297704 BLAKE2B bbd1af159c8b8db1909335f37095812ec3ce81d73644a30a85f3e37daeabeb9a158451b8e586f24d4b7544c8cd0948eeb20ede464384c3277d196f33322e63fb SHA512 9f8c1bcde27d153389d124af1393d0939262c85a1624f0b475a5515b5737612cb607d04742a069534771eee51ba98896926804ec7001d6bc2110dccdd6e7615a
DIST libreoffice-help-6.4.4.2.tar.xz 88296340 BLAKE2B 73ef558b830e0e2899eb72727e0eb81327807ff2d474c8d956700a09bcadc73cbff26688063f91d3a496afa55ab9a7d4847d84334b89fe4fafe17fb445fbb33d SHA512 7084428e63a458c4e35c135b16dd980fa98695be0ba974cac656a7ef6cb15b059a082891c3f74b72a62f92549afefe46c14ab30b5491fd9e3fea6d5923720b3d
DIST skia-m83-8ce842d38d0b32149e874d6855c91e8c68ba65a7.tar.xz 8218672 BLAKE2B cfeb805d82ce1f5dd70c7365983fa8107d5ccda9409b2654c032115cdf8a1c32fa0451162b0cceec3dcc0054e3d0d0e13583ea93843b0d0a6eb948cc31c15ce0 SHA512 1018fc1cc8a7edc15745cc20791f9a22e5b318018ba619d6cb5b6995d3e81ab93c910bb3a42734872d3be54893c2ce7db507b2c61088660b2ce6630ff9b36ebb

@ -1,45 +0,0 @@
From 5917ba8bc645a2b105ec089101b8a664481b5b61 Mon Sep 17 00:00:00 2001
From: Peter Levine <plevine457@gmail.com>
Date: Thu, 17 Oct 2019 23:08:57 -0400
Subject: Fix building against MySQL Connector/C 8
In MySQL Connector/C 8, my_bool is replaced by bool. It was
previously defined as char. When building against
MySQL Connector/C 8, this leads to type punning build errors.
Redefine affected members of struct BindMetaData as bool if using
version 8 of greater. Otherwise, default to char.
Change-Id: If12b975d95afae86502867cb334cb4195802f91d
Reviewed-on: https://gerrit.libreoffice.org/81002
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
---
.../source/drivers/mysqlc/mysqlc_preparedstatement.hxx | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.hxx b/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.hxx
index 1df2c70..3450473 100644
--- a/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.hxx
+++ b/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.hxx
@@ -39,11 +39,17 @@ using ::com::sun::star::uno::Reference;
using ::com::sun::star::uno::RuntimeException;
using ::com::sun::star::uno::Type;
+#if defined MYSQL_VERSION_ID && (MYSQL_VERSION_ID >= 80000) && !defined MARIADB_BASE_VERSION
+using my_bool = bool;
+#else
+using my_bool = char;
+#endif
+
struct BindMetaData
{
- char is_null = 0;
+ my_bool is_null = 0;
unsigned long length = 0;
- char error = 0;
+ my_bool error = 0;
};
typedef ::cppu::ImplHelper5<css::sdbc::XPreparedStatement, css::sdbc::XParameters,
--
cgit v1.1

@ -1,72 +0,0 @@
From 9065cd8d9a19864f6b618f2dc10daf577badd9ee Mon Sep 17 00:00:00 2001
From: Martin Milata <martin@martinmilata.cz>
Date: Wed, 4 Dec 2019 02:37:40 +0100
Subject: Fix build with poppler-0.83
Change-Id: I7a3684932b8f9c403a3368b42fa4d8039c67f1a9
Reviewed-on: https://gerrit.libreoffice.org/84384
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@cib.de>
---
sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx | 7 +++++++
sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx | 4 ++++
sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx | 4 ++++
3 files changed, 15 insertions(+)
diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx
index 26048177e87d..e9c2a407c279 100644
--- a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx
+++ b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx
@@ -491,11 +491,18 @@ void PDFOutDev::writeFontFile( GfxFont* gfxFont ) const
gfree(pBuf);
}
+#if POPPLER_CHECK_VERSION(0, 83, 0)
+void PDFOutDev::printPath( const GfxPath* pPath )
+#else
void PDFOutDev::printPath( GfxPath* pPath )
+#endif
{
int nSubPaths = pPath ? pPath->getNumSubpaths() : 0;
for( int i=0; i<nSubPaths; i++ )
{
+#if POPPLER_CHECK_VERSION(0, 83, 0)
+ const
+#endif
GfxSubpath* pSub = pPath->getSubpath( i );
const int nPoints = pSub->getNumPoints();
diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx
index 02f6b59f6f15..2e7d2186f9a1 100644
--- a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx
+++ b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx
@@ -149,7 +149,11 @@ namespace pdfi
int parseFont( long long nNewId, GfxFont* pFont, GfxState* state ) const;
void writeFontFile( GfxFont* gfxFont ) const;
+#if POPPLER_CHECK_VERSION(0, 83, 0)
+ static void printPath( const GfxPath* pPath );
+#else
static void printPath( GfxPath* pPath );
+#endif
public:
explicit PDFOutDev( PDFDoc* pDoc );
diff --git a/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx b/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx
index 42178b650cdd..b1a54bd09c5f 100644
--- a/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx
+++ b/sdext/source/pdfimport/xpdfwrapper/wrapper_gpl.cxx
@@ -68,7 +68,11 @@ int main(int argc, char **argv)
}
// read config file
+#if POPPLER_CHECK_VERSION(0, 83, 0)
+ globalParams = std::make_unique<GlobalParams>();
+#else
globalParams = new GlobalParams();
+#endif
globalParams->setErrQuiet(true);
#if defined(_MSC_VER)
globalParams->setupBaseFonts(nullptr);
--
cgit v1.2.1

@ -1,559 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8} )
PYTHON_REQ_USE="threads(+),xml"
MY_PV="${PV/_alpha/.alpha}"
MY_PV="${MY_PV/_beta/.beta}"
# experimental ; release ; old
# Usually the tarballs are moved a lot so this should make everyone happy.
DEV_URI="
https://dev-builds.libreoffice.org/pre-releases/src
https://download.documentfoundation.org/libreoffice/src/${MY_PV:0:5}/
https://downloadarchive.documentfoundation.org/libreoffice/old/${MY_PV}/src
"
ADDONS_URI="https://dev-www.libreoffice.org/src/"
BRANDING="${PN}-branding-gentoo-0.8.tar.xz"
# PATCHSET="${P}-patchset-01.tar.xz"
[[ ${MY_PV} == *9999* ]] && inherit git-r3
inherit autotools bash-completion-r1 check-reqs flag-o-matic java-pkg-opt-2 multiprocessing python-single-r1 qmake-utils toolchain-funcs xdg-utils
DESCRIPTION="A full office productivity suite"
HOMEPAGE="https://www.libreoffice.org"
SRC_URI="branding? ( https://dev.gentoo.org/~dilfridge/distfiles/${BRANDING} )"
[[ -n ${PATCHSET} ]] && SRC_URI+=" https://dev.gentoo.org/~asturm/distfiles/${PATCHSET}"
# Split modules following git/tarballs; Core MUST be first!
# Help is used for the image generator
# Only release has the tarballs
if [[ ${MY_PV} != *9999* ]]; then
for i in ${DEV_URI}; do
SRC_URI+=" ${i}/${PN}-${MY_PV}.tar.xz"
SRC_URI+=" ${i}/${PN}-help-${MY_PV}.tar.xz"
done
unset i
fi
unset DEV_URI
# Really required addons
# These are bundles that can't be removed for now due to huge patchsets.
# If you want them gone, patches are welcome.
ADDONS_SRC=(
"java? ( ${ADDONS_URI}/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip )"
# no release for 8 years, should we package it?
"libreoffice_extensions_wiki-publisher? ( ${ADDONS_URI}/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip )"
# Does not build with 1.6 rhino at all
"libreoffice_extensions_scripting-javascript? ( ${ADDONS_URI}/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip )"
# requirement of rhino
"libreoffice_extensions_scripting-javascript? ( ${ADDONS_URI}/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip )"
# not packageable
"odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll )"
)
SRC_URI+=" ${ADDONS_SRC[*]}"
unset ADDONS_URI
unset ADDONS_SRC
# Extensions that need extra work:
LO_EXTS="nlpsolver scripting-beanshell scripting-javascript wiki-publisher"
IUSE="accessibility bluetooth +branding coinmp +cups dbus debug eds firebird
googledrive gstreamer +gtk gtk2 kde ldap +mariadb odk pdfimport postgres test
$(printf 'libreoffice_extensions_%s ' ${LO_EXTS})"
REQUIRED_USE="${PYTHON_REQUIRED_USE}
bluetooth? ( dbus )
libreoffice_extensions_nlpsolver? ( java )
libreoffice_extensions_scripting-beanshell? ( java )
libreoffice_extensions_scripting-javascript? ( java )
libreoffice_extensions_wiki-publisher? ( java )
"
RESTRICT="!test? ( test )"
LICENSE="|| ( LGPL-3 MPL-1.1 )"
SLOT="0"
[[ ${MY_PV} == *9999* ]] || \
KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux"
BDEPEND="
dev-util/intltool
sys-devel/bison
sys-devel/flex
sys-devel/gettext
virtual/pkgconfig
odk? ( >=app-doc/doxygen-1.8.4 )
"
COMMON_DEPEND="${PYTHON_DEPS}
app-arch/unzip
app-arch/zip
app-crypt/gpgme[cxx]
app-text/hunspell:=
>=app-text/libabw-0.1.0
>=app-text/libebook-0.1
app-text/libepubgen
>=app-text/libetonyek-0.1
app-text/libexttextcat
app-text/liblangtag
>=app-text/libmspub-0.1.0
>=app-text/libmwaw-0.3.1
app-text/libnumbertext
>=app-text/libodfgen-0.1.0
app-text/libqxp
app-text/libstaroffice
app-text/libwpd:0.10[tools]
app-text/libwpg:0.3
>=app-text/libwps-0.4
app-text/mythes
>=dev-cpp/clucene-2.3.3.4-r2
>=dev-cpp/libcmis-0.5.2
dev-db/unixODBC
dev-lang/perl
dev-libs/boost:=[nls]
dev-libs/expat
dev-libs/hyphen
dev-libs/icu:=
dev-libs/libassuan
dev-libs/libgpg-error
=dev-libs/liborcus-0.14*
dev-libs/librevenge
dev-libs/libxml2
dev-libs/libxslt
dev-libs/nspr
dev-libs/nss
>=dev-libs/redland-1.0.16
>=dev-libs/xmlsec-1.2.28[nss]
media-gfx/fontforge
media-gfx/graphite2
media-libs/fontconfig
media-libs/freetype:2
>=media-libs/harfbuzz-0.9.42:=[graphite,icu]
media-libs/lcms:2
>=media-libs/libcdr-0.1.0
>=media-libs/libepoxy-1.3.1[X]
>=media-libs/libfreehand-0.1.0
media-libs/libpagemaker
>=media-libs/libpng-1.4:0=
>=media-libs/libvisio-0.1.0
media-libs/libzmf
net-libs/neon
net-misc/curl
sci-mathematics/lpsolve
sys-libs/zlib
virtual/glu
virtual/jpeg:0
virtual/opengl
x11-libs/cairo[X]
x11-libs/libXinerama
x11-libs/libXrandr
x11-libs/libXrender
accessibility? (
$(python_gen_cond_dep '
dev-python/lxml[${PYTHON_MULTI_USEDEP}]
')
)
bluetooth? (
dev-libs/glib:2
net-wireless/bluez
)
coinmp? ( sci-libs/coinor-mp )
cups? ( net-print/cups )
dbus? ( sys-apps/dbus )
eds? (
dev-libs/glib:2
gnome-base/dconf
gnome-extra/evolution-data-server
)
firebird? ( >=dev-db/firebird-3.0.2.32703.0-r1[server] )
gstreamer? (
media-libs/gstreamer:1.0
media-libs/gst-plugins-base:1.0
)
gtk? (
dev-libs/glib:2
dev-libs/gobject-introspection
gnome-base/dconf
media-libs/mesa[egl]
x11-libs/gtk+:3
x11-libs/pango
)
gtk2? (
x11-libs/gdk-pixbuf
>=x11-libs/gtk+-2.24:2
x11-libs/pango
)
kde? (
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
kde-frameworks/kconfig:5
kde-frameworks/kcoreaddons:5
kde-frameworks/ki18n:5
kde-frameworks/kio:5
kde-frameworks/kwindowsystem:5
)
ldap? ( net-nds/openldap )
libreoffice_extensions_scripting-beanshell? ( dev-java/bsh )
libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 )
mariadb? ( dev-db/mariadb-connector-c )
!mariadb? ( dev-db/mysql-connector-c )
pdfimport? ( app-text/poppler:=[cxx] )
postgres? ( >=dev-db/postgresql-9.0:*[kerberos] )
"
# FIXME: cppunit should be moved to test conditional
# after everything upstream is under gbuild
# as dmake execute tests right away
# tests apparently also need google-carlito-fonts (not packaged)
DEPEND="${COMMON_DEPEND}
>=dev-libs/libatomic_ops-7.2d
dev-perl/Archive-Zip
>=dev-util/cppunit-1.14.0
>=dev-util/gperf-3.1
=dev-util/mdds-1.4*:1=
media-libs/glm
sys-devel/ucpp
x11-base/xorg-proto
x11-libs/libXt
x11-libs/libXtst
java? (
dev-java/ant-core
>=virtual/jdk-1.6
)
test? (
app-crypt/gnupg
dev-util/cppunit
media-fonts/dejavu
media-fonts/liberation-fonts
)
"
RDEPEND="${COMMON_DEPEND}
!app-office/libreoffice-bin
!app-office/libreoffice-bin-debug
!app-office/openoffice
media-fonts/liberation-fonts
|| ( x11-misc/xdg-utils kde-plasma/kde-cli-tools )
java? ( >=virtual/jre-1.6 )
kde? ( kde-frameworks/breeze-icons:* )
"
if [[ ${MY_PV} != *9999* ]] && [[ ${PV} != *_* ]]; then
PDEPEND="=app-office/libreoffice-l10n-$(ver_cut 1-2)*"
else
# Translations are not reliable on live ebuilds
# rather force people to use english only.
PDEPEND="!app-office/libreoffice-l10n"
fi
PATCHES=(
# "${WORKDIR}"/${PATCHSET/.tar.xz/}
# not upstreamable stuff
"${FILESDIR}/${PN}-5.4-system-pyuno.patch"
"${FILESDIR}/${PN}-5.3.4.2-kioclient5.patch"
"${FILESDIR}/${PN}-6.1-nomancompress.patch"
# master branch
"${FILESDIR}/${PN}-6.3.3.2-mysql-connector-c-8.patch" # bug #692422
"${FILESDIR}/${P}-poppler-0.83.patch"
)
S="${WORKDIR}/${PN}-${MY_PV}"
_check_reqs() {
CHECKREQS_MEMORY="512M"
if is-flagq "-g*" && ! is-flagq "-g*0" ; then
CHECKREQS_DISK_BUILD="22G"
else
CHECKREQS_DISK_BUILD="6G"
fi
check-reqs_$1
}
pkg_pretend() {
if ! use java && ! use firebird; then
ewarn "If you plan to use Base application you must enable either firebird or java."
fi
use java || ewarn "Without java, several wizards are not going to be available."
if has_version "<app-office/libreoffice-5.3.0[firebird]"; then
ewarn "Firebird has been upgraded to version 3. It is unable to read back Firebird 2.5 data, so"
ewarn "embedded firebird odb files created in LibreOffice pre-5.3 can't be opened with this version."
ewarn "See also: https://wiki.documentfoundation.org/ReleaseNotes/5.3#Base"
fi
[[ ${MERGE_TYPE} != binary ]] && _check_reqs pkg_pretend
}
pkg_setup() {
java-pkg-opt-2_pkg_setup
python-single-r1_pkg_setup
xdg_environment_reset
[[ ${MERGE_TYPE} != binary ]] && _check_reqs pkg_setup
}
src_unpack() {
default
if [[ ${MY_PV} = *9999* ]]; then
local base_uri branch mypv
base_uri="https://anongit.freedesktop.org/git"
branch="master"
mypv=${MY_PV/.9999}
[[ ${mypv} != ${MY_PV} ]] && branch="${PN}-${mypv/./-}"
git-r3_fetch "${base_uri}/${PN}/core" "refs/heads/${branch}"
git-r3_checkout "${base_uri}/${PN}/core"
LOCOREGIT_VERSION=${EGIT_VERSION}
git-r3_fetch "${base_uri}/${PN}/help" "refs/heads/master"
git-r3_checkout "${base_uri}/${PN}/help" "helpcontent2" # doesn't match on help
fi
}
src_prepare() {
default
# sandbox violations on many systems, we don't need it. Bug #646406
sed -i \
-e "/KF5_CONFIG/s/kf5-config/no/" \
configure.ac || die "Failed to disable kf5-config"
AT_M4DIR="m4" eautoreconf
# hack in the autogen.sh
touch autogen.lastrun
# system pyuno mess
sed -i \
-e "s:%eprefix%:${EPREFIX}:g" \
-e "s:%libdir%:$(get_libdir):g" \
pyuno/source/module/uno.py \
pyuno/source/officehelper.py || die
# sed in the tests
sed -i \
-e "s#all : build unitcheck#all : build#g" \
solenv/gbuild/Module.mk || die
sed -i \
-e "s#check: dev-install subsequentcheck#check: unitcheck slowcheck dev-install subsequentcheck#g" \
-e "s#Makefile.gbuild all slowcheck#Makefile.gbuild all#g" \
Makefile.in || die
sed -i \
-e "s,/usr/share/bash-completion/completions,$(get_bashcompdir)," \
-e "s,\$INSTALLDIRNAME.sh,${PN}," \
bin/distro-install-desktop-integration || die
if use branding; then
# hack...
mv -v "${WORKDIR}/branding-intro.png" "icon-themes/colibre/brand/intro.png" || die
fi
# Don't list pdfimport support in desktop when built with none, bug # 605464
if ! use pdfimport; then
sed -i \
-e ":MimeType: s:application/pdf;::" \
-e ":Keywords: s:pdf;::" \
sysui/desktop/menus/draw.desktop || die
fi
}
src_configure() {
# Set up Google API keys, see https://www.chromium.org/developers/how-tos/api-keys
# Note: these are for Gentoo use ONLY. For your own distribution, please get
# your own set of keys. Feel free to contact chromium@gentoo.org for more info.
local google_default_client_id="329227923882.apps.googleusercontent.com"
local google_default_client_secret="vgKG0NNv7GoDpbtoFNLxCUXu"
# optimization flags
export GMAKE_OPTIONS="${MAKEOPTS}"
# System python enablement:
export PYTHON_CFLAGS=$(python_get_CFLAGS)
export PYTHON_LIBS=$(python_get_LIBS)
if use kde; then
export QT_SELECT=5 # bug 639620 needs proper fix though
export QT5DIR="$(qt5_get_bindir)/../"
export MOC5="$(qt5_get_bindir)/moc"
fi
local gentoo_buildid="Gentoo official package"
if [[ -n ${LOCOREGIT_VERSION} ]]; then
gentoo_buildid+=" (from git: ${LOCOREGIT_VERSION})"
fi
# system headers/libs/...: enforce using system packages
# --disable-breakpad: requires not-yet-in-tree dev-utils/breakpad
# --enable-cairo: ensure that cairo is always required
# --enable-*-link: link to the library rather than just dlopen on runtime
# --enable-release-build: build the libreoffice as release
# --disable-fetch-external: prevent dowloading during compile phase
# --enable-extension-integration: enable any extension integration support
# --without-{fonts,myspell-dicts,ppsd}: prevent install of sys pkgs
# --disable-report-builder: too much java packages pulled in without pkgs
# --without-system-sane: just sane.h header that is used for scan in writer,
# not linked or anything else, worthless to depend on
# --disable-pdfium: not yet packaged
local myeconfargs=(
--with-system-dicts
--with-system-epoxy
--with-system-headers
--with-system-jars
--with-system-libs
--enable-build-opensymbol
--enable-cairo-canvas
--enable-largefile
--enable-mergelibs
--enable-neon
--enable-python=system
--enable-randr
--enable-release-build
--disable-breakpad
--disable-bundle-mariadb
--disable-ccache
--disable-epm
--disable-fetch-external
--disable-gstreamer-0-10
--disable-gtk3-kde5
--disable-online-update
--disable-openssl
--disable-pdfium
--disable-report-builder
--disable-vlc
--with-build-version="${gentoo_buildid}"
--enable-extension-integration
--with-external-dict-dir="${EPREFIX}/usr/share/myspell"
--with-external-hyph-dir="${EPREFIX}/usr/share/myspell"
--with-external-thes-dir="${EPREFIX}/usr/share/myspell"
--with-external-tar="${DISTDIR}"
--with-lang=""
--with-parallelism=$(makeopts_jobs)
--with-system-ucpp
--with-tls=nss
--with-vendor="Gentoo Foundation"
--with-x
--without-fonts
--without-myspell-dicts
--with-help="html"
--without-helppack-integration
--with-system-gpgmepp
--without-system-sane
$(use_enable bluetooth sdremote-bluetooth)
$(use_enable coinmp)
$(use_enable cups)
$(use_enable dbus)
$(use_enable debug)
$(use_enable eds evolution2)
$(use_enable firebird firebird-sdbc)
$(use_enable gstreamer gstreamer-1-0)
$(use_enable gtk gtk3)
$(use_enable gtk2 gtk)
$(use_enable kde kde5)
$(use_enable kde qt5)
$(use_enable ldap)
$(use_enable odk)
$(use_enable pdfimport)
$(use_enable postgres postgresql-sdbc)
$(use_with accessibility lxml)
$(use_with coinmp system-coinmp)
$(use_with googledrive gdrive-client-id ${google_default_client_id})
$(use_with googledrive gdrive-client-secret ${google_default_client_secret})
$(use_with java)
$(use_with odk doxygen)
)
if use eds || use gtk; then
myeconfargs+=( --enable-dconf --enable-gio )
else
myeconfargs+=( --disable-dconf --disable-gio )
fi
# libreoffice extensions handling
for lo_xt in ${LO_EXTS}; do
if [[ "${lo_xt}" == "scripting-beanshell" || "${lo_xt}" == "scripting-javascript" ]]; then
myeconfargs+=( $(use_enable libreoffice_extensions_${lo_xt} ${lo_xt}) )
else
myeconfargs+=( $(use_enable libreoffice_extensions_${lo_xt} ext-${lo_xt}) )
fi
done
if use java; then
# hsqldb: system one is too new
myeconfargs+=(
--without-junit
--without-system-hsqldb
--with-ant-home="${ANT_HOME}"
--with-jdk-home=$(java-config --jdk-home 2>/dev/null)
--with-jvm-path="${EPREFIX}/usr/lib/"
)
use libreoffice_extensions_scripting-beanshell && \
myeconfargs+=( --with-beanshell-jar=$(java-pkg_getjar bsh bsh.jar) )
use libreoffice_extensions_scripting-javascript && \
myeconfargs+=( --with-rhino-jar=$(java-pkg_getjar rhino-1.6 js.jar) )
fi
is-flagq "-flto*" && myeconfargs+=( --enable-lto )
MARIADBCONFIG="$(type -p $(usex mariadb mariadb mysql)_config)" \
econf "${myeconfargs[@]}"
}
src_compile() {
# more and more LO stuff tries to use OpenGL, including tests during build
# bug 501508, bug 540624, bug 545974 and probably more
addpredict /dev/dri
addpredict /dev/ati
addpredict /dev/nvidiactl
local target
use test && target="build" || target="build-nocheck"
# this is not a proper make script
make ${target} || die
}
src_test() {
make unitcheck || die
make slowcheck || die
}
src_install() {
# This is not Makefile so no buildserver
make DESTDIR="${D}" distro-pack-install -o build -o check || die
# bug 593514
if use gtk; then
dosym libreoffice/program/liblibreofficekitgtk.so \
/usr/$(get_libdir)/liblibreofficekitgtk.so
fi
# bash completion aliases
bashcomp_alias \
libreoffice \
unopkg loimpress lobase localc lodraw lomath lowriter lofromtemplate loweb loffice
if use branding; then
insinto /usr/$(get_libdir)/${PN}/program
newins "${WORKDIR}/branding-sofficerc" sofficerc
dodir /etc/env.d
echo "CONFIG_PROTECT=/usr/$(get_libdir)/${PN}/program/sofficerc" > "${ED}"/etc/env.d/99${PN} || die
fi
}
pkg_postinst() {
xdg_icon_cache_update
xdg_desktop_database_update
xdg_mimeinfo_database_update
}
pkg_postrm() {
xdg_icon_cache_update
xdg_desktop_database_update
xdg_mimeinfo_database_update
}

@ -82,7 +82,7 @@ LICENSE="|| ( LGPL-3 MPL-1.1 )"
SLOT="0"
[[ ${MY_PV} == *9999* ]] || \
KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux"
BDEPEND="
dev-util/intltool

@ -13,7 +13,6 @@ version</longdescription>
<use>
<flag name="coinmp">Use sci-libs/coinor-mp as alternative solver</flag>
<flag name="googledrive">Enable support for remote files on Google Drive</flag>
<flag name="gtk2">Enable legacy gtk2 frontend</flag>
<flag name="mariadb">Prefer mariadb connector over mysql connector</flag>
<flag name="odk">Build the Office Development Kit</flag>
<flag name="pdfimport">Enable PDF import via the Poppler library</flag>

@ -1 +0,0 @@
DIST pybliographer-1.4.0.tar.xz 1834356 BLAKE2B ba4892f707c2da3f007cb916b158258a59a41cc631e49deacdd784213d506d8e4286c463afb4148c7cb30ed7084ae1a60eee0e62d1bfe13a26bd9fd70a9e60f8 SHA512 aef50e9815b9ff28618ca72c0b50033a24a1bcaa91c9fdbf3014371bb9b4bcaf8fcdffb0fa38e59d37ccfdb4c1383cd601c73aa2e34f4078c514ae9de7341f2a

@ -1,13 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<!-- maintainer-needed -->
<longdescription lang="en">
Pybliographer is a tool for managing bibliographic databases, with
a Gnome interface for editing, citations in LyX, Kile and OpenOffice.org.
Pybliographer can search in external databases like PubMed, Web of Science, Citeseer.
</longdescription>
<upstream>
<remote-id type="sourceforge">pybliographer</remote-id>
</upstream>
</pkgmetadata>

@ -1,68 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
GNOME2_EAUTORECONF="yes"
PYTHON_COMPAT=( python2_7 )
inherit gnome2 python-single-r1
DESCRIPTION="Pybliographer is a tool for working with bibliographic databases"
HOMEPAGE="https://pybliographer.org"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
>=app-text/recode-3.6-r1
app-text/rarian
dev-libs/glib:2
$(python_gen_cond_dep '
dev-python/gconf-python:2[${PYTHON_MULTI_USEDEP}]
dev-python/pygobject:2[${PYTHON_MULTI_USEDEP}]
>=dev-python/pygtk-2.24.0:2[${PYTHON_MULTI_USEDEP}]
>=dev-python/python-bibtex-1.2.5[${PYTHON_MULTI_USEDEP}]
')
"
DEPEND="${RDEPEND}
app-text/yelp-tools
>=sys-devel/gettext-0.19.8
"
# Tests broken for a long time, they rely on non-standard PATH for python
# modules, bug #678444
RESTRICT="test"
src_prepare() {
# Workaround for bug 487204.
sed -i \
-e 's:\$(srcdir)/::g' \
tests/Makefile.am || die "sed failed"
# Install Python modules into site-packages directories.
find -name Makefile.am | xargs sed -i \
-e "/^pybdir[[:space:]]*=[[:space:]]*/s:\$(datadir):$(python_get_sitedir):" || die "sed failed"
sed -i -e 's:prefix=:cd @datapyb@ \&\& prefix=:' scripts/pybscript.in || die
sed -i -e "s:\@datapyb@:$(python_get_sitedir)/${PN}:g" pybliographer.in scripts/pybscript.in || die
sed -i \
-e "s:gladedir = \$(datadir):gladedir = $(python_get_sitedir):" \
Pyblio/GnomeUI/glade/Makefile.am || die "sed failed"
gnome2_src_prepare
}
src_configure() {
gnome2_src_configure \
--disable-depchecks
}
src_install() {
gnome2_src_install
python_fix_shebang "${D}"
dodir /usr/share/${PN}
mv "${D}/$(python_get_sitedir)/${PN}/pixmaps" "${ED}"/usr/share/${PN} || die
}

@ -1,2 +1,2 @@
DIST wps-office_11.1.0.9080.XA_amd64.deb 204126446 BLAKE2B 8cee00cd674e46a0d88263ef8bd8fb841a3479ea49dbfdfedde7e6f0df4c8a8eb0a1b56da685f3e9d4152baea5128dcdfdae37b0b3337ebdd4d72649d51668b5 SHA512 c910d05478402ac2b9e51f411bb15dc1d5069f02d9a3ded549116f207521ee8c8c5cbe03ba7c86c9a6ef152f174e6284815ac4a4057b4257f0a5c119ed6159cc
DIST wps-office_11.1.0.9126.XA_amd64.deb 205954802 BLAKE2B 7736d28349fcc6f4d0c69b8f13ec96af42b1de4f073bf14d2c05949cc2d9d51389125d1ef83dee8ebe7cdccb44ba6b70b9425e9397d386e02e0fe8779bf7c029 SHA512 7c2d8b3459ac37ced45b25d19b6ff7f8afca2bae7ee026dfc3ef068f5a1e774baff457ddbcc5d8495f8dca1699ddd5ad67b0f3927ac6e4e99503c67a6dab414c
DIST wps-office_11.1.0.9505.XA_amd64.deb 212685550 BLAKE2B 56c38f01837c33e55ea2266a6b55781a911becb3af89baa8089c59ae43a565a46558e677c7d84f91ef51e64dd3024f4729027dd0621ea9b4a10188f4e63a1db5 SHA512 d6d7e4fd85fbf24b08281d68ad3be9280d9b337555e328f75db1e53b9ce1bb47b2265b73e2da00df7b1a9b0a9775152920bd439368307f2373f611de6eaf19a7

@ -70,9 +70,7 @@ S="${WORKDIR}"
src_install() {
exeinto /usr/bin
exeopts -m0755
doexe "${S}"/usr/bin/wps
doexe "${S}"/usr/bin/wpp
doexe "${S}"/usr/bin/et
doexe "${S}"/usr/bin/*
insinto /usr/share
doins -r "${S}"/usr/share/{applications,desktop-directories,icons,mime,templates}
@ -80,5 +78,5 @@ src_install() {
insinto /opt/kingsoft/wps-office
doins -r "${S}"/opt/kingsoft/wps-office/{office6,templates}
fperms 0755 /opt/kingsoft/wps-office/office6/{wps,wpp,et}
fperms 0755 /opt/kingsoft/wps-office/office6/{et,wpp,wps,wpspdf}
}

Binary file not shown.

@ -2,3 +2,4 @@ DIST eix-0.33.11.tar.xz 623256 BLAKE2B 756feed85cb4f40ef9228a03d2a8b8470eb6017b0
DIST eix-0.33.9.tar.xz 627944 BLAKE2B cb4add12301a4f08b6ca052df92be34c8a448b386aa700e8ac7e1fbe8563cd76047994007ac94d8989747d843f70a5e1731b401510f58badd9811b30c2ce3be8 SHA512 7539a91d5b5343532ceab1f4aeb82a95413c39b1a57b9e7922032acc937cc8b839494fc40f3510218349561c6d50e89e1861d2fce5e60eabed2465316b28a756
DIST eix-0.34.1.tar.xz 626484 BLAKE2B 3f33df9d3f45abc073d7b80a7a6b3574ef6c1372042cb1ec4f0b0213842bc48d8d5a76c005ece2c060a39b1c8778764eb1f6808e75bc10af6e366e33e10aa6c7 SHA512 86289d8dcb0cf87ad48c739aae637626f9e63200a48d019fc96e74f2851b2791a61741d5db72ceaf3e5a375fb0dbf9302b04f766c3def69bcaabb393545dc767
DIST eix-0.34.2.tar.xz 626492 BLAKE2B 984411e459b18f0ade77569b1e972a8c59588a31ce6af4b998a5fa27f9d5a2cc75fe647641f0651f17b5e9b4dc5706444dc49bd09e9e070e666beb989403e303 SHA512 422123108c841dd7e02296fa38276e72c61c8cab5e9ebba1fd2cd23d2a4b2c68e1dc530e47428f0bc41e89983196c7b8319ee548789199e4673c04687bbc5aec
DIST eix-0.34.4.tar.xz 628516 BLAKE2B 0c7cb4d7cd13d7715ba35cc0edd38e549fd1d1618bfdcacb272ee8325a844276a6df59a701ab2b4ecc693e5dad2d95c96c000e96eb8bce72709baf22f3fa490f SHA512 a96714fba8324529bf63de63f9eb11cc76da05e3d43c5eedad49079b6e3a1960376bd5d3bc116dba49bc7f694c7588741e518438936abd4b37edfe0a097ecd3d

@ -0,0 +1,102 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools bash-completion-r1 flag-o-matic tmpfiles
DESCRIPTION="Search and query ebuilds"
HOMEPAGE="https://github.com/vaeth/eix/"
SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="debug doc nls sqlite"
BOTHDEPEND="nls? ( virtual/libintl )
sqlite? ( >=dev-db/sqlite-3:= )"
RDEPEND="${BOTHDEPEND}
>=app-shells/push-2.0-r1
>=app-shells/quoter-3.0_p2-r1"
DEPEND="${BOTHDEPEND}
app-arch/xz-utils
nls? ( sys-devel/gettext )"
pkg_setup() {
# remove stale cache file to prevent collisions
local old_cache=${EROOT}/var/cache/${PN}
if [[ -f ${old_cache} ]]; then
rm "${old_cache}" || die
fi
}
src_prepare() {
default
sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die
sed -e "/eixf_source=/s:push.sh:cat \"${EPREFIX}/usr/share/push/push.sh\":" \
-e "/eixf_source=/s:quoter_pipe.sh:cat \"${EPREFIX}/usr/share/quoter/quoter_pipe.sh\":" \
-i src/eix-functions.sh.in || die
sed -e "s:'\$(bindir)/eix-functions.sh':cat \\\\\"${EPREFIX}/usr/share/eix/eix-functions\\\\\":" \
-i src/Makefile.am || die
eautoreconf
}
src_configure() {
local myconf=(
$(use_enable debug paranoic-asserts)
$(use_enable nls)
$(use_with doc extra-doc)
$(use_with sqlite)
--without-protobuf
# default configuration
$(use_with prefix always-accept-keywords)
--with-dep-default
--with-required-use-default
# paths
--with-portage-rootpath="${ROOTPATH}"
--with-eprefix-default="${EPREFIX}"
# build a single executable with symlinks
--disable-separate-binaries
--disable-separate-tools
# used purely to control/disrespect *FLAGS
--disable-debugging
--disable-new_dialect
--disable-optimization
--disable-strong-optimization
--disable-security
--disable-nopie-security
--disable-strong-security
)
econf "${myconf[@]}"
}
src_install() {
default
dobashcomp bash/eix
dotmpfiles tmpfiles.d/eix.conf
rm -r "${ED}"/usr/bin/eix-functions.sh || die
}
pkg_postinst() {
tmpfiles_process eix.conf
local obs=${EROOT}/var/cache/eix.previous
if [[ -f ${obs} ]]; then
ewarn "Found obsolete ${obs}, please remove it"
fi
}
pkg_postrm() {
if [[ ! -n ${REPLACED_BY_VERSION} ]]; then
rm -rf "${EROOT}/var/cache/${PN}" || die
fi
}

@ -15,9 +15,10 @@ python3_2 3.2 dead 3.2
python3_3 3.3 dead 3.3
python3_4 dead 3.4
python3_5 dead 3.5
python3_6 current 3.6
python3_7 supported 3.7
python3_6 old 3.6
python3_7 current 3.7
python3_8 supported 3.8
python3_9 experimental 3.9
pypy1_8 2.7-pypy-1.8 dead p1.8
pypy1_9 2.7-pypy-1.9 dead p1.9

@ -4,7 +4,7 @@
EAPI=7
DISTUTILS_USE_SETUPTOOLS=no
PYTHON_COMPAT=( python{3_6,3_7,3_8} )
PYTHON_COMPAT=( python3_{6..9} )
inherit distutils-r1

@ -4,7 +4,7 @@
EAPI=7
DISTUTILS_USE_SETUPTOOLS=no
PYTHON_COMPAT=( python{3_6,3_7,3_8} )
PYTHON_COMPAT=( python3_{6..9} )
EGIT_REPO_URI="https://github.com/mgorny/gpyutils.git"
inherit distutils-r1 git-r3

@ -14,7 +14,7 @@ SRC_URI="https://github.com/mgorny/nattka/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
RDEPEND="
dev-python/lxml[${PYTHON_USEDEP}]

Binary file not shown.

@ -46,7 +46,7 @@ fi
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline"
DEPEND="

Binary file not shown.

@ -1 +1 @@
DIST blogc-0.18.0.tar.xz 339920 BLAKE2B 03dce446c60c5337e85dedda8516a8417b770f294e019794ba6e3216b93f79896c851d690a37c3e24f218c8f9080f8271256647909b7dfaceaafb8a7d62d52d8 SHA512 db015d00b96af19b9f8cdb3023d073bdce45d41f731beafc0eba7219abb6bf31e435a08644145e56e2d783939542245dfcb6c20bbd27f27348de84ba4ca9e41a
DIST blogc-0.19.0.tar.xz 341284 BLAKE2B 1ea0e7f7fe0e4243f54faa15276ac00d29b88f03568d31d08b9522a118072a54e3251c0ae84660fc21bac11d650dd23286b15343d1782fd4d56a397dcb5cc7a6 SHA512 02e1826642a248aa9c5347481a4d89a0ee2ef08cb0985d58aa712c5a8b998ec6033120092d1cb370d86f425d3986fc993a831c195001c73311460f85ad2d0ef8

@ -1,4 +1,4 @@
# Copyright 1999-2019 Gentoo Authors
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6

@ -1 +0,0 @@
DIST djvusmooth-0.2.18.tar.gz 70548 BLAKE2B 1f4a14038ce4df4318ab8c7dbaac9c65c132ff184dec2a03b6c45e555170a50caad0003f0c766e82c0bf9b0200798763922e5f408d6892cb43663712d7142653 SHA512 786d7e9dc49f9a6923ebfaec7d4e68446e4bd72f7ff7cca9cd3a1513f3b1751485d6879dc59b51ce1d58390dbcf23b8992b42f9f2b5e6938d434d6966b7a4a72

@ -1,22 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Graphical editor for DjVu documents"
HOMEPAGE="http://jwilk.net/software/djvusmooth"
SRC_URI="https://github.com/jwilk/${PN}/releases/download/${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="dev-python/python-djvulibre[${PYTHON_USEDEP}]
dev-python/wxpython:3.0[${PYTHON_USEDEP}]
x11-themes/hicolor-icon-theme"
DOCS=( doc/changelog doc/credits.txt )

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<!-- maintainer-needed -->
<upstream>
<remote-id type="github">jwilk/djvusmooth</remote-id>
</upstream>
</pkgmetadata>

@ -25,7 +25,7 @@ SRC_URI="${SRC_URI} ) "
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc source"
DEPEND=">=dev-libs/kpathsea-6.2.1"

@ -8,7 +8,7 @@ if [[ ${PV} == *9999 ]]; then
inherit autotools git-r3
else
SRC_URI="https://dev-www.libreoffice.org/src/libetonyek/${P}.tar.xz"
KEYWORDS="amd64 ~arm arm64 ~ppc64 ~x86"
KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
fi
DESCRIPTION="Library parsing Apple Keynote presentations"
HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libetonyek"

@ -1,58 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
if [[ ${PV} = 9999 ]]; then
EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libetonyek.git"
inherit autotools git-r3
else
SRC_URI="https://dev-www.libreoffice.org/src/libetonyek/${P}.tar.xz"
KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
fi
DESCRIPTION="Library parsing Apple Keynote presentations"
HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libetonyek"
LICENSE="|| ( GPL-2+ LGPL-2.1 MPL-1.1 )"
SLOT="0"
IUSE="doc static-libs test"
RESTRICT="!test? ( test )"
RDEPEND="
app-text/liblangtag
dev-libs/librevenge
dev-libs/libxml2
=dev-util/mdds-1.4*:1=
sys-libs/zlib
"
DEPEND="${RDEPEND}
dev-libs/boost
media-libs/glm
sys-devel/libtool
virtual/pkgconfig
doc? ( app-doc/doxygen )
test? ( dev-util/cppunit )
"
src_prepare() {
default
[[ -d m4 ]] || mkdir "m4"
[[ ${PV} == 9999 ]] && eautoreconf
}
src_configure() {
local myeconfargs=(
--disable-werror
--with-mdds=1.4
$(use_with doc docs)
$(use_enable static-libs static)
$(use_enable test tests)
)
econf "${myeconfargs[@]}"
}
src_install() {
default
find "${D}" -name '*.la' -delete || die
}

@ -1,2 +1 @@
DIST libmwaw-0.3.15.tar.xz 1289744 BLAKE2B 9aed923542e795904761e4969299785906aa65c735541788d91eb41e80420ac6c6df4df5e0cfa156c71d4e100c601e5e984de10c6a5f66eebe6ffb5f0374cc1d SHA512 0b2443fc6bc9da9247f7585743424df440f89317af989018d8b972864bf91e3c5cd78c39094a45d9de8114906b2b2a93f68ddb967af8565e4b499f643d86e682
DIST libmwaw-0.3.16.tar.xz 1306872 BLAKE2B 29c39ddb2cfe63116cbe7152a4dc3b7f16d402745c0dffd67c07dc42fa1ddee71f391695ead2519b3e1da206e8f437fbd24fa78ce1decfaa55e38a13d5d144e8 SHA512 c043d77e4b0efd7da594c1e370f24ee2d85afcb8a5e28179b4c3d76c8b7925f41ca5361bee12b35af732ef39f34fac46aa3636cb27c179ef9bb2b6feeaa19b0a

@ -1,52 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
if [[ ${PV} = 9999 ]]; then
EGIT_REPO_URI="https://git.code.sf.net/p/libmwaw/libmwaw"
inherit autotools git-r3
else
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
fi
DESCRIPTION="Library parsing many pre-OSX MAC text formats"
HOMEPAGE="https://sourceforge.net/p/libmwaw/wiki/Home/"
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="doc static-libs tools"
BDEPEND="
sys-devel/libtool
virtual/pkgconfig
doc? ( app-doc/doxygen )
"
DEPEND="
dev-libs/librevenge
sys-libs/zlib
"
RDEPEND="${DEPEND}"
src_prepare() {
default
[[ ${PV} == 9999 ]] && eautoreconf
}
src_configure() {
# zip is hard enabled as the zlib is dep on the rdeps anyway
local myeconfargs=(
--enable-zip
--disable-werror
$(use_with doc docs)
$(use_enable static-libs static)
$(use_enable tools)
)
econf "${myeconfargs[@]}"
}
src_install() {
default
find "${D}" -name '*.la' -delete || die
}

@ -8,7 +8,7 @@ if [[ ${PV} = 9999 ]]; then
inherit autotools git-r3
else
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
KEYWORDS="amd64 ~arm arm64 ~ppc64 ~x86"
KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
fi
DESCRIPTION="Library parsing many pre-OSX MAC text formats"

@ -1,2 +1 @@
DIST libstaroffice-0.0.6.tar.xz 706324 BLAKE2B 5ff692c85bb48a7cd4c1e05e0afcc3ab26d627254dcf0b4ba10314c6ec654d69e2910f031ec7b88c9d28c48fe6a7267cd2434d224dc980ad9e266273cbc65bfa SHA512 9b5313a069e29265875f2e744b6b39c261f578d72f67fdefe1454c092aaa28399e1b3dfcb3a2f881f9a60674e0115a29350fba3ee37fb442f0a837982077f324
DIST libstaroffice-0.0.7.tar.xz 707920 BLAKE2B f06786f600414a086f9b08b413ef1e028b15070ce90b4be03b18dd69787f4812b4ecbc245381e0ed464fabe0c1147149a3c4df248181b236e5d8bb766b398985 SHA512 fae873457a8018c1613667aa92771981503585513ab01bdbd2dd6d506ed4f72a7a8fdcfcb8953a46dfcb8fd902d2c9ef8ccd1a5ff15c83990a89847fb98009f8

@ -1,45 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
EGIT_REPO_URI="https://github.com/fosnola/libstaroffice.git"
[[ ${PV} == 9999 ]] && inherit git-r3 autotools
DESCRIPTION="Import filter for old StarOffice documents"
HOMEPAGE="https://github.com/fosnola/libstaroffice"
[[ ${PV} == 9999 ]] || SRC_URI="http://dev-www.libreoffice.org/src/${P}.tar.xz"
LICENSE="|| ( LGPL-2.1+ MPL-2.0 )"
SLOT="0"
[[ ${PV} == 9999 ]] || \
KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
IUSE="debug doc tools +zlib"
RDEPEND="
dev-libs/librevenge
zlib? ( sys-libs/zlib )
"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
"
src_prepare() {
default
[[ ${PV} == 9999 ]] && eautoreconf
}
src_configure() {
econf \
--disable-werror \
$(use_enable debug) \
$(use_with doc docs) \
$(use_enable tools) \
$(use_enable zlib zip)
}
src_install() {
default
find "${D}" -name '*.la' -delete || die
}

@ -8,7 +8,7 @@ if [[ ${PV} == *9999* ]]; then
inherit git-r3 autotools
else
SRC_URI="https://github.com/fosnola/${PN}/releases/download/${PV}/${P}.tar.xz"
KEYWORDS="amd64 ~arm arm64 ~ppc64 ~x86"
KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
fi
DESCRIPTION="Import filter for old StarOffice documents"

@ -1,2 +1 @@
DIST libwps-0.4.10.tar.xz 695448 BLAKE2B ec26b6ccd918aa29d0df053b3e321b651e0c7142910009e0b50a89f88f4dba8f7e9e20f8962a7afb84497b533129d85eb5c7628aa7c64f2a57ce2976d5ff372f SHA512 e5a6155d9e59df226e72db5723ae7574d3f3fdc49bd64156e11f9d3715748fb919dd3d2ab83b6d5fb80c002e7d4ca12563f6ff80472a6485f374b037404acf83
DIST libwps-0.4.11.tar.xz 706000 BLAKE2B e733b2fed9a05352b41126b2c0225807b3fe9a57f01f3b2a3bf35f99bd0adbd47bab8ef058f45de749332d407d589f6c33a03a3579fc76551548cb92c236e09f SHA512 6c81342b68fd93974c10ec0907dd46e9417cafa46d06205843941650828f4299a8793a7ace5c0ca755b8b9fb91fc1d6ef63304c641e7b5de36885e9995566e36

@ -1,35 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Microsoft Works file word processor format import filter library"
HOMEPAGE="https://sourceforge.net/p/libwps/wiki/Home/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
LICENSE="|| ( LGPL-2.1 MPL-2.0 )"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm arm64 ~ppc64 x86"
IUSE="doc debug static-libs tools"
RDEPEND="
dev-libs/librevenge
"
DEPEND="${RDEPEND}"
BDEPEND="
virtual/pkgconfig
doc? ( app-doc/doxygen )
"
src_configure() {
econf \
$(use_enable debug) \
$(use_with doc docs) \
$(use_enable static-libs static) \
$(use_enable tools)
}
src_install() {
default
find "${D}" -name '*.la' -delete || die
}

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

Loading…
Cancel
Save