[Reproducible-commits] [koji] 02/02: Initial commit
Ximin Luo
infinity0 at debian.org
Wed Dec 2 23:28:36 UTC 2015
This is an automated email from the git hooks/post-receive script.
infinity0 pushed a commit to branch master
in repository koji.
commit d1dcae2c2af8e23c81bca4036537860ab54c4af9
Author: Marek Marczykowski-Górecki <marmarek at invisiblethingslab.com>
Date: Wed Dec 2 15:47:12 2015 +0100
Initial commit
---
debian/changelog | 5 +++++
debian/compat | 1 +
debian/control | 40 ++++++++++++++++++++++++++++++++++++++++
debian/copyright | 32 ++++++++++++++++++++++++++++++++
debian/koji.manpages | 1 +
debian/rules | 20 ++++++++++++++++++++
debian/source/format | 1 +
7 files changed, 100 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..191a7ed
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+koji (1.10.0-1) UNRELEASED; urgency=medium
+
+ * Initial release. (Closes: #XXXXXX)
+
+ -- Marek Marczykowski-Górecki <marmarek at invisiblethingslab.com> Wed, 02 Dec 2015 15:30:19 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..fee25e1
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,40 @@
+Source: koji
+Section: devel
+Maintainer: Marek Marczykowski-Górecki <marmarek at invisiblethingslab.com>
+Priority: extra
+Standards-Version: 3.9.6
+Build-Depends:
+ debhelper (>= 9.0),
+ dh-python,
+ dh-systemd,
+ help2man,
+ python-all,
+ python-rpm,
+ python-simplejson,
+ python-openssl,
+ python-libxml2,
+ python-libvirt,
+ pkg-config
+Homepage: https://fedorahosted.org/koji/
+#Vcs-Git: git://anonscm.debian.org/users/tzafrir/mock.git
+#Vcs-Browser: http://anoncms.debian.org/gitweb/?p=users/tzafrir/mock.git
+
+Package: koji
+Architecture: all
+Depends: python, ${misc:Depends}, ${python:Depends}
+Description: RPM-based build system
+ The Fedora Project uses Koji for their build system, as do several other
+ projects.
+ .
+ Koji's goal is to provide a flexible, secure, and reproducible way to build
+ software.
+ .
+ Key features:
+ .
+ - New buildroot for each build
+ - Robust XML-RPC APIs for easy integration with other tools
+ - Web interface with SSL and Kerberos authentication
+ - Thin, portable command line client
+ - Users can create local buildroots
+ - Buildroot contents are tracked in the database
+ - Versioned data
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..2d5c512
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,32 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: koji
+Source: https://fedorahosted.org/koji/
+
+Files: *
+Copyright: 2007-2014 Red Hat, Inc.
+License: LGPL-2.1
+
+Files: debian/*
+Copyright: 2015 Marek Marczykowski-Górecki <marmarek at invisiblethingslab.com>
+License: LGPL-2.1
+
+License: LGPL-2.1
+ This program is free software; you can redistribute it
+ and/or modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License.
+ .
+ This program 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 package; if not, write to the Free
+ Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ Boston, MA 02110-1301 USA
+ .
+ On Debian systems, the full text of the GNU Lesser General Public
+ License version 2.1 can be found in the file
+ `/usr/share/common-licenses/LGPL-2.1'.
diff --git a/debian/koji.manpages b/debian/koji.manpages
new file mode 100644
index 0000000..adfc302
--- /dev/null
+++ b/debian/koji.manpages
@@ -0,0 +1 @@
+debian/koji.1
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..6b1a9dc
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,20 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=koji
+export PYBUILD_SYSTEM=custom
+export DH_VERBOSE=1
+
+%:
+ dh $@ --with python2 --buildsystem=pybuild
+
+override_dh_auto_install:
+ dh_auto_install -S makefile
+
+override_dh_auto_build:
+ dh_auto_build
+ help2man --no-info -n "RPM-based build system client" --version-string=1.10.0 ./cli/koji > debian/koji.1
+
+override_dh_auto_clean:
+ rm -f debian/koji.1
+ rm -f vm/kojikamid
+ dh_auto_clean
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reproducible/koji.git
More information about the Reproducible-commits
mailing list