Imported Debian patch 2015.1-1
This commit is contained in:
parent
2802120d9f
commit
362ea063b5
7 changed files with 114 additions and 0 deletions
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
|
@ -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
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
9
|
18
debian/control
vendored
Normal file
18
debian/control
vendored
Normal file
|
@ -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.
|
79
debian/copyright
vendored
Normal file
79
debian/copyright
vendored
Normal file
|
@ -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".
|
3
debian/docs
vendored
Normal file
3
debian/docs
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
NEWS
|
||||
README
|
||||
TODO
|
7
debian/rules
vendored
Executable file
7
debian/rules
vendored
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/usr/bin/make -f
|
||||
|
||||
DPKG_EXPORT_BUILDFLAGS = 1
|
||||
include /usr/share/dpkg/default.mk
|
||||
|
||||
%:
|
||||
dh $@ --with autotools-dev
|
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
3.0 (quilt)
|
Loading…
Reference in a new issue