aboutsummaryrefslogtreecommitdiff
path: root/packaging
diff options
context:
space:
mode:
authorSudar <sudar@sudarmuthu.com>2014-04-05 18:12:12 +0530
committerSudar <sudar@sudarmuthu.com>2014-04-05 18:12:12 +0530
commit87129f1d2bce5576ac85fb7fb95574d80204e2a8 (patch)
tree201f18b060adbe7c962c21fc75b5d1ea6c6d09f1 /packaging
parent10ea6fbc33ad507a64838dcf2a383867ba7b5b9a (diff)
parent7b5a163e9a5cabf1b30ab5bac51f2a51195c4514 (diff)
Merge pull request #185 from sej7278/master
simplify packaging by removing dependencies on python3/pyserial
Diffstat (limited to 'packaging')
-rw-r--r--packaging/debian/README.md4
-rw-r--r--packaging/fedora/README.md2
-rw-r--r--packaging/fedora/arduino-mk.spec4
3 files changed, 6 insertions, 4 deletions
diff --git a/packaging/debian/README.md b/packaging/debian/README.md
index 6385780..44dcaa6 100644
--- a/packaging/debian/README.md
+++ b/packaging/debian/README.md
@@ -4,10 +4,10 @@ Use these instructions to build your own Deb package from your local sources.
For the latest official packages go to [Debian](http://packages.debian.org/arduino-mk)
or [Ubuntu](https://launchpad.net/ubuntu/+source/arduino-mk) or use apt.
-First install the dependencies for building/running the package, as root:
+First install the dependencies as root:
apt-get build-dep arduino-mk
- apt-get install arduino-core build-essential dpkg-dev fakeroot devscripts python-serial python3-serial
+ apt-get install arduino-core build-essential dpkg-dev fakeroot devscripts
Fetch the Debian source:
diff --git a/packaging/fedora/README.md b/packaging/fedora/README.md
index 63117f9..86ec456 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 python3-pyserial
+ yum install arduino-core rpm-build
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 4958515..5fdbed7 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 python3-pyserial
+BuildRequires: arduino-core
%description
Arduino is an open-source electronics prototyping platform based on
@@ -49,6 +49,8 @@ rm -rf %{buildroot}
%{_docdir}/%{name}/examples
%changelog
+* Fri Apr 04 2014 Simon John <git@the-jedi.co.uk>
+- Removed BuildRequires of python3/pyserial.
* 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>