aboutsummaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-08-24 15:21:32 +0200
committerChristian Grothoff <christian@grothoff.org>2021-08-24 15:21:32 +0200
commit5bb46d9a3ab568145f594c5a3cfa31ead3df38eb (patch)
tree021dd56b9a4fd7d349139a844635bb1675b80167 /debian
parent5ddaa3f8eb5e01882540f21ddf237f3a41311e8a (diff)
downloadgnunet-5bb46d9a3ab568145f594c5a3cfa31ead3df38eb.tar.gz
gnunet-5bb46d9a3ab568145f594c5a3cfa31ead3df38eb.zip
-remove dead ats-tests, fix strange Debian build issues
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog7
-rw-r--r--debian/control1
-rwxr-xr-xdebian/rules4
3 files changed, 11 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index c20964fa2..21a78fb2e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
1gnunet (0.15.2) unstable; urgency=low
2
3 * New upstream release, bumping version.
4 * Fixes linker issues. Very strange that Debian insists on explicit indirect dependencies for plugins.
5
6 -- Christian Grothoff <grothoff@gnu.org> Tue, 24 Aug 2021 21:14:18 +0200
7
1gnunet (0.15.1) unstable; urgency=low 8gnunet (0.15.1) unstable; urgency=low
2 9
3 * New upstream release, bumping version. 10 * New upstream release, bumping version.
diff --git a/debian/control b/debian/control
index 57acc6e1e..362cf1b2a 100644
--- a/debian/control
+++ b/debian/control
@@ -95,6 +95,7 @@ Section: libdevel
95Architecture: any 95Architecture: any
96Depends: 96Depends:
97 libgnunet (= ${binary:Version}), 97 libgnunet (= ${binary:Version}),
98 gnunet (= ${binary:Version}),
98 libextractor-dev (>=1:0.6.3), 99 libextractor-dev (>=1:0.6.3),
99 libgcrypt20-dev (>=1.6), 100 libgcrypt20-dev (>=1.6),
100 libmicrohttpd-dev (>=0.9.33), 101 libmicrohttpd-dev (>=0.9.33),
diff --git a/debian/rules b/debian/rules
index 69f44aa80..b8d577405 100755
--- a/debian/rules
+++ b/debian/rules
@@ -46,7 +46,9 @@ override_dh_auto_clean:
46 rm -rf contrib/gnunet_janitor.py contrib/gnunet_pyexpect.py libltdl/ \ 46 rm -rf contrib/gnunet_janitor.py contrib/gnunet_pyexpect.py libltdl/ \
47 src/integration-tests/*.py 47 src/integration-tests/*.py
48 48
49# Remove files already present in libgnunet from main gnunet package 49# Remove files already present in libgnunet from main gnunet package and libgnunet-dev package
50override_dh_install: 50override_dh_install:
51 dh_install 51 dh_install
52 cd debian/libgnunet; find . -type f,l -exec rm -f ../gnunet/{} \; 52 cd debian/libgnunet; find . -type f,l -exec rm -f ../gnunet/{} \;
53 cd debian/libgnunet; find . -type f,l -exec rm -f ../libgnunet-dev/{} \;
54 cd debian/gnunet; find . -type f,l -exec rm -f ../libgnunet-dev/{} \;