Sync with portage [Fri Feb 22 09:54:18 MSK 2019].

mhiretskiy 1358
root 5 years ago
parent 46832bb869
commit 078f88c482

Binary file not shown.

Binary file not shown.

@ -1,5 +1,7 @@
DIST ansible-2.5.14.tar.gz 10119785 BLAKE2B 6e771aafc16053185ee6d275d6d41f64aa3f0d6dffbe721a66b548b97e84d78916e03827d592b961f9a4e0bb03fae09320731a4b8fdb814126cecdfb51f9f136 SHA512 9635b1c4bc9a93a24f4bb2894c9fed63803cecb01c5562559e3b808791d1007b26aa0aade4aa05fd4bae0f7d01216588d4e2e0bf4c5fb6cdf677d9b40e9e2de8
DIST ansible-2.6.12.tar.gz 10726648 BLAKE2B 9f3b1b48069f5b450f649bf1c21ee57922ac3db6a8b1b11c459b572bf298813490f230400f09d35d4d7b21a709643ac37cb527719fea59a1b57616b476235dcb SHA512 daee0a5c37a83dfd22b1fccb5245735e4874f7428f5e8f0244a8a208c7f73729bffc06df16d16e257ae65b8d4cafeb4e3b67e49160b5d9d530666166b5096a70
DIST ansible-2.6.13.tar.gz 10730575 BLAKE2B 2442925421996731be59db7ca18994f9c158f0b1247554bc8252d76d6c8fe8574e4ec2e62d71d7de075a9b109c43620232c78d91dcb3aa8d574752862de4d156 SHA512 7592214bc5c0c4283c99d7a422d44a54f424afe848b40fa2c0b0a4b556361a6290b459d8bdb575ec323e4e96bbad7abc939cdb5664839bb13f5de3d054ffb880
DIST ansible-2.6.14.tar.gz 10732165 BLAKE2B c753860a521c37357c7a5042391957680865416c036fcaf3920a65e291dc3ed3a52e94ad5b99acdb0d2c919e3be68b8462e462a935497dfe83b406adf4e63dad SHA512 ee532c0d61ab03a0937e89bfa7565f27f1905987784f31895e8ac6e4a8ecf76ca9f30201d278a68a995b8fc27151712dba2e79c13269a472d923355e36072e4e
DIST ansible-2.7.6.tar.gz 11796062 BLAKE2B 171dbcc7380ded52b03b9b109705008a492dbc5b8542fa600562c66abb8c3d3ace6bc92696559357d62fec106938e8fa4366b67cd621e4e8144fad59d0870db7 SHA512 db0813009b4683b74bf4dda640adc3dad750e053c3a87f97c6e61a2a5ea7668ea51e97ec204ddcdba6f09733bb399f824f87f365b74c35315b979603c99a6b70
DIST ansible-2.7.7.tar.gz 11809560 BLAKE2B 3960e4dcd166fb77ddcb6bbae03b20fe679b76aee3db118ddd4642ab7b837a66929bd4ec76c071c53eba7ece47aaf8a52ceb34ea092d3e3db8355839575b684c SHA512 41e007ccc5b22eaa1a7aa9c16f8d012268cbd1055b5c10a204134b7707ab7bf205aab04efccda9fb5497034896542d29ba253ad4ea09b4755b665bada22b4c54
DIST ansible-2.7.8.tar.gz 11812884 BLAKE2B 867ed7072efc4effafd637ac0353bd722269046cae8ddb794eea8c6cf9d739bc567f2a5323a589c21a74bbb57565ef153fb8c52798c17809a42400abe72ce65c SHA512 f3501ce8b642f83fe3d5e21cdfa26bce8611e92bc6e68e40b3a7ff2443c7d8ee0b2175981c92a5e83f9ce8c5d7d75aac95106a237bb9325c66319d96a790009a

