[Debian-hebrew-package] r772 - in /pkg/hdate-applet/trunk: debian/changelog debian/control ghcal.desktop mkinstalldirs po/he.po

kaplan at users.alioth.debian.org kaplan at users.alioth.debian.org
Wed Sep 3 18:01:29 UTC 2008


Author: kaplan
Date: Wed Sep  3 18:01:29 2008
New Revision: 772

URL: http://svn.debian.org/wsvn/debian-hebrew/?sc=1&rev=772
Log: (empty)

Added:
    pkg/hdate-applet/trunk/ghcal.desktop
    pkg/hdate-applet/trunk/mkinstalldirs   (with props)
    pkg/hdate-applet/trunk/po/he.po
      - copied, changed from r768, pkg/hdate-applet/trunk/po/he.po
Modified:
    pkg/hdate-applet/trunk/debian/changelog
    pkg/hdate-applet/trunk/debian/control

Modified: pkg/hdate-applet/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-hebrew/pkg/hdate-applet/trunk/debian/changelog?rev=772&op=diff
==============================================================================
--- pkg/hdate-applet/trunk/debian/changelog (original)
+++ pkg/hdate-applet/trunk/debian/changelog Wed Sep  3 18:01:29 2008
@@ -2,6 +2,7 @@
 
   * New upstream release
     - Accepcts negtive timezone values (Closes: #488616)
+  * Add mkinstalldirs script as the build with cdbs needs it.
 
  -- Lior Kaplan <kaplan at debian.org>  Wed, 03 Sep 2008 16:13:52 +0300
 

Modified: pkg/hdate-applet/trunk/debian/control
URL: http://svn.debian.org/wsvn/debian-hebrew/pkg/hdate-applet/trunk/debian/control?rev=772&op=diff
==============================================================================
--- pkg/hdate-applet/trunk/debian/control (original)
+++ pkg/hdate-applet/trunk/debian/control Wed Sep  3 18:01:29 2008
@@ -11,7 +11,7 @@
 
 Package: hdate-applet
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}
+Depends: ${shlibs:Depends}
 Description: Hebrew calendar applet
  A GNOME desktop applet providing an Hebrew calendar that gives the user easy
  access to the Jewish calendar.

Added: pkg/hdate-applet/trunk/ghcal.desktop
URL: http://svn.debian.org/wsvn/debian-hebrew/pkg/hdate-applet/trunk/ghcal.desktop?rev=772&op=file
==============================================================================
--- pkg/hdate-applet/trunk/ghcal.desktop (added)
+++ pkg/hdate-applet/trunk/ghcal.desktop Wed Sep  3 18:01:29 2008
@@ -1,0 +1,13 @@
+[Desktop Entry]
+Version=1.0
+Name=Hdate
+Name[he]=לוח שנה עברי
+Comment=Hebrew desktop calendar
+Comment[he]=לוח שנה המציג את התאריך העברי
+Exec=ghcal
+Terminal=false
+Type=Application
+Icon=accessories-calendar
+Categories=GNOME;GTK;Utility;Calendar;
+StartupNotify=false
+GenericName[en_US]=

