Add debian 42/117942/1 release-20170309 release-pylint accepted/tizen/devbase/services/20190930.043324 submit/devel/20190730.075356 submit/trunk/20190927.012743 submit/trunk/20190930.011717 submit/trunk/20190930.015156 submit/trunk/20191021.051025 submit/trunk/20191021.061922 submit/trunk/20191021.083710
authoradmin <yuhuan.yang@samsung.com>
Mon, 13 Feb 2017 13:21:11 +0000 (21:21 +0800)
committerSoonKyu Park <sk7.park@samsung.com>
Wed, 8 Mar 2017 05:45:25 +0000 (14:45 +0900)
Change-Id: Ic8e919d7d51bbc1e6feff7765fb146872d5070d0
Signed-off-by: admin <yuhuan.yang@samsung.com>
debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/gerrithooks.install [new file with mode: 0644]
debian/rules [new file with mode: 0755]

diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..b4cd3c9
--- /dev/null
@@ -0,0 +1,6 @@
+gerrithooks (0.1.0) unstable; urgency=low
+
+  * add debian
+
+ -- Shuai Fu <shuai01.fu@samsung.com> Mon, 13 Feb 2017 21:23:23 +0800
+
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..7f8f011
--- /dev/null
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..e7f4ca9
--- /dev/null
@@ -0,0 +1,31 @@
+Source: gerrithooks
+Section: devel
+Priority: extra
+Maintainer: Jian-feng Ding <jian-feng.ding@intel.com>
+Build-Depends: debhelper (>= 7.0.15), cdbs, python-dev, python-support, python-docutils, python-setuptools 
+Standards-Version: 0.1.0
+Homepage: http://www.tizen.org
+
+Package: gerrithooks
+Architecture: all
+Depends:  ${python:Depends},
+ rpm,
+ python-rpm,
+ python-urlgrabber,
+ cpio,
+ bzip2,
+ gzip,
+ python-setuptools,
+ git-core,
+ git-buildpackage-rpm,
+ python-cheetah,
+ python-redis,
+ python-requests,
+ python-snapdiff,
+ python-yaml,
+ python-lxml,
+Description: image creator for Linux distributions
+  The tool gerrithooks is used to ppfarm test
+
+
+
diff --git a/debian/gerrithooks.install b/debian/gerrithooks.install
new file mode 100644 (file)
index 0000000..ae1eee8
--- /dev/null
@@ -0,0 +1,5 @@
+etc/* /etc
+usr/bin/* /usr/bin
+usr/lib/python2.7/site-packages/gerrithooks/* /usr/lib/python2.7/site-packages/gerrithooks
+usr/lib/python2.7/site-packages/gerrithooks-0.1.0-py2.7.egg-info/* /usr/lib/python2.7/site-packages/gerrithooks-0.1.0-py2.7.egg-info
+README.rst  /usr/share/doc/packages/gerrithooks
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..28ebd60
--- /dev/null
@@ -0,0 +1,46 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+build: build-stamp
+build-stamp:
+       dh_testdir
+       python setup.py build    
+
+clean:
+       dh_testdir
+       dh_testroot
+       rm -f build-stamp
+
+       dh_clean
+
+install: build
+       dh_testdir
+       dh_testroot
+       dh_clean -k
+       dh_installdirs
+       python setup.py install --prefix=/usr  --root=$(CURDIR) 
+
+binary-indep: build install
+       dh_testdir
+       dh_testroot
+       dh_installchangelogs
+       dh_installdocs
+       dh_install
+       dh_installman
+       dh_link
+       dh_strip
+       dh_compress
+       dh_fixperms
+       dh_python2
+       dh_installdeb
+       dh_shlibdeps
+       dh_gencontrol
+       dh_md5sums
+       dh_builddeb
+
+binary-arch: build install
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install