Skip to content

Commit 568501e

Browse files
committed
Added debian project files for creating deb package
1 parent 0060bde commit 568501e

File tree

14 files changed

+125
-0
lines changed

14 files changed

+125
-0
lines changed

debian/debian/changelog

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
nando (2.0.0-1ubuntu1) stable; urgency=medium
2+
3+
* Implemented reading of bad blocks. Implemented skipping of bad blocks
4+
option during read/write/erase. Fixed File-Save operation. Added
5+
firmware error codes. Added support of read & write LEDs. Designed new PCB
6+
with smaller size, serial and SWD instead of J-TAG.
7+
8+
-- Bogdan Bogush <[email protected]> Sat, 09 Mar 2019 18:22:21 +0200
9+
10+
nando (1.0.0-1) stable; urgency=medium
11+
12+
* Initial release. Basic NAND operations support.
13+
14+
-- Bogdan Bogush <[email protected]> Sun, 25 Nov 2018 10:00:00 +0200

debian/debian/compat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
9

debian/debian/control

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Source: nando
2+
Section: utils
3+
Priority: optional
4+
Maintainer: Bogdan Bogush <[email protected]>
5+
Build-Depends: debhelper (>= 9), qt5-qmake, qtbase5-dev, libqt5serialport5-dev
6+
Standards-Version: 4.1.4
7+
Homepage: https://github.com/bbogush/nand_programmer
8+
9+
Package: nando
10+
Architecture: any
11+
Depends: libqt5widgets5, libqt5gui5, libqt5serialport5, libqt5core5a, ${misc:Depends}, ${shlibs:Depends}
12+
Description: NAND flash programmer.
13+
NAND flash programmer. It is licensed under GPLv3. See LICENSE.txt file for more information.
14+

debian/debian/copyright

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2+
Upstream-Name: nando
3+
Source: https://github.com/bbogush/nand_programmer
4+
5+
Files: *
6+
Copyright: 2019 Bogdan Bogush <[email protected]>
7+
License: GPL-3.0
8+
9+
License: GPL-3.0
10+
This program is free software: you can redistribute it and/or modify
11+
it under the terms of the GNU General Public License as published by
12+
the Free Software Foundation, either version 3 of the License, or
13+
(at your option) any later version.
14+
.
15+
This package is distributed in the hope that it will be useful,
16+
but WITHOUT ANY WARRANTY; without even the implied warranty of
17+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+
GNU General Public License for more details.
19+
.
20+
You should have received a copy of the GNU General Public License
21+
along with this program. If not, see <http://www.gnu.org/licenses/>.
22+
.
23+
On Debian systems, the complete text of the GNU General
24+
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".

debian/debian/dirs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
usr/bin
2+
usr/share/applications

debian/debian/menu

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
?package(nando):needs="x11" \
2+
section="Applications/Programming" \
3+
title="NANDO" \
4+
command="/usr/bin/nando"

debian/debian/nando.install

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
bin/nando usr/bin
2+
nando.desktop usr/share/applications

debian/debian/rules

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/make -f
2+
export QT_SELECT := qt5
3+
4+
%:
5+
dh $@
6+
7+
override_dh_shlibdeps:
8+
dh_shlibdeps -l$(shell pwd)/usr/lib

debian/debian/source/format

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0 (quilt)

debian/debian/watch

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
version=2
2+
https://github.com/bbogush/nand_programmer/tags .*/archive/[a-z](\d\S*)\.tar\.gz

0 commit comments

Comments
 (0)