From 804ec33e26f64e56ca126d397272ef7a9cd648a8 Mon Sep 17 00:00:00 2001 From: Mathieu Trudel-Lapierre Date: Mon, 19 Nov 2012 13:58:43 -0500 Subject: Manually import debian/ from ido 12.10.2-0ubuntu1. --- debian/rules | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 debian/rules (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..fcdc14e --- /dev/null +++ b/debian/rules @@ -0,0 +1,12 @@ +#!/usr/bin/make -f + +%: + dh $@ --with autoreconf + +override_dh_makeshlibs: + dh_makeshlibs -plibido3-0.1-0 -V'libido3-0.1-0 (>= 12.10.0)' -- -c4 + dh_makeshlibs -Nlibido3-0.1-0 + +override_dh_install: + find debian/tmp/usr/lib -name *.la -delete + dh_install --fail-missing -- cgit v1.2.3 From 634fa1b43ab42febbcf33d0baa29c751db096eae Mon Sep 17 00:00:00 2001 From: Mathieu Trudel-Lapierre Date: Mon, 19 Nov 2012 14:04:49 -0500 Subject: * debian/rules: - Add and export DPKG_GENSYMBOLS_CHECK_LEVEL instead of passing -c4 to dh_makeshlibs. --- debian/changelog | 3 +++ debian/rules | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'debian/rules') diff --git a/debian/changelog b/debian/changelog index ebddd7b..ece3340 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,9 @@ ido (12.10.3-0ubuntu1) UNRELEASED; urgency=low * debian/control: - Update to match style with other indicator stack packages: use trailing commas at the end of dependency lists. + * debian/rules: + - Add and export DPKG_GENSYMBOLS_CHECK_LEVEL instead of passing -c4 to + dh_makeshlibs. -- Mathieu Trudel-Lapierre Mon, 19 Nov 2012 14:00:05 -0500 diff --git a/debian/rules b/debian/rules index fcdc14e..a758b60 100755 --- a/debian/rules +++ b/debian/rules @@ -1,10 +1,12 @@ #!/usr/bin/make -f +export DPKG_GENSYMBOLS_CHECK_LEVEL = 4 + %: dh $@ --with autoreconf override_dh_makeshlibs: - dh_makeshlibs -plibido3-0.1-0 -V'libido3-0.1-0 (>= 12.10.0)' -- -c4 + dh_makeshlibs -plibido3-0.1-0 -V'libido3-0.1-0 (>= 12.10.0)' dh_makeshlibs -Nlibido3-0.1-0 override_dh_install: -- cgit v1.2.3 From dfaa0f4b2f0926a666c946aff5cb85abb4a5fa6d Mon Sep 17 00:00:00 2001 From: Mathieu Trudel-Lapierre Date: Mon, 19 Nov 2012 14:05:55 -0500 Subject: Override dh_autoreconf to call autogen.sh and not run configure... --- debian/changelog | 1 + debian/rules | 3 +++ 2 files changed, 4 insertions(+) (limited to 'debian/rules') diff --git a/debian/changelog b/debian/changelog index ece3340..29c7219 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,7 @@ ido (12.10.3-0ubuntu1) UNRELEASED; urgency=low * debian/rules: - Add and export DPKG_GENSYMBOLS_CHECK_LEVEL instead of passing -c4 to dh_makeshlibs. + - Override dh_autoreconf to call autogen.sh and not run configure... -- Mathieu Trudel-Lapierre Mon, 19 Nov 2012 14:00:05 -0500 diff --git a/debian/rules b/debian/rules index a758b60..ce87ef2 100755 --- a/debian/rules +++ b/debian/rules @@ -5,6 +5,9 @@ export DPKG_GENSYMBOLS_CHECK_LEVEL = 4 %: dh $@ --with autoreconf +override_dh_autoreconf: + NOCONFIGURE=1 dh_autoreconf ./autogen.sh + override_dh_makeshlibs: dh_makeshlibs -plibido3-0.1-0 -V'libido3-0.1-0 (>= 12.10.0)' dh_makeshlibs -Nlibido3-0.1-0 -- cgit v1.2.3 From a06895c0dc218c5e072941973e678ff1c83b424c Mon Sep 17 00:00:00 2001 From: Mathieu Trudel-Lapierre Date: Mon, 19 Nov 2012 17:50:42 -0500 Subject: Temporarily disable tests via overriding dh_auto_test; they fail to properly start X in a schroot. --- debian/changelog | 2 ++ debian/rules | 4 ++++ 2 files changed, 6 insertions(+) (limited to 'debian/rules') diff --git a/debian/changelog b/debian/changelog index 801bb75..bfb791b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,6 +12,8 @@ ido (12.10.3-0ubuntu1) UNRELEASED; urgency=low - Add and export DPKG_GENSYMBOLS_CHECK_LEVEL instead of passing -c4 to dh_makeshlibs. - Override dh_autoreconf to call autogen.sh and not run configure... + - Temporarily disable tests via overriding dh_auto_test; they fail to + properly start X in a schroot. -- Mathieu Trudel-Lapierre Mon, 19 Nov 2012 14:00:05 -0500 diff --git a/debian/rules b/debian/rules index ce87ef2..b9a6fdd 100755 --- a/debian/rules +++ b/debian/rules @@ -15,3 +15,7 @@ override_dh_makeshlibs: override_dh_install: find debian/tmp/usr/lib -name *.la -delete dh_install --fail-missing + +override_dh_auto_test: + # Tests temporarily disabled: needs work to fix X initialization issues. + -- cgit v1.2.3 From cc01061bb7b8014963a7735e5ff95a6d6a0673a2 Mon Sep 17 00:00:00 2001 From: Mathieu Trudel-Lapierre Date: Mon, 26 Nov 2012 09:04:04 -0500 Subject: Drop the override for dh_makeshlibs. --- debian/changelog | 1 + debian/rules | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) (limited to 'debian/rules') diff --git a/debian/changelog b/debian/changelog index bfb791b..8bfd484 100644 --- a/debian/changelog +++ b/debian/changelog @@ -14,6 +14,7 @@ ido (12.10.3-0ubuntu1) UNRELEASED; urgency=low - Override dh_autoreconf to call autogen.sh and not run configure... - Temporarily disable tests via overriding dh_auto_test; they fail to properly start X in a schroot. + - Drop the override for dh_makeshlibs. -- Mathieu Trudel-Lapierre Mon, 19 Nov 2012 14:00:05 -0500 diff --git a/debian/rules b/debian/rules index b9a6fdd..9c056b4 100755 --- a/debian/rules +++ b/debian/rules @@ -8,10 +8,6 @@ export DPKG_GENSYMBOLS_CHECK_LEVEL = 4 override_dh_autoreconf: NOCONFIGURE=1 dh_autoreconf ./autogen.sh -override_dh_makeshlibs: - dh_makeshlibs -plibido3-0.1-0 -V'libido3-0.1-0 (>= 12.10.0)' - dh_makeshlibs -Nlibido3-0.1-0 - override_dh_install: find debian/tmp/usr/lib -name *.la -delete dh_install --fail-missing -- cgit v1.2.3 From 7dc37ec5c46e7a347884963793535234e05c8003 Mon Sep 17 00:00:00 2001 From: Mathieu Trudel-Lapierre Date: Mon, 26 Nov 2012 10:35:20 -0500 Subject: Reactivate tests, they don't fail. --- debian/changelog | 2 -- debian/rules | 3 --- 2 files changed, 5 deletions(-) (limited to 'debian/rules') diff --git a/debian/changelog b/debian/changelog index 8bfd484..6f964c4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,8 +12,6 @@ ido (12.10.3-0ubuntu1) UNRELEASED; urgency=low - Add and export DPKG_GENSYMBOLS_CHECK_LEVEL instead of passing -c4 to dh_makeshlibs. - Override dh_autoreconf to call autogen.sh and not run configure... - - Temporarily disable tests via overriding dh_auto_test; they fail to - properly start X in a schroot. - Drop the override for dh_makeshlibs. -- Mathieu Trudel-Lapierre Mon, 19 Nov 2012 14:00:05 -0500 diff --git a/debian/rules b/debian/rules index 9c056b4..7305fba 100755 --- a/debian/rules +++ b/debian/rules @@ -12,6 +12,3 @@ override_dh_install: find debian/tmp/usr/lib -name *.la -delete dh_install --fail-missing -override_dh_auto_test: - # Tests temporarily disabled: needs work to fix X initialization issues. - -- cgit v1.2.3