From cce5971a530a2345cc720c90c1403e7e68264282 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Mon, 8 Feb 2021 00:14:05 -0700 Subject: initial Debianisation --- debian/changelog | 5 +++++ debian/control | 13 +++++++++++++ debian/copyright | 39 +++++++++++++++++++++++++++++++++++++++ debian/install | 2 ++ debian/rules | 4 ++++ debian/source/format | 1 + 6 files changed, 64 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/install create mode 100755 debian/rules create mode 100644 debian/source/format diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..94848e4 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +wfm (1.4.2+git20200928.392c40f9-1) UNRELEASED; urgency=medium + + * Initial release. + + -- Sean Whitton Sun, 07 Feb 2021 23:47:19 -0700 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..85a3315 --- /dev/null +++ b/debian/control @@ -0,0 +1,13 @@ +Source: wfm +Section: web +Priority: optional +Maintainer: Sean Whitton +Build-Depends: debhelper-compat (= 13), libgit2-dev +Homepage: https://github.com/tenox7/wfm +Vcs-Browser: https://git.spwhitton.name/wfm +Vcs-Git: https://git.spwhitton.name/wfm + +Package: wfm +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: web file manager diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..3e611e4 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,39 @@ +wfm itself is implemented by [Antoni Sawicki](http://www.tenox.net/) +and is under the Apache License 2.0 +Copyright (c) 1994-2018 by Antoni Sawicki +Copyright (c) 2018-2019 by Google LLC + +Icons by [Yusuke Kamiyamane](http://p.yusukekamiyamane.com/) +Copyright (c) 2010 by Yusuke Kamiyamane + +URL Encoding routines by Fred Bulback, in the public domain + +Server Side RFC 1321 implementation by [L. Peter Deutsch](https://sourceforge.net/projects/libmd5-rfc/files/) +Copyright (c) 2002 by Aladdin Enterprises +Client Side RFC 1321 implementation by [Paul Johnston](http://pajhome.org.uk/crypt/md5/index.html) +Copyright (c) 1999-2009 by Paul Johnston + +The cgic library is +Copyright (c) 1996-2011 by Thomas Boutell and Boutell.Com, Inc. + +Recent versions are under the MIT license. Older ones, such as the one used +here, have this license: + +CGIC, copyright 1996-2011 by Thomas Boutell and Boutell.Com, Inc. Permission +is granted to use CGIC in any application, commercial or noncommercial, at no +cost. HOWEVER, this copyright paragraph must appear on a "credits" page +accessible in the public online and offline documentation of the program. +Modified versions of the CGIC library should not be distributed without +the attachment of a clear statement regarding the author of the +modifications, and this notice may in no case be removed. +Modifications may also be submitted to the author for inclusion +in the main CGIC distribution. + +// bin2c.c +// +// convert a binary file into a C source vector +// +// THE "BEER-WARE LICENSE" (Revision 3.1415): +// sandro AT sigala DOT it wrote this file. As long as you retain this notice you can do +// whatever you want with this stuff. If we meet some day, and you think this stuff is +// worth it, you can buy me a beer in return. Sandro Sigala diff --git a/debian/install b/debian/install new file mode 100644 index 0000000..c41787a --- /dev/null +++ b/debian/install @@ -0,0 +1,2 @@ +wfm.cgi /usr/lib/cgi-bin +wfm_git.cgi /usr/lib/cgi-bin diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..2d33f6a --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ 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) -- cgit v1.2.3