[Python-modules-commits] r13026 - in packages/pycalverter/trunk (24 files)

lxsameer-guest at users.alioth.debian.org lxsameer-guest at users.alioth.debian.org
Wed May 19 10:46:57 UTC 2010


    Date: Wednesday, May 19, 2010 @ 10:46:48
  Author: lxsameer-guest
Revision: 13026

[svn-inject] Applying Debian modifications to trunk

Added:
  packages/pycalverter/trunk/.pc/
  packages/pycalverter/trunk/.pc/.version
  packages/pycalverter/trunk/.pc/applied-patches
  packages/pycalverter/trunk/.pc/debian-changes-1.5.0-1/
  packages/pycalverter/trunk/.pc/debian-changes-1.5.0-1/setup.py
  packages/pycalverter/trunk/.pc/debian-changes-1.5.1/
  packages/pycalverter/trunk/.pc/debian-changes-1.5.1/USAGE.txt
  packages/pycalverter/trunk/.pc/fix-setup-py.patch/
  packages/pycalverter/trunk/.pc/fix-setup-py.patch/setup.py
  packages/pycalverter/trunk/debian/
  packages/pycalverter/trunk/debian/README.Debian
  packages/pycalverter/trunk/debian/README.source
  packages/pycalverter/trunk/debian/changelog
  packages/pycalverter/trunk/debian/compat
  packages/pycalverter/trunk/debian/control
  packages/pycalverter/trunk/debian/copyright
  packages/pycalverter/trunk/debian/docs
  packages/pycalverter/trunk/debian/patches/
  packages/pycalverter/trunk/debian/patches/debian-changes-1.5.1
  packages/pycalverter/trunk/debian/patches/series
  packages/pycalverter/trunk/debian/pycalverter.doc-base
  packages/pycalverter/trunk/debian/rules
  packages/pycalverter/trunk/debian/watch
Modified:
  packages/pycalverter/trunk/USAGE.txt

Added: packages/pycalverter/trunk/.pc/.version
===================================================================
--- packages/pycalverter/trunk/.pc/.version	                        (rev 0)
+++ packages/pycalverter/trunk/.pc/.version	2010-05-19 10:46:48 UTC (rev 13026)
@@ -0,0 +1 @@
+2

Added: packages/pycalverter/trunk/.pc/applied-patches
===================================================================
--- packages/pycalverter/trunk/.pc/applied-patches	                        (rev 0)
+++ packages/pycalverter/trunk/.pc/applied-patches	2010-05-19 10:46:48 UTC (rev 13026)
@@ -0,0 +1,3 @@
+fix-setup-py.patch
+debian-changes-1.5.0-1
+debian-changes-1.5.1

Added: packages/pycalverter/trunk/.pc/debian-changes-1.5.0-1/setup.py
===================================================================
--- packages/pycalverter/trunk/.pc/debian-changes-1.5.0-1/setup.py	                        (rev 0)
+++ packages/pycalverter/trunk/.pc/debian-changes-1.5.0-1/setup.py	2010-05-19 10:46:48 UTC (rev 13026)
@@ -0,0 +1,30 @@
+#!/usr/bin/env python
+
+from distutils.core import setup
+import calverter
+
+setup(name = 'pyCalverter',
+      version = '1.5.0',
+      description = 'Python Calendar Converter',
+      author = 'Mehdi Bayazee',
+      author_email = 'bayazee at gmail.com',
+      url = 'https://launchpad.net/pycalverter',
+      package_dir = {},
+      packages = [""],
+      scripts = ["calverter.py"],
+      license='GPL v2',
+      classifiers=[
+      'Development Status :: 5 - Production/Stable',
+      'Environment :: Plugins',
+      'Intended Audience :: End Users/Desktop',
+      'Intended Audience :: Developers',
+      'Intended Audience :: Science/Research',
+      'License :: OSI Approved :: GNU General Public License (GPL)',
+      'Operating System :: OS Independent',
+      'Programming Language :: Python',
+      'Topic :: Software Development :: Libraries :: Python Modules',
+      'Topic :: Software Development :: Localization',
+      'Topic :: Utilities',
+      ]
+
+     )

Added: packages/pycalverter/trunk/.pc/debian-changes-1.5.1/USAGE.txt
===================================================================
--- packages/pycalverter/trunk/.pc/debian-changes-1.5.1/USAGE.txt	                        (rev 0)
+++ packages/pycalverter/trunk/.pc/debian-changes-1.5.1/USAGE.txt	2010-05-19 10:46:48 UTC (rev 13026)
@@ -0,0 +1,25 @@
+# USAGE :
+
+from calverter import calverter
+cal = calverter()
+jd = cal.gregorian_to_jd(2007,07,01)
+wday = cal.jwday(jd)
+print "Jalali: "
+print cal.JALALI_WEEKDAYS[wday],
+print cal.jd_to_jalali(jd)
+print "\nIslamic: "
+print cal.ISLAMIC_WEEKDAYS[wday],
+print cal.jd_to_islamic(jd)
+
+if  cal.leap_islamic(1428) :
+    print 'Leap Isalmic year !'
+
+    
+# OUTPUT :
+
+Jalali: 
+Yekshanbeh (1386, 4, 10)
+
+Islamic: 
+al-ahad (1428, 6, 15)
+Leap Isalmic year !

