wendy

wendy for debian packaging
git clone git://git.unixkoans.com/wendy.git
Log | Files | Refs | README | LICENSE

commit d3894fe2e81cd8912faa813ab9edd7d0a37d5cec
parent 1cfef0a6de2446814e1947e5bc0e73ab744f2d6d
Author: Xiaodong Xu <[email protected]>
Date:   Tue Feb 28 09:26:52 +0800

Add debian directory for packaging

Diffstat:
debian/README | 6++++++
debian/changelog | 5+++++
debian/compat | 1+
debian/control | 16++++++++++++++++
debian/copyright | 28++++++++++++++++++++++++++++
debian/docs | 1+
debian/rules | 24++++++++++++++++++++++++
debian/source/format | 1+
8 files changed, 82 insertions(+), 0 deletions(-)
diff --git a/debian/README b/debian/README @@ -0,0 +1,6 @@ +The Debian Package wendy +---------------------------- + +Comments regarding the Package + + -- Xiaodong Xu <[email protected]> Mon, 27 Feb 2017 22:44:02 +0800 diff --git a/debian/changelog b/debian/changelog @@ -0,0 +1,5 @@ +wendy (1.0) unstable; urgency=low + + * Initial Release. + + -- Xiaodong Xu <[email protected]> Mon, 27 Feb 2017 22:44:02 +0800 diff --git a/debian/compat b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control @@ -0,0 +1,16 @@ +Source: wendy +Section: misc +Priority: optional +Maintainer: Xiaodong Xu <[email protected]> +Build-Depends: debhelper (>= 9) +Standards-Version: 3.9.5 +Homepage: http://git.z3bra.org/wendy/ +Vcs-Git: git://z3bra.org/wendy +Vcs-Browser: http://git.z3bra.org/wendy/ + +Package: wendy +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: an inotify-based directory watcher + With wendy, you can watch event in directories or files, and launch a + specific command when an event occurs. diff --git a/debian/copyright b/debian/copyright @@ -0,0 +1,28 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: wendy +Source: http://git.z3bra.org/wendy/ + +Files: * +Copyright: 2013-2016 Willy Goiffon <willyatmailoodotorg> +License: WTFPL + +Files: debian/* +Copyright: 2017 Xiaodong Xu <[email protected]> +License: GPL-3.0+ + +License: GPL-3.0+ + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + . + 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 3 can be found in "/usr/share/common-licenses/GPL-3". diff --git a/debian/docs b/debian/docs @@ -0,0 +1 @@ +README diff --git a/debian/rules b/debian/rules @@ -0,0 +1,24 @@ +#!/usr/bin/make -f +# See debhelper(7) (uncomment to enable) +# output every command that modifies files on the build system. +#DH_VERBOSE = 1 + +# see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/* +DPKG_EXPORT_BUILDFLAGS = 1 +include /usr/share/dpkg/default.mk + +# see FEATURE AREAS in dpkg-buildflags(1) +#export DEB_BUILD_MAINT_OPTIONS = hardening=+all + +# see ENVIRONMENT in dpkg-buildflags(1) +# package maintainers to append CFLAGS +#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic +# package maintainers to append LDFLAGS +#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed + + +# main packaging script based on dh7 syntax +%: + dh $@ +override_dh_auto_install: + $(MAKE) DESTDIR=$$(pwd)/debian/wendy PREFIX=/usr install diff --git a/debian/source/format b/debian/source/format @@ -0,0 +1 @@ +3.0 (native)