@ -0,0 +1,66 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 python3_{5,6} )
inherit distutils-r1 eutils
DESCRIPTION="Model-driven deployment, config management, and command execution framework"
HOMEPAGE="https://ansible.com/"
SRC_URI="https://releases.ansible.com/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x64-macos"
IUSE="doc test"
RDEPEND="
dev-python/paramiko[${PYTHON_USEDEP}]
dev-python/jinja[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/cryptography[${PYTHON_USEDEP}]
dev-python/httplib2[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
dev-python/netaddr[${PYTHON_USEDEP}]
net-misc/sshpass
virtual/ssh
"
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
>=dev-python/packaging-16.6[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? (
${RDEPEND}
dev-python/nose[${PYTHON_USEDEP}]
>=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
dev-python/passlib[${PYTHON_USEDEP}]
dev-python/coverage[${PYTHON_USEDEP}]
dev-python/unittest2[${PYTHON_USEDEP}]
dev-vcs/git
)"
# not included in release tarball
RESTRICT="test"
python_compile_all() {
if use doc; then
cd docs/docsite || die
export CPUS=4
emake -f Makefile.sphinx html
fi
}
python_test() {
nosetests -d -w test/units -v --with-coverage --cover-package=ansible --cover-branches || die
}
python_install_all() {
use doc && local HTML_DOCS=( docs/docsite/_build/html/. )
distutils-r1_python_install_all
doman docs/man/man1/*.1
dodoc -r examples
}

@ -0,0 +1,66 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
inherit distutils-r1 eutils
DESCRIPTION="Model-driven deployment, config management, and command execution framework"
HOMEPAGE="https://ansible.com/"
SRC_URI="https://releases.ansible.com/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86 ~x64-macos"
IUSE="doc test"
RDEPEND="
dev-python/paramiko[${PYTHON_USEDEP}]
dev-python/jinja[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/cryptography[${PYTHON_USEDEP}]
dev-python/httplib2[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
dev-python/netaddr[${PYTHON_USEDEP}]
net-misc/sshpass
virtual/ssh
"
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
>=dev-python/packaging-16.6[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
test? (
${RDEPEND}
dev-python/nose[${PYTHON_USEDEP}]
>=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
dev-python/passlib[${PYTHON_USEDEP}]
dev-python/coverage[${PYTHON_USEDEP}]
dev-python/unittest2[${PYTHON_USEDEP}]
dev-vcs/git
)"
# not included in release tarball
RESTRICT="test"
python_compile_all() {
if use doc; then
cd docs/docsite || die
export CPUS=4
emake -f Makefile.sphinx html
fi
}
python_test() {
nosetests -d -w test/units -v --with-coverage --cover-package=ansible --cover-branches || die
}
python_install_all() {
use doc && local HTML_DOCS=( docs/docsite/_build/html/. )
distutils-r1_python_install_all
doman docs/man/man1/*.1
dodoc -r examples
}

@ -1,4 +1,4 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@ -43,6 +43,9 @@ src_prepare() {
# fix the version (not set in GitHub archive)
sed -i -e "s/__VERSIONTOKENHERE__/${PV}/" src/diamond/version.py.tmpl || die
# fix psutil usage
sed -i -e 's/psutil\.network_io_counters/psutil.net_io_counters/' \
src/collectors/network/network.py || die
# fix symlink out of place
rm README.md || die
cp docs/index.md README.md || die

@ -6,3 +6,5 @@ DIST puppet-agent_6.1.0-1stretch_amd64.deb 17902402 BLAKE2B 4fb8a0e85fc4dcee0ad0
DIST puppet-agent_6.1.0-1stretch_i386.deb 18652482 BLAKE2B 42c03e6c1c6c86d54875a6fd79c4a67b9b83daef42415cd9c7f1fc445912f051be3c2cd21f804318779169eeabd1ec15b9a2fb5389601416aea44c2533c7a879 SHA512 d78e2fb3ec28bb60a46ba1dae8d4e1292ac9346a7471aa29af6cea1a249496c4d96e7ff006700482b08338d3155dbba653d86be0d65dc31c522dd8fb4b5b4dfa
DIST puppet-agent_6.2.0-1stretch_amd64.deb 18705508 BLAKE2B dbe52e4babaa47a7ae6532765e8d544b0088374c2d9dc1f9a052a462199560b4a1b36b61e2e0953b54937d0672a66124e640ff44deac5491e28fec5f8c162e51 SHA512 7235c8d2212377768438b0703064ef81ea1fc96473a84b1275ae7ccb63d74ad89a6c5721a61d009276df5a84947484928fa05acea20bc40bf2179f9fe9683cbb
DIST puppet-agent_6.2.0-1stretch_i386.deb 19232552 BLAKE2B 48000de3a47f6d9513cb33f5a9e4a889dcca5ab089680d0f03d85a6f96a8ec0dbe7610c0cb6e6ca5184d18ac8823602ca1fe56cdd6c48bee46faf19f0d775f55 SHA512 755f078d5e91982f6ab9c8b717e7635f533a40437b04a09ea097d87059d01a00120aaf31e6ca7d1cc32940be9491ba4fffc5f4fb82b0c4a263bf8638d5e1c15d
DIST puppet-agent_6.3.0-1stretch_amd64.deb 18716014 BLAKE2B 914686e0229b40ea2e4f29c31556fdd289e7f556c471ea3e3a8cec887e1e1175ab5e23fc2605e3c156f9f571a8ff47b1a77b4f1173e41b923d7bd59592b575ed SHA512 fd5f39c4cb2fb040e45a0b2316857ad9da311532a9d1659f9df07ad57f85daec2e7674109c63885325c809e839b017b7b3d5ac57f9439e03b569203bf301851d
DIST puppet-agent_6.3.0-1stretch_i386.deb 19243158 BLAKE2B 52c36e54ecb2e1fcc9ef5add8393533f68a21fde0f449b558d1fe58b066519138092e15c851e33580e9c2b943ef7a58b323cdd7bc1997faa273db4f518292465 SHA512 aba93bb2290879f5512f2429af658b137a3b5ae51ce9817fb701086be7abe4043b54d242fdc1310876b42124819885f8ab97c9fb6cc9113a50115bc071d42736

@ -0,0 +1,79 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit eutils systemd unpacker user
DESCRIPTION="general puppet client utils along with hiera and facter"
HOMEPAGE="https://puppetlabs.com/"
SRC_BASE="http://apt.puppetlabs.com/pool/stretch/puppet/${PN:0:1}/${PN}/${PN}_${PV}-1stretch"
SRC_URI="
amd64? ( ${SRC_BASE}_amd64.deb )
x86? ( ${SRC_BASE}_i386.deb )"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="puppetdb selinux"
RESTRICT="strip"
CDEPEND="!app-admin/augeas
!app-admin/puppet
!dev-ruby/hiera
!dev-ruby/facter
!app-emulation/virt-what"
DEPEND="
${CDEPEND}"
RDEPEND="${CDEPEND}
app-portage/eix
sys-apps/dmidecode
sys-libs/glibc
sys-libs/readline:0/7
sys-libs/ncurses:0[tinfo]
selinux? (
sys-libs/libselinux[ruby]
sec-policy/selinux-puppet
)
puppetdb? ( >=dev-ruby/puppetdb-termini-5.0.1 )"
S=${WORKDIR}
pkg_setup() {
enewgroup puppet
enewuser puppet -1 -1 /var/run/puppet puppet
}
src_install() {
# conf.d
doconfd etc/default/puppet
doconfd etc/default/pxp-agent
# logrotate.d
insinto /etc/logrotate.d
doins etc/logrotate.d/pxp-agent
# puppet itself
insinto /etc/puppetlabs
doins -r etc/puppetlabs/*
# logdir for systemd
dodir var/log/puppetlabs/puppet/
fperms 0750 var/log/puppetlabs/puppet/
# the rest
insinto /opt
dodir opt/puppetlabs/puppet/cache
doins -r opt/*
fperms 0750 /opt/puppetlabs/puppet/cache
# init
newinitd "${FILESDIR}/puppet.initd" puppet
systemd_dounit lib/systemd/system/puppet.service
systemd_dounit lib/systemd/system/pxp-agent.service
systemd_newtmpfilesd "${FILESDIR}/puppet-agent.conf.tmpfilesd" puppet-agent.conf
# symlinks
chmod 0755 -R "${D}/opt/puppetlabs/puppet/bin/"
chmod 0755 "${D}//opt/puppetlabs/puppet/lib/virt-what/virt-what-cpuid-helper"
dosym ../../opt/puppetlabs/bin/facter /usr/bin/facter
dosym ../../opt/puppetlabs/bin/hiera /usr/bin/hiera
dosym ../../opt/puppetlabs/bin/puppet /usr/bin/puppet
dosym ../../opt/puppetlabs/puppet/bin/virt-what /usr/bin/virt-what
dosym ../../opt/puppetlabs/puppet/bin/augparse /usr/bin/augparse
dosym ../../opt/puppetlabs/puppet/bin/augtool /usr/bin/augtool
}

@ -3,3 +3,4 @@ DIST puppet-5.5.10.tar.gz 3064457 BLAKE2B 04cac9cebc03343b8c6fcf762f681f63bce4eb
DIST puppet-6.0.5.tar.gz 2811469 BLAKE2B de25af69b387a02b68fbb31ae13a9fa4aea8f25dcef32bead662e708060909b2f10813c1e889372a9167cb7a10b084679c20b5fa8312d2e06e2b53ebd573082a SHA512 0b34a27a0c21d24cf22e442b495dcfc49ac8b78e40f83eb9eb7f8b82b29350be436a63c6c9c9e969fc3d16096ccb927ca3c4d11e64e51d1e50150001d015bdbc
DIST puppet-6.1.0.tar.gz 2818606 BLAKE2B 4fb6b26e5c3711262ff2210c9a4e9a9df0f47f4a989526a79cc36f56fa939fd4e54e41f3afef818aacd4630daf559f1ded7e2f6e3cc258a005a848b4d49b64ae SHA512 b82d5f5b045e23543a26949d9faa7ced78f1413e7699d124dd43a56b8558232d6f151a9fdbe52e1959900eb8fff7d7e873fa7ce986206419a27a7627a56f91f6
DIST puppet-6.2.0.tar.gz 2821615 BLAKE2B 88b8ec856cfc6dacba5dfe44da7abce56a351f514057d3c916ecb5f4188703713cf7981984c2a59cb8073da93eab91a815dc2f52ee4f621c9a412897e9387d5e SHA512 91540169d3c9c1715e78b416961f4f3957a01b0908c3b675fa75226361fb8161730ca47ed98a2e958d8841fd50086c75489c5ee53b41f933392f399d502bad9b
DIST puppet-6.3.0.tar.gz 2831909 BLAKE2B ccf6353c0fc1fcdd4ac06e79bd8d91980162b8f1b2012fc2bfc1cdea3d2d6b22bf55216cea9b94a4024273ca9f76eedcc92a861de9db348408a361596033b51c SHA512 1d30706049fe378facddb923a9ecb521d37faa84740251602ac340ea1299c247252fbdaca17f1ea450ff716ab26ac4e9524f1137080318e6d9237a9e2699f6b8

@ -0,0 +1,138 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
USE_RUBY="ruby23 ruby24 ruby25"
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
RUBY_FAKEGEM_TASK_DOC="doc:all"
RUBY_FAKEGEM_EXTRAINSTALL="locales"
inherit eutils user ruby-fakegem eapi7-ver
DESCRIPTION="A system automation and configuration management software."
HOMEPAGE="http://puppetlabs.com/"
SRC_URI="http://downloads.puppetlabs.com/puppet/${P}.tar.gz"
LICENSE="Apache-2.0 GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
IUSE="augeas diff doc emacs ldap rrdtool selinux shadow sqlite vim-syntax"
RESTRICT="test"
ruby_add_rdepend "
dev-ruby/hiera
dev-ruby/json:=
dev-ruby/semantic_puppet
>=dev-ruby/facter-3.0.0
augeas? ( dev-ruby/ruby-augeas )
diff? ( dev-ruby/diff-lcs )
doc? ( dev-ruby/rdoc )
ldap? ( dev-ruby/ruby-ldap )
shadow? ( dev-ruby/ruby-shadow )
sqlite? ( dev-ruby/sqlite3 )
virtual/ruby-ssl
dev-ruby/hocon"
ruby_add_bdepend "
doc? ( dev-ruby/yard )
test? (
dev-ruby/mocha
dev-ruby/rack
dev-ruby/rspec-its
)"
# this should go in the above lists, but isn't because of test deps not being keyworded
# dev-ruby/rspec-collection_matchers
RDEPEND+=" ${RDEPEND}
rrdtool? ( >=net-analyzer/rrdtool-1.2.23[ruby] )
selinux? (
sys-libs/libselinux[ruby]
sec-policy/selinux-puppet
)
vim-syntax? ( >=app-vim/puppet-syntax-3.0.1 )
>=app-portage/eix-0.18.0"
PDEPEND="emacs? ( >=app-emacs/puppet-mode-0.3-r1 )"
pkg_setup() {
enewgroup puppet
enewuser puppet -1 -1 /var/lib/puppet puppet
}
all_ruby_prepare() {
# Avoid spec that require unpackaged json-schema.
rm spec/lib/matchers/json.rb $( grep -Rl matchers/json spec) || die
# can't be run within portage.
epatch "${FILESDIR}/puppet-fix-tests-6.0.0.patch"
# fix systemd path
epatch "${FILESDIR}/puppet-systemd.patch"
# Avoid specs that can only run in the puppet.git repository. This
# should be narrowed down to the specific specs.
rm spec/integration/parser/compiler_spec.rb || die
# Avoid failing spec that need further investigation.
rm spec/unit/module_tool/metadata_spec.rb || die
}
each_ruby_install() {
each_fakegem_install
# dosym "/usr/$(get_libdir)/ruby/gems/$(ruby_get_version)/gems/${P}" "/usr/$(get_libdir)/ruby/gems/$(ruby_get_version)/gems/${PN}"
}
all_ruby_install() {
all_fakegem_install
# systemd stuffs
insinto /usr/lib/systemd/system
doins "${WORKDIR}/all/${P}/ext/systemd/puppet.service"
# tmpfiles stuff
insinto /usr/lib/tmpfiles.d
newins "${FILESDIR}/tmpfiles.d" "puppet.conf"
# openrc init stuff
newinitd "${FILESDIR}"/puppet.init-4.x puppet
keepdir /etc/puppetlabs/puppet/ssl
keepdir /var/lib/puppet/facts
keepdir /var/lib/puppet/files
fowners -R puppet:puppet /var/lib/puppet
fperms 0750 /var/lib/puppet
fperms 0750 /etc/puppetlabs
fperms 0750 /etc/puppetlabs/puppet
fperms 0750 /etc/puppetlabs/puppet/ssl
fowners -R :puppet /etc/puppetlabs
fowners -R :puppet /var/lib/puppet
if use ldap ; then
insinto /etc/openldap/schema; doins ext/ldap/puppet.schema
fi
# ext and examples files
for f in $(find ext examples -type f) ; do
docinto "$(dirname ${f})"; dodoc "${f}"
done
}
pkg_postinst() {
elog
elog "Please, *don't* include the --ask option in EMERGE_EXTRA_OPTS as this could"
elog "cause puppet to hang while installing packages."
elog
elog "Portage Puppet module with Gentoo-specific resources:"
elog "http://forge.puppetlabs.com/gentoo/portage"
elog
elog "If updating from puppet 5 to 6, keep in mind that webrick (server/master)"
elog "suppert was removed for >=6.x, please migrate to puppetserver if you have"
elog "not already done so."
elog
}

@ -2,3 +2,4 @@ DIST puppetserver-5.3.5.tar.gz 67238513 BLAKE2B 075d6101a29b57a1693a76ba557e4cff
DIST puppetserver-5.3.7.tar.gz 53517572 BLAKE2B e423169b92a1638b0fef1ee5adbd10899917d89eeaa9b3bea689ce9d6f4d3e3b9d5c6cfdddea897014493373429ebba375c1a9d7b77284de46f5a0a5d6555dbd SHA512 8a58d89dc44aa8ebf82f06bdfc4f52c7a25ae3f1a48ca516425a57180c73618a1e850a595aa0e46d6e3a0b360ea38d3f050790304689bfa3b47bb0c1a4fad17b
DIST puppetserver-6.1.0.tar.gz 74953913 BLAKE2B 0a84e64209ad313bea375bbaa22197d0216138c3714551796df0cfe99e634ef3efb0cf5378fe0db4b329df21c57359a84f249cb7fe62d9369ec7e8702c5274a1 SHA512 b3f0f2ef86550879a2eeefaf187c5be0b9e7e9bd570e77669a3f20f8b6127aa8b04b8debb10ca66a60a1858285717bdfc27f3f31c8014de2e0af51746da2f1a8
DIST puppetserver-6.2.0.tar.gz 75582622 BLAKE2B 09c651c89e7440f3c79db8ddc98fef3844a80424291cb80cd031a7a9e26faf02b5d42d4ac1ccc6c88afa062f2a23ff393c0868f0fd0af19c7061af7a811c8b3c SHA512 865b605deeb5064e51a1414f735a034cf7a0694cf74fa7d657c5da6c3da2a3b6159f251f2a71a2f956a7abfe5bb0fb6a33fe3ff43c7c9b4e743100d2edd63ed3
DIST puppetserver-6.2.1.tar.gz 75683557 BLAKE2B 7320d7abdc9d5c59953f41773c7f52946fe7944c5f0f4a816b599d75a324d0a49a7b59dc990df5875ed849a2e6d1aca9258b65947446f7780f700fe48ec06e74 SHA512 ad8cd8441ac76c0443f0fca14999a014c5511d930b96e9721ff9c236ffb48cb3273e0abb2e615fa3210c539173d472c4080466bc391a863c2c4fadb32d26868c

@ -0,0 +1,135 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit multilib systemd user
DESCRIPTION="Puppet Server is the next-generation application for managing Puppet agents."
HOMEPAGE="http://docs.puppetlabs.com/puppetserver/"
SRC_URI="https://downloads.puppetlabs.com/puppet/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
IUSE="puppetdb"
# will need the same keywords as puppet
KEYWORDS="~amd64 ~x86"
RDEPEND+="
>=virtual/jdk-1.8.0
app-admin/puppet-agent[puppetdb?]"
DEPEND+=""
pkg_setup() {
enewgroup puppet
enewuser puppet -1 -1 /opt/puppetlabs/server/data/puppetserver "puppet"
}
src_prepare() {
sed -i 's/sysconfig\/puppetserver/default\/puppetserver/g' ext/redhat/puppetserver.service || die
sed -i 's/sysconfig\/puppetserver/default\/puppetserver/g' ext/bin/puppetserver || die
sed -i 's/sysconfig\/puppetserver/default\/puppetserver/g' install.sh || die
sed -i 's/var\/run/run/g' ext/config/conf.d/puppetserver.conf || die
sed -i 's/var\/run/run/g' ext/redhat/puppetserver.service || die
sed -i 's/var\/run/run/g' install.sh || die
default
}
src_compile() {
einfo "not compiling"
}
src_install() {
insinto /opt/puppetlabs/server/apps/puppetserver
insopts -m0774
doins ext/ezbake-functions.sh
insopts -m0644
doins ext/ezbake.manifest
doins puppet-server-release.jar
insinto /etc/puppetlabs/puppetserver
doins ext/config/logback.xml
doins ext/config/request-logging.xml
insinto /etc/puppetlabs/puppetserver/services.d
doins ext/system-config/services.d/bootstrap.cfg
doins ext/config/services.d/ca.cfg
insinto /etc/puppetlabs/puppetserver/conf.d
doins ext/config/conf.d/puppetserver.conf
doins ext/config/conf.d/auth.conf
doins ext/config/conf.d/global.conf
doins ext/config/conf.d/web-routes.conf
doins ext/config/conf.d/metrics.conf
doins ext/config/conf.d/webserver.conf
insopts -m0755
insinto /opt/puppetlabs/server/apps/puppetserver/scripts
doins install.sh
insinto /opt/puppetlabs/server/apps/puppetserver/cli/apps
doins ext/cli/ca
doins ext/cli/irb
doins ext/cli/foreground
doins ext/cli/gem
doins ext/cli/ruby
doins ext/cli/reload
doins ext/cli/start
doins ext/cli/stop
insinto /opt/puppetlabs/server/apps/puppetserver/cli
doins ext/cli_defaults/cli-defaults.sh
insinto /opt/puppetlabs/server/apps/puppetserver/bin
doins ext/bin/puppetserver
insopts -m0644
dodir /opt/puppetlabs/server/bin
dosym ../apps/puppetserver/bin/puppetserver /opt/puppetlabs/server/bin/puppetserver
dodir /opt/puppetlabs/bin
dosym ../server/apps/puppetserver/bin/puppetserver /opt/puppetlabs/bin/puppetserver
dosym ../../opt/puppetlabs/server/apps/puppetserver/bin/puppetserver /usr/bin/puppetserver
dodir /opt/puppetlabs/server/apps/puppetserver/config/services.d
# other sys stuff
dodir /etc/puppetlabs/code
# needed for systemd
dodir /var/log/puppetlabs/puppetserver
dodir /etc/puppetlabs/puppet/ssl
fowners -R puppet:puppet /etc/puppetlabs/puppet/ssl
fperms -R 771 /etc/puppetlabs/puppet/ssl
# systemd type things
insinto /etc/systemd/system/puppetserver.service.d/
systemd_dounit ext/redhat/puppetserver.service
insinto /etc/default
newins ext/default puppetserver
# normal init type tasks
dosym ../default/puppetserver /etc/conf.d/puppetserver
newinitd "${FILESDIR}/puppetserver.init" puppetserver
# misc
insinto /etc/logrotate.d
newins ext/puppetserver.logrotate.conf puppetserver
# cleanup
dodir /opt/puppetlabs/server/data/puppetserver/jruby-gems
fowners -R puppet:puppet /opt/puppetlabs/server/data
fperms -R 775 /opt/puppetlabs/server/data/puppetserver
fperms -R 700 /var/log/puppetlabs/puppetserver
insinto /opt/puppetlabs/server/data
doins ext/build-scripts/jruby-gem-list.txt
doins ext/build-scripts/mri-gem-list.txt
insopts -m 0644
insinto /usr/lib/tmpfiles.d
newins ext/puppetserver.tmpfiles.conf puppetserver.conf
}
pkg_postinst() {
elog "to install you may want to run the following:"
elog
elog "puppet config set --section master vardir /opt/puppetlabs/server/data/puppetserver"
elog "puppet config set --section master logdir /var/log/puppetlabs/puppetserver"
elog "puppet config set --section master rundir /run/puppetlabs/puppetserver"
elog "puppet config set --section master pidfile /run/puppetlabs/puppetserver/puppetserver.pid"
elog "puppet config set --section master codedir /etc/puppetlabs/code"
elog
elog "# install puppetserver gems"
elog "cd /opt/puppetlabs/server/apps/puppetserver"
elog "echo \"jruby-puppet: { gem-home: ${DESTDIR}/opt/puppetlabs/server/data/puppetserver/vendored-jruby-gems }\" > jruby.conf"
elog "while read LINE do"
elog " java -cp puppet-server-release.jar:jruby-9k.jar clojure.main -m puppetlabs.puppetserver.cli.gem --config jruby.conf -- install --no-ri --no-rdoc \$(echo \$LINE |awk '{print \$1}') --version \$(echo \$LINE |awk '{print \$2}')"
elog "done < /opt/puppetlabs/server/data/jruby-gem-list.txt"
elog "echo \"jruby-puppet: { gem-home: ${DESTDIR}/opt/puppetlabs/puppet/lib/ruby/vendor_gems }\" > jruby.conf"
elog "while read LINE do"
elog " java -cp puppet-server-release.jar:jruby-9k.jar clojure.main -m puppetlabs.puppetserver.cli.gem --config jruby.conf -- install --no-ri --no-rdoc \$(echo \$LINE |awk '{print \$1}') --version \$(echo \$LINE |awk '{print \$2}')"
elog "done < /opt/puppetlabs/server/data/mri-gem-list.txt"
}

Binary file not shown.

@ -1,2 +1 @@
DIST stress-ng-0.09.49.tar.xz 369304 BLAKE2B 48b11df90563ec7d09e84e441039366bfca9788af5079ce9bc921370d78371638ff9a9fbaa7e623eefb343b5c19b55a5e4b9bb9688898733c0452b3e2b9549e4 SHA512 b4eb93dc2d015766da1361840e4880db83a9e9297d4272383abdfcaeb26dc8437c3dc0b007efa5c12585bfaacaa2ae255ed52c693f9e8f6595a7294db48bc68a
DIST stress-ng-0.09.50.tar.xz 372592 BLAKE2B 430e4e8feefb358d6e9445d2418356d306c978ae0e6521a8fa6f216cd2fd031569ce9359236080784682991d81a3d9aacc4cef54709fbed2d9a99d7154d9e6b0 SHA512 b52a2e52011d6fcc7c72ad12c6173c7e7e77028e6c90d2aef170235bfb5b9b0ffe7422b178e58d68c0239dc85cce59edb6a58b9edfea84aba2b24c995321d5d4
DIST stress-ng-0.09.53.tar.xz 383408 BLAKE2B 3893bd4683c0b7b57c2a8809ca0889d4a06131465e099609e96954b6fd980fb9dcd1a2c517de3a70100815c5493a61fdb166cc5c493bcbd0c5b0d622b2a18e79 SHA512 fb83a849259aa0e376c2ae8d51bd018e3fbdd7beadf2770471039b4cf34f7827cdcf2492ad7ef79359de5750fffcc78bfc18171e429d2cb38d5bbde82e0e70f2

@ -1,59 +0,0 @@
--- a/Makefile 2018-11-21 18:06:08.000000000 +0100
+++ b/Makefile 2018-11-27 23:43:41.000000000 +0100
@@ -21,7 +21,7 @@
# Codename "portable pressure producer"
#
-CFLAGS += -Wall -Wextra -DVERSION='"$(VERSION)"' -O2 -std=gnu99
+CFLAGS += -Wall -Wextra -DVERSION='"$(VERSION)"' -std=gnu99
#
# Pedantic flags
@@ -343,12 +343,10 @@
.o: stress-ng.h Makefile
.c.o: stress-ng.h Makefile $(SRC)
- @echo "CC $<"
- @$(CC) $(CFLAGS) -c -o $@ $<
+ $(CC) $(CFLAGS) -c -o $@ $<
stress-ng: $(OBJS)
- @echo "LD $@"
- @$(CC) $(CPPFLAGS) $(CFLAGS) $(OBJS) -lm $(LDFLAGS) -o $@
+ $(CC) $(CPPFLAGS) $(CFLAGS) $(OBJS) -lm $(LDFLAGS) -o $@
@sync
makeconfig:
@@ -369,8 +367,7 @@
sed '$$ s/.$$//' >> apparmor-data.c
@echo "};" >> apparmor-data.c
@echo "const size_t g_apparmor_data_len = sizeof(g_apparmor_data);" >> apparmor-data.c
- @echo "CC $<"
- @$(CC) -c apparmor-data.c -o apparmor-data.o
+ $(CC) -c apparmor-data.c -o apparmor-data.o
@rm -rf apparmor-data.c apparmor-data.bin
#
@@ -385,12 +382,10 @@
perf.o: perf.c perf-event.c
@$(CC) $(CFLAGS) -E perf-event.c | grep "PERF_COUNT" | sed 's/,/ /' | \
awk {'print "#define _SNG_" $$1 " (1)"'} > perf-event.h
- @echo CC $<
- @$(CC) $(CFLAGS) -c -o $@ $<
+ $(CC) $(CFLAGS) -c -o $@ $<
stress-vecmath.o: stress-vecmath.c
- @echo CC $<
- @$(CC) $(CFLAGS) -fno-builtin -c -o $@ $<
+ $(CC) $(CFLAGS) -fno-builtin -c -o $@ $<
@touch stress-ng.c
$(OBJS): stress-ng.h Makefile
@@ -438,6 +433,6 @@
mkdir -p ${DESTDIR}${BINDIR}
cp stress-ng ${DESTDIR}${BINDIR}
mkdir -p ${DESTDIR}${MANDIR}
- cp stress-ng.1.gz ${DESTDIR}${MANDIR}
+ cp stress-ng.1 ${DESTDIR}${MANDIR}
mkdir -p ${DESTDIR}${JOBDIR}
cp -rp example-jobs/*.job ${DESTDIR}${JOBDIR}

@ -1,15 +1,15 @@
--- a/Makefile 2019-01-02 18:19:15.000000000 +0100
+++ b/Makefile 2019-01-27 15:09:56.000000000 +0100
--- a/Makefile 2019-02-15 13:06:01.000000000 +0100
+++ b/Makefile 2019-02-19 21:44:10.000000000 +0100
@@ -21,7 +21,7 @@
# Codename "portable pressure producer"
#
-CFLAGS += -Wall -Wextra -DVERSION='"$(VERSION)"' -O2 -std=gnu99 -g
-CFLAGS += -Wall -Wextra -DVERSION='"$(VERSION)"' -O2 -std=gnu99
+CFLAGS += -Wall -Wextra -DVERSION='"$(VERSION)"' -std=gnu99
#
# Pedantic flags
@@ -344,12 +344,10 @@
@@ -347,12 +347,10 @@
.o: stress-ng.h Makefile
.c.o: stress-ng.h Makefile $(SRC)
@ -24,7 +24,7 @@
@sync
makeconfig:
@@ -370,7 +368,7 @@
@@ -373,7 +371,7 @@
sed '$$ s/.$$//' >> apparmor-data.c
@echo "};" >> apparmor-data.c
@echo "const size_t g_apparmor_data_len = sizeof(g_apparmor_data);" >> apparmor-data.c
@ -33,10 +33,10 @@
@$(CC) -c apparmor-data.c -o apparmor-data.o
@rm -rf apparmor-data.c apparmor-data.bin
@@ -386,12 +384,12 @@
perf.o: perf.c perf-event.c
@$(CC) $(CFLAGS) -E perf-event.c | grep "PERF_COUNT" | sed 's/,/ /' | \
awk {'print "#define _SNG_" $$1 " (1)"'} > perf-event.h
@@ -389,12 +387,12 @@
core-perf.o: core-perf.c core-perf-event.c
@$(CC) $(CFLAGS) -E core-perf-event.c | grep "PERF_COUNT" | sed 's/,/ /' | \
awk {'print "#define _SNG_" $$1 " (1)"'} > core-perf-event.h
- @echo CC $<
- @$(CC) $(CFLAGS) -c -o $@ $<
+ echo CC $<
@ -50,7 +50,7 @@
@touch stress-ng.c
$(OBJS): stress-ng.h Makefile
@@ -439,6 +437,6 @@
@@ -442,6 +440,6 @@
mkdir -p ${DESTDIR}${BINDIR}
cp stress-ng ${DESTDIR}${BINDIR}
mkdir -p ${DESTDIR}${MANDIR}

@ -1,35 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Stress test for a computer system with various selectable ways"
HOMEPAGE="https://kernel.ubuntu.com/~cking/stress-ng/"
SRC_URI="https://kernel.ubuntu.com/~cking/tarballs/${PN}/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
dev-libs/libaio
dev-libs/libbsd
dev-libs/libgcrypt:0=
net-misc/lksctp-tools
sys-apps/attr
sys-apps/keyutils
sys-libs/libapparmor
sys-libs/libcap
sys-libs/zlib:=
"
RDEPEND="${DEPEND}"
DOCS=(
"README"
"README.Android"
"TODO"
"syscalls.txt"
)
PATCHES=( "${FILESDIR}/${P}-makefile.patch" )

@ -27,4 +27,4 @@ RDEPEND="${DEPEND}"
DOCS=( "README" "README.Android" "TODO" "syscalls.txt" )
PATCHES=( "${FILESDIR}/${PN}-0.09.47-makefile.patch" )
PATCHES=( "${FILESDIR}/${P}-makefile.patch" )

Binary file not shown.

@ -1 +1 @@
DIST lynis-2.7.0.tar.gz 276959 BLAKE2B 51f9a811f0410547c1866addd7a545a5976f5d8ab51f58b4538e1cbf93faccce7ea24e1943eb6dceda851616651619eab5f1eb88e47658e3953c60bcd0a4c0e4 SHA512 bf7fab22f762a15c2ace620731dee5a05b3c463acc7c7a4d9c2729cd5fb04639cd41faa951a9a0c99a85ed816dd531abb8f76f35d2af9ad81e6691a6f278450b
DIST lynis-2.7.1.tar.gz 278069 BLAKE2B 0e138a4dcdb1c68373e095a134f4ef1446402ae699e7d7e6afa146d593865c2855dcf7a809b9c19b0b996722256d2d98142cc1adc9c6f08d15e79aa842d3f643 SHA512 4ad1d9b79bbb7e74f3b171b9ee76eced1bb7812c560df4ac5a8445d4a6a5a0a46d9fc3fa7969509ba54d6658c466809f3286a59c91be69e40f03e7fd5902917b

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

Binary file not shown.

@ -1,2 +1 @@
DIST digitemp-3.5.0.tar.gz 267947 BLAKE2B bdd5cd84160d4826205ac74676897b9caa296c203fcde738c99f89baaeb7637f3995afeb7741e1d1d3e6cb64776de2479fe7d54d1b499a400cbf7b59f8d46349 SHA512 59055a97ae35cdc86bb893a755975b688d3be9185e717f5da0024d664e6c93dd5a7f10f1230772c3bc1bc76a088392da083ba63d28e054727b9f68ce31de64d3
DIST digitemp-3.7.1.tar.gz 144870 BLAKE2B 5d00197ba0122772d96c3185f430119961d214f50dc07dcd5881e1aa1135283680ff38b4d92736827f5c7644b11930b9418b8467f276e832e40f4228d08d1774 SHA512 e5eaf576b544c61049a358dece7dc96d9793b751ef08645060f3b2c1a2006e2906c3aa3f97de3dab46818290d664d2e784a948b2495b538a200b6d71b03173d2

@ -1,75 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit toolchain-funcs
DESCRIPTION="Temperature logging and reporting using Maxim's iButtons and 1-Wire protocol"
HOMEPAGE="https://www.digitemp.com/ https://www.ibutton.com/"
SRC_URI="https://www.digitemp.com/software/linux/${P}.tar.gz"
IUSE="ds9097 ds9097u ds2490"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 x86"
DEPEND="ds2490? ( virtual/libusb:0 )"
targets() {
# default is to compile to the ds9097u.
if ! ( use ds9097 || use ds9097u || use ds2490 ); then
echo ds9097u
fi
for target in ds9097 ds9097u ds2490; do
if use ${target}; then
echo ${target}
fi
done
}
src_prepare() {
sed -i -e "/^CFLAGS/s:-O2:${CFLAGS}:" \
-e "/^LIBS/s:=:= ${LDFLAGS}:" Makefile
# default is to compile to the ds9097u.
if ! ( use ds9097 || use ds9097u || use ds2490 ); then
ewarn "If you don't choose a component to install, we default to ds9097u"
fi
}
src_compile() {
local targets=$(targets)
for target in $targets; do
emake clean
emake CC="$(tc-getCC)" LOCK="no" ${target} || die "emake ${target} failed"
done
}
src_install() {
for target in $(echo $(targets) | tr '[:lower:]' '[:upper:]'); do
dobin digitemp_${target} && \
dosym digitemp_${target} /usr/bin/digitemp
done
if [[ $(targets|wc -l) -ge 1 ]]; then
echo
ewarn "/usr/bin/digitemp has been symlinked to /usr/bin/digitemp_${target}"
ewarn "If you want to access the others, they are available at /usr/bin/digitemp_*"
echo
fi
dodoc README FAQ TODO
for example in perl python rrdb; do
insinto "/usr/share/doc/${PF}/${example}_examples"
doins -r ${example}/*
done
}
pkg_postinst() {
echo
elog "Examples of using digitemp with python, perl, and rrdtool are"
elog "located in /usr/share/doc/${PF}/"
echo
}

Binary file not shown.

@ -1,2 +1 @@
DIST llpp-26b_p20180114.tar.gz 170204 BLAKE2B c7f46491d69350e8e94b444f0be4d7375f5658cccded792ecce2a246c907ae98bcca45d73e3b6c15765bd926d559327491559b5e5eec63bf2645cba84f6ee0d3 SHA512 1bc544f4bae268f573c2c111b69f7129bd3d1c1c8cc635c06f76e12670ad9476b4c2a2776e3959203ab6e53ea8ad1c68be290619298f7ebc1ae8203875f88314
DIST llpp-30.tar.gz 165821 BLAKE2B 755648f9f7e0e0740dd9647559c085ab1626edfceb91d8df4aa783610f32499d744f24a2e0ac0d6f13e747695e8829112e59bcf0fc78c7ef5f4b2427c759353d SHA512 1dfcf273bdabfb3c7b38366bac60659555b943f459cb3fd6e656df1a33c0f84e6745d62522c5498df0bd6182bda13973144724054588c07145018bb3e758d893

@ -1,41 +0,0 @@
--- llpp-26b/link.c
+++ llpp-26b/link.c
@@ -4392,6 +4392,31 @@
return caml_copy_string (FZ_VERSION);
}
+#if !defined (_WIN32) && !defined (__APPLE__)
+#undef pixel
+#include <X11/X.h>
+#include <X11/Xlib.h>
+#include <X11/Xutil.h>
+#include <GL/glx.h>
+
+static void set_wm_class (void)
+{
+ Display *dpy;
+ Window win;
+ XClassHint hint;
+
+ dpy = XOpenDisplay (getenv ("DISPLAY"));
+ DefaultScreen (dpy);
+ hint.res_name = "llpp";
+ hint.res_class = "llpp";
+ win = glXGetCurrentDrawable ();
+ XSetClassHint (dpy, win, &hint);
+ XCloseDisplay (dpy);
+}
+#else
+#define set_wm_class()
+#endif
+
CAMLprim void ml_init (value csock_v, value params_v)
{
CAMLparam2 (csock_v, params_v);
@@ -4460,5 +4485,6 @@
errx (1, "pthread_create: %s", strerror (ret));
}
+ set_wm_class ();
CAMLreturn0;
}

@ -1,86 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils multilib toolchain-funcs vcs-snapshot
DESCRIPTION="graphical PDF viewer which aims to superficially resemble less(1)"
HOMEPAGE="http://repo.or.cz/w/llpp.git"
SRC_URI="https://distfiles.gentoo.org/distfiles/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="+ocamlopt static"
LIB_DEPEND=">=app-text/mupdf-1.12.0:0=[static-libs]
media-libs/openjpeg:2[static-libs]
media-libs/fontconfig:1.0[static-libs]
media-libs/freetype:2[static-libs]
media-libs/jbig2dec[static-libs]
sys-libs/zlib[static-libs]
virtual/jpeg:0[static-libs]
x11-libs/libX11[static-libs]"
RDEPEND="x11-misc/xsel
!static? ( ${LIB_DEPEND//\[static-libs]} )"
DEPEND="${RDEPEND}
static? ( ${LIB_DEPEND}
app-arch/bzip2[static-libs]
media-libs/libXcm[static-libs]
x11-libs/libXau[static-libs]
x11-libs/libXdmcp[static-libs]
x11-libs/libXmu[static-libs] )
>=dev-lang/ocaml-4.02[ocamlopt?]
dev-ml/lablgl[glut,ocamlopt?]"
RESTRICT="!ocamlopt? ( strip )"
PATCHES=( "${FILESDIR}"/${PN}-26b-WM_CLASS.patch )
src_compile() {
local ocaml=$(usex ocamlopt ocamlopt.opt ocamlc.opt)
local cmo=$(usex ocamlopt cmx cmo)
local cma=$(usex ocamlopt cmxa cma)
local ccopt="$(freetype-config --cflags ) -O -include ft2build.h -D_GNU_SOURCE -DUSE_FONTCONFIG -std=c99 -Wextra -Wall -pedantic-errors -Wunused-parameter -Wsign-compare -Wshadow"
if use static ; then
local cclib=""
local slib=""
local spath=( ${EROOT}usr/$(get_libdir) $($(tc-getPKG_CONFIG) --libs-only-L --static mupdf x11 ${egl} | sed 's:-L::g') )
for slib in $($(tc-getPKG_CONFIG) --libs-only-l --static mupdf x11 ${egl} fontconfig) -ljpeg -ljbig2dec ; do
case ${slib} in
-lm|-ldl|-lpthread)
einfo "${slib}: shared"
cclib+="${slib} " ;;
*)
local ccnew=$(find ${spath} -name "lib${slib/-l}.a")
einfo "${slib}: use ${ccnew}"
cclib+="${ccnew} " ;;
esac
done
else
local cclib="$($(tc-getPKG_CONFIG) --libs mupdf x11 ${egl} fontconfig) -lpthread"
fi
verbose() { echo "$@" >&2 ; "$@" || die ; }
verbose sh mkhelp.sh KEYS ${PV} > help.ml
verbose printf 'let version ="%s";;\n' ${PV} >> help.ml
verbose ${ocaml} -c -o link.o -ccopt "${ccopt}" link.c
verbose ${ocaml} -c -o keys.${cmo} keys.ml
verbose ${ocaml} -c -o help.${cmo} help.ml
verbose ${ocaml} -c -o utils.${cmo} utils.ml
verbose ${ocaml} -c -o wsi/x11/wsi.cmi wsi/x11/wsi.mli
verbose ${ocaml} -c -o wsi/x11/wsi.${cmo} -I wsi/x11 wsi/x11/wsi.ml
verbose ${ocaml} -c -o parser.${cmo} parser.ml
verbose ${ocaml} -c -o config.${cmo} -I +lablGL -I wsi/x11 config.ml
verbose ${ocaml} -c -o main.${cmo} -I +lablGL -I wsi/x11 main.ml
verbose ${ocaml} $(usex ocamlopt "" -custom) -o llpp -I +lablGL -I wsi/x11 \
str.${cma} unix.${cma} lablgl.${cma} link.o \
-cclib "${cclib}" \
help.${cmo} utils.${cmo} parser.${cmo} wsi.${cmo} config.${cmo} main.${cmo}
}
src_install() {
dobin ${PN} misc/${PN}ac
dodoc KEYS README Thanks
}

@ -1 +1 @@
DIST refbase-0.9.5.tar.gz 1395726 BLAKE2B d39b2ac6dc30e068e1f0f4ba22ca03bc4741c337a32a6e47675bd43d135c018018d2f7097ca8d0e21f72f3dbe51cdd111ba8b9cc855cabb6d3855a52e48625e9 SHA512 68022eee0c15a4e733a8eef8cd5ca15d6e29a4f3559539657c4a38733a4338b51ef4b716cfd964bdd5eb94dda3c7f012b6e01deb59879f3dbfd79d4d8ce11305
DIST refbase-0.9.6_p20180223.zip 1725517 BLAKE2B bc92ba3bd7e317100e9390157e7b9cef5450aafa4fa78925cd7ac11f8933bca24a978fa44719e4a62e4e914c6949cc57a663a3ceca44ba0f07a7dae96b82d594 SHA512 65960052b99037653d0cf6f0c02f133f47e359ed67da095b03e10519ba48ecaa3cedf29eb1f2d56115b21cd479dcea77a26bf1f90baa8f4037876ca9c61a4aa3

@ -1,32 +1,28 @@
# Copyright 1999-2018 Gentoo Foundation
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="2"
inherit depend.apache webapp
EAPI=7
inherit webapp
DESCRIPTION="Web-based solution for managing scientific literature, references and citations"
HOMEPAGE="http://www.refbase.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
SRC_URI="https://sourceforge.net/code-snapshots/svn/r/re/refbase/code/refbase-code-r1422-branches-bleeding-edge.zip -> ${P}.zip"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=dev-lang/php-5.3
dev-lang/php[mysql,session]
RDEPEND=">=dev-lang/php-5.3[mysql,mysqli(+),session]
virtual/httpd-php
app-admin/webapp-config
app-text/bibutils"
RDEPEND="${DEPEND}"
DEPEND="app-arch/unzip"
need_apache
pkg_setup() {
webapp_pkg_setup
}
S="${WORKDIR}/${PN}-code-r1422-branches-bleeding-edge"
src_install () {
webapp_src_preinst
DOCS="AUTHORS BUGS ChangeLog NEWS README TODO UPDATE"
dodoc ${DOCS}
einstalldocs
# Don't install docs to webroot
rm -f ${DOCS} COPYING INSTALL

Binary file not shown.

@ -1,4 +1,4 @@
# Copyright 1999-2018 Gentoo Foundation
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@ -7,6 +7,6 @@ inherit vim-plugin
DESCRIPTION="vim plugin: BrainFuck source file syntax highlighting"
HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=716"
LICENSE="BSD-2"
KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~x86"
KEYWORDS="~amd64 ~mips ~ppc ~ppc64 x86"
VIM_PLUGIN_HELPTEXT="This plugin provides syntax highlighting for BrainFuck source files."

Binary file not shown.

@ -38,7 +38,7 @@ RDEPEND="app-arch/bzip2:0=
sqlite? ( >=dev-db/sqlite-3.3.8:3= )
ssl? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:= )
libressl? ( dev-libs/libressl:0= )
)
tk? (
>=dev-lang/tcl-8.0:0=

@ -35,7 +35,7 @@ RDEPEND="app-arch/bzip2:0=
sqlite? ( >=dev-db/sqlite-3.3.8:3= )
ssl? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:= )
libressl? ( dev-libs/libressl:0= )
)
tk? (
>=dev-lang/tcl-8.0:0=

@ -37,7 +37,7 @@ RDEPEND="app-arch/bzip2:0=
sqlite? ( >=dev-db/sqlite-3.3.8:3= )
ssl? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:= )
libressl? ( dev-libs/libressl:0= )
)
tk? (
>=dev-lang/tcl-8.0:0=

@ -37,7 +37,7 @@ RDEPEND="app-arch/bzip2:0=
sqlite? ( >=dev-db/sqlite-3.3.8:3= )
ssl? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:= )
libressl? ( dev-libs/libressl:0= )
)
tk? (
>=dev-lang/tcl-8.0:0=

@ -38,7 +38,7 @@ RDEPEND="app-arch/bzip2:0=
sqlite? ( >=dev-db/sqlite-3.3.8:3= )
ssl? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:= )
libressl? ( dev-libs/libressl:0= )
)
tk? (
>=dev-lang/tcl-8.0:0=

@ -38,7 +38,7 @@ RDEPEND="app-arch/bzip2:0=
sqlite? ( >=dev-db/sqlite-3.3.8:3= )
ssl? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:= )
libressl? ( dev-libs/libressl:0= )
)
tk? (
>=dev-lang/tcl-8.0:0=

@ -38,7 +38,7 @@ RDEPEND="app-arch/bzip2:0=
sqlite? ( >=dev-db/sqlite-3.3.8:3= )
ssl? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:= )
libressl? ( dev-libs/libressl:0= )
)
tk? (
>=dev-lang/tcl-8.0:0=

Binary file not shown.

@ -1,98 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit autotools flag-o-matic java-pkg-opt-2 python-single-r1
DESCRIPTION="General-purpose cryptography library"
HOMEPAGE="https://sourceforge.net/projects/beecrypt/"
SRC_URI="mirror://sourceforge/beecrypt/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="+threads java cxx python static-libs doc"
REQUIRED_USE="cxx? ( threads )
python? ( ${PYTHON_REQUIRED_USE} )"
COMMON_DEPEND="!<app-arch/rpm-4.2.1
cxx? ( >=dev-libs/icu-6.1:= )
python? ( ${PYTHON_DEPS} )"
DEPEND="${COMMON_DEPEND}
java? ( >=virtual/jdk-1.4 )
doc? ( app-doc/doxygen
virtual/latex-base
dev-texlive/texlive-fontsextra
)"
RDEPEND="${COMMON_DEPEND}
java? ( >=virtual/jre-1.4 )"
DOCS=( BUGS README BENCHMARKS NEWS )
PATCHES=(
"${FILESDIR}"/${P}-build-system.patch
"${FILESDIR}"/${P}-gcc-4.7.patch
# Fixes bug 596904
"${FILESDIR}"/${P}-c++11-allow-throw-in-destructors.patch
"${FILESDIR}"/${P}-cast-uchar.patch #618676
"${FILESDIR}"/${P}-icu-61.patch
)
pkg_setup() {
use python && python-single-r1_pkg_setup
java-pkg-opt-2_pkg_setup
}
src_prepare() {
default
eautoreconf
}
src_configure() {
# ICU needs char16_t support now
# bug 649548
append-cxxflags -std=c++14
# cplusplus needs threads support
ac_cv_java_include=$(use java && java-pkg_get-jni-cflags) \
econf \
--disable-expert-mode \
$(use_enable static-libs static) \
$(use_enable threads) \
$(use_with python python "${PYTHON}") \
$(use_with cxx cplusplus) \
$(use_with java)
}
src_compile() {
default
if use doc; then
pushd include/beecrypt >/dev/null || die
doxygen || die "doxygen failed"
popd >/dev/null || die
HTML_DOCS=( docs/html/*.{css,html,js,png} )
fi
}
src_test() {
export BEECRYPT_CONF_FILE="${T}/beecrypt-test.conf"
echo "provider.1=${S}/c++/provider/.libs/base.so" > "${BEECRYPT_CONF_FILE}" || die
emake check bench
}
src_install() {
default
if use python; then
rm -f "${D%/}$(python_get_sitedir)"/_bc.*a || die
fi
if ! use static-libs; then
find "${D}" -name '*.la' -delete || die
fi
}

Binary file not shown.

@ -1,2 +1 @@
DIST luvit-0.7.0.tar.gz 6440621 BLAKE2B 03cde753f19441bf408c3985704d9042bdbb217368d2effdb494c650038dd2f6a01acd81a73c8bd6e2ef5648d017eb27a8728f4ea568d62f9a94812cf19fe767 SHA512 9a2366d7033f685bdaed9d8fc22b74e570a6b2b5f0c2e5ecdea6b92776e12fed7ec8fa6c84ff457bdfc8849a7ee79c27803577857b3263e20c1fc53b87383b12
DIST luvit-0.8.2.tar.gz 7126452 BLAKE2B fc08b9964883ad0708cfeec0740171936daa8e58b43ff587eecbe3986f86e46d850a67b47e7a14880c67b9abe650b5cac3bcffab1c6fb2a42f965f38663aa292 SHA512 46ce9e99d1a002697bb777000d97849135805c3b36344880c1d5cb48c648c7252ec440af35a78eb595d7706d11dc85f76e72c72569e2b3d26e2747b870f98c2b

@ -1,93 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils toolchain-funcs multilib
# TODO: FHS https://github.com/luvit/luvit/issues/379
DESCRIPTION="Takes node.js' architecture and dependencies and fits it in the Lua language"
HOMEPAGE="https://luvit.io/"
SRC_URI="https://luvit.io/dist/latest/${P}.tar.gz"
KEYWORDS="amd64 x86"
SLOT="0"
IUSE="bundled-libs examples"
# luvit Apache-2.0
# luajit MIT
# yajl BSD
LICENSE="Apache-2.0 bundled-libs? ( BSD MIT )"
# fails in portage environment
# succeeds if run manually
RESTRICT="test"
RDEPEND="
dev-libs/openssl:0
sys-libs/zlib
!bundled-libs? (
dev-lang/luajit:2[lua52compat]
>=dev-libs/yajl-2.0.2
net-libs/http-parser:=
)"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
rm -r deps/{openssl,zlib} || die
epatch "${FILESDIR}"/${P}-unbundle-http-parser.patch
if use bundled-libs ; then
sed -i \
-e "s/-Werror//" \
-e "s/-O3//" \
deps/http-parser/Makefile || die "fixing flags failed!"
else
rm -r deps/{luajit,yajl,http-parser} || die
# TODO: no version detection for http-parser yet
MY_YAJL_VERSION=$($(tc-getPKG_CONFIG) --modversion yajl)
MY_LUAJIT_VERSION=$($(tc-getPKG_CONFIG) --modversion luajit)
sed -i \
-e "s:^YAJL_VERSION=.*:YAJL_VERSION=${MY_YAJL_VERSION}:" \
-e "s:^LUAJIT_VERSION=.*:LUAJIT_VERSION=${MY_LUAJIT_VERSION}:" \
Makefile || die "setting yajl version failed"
fi
}
src_configure() {
# skip retarded gyp build system
:
}
src_compile() {
tc-export CC AR
emake -C deps/cares
myemakeargs=(
DEBUG=0
WERROR=0
USE_SYSTEM_SSL=1
# bundled luajit is compiled with special flags
USE_SYSTEM_LUAJIT=$(usex bundled-libs "0" "1")
USE_SYSTEM_YAJL=$(usex bundled-libs "0" "1")
USE_SYSTEM_HTTPPARSER=$(usex bundled-libs "0" "1")
USE_SYSTEM_ZLIB=1
PREFIX=/usr
LIBDIR="${D%/}"/usr/$(get_libdir)/${PN}
DESTDIR="${D}"
)
emake "${myemakeargs[@]}" all
}
src_install() {
emake "${myemakeargs[@]}" install
dodoc TODO ChangeLog README.markdown errors.markdown
if use examples ; then
dodoc -r examples
docompress -x /usr/share/doc/${PF}/examples
fi
}

Binary file not shown.

@ -1,4 +1,4 @@
# Copyright 1999-2018 Gentoo Authors
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd"
KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd"
IUSE="doc test"
DEPEND="

@ -1,4 +1,4 @@
# Copyright 1999-2018 Gentoo Authors
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-fbsd"
KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-fbsd"
IUSE="doc test"
RDEPEND="<dev-python/six-2.0[${PYTHON_USEDEP}]"

@ -1,5 +1,2 @@
DIST mysqlclient-1.3.13.tar.gz 90368 BLAKE2B 34e6aad0d53f93017120334b09b901530a84cc5a5dd806381dcc3f12742764bda6f42699fef226b22274efd8f61304af0d1366abdf44607cd9827e9718ecc285 SHA512 e8e385490bfb2d926a94695089c9532981d1e3fcf1fb89a4dbabe98f0bbb25beed1cce8004b71a11fdf0161824e86826565cdb1ba5f2162450847b6b467f362e
DIST mysqlclient-1.3.14.tar.gz 91391 BLAKE2B 06a781f21f608246ec2da8a591d7bf5e430d96bc4069e589d6466a2deb4e53ab8a51db0015e4db73a748d6cbdba9c8c550e888e415cf9390afe5f0d7f0620156 SHA512 2623130f67b989f981bec37d19fffd400ba1b144657ff25575d055d19297d0f94c0a70eac980d90a76ef2b0455a56ca033ad92bc54c9456b2c57d5a84475ae50
DIST mysqlclient-1.4.1.tar.gz 85332 BLAKE2B d5a19a440ef2187f59e54f97100b9b10ddbe9357791b546f13330b5b9fcf4aa7931e453ef5f6b8445295a5241eef73f05c1fea2c0eca3a6dc02055b2433699ca SHA512 d1606c19bb0d05f69eeeb7699ac131405e06f386a0d752c4f9a5ea28f90a2c26cc5eda44bcda2bb934a88276f6685efa21fe1680e2904578a295da8827af4f9f
DIST mysqlclient-1.4.2-r2.tar.gz 85662 BLAKE2B 5e375c142d392d79ca3b119d52625c3c65a074fb90e71eabd2791823738995d390de90c50c20dced9df91e071d74d7a318cf09779c44387eb4103845486b48ad SHA512 d42969bc37b5148fed14b815280890f07058f75ef99390674f6ba3921f5dbaddc3ab2344f41e3b6d36f35229feffbc419a2ad31e2268e70165b1973356ec9c32
DIST mysqlclient-1.4.2.tar.gz 85634 BLAKE2B 76c6de6e40a76b1629da4854ac3fbbbf77c58b2dfa3d2c9b815dcc840e62798094c6260e745727043c7e20f136f1a8015feb78e6d6232f917bef3f823fb4bb77 SHA512 1d5a62fbf70d59fa5674c733229f50f60524d2e6d6355e7c9d99186f2a8ad5566f830161996128f5a681b3601687754d8e581b3231b666bb70464fbb9cf4f94f

@ -1,35 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy )
inherit distutils-r1
DESCRIPTION="Fork of MySQL-python"
HOMEPAGE="https://pypi.org/project/mysqlclient/ https://github.com/PyMySQL/mysqlclient-python"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
IUSE="doc"
RDEPEND="
!dev-python/mysql-python
virtual/mysql"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
DOCS=( README.md doc/{FAQ,MySQLdb}.rst )
python_compile_all() {
use doc && sphinx-build -b html doc doc/_build/
}
python_install_all() {
use doc && local HTML_DOCS=( doc/_build/. )
distutils-r1_python_install_all
}

@ -1,35 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy )
inherit distutils-r1
DESCRIPTION="Fork of MySQL-python"
HOMEPAGE="https://pypi.org/project/mysqlclient/ https://github.com/PyMySQL/mysqlclient-python"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc"
RDEPEND="
!dev-python/mysql-python
dev-db/mysql-connector-c:0="
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
DOCS=( README.md doc/{FAQ,MySQLdb}.rst )
python_compile_all() {
use doc && sphinx-build -b html doc doc/_build/
}
python_install_all() {
use doc && local HTML_DOCS=( doc/_build/. )
distutils-r1_python_install_all
}

@ -1,35 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy )
inherit distutils-r1
DESCRIPTION="Fork of MySQL-python"
HOMEPAGE="https://pypi.org/project/mysqlclient/ https://github.com/PyMySQL/mysqlclient-python"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc"
RDEPEND="
!dev-python/mysql-python
dev-db/mysql-connector-c:0="
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
DOCS=( README.md doc/{FAQ,MySQLdb}.rst )
python_compile_all() {
use doc && sphinx-build -b html doc doc/_build/
}
python_install_all() {
use doc && local HTML_DOCS=( doc/_build/. )
distutils-r1_python_install_all
}

@ -14,7 +14,7 @@ S="${WORKDIR}/${P}.post1"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
IUSE="doc"
RDEPEND="

@ -1,4 +1,4 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${TWISTED_PN:0:1}/${TWISTED_PN}/${TWISTED_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-linux"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-linux"
IUSE="doc test"
RDEPEND="

@ -1,3 +1,2 @@
DIST numexpr-2.6.1.tar.gz 90819 BLAKE2B 833402388e184bd38c449bcda866f68858f486d5cf30aec29dc5e9827a34a40cb166128a8fb217f0ed1614e0b759cf2164e31cb2a16198ea3e6a216c9fe01853 SHA512 07c88b1788ecad2c59260e7a6a15dfc21d486462a8866091d157286e5ce3b5b77f5fdab401fd30e2a5e4880398af53641d557003497c7d3658421bfcff38c31c
DIST numexpr-2.6.2.tar.gz 90970 BLAKE2B 85034d7d36bd921df289f817451e7b30071b9d448dc050e4f25afd13315921e3c10d61a41983cf106606e4efd91504e94ca7d8f01d80b230a9f717f41eb687ee SHA512 730e19e61987ecb00bfc3a65db043c88a1311046f2ea5f0a48c93d6a8d7576dbaa166b0b9b0f547e344b21b5c269be1b5aa2097e88aaac55219884c7ece55261
DIST numexpr-2.6.8.tar.gz 94517 BLAKE2B b41593183d69cd98f81107da5abc3eb59b35c6e61c0dde213c9a201c2776e4684d8af4b1a88c59ca464a7755941de9baf2157af64e8662c4219ae8ece635aefb SHA512 e610a2e3891f12b3a9fd7acb14a0362e0f03084035aa274827ec5e7d2584f2c599493afaf406d8720d915c7ed834dca11b1fbf28c0645077eb63223a2bf52cf9
DIST numexpr-2.6.9.tar.gz 94419 BLAKE2B 22492c1c59306fbd93174b5bab2ffaa32628c52cc570871bd6192a4589b65b6f679a77c8ec6f37b0a2ac09f004364a2ba87ecc26f459cb2d4b3b2705196b9fdc SHA512 d43845fb63c1e7b645b282d251f7f112784dbc04b61af1ffcbb9646cbe2e3a9f5d38aaa000f7d49880abe44c25205a6ef1e284577d36868220a197cdc0e55166

@ -1,58 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
PYTHON_REQ_USE="threads(+)"
inherit distutils-r1 flag-o-matic
DESCRIPTION="Fast numerical array expression evaluator for Python and NumPy"
HOMEPAGE="https://github.com/pydata/numexpr"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
IUSE="mkl"
RDEPEND="
>=dev-python/numpy-1.6[${PYTHON_USEDEP}]
mkl? ( sci-libs/mkl )"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"
python_prepare_all() {
# TODO: mkl can be used but it fails for me
# only works with mkl in tree. newer mkl will use pkgconfig
if use mkl; then
use amd64 && local ext="_lp64"
cat > site.cfg <<- _EOF_ || die
[mkl]
library_dirs = ${MKLROOT}/lib/em64t
include_dirs = ${MKLROOT}/include
mkl_libs = mkl_solver${ext}, mkl_intel${ext}, \
mkl_intel_thread, mkl_core, iomp5
_EOF_
fi
distutils-r1_python_prepare_all
}
python_compile() {
if ! python_is_python3; then
local -x CFLAGS="${CFLAGS}"
append-cflags -fno-strict-aliasing
fi
distutils-r1_python_compile
}
python_test() {
pushd "${BUILD_DIR}"/lib >/dev/null || die
"${EPYTHON}" \
-c "import sys;import numexpr;sys.exit(0 if numexpr.test() else 1)" \
|| die
pushd >/dev/null || die
}

@ -1,4 +1,4 @@
# Copyright 1999-2018 Gentoo Authors
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@ -29,11 +29,11 @@ python_prepare_all() {
if use mkl; then
use amd64 && local ext="_lp64"
cat > site.cfg <<- _EOF_ || die
[mkl]
library_dirs = ${MKLROOT}/lib/em64t
include_dirs = ${MKLROOT}/include
mkl_libs = mkl_solver${ext}, mkl_intel${ext}, \
mkl_intel_thread, mkl_core, iomp5
[mkl]
library_dirs = ${MKLROOT}/lib/em64t
include_dirs = ${MKLROOT}/include
mkl_libs = mkl_solver${ext}, mkl_intel${ext}, \
mkl_intel_thread, mkl_core, iomp5
_EOF_
fi
@ -52,7 +52,7 @@ python_compile() {
python_test() {
pushd "${BUILD_DIR}"/lib >/dev/null || die
"${EPYTHON}" \
-c "import sys;import numexpr;sys.exit(0 if numexpr.test() else 1)" \
-c "import sys,numexpr;sys.exit(0 if numexpr.test().wasSuccessful() else 1)" \
|| die
pushd >/dev/null || die
}

@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="test"
RESTRICT="!test? ( test )"

@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="test"
RDEPEND=""

@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="test"
# When bumping, please check setup.py for the proper py version

@ -0,0 +1 @@
DIST requests-credssp-1.0.2.tar.gz 21813 BLAKE2B 4626b31e9933e7fe5abdcba59834bedbc14afdd32b21d90124bbb458407213ba8cb92e98394f980f43aacd61de6c0e56e835cf47489ea55338a3dcdd171099e4 SHA512 8a076fc53eee73e24b08f6283b02a48519b9df076222b2e37c145c1d4c1756c29ccc41f0016c5a8ee7f5f7bf76c95fa158016f2cddd42b45a5ab2182939ffae0

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>chainsaw@gentoo.org</email>
<name>Tony Vroon</name>
</maintainer>
<upstream>
<remote-id type="pypi">requests-credssp</remote-id>
</upstream>
</pkgmetadata>

@ -0,0 +1,25 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
inherit distutils-r1
DESCRIPTION="HTTPS CredSSP authentication with the requests library"
HOMEPAGE="https://pypi.org/project/requests-credssp/"
SRC_URI="mirror://pypi/r/requests-credssp/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="dev-python/cryptography[${PYTHON_USEDEP}]
dev-python/ntlm-auth[${PYTHON_USEDEP}]
dev-python/pyasn1[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"

@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="test"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"

Binary file not shown.

@ -1,2 +1,3 @@
DIST json_schema-0.19.1.tar.gz 34501 BLAKE2B a8467a439a05bee01a8588baf77bdf2c58f29a0a4c54cab8be248760192ca473bf24bd56859c1c36779b2ebf85744947db3c9278b64cf93fd66f1792924e2c08 SHA512 db2cc70737cba7266cadc7fa747779fdedbe94ed7d8c8e97df302daed68f0c4cc3e4f31c513870eef481b7906720cee1626513520a3c9ee152a570a05dab210b
DIST json_schema-0.20.1.tar.gz 34615 BLAKE2B b08b580dd55e5c2daba9e434f1deccb41ea3e65e791b885287ffee2a9c0c6e5d4ea40698514c69f0d3f59eb305e0509e3d82ef7919fd8c0a4bc0117cec74e104 SHA512 9e5bbd554bf60def870260f3672283d4208224c90057d908a30ce4a3e334a0d529e155265fddcc0e4c009a021c7d77cb51a3bce816dea2cfe852617ce15f64fa
DIST json_schema-0.20.2.tar.gz 35329 BLAKE2B e5814388840b015969478635018919d0a6fb0958bebafbc773bc96ce706108a90d8ef1f6ecad3ade60ec46417ec6a4a1559e3cf91e90c053bdd88500b48cc93b SHA512 533f7f43e75a5927f3496ae4334e9076e0ae21f1939e7d68fef5737585ee66be12469d3e0cd9ace6ffe9a460d56a515fafa4024f3128bfdb0f1cd5a72902ce6e

@ -0,0 +1,25 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
USE_RUBY="ruby23 ruby24 ruby25 ruby26"
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.md TODO.md"
RUBY_FAKEGEM_EXTRAINSTALL="schemas"
inherit ruby-fakegem
DESCRIPTION="A JSON Schema V4 and Hyperschema V4 parser and validator"
HOMEPAGE="https://github.com/brandur/json_schema"
SRC_URI="https://github.com/brandur/json_schema/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
all_ruby_prepare() {
sed -i -e '/^if/,/^end/ s:^:#:' test/test_helper.rb || die
}

@ -1 +1,2 @@
DIST ruby-macho-2.1.0.tar.gz 65006 BLAKE2B 70c3ceb6f6ee7850fe0b775cc8be6664dd074e2a4a35d868230f39073f09c6a1c4394c7feded6067c3a7049c033655fc2b87f88d67278375606e0387775e2632 SHA512 1ec95304b91506a56d079dc0c24653fb1a4f0da041770320c7d9e256769df01a3784fe0d5e6e13081639d4347851e6a552cf36037bd4793cb12aea6f6cf3c194
DIST ruby-macho-2.2.0.tar.gz 65473 BLAKE2B aedb5524926649d2f1612c135bee2cd18e4740412afd5d0e21616edae46fa4111208d8490fd83a0fe95ed13bd7c33a8a347162c34667f3f4d0bbdf86258bc4c7 SHA512 bfb13d0ec52f3fd2a359d0ae8de1437c272545f0ecf594c13ee491089ee79e5d70341e3557e840e82c0ca7d12dba27daff5d011903239d5caaee44f5d5189a97

@ -0,0 +1,25 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
USE_RUBY="ruby23 ruby24 ruby25 ruby26"
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
inherit ruby-fakegem
DESCRIPTION="A library for viewing and manipulating Mach-O files in Ruby"
HOMEPAGE="https://github.com/Homebrew/ruby-macho"
SRC_URI="https://github.com/Homebrew/ruby-macho/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
all_ruby_prepare() {
# Avoid benchmarks with additional dependencies
rm -f test/bench.rb || die
sed -i -e '/test\/bench/ s:^:#:' Rakefile || die
}

Binary file not shown.

@ -1,3 +1,4 @@
DIST radare2-3.1.3.tar.gz 6662694 BLAKE2B bb4cec7fd05e4d43473ef2e67e8284c4b6a856ca1ef312153fbb236b800ed3e369ac9833d87e00e2aa5a560c7d8f7f9433d4b8aa9a3f01e7fabe3c26c3f3d60e SHA512 75b4966e8d64ffd341c50b22d12653e4ead23352d25a7a1f923ee6cb177bd0a9a16e7c02cbd5b58cf3da03f415168606cd67ed19f594dca75c66114e9c35903f
DIST radare2-3.2.0.tar.gz 6690470 BLAKE2B edfa7d03d72ab3b7ebda6a2c860165c0c53836f4141674581c0f5f5cc1d6dc7a4ea48530d4825342268e057aeca458a0883f6fd70fb4a2d5d052634f32555442 SHA512 9773068568cf71797b0c86837188604130ef9d63e7b7fd115820d8979dde37d259aaea45002c9984e8c3599e9bade53720d3bb1b3635bdad5a2dc73aff54f048
DIST radare2-3.2.1.tar.gz 6690320 BLAKE2B b0c7db6741d463055d054add112a67378f9f2fae34fabd2848bfffebd44308d0e6fefefa6dd7383ad1b508daed8f388a1538debbf0ae4289130b9c06bfd3f3ae SHA512 4f8c64eb02a80ae5e7adce1322d16f08a250be21c674a8f6f0271bfdc8dc41a6f4ef50fef36e012733db5008cffb356489beef9e9b82300372350bef81e13afa
DIST radare2-3.3.0.tar.gz 6730482 BLAKE2B c6e5ad73d9e34986ba86b73e8410d45c3f99f89a567de85ae22314fd120f358db39a5f8ac9d64af027eb5c7223564d003865f2c8be6ee0a331936e46d02145d8 SHA512 4db9d547b72b952babfd67c8cef2b94fdac9d6fd1194fb50b2ebab538d5bbda0bab4b704d5af64ef684ce9311634c8e04465906a1e7e706b211427054fe0721a

@ -0,0 +1,56 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit bash-completion-r1 eutils
DESCRIPTION="unix-like reverse engineering framework and commandline tools"
HOMEPAGE="http://www.radare.org"
if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/radare/radare2"
else
SRC_URI="https://github.com/radare/radare2/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
fi
LICENSE="GPL-2"
SLOT="0"
IUSE="ssl libressl"
RDEPEND="
dev-libs/capstone:0=
ssl? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
)
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
src_configure() {
econf \
--without-libuv \
--with-syscapstone \
$(use_with ssl openssl)
}
src_install() {
default
insinto /usr/share/zsh/site-functions
doins doc/zsh/_*
newbashcomp doc/bash_autocompletion.sh "${PN}"
bashcomp_alias "${PN}" rafind2 r2 rabin2 rasm2 radiff2
# a workaround for unstable $(INSTALL) call, bug #574866
local d
for d in doc/*; do
if [[ -d $d ]]; then
rm -rfv "$d" || die "failed to delete '$d'"
fi
done
}

Binary file not shown.

@ -1,9 +1,9 @@
DIST git-2.19.2.tar.xz 5235608 BLAKE2B ece292b8cf41deafc63c00e6176b0de39936f7d840d776192f32c1e293abc06c39119d13ed947d3de6a212fa6973bedb288c06f8bfcfc8144e563d5af40e45da SHA512 1d707c1a7a16fe9399592b0354e9023f701b019f36fe775997c46354d40617a80fa04aacc5330825c4f9301c2910ead8b26274a7f3b92e9d790b4705c0d7aa96
DIST git-2.20.1.tar.xz 5359872 BLAKE2B f7eb640f179837687b2b343d8a3a03d7d0fa60ca17e28dc5637a75800752d0e02be4c535dc4c3be6f25020aa419f22aa6855c641b06c61ebf45e0c51de069262 SHA512 3f05ea3a645d4d74c7380b03e2de39f893ff77a05d8b595ce30300d1d4e032f11d84952366096f8effd5fba18dfa5ebb946bc07a984eb7cbbda113cb88202f6c
DIST git-2.21.0.rc1.tar.xz 5399412 BLAKE2B 97f91b2b9613b76b79d8f75c112d57f6a4d6088156e59a5594827d3147c16c6a53f01ff46cf543d60ccf8fa13fb73ce43de46ace96cce27586944933f8a17bfb SHA512 4d8a4981e66b3d3f990b7901c037112ab25bd2a9b1eea8fc3b7b51cea9155edea8a73dedd3d15966239826a9b9162e4f58f87c41bc653ef1d8c5572913e9e49e
DIST git-2.21.0.rc2.tar.xz 5399292 BLAKE2B 81cb6ecf7d5e4c9e0943632fa94295d1ac5a80dea8233d5f7329ef41c14fee475e1fcd26caeb08b132d6b4a81ca10f1499718bdb725322bf2ff58e7826eae172 SHA512 9d97af084d1159893fc9da3c6c62ac6c30a06a910e9d76ef303449f808cf95e54b1c7d08f7250455e9b9bcfe5cdf9b66dc425e2f5d653908587c07db9b29f747
DIST git-htmldocs-2.19.2.tar.xz 1223848 BLAKE2B 6f30192cb101988fdfcce3bb79c684c6d1ac08cdc929caa049102fba10277fa8cc908904fe7472e40d60707c1b23145d95c441c1401c8697c37a81456d79aab8 SHA512 830e780beea10bde750d09a335fd9986c5ffbf47a724cbbeed5a1a2c94bc81d9c9223e415c5888faf81ab6404e460565434988f6635312039b88282a46014634
DIST git-htmldocs-2.20.1.tar.xz 1227884 BLAKE2B 2e3b5e888d187cc7563a36d9b0c43118fbc50ddf9ca65a98319f563ff226e1f9829d578f578619e04d9576eae95631188973484aa758a9706a7a08261e0a16ad SHA512 aae04a8a42865a855d699d445d2fbed657aecce8d090a36e171c6cf260175102fe2314142f3b59d200460560b413698fb263e77cadae49171bff50b96edb6d63
DIST git-htmldocs-2.21.0.rc1.tar.xz 1235140 BLAKE2B 910e42269e887ad40651d5d25b90f7c5cc0f7252cea0429daea18ed912268f315d40bb1b4662839e6b191f33dd08f2077b2a3d4b53478c0f9963b547ac649176 SHA512 b55d23cad0d83b372b79755cde03256096b59c0f21c0bd5b75bc660dfbc50cc6d56d17f1127ea9249b17a57f5cbc409f84686e371aa37e147980615211fc045b
DIST git-htmldocs-2.21.0.rc2.tar.xz 1235132 BLAKE2B 9bc6b53c8c1c0ac073a00ec7ef8c0df17af22a16ad5e11eea0ebbc23bd8ae69f6d8111e8d64f9555184782fbb8a200fdfec9f87f6da2001ab70838ccf2db479b SHA512 de24493b56da942d1c889e4ca1318cb445fa082c77e6b1d212ef7c880064d054d21afdd61c555df2576b457c2b01c9933a511403aaf6a716843de1f1cc8462ce
DIST git-manpages-2.19.2.tar.xz 432200 BLAKE2B 92b4c87c40e20133c4b6d9b7f3d56952556470855543a329ea0fb7a91382396376755656ded029d68df8291b0ffecc3e6b2b4c6f71cb8694d44c5f02da7357f8 SHA512 329ea9a6de4a5352c57d2ea3df0cf6caf9dcf03728416a3bca5a5ebc5dc133abe1faffd5e5b5ae11cc91412baff93df83ff684f3626bbac0770ca94bc79d2cb1
DIST git-manpages-2.20.1.tar.xz 439172 BLAKE2B c1c7a3031d600e53451ff2c35b00a541dfc09554b47567c4bfa8410d891dbd98c2ff28cbff5deff21e74c1c92eaa70777013e23bae6a484ba1690bbefc1740fa SHA512 43ab28063b896062727ced8aa64119daebef261c5b393cec112fe9872955a165abc3d91f75f6e273d60b15f3c49eba44dfc7591ede452cfee8362f7d5f39c5f7
DIST git-manpages-2.21.0.rc1.tar.xz 440148 BLAKE2B 689c438b81b337b5c70c407e0069abea3b1c5d02c5ff203683ebe7825384450023de3dd780edcf763a09279587614c6ec3b4a9a9efd4f7cc482d770236d3a11c SHA512 bfc07ab4c2ec9565ab72174264c412a39ae91b2b159c0e77bbffcc7f2a04d29db69ec301e23dd728c6e7fcb0b0e401f0320cb6f31c48819c64fc507d1f919a39
DIST git-manpages-2.21.0.rc2.tar.xz 440180 BLAKE2B 9f4e45a27e20a96a53a829e6800d2cd66f9bbc6da601ec50ea19bfb434d52ad44e1ff611253f97e23b0999fd46ffa63d87760530ed2d45671b2298c7c027d432 SHA512 36185d079d865846112836def1b352757f7a6bcf49a8b241181a179cc599c535e913d31b4580241b58a07d2d1d694e766eaaa4dba5ffdbe716142050c9f66d29

@ -1,50 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="A series of bash scripts which add a quilt-like interface to git"
HOMEPAGE="http://repo.or.cz/w/guilt.git"
SRC_URI="${HOMEPAGE}/snapshot/22d785dd24329170f66e7696da38b3e90e033d61.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ia64 ppc ~sparc x86"
IUSE=""
# Since we need to build the man pages anyway, I don't think it makes
# much sense to hide the HTML docs behind USE=doc.
RDEPEND="dev-vcs/git"
DEPEND="${RDEPEND}
app-text/asciidoc
app-text/xmlto
dev-lang/perl"
RESTRICT="test"
S="${WORKDIR}/${PN}-22d785d"
src_prepare() {
default
# The doc makefile tries to shell out to `git` for the version.
sed -i Documentation/Makefile \
-e "s/VERSION=.*/VERSION=${PV}/" \
|| die 'failed to set VERSION in Documentation/Makefile'
}
src_compile() {
emake -C Documentation all
}
src_install() {
emake DESTDIR="${D}" PREFIX=/usr install
dodoc Documentation/{Contributing,Features,HOWTO,Requirements}
emake -C Documentation \
DESTDIR="${D}" \
PREFIX=/usr \
mandir=/usr/share/man \
htmldir="/usr/share/doc/${PF}/html" \
install install-html
}

Binary file not shown.

@ -1230,9 +1230,6 @@ unipatch() {
local GCC_MAJOR_VER=$(gcc-major-version)
local GCC_MINOR_VER=$(gcc-minor-version)
# support old kernels for a period. For now, remove as all gcc versions required are masked
UNIPATCH_DROP+=" 5010_enable-additional-cpu-optimizations-for-gcc.patch"
# optimization patch for gcc < 8.X and kernel > 4.13
if [[ ${GCC_MAJOR_VER} -lt 8 ]] && [[ ${GCC_MAJOR_VER} -gt 4 ]]; then
if kernel_is ge 4 13 ; then
@ -1241,6 +1238,8 @@ unipatch() {
# optimization patch for gcc >= 8 and kernel ge 4.13
elif [[ "${GCC_MAJOR_VER}" -ge 8 ]]; then
if kernel_is ge 4 13; then
# support old kernels for a period. For now, remove as all gcc versions required are masked
UNIPATCH_DROP+=" 5010_enable-additional-cpu-optimizations-for-gcc.patch"
UNIPATCH_DROP+=" 5010_enable-additional-cpu-optimizations-for-gcc-4.9.patch"
fi
fi

@ -42,9 +42,9 @@ IS_REPLACE=0
INSTALL_CHECK_FILE="installed_by_webapp_eclass"
SETUP_CHECK_FILE="setup_by_webapp_eclass"
ETC_CONFIG="${ROOT}etc/vhosts/webapp-config"
WEBAPP_CONFIG="${ROOT}usr/sbin/webapp-config"
WEBAPP_CLEANER="${ROOT}usr/sbin/webapp-cleaner"
ETC_CONFIG="${ROOT%/}/etc/vhosts/webapp-config"
WEBAPP_CONFIG="${ROOT%/}/usr/sbin/webapp-config"
WEBAPP_CLEANER="${ROOT%/}/usr/sbin/webapp-cleaner"
# ==============================================================================
# INTERNAL FUNCTIONS
@ -365,7 +365,7 @@ webapp_src_preinst() {
# @DESCRIPTION:
# The default pkg_setup() for this eclass. This will gather required variables
# from webapp-config and check if there is an application installed to
# `${ROOT}/var/www/localhost/htdocs/${PN}/' if USE=vhosts is not set.
# `${ROOT%/}/var/www/localhost/htdocs/${PN}/' if USE=vhosts is not set.
#
# You need to call this function BEFORE anything else has run in your custom
# pkg_setup().
@ -389,7 +389,7 @@ webapp_pkg_setup() {
G_HOSTNAME="localhost"
webapp_read_config
local my_dir="${ROOT}${VHOST_ROOT}/${MY_HTDOCSBASE}/${PN}"
local my_dir="${ROOT%/}/${VHOST_ROOT}/${MY_HTDOCSBASE}/${PN}"
# if USE=vhosts is enabled OR no application is installed we're done here
if ! has vhosts ${IUSE} || use vhosts || [[ ! -d "${my_dir}" ]]; then
@ -453,7 +453,7 @@ webapp_src_install() {
# @FUNCTION: webapp_pkg_postinst
# @DESCRIPTION:
# The default pkg_postinst() for this eclass. This installs the web application to
# `${ROOT}/var/www/localhost/htdocs/${PN}/' if USE=vhosts is not set. Otherwise
# `${ROOT%/}/var/www/localhost/htdocs/${PN}/' if USE=vhosts is not set. Otherwise
# display a short notice how to install this application with webapp-config.
#
# You need to call this function AFTER everything else has run in your custom
@ -464,7 +464,7 @@ webapp_pkg_postinst() {
webapp_read_config
# sanity checks, to catch bugs in the ebuild
if [[ ! -f "${ROOT}${MY_APPDIR}/${INSTALL_CHECK_FILE}" ]]; then
if [[ ! -f "${ROOT%/}/${MY_APPDIR}/${INSTALL_CHECK_FILE}" ]]; then
eerror
eerror "This ebuild did not call webapp_src_install() at the end"
eerror "of the src_install() function"

@ -7,7 +7,7 @@
# @AUTHOR:
# Author: Tomáš Chvátal <scarabeus@gentoo.org>
# Author: Donnie Berkholz <dberkholz@gentoo.org>
# @SUPPORTED_EAPIS: 3 4 5
# @SUPPORTED_EAPIS: 4 5
# @BLURB: Reduces code duplication in the modularized X11 ebuilds.
# @DESCRIPTION:
# This eclass makes trivial X ebuilds possible for apps, fonts, drivers,
@ -53,7 +53,7 @@ fi
EXPORTED_FUNCTIONS="src_unpack src_compile src_install pkg_postinst pkg_postrm"
case "${EAPI:-0}" in
3|4|5) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare src_configure" ;;
4|5) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare src_configure" ;;
*) die "EAPI=${EAPI} is not supported" ;;
esac
@ -271,7 +271,7 @@ fi
if [[ ${XORG_MODULE_REBUILD} == yes ]]; then
case ${EAPI} in
3|4)
4)
;;
*)
RDEPEND+=" x11-base/xorg-server:="
@ -500,7 +500,7 @@ xorg-2_src_install() {
fi
# Don't install libtool archives (even for modules)
prune_libtool_files --all
find "${D}" -type f -name '*.la' -delete || die
[[ -n ${FONT} ]] && remove_font_metadata
}
@ -530,7 +530,7 @@ xorg-2_pkg_postrm() {
if [[ -n ${FONT} ]]; then
# if we're doing an upgrade, postinst will do
if [[ ${EAPI} -lt 4 || -z ${REPLACED_BY_VERSION} ]]; then
if [[ -z ${REPLACED_BY_VERSION} ]]; then
create_fonts_scale
create_fonts_dir
font_pkg_postrm "$@"

Binary file not shown.

@ -1,11 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>games@gentoo.org</email>
<name>Gentoo Games Project</name>
</maintainer>
<use>
<flag name="net">Enable network support</flag>
</use>
<maintainer type="project">
<email>games@gentoo.org</email>
<name>Gentoo Games Project</name>
</maintainer>
</pkgmetadata>

@ -1,7 +1,8 @@
# Copyright 1999-2018 Gentoo Foundation
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
EAPI=7
inherit cmake-utils
DESCRIPTION="A simple volleyball game"
@ -11,20 +12,21 @@ SRC_URI="http://downloads.tuxfamily.org/slime/v242/${PN}_${PV}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="net"
IUSE=""
RDEPEND="
BDEPEND="
sys-devel/gettext
"
DEPEND="
media-libs/libsdl[X,sound,video]
media-libs/sdl-ttf
media-libs/sdl-image[png]
net? ( media-libs/sdl-net )
media-libs/sdl-net
media-libs/sdl-ttf
virtual/libintl
"
DEPEND="${RDEPEND}
sys-devel/gettext
"
RDEPEND="${DEPEND}"
DOCS="docs/README docs/TODO"
DOCS=( docs/{README,TODO} )
PATCHES=(
"${FILESDIR}"/${P}-nodatalocal.patch
@ -35,10 +37,9 @@ S="${WORKDIR}/${PN}"
src_configure() {
local mycmakeargs=(
"-DCMAKE_VERBOSE_MAKEFILE=TRUE"
"-DCMAKE_INSTALL_PREFIX=/usr"
"-DDATA_DIR=/usr/share/slimevolley"
$(use net && echo "-DNO_NET=0" || echo "-DNO_NET=1")
-DCMAKE_VERBOSE_MAKEFILE=TRUE
-DCMAKE_INSTALL_PREFIX=/usr
-DDATA_DIR=/usr/share/slimevolley
)
cmake-utils_src_configure
}

Binary file not shown.

@ -1 +1,2 @@
DIST linuxconsoletools-1.6.0.tar.bz2 50563 BLAKE2B 26f68f4a9a4af5b875bc7efcc70edd80978a560f62c415b4957ee851260a2f6e6227c5a3001fb009777eac7e19d0449a8335486290ae0aaa9467ad8e1e9a89fb SHA512 35ca923cceca729bcbab95dff18682abd0d87a297e70aa8707fbabccde018fef0775a99195af4bf9111ba33210a14c10d1a766f83112cd535930a1ae430c7c75
DIST linuxconsoletools-1.6.1.tar.bz2 50854 BLAKE2B 0614e72226c575499ae5976011a0fca146a1981e2d355f7554f105b184bdd4f1090bf5374377e89f3881c5476e3c3a362b70f86cfd83440264066ea50a8c6a4b SHA512 b520c0a2d55986204619e3a5a00fb8b1e26453ac6df4f51c8c87495661a68bb6fe5a1947a3e079a53a537bf06d23c73c404a4d7e4d4dd18c0f7f69c1985a77be

@ -0,0 +1,41 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
MY_P="linuxconsoletools-${PV}"
DESCRIPTION="joystick testing utilities"
HOMEPAGE="https://sourceforge.net/projects/linuxconsole/ http://atrey.karlin.mff.cuni.cz/~vojtech/input/"
SRC_URI="mirror://sourceforge/linuxconsole/files/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="sdl udev"
DEPEND="sdl? ( media-libs/libsdl:0[video] )
!<x11-libs/tslib-1.0-r2"
RDEPEND="${DEPEND}
udev? ( virtual/udev )"
S=${WORKDIR}/${MY_P}
PATCHES=(
"${FILESDIR}"/${PN}-1.6.0-build.patch
)
src_prepare() {
default
export PREFIX=/usr
tc-export CC PKG_CONFIG
export USE_SDL=$(usex sdl)
}
src_install() {
default
if ! use udev ; then
rm "${ED}"/usr/bin/jscal-{re,}store || die
fi
}

Binary file not shown.

@ -1,4 +1,4 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@ -87,7 +87,8 @@ multilib_src_configure() {
}
multilib_src_compile() {
gnome2_src_compile
# Parallel compilation fails, bug #635094
MAKEOPTS="${MAKEOPTS} -j1" gnome2_src_compile
}
multilib_src_install() {

Binary file not shown.

@ -1 +1,2 @@
DIST eiciel-0.9.11.tar.bz2 680384 BLAKE2B 1d16aa383b25fb870f44bb942736287b063ff82c886119207dd222adad900f529075f58c0d5881e7f8d845f0c43d099dafd3f6e871bb11fe7171a7d1e099f8f7 SHA512 914b8b888e502a31f6c70bcc7d391ea8b79dde07e13b9a6ebb3b52a20b793fafd7a7a7f8ff7177c0150a223a74cae1b06fca0a274bc27545bb89223b4b8fd2aa
DIST eiciel-0.9.12.1.tar.bz2 723727 BLAKE2B e32f3af9f4664610169fc718a9d274ae9d91c5d0d56a6be9872da1c105b349584300879742b753a02ad621cdc597591c52f47d705222ad52cb37b0750616a553 SHA512 f54fbb149eed7f8fd534b77ec5e2d0f579c68a39afd7417a2298d75c7e95c459b49fc8ccb66d0188956ffaadf3bcc8a3eb048425cb82fc875573eb131f4b0494

@ -1,25 +1,26 @@
# Copyright 1999-2014 Gentoo Foundation
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
EAPI=6
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
inherit gnome2
inherit flag-o-matic gnome2
DESCRIPTION="ACL editor for GNOME, with Nautilus extension"
HOMEPAGE="http://rofi.roger-ferrer.org/eiciel/"
SRC_URI="http://rofi.roger-ferrer.org/eiciel/download/${P}.tar.bz2"
SRC_URI="http://rofi.roger-ferrer.org/eiciel/files/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
KEYWORDS="~amd64 ~x86"
IUSE="xattr"
RDEPEND="
>=sys-apps/acl-2.2.32
>=dev-cpp/gtkmm-3:3.0
>=gnome-base/nautilus-3
gnome-base/gvfs
"
DEPEND="${RDEPEND}
virtual/pkgconfig
@ -27,6 +28,7 @@ DEPEND="${RDEPEND}
"
src_configure() {
append-cxxflags -std=c++11
gnome2_src_configure \
--disable-static \
--with-gnome-version=3 \

Binary file not shown.

@ -1,111 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_HANDBOOK="true"
KDE_TEST="true"
inherit kde5
DESCRIPTION="Image viewer by KDE"
HOMEPAGE="
https://www.kde.org/applications/graphics/gwenview/
https://userbase.kde.org/Gwenview
"
LICENSE="GPL-2+ handbook? ( FDL-1.2 )"
KEYWORDS="amd64 x86"
IUSE="activities fits kipi +mpris raw semantic-desktop X"
# requires running environment
RESTRICT+=" test"
COMMON_DEPEND="
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kio)
$(add_frameworks_dep kitemmodels)
$(add_frameworks_dep kitemviews)
$(add_frameworks_dep kjobwidgets)
$(add_frameworks_dep knotifications)
$(add_frameworks_dep kparts)
$(add_frameworks_dep kservice)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kxmlgui)
$(add_frameworks_dep solid)
$(add_qt_dep qtgui)
$(add_qt_dep qtopengl)
$(add_qt_dep qtprintsupport)
$(add_qt_dep qtsvg)
$(add_qt_dep qtwidgets)
media-gfx/exiv2:=
media-libs/lcms:2
media-libs/libpng:0=
media-libs/phonon[qt5(+)]
virtual/jpeg:0
activities? ( $(add_frameworks_dep kactivities) )
fits? ( sci-libs/cfitsio )
kipi? ( $(add_kdeapps_dep libkipi '' '' '5=') )
mpris? ( $(add_qt_dep qtdbus) )
raw? ( $(add_kdeapps_dep libkdcraw) )
semantic-desktop? (
$(add_frameworks_dep baloo)
$(add_frameworks_dep kfilemetadata)
)
X? (
$(add_qt_dep qtx11extras)
x11-libs/libX11
)
"
DEPEND="${COMMON_DEPEND}
$(add_frameworks_dep kwindowsystem)
$(add_qt_dep qtconcurrent)
"
RDEPEND="${COMMON_DEPEND}
$(add_frameworks_dep kimageformats)
$(add_qt_dep qtimageformats)
"
PATCHES=( "${FILESDIR}/${PN}-18.07.90-activities-optional.patch" )
src_prepare() {
kde5_src_prepare
if ! use mpris; then
# FIXME: upstream a better solution
sed -e "/set(HAVE_QTDBUS/s/\${Qt5DBus_FOUND}/0/" -i CMakeLists.txt || die
fi
}
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package activities KF5Activities)
$(cmake-utils_use_find_package fits CFitsio)
$(cmake-utils_use_find_package kipi KF5Kipi)
$(cmake-utils_use_find_package raw KF5KDcraw)
$(cmake-utils_use_find_package X X11)
)
if use semantic-desktop; then
mycmakeargs+=( -DGWENVIEW_SEMANTICINFO_BACKEND=Baloo )
else
mycmakeargs+=( -DGWENVIEW_SEMANTICINFO_BACKEND=None )
fi
kde5_src_configure
}
pkg_postinst() {
kde5_pkg_postinst
if ! has_version kde-apps/svgpart:${SLOT} ; then
elog "For SVG support, install kde-apps/svgpart:${SLOT}"
fi
if use kipi && ! has_version media-plugins/kipi-plugins ; then
elog "Plugins for the KIPI interface can be found in media-plugins/kipi-plugins"
fi
}

@ -1,18 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_BLOCK_SLOT4="false"
inherit kde5
DESCRIPTION="KDE Image Plugin Interface: an exiv2 library wrapper"
LICENSE="GPL-2+"
KEYWORDS="amd64 x86"
IUSE="+xmp"
DEPEND="
$(add_qt_dep qtgui)
>=media-gfx/exiv2-0.25:=[xmp=]
"
RDEPEND="${DEPEND}"

Binary file not shown.

@ -1,43 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_QTHELP="false"
inherit kde5
DESCRIPTION="Tools to generate documentation in various formats from DocBook files"
LICENSE="MIT"
KEYWORDS="amd64 ~arm ~arm64 x86"
IUSE="nls"
RDEPEND="
$(add_frameworks_dep karchive)
app-text/docbook-xml-dtd:4.5
app-text/docbook-xsl-stylesheets
app-text/sgml-common
dev-libs/libxml2:2
dev-libs/libxslt
"
DEPEND="${RDEPEND}
dev-lang/perl
dev-perl/URI
nls? ( $(add_frameworks_dep ki18n) )
"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package nls KF5I18n)
)
kde5_src_configure
}
src_test() {
# bug 665622
local myctestargs=(
-E "(kdoctools_install)"
)
kde5_src_test
}