Added: packages/pycalverter/trunk/.pc/fix-setup-py.patch/setup.py
===================================================================
--- packages/pycalverter/trunk/.pc/fix-setup-py.patch/setup.py	                        (rev 0)
+++ packages/pycalverter/trunk/.pc/fix-setup-py.patch/setup.py	2010-05-19 10:46:48 UTC (rev 13026)
@@ -0,0 +1,30 @@
+#!/usr/bin/env python
+
+from distutils.core import setup
+import calverter
+
+setup(name = 'pyCalverter',
+      version = '1.5.0',
+      description = 'Python Calendar Converter',
+      author = 'Mehdi Bayazee',
+      author_email = 'bayazee at gmail.com',
+      url = 'https://launchpad.net/pycalverter',
+      package_dir = {},
+      packages = [""],
+      scripts = ["calverter.py"],
+      license='GPL v2',
+      classifiers=[
+      'Development Status :: 5 - Production/Stable',
+      'Environment :: Plugins',
+      'Intended Audience :: End Users/Desktop',
+      'Intended Audience :: Developers',
+      'Intended Audience :: Science/Research',
+      'License :: OSI Approved :: GNU General Public License (GPL)',
+      'Operating System :: OS Independent',
+      'Programming Language :: Python',
+      'Topic :: Software Development :: Libraries :: Python Modules',
+      'Topic :: Software Development :: Localization',
+      'Topic :: Utilities',
+      ]
+
+     )

Modified: packages/pycalverter/trunk/USAGE.txt
===================================================================
--- packages/pycalverter/trunk/USAGE.txt	2010-05-19 10:46:03 UTC (rev 13025)
+++ packages/pycalverter/trunk/USAGE.txt	2010-05-19 10:46:48 UTC (rev 13026)
@@ -1,7 +1,7 @@
 # USAGE :
 
 from calverter import calverter
-cal = calverter()
+cal = Calverter()
 jd = cal.gregorian_to_jd(2007,07,01)
 wday = cal.jwday(jd)
 print "Jalali: "


Property changes on: packages/pycalverter/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/pycalverter/trunk/debian/README.Debian
===================================================================
--- packages/pycalverter/trunk/debian/README.Debian	                        (rev 0)
+++ packages/pycalverter/trunk/debian/README.Debian	2010-05-19 10:46:48 UTC (rev 13026)
@@ -0,0 +1,6 @@
+pycalverter for Debian
+----------------------
+
+<possible notes regarding this package - if none, delete this file>
+
+ -- Sameer Rahmani <lxsameer at gmail.com>  Tue, 18 May 2010 22:55:36 +0430

Added: packages/pycalverter/trunk/debian/README.source
===================================================================
--- packages/pycalverter/trunk/debian/README.source	                        (rev 0)
+++ packages/pycalverter/trunk/debian/README.source	2010-05-19 10:46:48 UTC (rev 13026)
@@ -0,0 +1,9 @@
+pycalverter for Debian
+----------------------
+
+<this file describes information about the source package, see Debian policy
+manual section 4.14. You WILL either need to modify or delete this file>
+
+
+
+

Added: packages/pycalverter/trunk/debian/changelog
===================================================================
--- packages/pycalverter/trunk/debian/changelog	                        (rev 0)
+++ packages/pycalverter/trunk/debian/changelog	2010-05-19 10:46:48 UTC (rev 13026)
@@ -0,0 +1,6 @@
+pycalverter (1.5.1) unstable; urgency=low
+
+  * Initial release. Closes: #581741
+
+
+ -- Sameer Rahmani <lxsameer at gmail.com>  Sun, 16 May 2010 00:33:34 +0430

Added: packages/pycalverter/trunk/debian/compat
===================================================================
--- packages/pycalverter/trunk/debian/compat	                        (rev 0)
+++ packages/pycalverter/trunk/debian/compat	2010-05-19 10:46:48 UTC (rev 13026)
@@ -0,0 +1 @@
+7

Added: packages/pycalverter/trunk/debian/control
===================================================================
--- packages/pycalverter/trunk/debian/control	                        (rev 0)
+++ packages/pycalverter/trunk/debian/control	2010-05-19 10:46:48 UTC (rev 13026)
@@ -0,0 +1,20 @@
+Source: pycalverter
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Sameer Rahmani <lxsameer at gmail.com>
+Build-Depends: debhelper (>= 7.0.50~) ,  python , python-support
+Standards-Version: 3.8.4
+Homepage: http://bitbucket.org/bayazee/pycalverter/overview
+Vcs-Hg: https://lxsameer@bitbucket.org/bayazee/pycalverter
+Vcs-Browser: http://bitbucket.org/bayazee/pycalverter/src
+
+Package: python-calverter
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Convert date between hijri, jalahi, gregorian
+ Since date types that use all around the world are
+ difference it a bit hard to convert between them
+ without of any mistakes, so pycalverter convert
+ dates between hijri, jalahi and gregorian easily
+ and without any pain.

