[Pkg-javascript-commits] [etherpad-lite] 02/17: initial draft for debian/ folder, totally incomplete

Paolo Greppi paolog-guest at moszumanska.debian.org
Wed Dec 14 21:56:19 UTC 2016


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

paolog-guest pushed a commit to branch master
in repository etherpad-lite.

commit ebc899ce4ca1d097ac598a0df63331e290d87627
Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
Date:   Wed Mar 27 00:28:30 2013 +0100

    initial draft for debian/ folder, totally incomplete
---
 debian/changelog     |  5 +++++
 debian/compat        |  1 +
 debian/control       | 40 ++++++++++++++++++++++++++++++++++++++++
 debian/copyright     |  9 +++++++++
 debian/rules         | 36 ++++++++++++++++++++++++++++++++++++
 debian/source/format |  1 +
 6 files changed, 92 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..b0af575
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+etherpad-lite (1.2.9-1) UNRELEASED; urgency=low
+
+  * Initial release (closes: #576998).
+
+ -- Mike Gabriel <sunweaver at debian.org>  Tue, 26 Mar 2013 23:29:03 +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..9d79d33
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,40 @@
+Source: etherpad-lite
+Section: web
+Priority: optional
+Maintainer: Debian Edu Packaging Team <debian-edu-pkg-team at lists.alioth.debian.org>
+Uploaders:
+ Mike Gabriel <sunweaver at debian.org>,
+Build-Depends:
+ cdbs (>= 0.4.90~),
+ dpkg-dev (>= 1.16.1~),
+ debhelper (>= 9),
+ libssl-dev,
+ pkg-config,
+Standards-Version: 3.9.4
+Vcs-Git: git://git.debian.org/debian-edu/etherpad-lite.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=debian-edu/etherpad-lite.git;a=summary
+Homepage: http://www.etherpad.org/
+
+Package: etherpad-lite
+Architecture: all
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends},
+ ${cdbs:Depends},
+ gzip,
+ curl,
+ python,
+Recommends:
+ ${cdbs:Recommends},
+Description: Online editor providing collaborative editing in really real-time
+ Etherpad lite allows you to edit documents collaboratively in real-time, much
+ like a live multi-player online editor, allowing you to write articles,
+ proposals, press releases and the like, together with your friends, your
+ fellow students or your colleagues, working on the same document at the same
+ time.
+ .
+ It even supports rich text editing! Additionally, Etherpad lite provides access
+ to all data through a well-documented HTTP API and supports import/export to many
+ major data exchange formats. The built-in plugin system makes extending the core
+ functionality a breeze, regardless of whether you're adding support for inserting
+ images or videos or allowing users to collaborate on tables.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..f546d47
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,9 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Contact: https://groups.google.com/forum/?fromgroups#!forum/etherpad-lite-dev,
+ John McLear <contact at etherpad.org>
+Upstream-Name: Etherpad lite
+Source: http://www.etherpad.org/
+
+Files: *
+Copyright: TODO
+License: TODO
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..5600075
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,36 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+MAIN_VERSION = $(shell dpkg-parsechangelog|sed -n '/^Version/{s/Version: \(.*\)/\1/p}')
+BUILD_VERSION = $(shell echo $(MAIN_VERSION)|sed -n 's/\([0-9.]*\)[-+~].*/\1/p')
+
+# this doesn't work, so commenting it out...
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+export DEB_CFLAGS_MAINT_APPEND = -Wall
+include /usr/share/dpkg/buildflags.mk
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/makefile.mk
+
+get-git-source:
+	dh_testdir
+	rm -rfv tmp ../etherpad-lite_$(BUILD_VERSION).orig.tar.bz2
+	mkdir tmp
+	cd tmp && git clone https://github.com/ether/etherpad-lite.git && cd etherpad-lite && git checkout $(BUILD_VERSION)
+	find tmp -type f | while read F; do chmod -x "$$F"; done
+	find . -type f -name configure | while read F; do chmod +x "$$F"; done
+	rm -rfv "`find tmp -name \"__MACOSX\"`"
+	rm -rfv `find tmp -name "._*"`
+	cd tmp/etherpad-lite/ && tar --exclude .git -jvcf ../../../etherpad-lite_$(BUILD_VERSION).orig.tar.bz2 .
+	rm -rfv tmp
+	
+binary: binary-indep binary-arch
+
+.PHONY: config build-indep build-arch build clean binary-indep binary-arch binary install 
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/pkg-javascript/etherpad-lite.git



More information about the Pkg-javascript-commits mailing list