~sergiodj/debian_rnetclient

362ea063b590eba7c9e344e094462d3cb73175df — Sergio Durigan Junior 9 years ago 2802120 debian/2015.1-1
Imported Debian patch 2015.1-1
7 files changed, 114 insertions(+), 0 deletions(-)

A debian/changelog
A debian/compat
A debian/control
A debian/copyright
A debian/docs
A debian/rules
A debian/source/format
A debian/changelog => debian/changelog +5 -0
@@ 0,0 1,5 @@
rnetclient (2015.1-1) unstable; urgency=low

  * Initial release (Closes: #784405)

 -- Sergio Durigan Junior <sergiodj@sergiodj.net>  Sat, 30 May 2015 13:45:00 -0400

A debian/compat => debian/compat +1 -0
@@ 0,0 1,1 @@
9

A debian/control => debian/control +18 -0
@@ 0,0 1,18 @@
Source: rnetclient
Section: net
Priority: optional
Maintainer: Sergio Durigan Junior <sergiodj@sergiodj.net>
Build-Depends: debhelper (>= 9), autotools-dev, libgnutls28-dev, libgcrypt-dev, zlib1g-dev
Standards-Version: 3.9.6
Homepage: http://wiki.libreplanetbr.org/rnetclient/
#Vcs-Git: git://anonscm.debian.org/collab-maint/rnetclient.git
#Vcs-Browser: http://anonscm.debian.org/?p=collab-maint/rnetclient.git;a=summary

Package: rnetclient
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Send the Brazilian Income Tax Report to the Brazilian Tax Authority
 rnetclient is a Free Software that can be used to submit the Brazilian Income
 Tax Report to the Brazilian Tax Authority (Receita Federal).  It is the
 outcome of reverse-engineering ReceitaNet, the official and proprietary
 software that Receita Federal distributes.

A debian/copyright => debian/copyright +79 -0
@@ 0,0 1,79 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: rnetclient
Source: http://wiki.libreplanetbr.org/rnetclient/

Files: *
Copyright: 2012-2015 Thadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
           2014-2015 Sergio Durigan Junior <sergiodj@sergiodj.net>
License: GPL-3+

Files: bootstrap.sh
Copyright: 2014 Sergio Durigan Junior <sergiodj@sergiodj.net>
License: GPL-3+

Files: configure.ac
Copyright: 2013-2014 Thadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
           2014 Sergio Durigan Junior <sergiodj@sergiodj.net>
License: GPL-3+

Files: decfile.*
Copyright: 2012-2014 Thadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
           2014 Alexandre Oliva <lxoliva@fsfla.org>
License: GPL-3+

Files: .dir-locals.el
Copyright: 2014 Sergio Durigan Junior  <sergiodj@sergiodj.net>
License: GPL-3+

Files: pmhash.*
Copyright: 2012-2013 Thadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
License: GPL-3+

Files: rnetclient.c
Copyright: 2012-2014 Thadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
           2014 Alexandre Oliva <lxoliva@fsfla.org>
           2014 Sergio Durigan Junior <sergiodj@sergiodj.net>
License: GPL-3+

Files: rnet_encode.c
Copyright: 2013-2014 Thadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
           2014 Alexandre Oliva <lxoliva@fsfla.org>
License: GPL-3+

Files: rnet_encode.h
Copyright: 2013 Thadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
License: GPL-3+

Files: rnet_message.c
Copyright: 2013 Thadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
           2014 Alexandre Oliva <lxoliva@fsfla.org>
License: GPL-3+

Files: rnet_message.h
Copyright: 2013 Thadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
License: GPL-3+

Files: doc/man/*
Copyright: 2014 Sergio Durigan Junior <sergiodj@sergiodj.net>
License: GPL-3+

Files: debian/*
Copyright: 2015 Sergio Durigan Junior <sergiodj@sergiodj.net>
License: GPL-3+

License: GPL-3+
 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; 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".

A debian/docs => debian/docs +3 -0
@@ 0,0 1,3 @@
NEWS
README
TODO

A debian/rules => debian/rules +7 -0
@@ 0,0 1,7 @@
#!/usr/bin/make -f

DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/default.mk

%:
	dh $@  --with autotools-dev

A debian/source/format => debian/source/format +1 -0
@@ 0,0 1,1 @@
3.0 (quilt)