diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..4d75cfa --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +stcgal (1.0git) unstable; urgency=low + + * Initial Debianized Release + + -- Andrew 'Necromant' Andrianov Wed, 25 Nov 2015 13:07:03 +0300 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..564df04 --- /dev/null +++ b/debian/control @@ -0,0 +1,27 @@ +Source: stcgal +Section: electronics +Priority: optional +Maintainer: Andrew Andrianov +Build-Depends: debhelper (>= 9), python3, python3-setuptools, dh-python +Standards-Version: 3.9.5 +Homepage: https://github.com/grigorig/stcgal +X-Python3-Version: >= 3.2 + +Package: stcgal +Architecture: all +Depends: ${misc:Depends}, python3, python3-serial +Description: STC MCU ISP flash tool + stcgal is a command line flash programming tool for STC MCU Ltd. 8051 + compatible microcontrollers. The name was inspired by avrdude. + . + STC microcontrollers have a UART based boot strap loader (BSL). It + utilizes a packet-based protocol to flash the code memory and + IAP memory over a serial link. This is referred to as in-system + programming (ISP). The BSL is also used to configure various + (fuse-like) device options. Unfortunately, this protocol is not + publicly documented and STC only provide a (crude) Windows GUI + application for programming. + . + stcgal is a full-featured Open Source replacement for STC's Windows + software; it supports a wide range of MCUs, it is very portable and + suitable for automation. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..4b94a62 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,32 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: stcgal +Upstream-Contact: Grigori Goronzy +Source: https://github.com/grigorig/stcgal + +Files: * +Copyright: 2013-2015 Grigori Goronzy +License: MIT + +Files: debian/* +Copyright: 2015 Andrew 'Necromant' Andrianov + 2015 Grigori Goronzy +License: MIT + +License: MIT + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + . + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..4dd3757 --- /dev/null +++ b/debian/docs @@ -0,0 +1,2 @@ +README.md +TODO.md diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..d423713 --- /dev/null +++ b/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +export PYBUILD_NAME=stcgal + +%: + dh $@ --with python3 --buildsystem=pybuild + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..89ae9db --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native)