Added: packages/pycalverter/trunk/debian/copyright
===================================================================
--- packages/pycalverter/trunk/debian/copyright	                        (rev 0)
+++ packages/pycalverter/trunk/debian/copyright	2010-05-19 10:46:48 UTC (rev 13026)
@@ -0,0 +1,44 @@
+This work was packaged for Debian by:
+
+    Sameer Rahmani <lxsameer at gmail.com> on Sun, 16 May 2010 00:33:34 +0430
+
+It was downloaded from:
+
+    <http://bitbucket.org/bayazee/pycalverter/overview>
+
+Upstream Author(s):
+
+    
+    Mehdi Bayazee <bayazee at gmail.com>
+
+Copyright:
+
+    Copyright (C) 2009-10 Mehdi Bayazee
+    
+
+License:
+
+   This package is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License version 2 as
+   published by the Free Software Foundation.
+
+
+    This package is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program. If not, see <http://www.gnu.org/licenses/>
+
+On Debian systems, the complete text of the GNU General
+Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
+
+The Debian packaging is:
+
+    Copyright (C) 2010 Sameer Rahmani <lxsameer at gmail.com>
+
+you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License.
+

Added: packages/pycalverter/trunk/debian/docs
===================================================================
--- packages/pycalverter/trunk/debian/docs	                        (rev 0)
+++ packages/pycalverter/trunk/debian/docs	2010-05-19 10:46:48 UTC (rev 13026)
@@ -0,0 +1 @@
+USAGE.txt

Added: packages/pycalverter/trunk/debian/patches/debian-changes-1.5.1
===================================================================
--- packages/pycalverter/trunk/debian/patches/debian-changes-1.5.1	                        (rev 0)
+++ packages/pycalverter/trunk/debian/patches/debian-changes-1.5.1	2010-05-19 10:46:48 UTC (rev 13026)
@@ -0,0 +1,36 @@
+Description: Upstream changes introduced in version 1.5.1
+ This patch has been created by dpkg-source during the package build.
+ Here's the last changelog entry, hopefully it gives details on why
+ those changes were made:
+ .
+ pycalverter (1.5.1) unstable; urgency=low
+ .
+   * Initial release. Closes: #581741
+ .
+ The person named in the Author field signed this changelog entry.
+Author: Sameer Rahmani <lxsameer at gmail.com>
+Bug-Debian: http://bugs.debian.org/581741
+
+---
+The information above should follow the Patch Tagging Guidelines, please
+checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
+are templates for supplementary fields that you might want to add:
+
+Origin: <vendor|upstream|other>, <url of original patch>
+Bug: <url in upstream bugtracker>
+Bug-Debian: http://bugs.debian.org/<bugnumber>
+Forwarded: <no|not-needed|url proving that it has been forwarded>
+Reviewed-By: <name and email of someone who approved the patch>
+Last-Update: <YYYY-MM-DD>
+
+--- pycalverter-1.5.1.orig/USAGE.txt
++++ pycalverter-1.5.1/USAGE.txt
+@@ -1,7 +1,7 @@
+ # USAGE :
+ 
+ from calverter import calverter
+-cal = calverter()
++cal = Calverter()
+ jd = cal.gregorian_to_jd(2007,07,01)
+ wday = cal.jwday(jd)
+ print "Jalali: "

Added: packages/pycalverter/trunk/debian/patches/series
===================================================================
--- packages/pycalverter/trunk/debian/patches/series	                        (rev 0)
+++ packages/pycalverter/trunk/debian/patches/series	2010-05-19 10:46:48 UTC (rev 13026)
@@ -0,0 +1 @@
+debian-changes-1.5.1

Added: packages/pycalverter/trunk/debian/pycalverter.doc-base
===================================================================
--- packages/pycalverter/trunk/debian/pycalverter.doc-base	                        (rev 0)
+++ packages/pycalverter/trunk/debian/pycalverter.doc-base	2010-05-19 10:46:48 UTC (rev 13026)
@@ -0,0 +1,8 @@
+Document: pycalverter
+Title: Debian pycalverter Manual
+Author: Mehdi Bayazee <bayazee at gmail.com>
+Abstract: How to use pycalverter.
+Section: Programming
+
+Format: text
+Files: /usr/share/doc/pycalverter/USAGE.txt

Added: packages/pycalverter/trunk/debian/rules
===================================================================
--- packages/pycalverter/trunk/debian/rules	                        (rev 0)
+++ packages/pycalverter/trunk/debian/rules	2010-05-19 10:46:48 UTC (rev 13026)
@@ -0,0 +1,14 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+export DH_VERBOSE=1
+
+%:
+	dh  $@
+


Property changes on: packages/pycalverter/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/pycalverter/trunk/debian/watch
===================================================================
--- packages/pycalverter/trunk/debian/watch	                        (rev 0)
+++ packages/pycalverter/trunk/debian/watch	2010-05-19 10:46:48 UTC (rev 13026)
@@ -0,0 +1,2 @@
+version=3
+http://bitbucket.org/bayazee/pycalverter/get/tip.tar.gz




More information about the Python-modules-commits mailing list