diff options
| author | Simon John <git@the-jedi.co.uk> | 2014-04-02 17:57:58 +0100 |
|---|---|---|
| committer | Simon John <git@the-jedi.co.uk> | 2014-04-02 17:57:58 +0100 |
| commit | c080fb29b769576b4b92f58b4c32b69a82f6e13f (patch) | |
| tree | d83aa85aacd0508a02f35b42d98966b7be3149cb /packaging | |
| parent | 392a6b9db1ce64099c15daa61c2e2ca964f95453 (diff) | |
python3 compatibility
Diffstat (limited to 'packaging')
| -rw-r--r-- | packaging/debian/README.md | 2 | ||||
| -rw-r--r-- | packaging/fedora/README.md | 2 | ||||
| -rw-r--r-- | packaging/fedora/arduino-mk.spec | 4 |
3 files changed, 5 insertions, 3 deletions
diff --git a/packaging/debian/README.md b/packaging/debian/README.md index c89bb43..6385780 100644 --- a/packaging/debian/README.md +++ b/packaging/debian/README.md @@ -7,7 +7,7 @@ or [Ubuntu](https://launchpad.net/ubuntu/+source/arduino-mk) or use apt. First install the dependencies for building/running the package, as root: apt-get build-dep arduino-mk - apt-get install arduino-core build-essential dpkg-dev fakeroot devscripts python-serial + apt-get install arduino-core build-essential dpkg-dev fakeroot devscripts python-serial python3-serial Fetch the Debian source: diff --git a/packaging/fedora/README.md b/packaging/fedora/README.md index 37219cb..63117f9 100644 --- a/packaging/fedora/README.md +++ b/packaging/fedora/README.md @@ -2,7 +2,7 @@ First install the dependencies as root: - yum install arduino-core rpm-build pyserial + yum install arduino-core rpm-build pyserial python3-pyserial From the top-level Arduino-Makefile directory you've checked out of github, run the following (as unprivileged user) to create a compressed tarball using the naming conventions required by rpmbuild: diff --git a/packaging/fedora/arduino-mk.spec b/packaging/fedora/arduino-mk.spec index 88f4083..4958515 100644 --- a/packaging/fedora/arduino-mk.spec +++ b/packaging/fedora/arduino-mk.spec @@ -10,7 +10,7 @@ License: LGPLv2+ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: arduino-core pyserial -BuildRequires: arduino-core pyserial +BuildRequires: arduino-core pyserial python3-pyserial %description Arduino is an open-source electronics prototyping platform based on @@ -49,6 +49,8 @@ rm -rf %{buildroot} %{_docdir}/%{name}/examples %changelog +* Wed Apr 02 2014 Simon John <git@the-jedi.co.uk> +- Added BuildRequires of python3-pyserial. Need to look into Requires. * Mon Mar 24 2014 Simon John <git@the-jedi.co.uk> - Replaced perl/help2man with pyserial for reset script. * Tue Feb 04 2014 Simon John <git@the-jedi.co.uk> |
