From: "Matthew Thode" <prometheanfire@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/nova/
Date: Thu, 27 Aug 2020 18:51:52 +0000 (UTC) [thread overview]
Message-ID: <1598554308.77d5f86be1e3d1a7e4f9574a89d1ece222ac85e2.prometheanfire@gentoo> (raw)
commit: 77d5f86be1e3d1a7e4f9574a89d1ece222ac85e2
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 27 18:50:41 2020 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Thu Aug 27 18:51:48 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77d5f86b
sys-cluster/nova: 21.1.0 bump
Package-Manager: Portage-3.0.4, Repoman-2.3.23
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
sys-cluster/nova/Manifest | 2 +
sys-cluster/nova/nova-21.1.0.ebuild | 217 ++++++++++++++++++++++++++++++++++++
2 files changed, 219 insertions(+)
diff --git a/sys-cluster/nova/Manifest b/sys-cluster/nova/Manifest
index 6b96a4decdc..70cbb0922f5 100644
--- a/sys-cluster/nova/Manifest
+++ b/sys-cluster/nova/Manifest
@@ -1,3 +1,5 @@
DIST nova-21.0.0.tar.gz 9193053 BLAKE2B efc95ac54a18a7df1530fc61e2478d59e5711e4c2da0156c405945a9a0ccd533255e2733d626f28f3460238cf157d802b79a8573f570623024089dd86ac23abc SHA512 a006a47f10d141df8a2495ae81c98bd0bf7af0b1f790627ba929e9b3e2931e438259f96d8c9391b9717126778f3f72f0bde01db5245bdbe801077fd884ba5a89
+DIST nova-21.1.0.tar.gz 9213435 BLAKE2B e84bc5131c4bd5ca50ab2783b8b6c606eac0abdaf622fb9a32b9c86fb91ac569f92459da199b4d4bbf679710e593f7ce5539c7f85f89446a463064a108b58d3b SHA512 abb6db64bf25806a9037df1b54bb5874e0599654b8cabafbb6ac659358124a5aa62668117e0a529677e1997d7d89b4265fbb9de4613f28d00d71bdfc4e94c471
DIST nova.conf.sample-2020.1.9999 191182 BLAKE2B 99999b1b42b9ecc6a7f404c9874c5065591dfd8e896c97d261307f7f3b5e935e12db1b4650182660cf1eb97bcfb993d41a1f89e079120adc00b339b5a4ac1c98 SHA512 af22ba8dcfbafdb07ba2785bdcb40efd201adb81d47bee15ee11bb76437bc7a5b7c88390f995432ffa92b64b849df754bd15264e97530334f3eac6f8f93e828d
DIST nova.conf.sample-21.0.0 191182 BLAKE2B 99999b1b42b9ecc6a7f404c9874c5065591dfd8e896c97d261307f7f3b5e935e12db1b4650182660cf1eb97bcfb993d41a1f89e079120adc00b339b5a4ac1c98 SHA512 af22ba8dcfbafdb07ba2785bdcb40efd201adb81d47bee15ee11bb76437bc7a5b7c88390f995432ffa92b64b849df754bd15264e97530334f3eac6f8f93e828d
+DIST nova.conf.sample-21.1.0 191182 BLAKE2B 99999b1b42b9ecc6a7f404c9874c5065591dfd8e896c97d261307f7f3b5e935e12db1b4650182660cf1eb97bcfb993d41a1f89e079120adc00b339b5a4ac1c98 SHA512 af22ba8dcfbafdb07ba2785bdcb40efd201adb81d47bee15ee11bb76437bc7a5b7c88390f995432ffa92b64b849df754bd15264e97530334f3eac6f8f93e828d
diff --git a/sys-cluster/nova/nova-21.1.0.ebuild b/sys-cluster/nova/nova-21.1.0.ebuild
new file mode 100644
index 00000000000..7d6ad9d9a1d
--- /dev/null
+++ b/sys-cluster/nova/nova-21.1.0.ebuild
@@ -0,0 +1,217 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_7 )
+inherit distutils-r1 eutils linux-info multilib
+
+DESCRIPTION="Cloud computing fabric controller"
+HOMEPAGE="https://launchpad.net/nova"
+
+if [[ ${PV} == *9999 ]];then
+ inherit git-r3
+ SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/nova/ussuri/nova.conf.sample -> nova.conf.sample-${PV}"
+ EGIT_REPO_URI="https://github.com/openstack/nova.git"
+ EGIT_BRANCH="stable/ussuri"
+else
+ SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/nova/ussuri/nova.conf.sample -> nova.conf.sample-${PV}
+ https://tarballs.openstack.org/${PN}/${P}.tar.gz"
+ KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="+compute compute-only iscsi +memcached +mysql +novncproxy openvswitch postgres +rabbitmq sqlite"
+REQUIRED_USE="
+ !compute-only? ( || ( mysql postgres sqlite ) )
+ compute-only? ( compute !rabbitmq !memcached !mysql !postgres !sqlite )"
+
+CDEPEND="
+ >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
+ !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
+DEPEND="
+ ${CDEPEND}
+ app-admin/sudo"
+
+RDEPEND="
+ ${CDEPEND}
+ compute-only? (
+ >=dev-python/sqlalchemy-1.2.19[${PYTHON_USEDEP}]
+ )
+ sqlite? (
+ >=dev-python/sqlalchemy-1.2.19[sqlite,${PYTHON_USEDEP}]
+ )
+ mysql? (
+ >=dev-python/pymysql-0.7.6[${PYTHON_USEDEP}]
+ !~dev-python/pymysql-0.7.7[${PYTHON_USEDEP}]
+ >=dev-python/sqlalchemy-1.2.19[${PYTHON_USEDEP}]
+ )
+ postgres? (
+ >=dev-python/psycopg-2.5.0[${PYTHON_USEDEP}]
+ >=dev-python/sqlalchemy-1.2.19[${PYTHON_USEDEP}]
+ )
+ >=dev-python/decorator-3.4.0[${PYTHON_USEDEP}]
+ >=dev-python/eventlet-0.20.0[${PYTHON_USEDEP}]
+ !~dev-python/eventlet-0.20.1[${PYTHON_USEDEP}]
+ >=dev-python/jinja-2.10[${PYTHON_USEDEP}]
+ >=dev-python/keystonemiddleware-4.17.0[${PYTHON_USEDEP}]
+ >=dev-python/lxml-2.4.1[${PYTHON_USEDEP}]
+ !~dev-python/lxml-3.7.0[${PYTHON_USEDEP}]
+ >=dev-python/routes-2.3.1[${PYTHON_USEDEP}]
+ >=dev-python/cryptography-2.7[${PYTHON_USEDEP}]
+ >=dev-python/webob-1.8.2[${PYTHON_USEDEP}]
+ >=dev-python/greenlet-0.4.10[${PYTHON_USEDEP}]
+ !~dev-python/greenlet-0.4.14[${PYTHON_USEDEP}]
+ >=dev-python/pastedeploy-1.5.0-r1[${PYTHON_USEDEP}]
+ >=dev-python/paste-2.0.2[${PYTHON_USEDEP}]
+ >=dev-python/prettytable-0.7.1[${PYTHON_USEDEP}]
+ <dev-python/prettytable-0.8[${PYTHON_USEDEP}]
+ >=dev-python/sqlalchemy-migrate-0.13.0[${PYTHON_USEDEP}]
+ >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}]
+ >=dev-python/netifaces-0.10.4[${PYTHON_USEDEP}]
+ >=dev-python/paramiko-2.0.0[${PYTHON_USEDEP}]
+ >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
+ !~dev-python/Babel-2.4.0[${PYTHON_USEDEP}]
+ >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
+ >=dev-python/jsonschema-2.6.0[${PYTHON_USEDEP}]
+ >=dev-python/python-cinderclient-3.3.0[${PYTHON_USEDEP}]
+ !~dev-python/python-cinderclient-4.0.0[${PYTHON_USEDEP}]
+ >=dev-python/keystoneauth-3.16.0[${PYTHON_USEDEP}]
+ >=dev-python/python-neutronclient-6.7.0[${PYTHON_USEDEP}]
+ >=dev-python/python-glanceclient-2.8.0[${PYTHON_USEDEP}]
+ >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
+ >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
+ >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
+ >=dev-python/websockify-0.9.0[${PYTHON_USEDEP}]
+ >=dev-python/oslo-cache-1.26.0[${PYTHON_USEDEP}]
+ >=dev-python/oslo-concurrency-3.29.0[${PYTHON_USEDEP}]
+ >=dev-python/oslo-config-6.1.0[${PYTHON_USEDEP}]
+ >=dev-python/oslo-context-2.21.0[${PYTHON_USEDEP}]
+ >=dev-python/oslo-log-3.36.0[${PYTHON_USEDEP}]
+ >=dev-python/oslo-reports-1.18.0[${PYTHON_USEDEP}]
+ >=dev-python/oslo-serialization-1.21.0[${PYTHON_USEDEP}]
+ >=dev-python/oslo-upgradecheck-0.1.1[${PYTHON_USEDEP}]
+ !~dev-python/oslo-serialization-2.19.1[${PYTHON_USEDEP}]
+ >=dev-python/oslo-utils-4.1.0[${PYTHON_USEDEP}]
+ >=dev-python/oslo-db-4.44.0[${PYTHON_USEDEP}]
+ >=dev-python/oslo-rootwrap-5.8.0[${PYTHON_USEDEP}]
+ >=dev-python/oslo-messaging-10.3.0[${PYTHON_USEDEP}]
+ >=dev-python/oslo-policy-3.1.0[${PYTHON_USEDEP}]
+ >=dev-python/oslo-privsep-1.33.2[${PYTHON_USEDEP}]
+ >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
+ >=dev-python/oslo-service-1.40.1[${PYTHON_USEDEP}]
+ >=dev-python/rfc3986-1.1.0[${PYTHON_USEDEP}]
+ >=dev-python/oslo-middleware-3.31.0[${PYTHON_USEDEP}]
+ >=dev-python/psutil-3.2.2[${PYTHON_USEDEP}]
+ >=dev-python/oslo-versionedobjects-1.35.0[${PYTHON_USEDEP}]
+ >=dev-python/os-brick-3.0.1[${PYTHON_USEDEP}]
+ >=dev-python/os-resource-classes-0.4.0[${PYTHON_USEDEP}]
+ >=dev-python/os-traits-2.2.0[${PYTHON_USEDEP}]
+ >=dev-python/os-vif-1.14.0[${PYTHON_USEDEP}]
+ >=dev-python/os-win-3.0.0[${PYTHON_USEDEP}]
+ >=dev-python/castellan-0.16.0[${PYTHON_USEDEP}]
+ >=dev-python/microversion-parse-0.2.1[${PYTHON_USEDEP}]
+ >=dev-python/os-xenapi-0.3.3[${PYTHON_USEDEP}]
+ >=dev-python/tooz-1.58.0[${PYTHON_USEDEP}]
+ >=dev-python/cursive-0.2.1[${PYTHON_USEDEP}]
+ >=dev-python/pypowervm-1.1.15[${PYTHON_USEDEP}]
+ >=dev-python/retrying-1.3.3[${PYTHON_USEDEP}]
+ >=dev-python/os-service-types-1.7.0[${PYTHON_USEDEP}]
+ >=dev-python/taskflow-2.16.0[${PYTHON_USEDEP}]
+ >=dev-python/python-dateutil-2.5.3[${PYTHON_USEDEP}]
+ >=dev-python/zVMCloudConnector-1.3.0[${PYTHON_USEDEP}]
+ >=dev-python/openstacksdk-0.35.0[${PYTHON_USEDEP}]
+ dev-python/libvirt-python[${PYTHON_USEDEP}]
+ app-emulation/libvirt[iscsi?]
+ app-emulation/spice-html5
+ novncproxy? ( www-apps/novnc )
+ sys-apps/iproute2
+ openvswitch? ( net-misc/openvswitch )
+ rabbitmq? ( net-misc/rabbitmq-server )
+ memcached? (
+ net-misc/memcached
+ >=dev-python/python-memcached-1.58
+ )
+ sys-fs/sysfsutils
+ sys-fs/multipath-tools
+ net-misc/bridge-utils
+ compute? (
+ app-cdr/cdrtools
+ sys-fs/dosfstools
+ app-emulation/qemu
+ )
+ iscsi? (
+ sys-fs/lsscsi
+ >=sys-block/open-iscsi-2.0.873-r1
+ )
+ acct-user/nova
+ acct-group/nova"
+
+#PATCHES=(
+# "${FILESDIR}/filename"
+#)
+
+pkg_setup() {
+ linux-info_pkg_setup
+ CONFIG_CHECK_MODULES="BLK_DEV_NBD VHOST_NET IP6_NF_FILTER IP6_NF_IPTABLES IP_NF_TARGET_REJECT \
+ IP_NF_MANGLE IP_NF_TARGET_MASQUERADE NF_NAT_IPV4 IP_NF_FILTER IP_NF_IPTABLES \
+ NF_CONNTRACK_IPV4 NF_DEFRAG_IPV4 NF_NAT_IPV4 NF_NAT NF_CONNTRACK NETFILTER_XTABLES \
+ ISCSI_TCP SCSI_DH DM_MULTIPATH DM_SNAPSHOT"
+ if linux_config_exists; then
+ for module in ${CONFIG_CHECK_MODULES}; do
+ linux_chkconfig_present ${module} || ewarn "${module} needs to be enabled in kernel"
+ done
+ fi
+}
+
+python_prepare_all() {
+ sed -i '/^hacking/d' test-requirements.txt || die
+ distutils-r1_python_prepare_all
+}
+
+python_install_all() {
+ distutils-r1_python_install_all
+
+ if use !compute-only; then
+ for svc in api conductor consoleauth network scheduler spicehtml5proxy xvpvncproxy; do
+ newinitd "${FILESDIR}/nova.initd" "nova-${svc}"
+ done
+ fi
+ use compute && newinitd "${FILESDIR}/nova.initd" "nova-compute"
+ use novncproxy && newinitd "${FILESDIR}/nova.initd" "nova-novncproxy"
+
+ diropts -m 0750 -o nova -g qemu
+ dodir /var/log/nova /var/lib/nova/instances
+ diropts -m 0750 -o nova -g nova
+
+ insinto /etc/nova
+ insopts -m 0640 -o nova -g nova
+ newins "${DISTDIR}/nova.conf.sample-${PV}" "nova.conf.sample"
+ doins "${FILESDIR}/nova-compute.conf"
+ doins "${S}/etc/nova/"*
+ # rootwrap filters
+ insopts -m 0644
+ insinto /etc/nova/rootwrap.d
+ doins "etc/nova/rootwrap.d/compute.filters"
+
+ # add sudoers definitions for user nova
+ insinto /etc/sudoers.d/
+ insopts -m 0600 -o root -g root
+ doins "${FILESDIR}/nova-sudoers"
+
+ if use iscsi ; then
+ # Install udev rules for handle iscsi disk with right links under /dev
+ udev_newrules "${FILESDIR}/openstack-scsi-disk.rules" 60-openstack-scsi-disk.rules
+
+ insinto /etc/nova/
+ doins "${FILESDIR}/scsi-openscsi-link.sh"
+ fi
+ rm -r "${ED}/usr/etc"
+}
+
+pkg_postinst() {
+ if use iscsi ; then
+ elog "iscsid needs to be running if you want cinder to connect"
+ fi
+}
next reply other threads:[~2020-08-27 18:51 UTC|newest]
Thread overview: 181+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-27 18:51 Matthew Thode [this message]
-- strict thread matches above, loose matches on Subject: below --
2021-05-31 21:07 [gentoo-commits] repo/gentoo:master commit in: sys-cluster/nova/ Michał Górny
2021-05-15 21:38 Matthew Thode
2021-04-18 3:25 Matthew Thode
2021-03-17 5:17 Matthew Thode
2021-03-03 15:49 Matthew Thode
2021-02-13 20:56 Matthew Thode
2021-02-05 3:08 Matthew Thode
2020-12-10 16:50 Matthew Thode
2020-12-10 16:50 Matthew Thode
2020-12-03 17:37 Thomas Deutschmann
2020-12-03 11:03 Sam James
2020-11-21 5:57 Matthew Thode
2020-11-10 22:54 Matthew Thode
2020-10-19 21:30 Matthew Thode
2020-10-18 23:18 Matthew Thode
2020-09-27 21:06 Matthew Thode
2020-07-03 0:31 Matthew Thode
2020-06-23 18:39 Matthew Thode
2020-06-23 18:39 Matthew Thode
2020-06-16 18:39 Matthew Thode
2020-05-30 18:02 Matthew Thode
2020-05-16 21:21 Matthew Thode
2020-04-24 23:14 Matthew Thode
2020-04-23 19:36 Matthew Thode
2020-03-16 18:55 Michał Górny
2020-03-04 17:11 Matthew Thode
2020-03-04 17:11 Matthew Thode
2020-02-11 18:20 Matthew Thode
2020-02-08 2:50 Matthew Thode
2020-01-26 22:41 Matthew Thode
2019-12-29 13:23 Andreas Sturmlechner
2019-12-12 22:39 Matthew Thode
2019-11-19 18:36 Matthew Thode
2019-11-12 19:53 Matthew Thode
2019-11-05 17:15 Matthew Thode
2019-10-21 0:19 Matthew Thode
2019-10-10 17:28 Matthew Thode
2019-10-05 20:14 Matthew Thode
2019-08-29 19:08 Matthew Thode
2019-08-29 10:39 Michał Górny
2019-08-16 2:23 Matthew Thode
2019-08-14 22:14 Matthew Thode
2019-08-14 22:14 Matthew Thode
2019-06-27 15:25 Matthew Thode
2019-06-18 15:03 Matthew Thode
2019-06-07 15:59 Matthew Thode
2019-05-11 19:48 Matthew Thode
2019-04-25 15:54 Matthew Thode
2019-04-20 1:32 Matthew Thode
2019-04-12 22:47 Matthew Thode
2019-04-12 22:47 Matthew Thode
2019-03-25 21:24 Matthew Thode
2019-03-25 0:07 Matthew Thode
2019-01-15 17:21 Matthew Thode
2018-12-19 22:07 Matthew Thode
2018-12-19 19:43 Matthew Thode
2018-11-08 17:31 Matthew Thode
2018-11-06 16:39 Matthew Thode
2018-10-09 4:54 Matthew Thode
2018-09-28 20:33 Matt Thode
2018-09-25 22:22 Matt Thode
2018-08-30 21:35 Matt Thode
2018-07-04 17:56 Matt Thode
2018-06-26 20:51 Pacho Ramos
2018-06-04 15:40 Matt Thode
2018-05-25 1:52 Matt Thode
2018-05-15 14:53 Matt Thode
2018-04-26 2:29 Matt Thode
2018-04-02 16:09 Matt Thode
2018-03-31 1:54 Matt Thode
2018-03-15 17:47 Matt Thode
2018-03-08 14:57 Matt Thode
2018-03-01 9:57 Matt Thode
2018-02-24 6:22 Matt Thode
2018-02-16 6:14 Matt Thode
2018-01-19 16:10 Matt Thode
2018-01-03 20:15 Matt Thode
2017-12-20 23:22 Matt Thode
2017-12-13 21:44 Matt Thode
2017-11-25 16:46 Matt Thode
2017-11-15 2:03 Matt Thode
2017-10-26 4:13 Matt Thode
2017-10-20 23:20 Matt Thode
2017-09-30 1:06 Matt Thode
2017-09-25 16:23 Matt Thode
2017-09-16 15:01 Matt Thode
2017-09-01 22:10 Matt Thode
2017-08-31 17:44 Matt Thode
2017-08-30 22:07 Matt Thode
2017-08-30 21:07 Matt Thode
2017-08-28 15:41 Matt Thode
2017-08-22 16:29 Matt Thode
2017-08-10 23:47 Matt Thode
2017-08-10 23:47 Matt Thode
2017-07-14 19:43 Matt Thode
2017-07-12 14:43 Pacho Ramos
2017-06-20 19:00 Matt Thode
2017-06-09 21:19 Matt Thode
2017-05-30 19:16 Matt Thode
2017-05-09 15:42 Matt Thode
2017-05-07 3:36 Matt Thode
2017-05-07 3:36 Matt Thode
2017-04-25 16:47 Matt Thode
2017-04-12 20:03 Matt Thode
2017-03-29 0:22 Matt Thode
2017-03-22 17:11 Matt Thode
2017-03-16 16:12 Matt Thode
2017-02-28 16:46 Matt Thode
2017-02-28 0:18 Matt Thode
2017-02-27 6:43 Matt Thode
2017-01-16 19:37 Matt Thode
2017-01-16 19:37 Matt Thode
2016-12-19 22:37 Matt Thode
2016-12-03 21:34 Justin Lecher
2016-12-01 17:06 Matt Thode
2016-12-01 17:06 Matt Thode
2016-11-29 1:52 Matt Thode
2016-11-10 14:59 Matt Thode
2016-11-10 14:59 Matt Thode
2016-11-07 17:18 Matt Thode
2016-11-06 21:39 Matt Thode
2016-10-12 5:16 Matt Thode
2016-10-11 0:43 Matt Thode
2016-10-06 18:27 Matt Thode
2016-09-10 17:57 Matt Thode
2016-08-10 17:53 Matt Thode
2016-07-15 2:20 Matt Thode
2016-07-15 2:20 Matt Thode
2016-07-09 5:05 Matt Thode
2016-07-09 5:05 Matt Thode
2016-06-30 22:24 Matt Thode
2016-06-15 11:18 Matt Thode
2016-06-09 18:13 Matt Thode
2016-05-16 19:00 Matt Thode
2016-05-16 16:40 Matt Thode
2016-05-14 20:11 Agostino Sarubbo
2016-04-15 18:59 Matt Thode
2016-04-07 14:32 Matt Thode
2016-03-26 3:59 Matt Thode
2016-03-16 18:53 Matt Thode
2016-03-09 17:20 Matt Thode
2016-03-09 16:52 Agostino Sarubbo
2016-03-09 16:50 Agostino Sarubbo
2016-03-09 16:37 Matt Thode
2016-03-08 20:13 Matt Thode
2016-03-08 0:03 Matt Thode
2016-01-31 19:24 Matt Thode
2016-01-31 19:24 Matt Thode
2016-01-31 11:56 Agostino Sarubbo
2016-01-29 19:17 Matt Thode
2016-01-24 17:22 Agostino Sarubbo
2016-01-21 22:41 Matt Thode
2016-01-19 16:12 Matt Thode
2016-01-08 13:27 Matt Thode
2016-01-08 8:20 Agostino Sarubbo
2016-01-08 8:19 Agostino Sarubbo
2015-12-22 22:22 Matt Thode
2015-12-15 21:55 Matt Thode
2015-11-16 21:26 Matt Thode
2015-11-16 16:26 Agostino Sarubbo
2015-11-16 16:15 Agostino Sarubbo
2015-11-14 0:19 Matt Thode
2015-11-12 10:22 Justin Lecher
2015-11-12 10:22 Justin Lecher
2015-10-30 14:13 Matt Thode
2015-10-30 13:14 Justin Lecher
2015-10-30 13:14 Justin Lecher
2015-10-18 6:27 Matt Thode
2015-10-16 6:04 Matt Thode
2015-10-16 5:53 Matt Thode
2015-10-15 16:56 Matt Thode
2015-10-15 9:08 Matt Thode
2015-10-13 18:27 Matt Thode
2015-10-13 18:27 Matt Thode
2015-09-03 14:28 Matt Thode
2015-09-03 8:25 Agostino Sarubbo
2015-09-03 8:24 Agostino Sarubbo
2015-08-22 4:58 Matt Thode
2015-08-21 6:42 Agostino Sarubbo
2015-08-21 6:41 Agostino Sarubbo
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1598554308.77d5f86be1e3d1a7e4f9574a89d1ece222ac85e2.prometheanfire@gentoo \
--to=prometheanfire@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox