This repository was archived by the owner on Oct 7, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +34
-18
lines changed Expand file tree Collapse file tree 4 files changed +34
-18
lines changed Original file line number Diff line number Diff line change 1
- SERIES = trusty xenial
1
+ SERIES = trusty xenial bionic
2
2
3
- .PYONY: ${SERIES}
3
+ .PHONY: all
4
+ all: $(SERIES)
4
5
5
- all: ${SERIES}
6
-
7
- trusty:
8
- -rm -rf debuild/$@
9
- mkdir -p debuild/$@
10
- find . -maxdepth 1 ! -name "." ! -name "debuild" -exec cp -r {} debuild/$@ \;
11
- cd debuild/$@ \
12
- && git reset --hard HEAD \
13
- && git clean -xdf \
14
- && rm -rf .git \
15
- && find QDK_2.x/template/ -name .gitkeep -exec rm -f {} \; \
16
- && sed -i '1 s/(\(.*\))/(\1~$@)/' debian/changelog \
17
- && debuild -us -uc -d
18
-
19
- xenial:
6
+ .PHONY: $(SERIES)
7
+ $(SERIES):
20
8
-rm -rf debuild/$@
21
9
mkdir -p debuild/$@
22
10
find . -maxdepth 1 ! -name "." ! -name "debuild" -exec cp -r {} debuild/$@ \;
@@ -25,12 +13,14 @@ xenial:
25
13
&& git clean -xdf \
26
14
&& rm -rf .git \
27
15
&& find QDK_2.x/template/ -name .gitkeep -exec rm -f {} \; \
28
- && cp debian/control.xenial debian/control \
16
+ && cp debian/control.$@ debian/control \
29
17
&& sed -i '1 s/(\(.*\))/(\1~$@)/' debian/changelog \
30
18
&& debuild -us -uc -d
31
19
20
+ .PHONY: clean
32
21
clean:
33
22
-rm -rf debuild
34
23
24
+ .PHONY: dput
35
25
dput:
36
26
dput ppa:fcwu-tw/ppa qdk2_*_source.changes
Original file line number Diff line number Diff line change
1
+ qdk2 (0.25) trusty; urgency=medium
2
+
3
+ * Support Ubuntu bionic
4
+
5
+ -- Walker Lee <walkerlee.tw@gmail.com> Wed, 10 Apr 2019 18:50:00 +0800
6
+
1
7
qdk2 (0.24) trusty; urgency=medium
2
8
3
9
* Support code signing and anti-tampering
Original file line number Diff line number Diff line change
1
+ Source: qdk2
2
+ Section: python
3
+ Vcs-Git: https://github.com/qnap-dev/qdk2.git
4
+ Priority: extra
5
+ Build-Depends: debhelper (>= 6)
6
+ Maintainer: Doro Wu <fcwu.tw@gmail.com>
7
+ Standards-Version: 3.9.5
8
+
9
+ Package: qdk2
10
+ Architecture: amd64
11
+ Depends: python (<< 3.0),
12
+ python (>= 2.6),
13
+ pv,
14
+ bsdmainutils (>= 9.0),
15
+ curl (>= 7.35),
16
+ openssl (>= 1.0),
17
+ ${shlibs:Depends},
18
+ ${misc:Depends}
19
+ Description: QNAP Development Toolkit Next Generation
20
+ Provides tools to build QNAP package
File renamed without changes.
You can’t perform that action at this time.
0 commit comments