Skip to content

Commit

Permalink
Repackage
Browse files Browse the repository at this point in the history
  • Loading branch information
XECDesign committed Sep 26, 2017
1 parent a1d8df2 commit c9fe982
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 9 deletions.
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
mu (1.0.0~beta8) stretch; urgency=medium

* Repackage

-- Serge Schneider <[email protected]> Tue, 26 Sep 2017 17:39:30 +0100

mu (0.9.13-1) unstable; urgency=low

* Add ability to change default Python directory in the settings file. Thanks to Zander Brown for the contribution. See #179.
Expand Down
16 changes: 9 additions & 7 deletions debian/control
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
Source: mu
Maintainer: Nicholas Tollervey <[email protected]>
Section: python
Priority: optional
Build-Depends: python3-setuptools, python3, debhelper (>= 9)
Standards-Version: 3.9.1
Maintainer: Serge Schneider <[email protected]>
Build-Depends: debhelper (>= 9), dh-python, python3-all, python3-setuptools
Standards-Version: 3.9.8
Homepage: https://codewith.mu/
X-Python3-Version: >= 3.2

Package: mu
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}, python3-setuptools, python3-pyqt5,
python3-pyqt5.qsci, python3-pyqt5.qtserialport, python3-serial,
python3-pep8, pyflakes
Description: A simple editor for kids, teachers and new programmers.
Depends: ${python3:Depends}, ${misc:Depends}
Description: A simple editor for beginner programmers
A very simple code editor for kids, teachers and beginner programmers.
It's written in Python and works on Windows, OSX, Linux and Raspberry Pi.
24 changes: 24 additions & 0 deletions debian/copyright
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: mu
Source: https://github.com/mu-editor/mu

Files: *
Copyright: 2015 Nicholas H.Tollervey <[email protected]>
License: GPL-3.0+

License: GPL-3.0+
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
.
On Debian systems, the complete text of the GNU General
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
3 changes: 3 additions & 0 deletions debian/py3dist-overrides
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pyqt5 python3-pyqt5
qscintilla python3-pyqt5.qsci
pyqt5.qtserialport python3-pyqt5.qtserialport
2 changes: 2 additions & 0 deletions debian/rules
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
export PYBUILD_NAME=mu
%:
dh $@ --with python3 --buildsystem=pybuild

override_dh_auto_test:
2 changes: 1 addition & 1 deletion debian/source/format
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0 (quilt)
3.0 (native)
1 change: 1 addition & 0 deletions debian/source/options
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
extend-diff-ignore = "^[^/]*[.]egg-info/"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
packages=['mu', 'mu.contrib', 'mu.resources', 'mu.modes', 'mu.debugger',
'mu.interface', 'mu.modes.api', ],
install_requires=['pycodestyle', 'pyflakes', 'pyserial', 'pyqt5',
'qscintilla', 'qtconsole', 'matplotlib', ],
'qscintilla', 'qtconsole', 'matplotlib', 'pyqt5.qtserialport', ],
include_package_data=True,
zip_safe=False,
classifiers=[
Expand Down

0 comments on commit c9fe982

Please sign in to comment.