Skip to content

Commit 5a95d6f

Browse files
committed
[gdb] Simplify .deb build procedure
If we configure this as a native package, we don't need to use git-buildpackage, which means we don't need to worry about creating git tags. A "native" package means that the debian/ directory is part of the original source, which is what we have. ("Normal" debian packages have the debian packaging scripts separately from the upstream source code) Also mention the dejagnu build requirement.
1 parent 20c75d0 commit 5a95d6f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ all:
33

44
deb: clean
55
@echo '*** See debian/README.source for more information and help with troubleshoting. ***'
6-
gbp buildpackage --git-ignore-branch -i.* -us -uc
6+
dpkg-buildpackage -us -uc
77

88
%:
99
$(MAKE) -C server/JsDbg.Gdb $@

debian/README.source

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ jsdbg for Debian
44
Run "make deb" in the root directory to create a debian package.
55
You may have to "git clean -d" first.
66

7-
You need to have "git-buildpackage" and "debhelper" installed:
8-
sudo apt-get install git-buildpackage debhelper
7+
You need to have "dpkg-dev", "debhelper" and "dejagnu" installed:
8+
sudo apt-get install dpkg-dev debhelper dejagnu
99

1010
-- Christian Biesinger <[email protected]> Tue, 11 Jun 2019 19:42:54 -0500
1111

debian/changelog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
jsdbg (0.8.9-1) unstable; urgency=medium
1+
jsdbg (0.9.0) unstable; urgency=medium
22

33
* Update extensions
44
* Fix bugs in reading local variables and in writing memory
55

66
-- Christian Biesinger <[email protected]> Tue, 30 Jul 2019 18:21:00 -0500
77

8-
jsdbg (0.8.9-1) unstable; urgency=medium
8+
jsdbg (0.8.9) unstable; urgency=medium
99

1010
* Initial release
1111

debian/source/format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0 (quilt)
1+
3.0 (native)

0 commit comments

Comments
 (0)