public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Kent Fredric" <kentnl@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/fedmsg/
Date: Fri, 14 Apr 2017 01:52:17 +0000 (UTC)	[thread overview]
Message-ID: <1492134708.565a9fa93cc1fec29b49ffc508479113800e659e.kentnl@gentoo> (raw)

commit:     565a9fa93cc1fec29b49ffc508479113800e659e
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 14 01:51:48 2017 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Fri Apr 14 01:51:48 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=565a9fa9

dev-python/fedmsg: Bump to version 0.18.3

Upstream:
- Change branding to "Federated Message Bus"
- Updated example publishing code
- Fix support for multi-line JSON
- fedmsg-relay no longer iadvertently starts producers
- Drop artificial keys from datagrepper so backlog doesn't fail
  validation
- Fix broken test suite mock

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 dev-python/fedmsg/Manifest             |  1 +
 dev-python/fedmsg/fedmsg-0.18.3.ebuild | 40 ++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/dev-python/fedmsg/Manifest b/dev-python/fedmsg/Manifest
index fcec0f12e66..6b7462084e6 100644
--- a/dev-python/fedmsg/Manifest
+++ b/dev-python/fedmsg/Manifest
@@ -1,2 +1,3 @@
 DIST fedmsg-0.18.1.tar.gz 539434 SHA256 e2456f8f6fc46cfc5a63447d12077fcc0459cc53433e7beb211d708617331795 SHA512 aca7bb54f520e0c967ff325c246dcc9376c5240d251bbdf23612562205fb8531627f88dd2524af5884f686e6ce11fdf1de3beaf3bf4fae04bb6c4bc612b1d2df WHIRLPOOL 2c369ca33b43dd34333a3e75e0b81f811d792219bd3eebd96d3abdcc35943ea3390ed93dec9073ccc5fa0148d683c7a897a133712f41afe1c329a287e60f842e
 DIST fedmsg-0.18.2.tar.gz 530777 SHA256 8f0cde1f60d32d412280599edb57b55a5aa217ff75b90867cfa5ed18b26c2703 SHA512 29091973399cb8df1c26cf19087d9111a0a8fe650e76a3ebb9dbb363950fd1e31aa784a3464fd8aa3d48d4492fdbe54c00123e49180a361849741a07258afee5 WHIRLPOOL 90d2dc74e6cd5544932547260806429dfd491adddb67943e2c62632381e9cf91d5b29885f631058aecf4c42056865283145f6d2168d771269e9f83b7b0ae5aa1
+DIST fedmsg-0.18.3.tar.gz 540686 SHA256 1e870af77d9d27c83542849d24be3ee9807b1a36499e4471004e0473851ca0ac SHA512 59418b4da151c71962bf7d4d5c5005716c41578673b4786b0a6de3928b24e3de2976878fd66580f02848d453df4588d26d484d5eaf594ba7f49b1ba3a1cb2b00 WHIRLPOOL 8781fd2ed6db5a4308954d8ef063faa7a3545963cfffea62a1ec6e3237ae0a361944764c4f6a585a5e61699b70017a5d459a6d18d68b8b62e638b53d3a558762

diff --git a/dev-python/fedmsg/fedmsg-0.18.3.ebuild b/dev-python/fedmsg/fedmsg-0.18.3.ebuild
new file mode 100644
index 00000000000..f59cd04664d
--- /dev/null
+++ b/dev-python/fedmsg/fedmsg-0.18.3.ebuild
@@ -0,0 +1,40 @@
+# 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} )
+inherit distutils-r1
+
+DESCRIPTION="Fedora Messaging Client API"
+HOMEPAGE="http://www.fedmsg.com/ https://pypi.python.org/pypi/fedmsg"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+PATCHES=( "${FILESDIR}/0.18.0-endpoints.patch"
+		  "${FILESDIR}/0.18.0-no_signatures.patch" )
+RDEPEND="
+	dev-python/pyzmq[${PYTHON_USEDEP}]
+	dev-python/kitchen[${PYTHON_USEDEP}]
+	dev-python/requests[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+	dev-python/arrow[${PYTHON_USEDEP}]
+	dev-python/cryptography[${PYTHON_USEDEP}]
+	dev-python/psutil[${PYTHON_USEDEP}]
+	$(python_gen_cond_dep 'dev-python/m2crypto[${PYTHON_USEDEP}]' 'python2*')
+"
+DEPEND="${RDEPEND}"
+DOCS=(
+	"README.rst" "CHANGELOG.rst"
+	#TODO: doc/ dir full of rst files
+)
+
+python_install_all() {
+	distutils-r1_python_install_all
+	insinto /etc/
+	doins -r "${S}/fedmsg.d"
+}


             reply	other threads:[~2017-04-14  1:52 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-14  1:52 Kent Fredric [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-03-17  7:23 [gentoo-commits] repo/gentoo:master commit in: dev-python/fedmsg/ Michał Górny
2018-06-27 20:57 Pacho Ramos
2017-05-02  8:47 Michał Górny
2017-02-12 23:29 Kent Fredric
2017-02-12 23:29 Kent Fredric
2017-01-18  7:09 Kent Fredric
2017-01-18  7:09 Kent Fredric
2016-12-04 15:00 Kent Fredric

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=1492134708.565a9fa93cc1fec29b49ffc508479113800e659e.kentnl@gentoo \
    --to=kentnl@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