Binary file not shown.

@ -1,5 +1,4 @@
DIST lightning-5.4.9.tar.xz 1891752 BLAKE2B 90b777814db2962ff669430cea5a29ba1612a842fbb0edaca597539e6e2d728a9d90114ec6196fe0d4758a4738a15bc0c985a345e1062cb125617eb84ecf79e1 SHA512 8e54865d50118154c3918d5dec5dade4fb026c24bc697ad2e360db9741509cbdbb71ba9477508a9b209be6c8a8190fb0b5e03d2e8fedcc2cae18f5c9e5a3a496
DIST lightning-6.2.2.1.tar.xz 1521172 BLAKE2B 0155735fbebfa1d7103281f2d24c41ddd16561a09db3502bdc2e689bf8174a86c414608fcae199e2756eaa93b57332b0389433c7e0d86c454f244b8a50b43a85 SHA512 b9427709022e07741dba48f4933e364c2df15c1f4bcda481f50e05fa5f8f118d47a87e4b5322fab412e9f2f89c0889a5154a369bb6d0b9a1a94a748dc768fb59
DIST lightning-6.2.5.tar.xz 1745976 BLAKE2B 31e237f8d34ab2a2ac522767460467257d1f49d15fbe24f5b80dde9fb709ffafd0c0442d99c6643ce434cf7bdf0d670447f86da9fcdadc7ada6814431ef41e8a SHA512 1e997bb91d484908f225cc6e971874d308e8a8e2451a3e678f8a74bcb9e360babbd1f8aebcafb3e628ef5b10eb697ee47af2bfedbc956fee71d99084c8816235
DIST thunderbird-52.9.1-ar.xpi 604235 BLAKE2B 7981734de83b22d428e4b988adb938cf7b0ad0b54142ca14cc7e7bdf38729b57f4c9c56a22c939d322ce03aed55d6f1b726bf6fa23d5f35347602691a2b435e9 SHA512 03d93c275c0e38b07519bfbd893118ace69928eedde0d236e72c6900aafe2137641f76155a0e02fcb4b9185ff8e49c04937022b75b0e85d7ea9de05b90e2d727
DIST thunderbird-52.9.1-ast.xpi 541173 BLAKE2B 060a8ee63b93bdd230aa49328f37c109458c4caf3b4b719b10f461ec3b9f5141ce61d67d8ac1ac3c83ef098a8d4b6afdcb695cf895fa94e1de23ecdb555f257b SHA512 689911ecf9a92e3dd25eb305fc3d1179b4739f608e3be67c5367da3fdf0508951b816547333e1b2f16dbc20afd0407996b933309b6eaa3bca2340993a6d475a8
@ -57,112 +56,6 @@ DIST thunderbird-52.9.1-uk.xpi 652854 BLAKE2B bc5557a1df83f9b8ca0671fb7c76fe3a11
DIST thunderbird-52.9.1-vi.xpi 637163 BLAKE2B 95c18bab7d30dea4a8b2241290175c77a2b47e3b02346b734e728adadfa4656e4197ceb3328de4c5a12a076dcc7b4b412b0a32e3cdef41d888865e471b2601f2 SHA512 dec44726008af723e44146abb89754f9fd0684e3cce0f0db07c05d8a100a8a862e5f7ad028c0f7d3594965ec35251e7c357ac212fb78570463bd8c18174658c9
DIST thunderbird-52.9.1-zh-CN.xpi 593611 BLAKE2B 441b5332a08daca64282a8d4233c7d9dc2008c80c1ebeaf4d125d5c804755509b9b67dda3423cc9b9a9af3d29b386bb621b231e426bdd89879e2e620f2106dea SHA512 db0c8a338df861a43563c70fd73768a5db730ce39e7a8400de44ccada3edac1f7e3736edee5cff439df76ff17f2b4838701e95fa739f5aa04463539516a86f0b
DIST thunderbird-52.9.1-zh-TW.xpi 595728 BLAKE2B 8e2f6bdb65418ae837cef54f042eb8aa8ae32e952cece4e3a5a8cd13a4ac99a56495b7cca900d7ecd10d82ab77ed334a8e27eba8d49aca066bd2bb7d7182deb4 SHA512 24f48563439450751066d49f609ac4df9d7e31d7cea36ce8f2ad8f38b04fc4d1be99d50463700c4ea2963948b0ec1c1b5323cada6a3b1480f1debe52d50c4f1e
DIST thunderbird-60.4.0-ar.xpi 627179 BLAKE2B 3dd870f3cfb9d23fa5f366ff1eda59fa3b1f2c49ca368b78ac8efebb33eef46895b2a9c99f9641e822c42930215bd7526d7e0ebbc4b7bf0ff028c7f242139594 SHA512 034bcaffa5508e7e694c79af323b76069024fb4c079d4dc059f1a1677d57584e7110717f43e1dc236f0416f8bd6d2eab9862b16acdb8580e6b9bc32d8dec07de
DIST thunderbird-60.4.0-ast.xpi 560866 BLAKE2B 9978e7dbf1d53f50d140de033ada13fe4f6399f5d65cb61b09453fb42ad2cf6d3b8d2d6e41c6765202e36fc0feba0cea45be408cd5df832738ff04a5cbc4b953 SHA512 d1aacf71fc00b7102535d7cbca950119a9dd1d2bb9c0249caae0673cbca0bff7d5623e529a0383f2a15fd13b8a8f21df30cdfedcc1f1aa463afa5af087f8e540
DIST thunderbird-60.4.0-be.xpi 659078 BLAKE2B 2c73f6a0bae271beed2df326a71bc3d26d5465a36ef4911db8c3c81e1a5aed6aecd3bc2053ecfa24c63bf6a2a8c9160b09159f4a2b692e6a9a4e51ff01c45400 SHA512 ab3a4709752bea109cff96538114349f627ad80482c1f3cb704e5672793a5d3ab1d0e993c471dfbda7508b417813c1174631d019abd181b0f9ddd624a46c8813
DIST thunderbird-60.4.0-bg.xpi 665511 BLAKE2B 67ec10127e112e948bf68e8f52e819fa11b12d7d48471ee703d8d5261c58a88e516fface466ea4a12850ecb28322586cbcae3ddf324e7ddd6a703a032d206572 SHA512 b14b71416b12c868c7e00556e2824e03b4f5f4116890f393dd470d7cab880db31754306205f2d232d787b1f2af824de800049b5f1c66389ef1577ca6cf093e3b
DIST thunderbird-60.4.0-br.xpi 581592 BLAKE2B 2709b12ff4f820a5ca2825a9673c44d496641f1cdb9eb3ea048a74a0788e2dd93b919332d1d1252c96e971e62a4389f310a61c36a70ccb69c8a25e22ff38813d SHA512 c1f2c5c00d4809f4bf05e0fd78bda28e56549b348537643d43733318b868f6e41b601483182fc133e7d3163cb68b1abc77373ff0f86ce410969afd2c6f0ea861
DIST thunderbird-60.4.0-ca.xpi 591970 BLAKE2B 1912d4ab6ef987c3a9bb187f01d473c60e78f84ee60a5c475dc14039dd60f7bb96b78f337b81e5b1a18b97f575091401c3cd35939821d1bd7ed698064f01919c SHA512 4b840ad4bd73438210c913bef50159c374b259bf152df76aacf02c5bf39c4b8ef6b8b7ab95516a5570b401c1c394327a373b422c6fc5cf4b111493150b011755
DIST thunderbird-60.4.0-cs.xpi 611200 BLAKE2B 6878b0adb1baad6211470cc1f33c9d43770f1244ae68976c24cef07218a3aa9b257631832b3c871995a3fe973cae091cb5ec3342fbac3675e7ba66430b5ad1f4 SHA512 9116c265f70d8bad365adf78f68e4a115679c2d6665eb3c6da33c40f0caaf38ed0c2765e7b46ba02241f46789027a865b83364eca10a058b9e61fdd4204a0d55
DIST thunderbird-60.4.0-cy.xpi 582232 BLAKE2B debc6b350a2d0310bfb00cc2eff6b559cc571a4ea15bcdac49a55d305c5fc77b4e65b0125f939613a77462105ac4b67ec745233fcac2453b4b86648334fa3f68 SHA512 05c734de29575709e6593ac76d1d83b9e0eef3432a0bae3048dd65fa90447bb18e9f962df48319e3090f507285d986c7c467395d93a9626ea7016f10ef56c367
DIST thunderbird-60.4.0-da.xpi 570806 BLAKE2B 1fc8240d3fc69090def6fdf0a772c6f2f01b0c65ec0509f4c1a340b2d02543419deb57c8f5eb5bcb9468fe197c1a8b9d4896bc9381eb64bfa83db2b87dea83bb SHA512 e829291e564be8468ff4bd0ac6e13ca00fa3f585504ae938451e2befa9a11821c1e408379a608b41d172fd1675adb9678d70d601d06d8183b2c88a855e188c5d
DIST thunderbird-60.4.0-de.xpi 582574 BLAKE2B e14fe45cc7f2d42da136cf45411c16429e0ca3545a69008553c0f300e2bec38e11af87e67e6f0ed1b921588a8ab46e07ad848179f5f46f870a21c964d73d8af1 SHA512 8f8cfd0a0911167efdbe28d476ff1b4673acec456f3e6ad862921a781ec5f85cfdb8aa16ea0129d4f7b2cdd7c1c648602a46b3f52b1106d422be553e65543693
DIST thunderbird-60.4.0-el.xpi 691054 BLAKE2B 6fe3df5f9df2ef05a570549e0567ae052db386e78964a8fff978500e9ff7297f63f70182863471b959f721ee85056855d5236d1bc780a92bab80cf1574d2ecfc SHA512 b487cabae6abeb3ed2affd4ef8b7b9c964a911cfb35c6883e1dc21f1e020afe43320ceae24a7bec3e60935d2570c0fd0e91629a20f01f930b18c5f20d00e1247
DIST thunderbird-60.4.0-en-GB.xpi 550355 BLAKE2B 836cf1450ccde3fd1e956bf155b88790a90b5360d3d8f2f632416e63d35b6a978a4147cd9d41fce071e40b30f236b75ce373ca743e7bc295f9a20217569e8418 SHA512 2898aeace25cacbb71b43c0544d2faab2d0183b150b3f445ecc4f3319593dc8b7b984baebea8cd42df006a6b6226a819eb9d579ee95a0738b9e38c6cba3326f4
DIST thunderbird-60.4.0-es-AR.xpi 595047 BLAKE2B d799a4fec2fdc25fb2de8e5a58f6a3409d3f50aa33910fa774b17ca797b48b99e6a115b533ffc34dec4f2556a5b9e2acca938bdb158bf5af95499ab06c3ed060 SHA512 a2b0b43fd5d62b6ee1e1b3e35f376700ddffb764fd0cfda94bb0785e5fdb9bdc66ce9dfc2955fa6e97830519619724192f38fb0e6577cec24aa1e14e4819c11e
DIST thunderbird-60.4.0-es-ES.xpi 492211 BLAKE2B 01bc9ad1c29d4c266a130d71b49355bac0c1c57bc7c35514bd9b39873cc0f0f675be795bf844ebda360c235f4dd9e64829acbac34765d5b9179da4b128a20204 SHA512 45eb7f9490269a8f37b31a2c99db0aac28a776fc1648002fc5c6dd5d7684844f24a10b69b9933cce173118d11d50d4f6fc2d63b687f29813ff1936944ada7a87
DIST thunderbird-60.4.0-et.xpi 570866 BLAKE2B fc28f6adbc5bcdd43486082d507abeab3af45f53cdbb95e0bc0d69a39c18e3c02d60a19995e4b983aea20abf9ba93bbb4de810fba1412b54984e58cfd2caa255 SHA512 ae456fe106f1d9814c917b371a326b063f516b571c24d8d84cdb58b0e8e0bc3d809aa627c5da3db9921d60e5484d68529f1c92a7c9f38dc8aa1ec313bb186766
DIST thunderbird-60.4.0-eu.xpi 577579 BLAKE2B d36080a93dbfc11134d9cf8d65a4318cf7e7de5b74354504864667f005e7f0d941711a153757273351da8f1aa411116fcfe743d47747e792e5f5ce4efe793bc1 SHA512 9a55bd3cad62d8389a3afe1f32504e29ceb5540b55d5d390464b9c8fc354c9d2ded52da299a2ce91790ae9d8470709c25b490a05a2636720e0e7e1ca311a4d19
DIST thunderbird-60.4.0-fi.xpi 575754 BLAKE2B 139cf0b48517e22bc38599f4c4b4c5813cf9cc8ce1762c88231ec6ff2509b067cb5ec4f72b5da08168fd696e353e091cd0e7aaf8c887b6ec0114b5fd62153710 SHA512 dda652a4df97390ae8e96461aa76c91f3b839ecf2598e3142aa300b49e5b1d7dad69d2cf749c4721329044abef41dc33046c420a3011e250a94af9ce5807ac83
DIST thunderbird-60.4.0-fr.xpi 608465 BLAKE2B 755672fa9c6e5dd017d725616af200bb23f682c763d0c13847d108be100761d8caa5cbc526c83babbfabc4be9ffddc77ba4f4c2f770b37a2c7286a343448f196 SHA512 36aad0d328f5bfbeb283cca76535e593ebd81e16024406a52501d15f11f312446bd0f7ed11931046e68f85d90b597d02a3c61c6d0c7c166cf485ab94a72cae74
DIST thunderbird-60.4.0-fy-NL.xpi 590033 BLAKE2B 2992ee13d642f2f8d2dd3175089261a62d6b919f03f2950ed5c7f5e6d2917c89ea9ae4d4eceff59e673f311bd11d610a2d931b1ff185e98dad02466192aeadaf SHA512 d92fc16fc0a7fe75591f38cb732d7f63cd03c1aab012e490178a57710fe3a2fd5a893281969960d82ae76e185816c69d5685831572d352c1f9ae418ab010b0f9
DIST thunderbird-60.4.0-ga-IE.xpi 603505 BLAKE2B b7649d72903884afd9f80b042c140d03adaa1bafda5c8c981042c0f04f2388d053ee295b8ff9e8d9e564ae18bc754bc410af6877fb373c5f2efcacc9f125663e SHA512 155b53cb481fffb83d1b6e5142be1eb70d622d3484dd0be2a48f6a604681627dbcc74dfe1cc8ed803a8d20c94411323b59731782bcaf4234c7768a5700bc866f
DIST thunderbird-60.4.0-gd.xpi 599260 BLAKE2B e5d5fd2f5a8a3db6b3f0f99e10c5ef3971b63f789c7fff28dd70a7886a6639a353275c24848f8e22710f85458151cc555895842b56f059d4a0564d1255f2f801 SHA512 926db1e0e2c3f8b77c297d2f71c73f6b74b0ef14b2fa866ff2411ada6dc342be21618ce628a4aff4cbc7370fea670e528a21640175fa70420dd6ad43fcd53517
DIST thunderbird-60.4.0-gl.xpi 576547 BLAKE2B 32f09f4f8ab5661e31bad1b52de44267a0b8cf03228673b1f4920182092e04c71c713257a6a0560ee64338ff88085fa0dce07394a6334407db8f61c05f3dda1d SHA512 db40f8c9a22d3bfbf91b9e8c540ca20c27bf44bd3c7bf7c46abf63bbf8558a6a5a9a7785338325249a3aa07ffa10ada47e1558cf18af0f32268d643a99e2c26c
DIST thunderbird-60.4.0-he.xpi 618364 BLAKE2B d81adf63d72ac769e76c9b9aa57f3cdf02eac349fd2d298f17ca33a3308d9010ee25d3823cd75b80ec3cf8395e6b4b9f0dd8e2d7affec2726126cc1ca38c2b8f SHA512 d0aa6c1b600b86d9ab01be40ed3ce686451b51fadeb2f472e06a6a4293335a6954b3004f86b2cd26f4ee18545eeb55a8d91f19a413be7025654c4b1c8988ec12
DIST thunderbird-60.4.0-hr.xpi 583460 BLAKE2B 684a8a297b94130197533302513d71a6001c6457f74cc8049b86bce41ee574d3c3641f4606dfddc39e43616bb51f0ebf9f495c73192c886bf04bac10adb29b98 SHA512 e90314ad479582436d6f18a5da0a3c2e40ac01df3c2df4caa0caf35c4846be15184de3a7295531c0bf80c67bcd5cdcef029d776d4a51ab33916047991e1c13e0
DIST thunderbird-60.4.0-hsb.xpi 611322 BLAKE2B fa3b1c46f45581a3378d32d134f5306268978f8539a478554183ab2ffe76e6dce6795696959245296e5bab1c28debc2d98b098ac378f9b7545b8648b3e7d966d SHA512 e522d1d4878f188e7abd18c958f648e4a7ae7aca81a734751b593269f67105d3004c08f182a5fd37247c497ac4ce7f227831c10c48e78278c5d414f1bd004872
DIST thunderbird-60.4.0-hu.xpi 615345 BLAKE2B 3d26e9f2dec65db384bcf074b66ca99f924c276e3a7af30b5c95ffadeb11b96985f0f80af0b2e112cd6e50bc131eeaf8f2056140ba749cdb15451cf439b772a5 SHA512 1e3907a339a14794bb87c9b1ebb564d85eb148124490a9501cae98b41f894d2492bc9e3f16f98d57393b9fa18ef2e376e7c10818a4ea1f25af2850dd6655c126
DIST thunderbird-60.4.0-hy-AM.xpi 649712 BLAKE2B 99a3155097c408c65bb77de1afd2e403ea171b271ed98a9e04338ec5a3120e4a06a71604b839f0bc2fc9d3ef686200bb399cca37a3ee4346a09e76f4aabf37ab SHA512 a13e420df7016d4bfba2f3ea4c8ebda92447c53473dbb25111aa65ee54dba669d4b316a4a5764d45e094a5ec25b6a323d33226199e0a1f11ba55f92606858668
DIST thunderbird-60.4.0-id.xpi 568858 BLAKE2B 5c5cd597a2165bdef65ee008d9da8b8130dc090a5b2a8e32ca80cfa6df252501babc7c55f341df78e788c80ad8f9b603038d3438332332e0af9b99e2db4286a0 SHA512 24c22e167acf30a3a488fd7b20196f5f0941116efcdc0aeb101e48ee8b3d5c0ea4bef423dc6782c85b45417f83758bb3ed92bd44f2ec611405cc29e406015b1a
DIST thunderbird-60.4.0-is.xpi 579046 BLAKE2B a570f91e76841e8a6154ca57f1458004604eadb23bb820c83f596b1a3bd51df0b447b12db39147891c738dfd27a8c9bb7c8c8243e66d9d020d8e43efdba85e39 SHA512 9e194e7259a700c1742053c726f25a917fefc45073b274560a0b361c0c5a542b3a51e979c194dee82bec661e30488de3bc6843e6808673b871376fe4d5fe7c7d
DIST thunderbird-60.4.0-it.xpi 477499 BLAKE2B cd001afac4ac48b5c45217c18d9f07d6666bb49f39b36a71254322eda80bbb9e3d34f96ddfa3294944432f88ca78a2559a4de6547e19e9839a68a20d8232700b SHA512 3c15bac4fcc6e6e2b0f5c524f72b6d76964c6ba96f0e1d4526edb69e27bce719af7d9a18cf140da8ba61e1de2aca57e7bbaa95025a59a09a1dd73bdeefd54e69
DIST thunderbird-60.4.0-ja.xpi 653343 BLAKE2B 4f6f338e78fecdf35c6a4556a5f12543a957658564f222c71f05ec1f8ad1d9685ec5df66e491958bf0443b1de9d4ed62603a9ce5b0be35441c606cbb16b4c3c7 SHA512 6d2aa08482b1b5395ec86c3355a367d311466ba308b9f4d4273b7b9bd0789988e712921f969ffb6cf30eb2036a11868d407e5a37725aa3ab7bca32077fdeff96
DIST thunderbird-60.4.0-ko.xpi 619729 BLAKE2B 29f9ca2dcab55308d4fe25fac61fc9e266a7205f64d2a3abc6909f70e92cc291486ceb7be0e6884f4d07d596fe9e04bfd03ad8ce76ead4f535c9043702c4814e SHA512 71a1d39b626c7a360070adc749639500f924209862e333cb9b176d86bf6a0c12561487fe2a041d77d9d224b5fb897fd8acf3b95968a947a4ffdcf4b2759c0c5a
DIST thunderbird-60.4.0-lt.xpi 605440 BLAKE2B eb11210339f086715b2104ef4ba3a8b1a0bc58bafcf0be2e55da035cd4445e1772977b04ed5eb943c837a7f9b891a8323eca8c735cc3a7b32aae1fdf0f3c5018 SHA512 296d8e6ac5a903e54186bc080763022d836591e96128d9b7ef19338f84bf2a321bb599e86dba42f1da969e64032ca00c9b8b573108ee4d552cd9c3b557569c24
DIST thunderbird-60.4.0-nb-NO.xpi 578233 BLAKE2B 188e54b4842dcb383c47f1c903dfc380d9e04a89073ecc35ad145a1ed243b7bc8a5454b2afe5b205d157d54e25488fbd4bafbf7b87337ae1c2e701665b043104 SHA512 8b21902dad6769a0e5b9794a5b7abbb95657295fa03b909b4964a0545499991a5d8b959eabd2cffdeb84bcb661ba7ba735d3b37db20ba1da93c8c6eeb239d5e8
DIST thunderbird-60.4.0-nl.xpi 583913 BLAKE2B 5decc9886f62d0c6d82f27254aaeb8c8b87b3d23c0711d810334d7d418264adfbc180be4c8d00269c20c70a05d21c91e21017e54bd4164fe7743e4f39e7b2f8c SHA512 c613e9f5fd6e0f746f7d4d05d23151a3edd8f2f284cfb6942465febd0fd19cd7b2be8f7cdf4347739ee37764adad2df07def31b01ccdfcd0f5c5c0cbf09c5f45
DIST thunderbird-60.4.0-nn-NO.xpi 577653 BLAKE2B ffba4ddbb242665966e6925d7a89dbf25275feb407374d4f360aecb2a8fa648a36568bab457f4a25725955f09818f15bf885a28ebb5b81d004953111117f7147 SHA512 6f47ef0518e4518e471565ffde297af0b916584847d02f008a1398fb0cdb1ff52d8c5ce82623fd0328307d2f6c4e055d5f10677ddaa89d231219ab22fe0f8b3f
DIST thunderbird-60.4.0-pl.xpi 480723 BLAKE2B 0f7c65b34d2eee235eb5a1423853acc40677fbdfb31f6cc79ef9ab1d2cef59e91fc7540ec8daf97f3e98dbf568a552f7ddb7f2e82da4a8296395429293557a33 SHA512 63e4829b50da8f77e1cfd52af55bf0a62db654ff1a884faa1e07cd93adbd497d52055a668c1c13916d2ee7dd2b9409544b3abec0e89192a4ecc3865f202c9b42
DIST thunderbird-60.4.0-pt-BR.xpi 585017 BLAKE2B 9fb69d8cc8218ee08ca295c02bfbe7f373487a726763be137ac68249e880a6c03ee9ce90a839cf215b3ddd744b65b5bbdcff5bfca68cc24ed356b92faf330bc8 SHA512 a217722e15170c5bc96a6eb0f0d8a9ec155f21c896dee641cba02fa5683670770b884c0c5dfc2b6fdb8138c5bd9d346bbfb663e41f2f7b52d7314540df9c53c7
DIST thunderbird-60.4.0-pt-PT.xpi 593185 BLAKE2B 1c63b8aac1623ca292a949f8bff21d2ce6581d2d6f075649c2b037c80c069a42b0e6e5793bc40bb292ab39567b4bce5cde2f53a9f82e2a193b9f9d8d78a880f6 SHA512 b03e5b4eeeb39ece0bf7b060a2abda8ac90ac7ef541bcf754024ee48e0606877ce6be88ccf41eaef64ad78b77fed44919d9a70318e71f2e1228defcbfebc0652
DIST thunderbird-60.4.0-rm.xpi 578383 BLAKE2B e43dd5e487bcff7e610ed06fe071a88a7f7e0e7f1aa3dc0ab2834b3137b82c24c44574d5444cbd657325a0a5151e18ee1f66bad82707b075083435b2cc5cd2dc SHA512 cca060bba2ee99004408bc29cb78ae5999dec217699124a04b419ed05082c9daa99516478f5c339211113662bc1b76e0c8bddfbb6ac399011736bd03f99deabf
DIST thunderbird-60.4.0-ro.xpi 584307 BLAKE2B c4a35c8d3cfa0b824d4171de2260654e88b2c931c61f9f7c7e693ca18778abca048d3960b33e962a14f0cb6bff1de79e09c25ea5e34c401f1b0258a48cbba151 SHA512 6d8626bbac58c668496f4f888d8cb56ad4baa2ece46bd6f7f2ee4d812eefad042dbc5ad21b0e2523e23f2210406a538a3b3da7d90001233d355f6c1968285d28
DIST thunderbird-60.4.0-ru.xpi 694705 BLAKE2B cd04cc3330f1a73b43feb09b3d84fd0ee0067c1b51ca885793ede49a706ec0063c93003d414b39bd32257044c75facca0011ad82dc18375942e6ffae0f030c85 SHA512 7763c755278d74edc01b6dac685dcbdf71def72f39b3d6cf43d710d6ffbd642d40efc788359570a7b4aacbee5bc08ee189a5c1a3a46c6c28d8d5596fc1df580d
DIST thunderbird-60.4.0-si.xpi 643791 BLAKE2B 9e9c617cacd11121bfc6fae4d383b9f63a175ad38e9f4ba3d168009d57a81f3fb47645c45bd4b2238a9284b732ca972216b053a13a2ba640fac23c88d75a1ade SHA512 04003ae1082b20ae69a1dc216fb7a0a620939a619158d78e60e7192ec3cde6c653d1349bf9244d20c213a371926614f4d42cbd2fe209fe9ebcf54b95076181cb
DIST thunderbird-60.4.0-sk.xpi 612216 BLAKE2B 1c18381f0671b79f651de08c520880c45df9a3660fb152b272f549535c56bd2c71dfbb716dec1a1df1509ae387640fe886fd6b258b68fbe679aee137100da010 SHA512 af3b6ac24e5dc8ab1d7845cc309cc5aa91cfbd0afc48415db3d2e010457a893b02e34b24b55e914fac9d1a68ff65c7bf3662aa3c7d67034a42422a697106fdd1
DIST thunderbird-60.4.0-sl.xpi 589946 BLAKE2B 028b47e4f3db37b815ad2251e37ff7dadee607469ff54e52ee8866cc5c0ab95e06f907b7fa2180bb727349f170e2d43fe9972e671ae9684aa8eb8a0a3426c7f9 SHA512 2262ddf7374baf721e6fc656eed57257c8b688feb27a677fba58833ee3fbd7e7913b78e57fca68215927856a5e496ea70ab86d3e1ede0ddafdeb7fac41b6a78b
DIST thunderbird-60.4.0-sq.xpi 593096 BLAKE2B bab5e86609db40a7110ddc53735639486968482325298503571237416b8a0e9349c148a8a3d6f08c4cf007057869d8d57081c0f48d150baa3ade2200ca2fc40f SHA512 b7739661c0f5f08ed323cc259cb4f4c0eee44e0283898c8dedaaa2416621dff82d8099509ea9445a5455935e277dc171d332bb7e702a85d8a938235562c28e8b
DIST thunderbird-60.4.0-sr.xpi 637720 BLAKE2B 6a2b470a9fcf191d161d13c5409642a15cd42ae3b0f2780a69f541b5c64e79f11826f4f00e3e7573a8f304761d32315991228fa6fef6c809ca90af9a0b50bebf SHA512 b79fb4646c2a605c0ee49b6d86fa461d77fe4ea7bfaf000cd92aae102d1bfc7394d49797d5bb5f9f4476c17482c8bdc78598160b280c52f9b7b878cbcb035918
DIST thunderbird-60.4.0-sv-SE.xpi 594077 BLAKE2B 69613500ae6e6f85553cff20af7370f2c3b9e207b4de1cf1d58cd7893242b53e24b3bdb33ff1db2c99c04d30a190b7f1d0004294ba95ac077f5f217117602aa9 SHA512 662c342d1bd529c9627392cae518ef6f629b82e375dc39cec7438088e5fd75cdd0c4df71850bc2b8e48bff1d50e2a96817e23a62f374295bca063b76261b5650
DIST thunderbird-60.4.0-tr.xpi 598009 BLAKE2B 62278cb78689be8171fe4bc5289d2a975646c30ed05b482c3f8619babd93b5c51189a8b3b0b601686f6a6aa5b6cbf76ef915476eb809ebf99c646cc048491676 SHA512 b3256a8ce7f9c2046aa33a6ad2e3b70d35da9e2926d281e13166ca470a9a0f27baaa0d7f26dc6a565630a6333427871e5b46fe3fa985e4af4274a8e5cee0d810
DIST thunderbird-60.4.0-uk.xpi 684154 BLAKE2B 11c6dc427422ef2b13e47cdd1265bd8c9d65a17b53bc03c078aae09c0b3c072f0bdbed7f19a24ad84594faebc5f9196a25dbb12f90a8f64bb60f3b7fec5eedf0 SHA512 617b04ca327454c9936fb2293cb7975a9439ee7308dcbf7d83643beeb88f04787e420e86d8c981ee09df57b577ca3baa10b2608c93119deef6ac07b78e52f943
DIST thunderbird-60.4.0-vi.xpi 638420 BLAKE2B 3b081a405cbbef4b7401628052e6a8cd35307f5bc2fea44190dd0775aaf5ab0e8895aaade89c395e6b497e86d1d1718517b7afed8fefed7ce98f32f07dc5a786 SHA512 e4a12334e86fb3a6930716d306d1f7535ead42b93fcde31b226746fb04239cbb88fba81b06d1756583975628d2478629d68e977ef6c355ca3f3e0d8a6d341d23
DIST thunderbird-60.4.0-zh-CN.xpi 622465 BLAKE2B a67a0e99d35a1eae51f2eee63cdc813c37dbc7987c96f6bfa836f27680fdb9539410377387993d958a59e9cb691f95920d0a6d485b0f321ded6167d6c4e751c9 SHA512 25d996d302a32eb837345626a848d83c4a7c59f2d0a21b08c6a67e34e71b51d975553c7845f4f9a1a344d9a958045ed06349a55d86536aad9621d0b5662a23bb
DIST thunderbird-60.4.0-zh-TW.xpi 626189 BLAKE2B 51a6efb083d9f8cc8d0caf98ecab691cbfafefa1b091d66ea05f63b473b4f58986c653dedb5cfbc19836375a3907a95dd2dbaac7c06f266d7a7195a96086b22c SHA512 6c78a9c4f336e8ae322690ed06179195c2d230faaa0e7406c23008402e9c6a6df414ac103563d82cbecbdbbadbfc91e6694d0966206c54c4767a24a4cf4a8849
DIST thunderbird-60.5.0-ar.xpi 627179 BLAKE2B 7f6b8cffd759c9b4520ce0d53844320dfb57ef05b0ef65957e681e700d20fcfbe64efed607efc2fb3144485d5637a29b1044dab6c56b5136f385d9e038dfc8b2 SHA512 60ea5813e8c4d9701e1359552cb3de969374902316d1c4f132fd0f7a4671b199245d02f08b25cf87315ca6b78f978838f6f20843dee31731a501dbe56b89467f
DIST thunderbird-60.5.0-ast.xpi 559643 BLAKE2B 026891e05f09f8444bb67689f5d39727645cc809f052166f0bd61d29c4bd1170cb3b8fa23544316997a912d494041afc2d17d2169102fc6c623167e605607d43 SHA512 4db0e0d348783532740be9d88634766b3baa4ddd571525ef143fcee9d350468af81e2e1bded6d25e9b2640151450061402a660b3a0abaf6de68e0584edafc66f
DIST thunderbird-60.5.0-be.xpi 659079 BLAKE2B 7d4f6ca2b4bdc8e8df419c9bea19b470ab9d360095fbb332173dd63540aa4482db751d33f34147a433d64a3f867e9a7713b70cba2518c4b437b7394db7bf05d3 SHA512 b3a5fcabd83c8a1cfa51d0d1ae6f711bd57ca33726d896d4b10a59f70f3372c2fe6706bc4e78d1671507157024adedd6580c664162a696ade2552f8cfade4ddb
DIST thunderbird-60.5.0-bg.xpi 669318 BLAKE2B e4b166de167c1005381b0d111d1f039dfd5d011438c0e4ae9e0a123e447d236f5fde76746c92448d436d064889418ec8ee39d4cc9547e7c4583bed184d098037 SHA512 4e7120e02210db51d530e779a872f7a1358db6556006f3372b79d84bf2d276f98cb084b43b9ab2c87093ea69bc1d833113792fe4058b87b9b1ede46d87db34bf
DIST thunderbird-60.5.0-br.xpi 580371 BLAKE2B e1a01e7ff5a20a7806fc9b75386b9808d60bd8c2ec64701e3d2c261cd3e0ac6fe8f63e89f86d004d3029996da3d73718fa1042e4814d852ef79555a4f121e45b SHA512 252e7f17c4b115127ba642dde02c09946516c799a96ed1830960deddf216c5ba51f961735273d12077e90df324eb732e23532d5749ac47ef923ced830e2a275a
DIST thunderbird-60.5.0-ca.xpi 591971 BLAKE2B c4b20b7b80eaeed0bb4afb9d42fd2f2b79477348a99fd651ba7974e9cc1476267693f50aa1cff48a7fa912fbcf554a501a4f6380ddad046c2d84726749bd4d8a SHA512 28ee3307ae33ab4ce6d0b71378a8bdbf2a5070f43b7271a40e532e255ec3c71a6556a403ca4c498c2d886cedccf4046c27442fc1e5001177fdee299b5cd03226
DIST thunderbird-60.5.0-cs.xpi 611203 BLAKE2B fb13c8d8954ab8086efe2aa3ef702fe6accdc5f9b2bb06735553f5d2ad10cd04e39bae8381d66e89936ecd35ff698292719b1ece3f0ba07a1173d65410a9bec9 SHA512 662383c0bfd13c440079a2462f9a8621e80d4fbceb488e9c18d13569ae10c4dfc4a6f0b6eccfd6dce20c9b22cf10bb5ab70e8b6eb763002d7fba2a03f93a69fd
DIST thunderbird-60.5.0-cy.xpi 586038 BLAKE2B 9aefdcd8434931c8adddcd62324d62a9deca1d220a67d9a2c53bcce6a8ab0f0a111c69e33dfbaa99a307ac4d903584acff3bd02116be35ef5de1f4ac644c046e SHA512 e0031700cd628425aec0e8b5eaec2dbfd1e00a8b16681a611a21962e7c45812c8d33c1899118c32f4b704e56a62cfac44eae3685dac7d85594b80d873340f6da
DIST thunderbird-60.5.0-da.xpi 570807 BLAKE2B 48c5eb1f770ac8a85e36f1bfdbd254a0e86330484cdf5d6ea1facc9aed5d9884683b4c999f73ca640a1970fcce54583f78ba61f4257459f3adcd48e5f1792c86 SHA512 2024090a092139e17b36ff7a7411d76ba28c8e1532f0a3b432008810a29db8f4845cfbafbea095abc50aaa2a4ade32122635a8bdfff62c7ff40029266b3395be
DIST thunderbird-60.5.0-de.xpi 582575 BLAKE2B 01bf92a1162ee647616b37e2e608372147dd77e7dd462278511b49f91c38f294101e11d2bc1a109ad382fff962e73d320a18d337bbcb170fca40d1da095c2670 SHA512 5c5a8f1391b01068ad51f27746639fe9f0a9c53713f2b6b0c55e559b5d822cbf80ce8e7bf180ead73df9bf1d990f72138411d871faf33f93607d04ff28b350f6
DIST thunderbird-60.5.0-el.xpi 694860 BLAKE2B e99625ef8fcdfbafa58ce9efa2602f97b54ed99c78f5d160b8008b6a4e43fc26ba0aae0d8329d47b3131a69535b0ed5484203ff7578a94ec26226df092c9da98 SHA512 436672cccb30818047645650b862515bc5aa2f6e73af7dfbc49039fe90c33c861a00294c54eaeb2adbb5729b89ff5ca14cd8357ce08b1382376357ac35cb243a
DIST thunderbird-60.5.0-en-GB.xpi 553895 BLAKE2B d17af087905cb420a27f2a45e9cefcf248b55b5dbdeb3f0ce6a23f9bff92ac43eb9b70591ea898685be13f4cdb9dee3bb73cfd3b7a1f8eee783f33ab15f0b00f SHA512 15031df8c1a434a9bf6889f33a1acab913b0992d150a4bdfd6c33a5a9e601213af8c465a4de4bdf09663f07356da2ea605ce405ca7152f14a1ee2fb271cd18a3
DIST thunderbird-60.5.0-es-AR.xpi 595048 BLAKE2B 4660750f8ffed6c68bd18fa6e040278d703e7d47d58e18183128ce50dfae12603febb307ab5dfa8eb849d678d7fe9ad60f9dbff58bc57d888cde6c18c092a216 SHA512 e2ac1f83b62b414b4cda8060e3c844cd7001be1a7cceecebd007486271649142e63aab79a48d5d6f15118efae7203c2a8530ab45306a7181de38dff76a593452
DIST thunderbird-60.5.0-es-ES.xpi 492211 BLAKE2B 44bbd84901e5f41671c5abb25b63d4b5fab126bc485e9666b324a8744219cf038f3e478ee691baa8a3f60681da90ec8b3ebfec70c2be852cb571d9fdd49c5fef SHA512 f7bbef381ab621153e10d908d9cdfdada14e9f699abcb26c26083b25125fe0e3eca193bd1508d40a4e12ba54b7758be53ed0bd1044f3f9f5dd388645e8534b06
DIST thunderbird-60.5.0-et.xpi 570867 BLAKE2B e4eb0796f23c5e820c877219fd174af659000fa1713889a3e258363877b377f7d4ccfe60df61e96cf7c6dfd7b51ccb38bffe984f2223e959e1cd5c9f054f77ce SHA512 da1b57bb5b57c1d9d966d7325923bbe761299a0395c7c3111d036a6c3805b375aa059725027ded0d3c404b8c7a7780244cb98bc708ade8164c073813398dbee0
DIST thunderbird-60.5.0-eu.xpi 581384 BLAKE2B 3d756b21cfdb6541de087fa840f4d41834b30c38bfff2e96cde4d02537be7ab3da30dcda32afacc915c173a84b24f8a736afc1e44413607f3c728bb3add03358 SHA512 601c3195d87c09c16551cf0f2cf3e2b18e784561d73608c500d2274883b5eb6e6fe832edc34782512fdc1f7b1de3dae7cf8d7f26d9cfcdf07d450182d12dd3a8
DIST thunderbird-60.5.0-fi.xpi 575755 BLAKE2B 52715565f551006b1da86e8b736b08c73b4d229860a09fa0ada00baeaa0e4b2b9933c653dd03867450025c3b40478b5bdffa95aeb12f2065ba668d5a2be66f0b SHA512 06e99fb9d36a92fe8db863846bc2212ebf8e8a8ccde52142ab758ba57de17fa4031af4eb207a2448462bc42ec30de79a51cc9d67b0bf74d68d8725feb99d1b35
DIST thunderbird-60.5.0-fr.xpi 608467 BLAKE2B 7639fa8a51449929c0abcf8fe67f450160c92a328a727d45de09d7a134040eeb5b875606a790f9e3948ce02fc21650a37d38fc30d475a9c84c02db6cec4d3ca6 SHA512 165b3353e3364a8c805c6b25a75769892dc9a89753cbde1756554bf184292dbdc320d3a583b2f0b01492ffb7a476bbad063513ae82e58eb1a8233fab8d7da58b
DIST thunderbird-60.5.0-fy-NL.xpi 593851 BLAKE2B 28bb9db71ecf7a43de3ca3b63920bc43aeba01bd49669a5ec86320a34550e20ddd42638868b93f484eacec14b2fed0d33ed222772add895c7523e0ec65c5d21d SHA512 c41219f6a39010be5f9eebfc9c041d9d50a36104ec6635774708960f6db8fe88bc25957abec3cedc712be204545cd660a1ef5edd81a1cb25739321ca522fa04a
DIST thunderbird-60.5.0-ga-IE.xpi 603506 BLAKE2B 753d1c27a551b1bcebe999e9dd19c3cc4ceab6339495fc537ca946d4c86d3ddc82952f6b50317cc182e56c1f3d70d568c40a2e8d086f72aafef82397c936f30c SHA512 fd7cb2efc5cd004c4658da0a35587afd843a02fddc2b16e648084bc007de58f23ca279581f6a7f916b8b7135d878ed0347a9e7ae4d924b4856af45495d4c313b
DIST thunderbird-60.5.0-gd.xpi 599262 BLAKE2B a90879789bae895252df94a77d5e7f6d8bd65df884eaacc36a85afcc9aa66e3c52e8cb3b987a48e300b079cc2f30f935694dc5549beed8ea64588091fc5bccf0 SHA512 057b0deb04c462148e9c97e8112e8846427da0e788a1dae49d6b9df6784c360dc78af516ea80859491b62162a41f453b67cbb6ed6dd9d98c63a35d01f6975836
DIST thunderbird-60.5.0-gl.xpi 580353 BLAKE2B ed0906ca51275965b6dc3a077d4abf3ecebb57ca260b602ea54816a00c26b2c40356ddf698e0941b1084d2abce88c667cdf29bef24845dca40acf652eebec959 SHA512 4f9144fc4e38fcca19c8f63aa7932115728180fd56fe5b6e41d128722261b854cb5110fb7e493c1a1f11a2912dad76d98a36fbdd5af96240b5f3ac1d0705dbaa
DIST thunderbird-60.5.0-he.xpi 617144 BLAKE2B bbd99769be4231de070888247137760b77038044476849b52c0e3ea289d72c03a21ed07cd67801b70b0d9b43b8c25c4eb7514c3b92e96a84e11b71faa4b4d3a3 SHA512 ef8ee05489059741c4650bc798121ce77d5b8bfcf2123c532414c765a2f9a263217e0c96756dd246ca82bc8190e22ffec0914d4efe088e9fcbd23d957ae73325
DIST thunderbird-60.5.0-hr.xpi 582238 BLAKE2B 7801ad3065dc28769ce657ff0b09a1941523d1824cafb6e9ffaab753794069b85d22418b0de9b44a5d2312317ebbf0ebb38685c0edd1b7192deff5e9798a3151 SHA512 ad7945f47dd253099ec8bfb379e375f4c279ed0a7eb42f0521bcd8a85b10478f5f023cb8a4aec942ca3403714932271688ef89f850ffe92a79a253adc0c5cc8e
DIST thunderbird-60.5.0-hsb.xpi 615132 BLAKE2B 0b2f0c88d7f891da420864b7c3b2c0427fb3b536a16ef15973eea73c76b4c3c8a4454b1c5bee42190828432a262663b49577b0b69d7adafd035cf13f2ac55462 SHA512 96f5010f90fa9516fc3ac55e9a2a7dba508fc5f3f92b75e74b22746101ff8d0b9ca88a3795a30cf5396b74b13e7572e31b9ddda034c6f6bac604194e86a7ca9c
DIST thunderbird-60.5.0-hu.xpi 615346 BLAKE2B e278f4de57bddd68ccc3e5eb008a6e5356066f895bae36f864a07069dc77532039e7afe956d69de8f030889c1e01c55a40cf7e823c836bd7daffc406a1ae8a3a SHA512 65f238cd989d0c995fbf58b1752d39a261b30fea7161dee0eab9d60c5304cb6f793574dcd61858bd653185de3d58107c3c0a5cf7247305f23e7c0d7cd787e1f1
DIST thunderbird-60.5.0-hy-AM.xpi 653530 BLAKE2B 9708b8b7755acf6e9367b90763acfa2ad125c628faba2c1333c9f84a9e74091d1062d86ec28775337bb458e7cbf3b71766eb7fe0e5fc08ce0a950bebaa6f85d2 SHA512 5e4c0dfa0d3c7ebcba64189837f8262ee2c14febf92b35f4a960290e37f486bee1b2a5d7efe168c7eb562d13bce3e9c11bdf721bacd3b76e0f3634cb4eae9d98
DIST thunderbird-60.5.0-id.xpi 568861 BLAKE2B 5c36aeecf73228c125b6be222812f1793a6fa4f7bfe2833fc85cb85ac3bd3db40d5b0bed7fe258920d6859de27be2e5f19d6f6fded4b878cecd683b7376b6e8e SHA512 dc48360c172d793c6c149c08d1cf48ca20781a7185ccd11179f063f06bb39409c184bbe04b1e736cc2f90dcf248e22539447d980146a967566ed61496e87b8c8
DIST thunderbird-60.5.0-is.xpi 579047 BLAKE2B dd98d59fd15a55c1f99a05d0ee3d641dd0b963ea69e3f594d3bd5f0bbfac3ea91c725fef1ef4cb824814d4d9395cf3d3b6f22de6b33cfcb297d38c3fe88bc7d7 SHA512 c5c07e69ff6ca9719b8d12d029a20476035b5a8d13e793d1fb43dfe33321ba6e3b01cf6197040b9cd9c2261726abd6d5b453aa67af2dbdab27a0511c7bfa7180
DIST thunderbird-60.5.0-it.xpi 477500 BLAKE2B 7470f91fd7785ec8d9d2cf56a2bd2a2cc40a061a4429eec663ea67ea248b6ad79200776570c06d12d9e1a131fa602554ac894c981d510885ade0b4027a0f10fa SHA512 e6d72d77cb372f749469c3aca5994aa65a3e6994660750bec4b4b2f088305d2484845e37eabb2b11fc69261a9744dc2afde911977a510dc436c03574d0876e86
DIST thunderbird-60.5.0-ja.xpi 653342 BLAKE2B 842a214272dd620fdbe7a20ea188d0dbae436c6e1fa68c1aea2b3d7b9d4ef44c3732471616dc3ccf8279877c0b49688fd18cbfaef02b1bcbecd99498fa9c800e SHA512 c234e0d58e60e95b0e0f9bf81977cdf27fb42e685a540c6f0065d08bd4696002060ce20c8056c7c0b069b08ce2d4edba22dce5eed327af908cfcf33b52bc279d
DIST thunderbird-60.5.0-ko.xpi 619730 BLAKE2B 487d30d44c0d2dc4e0b4df1324339a1aa0db5a7d451bae38c3276e2e741f81c9df314f1cde3abc325a39c1b161baa00ebbe5414330ba6715220a489848d1472c SHA512 bdcff86819b04a495957a944c0041cbd8f5704aa74fec483d16a27644b048aea5acc2c7cb14487ac0b85f54939b4205b8e669aec96659087a994243117885b06
DIST thunderbird-60.5.0-lt.xpi 605441 BLAKE2B f1b59bcd03ecb0502016a48d432b17d4f6ed3a8c03378097808abca6dd3377cd648639385d7b58ff16bbe713aa433e0ec073a83a662960fad9dadbcad345e0c3 SHA512 816aa846ccfd06f5443655d24b5169211d056072c6459d28501b898db96e95c5245ecb25c277613c190dd1f117061d7fdef76310ffb3f6db1059adc032a73dcc
DIST thunderbird-60.5.0-nb-NO.xpi 577003 BLAKE2B 7fe44c0146094aebfa1f24041e66527d7e92f0acbd219d7d318cc397ce0127637fd899cd80762a9781c7180184198e96ce40de0481a0c45b3478151b2291c849 SHA512 a7d20a44dc28593acd612f1d7a8c98364f22e94248467d5f7f2d815deba46bb208d2490305605026a95ac4bf9b736b00bc72ab493f109289ee6d45ce7e355b41
DIST thunderbird-60.5.0-nl.xpi 583914 BLAKE2B cee3c378290d38201af8206fc853a8e4ea9985c97f01591da8cd60db93bd0e3856c5806dd4b75daa36108f854a6c03b62c819eadd873f5d22a9d19661826cb9e SHA512 5c1c614bc732eea0ebde6cf603f0768e81a787c3be7c60a4e0b45c2d51d721bebc048dbf97b24b5724564fbd16d8fa21bb656dec279844466206f2e730b6381b
DIST thunderbird-60.5.0-nn-NO.xpi 576422 BLAKE2B ddcb8b08402efd5f6f5cfd91a9721b13a907c45cdddd586a72a843a1163051b4912eec1ba00e7a164b993735aa62c326f233451810f0a0661291ca506de2f26a SHA512 845745331686b1ff159b45cac57591f8cfe4d86ec68b8204b5eec05707ed4ff90944cafaf277be15713b22bf76b3e50c1e460e5f04e505c46bbd62089c9d8265
DIST thunderbird-60.5.0-pl.xpi 480725 BLAKE2B 0ca29b95e2326f1436e9adb5db62f78a56a03df31f56ef8fcd3ae96afb43d65089082f6e0e1b6704272430f9cdf615fd6d9fe456837ebd2641bfb06a2511631f SHA512 bf8b5048e8e7bac39a6c3a1e1a6434e1c86302ab57d0fdbe4bf6c44794e14a1f340d942f6732757fbdb462fa6eb31725acd1327ede30a92d70e3e82642f02b87
DIST thunderbird-60.5.0-pt-BR.xpi 588834 BLAKE2B 8cad9d58b3c6437beb29e78adc3624f5b87ca4cf68a0c0f788868d3923754a215cef387b024d9c39605a4b593ead38292737a9d81621b95e200f06f108e6401e SHA512 947803be4aa5a8435c7cb04e41a5987081afb0bb7cc491d372756947ed908565b0c8474dbb90439d32f026196bca74b7d97b12bb73130944489a4a5285130583
DIST thunderbird-60.5.0-pt-PT.xpi 593186 BLAKE2B ee3bbcbb859dfa26cf791ccc99009358580548e3b58b67e324689188a571ac203e1421e49b0a7afba0df21eaab57bc41ebe784595291c5495aa9086e2b7d1772 SHA512 ccdbe3b0fe4d7e04ab2a4edf15736f081ce95594fb4256a8f637210ce5a9dc309f2083487c32274723b685192b4678a22a8f88b23ee45b2d18847724b14b40f2
DIST thunderbird-60.5.0-rm.xpi 578384 BLAKE2B dfcc8cb6b8870aef82db72a327390f056066ddf422703236f2fdbe9f82af74ea0342ba1a7e4a2d71269ce3219034db3601333867e1d8e73b500d2026dafcb6a5 SHA512 14ea772f65cd70650e8998e40f6950186a617ed19463a2496da45265bc4b67a9b332e5acfc6e4906638252aa2ab7da5fb098a0fd6aa75314e42a0a7b13e3d0ed
DIST thunderbird-60.5.0-ro.xpi 584308 BLAKE2B b2e55942e35e1cae301643db74f9de44acbbfcbebf2e2eb89c766eedf8aeaf35e913affd3a6456eb171fc5ec633b5765b9dbda3836b74f5dc8b0128ec22e5584 SHA512 082c91c17a5b96ba7b3f8290fd5722f109194ecc319958c2e081244cf6ecaa5ff088b1aabc300159f82fb22236c442d75483a35da37cda279bfb41693a170b43
DIST thunderbird-60.5.0-ru.xpi 694705 BLAKE2B 29ce568d6efbb410789d5238cc0cba1fd281efd57d1138540edd50f7b472d525618b6ac68dabc1c2594a29ad49e76ddf118c01417a6aa0d6e4403950e0e48d0f SHA512 b9ff341461f5200a2577366fe9cdd944860c98d1fe90f13d08cfcef659f6bb8273e7b3494b6919d1c12eea9aefa02641e104bde377dae625fff39b16f5fbe5d6
DIST thunderbird-60.5.0-si.xpi 647596 BLAKE2B 4e11ed29beac112dd08d5bd97ed3ebcd18374daa1faa7a99f6fde17bb793e9e3a162c137c6c8b666c1ead094a5d9d1ee722c71dfb66d17f159d48d15fa9735ee SHA512 24b16eab1ef45f9509e02c681365e3afed277ef23462692e209ddbd7b97ab58af1ac556d6bdfd7d5feb0078b0ecf5cd6766f1a9b0a40632523b5453708ca202d
DIST thunderbird-60.5.0-sk.xpi 612216 BLAKE2B d66c36c2160cf7139917fd79bae0c3b2cbea1299613c9f35f8cc2d826474917c788285928d1a58a63768f106c70369d96079ce446437d02b1a8111c49e87ae66 SHA512 7b0ad73839b306382695f9d569ffa909c549a3dc98f18b024b3bec366b8f4dbd8fe2e8c89d3a7bf0dd48460e5361bff353128f68d8b6ebd3a3dd81f475785841
DIST thunderbird-60.5.0-sl.xpi 589947 BLAKE2B 6b3238b96a7aa8351825b36cd152934f4bdd79734faee11119206fc387448cfdacdcc065ad85599e61bf7d2f0a51bdd8e5dfe14787e1833cc6270b316ac48085 SHA512 a9b6fddbe664062381b49bf671343149230f51454b134c9b9aac50675783088a086e60dd5dc1c0204148a6a2aaab9d996931461a2654a2d5a0a0ebbb2e9275f4
DIST thunderbird-60.5.0-sq.xpi 593096 BLAKE2B 2e2f342e29920c313b72dc1e13e90d0141efa81351e8dd2307f7bf3b89ca20d937d60c74c2436b36994ce427f0a53a4e4914565a888645dcc07a98f1bc9fe756 SHA512 ce498ef9f57c6ee2f734777cc80df937c6a1b0d33d8ab8fb5dda1f66f68e76be9698287fac1e9b32bd6f937752d068d4008c8b87b2a30c4eb90ba15302045fb6
DIST thunderbird-60.5.0-sr.xpi 641527 BLAKE2B b19836dbc5ebc96ba4a519a61da8971ffff54b909c851a53815c9e9219ea7d9f57bf3cb1d558c890ca18b7199f16677d711565968943be2abb2c7abba156aba3 SHA512 55c7333b1fcef53c1896dec9103220e668b5ee85c7b2af46476863a2d35bd49025726da1c8ced1f7e5b492be9ae8187263805bc1e2814c5d488d36b4ffbe1829
DIST thunderbird-60.5.0-sv-SE.xpi 594079 BLAKE2B e9f4d91e6bc690039117ad8fbfad43fd77b0c95c25478d051855b57d72553311d0d546093427261c121a95c94ecba3c04a2572238ed6c2b7172daf912484b855 SHA512 7ccedcbb804ddfa160c70955c9a14623a41d99e3475aaa973019495ceb3b30645136ddbb19f28941becbd111214de973fb477bcc239f496843db6b42bb6473ca
DIST thunderbird-60.5.0-tr.xpi 598010 BLAKE2B 0cd0ddbf2e8c019d08c026007f320807d1d8be07f4425f52f75b7b3cc665f6b233e0481dcecd0d64be247ce9c2d6336db9281f320a806a21e817802395fbe312 SHA512 09a77642cdf5c7af170e8d12bc843a8882d5857831a3e54effca37d4698c13ed7df234230b6b7937eab3e03bed10a4fb0b6c8673fd11587fac40c4fa7d3c2f4f
DIST thunderbird-60.5.0-uk.xpi 684154 BLAKE2B 5983c0165806f3710b2dcfbc8a4cc0c6bec0799be87919050537c27629b643310627f1cb288ea88d03c6f043ff52503061c8e74c1f7de340751dbc294d5237c1 SHA512 ef4aa8e3f74222ddfa7b2b6f815f2fd3bfb59709806eec8e38ed0508760dbfdd8caabf91a96ea4849877ee43ab51361bf566a90d353979ec4e911cf285cf8a88
DIST thunderbird-60.5.0-vi.xpi 637199 BLAKE2B b796c67f9ec8c6eb455a7e0914c7867f2b95094ceb1e099bcc6b0fb4b88dfbf83accf8a9aa8d1727979da4953c543f0b777beebcdba138a478ebde7966e1f416 SHA512 9379035dfebaea5c69dd16b62c12c99e2e9bce13f6944aa9636958b60ab40b8efbb309932cc21002b3c743aee932db412d5bcb7b033a3e0cd442704d7c7a9e97
DIST thunderbird-60.5.0-zh-CN.xpi 626283 BLAKE2B cf4bc1f233e73d1ca5802c50f47e166606e14272ea4270346bd202ddff236d08684da0e6e322aeb31d1f5f8d20af00c4820289646be808e6c1ac651dbb2936c0 SHA512 f33da7be766b95051a55d3186b78069e30cfc9f8a1c0db6f7422103fecf3e1b4e466ced904a80785de25363ced9b970319b5b9c74c5da15dd9ebc7bcca3bd75e
DIST thunderbird-60.5.0-zh-TW.xpi 626190 BLAKE2B 43f34e19d95a7ec4b7e51b4e22e849925ae41f3f12e9571d5feed609be5afb0a55d6b47a9a1082ad5a706f1ebf55dd467bbd3bd0c8123e0dedebed27b3f2c8c2 SHA512 12bbe8b1f71b51be31a6311a7ed2b554e07a7b7f86e2ac4ca261d7bafc983e97652f3b95a011c2fe4628637d5220a15e176d8c7eb2023269dcb464daea69e4fd
DIST thunderbird-60.5.1-ar.xpi 627181 BLAKE2B eb7cf6b288d8e736c063a641df3b364007fcd7d5985d96f772cd6d533ddf466fc449657424bf4f35233a9aae15b6ae7d86439eeb26be2ae54d5a8b6412656bba SHA512 6b8e55e444c8dd91e40eba6ff9e5a845ab8d84e92d2a50ebb19ed99359e482727e9647390af9e680662e317f368f64df269bba44bdc3f1e2dcd74b9d5e354de7
DIST thunderbird-60.5.1-ast.xpi 559643 BLAKE2B 12c941dbb4bcac6b14669f02e736e421ef869c56e20eebc3f5062f18daebd227589d7d0511f8ca44fc9bd15f8d64d5a2b201ebf99d0aa00e6c110a65a357f472 SHA512 34dc3028215c2918a77a875c5bd518c662d7a1e516a85f75119e0bd08978e83afaeed1d77b86178ad0dc533fddf8da1c7e8ca2d91061f2cf87847bb77bba9e4d
DIST thunderbird-60.5.1-be.xpi 659080 BLAKE2B 9b1862cc1ee53c19e1bb74d20f9f05683ccc452834a82862623173d051529a9c23a1a167706d9b6322c4c5ce71093057175051f4bc74f2146eeae927510dd626 SHA512 618138a3953f315be80b0d97eda4b72802c9bf01c24d485b2b02ef0ad1634f144c52e0dfefe241f1e3c961df075e78ddc9353fe3e3fda2e3d8eb69d12b10722c
@ -217,10 +110,6 @@ DIST thunderbird-60.5.1-vi.xpi 637198 BLAKE2B f8a96f24bda00dca7833364a8cc8cf38b1
DIST thunderbird-60.5.1-zh-CN.xpi 626284 BLAKE2B 04651784e2a4ed1d18d0d70ffdc21948495c6aeaad5be3d80c2e0b283d12b0bb65c22b4dd9374b970b7e0efbfb6dc25c2c9adc2ec56088fbd1e24f48fc340a77 SHA512 0313b5b5931badb9d89f1caa95c628f9ccba2cad447ea36e5b2c7aaffa3a4e17e8ffa1322eb46c7bd253782b7bba63e2bd6a7915e201aac99a8044c2255059fc
DIST thunderbird-60.5.1-zh-TW.xpi 626190 BLAKE2B 273f6bdb9013f8a1cb9aad9ee2907668ee6a8144f40f5bcce0262c8c042bc6a1f77d001e74d62bc558be24356adb0ea0b3ac2819e55c7d03395741b3712227ba SHA512 d31ae97e8bd0167b021f46088efbc52432e382e167a2999ff55bd3a16b2804ee306340846a3510e98a16bb304cd9f956ecdfa4fd2ffddc4b610729102a6cd8f4
DIST thunderbird-bin_i686-52.9.1.tar.bz2 51223475 BLAKE2B a30b4679ff844fc9f9752fc6048b266662708217021b65406d587c0f8e8c0793eae3f171465bee58bdfcd635a909398bc65d3d4f07c3cd986f9edcf069d06612 SHA512 69121dd8b2445e6304f4437c06e1b7f423b19d4069290c0709a3356680613964df138c417c3d258bc978d8709b9ada28548b43c93ea9122b64daa046d96a6d78
DIST thunderbird-bin_i686-60.4.0.tar.bz2 52473526 BLAKE2B ec4a56376e3466953453a122997024012b0ef6b8b3094722528473d6c5df412af7d999e66bcaacb8a31cc6f57ca5e769450087c3c00f89cad3f5a4d363773df8 SHA512 48b15f12274818477d6618f3d184239789b8538d63b995d48992ef170224b2ad254cabc02330e7ef9e0e4190c17663fa78489226f9cb280d38211cc6431cf413
DIST thunderbird-bin_i686-60.5.0.tar.bz2 52522804 BLAKE2B 07c62546548eda9c9986c6322e531abb3d33cdc5ecf8b5a919d58644c4ac2f7d44c5bc12118665d4aa76af55124c769326e94ad6777312c8230bf8a6403411b7 SHA512 d4f838dc573d9efa2e2e5148cfeb0301d1e63da01bd723fdda9a76bc737e631fb232799f16dc91af2d66cc37008ec538a1d58f42a02cfcaa0333ce6e8c9134c4
DIST thunderbird-bin_i686-60.5.1.tar.bz2 52606001 BLAKE2B fe5b3f60df5214ed250d17e1bbd02c1a415625c2030655c419bb0f8d6de3b411b109e74d5802d07a2d275042fee6f1167288c11d00a81051a1448539be0c7da5 SHA512 150f6674dd95932c713c275eb24194197ae52cb4ac08aac49c1c6302e3734cd3de5580878b8d73c2dfdcc18df311654920914d9562ca85f580d560c372f5807e
DIST thunderbird-bin_x86_64-52.9.1.tar.bz2 49930254 BLAKE2B d0029fc31e02f6790953fa5bdd6057be9d9aa68151bc70c6effa91c17812604998cddd14ef71f2458331ecc85422dcc069311de944e7b10019f422e50fc88fff SHA512 98a35a81f77b58e6f5fca79ee5a56330f8184072c118b571245c7f686d2a196e0cca6f4df131bee066651fcf69b83ca076bb9dd68fa71dd766962694df8e43a7
DIST thunderbird-bin_x86_64-60.4.0.tar.bz2 50400692 BLAKE2B afdfca188be3c6d25fc8b4838c6fe7167f63b4a65dd03a47eef5ffadfa577e5226fb34c85396f9c0b4eed822bfafb83e1b1d65e3dcb9f34ae70216d710d8dac9 SHA512 801676c0c93fd0d6730b5c4719a45888916210d8f65b06eb7b416dc596bed7a0ad2ae79cf11307167c0918b5a60ccbb4ba62e4e1c891c831817d3748f91d7221
DIST thunderbird-bin_x86_64-60.5.0.tar.bz2 50401851 BLAKE2B a0f8df62d135a66127bc2bc9415f1a86b91faa889cac468f67504fa74eb2e41655739a11ba9efe868469a3fe4680d3ddf295ee1e1978bef116ee4cb61f8ef5bf SHA512 9794dba4bc6d6eb1d3852d1ddea087fa4561227805dbbe7ab1707d155606ed43d826b94b4a9e28a4f87b234b0c249b05cc00056a76db77af878cd4698835d469
DIST thunderbird-bin_x86_64-60.5.1.tar.bz2 50384645 BLAKE2B c513677a77dec9372fded1fdf063eba48accd6435095ff8778483a4bb9bdf0f6514ce010d6a1cc474b9d0a1429afd542f3ef0c2688700ce303e18996a8ab0c8f SHA512 99588bd58ef55ff7f9b8b248bc0cbe04707e0f94ccd248f0dd7caa4c1f21945e694deee3b41258c818c33cf845d9a38854a6ded5e225332752942da7dd0bfdc9

