--- bandwidthcalc-0.2.orig/debian/bandwidthcalc.1 +++ bandwidthcalc-0.2/debian/bandwidthcalc.1 @@ -0,0 +1,29 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH bandwidthcalc 1 "April 21, 2007" GNU +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +bandwidthcalc \- file transfer time calculator +.SH DESCRIPTION +.B bandwidthcalc +is a small X application written in GTK+ 2.0. It determines how long it will take +to transfer a file on a given bandwidth. You can specify the bandwidth in +kBit/s, kByte/s, MBit/s or MByte/s. The transfer time is output in HH:MM:SS +.SH OPTIONS +There are no options available, because these programs runs fully as X application. +.SH AUTHOR +bandwidthcalc and this man page were written by Christoph Goehre +. --- bandwidthcalc-0.2.orig/debian/changelog +++ bandwidthcalc-0.2/debian/changelog @@ -0,0 +1,39 @@ +bandwidthcalc (0.2-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Updated DH level to 10. (Closes: #817372) + * debian/control: + - Bumped Standards-Version to 3.9.8 + * debian/copyright: + - Fixed license link. + * Run wrap-and-sort. + + -- Fernando Ike Sat, 15 Oct 2016 22:58:05 -0300 + +bandwidthcalc (0.2-1) unstable; urgency=low + + * New Upstream Version + - add default action for entry fields (Closes: #436097) + * adjust debian standard version to 3.8.0 + * allow me to upload via DM-Upload-Allowed + * add copyright section in copyright file + * debian upload by Guido Guenther + + -- Christoph Goehre Sun, 21 Sep 2008 14:32:02 +0200 + +bandwidthcalc (0.1-2) unstable; urgency=low + + * link only toward the really needed libs (Closes: #436098) + * move startup entry to new section Applications/Network/Monitoring + * don't ignore 'make distclean' errors + * clean up unused sections in debian/rules + * debian upload by Guido Guenther + + -- Christoph Goehre Sun, 02 Dec 2007 16:26:32 +0100 + +bandwidthcalc (0.1-1) unstable; urgency=low + + * Initial Release (Closes: #423881). + + -- Christoph Goehre Mon, 5 Mar 2007 17:58:41 +0100 + --- bandwidthcalc-0.2.orig/debian/compat +++ bandwidthcalc-0.2/debian/compat @@ -0,0 +1 @@ +10 --- bandwidthcalc-0.2.orig/debian/control +++ bandwidthcalc-0.2/debian/control @@ -0,0 +1,23 @@ +Source: bandwidthcalc +Section: x11 +Priority: optional +Maintainer: Christoph Goehre +Build-Depends: + autotools-dev, + debhelper (>= 10), + libatk1.0-dev, + libglib2.0-dev (>= 2.6), + libgtk2.0-dev (>= 2.6), + libpango1.0-dev, +DM-Upload-Allowed: yes +Standards-Version: 3.9.8 + +Package: bandwidthcalc +Architecture: any +Depends: + ${misc:Depends}, + ${shlibs:Depends}, +Description: file transfer time calculator written in GTK+ + Given the available bandwidth, bandwidthcalc determines how long it will take + to transfer a file of a given size. You can specify the available bandwidth in + kBit/s, kByte/s, MBit/s or MByte/s. The time output is in HH:MM:SS --- bandwidthcalc-0.2.orig/debian/copyright +++ bandwidthcalc-0.2/debian/copyright @@ -0,0 +1,25 @@ +This package was written by Christoph Goehre on +Fri, 2 Mar 2007 21:57:08 +0100. + +Copyright: + + Copyright (C) 2007-2008 Christoph Goehre + +License: + + This package 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; version 2 dated June, 1991. + + 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 package; if not, write to the Free Software + Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, + MA 02110-1301, USA. + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL-2'. --- bandwidthcalc-0.2.orig/debian/install +++ bandwidthcalc-0.2/debian/install @@ -0,0 +1 @@ +debian/speedo.xpm usr/share/pixmaps --- bandwidthcalc-0.2.orig/debian/manpages +++ bandwidthcalc-0.2/debian/manpages @@ -0,0 +1 @@ +debian/bandwidthcalc.1 --- bandwidthcalc-0.2.orig/debian/menu +++ bandwidthcalc-0.2/debian/menu @@ -0,0 +1,5 @@ +?package(bandwidthcalc): title="Bandwidthcalc" \ + section="Applications/Network/Monitoring" \ + needs="X11" \ + icon="/usr/share/pixmaps/speedo.xpm" \ + command="/usr/bin/bandwidthcalc" --- bandwidthcalc-0.2.orig/debian/rules +++ bandwidthcalc-0.2/debian/rules @@ -0,0 +1,85 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# 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) + + +CFLAGS = -Wall -g +LDFLAGS= -Wl,--as-needed + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: configure + dh_testdir + # Add here commands to configure the package. + LDFLAGS="$(LDFLAGS)" CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info + + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + [ ! -f Makefile ] || $(MAKE) distclean + + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/bandwidthcalc. + $(MAKE) install DESTDIR=$(CURDIR)/debian/bandwidthcalc + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples + dh_install + dh_installmenu + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- bandwidthcalc-0.2.orig/debian/speedo.xpm +++ bandwidthcalc-0.2/debian/speedo.xpm @@ -0,0 +1,277 @@ +/* XPM */ +static char *speedo[] = { +/* columns rows colors chars-per-pixel */ +"32 32 239 2", +" c black", +". c #0B0B0B", +"X c #0C0B0B", +"o c #0E0B0B", +"O c #0E0C0C", +"+ c #0E0D0D", +"@ c #0E0E0E", +"# c gray6", +"$ c #100B0B", +"% c #110B0B", +"& c #130B0B", +"* c #130E0E", +"= c #140B0B", +"- c #140D0D", +"; c #140F0F", +": c #111111", +"> c #121111", +", c #131313", +"< c #151515", +"1 c #171414", +"2 c #1F1717", +"3 c #181818", +"4 c #1E1B1B", +"5 c #231011", +"6 c #211515", +"7 c #201717", +"8 c #251011", +"9 c #2A1112", +"0 c #291616", +"q c #2D1213", +"w c #2E1616", +"e c #2B1E1E", +"r c #2B1F1F", +"t c #301010", +"y c #301919", +"u c #301F1F", +"i c #3F1112", +"p c #3C1D1E", +"a c #381F20", +"s c #222222", +"d c #252525", +"f c #292727", +"g c #2E2727", +"h c #2A2A2A", +"j c #322929", +"k c #392525", +"l c #382C2C", +"z c #382E2F", +"x c #3A2F30", +"c c gray19", +"v c #353333", +"b c #353535", +"n c gray21", +"m c #373737", +"M c #3B3636", +"N c #3E3232", +"B c #393939", +"V c #3A3A3A", +"C c #3B3A3A", +"Z c #3D3A3A", +"A c #3F3F3F", +"S c #430E0F", +"D c #4B0809", +"F c #4A191A", +"G c #491C1D", +"H c #500A0B", +"J c #550E0F", +"K c #5F1A1B", +"L c #432B2B", +"P c #48292A", +"I c #403D3D", +"U c #610B0C", +"Y c #6A0708", +"T c #6D0708", +"R c #761719", +"E c #741B1D", +"W c #602627", +"Q c #6C2021", +"! c #743334", +"~ c #743E3F", +"^ c #4E4E4E", +"/ c #594647", +"( c #515151", +") c #7F4040", +"_ c #775758", +"` c #6E6666", +"' c gray42", +"] c #767676", +"[ c #7D7070", +"{ c #840608", +"} c #8C1B1D", +"| c #9E0407", +" . c #9B0A0D", +".. c #90191B", +"X. c #862325", +"o. c #8A292A", +"O. c #962224", +"+. c #913B3C", +"@. c #AB1C1F", +"#. c #B60306", +"$. c #BA0306", +"%. c #BA181B", +"&. c #A42426", +"*. c #A13A3C", +"=. c #816565", +"-. c #A54041", +";. c #BC5657", +":. c #BB5B5D", +">. c #B07071", +",. c #C60306", +"<. c #C11518", +"1. c #D20205", +"2. c #DF0105", +"3. c #C53335", +"4. c #D0292B", +"5. c #DE2C2E", +"6. c #E50105", +"7. c #FB0004", +"8. c #FE0004", +"9. c #FF0004", +"0. c #FF0F13", +"q. c #F6171A", +"w. c #FF1216", +"e. c #FF1418", +"r. c #FF1519", +"t. c #FF1F23", +"y. c #E43235", +"u. c #F72125", +"i. c #FF2428", +"p. c #FF2D30", +"a. c #FF2E31", +"s. c #FC383B", +"d. c #FF3C3F", +"f. c #FF3D40", +"g. c #CF4446", +"h. c #F04144", +"j. c #FF4043", +"k. c #FF4346", +"l. c #FF4649", +"z. c #FF484B", +"x. c #FF4B4E", +"c. c #FF4D50", +"v. c #FF5053", +"b. c #FF5356", +"n. c #FF5558", +"m. c #FF5659", +"M. c #FF575A", +"N. c #FF5A5D", +"B. c #FF5C5F", +"V. c #FF5F62", +"C. c #E56A6B", +"Z. c #E07A7C", +"A. c #F36A6C", +"S. c #FF6164", +"D. c #FF6265", +"F. c #FF6467", +"G. c #FF6568", +"H. c #FF6769", +"J. c #FF6A6C", +"K. c #FF6C6E", +"L. c #FF6E70", +"P. c #F67A7C", +"I. c #FF7173", +"U. c #FF7476", +"Y. c #FF7678", +"T. c #FF797B", +"R. c #FF7B7D", +"E. c #FF7D7F", +"W. c gray52", +"Q. c #888181", +"!. c gray57", +"~. c #A68283", +"^. c #A88586", +"/. c #B38484", +"(. c #CBA8A9", +"). c #FF8082", +"_. c #FF8385", +"`. c #FF8587", +"'. c #FF888A", +"]. c #FF8A8C", +"[. c #FF8C8E", +"{. c #FF8D8F", +"}. c #FF8F91", +"|. c #FB9193", +" X c #FF9092", +".X c #FF9294", +"XX c #FF9496", +"oX c #FF9799", +"OX c #FD989A", +"+X c #FF9A9C", +"@X c #FF9C9E", +"#X c #FF9D9F", +"$X c #FF9FA1", +"%X c #E7A9AA", +"&X c #FFA0A2", +"*X c #FFA2A4", +"=X c #FFA4A5", +"-X c #FFA7A8", +";X c #FFA8A9", +":X c #FFA9AA", +">X c #FFABAC", +",X c #FFACAD", +".|.P C.G.M.l.y.S <.H 8 . . MXMXMXMXMX", +"MXMXMXMXMXMXMXMX. X 2 /.X#X{.P.A.V.v.j.5.u.w.8.8.,.q @ MXMXMXMX", +"MXMXMXMXMXMX. > [ pX^._ :X+X].R.K.B.c.f.a.t.0.8.8.{ D 0 . MXMXMX", +"MXMXMXMXMX. @ Q.lXdXrX4X:XoX'.R.J.N.x.d.a.%.T 8.$.Y 7.U 6 . MXMX", +"MXMXMXMX. . ( cXkXaXeX3X*XXX`.U.G.M.z.s.} S 2.8.8.8.8.1.w . MXMX", +"MXMXMX. . d A 9XkXaXeXX#X{.R.L.-.G 3.4.@.X.W a r N n h . . MXMX", +"MXMX. 1 qXmXbXlXfXtX5X:XoXZ.:.) r L e l Z n > . X MXMXMXMXMXMXMX", +"MXMX. ^ mXmXvXiX(.~.=./ j g M V s X X MXMXMXMXMXMXMXMXMXMXMXMXMX", +"MX. @ W.!.' I f v V c @ . MXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMX", +"MX. > V n , . . MXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMX", +"MXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMX", +"MXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMX", +"MXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMX", +"MXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMX", +"MXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMX", +"MXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMX", +"MXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMX", +"MXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMX", +"MXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMXMX" +};