[Debian-arabic-packages] [svn] r241 - in pkg/jcal/tags/0.4.0-1.1: . debian debian/patches

Lior Kaplan kaplan at alioth.debian.org
Sun Aug 12 21:19:28 UTC 2012


Author: kaplan
Date: Sun Aug 12 21:19:28 2012
New Revision: 241

Log:
[svn-buildpackage] Tagging jcal 0.4.0-1.1

Added:
   pkg/jcal/tags/0.4.0-1.1/
      - copied from r232, pkg/jcal/trunk/
Replaced:
   pkg/jcal/tags/0.4.0-1.1/debian/changelog
      - copied unchanged from r240, pkg/jcal/trunk/debian/changelog
   pkg/jcal/tags/0.4.0-1.1/debian/patches/autogen-bashism.diff
      - copied unchanged from r240, pkg/jcal/trunk/debian/patches/autogen-bashism.diff
   pkg/jcal/tags/0.4.0-1.1/debian/patches/jcal-manpage.diff
      - copied unchanged from r240, pkg/jcal/trunk/debian/patches/jcal-manpage.diff

Copied: pkg/jcal/tags/0.4.0-1.1/debian/changelog (from r240, pkg/jcal/trunk/debian/changelog)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ pkg/jcal/tags/0.4.0-1.1/debian/changelog	Sun Aug 12 21:19:28 2012	(r241, copy of r240, pkg/jcal/trunk/debian/changelog)
@@ -0,0 +1,45 @@
+jcal (0.4.0-1.1) unstable; urgency=low
+
+  * NMU
+  * Quote parameters to perform() in autogen.sh. Closes: #642722.
+    Previous code would work in bash, but not sh.
+
+ -- Steve McIntyre <steve.mcintyre at linaro.org>  Thu, 08 Dec 2011 17:54:45 +0000
+
+jcal (0.4.0-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Lior Kaplan <kaplan at debian.org>  Fri, 29 Jul 2011 14:23:37 +0200
+
+jcal (0.3.0-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Lior Kaplan <kaplan at debian.org>  Thu, 28 Jul 2011 13:16:21 +0200
+
+jcal (0.1.2-2) unstable; urgency=low
+
+  * Bump standards version to 3.9.1
+    - Remove *.la files from libjalali-dev to comply with Policy 10.2 
+      (Closes: #621549)
+  * Switch to dpkg-source 3.0 (quilt) format
+
+ -- Lior Kaplan <kaplan at debian.org>  Fri, 08 Apr 2011 00:17:31 +0300
+
+jcal (0.1.2-1) unstable; urgency=low
+
+  * New upstream release.
+  * Updated debian/control and debian/copyright
+    - Changed homepage URL.
+    - Use newly supported Homepage header for debian/control.
+  * Updated watch file
+
+ -- Alan Baghumian <alan at technotux.org>  Sat, 27 Oct 2007 09:28:04 +0200
+
+jcal (0.1.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #415802).
+
+ -- Alan Baghumian <alan at technotux.org>  Sat, 28 Apr 2007 09:43:22 +0330
+

Copied: pkg/jcal/tags/0.4.0-1.1/debian/patches/autogen-bashism.diff (from r240, pkg/jcal/trunk/debian/patches/autogen-bashism.diff)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ pkg/jcal/tags/0.4.0-1.1/debian/patches/autogen-bashism.diff	Sun Aug 12 21:19:28 2012	(r241, copy of r240, pkg/jcal/trunk/debian/patches/autogen-bashism.diff)
@@ -0,0 +1,141 @@
+Description: Fix autogen.sh to work in chroot envs
+Author: Lior Kaplan <kaplan at debian.org>
+Index: jcal-0.4.0/autogen.sh
+===================================================================
+--- jcal-0.4.0.orig/autogen.sh	2011-06-15 00:50:03.000000000 +0000
++++ jcal-0.4.0/autogen.sh	2011-12-08 18:24:28.348438961 +0000
+@@ -19,21 +19,21 @@
+ # along with libjalali.  If not, see <http://www.gnu.org/licenses/>.
+ #
+ 
+-#!/bin/bash
++#!/bin/sh
+ 
+ # @OPTIONS
+ OPTS="anch"
+ LONG_OPTS="nocolor,clean,help,alternative"
+ 
+ # @USAGE
+-function usage() {
++usage() {
+ 	echo -e "Jalali calendar library autogen build script."
+ 	echo -e "usage: autogen.sh [-nch]"
+ 	echo -e "try \`autogen.sh --help\' for more information."
+ }
+ 
+ # @HELP
+-function help() {
++help() {
+ 	echo -e "usage: autogen.sh [-nch]..."
+ 	echo -ne "Invokes GNU build system tools in order to create"
+ 	echo -e " necessary configuration scripts.\n"
+@@ -48,7 +48,7 @@
+ }
+ 
+ # echoes ``ok'' if parameter is zero, ''failed'' otherwise.
+-function printk() {
++printk() {
+ 	local STAT=$1
+ 
+ 	if [ $1 -eq 0 ]; then
+@@ -61,14 +61,14 @@
+ }
+ 
+ # performs make distclean and removes auto-generated files by GNU build system.
+-function clean() {
++clean() {
+ 	local STAT
+ 	# files
+-	local FUBARS=( "autom4te.cache" "Makefile.in" "m4" "aclocal.m4"
++	local FUBARS={ "autom4te.cache" "Makefile.in" "m4" "aclocal.m4"
+ 		"configure" "config.sub" "config.guess" "config.log"
+ 		"config.status" "depcomp" "install-sh" "libtool" "ltmain.sh"
+ 		"missing" "src/Makefile.in" "man/Makefile.in"
+-		"libjalali/Makefile.in" "INSTALL" )
++		"libjalali/Makefile.in" "INSTALL" }
+ 
+ 	echo -e "${GREEN}*${RESET} ${YELLOW}cleaning source tree...${RESET}"
+ 
+@@ -77,7 +77,7 @@
+ 		echo -ne "${GREEN}*{RESET} {YELLOW}performing distclean on"
+ 		echo -ne " sources if possible...${RESET} "
+ 		make distclean >/dev/null 2>&1
+-		let STAT=$?
++		export STAT=$?
+ 
+ 		printk ${STAT}
+ 		if [ ${STAT} -ne 0 ]; then
+@@ -98,7 +98,7 @@
+ }
+ 
+ # Setting colors to vt100 standard values, NULL if 0 gets passed to set_color()
+-function set_colors() {
++set_colors() {
+ 	local HAS_COLOR=$1
+ 
+ 	if [ ${HAS_COLOR} -eq 1 ]; then
+@@ -123,7 +123,7 @@
+ # $OUTPUT specifies whether is_present() should work silently or not.
+ # $EXIT specifies whther is_present() should exit on the event of
+ # service not found.
+-function is_present() {
++is_present() {
+ 	local SERVICE=$1
+ 	local NAME=$2
+ 	local OUTPUT=$3
+@@ -131,7 +131,7 @@
+ 	local PRESENT=0
+ 
+ 	if [ -n "${SERVICE}" ]; then
+-		let PRESENT=1
++		export PRESENT=1
+ 	fi
+ 
+ 	if [ ${OUTPUT} -eq 1 ]; then
+@@ -154,7 +154,7 @@
+ 
+ # Checking for tools
+ # aclocal, libtoolize, autoconf, automake and autoreconf
+-function check_services() {
++check_services() {
+ 	local STAT
+ 	ACLOCAL="$(which aclocal 2>/dev/null)"
+ 	is_present "${ACLOCAL}" "aclocal" 1 1
+@@ -182,16 +182,16 @@
+ # $EXIT specifies whether perform() should exit on the event of
+ # encoutering any errors or not.
+ # $PARAMS are the parameters passed to the service.
+-function perform() {
+-	local SERVICE=$1
+-	local NAME=$2
+-	local EXIT=$3
+-	local PARAMS=$4
++perform() {
++	local SERVICE="$1"
++	local NAME="$2"
++	local EXIT="$3"
++	local PARAMS="$4"
+ 	local SSTAT
+ 
+ 	echo -ne "${GREEN}*${RESET} running ${YELLOW}${NAME}${RESET} ${CYAN}${PARAMS}${RESET}... "
+ 	${SERVICE} ${PARAMS} >/dev/null 2>&1
+-	let STAT=$?
++	export STAT=$?
+ 
+ 	printk ${STAT}
+ 
+@@ -227,10 +227,10 @@
+ 
+ 	for i in $TEMP; do
+ 		case $i in
+-			-c|--clean) let CLEAN=1;;
+-			-n|--nocolor) let COLOR=0;;
+-			-h|--help) let HELP=1;;
+-			-a|--alternative) let ALTERN=1;;
++			-c|--clean) export CLEAN=1;;
++			-n|--nocolor) export COLOR=0;;
++			-h|--help) export HELP=1;;
++			-a|--alternative) export ALTERN=1;;
+ 		esac
+ 	done
+ fi

Copied: pkg/jcal/tags/0.4.0-1.1/debian/patches/jcal-manpage.diff (from r240, pkg/jcal/trunk/debian/patches/jcal-manpage.diff)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ pkg/jcal/tags/0.4.0-1.1/debian/patches/jcal-manpage.diff	Sun Aug 12 21:19:28 2012	(r241, copy of r240, pkg/jcal/trunk/debian/patches/jcal-manpage.diff)
@@ -0,0 +1,22 @@
+Description: Fix jcal man page
+Author: Lior Kaplan <kaplan at debian.org>
+Index: jcal-0.4.0/man/jcal.1
+===================================================================
+--- jcal-0.4.0.orig/man/jcal.1	2011-06-07 04:27:19.000000000 +0000
++++ jcal-0.4.0/man/jcal.1	2011-12-08 18:21:03.000000000 +0000
+@@ -157,7 +157,6 @@
+ Written by Ashkan Ghassemi. <ghassemi at ftml.net>
+ .Sh REPORTING BUGS
+ Report jcal bugs to <ghassemi at ftml.net>
+-
+ libjalali home page: <http://savannah.nongnu.org/projects/jcal/>
+ .Sh SEE ALSO
+ .Nm jdate (1),
+@@ -166,7 +165,6 @@
+ .Nm jstrptime (3)
+ .Sh COPYRIGHT
+ Copyright (C) 2011 Ashkan Ghassemi.
+-
+ License GPLv3+: GNU GPL version 3 or later
+ <http://gnu.org/licenses/gpl.html>.
+ This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by



More information about the Debian-arabic-packages mailing list