@ -1,187 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
MOZ_ESR=""
MOZ_LIGHTNING_VER="6.2.2.1"
# Can be updated using scripts/get_langs.sh from mozilla overlay
MOZ_LANGS=(ar ast be bg br ca cs cy da de el en en-GB en-US es-AR
es-ES et eu fi fr fy-NL ga-IE gd gl he hr hsb hu hy-AM id is it ja ko lt
nb-NO nl nn-NO pl pt-BR pt-PT rm ro ru si sk sl sq sr sv-SE tr
uk vi zh-CN zh-TW )
# Convert the ebuild version to the upstream mozilla version, used by
MOZ_PN="${PN/-bin}"
MOZ_PV="${PV/_beta/b}"
MOZ_PV="${MOZ_PV/_rc/rc}"
if [[ ${MOZ_ESR} == 1 ]]; then
# ESR releases have slightly version numbers
MOZ_PV="${MOZ_PV}esr"
fi
MOZ_P="${MOZ_PN}-${MOZ_PV}"
MOZ_HTTP_URI="https://archive.mozilla.org/pub/${MOZ_PN}/releases"
inherit eutils multilib pax-utils xdg-utils gnome2-utils nsplugins mozlinguas-v2
DESCRIPTION="Thunderbird Mail Client"
SRC_URI="${SRC_URI}
amd64? ( ${MOZ_HTTP_URI}/${MOZ_PV}/linux-x86_64/en-US/${MOZ_P}.tar.bz2 -> ${PN}_x86_64-${PV}.tar.bz2 )
x86? ( ${MOZ_HTTP_URI}/${MOZ_PV}/linux-i686/en-US/${MOZ_P}.tar.bz2 -> ${PN}_i686-${PV}.tar.bz2 )
https://dev.gentoo.org/~axs/distfiles/lightning-${MOZ_LIGHTNING_VER}.tar.xz
"
# the below only works when upstream releases the xpi with all locales bundled
# ${MOZ_HTTP_URI/${MOZ_PN}/calendar/lightning}/${MOZ_LIGHTNING_VER}/linux/lightning.xpi -> lightning-${MOZ_LIGHTNING_VER}.xpi
HOMEPAGE="https://www.thunderbird.net/"
RESTRICT="strip mirror"
KEYWORDS="-* amd64 x86"
SLOT="0"
LICENSE="MPL-2.0 GPL-2 LGPL-2.1"
IUSE="+crashreporter +ffmpeg +pulseaudio selinux"
DEPEND="app-arch/unzip
app-arch/zip"
RDEPEND="virtual/freedesktop-icon-theme
dev-libs/atk
>=sys-apps/dbus-0.60
>=dev-libs/dbus-glib-0.72
>=dev-libs/glib-2.26:2
>=media-libs/alsa-lib-1.0.16
media-libs/fontconfig
>=media-libs/freetype-2.4.10:2
>=x11-libs/cairo-1.10[X]
x11-libs/gdk-pixbuf:2
>=x11-libs/gtk+-2.18:2
>=x11-libs/gtk+-3.4.0:3
x11-libs/libX11
x11-libs/libXext
x11-libs/libXrender
x11-libs/libXt
>=x11-libs/pango-1.22.0
pulseaudio? ( !<media-sound/apulse-0.1.9
|| ( media-sound/pulseaudio media-sound/apulse ) )
ffmpeg? ( media-video/ffmpeg )
crashreporter? ( net-misc/curl )
selinux? ( sec-policy/selinux-thunderbird )
"
QA_PREBUILT="
opt/${MOZ_PN}/*.so
opt/${MOZ_PN}/${MOZ_PN}
opt/${MOZ_PN}/${PN}
opt/${MOZ_PN}/crashreporter
opt/${MOZ_PN}/plugin-container
opt/${MOZ_PN}/mozilla-xremote-client
opt/${MOZ_PN}/updater
"
S="${WORKDIR}/${MOZ_PN}"
src_unpack() {
unpack ${A}
# Unpack language packs
mozlinguas_src_unpack
#xpi_unpack lightning-${MOZ_LIGHTNING_VER}.xpi
}
src_prepare() {
default
# Lightning
local emid='{e2fda1a4-762b-4020-b5ad-a41df1933103}'
local emxpi="${S}/distribution/extensions/${emid}.xpi"
if [[ ! -f "${emxpi}" ]]; then
die "Lightning is missing -- something is wrong. Please check ebuild/src!"
else
ebegin "Add localization to Lightning ..."
# hide warning regarding extra bytes at beginning or within zipfile
unzip -qo "${emxpi}" -d "${WORKDIR}/${emid}" 2>/dev/null
rm -f "${emxpi}" || die
# Install language packs for calendar
mozlinguas_xpistage_langpacks \
"${WORKDIR}/${emid}" \
"${WORKDIR}"/lightning-${MOZ_LIGHTNING_VER} lightning calendar
# roll a .xpi that mimicks what upstream would roll
pushd "${WORKDIR}/${emid}" &>/dev/null || die
zip -9 -q -r "${emxpi}" * || die
popd &>/dev/null || die
eend 0
fi
}
src_install() {
declare MOZILLA_FIVE_HOME="/opt/${MOZ_PN}"
local size sizes icon_path icon name
sizes="16 22 24 32 48 128"
icon_path="${S}/chrome/icons/default"
icon="${PN}-icon"
name="Thunderbird"
# Install icons and .desktop for menu entry
for size in ${sizes}; do
insinto "/usr/share/icons/hicolor/${size}x${size}/apps"
newins "${icon_path}/default${size}.png" "${icon}.png"
done
# Install a 48x48 icon into /usr/share/pixmaps for legacy DEs
newicon "${S}"/chrome/icons/default/default48.png "${icon}.png"
domenu "${FILESDIR}"/icon/${PN}.desktop
# Install thunderbird in /opt
dodir ${MOZILLA_FIVE_HOME%/*}
mv "${S}" "${ED}"${MOZILLA_FIVE_HOME}
cd "${WORKDIR}" || die # PWD no longer exists so move to somewhere that does
# Install language packs
MOZEXTENSION_TARGET="distribution/extensions" \
mozlinguas_src_install
# Create /usr/bin/thunderbird-bin
dodir /usr/bin/
local apulselib=$(usex pulseaudio "/usr/$(get_libdir)/apulse:" "")
cat <<EOF >"${D}"/usr/bin/${PN}
#!/bin/sh
unset LD_PRELOAD
LD_LIBRARY_PATH="${apulselib}${MOZILLA_FIVE_HOME}" \\
exec ${MOZILLA_FIVE_HOME}/thunderbird "\$@"
EOF
fperms 0755 /usr/bin/${PN}
# revdep-rebuild entry
insinto /etc/revdep-rebuild
doins "${FILESDIR}"/10${PN}
# Enable very specific settings for thunderbird
insinto ${MOZILLA_FIVE_HOME}/defaults/pref/
newins "${FILESDIR}"/thunderbird-gentoo-default-prefs-r1.js all-gentoo.js
# Plugins dir
share_plugins_dir
pax-mark mr "${ED}"${MOZILLA_FIVE_HOME}/{thunderbird-bin,thunderbird,plugin-container}
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
xdg_desktop_database_update
gnome2_icon_cache_update
use ffmpeg || ewarn "USE=-ffmpeg : HTML5 video will not render without media-video/ffmpeg installed"
use pulseaudio || ewarn "USE=-pulseaudio : audio will not play without pulseaudio installed"
}
pkg_postrm() {
gnome2_icon_cache_update
}

@ -1,187 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
MOZ_ESR=""
MOZ_LIGHTNING_VER="6.2.2.1"
# Can be updated using scripts/get_langs.sh from mozilla overlay
MOZ_LANGS=(ar ast be bg br ca cs cy da de el en en-GB en-US es-AR
es-ES et eu fi fr fy-NL ga-IE gd gl he hr hsb hu hy-AM id is it ja ko lt
nb-NO nl nn-NO pl pt-BR pt-PT rm ro ru si sk sl sq sr sv-SE tr
uk vi zh-CN zh-TW )
# Convert the ebuild version to the upstream mozilla version, used by
MOZ_PN="${PN/-bin}"
MOZ_PV="${PV/_beta/b}"
MOZ_PV="${MOZ_PV/_rc/rc}"
if [[ ${MOZ_ESR} == 1 ]]; then
# ESR releases have slightly version numbers
MOZ_PV="${MOZ_PV}esr"
fi
MOZ_P="${MOZ_PN}-${MOZ_PV}"
MOZ_HTTP_URI="https://archive.mozilla.org/pub/${MOZ_PN}/releases"
inherit eutils multilib pax-utils xdg-utils gnome2-utils nsplugins mozlinguas-v2
DESCRIPTION="Thunderbird Mail Client"
SRC_URI="${SRC_URI}
amd64? ( ${MOZ_HTTP_URI}/${MOZ_PV}/linux-x86_64/en-US/${MOZ_P}.tar.bz2 -> ${PN}_x86_64-${PV}.tar.bz2 )
x86? ( ${MOZ_HTTP_URI}/${MOZ_PV}/linux-i686/en-US/${MOZ_P}.tar.bz2 -> ${PN}_i686-${PV}.tar.bz2 )
https://dev.gentoo.org/~axs/distfiles/lightning-${MOZ_LIGHTNING_VER}.tar.xz
"
# the below only works when upstream releases the xpi with all locales bundled
# ${MOZ_HTTP_URI/${MOZ_PN}/calendar/lightning}/${MOZ_LIGHTNING_VER}/linux/lightning.xpi -> lightning-${MOZ_LIGHTNING_VER}.xpi
HOMEPAGE="https://www.thunderbird.net/"
RESTRICT="strip mirror"
KEYWORDS="-* amd64 x86"
SLOT="0"
LICENSE="MPL-2.0 GPL-2 LGPL-2.1"
IUSE="+crashreporter +ffmpeg +pulseaudio selinux"
DEPEND="app-arch/unzip
app-arch/zip"
RDEPEND="virtual/freedesktop-icon-theme
dev-libs/atk
>=sys-apps/dbus-0.60
>=dev-libs/dbus-glib-0.72
>=dev-libs/glib-2.26:2
>=media-libs/alsa-lib-1.0.16
media-libs/fontconfig
>=media-libs/freetype-2.4.10:2
>=x11-libs/cairo-1.10[X]
x11-libs/gdk-pixbuf:2
>=x11-libs/gtk+-2.18:2
>=x11-libs/gtk+-3.4.0:3
x11-libs/libX11
x11-libs/libXext
x11-libs/libXrender
x11-libs/libXt
>=x11-libs/pango-1.22.0
pulseaudio? ( !<media-sound/apulse-0.1.9
|| ( media-sound/pulseaudio media-sound/apulse ) )
ffmpeg? ( media-video/ffmpeg )
crashreporter? ( net-misc/curl )
selinux? ( sec-policy/selinux-thunderbird )
"
QA_PREBUILT="
opt/${MOZ_PN}/*.so
opt/${MOZ_PN}/${MOZ_PN}
opt/${MOZ_PN}/${PN}
opt/${MOZ_PN}/crashreporter
opt/${MOZ_PN}/plugin-container
opt/${MOZ_PN}/mozilla-xremote-client
opt/${MOZ_PN}/updater
"
S="${WORKDIR}/${MOZ_PN}"
src_unpack() {
unpack ${A}
# Unpack language packs
mozlinguas_src_unpack
#xpi_unpack lightning-${MOZ_LIGHTNING_VER}.xpi
}
src_prepare() {
default
# Lightning
local emid='{e2fda1a4-762b-4020-b5ad-a41df1933103}'
local emxpi="${S}/distribution/extensions/${emid}.xpi"
if [[ ! -f "${emxpi}" ]]; then
die "Lightning is missing -- something is wrong. Please check ebuild/src!"
else
ebegin "Add localization to Lightning ..."
# hide warning regarding extra bytes at beginning or within zipfile
unzip -qo "${emxpi}" -d "${WORKDIR}/${emid}" 2>/dev/null
rm -f "${emxpi}" || die
# Install language packs for calendar
mozlinguas_xpistage_langpacks \
"${WORKDIR}/${emid}" \
"${WORKDIR}"/lightning-${MOZ_LIGHTNING_VER} lightning calendar
# roll a .xpi that mimicks what upstream would roll
pushd "${WORKDIR}/${emid}" &>/dev/null || die
zip -9 -q -r "${emxpi}" * || die
popd &>/dev/null || die
eend 0
fi
}
src_install() {
declare MOZILLA_FIVE_HOME="/opt/${MOZ_PN}"
local size sizes icon_path icon name
sizes="16 22 24 32 48 128"
icon_path="${S}/chrome/icons/default"
icon="${PN}-icon"
name="Thunderbird"
# Install icons and .desktop for menu entry
for size in ${sizes}; do
insinto "/usr/share/icons/hicolor/${size}x${size}/apps"
newins "${icon_path}/default${size}.png" "${icon}.png"
done
# Install a 48x48 icon into /usr/share/pixmaps for legacy DEs
newicon "${S}"/chrome/icons/default/default48.png "${icon}.png"
domenu "${FILESDIR}"/icon/${PN}.desktop
# Install thunderbird in /opt
dodir ${MOZILLA_FIVE_HOME%/*}
mv "${S}" "${ED}"${MOZILLA_FIVE_HOME}
cd "${WORKDIR}" || die # PWD no longer exists so move to somewhere that does
# Install language packs
MOZEXTENSION_TARGET="distribution/extensions" \
mozlinguas_src_install
# Create /usr/bin/thunderbird-bin
dodir /usr/bin/
local apulselib=$(usex pulseaudio "/usr/$(get_libdir)/apulse:" "")
cat <<EOF >"${D}"/usr/bin/${PN}
#!/bin/sh
unset LD_PRELOAD
LD_LIBRARY_PATH="${apulselib}${MOZILLA_FIVE_HOME}" \\
exec ${MOZILLA_FIVE_HOME}/thunderbird "\$@"
EOF
fperms 0755 /usr/bin/${PN}
# revdep-rebuild entry
insinto /etc/revdep-rebuild
doins "${FILESDIR}"/10${PN}
# Enable very specific settings for thunderbird
insinto ${MOZILLA_FIVE_HOME}/defaults/pref/
newins "${FILESDIR}"/thunderbird-gentoo-default-prefs-r1.js all-gentoo.js
# Plugins dir
share_plugins_dir
pax-mark mr "${ED}"${MOZILLA_FIVE_HOME}/{thunderbird-bin,thunderbird,plugin-container}
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
xdg_desktop_database_update
gnome2_icon_cache_update
use ffmpeg || ewarn "USE=-ffmpeg : HTML5 video will not render without media-video/ffmpeg installed"
use pulseaudio || ewarn "USE=-pulseaudio : audio will not play without pulseaudio installed"
}
pkg_postrm() {
gnome2_icon_cache_update
}

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

Loading…
Cancel
Save