[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[SCM] Debian package checker branch, master, updated. 2.5.0-rc1-19-g20d67e9



The following commit has been merged in the master branch:
commit 20d67e92b98bdb0dc55ad03cf1a3ddfe6bc55f20
Author: Niels Thykier <niels@thykier.net>
Date:   Wed Mar 23 23:33:25 2011 +0100

    Fixed an issue where some files were excluded for the tarball
    
    dpkg-source excludes ".la" files from tarballs when generating
    source packages, which caused shared-libs-la-files to fail due
    to missing files.  Now these files are stored as ".txt" files
    in the tarball.

diff --git a/debian/changelog b/debian/changelog
index 0820889..307b180 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -41,6 +41,10 @@ lintian (2.5.0~rc2) UNRELEASED; urgency=low
       Drung for the patch.
   * data/spelling/corrections:
     + [NT] Added more misspellings.
+  
+  * t/tests/shared-libs-la-files:
+    + [NT] Fixed an issue where files would not be included in the tarball
+      due to dpkg-source's exclude patterns.  (Closes: #619287)
 
  -- Adam D. Barratt <adam@adam-barratt.org.uk>  Fri, 25 Feb 2011 17:48:59 +0000
 
diff --git a/t/tests/shared-libs-la-files/debian/Makefile b/t/tests/shared-libs-la-files/debian/Makefile
new file mode 100644
index 0000000..6c7b78c
--- /dev/null
+++ b/t/tests/shared-libs-la-files/debian/Makefile
@@ -0,0 +1,9 @@
+LA_FILES:=kio_locate.la  _python_module.la  trailing-slash.la
+
+%.la: %.txt
+	cp "$<" "$@"
+
+all: $(LA_FILES)
+
+clean:
+	rm -f $(LA_FILES)
diff --git a/t/tests/shared-libs-la-files/debian/_python_module.la b/t/tests/shared-libs-la-files/debian/_python_module.txt
similarity index 100%
rename from t/tests/shared-libs-la-files/debian/_python_module.la
rename to t/tests/shared-libs-la-files/debian/_python_module.txt
diff --git a/t/tests/shared-libs-la-files/debian/kio_locate.la b/t/tests/shared-libs-la-files/debian/kio_locate.txt
similarity index 100%
rename from t/tests/shared-libs-la-files/debian/kio_locate.la
rename to t/tests/shared-libs-la-files/debian/kio_locate.txt
diff --git a/t/tests/shared-libs-la-files/debian/trailing-slash.la b/t/tests/shared-libs-la-files/debian/trailing-slash.txt
similarity index 100%
rename from t/tests/shared-libs-la-files/debian/trailing-slash.la
rename to t/tests/shared-libs-la-files/debian/trailing-slash.txt

-- 
Debian package checker


Reply to: