From: Marius Bakke <mbakke@fastmail.com>
To: Danny Milosavljevic <dannym@scratchpost.org>, guix-devel@gnu.org
Subject: Re: [PATCH v2 4/6] gnu: Add python-reno.
Date: Wed, 18 Jan 2017 18:51:07 +0100 [thread overview]
Message-ID: <87vatc8df8.fsf@kirby.i-did-not-set--mail-host-address--so-tickle-me> (raw)
In-Reply-To: <20170118075305.29573-5-dannym@scratchpost.org>
[-- Attachment #1: Type: text/plain, Size: 2624 bytes --]
Danny Milosavljevic <dannym@scratchpost.org> writes:
> * gnu/packages/openstack.scm (python-reno, python-reno2): New variables.
> ---
> gnu/packages/openstack.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 42 insertions(+)
>
> diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
> index b3e3f08c2..0e50236af 100644
> --- a/gnu/packages/openstack.scm
> +++ b/gnu/packages/openstack.scm
> @@ -19,6 +19,7 @@
> ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
>
> (define-module (gnu packages openstack)
> + #:use-module (gnu packages gnupg)
> #:use-module (gnu packages python)
> #:use-module (gnu packages ssh)
> #:use-module (gnu packages tls)
> @@ -550,6 +551,47 @@ in transmittable and storable formats, such as JSON and MessagePack.")
> (define-public python2-oslo.serialization
> (package-with-python2 python-oslo.serialization))
>
> +(define-public python-reno
> + (package
> + (name "python-reno")
> + (version "2.0.3")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (pypi-uri "reno" version))
> + (sha256
> + (base32 "1i2wnn5fnm3jm5774pahg000q0lma5i913hml91bbbm2mybphndd"))))
> + (build-system python-build-system)
> + (arguments
> + `(#:phases
> + (modify-phases %standard-phases
> + (add-before 'check 'init-git
> + (lambda _
> + ;; reno expects a git repo
> + (zero? (system* "git" "init")))))))
Heh. Why doesn't reno init on its own, then. Oh well.
LGTM!
> + (propagated-inputs
> + `(("python-babel" ,python-babel)
> + ("python-dulwich" ,python-dulwich)
> + ("python-pyyaml" ,python-pyyaml)
> + ("python-six" ,python-six)))
> + (native-inputs
> + `(("python-testtools" ,python-testtools)
> + ("python-pbr" ,python-pbr)
> + ("python-testscenarios" ,python-testscenarios)
> + ("python-testrepository" ,python-testrepository)
> + ("python-mock" ,python-mock)
> + ("python-oslotest" ,python-oslotest)
> + ("gnupg" ,gnupg)
> + ("git" ,git)))
> + (home-page "http://docs.openstack.org/developer/reno/")
> + (synopsis "Release notes manager")
> + (description "Reno is a tool for storing release notes in a git repository
> +and building documentation from them.")
> + (license asl2.0)))
> +
> +(define-public python2-reno
> + (package-with-python2 python-reno))
> +
> (define-public python-oslosphinx
> (package
> (name "python-oslosphinx")
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
next prev parent reply other threads:[~2017-01-18 17:51 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-04 23:30 [PATCH] guix: python-build-system: Properly inform caller about test status Danny Milosavljevic
2017-01-05 10:14 ` Hartmut Goebel
2017-01-05 13:31 ` Marius Bakke
2017-01-05 15:49 ` Leo Famulari
2017-01-05 16:06 ` python-tests: Sphinx Danny Milosavljevic
2017-01-05 16:11 ` Marius Bakke
2017-01-18 7:52 ` [PATCH v2 0/6] Make python-oslosphinx work in python-tests branch Danny Milosavljevic
2017-01-18 7:53 ` [PATCH v2 1/6] gnu: python-testtools: Update to 1.4.0 Danny Milosavljevic
2017-01-18 17:39 ` Marius Bakke
2017-01-19 9:28 ` Danny Milosavljevic
2017-01-19 12:59 ` Marius Bakke
2017-01-19 14:34 ` python2-traceback2, python2-linecache2 Danny Milosavljevic
2017-01-19 15:01 ` Marius Bakke
2017-01-19 17:46 ` Marius Bakke
2017-01-20 19:56 ` 'python-tests' merge Marius Bakke
2017-01-20 19:56 ` bug#25177: " Marius Bakke
2017-01-19 20:38 ` python2-traceback2, python2-linecache2 Hartmut Goebel
2017-01-19 20:35 ` Hartmut Goebel
2017-01-19 15:31 ` [PATCH v2 1/6] gnu: python-testtools: Update to 1.4.0 Danny Milosavljevic
2017-01-18 7:53 ` [PATCH v2 2/6] gnu: Add python-fastimport Danny Milosavljevic
2017-01-18 17:39 ` Marius Bakke
2017-01-18 23:43 ` Danny Milosavljevic
2017-01-18 7:53 ` [PATCH v2 3/6] gnu: Add python-dulwich Danny Milosavljevic
2017-01-18 17:48 ` Marius Bakke
2017-01-18 20:57 ` Efraim Flashner
2017-01-19 9:38 ` Danny Milosavljevic
2017-01-19 9:34 ` Danny Milosavljevic
2017-01-19 15:27 ` Danny Milosavljevic
2017-01-18 7:53 ` [PATCH v2 4/6] gnu: Add python-reno Danny Milosavljevic
2017-01-18 17:51 ` Marius Bakke [this message]
2017-01-19 15:40 ` Danny Milosavljevic
2017-01-19 16:32 ` Danny Milosavljevic
2017-01-18 7:53 ` [PATCH v2 5/6] gnu: python-mox3: Remove python-oslosphinx dependency (since the tests don't run anyway) Danny Milosavljevic
2017-01-18 17:54 ` Marius Bakke
2017-01-18 23:42 ` Danny Milosavljevic
2017-01-18 7:53 ` [PATCH v2 6/6] gnu: python-sphinx: Update to 1.5.1 and enable tests Danny Milosavljevic
2017-01-18 17:55 ` Marius Bakke
2017-01-18 23:35 ` Danny Milosavljevic
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=87vatc8df8.fsf@kirby.i-did-not-set--mail-host-address--so-tickle-me \
--to=mbakke@fastmail.com \
--cc=dannym@scratchpost.org \
--cc=guix-devel@gnu.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.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.