[debian-edu-commits] debian-edu/debian-edu-doc.git (#485) - wheezy (branch) updated: 1.2_20090131

David Prévot taffit at alioth.debian.org
Sat Oct 5 12:19:05 UTC 2013


The branch, wheezy has been updated
       via  e9ee10b0b0ddcdd44c7eceaf4fab307547f774b8 (commit)
      from  6c61df2786004244a137d3e4cab4ab1df0513c24 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
-----------------------------------------------------------------------

Summary of changes:
 debian/changelog                  |   10 ++++++++++
 debian/debian-edu-doc-de.postinst |    8 ++++++++
 debian/debian-edu-doc-de.postrm   |   12 ++++++++++++
 debian/debian-edu-doc-en.postinst |    8 ++++++++
 debian/debian-edu-doc-en.postrm   |   12 ++++++++++++
 debian/debian-edu-doc-es.postinst |    8 ++++++++
 debian/debian-edu-doc-es.postrm   |   12 ++++++++++++
 debian/debian-edu-doc-fr.postinst |    8 ++++++++
 debian/debian-edu-doc-fr.postrm   |   12 ++++++++++++
 debian/debian-edu-doc-it.postinst |    8 ++++++++
 debian/debian-edu-doc-it.postrm   |   12 ++++++++++++
 debian/debian-edu-doc-nb.postinst |    8 ++++++++
 debian/debian-edu-doc-nb.postrm   |   12 ++++++++++++
 13 files changed, 130 insertions(+)
 create mode 100644 debian/debian-edu-doc-de.postinst
 create mode 100644 debian/debian-edu-doc-de.postrm
 create mode 100644 debian/debian-edu-doc-en.postinst
 create mode 100644 debian/debian-edu-doc-en.postrm
 create mode 100644 debian/debian-edu-doc-es.postinst
 create mode 100644 debian/debian-edu-doc-es.postrm
 create mode 100644 debian/debian-edu-doc-fr.postinst
 create mode 100644 debian/debian-edu-doc-fr.postrm
 create mode 100644 debian/debian-edu-doc-it.postinst
 create mode 100644 debian/debian-edu-doc-it.postrm
 create mode 100644 debian/debian-edu-doc-nb.postinst
 create mode 100644 debian/debian-edu-doc-nb.postrm

The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index fd63fe2..635ee87 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+debian-edu-doc (1.2~20090131) terra; urgency=low
+
+  * Create links from /usr/share/doc/debian-edu-$CC to
+    /usr/share/doc/debian-edu-doc/$CC/ in the postinst of the language
+    specific binary packages to provide a single entry point to the
+    documentation when viewed in a webbrowser.
+  * Remove those links in the postrm scripts.
+
+ -- Holger Levsen <holger at debian.org>  Sat, 31 Jan 2009 13:13:27 +0100
+
 debian-edu-doc (1.2~20090115) terra; urgency=low
 
   * release manual:
diff --git a/debian/debian-edu-doc-de.postinst b/debian/debian-edu-doc-de.postinst
new file mode 100644
index 0000000..233d31b
--- /dev/null
+++ b/debian/debian-edu-doc-de.postinst
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+mkdir -p /usr/share/doc/debian-edu-doc 
+ln -sf /usr/share/doc/debian-edu-doc-de /usr/share/doc/debian-edu-doc/de
diff --git a/debian/debian-edu-doc-de.postrm b/debian/debian-edu-doc-de.postrm
new file mode 100644
index 0000000..fb74ccd
--- /dev/null
+++ b/debian/debian-edu-doc-de.postrm
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+# remove link we created at installation via postinst
+rm -f /usr/share/doc/debian-edu-doc/de
+
+# cleanup. As debian-edu-doc is a transitional package now, it might have 
+# been removed, without this directory being removed, due to our link...
+rmdir /usr/share/doc/debian-edu-doc || true
diff --git a/debian/debian-edu-doc-en.postinst b/debian/debian-edu-doc-en.postinst
new file mode 100644
index 0000000..63f1af3
--- /dev/null
+++ b/debian/debian-edu-doc-en.postinst
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+mkdir -p /usr/share/doc/debian-edu-doc 
+ln -sf /usr/share/doc/debian-edu-doc-en /usr/share/doc/debian-edu-doc/en
diff --git a/debian/debian-edu-doc-en.postrm b/debian/debian-edu-doc-en.postrm
new file mode 100644
index 0000000..a5e6c88
--- /dev/null
+++ b/debian/debian-edu-doc-en.postrm
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+# remove link we created at installation via postinst
+rm -f /usr/share/doc/debian-edu-doc/en
+
+# cleanup. As debian-edu-doc is a transitional package now, it might have 
+# been removed, without this directory being removed, due to our link...
+rmdir /usr/share/doc/debian-edu-doc || true
diff --git a/debian/debian-edu-doc-es.postinst b/debian/debian-edu-doc-es.postinst
new file mode 100644
index 0000000..0d81255
--- /dev/null
+++ b/debian/debian-edu-doc-es.postinst
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+mkdir -p /usr/share/doc/debian-edu-doc 
+ln -sf /usr/share/doc/debian-edu-doc-es /usr/share/doc/debian-edu-doc/es
diff --git a/debian/debian-edu-doc-es.postrm b/debian/debian-edu-doc-es.postrm
new file mode 100644
index 0000000..e46c939
--- /dev/null
+++ b/debian/debian-edu-doc-es.postrm
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+# remove link we created at installation via postinst
+rm -f /usr/share/doc/debian-edu-doc/es
+
+# cleanup. As debian-edu-doc is a transitional package now, it might have 
+# been removed, without this directory being removed, due to our link...
+rmdir /usr/share/doc/debian-edu-doc || true
diff --git a/debian/debian-edu-doc-fr.postinst b/debian/debian-edu-doc-fr.postinst
new file mode 100644
index 0000000..e360fa1
--- /dev/null
+++ b/debian/debian-edu-doc-fr.postinst
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+mkdir -p /usr/share/doc/debian-edu-doc 
+ln -sf /usr/share/doc/debian-edu-doc-fr /usr/share/doc/debian-edu-doc/fr
diff --git a/debian/debian-edu-doc-fr.postrm b/debian/debian-edu-doc-fr.postrm
new file mode 100644
index 0000000..150bc66
--- /dev/null
+++ b/debian/debian-edu-doc-fr.postrm
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+# remove link we created at installation via postinst
+rm -f /usr/share/doc/debian-edu-doc/fr
+
+# cleanup. As debian-edu-doc is a transitional package now, it might have 
+# been removed, without this directory being removed, due to our link...
+rmdir /usr/share/doc/debian-edu-doc || true
diff --git a/debian/debian-edu-doc-it.postinst b/debian/debian-edu-doc-it.postinst
new file mode 100644
index 0000000..d947456
--- /dev/null
+++ b/debian/debian-edu-doc-it.postinst
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+mkdir -p /usr/share/doc/debian-edu-doc 
+ln -sf /usr/share/doc/debian-edu-doc-it /usr/share/doc/debian-edu-doc/it
diff --git a/debian/debian-edu-doc-it.postrm b/debian/debian-edu-doc-it.postrm
new file mode 100644
index 0000000..18fa8d9
--- /dev/null
+++ b/debian/debian-edu-doc-it.postrm
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+# remove link we created at installation via postinst
+rm -f /usr/share/doc/debian-edu-doc/it
+
+# cleanup. As debian-edu-doc is a transitional package now, it might have 
+# been removed, without this directory being removed, due to our link...
+rmdir /usr/share/doc/debian-edu-doc || true
diff --git a/debian/debian-edu-doc-nb.postinst b/debian/debian-edu-doc-nb.postinst
new file mode 100644
index 0000000..d89264e
--- /dev/null
+++ b/debian/debian-edu-doc-nb.postinst
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+mkdir -p /usr/share/doc/debian-edu-doc 
+ln -sf /usr/share/doc/debian-edu-doc-nb /usr/share/doc/debian-edu-doc/nb
diff --git a/debian/debian-edu-doc-nb.postrm b/debian/debian-edu-doc-nb.postrm
new file mode 100644
index 0000000..3a499ee
--- /dev/null
+++ b/debian/debian-edu-doc-nb.postrm
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+# remove link we created at installation via postinst
+rm -f /usr/share/doc/debian-edu-doc/nb
+
+# cleanup. As debian-edu-doc is a transitional package now, it might have 
+# been removed, without this directory being removed, due to our link...
+rmdir /usr/share/doc/debian-edu-doc || true


hooks/post-receive
-- 
debian-edu-doc.git (Debian package debian-edu-doc)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "debian-edu-doc.git" (Debian package debian-edu-doc).




More information about the debian-edu-commits mailing list