[Python-modules-commits] r13080 - in packages/pykickstart/trunk (13 files)

chaica-guest at users.alioth.debian.org chaica-guest at users.alioth.debian.org
Mon May 24 22:08:06 UTC 2010


    Date: Monday, May 24, 2010 @ 22:07:58
  Author: chaica-guest
Revision: 13080

* first commit for debian dir

Added:
  packages/pykickstart/trunk/debian/
  packages/pykickstart/trunk/debian/changelog
  packages/pykickstart/trunk/debian/compat
  packages/pykickstart/trunk/debian/control
  packages/pykickstart/trunk/debian/copyright
  packages/pykickstart/trunk/debian/docs
  packages/pykickstart/trunk/debian/patches/
  packages/pykickstart/trunk/debian/patches/01_fix_INSTALL_NLS_DIR.diff
  packages/pykickstart/trunk/debian/patches/02_keep_docs.diff
  packages/pykickstart/trunk/debian/patches/series
  packages/pykickstart/trunk/debian/rules
  packages/pykickstart/trunk/debian/source/
  packages/pykickstart/trunk/debian/source/format


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

Added: packages/pykickstart/trunk/debian/changelog
===================================================================
--- packages/pykickstart/trunk/debian/changelog	                        (rev 0)
+++ packages/pykickstart/trunk/debian/changelog	2010-05-24 22:07:58 UTC (rev 13080)
@@ -0,0 +1,5 @@
+pykickstart (1.72-1) unstable; urgency=low
+
+  * Initial release (Closes: #576531)
+
+ -- Fathi Boudra <fabo at debian.org>  Mon, 24 May 2010 11:32:07 +0300

Added: packages/pykickstart/trunk/debian/compat
===================================================================
--- packages/pykickstart/trunk/debian/compat	                        (rev 0)
+++ packages/pykickstart/trunk/debian/compat	2010-05-24 22:07:58 UTC (rev 13080)
@@ -0,0 +1 @@
+7

Added: packages/pykickstart/trunk/debian/control
===================================================================
--- packages/pykickstart/trunk/debian/control	                        (rev 0)
+++ packages/pykickstart/trunk/debian/control	2010-05-24 22:07:58 UTC (rev 13080)
@@ -0,0 +1,19 @@
+Source: pykickstart
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Carl Chenet <chaica at ohmytux.com>, Fathi Boudra <fabo at debian.org>
+Build-Depends: debhelper (>= 7.0.50~), gettext, python (>= 2.3.5-7),
+ python-setuptools, python-support (>= 0.90.0), python-urlgrabber, quilt
+Standards-Version: 3.8.4
+Homepage: http://fedoraproject.org/wiki/Pykickstart
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/pylibmc/trunk
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/pylibmc/trunk/
+
+Package: python-kickstart
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}, python-urlgrabber
+Description: A Python library for manipulating kickstart files
+ pykickstart is a Python library consisting of a data representation of
+ kickstart files, a parser to read file into that representation, and a writer
+ to generate kickstart files.

Added: packages/pykickstart/trunk/debian/copyright
===================================================================
--- packages/pykickstart/trunk/debian/copyright	                        (rev 0)
+++ packages/pykickstart/trunk/debian/copyright	2010-05-24 22:07:58 UTC (rev 13080)
@@ -0,0 +1,39 @@
+This work was packaged for Debian by:
+
+    Fathi Boudra <fabo at debian.org> on Mon, 24 May 2010 11:32:07 +0300
+
+It was downloaded from:
+
+    http://fedoraproject.org/wiki/Pykickstart
+
+Upstream Author:
+
+    Chris Lumens <clumens at redhat.com>
+
+Copyright:
+
+    Copyright (C) 2005-2010 Red Hat, Inc.
+
+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 Fathi Boudra <fabo at debian.org>
+
+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.

Added: packages/pykickstart/trunk/debian/docs
===================================================================
--- packages/pykickstart/trunk/debian/docs	                        (rev 0)
+++ packages/pykickstart/trunk/debian/docs	2010-05-24 22:07:58 UTC (rev 13080)
@@ -0,0 +1,3 @@
+README
+docs/programmers-guide
+docs/kickstart-docs.txt

Added: packages/pykickstart/trunk/debian/patches/01_fix_INSTALL_NLS_DIR.diff
===================================================================
--- packages/pykickstart/trunk/debian/patches/01_fix_INSTALL_NLS_DIR.diff	                        (rev 0)
+++ packages/pykickstart/trunk/debian/patches/01_fix_INSTALL_NLS_DIR.diff	2010-05-24 22:07:58 UTC (rev 13080)
@@ -0,0 +1,14 @@
+Description: fix RPM_BUILD_ROOT usage on INSTALL_NLS_DIR.
+Author: Fathi Boudra <fabo at debian.org>
+
+--- a/po/Makefile
++++ b/po/Makefile
+@@ -13,7 +13,7 @@ INSTALL_DATA	= $(INSTALL) -m 644
+ INSTALL_DIR	= /usr/bin/install -d
+ 
+ # destination directory
+-INSTALL_NLS_DIR = $(RPM_BUILD_ROOT)/usr/share/locale
++INSTALL_NLS_DIR = $(DESTDIR)/usr/share/locale
+ 
+ # PO catalog handling
+ MSGMERGE	= msgmerge -v

Added: packages/pykickstart/trunk/debian/patches/02_keep_docs.diff
===================================================================
--- packages/pykickstart/trunk/debian/patches/02_keep_docs.diff	                        (rev 0)
+++ packages/pykickstart/trunk/debian/patches/02_keep_docs.diff	2010-05-24 22:07:58 UTC (rev 13080)
@@ -0,0 +1,14 @@
+Description: keep docs and ChangeLog. We don't want to get these files from internet.
+Author: Fathi Boudra <fabo at debian.org>
+
+--- a/Makefile
++++ b/Makefile
+@@ -29,7 +29,7 @@ test:
+ 	PYTHONPATH=. python $(TESTSUITE) -v
+ 
+ clean:
+-	-rm *.tar.gz pykickstart/*.pyc pykickstart/commands/*.pyc pykickstart/handlers/*.pyc tests/*.pyc tests/commands/*.pyc docs/* ChangeLog
++	-rm *.tar.gz pykickstart/*.pyc pykickstart/commands/*.pyc pykickstart/handlers/*.pyc tests/*.pyc tests/commands/*.pyc
+ 	$(MAKE) -C po clean
+ 	python setup.py -q clean --all
+ 

Added: packages/pykickstart/trunk/debian/patches/series
===================================================================
--- packages/pykickstart/trunk/debian/patches/series	                        (rev 0)
+++ packages/pykickstart/trunk/debian/patches/series	2010-05-24 22:07:58 UTC (rev 13080)
@@ -0,0 +1,3 @@
+01_fix_INSTALL_NLS_DIR.diff
+02_keep_docs.diff
+debian-changes-1.72-1

Added: packages/pykickstart/trunk/debian/rules
===================================================================
--- packages/pykickstart/trunk/debian/rules	                        (rev 0)
+++ packages/pykickstart/trunk/debian/rules	2010-05-24 22:07:58 UTC (rev 13080)
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	dh  $@


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

Added: packages/pykickstart/trunk/debian/source/format
===================================================================
--- packages/pykickstart/trunk/debian/source/format	                        (rev 0)
+++ packages/pykickstart/trunk/debian/source/format	2010-05-24 22:07:58 UTC (rev 13080)
@@ -0,0 +1 @@
+3.0 (quilt)




More information about the Python-modules-commits mailing list