--- slcurl-0.1.1.orig/debian/changelog
+++ slcurl-0.1.1/debian/changelog
@@ -0,0 +1,64 @@
+slcurl (0.1.1-5) unstable; urgency=low
+
+ +++ Changes by Rafael Laboissiere
+
+ * Recompiled against libslang2_2.0.5-3 (closes: #353287)
+ * debian/control: Adjusted versioned build-dependency on
+ libsalng2-dev accordingly
+
+ -- Debian JED Group <pkg-jed-sl-modules@lists.alioth.debian.org> Fri, 17 Feb 2006 15:35:26 +0100
+
+slcurl (0.1.1-4) unstable; urgency=low
+
+ +++ Changes by Rafael Laboissiere
+
+ * debian/watch: Added file
+
+ -- Debian JED Group <pkg-jed-sl-modules@lists.alioth.debian.org> Fri, 11 Nov 2005 00:24:38 +0100
+
+slcurl (0.1.1-3) unstable; urgency=low
+
+ +++ Changes by Rafael Laboissiere
+
+ * debian/control: Changed the maintainer to
+ pkg-jed-sl-modules@lists.alioth.debian.org
+
+ -- Debian JED Group <pkg-jed-sl-modules@lists.alioth.debian.org> Wed, 9 Nov 2005 13:35:58 +0100
+
+slcurl (0.1.1-2) unstable; urgency=low
+
+ +++ Changes by Rafael Laboissiere
+
+ * debian/control: Fixed typo HTPP -> HTTP in pacakge description
+ (closes: #337995)
+
+ -- Debian JED Group <pkg-jed-devel@lists.alioth.debian.org> Mon, 7 Nov 2005 22:12:58 +0100
+
+slcurl (0.1.1-1) unstable; urgency=low
+
+ +++ Changes by Rafael Laboissiere
+
+ * First official release (closes: #336250)
+
+ -- Debian JED Group <pkg-jed-devel@lists.alioth.debian.org> Sat, 29 Oct 2005 18:11:42 +0200
+
+slcurl (0.1.1-0.1) unstable; urgency=low
+
+ +++ Changes by Rafael Laboissiere
+
+ * Initial release
+
+ -- Debian JED Group <pkg-jed-devel@lists.alioth.debian.org> Wed, 26 Oct 2005 15:43:11 +0200
+
+Local Variables:
+debian-changelog-full-name: "Debian JED Group"
+debian-changelog-mailing-address: "pkg-jed-sl-modules@lists.alioth.debian.org"
+eval: (add-local-hook
+ 'debian-changelog-add-version-hook
+ (lambda ()
+ (save-excursion
+ (forward-line -1)
+ (beginning-of-line)
+ (insert "\n NOT YET RELEASED!\n\n +++ Changes by "
+ (or (getenv "DEBFULLNAME") (user-full-name)) "\n"))))
+End:
--- slcurl-0.1.1.orig/debian/control
+++ slcurl-0.1.1/debian/control
@@ -0,0 +1,18 @@
+Source: slcurl
+Section: interpreters
+Priority: optional
+Maintainer: Debian JED Group <pkg-jed-sl-modules@lists.alioth.debian.org>
+Uploaders: Rafael Laboissiere <rafael@debian.org>
+Build-Depends: debhelper (>= 4.0.0), libslang2-dev (>= 2.0.5-3), libcurl3-dev, cdbs
+Standards-Version: 3.6.2
+
+Package: slang-curl
+Architecture: any
+Depends: ${shlibs:Depends}
+Suggests: slsh (>= 2.0) | jed (>= 0.99.17) | slrn (>= 0.9.8.1pl1-4)
+Description: transfer files using HTTP and FTP from S-Lang
+ The S-Lang curl module makes use of the cURL library to provide the
+ S-lang interpreter the ability to transfer files in a simple but
+ robust manner using a variety of protocols including FTP and HTTP.
+ .
+ Homepage: http://jedsoft.org/slang/modules/curl.html
--- slcurl-0.1.1.orig/debian/compat
+++ slcurl-0.1.1/debian/compat
@@ -0,0 +1 @@
+4
--- slcurl-0.1.1.orig/debian/slang-curl.examples
+++ slcurl-0.1.1/debian/slang-curl.examples
@@ -0,0 +1 @@
+demo/translate
--- slcurl-0.1.1.orig/debian/copyright
+++ slcurl-0.1.1/debian/copyright
@@ -0,0 +1,16 @@
+This package was debianized by Rafael Laboissiere <rafael@debian.org> on
+Thu Oct 27 16:34:31 CEST 2005
+
+It was downloaded from
+
+ ftp://space.mit.edu/pub/davis/slang/v2.0/modules/
+
+Copyright Holder: John E. Davis <davis@space.mit.edu>
+
+License:
+
+ The S-Lang cURL module is released under the GNU General Public License
+ version 2.
+
+ In Debian systems, the complete text of the GPL can be found in
+ `/usr/share/common-licenses/GPL-2'.
\ No newline at end of file
--- slcurl-0.1.1.orig/debian/rules
+++ slcurl-0.1.1/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/class/autotools.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+
+DEB_COMPRESS_EXCLUDE := translate
+DEB_MAKE_BUILD_TARGET := all RPATH=
--- slcurl-0.1.1.orig/debian/README.Debian
+++ slcurl-0.1.1/debian/README.Debian
@@ -0,0 +1,33 @@
+slang-curl for Debian
+---------------------
+
+A simple example of the S-Lang cURL module use is provided by a S-Lang
+script called translate, which sends a user provided phrase to
+http://babelfish.altavista.com for translation. It is run like this:
+
+ slsh /usr/share/doc/slang-curl/examples/translate \
+ [--to lang-out] lang-in [phrase|-]
+
+For example, to translate `Hola Mundo' from Spanish to English use:
+
+ slsh /usr/share/doc/slang-curl/examples/translate Spanish Hola Mundo
+
+and to translate `Hola Mundo' to French use:
+
+ slsh /usr/share/doc/slang-curl/examples/translate \
+ --to French Spanish Hola Mundo
+
+It is also possible to use the script in a pipeline to play word games:
+
+ slsh /usr/share/doc/slang-curl/examples/translate \
+ --to spanish English Boy meets girl \
+ | slsh /usr/share/doc/slang-curl/examples/translate \
+ --to French Spanish \
+ | slsh /usr/share/doc/slang-curl/examples/translate French
+
+You can also copy the script somewhere in your PATH and chmod +x it, avoiding
+the long `slsh /usr/share/doc/slang-curl/examples/translate' above.
+
+ -- Rafael Laboissiere <rafael@debian.org>, Thu Oct 27 17:00:47 CEST 2005
+
+
--- slcurl-0.1.1.orig/debian/watch
+++ slcurl-0.1.1/debian/watch
@@ -0,0 +1,3 @@
+version=3
+
+ftp://space.mit.edu/pub/davis/slang/v2.0/modules/slcurl-([\d\.]+)\.tar\.gz
\ No newline at end of file