Added: pkg/hdate-applet/trunk/mkinstalldirs
URL: http://svn.debian.org/wsvn/debian-hebrew/pkg/hdate-applet/trunk/mkinstalldirs?rev=772&op=file
==============================================================================
--- pkg/hdate-applet/trunk/mkinstalldirs (added)
+++ pkg/hdate-applet/trunk/mkinstalldirs Wed Sep  3 18:01:29 2008
@@ -1,0 +1,111 @@
+#! /bin/sh
+# mkinstalldirs --- make directory hierarchy
+# Author: Noah Friedman <friedman at prep.ai.mit.edu>
+# Created: 1993-05-16
+# Public domain
+
+errstatus=0
+dirmode=""
+
+usage="\
+Usage: mkinstalldirs [-h] [--help] [-m mode] dir ..."
+
+# process command line arguments
+while test $# -gt 0 ; do
+  case $1 in
+    -h | --help | --h*)         # -h for help
+      echo "$usage" 1>&2
+      exit 0
+      ;;
+    -m)                         # -m PERM arg
+      shift
+      test $# -eq 0 && { echo "$usage" 1>&2; exit 1; }
+      dirmode=$1
+      shift
+      ;;
+    --)                         # stop option processing
+      shift
+      break
+      ;;
+    -*)                         # unknown option
+      echo "$usage" 1>&2
+      exit 1
+      ;;
+    *)                          # first non-opt arg
+      break
+      ;;
+  esac
+done
+
+for file
+do
+  if test -d "$file"; then
+    shift
+  else
+    break
+  fi
+done
+
+case $# in
+  0) exit 0 ;;
+esac
+
+case $dirmode in
+  '')
+    if mkdir -p -- . 2>/dev/null; then
+      echo "mkdir -p -- $*"
+      exec mkdir -p -- "$@"
+    fi
+    ;;
+  *)
+    if mkdir -m "$dirmode" -p -- . 2>/dev/null; then
+      echo "mkdir -m $dirmode -p -- $*"
+      exec mkdir -m "$dirmode" -p -- "$@"
+    fi
+    ;;
+esac
+
+for file
+do
+  set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
+  shift
+
+  pathcomp=
+  for d
+  do
+    pathcomp="$pathcomp$d"
+    case $pathcomp in
+      -*) pathcomp=./$pathcomp ;;
+    esac
+
+    if test ! -d "$pathcomp"; then
+      echo "mkdir $pathcomp"
+
+      mkdir "$pathcomp" || lasterr=$?
+
+      if test ! -d "$pathcomp"; then
+  	errstatus=$lasterr
+      else
+  	if test ! -z "$dirmode"; then
+	  echo "chmod $dirmode $pathcomp"
+    	  lasterr=""
+  	  chmod "$dirmode" "$pathcomp" || lasterr=$?
+
+  	  if test ! -z "$lasterr"; then
+  	    errstatus=$lasterr
+  	  fi
+  	fi
+      fi
+    fi
+
+    pathcomp="$pathcomp/"
+  done
+done
+
+exit $errstatus
+
+# Local Variables:
+# mode: shell-script
+# sh-indentation: 2
+# End:
+# mkinstalldirs ends here

Propchange: pkg/hdate-applet/trunk/mkinstalldirs
------------------------------------------------------------------------------
    svn:executable = *

Copied: pkg/hdate-applet/trunk/po/he.po (from r768, pkg/hdate-applet/trunk/po/he.po)
URL: http://svn.debian.org/wsvn/debian-hebrew/pkg/hdate-applet/trunk/po/he.po?rev=772&op=diff
==============================================================================
--- pkg/hdate-applet/trunk/po/he.po (original)
+++ pkg/hdate-applet/trunk/po/he.po Wed Sep  3 18:01:29 2008
@@ -5,10 +5,10 @@
 # Lior Kaplan <kaplan at debian.org>, 2006, 2008.
 msgid ""
 msgstr ""
-"Project-Id-Version: hdate-applet 0.15.9\n"
+"Project-Id-Version: hdate-applet 0.15.10\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-02-25 21:00+0200\n"
-"PO-Revision-Date: 2008-03-22 09:47+0200\n"
+"POT-Creation-Date: 2008-06-30 06:47+0300\n"
+"PO-Revision-Date: 2008-09-03 20:47+0300\n"
 "Last-Translator: Lior Kaplan <kaplan at debian.org>\n"
 "Language-Team: Hebrew <debian-hebrew-common at lists.alioth.debian.org>\n"
 "MIME-Version: 1.0\n"
@@ -115,3 +115,4 @@
 #: src/ghcal-interface.c:78
 msgid "gHcal - Hebrew Calendar"
 msgstr "gHcal - לוח שנה עברי"
+




More information about the Debian-hebrew-package mailing list