[DRE-commits] [gitlab-ce] 01/01: Imported Debian patch 0.7.12.2-1

Praveen Arimbrathodiyil praveen at moszumanska.debian.org
Mon Jul 20 07:07:53 UTC 2015


This is an automated email from the git hooks/post-receive script.

praveen pushed a commit to branch master
in repository gitlab-ce.

commit d3df0b944f0b6eed88d1e13bf8c0e369fb6377a1
Author: Pirate Praveen <praveen at debian.org>
Date:   Thu Apr 24 15:22:12 2014 +0530

    Imported Debian patch 0.7.12.2-1
---
 debian/changelog          |  5 +++++
 debian/compat             |  1 +
 debian/control            | 42 ++++++++++++++++++++++++++++++++++++++++++
 debian/debhelper.log      | 20 ++++++++++++++++++++
 debian/install            | 27 +++++++++++++++++++++++++++
 debian/postinst.debhelper |  6 ++++++
 debian/postrm.debhelper   | 12 ++++++++++++
 debian/prerm.debhelper    |  5 +++++
 debian/rules              | 22 ++++++++++++++++++++++
 debian/source/format      |  1 +
 debian/substvars          |  1 +
 11 files changed, 142 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..d52a336
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+gitlab-ce (0.7.12.2-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #651606)
+
+ -- Pirate Praveen <praveen at debian.org>  Thu, 24 Apr 2014 15:22:12 +0530
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..a5eae86
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,42 @@
+Source: gitlab-ce
+Section: ruby
+Priority: optional
+Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
+Uploaders: Pirate Praveen <praveen at debian.org>
+Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.7.5~)
+Standards-Version: 3.9.6
+Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/gitlab-ce.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ruby-extras/gitlab-ce.git;a=summary
+Homepage: http://gitlab.com
+XS-Ruby-Versions: all
+
+Package: gitlab-ce
+Architecture: all
+XB-Ruby-Versions: ${ruby:Versions}
+Pre-Depends: postgresql-client, dbconfig-common, adduser
+Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter,
+ bundler (>= 1.9),
+ ruby-rails (>= 4.1~),
+ unicorn,
+ ruby-pg,
+ nodejs,
+ imagemagick,
+ curl,
+ postgresql,
+ redis-server,
+ sudo,
+ ruby-rspec,
+ net-tools,
+ nginx,
+Description: git repository management, code reviews, issue tracking and wikis
+ Do it together: Discuss issues and plan milestones. Do code reviews and make
+ line comments. Mention your colleagues anywhere. View activity streams of
+ projects or people.
+ .
+ Plays well with others: GitLab has integrations for tons of tools such as
+ Slack, Hipchat, LDAP, JIRA, Jenkins, many types of hooks and a complete API.
+ .
+ Scales Effortlessly: It runs smoothly on a tiny server but can scale to
+ multiple active servers. A single server handles more than 25,000 users.
+ .
+ This package configures PostgreSQL as the database and Nginx as the web server.
diff --git a/debian/debhelper.log b/debian/debhelper.log
new file mode 100644
index 0000000..65b2ed8
--- /dev/null
+++ b/debian/debhelper.log
@@ -0,0 +1,20 @@
+dh_auto_configure
+dh_auto_build
+dh_auto_test
+dh_prep
+dh_installchangelogs
+dh_auto_install
+dh_installdocs
+dh_installchangelogs
+dh_pysupport
+override_dh_installinit dh_installinit
+dh_installinit
+dh_perl
+dh_link
+dh_compress
+dh_fixperms
+dh_installdeb
+dh_gencontrol
+dh_md5sums
+dh_builddeb
+dh_builddeb
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..33fd5a8
--- /dev/null
+++ b/debian/install
@@ -0,0 +1,27 @@
+bin usr/share/gitlab
+app usr/share/gitlab
+CHANGELOG usr/share/gitlab
+config usr/share/gitlab
+config.ru usr/share/gitlab
+CONTRIBUTING.md usr/share/gitlab
+db usr/share/gitlab
+doc usr/share/gitlab
+docker usr/share/gitlab
+doc_styleguide.md usr/share/gitlab
+features usr/share/gitlab
+Gemfile usr/share/gitlab
+GITLAB_SHELL_VERSION usr/share/gitlab
+lib usr/share/gitlab
+LICENSE usr/share/gitlab
+log usr/share/gitlab
+MAINTENANCE.md usr/share/gitlab
+PROCESS.md usr/share/gitlab
+Procfile usr/share/gitlab
+public usr/share/gitlab
+Rakefile usr/share/gitlab
+README.md usr/share/gitlab
+spec usr/share/gitlab
+tmp usr/share/gitlab
+vendor usr/share/gitlab
+VERSION usr/share/gitlab
+
diff --git a/debian/postinst.debhelper b/debian/postinst.debhelper
new file mode 100644
index 0000000..a735785
--- /dev/null
+++ b/debian/postinst.debhelper
@@ -0,0 +1,6 @@
+# Automatically added by dh_installinit
+if [ -x "/etc/init.d/gitlab-ce" ]; then
+	update-rc.d gitlab-ce defaults >/dev/null
+	invoke-rc.d gitlab-ce start || exit $?
+fi
+# End automatically added section
diff --git a/debian/postrm.debhelper b/debian/postrm.debhelper
new file mode 100644
index 0000000..0f40ae3
--- /dev/null
+++ b/debian/postrm.debhelper
@@ -0,0 +1,12 @@
+# Automatically added by dh_installinit
+if [ "$1" = "purge" ] ; then
+	update-rc.d gitlab-ce remove >/dev/null
+fi
+
+
+# In case this system is running systemd, we make systemd reload the unit files
+# to pick up changes.
+if [ -d /run/systemd/system ] ; then
+	systemctl --system daemon-reload >/dev/null || true
+fi
+# End automatically added section
diff --git a/debian/prerm.debhelper b/debian/prerm.debhelper
new file mode 100644
index 0000000..5d2365c
--- /dev/null
+++ b/debian/prerm.debhelper
@@ -0,0 +1,5 @@
+# Automatically added by dh_installinit
+if [ -x "/etc/init.d/gitlab-ce" ]; then
+	invoke-rc.d gitlab-ce stop || exit $?
+fi
+# End automatically added section
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..ae32a3d
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,22 @@
+#!/usr/bin/make -f
+#export DH_VERBOSE=1
+#
+# Uncomment to ignore all test failures (but the tests will run anyway)
+#export DH_RUBY_IGNORE_TESTS=all
+#
+# Uncomment to ignore some test failures (but the tests will run anyway).
+# Valid values:
+#export DH_RUBY_IGNORE_TESTS=ruby2.0 ruby2.1 require-rubygems
+#
+# If you need to specify the .gemspec (eg there is more than one)
+#export DH_RUBY_GEMSPEC=gem.gemspec
+
+%:
+	dh $@ --buildsystem=ruby --with ruby
+
+override_dh_installinit:
+	dh_installinit -o
+
+clean:
+	dh clean
+	rm -rf .bundle
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)
diff --git a/debian/substvars b/debian/substvars
new file mode 100644
index 0000000..abd3ebe
--- /dev/null
+++ b/debian/substvars
@@ -0,0 +1 @@
+misc:Depends=

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/gitlab-ce.git



More information about the Pkg-ruby-extras-commits mailing list