Эх сурвалжийг харах

Debian packaging
- Add test files to examples directory in libmodbus-dev.
- Add MIGRATION file to libmodbus-dev.
- Define the compatibility level to 6.
- Add MIGRATION to EXTRA_DIST in Makefile.am
- Add README to EXTRA_DIST in tests/Makefile.am
- Add unit-test.h as dependency in tests/Makefile.am

Stéphane Raimbault 17 жил өмнө
parent
commit
857fff603f

+ 1 - 0
Makefile.am

@@ -1,3 +1,4 @@
+EXTRA_DIST = MIGRATION
 SUBDIRS = modbus tests
 
 pkgconfigdir = $(libdir)/pkgconfig

+ 8 - 0
debian/changelog

@@ -1,3 +1,11 @@
+libmodbus (2.0.0-2) hardy; urgency=low
+
+  * Add test files to examples directory in libmodbus-dev.
+  * Add MIGRATION file to libmodbus-dev.
+  * Define the compatibility level to 6.
+	
+ -- Stéphane Raimbault <stephane.raimbault@gmail.com>  Sun, 18 May 2008 14:30:23 +0200
+	
 libmodbus (2.0.0-1) hardy; urgency=low
 
   * Initial release.

+ 1 - 0
debian/compat

@@ -0,0 +1 @@
+6

+ 1 - 0
debian/libmodbus-dev.docs

@@ -0,0 +1 @@
+MIGRATION

+ 2 - 0
debian/libmodbus-dev.examples

@@ -0,0 +1,2 @@
+tests/*.[ch]
+tests/README

+ 4 - 2
tests/Makefile.am

@@ -1,3 +1,5 @@
+EXTRA_DIST = README
+
 noinst_PROGRAMS = \
 	random-test-slave \
 	random-test-master \
@@ -15,10 +17,10 @@ random_test_slave_LDADD = $(common_ldflags)
 random_test_master_SOURCES = random-test-master.c
 random_test_master_LDADD = $(common_ldflags)
 
-unit_test_slave_SOURCES = unit-test-slave.c
+unit_test_slave_SOURCES = unit-test-slave.c unit-test.h
 unit_test_slave_LDADD = $(common_ldflags)
 
-unit_test_master_SOURCES = unit-test-master.c
+unit_test_master_SOURCES = unit-test-master.c unit-test.h
 unit_test_master_LDADD = $(common_ldflags)
 
 bench_bandwidth_slave_SOURCES = bench-bandwidth-slave.c