Commit 7b076f4e38b718b050ad2dec4b30097f4c2a2f92
1 parent
d16b3609
Exists in
master
and in
5 other branches
Geração dos .deb no build service apresentou problemas depois das ultimas alterações
Showing
9 changed files
with
25 additions
and
31 deletions
Show diff stats
Makefile.in
| @@ -321,6 +321,7 @@ distclean: clean | @@ -321,6 +321,7 @@ distclean: clean | ||
| 321 | @rm -f src/include/lib3270/config.h | 321 | @rm -f src/include/lib3270/config.h |
| 322 | @rm -f src/pw3270/uiparser/Makefile | 322 | @rm -f src/pw3270/uiparser/Makefile |
| 323 | @rm -fr autom4te.cache | 323 | @rm -fr autom4te.cache |
| 324 | + @rm -fr debian | ||
| 324 | @rm -f *.pc | 325 | @rm -f *.pc |
| 325 | @rm -f $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar* | 326 | @rm -f $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar* |
| 326 | @find ./src -name "Makefile" -exec rm -f {} \; | 327 | @find ./src -name "Makefile" -exec rm -f {} \; |
debian.control
| @@ -2,13 +2,25 @@ Source: pw3270 | @@ -2,13 +2,25 @@ Source: pw3270 | ||
| 2 | Section: unknown | 2 | Section: unknown |
| 3 | Priority: optional | 3 | Priority: optional |
| 4 | Maintainer: Perry Werneck <perry.werneck@gmail.com> | 4 | Maintainer: Perry Werneck <perry.werneck@gmail.com> |
| 5 | -Build-Depends: debhelper (>= 7), autotools-dev, autoconf, libgtk-3-dev, gettext, libssl-dev, desktop-file-utils | 5 | +Build-Depends: debhelper (>= 7), autotools-dev, autoconf, libgtk-3-dev, gettext, libssl-dev, desktop-file-utils, xsltproc, librsvg2-bin |
| 6 | 6 | ||
| 7 | Package: pw3270 | 7 | Package: pw3270 |
| 8 | Architecture: any | 8 | Architecture: any |
| 9 | -Depends: ${shlibs:Depends} | 9 | +Depends: ${shlibs:Depends}, lib3270 (= ${binary:Version}) |
| 10 | Description: IBM 3270 Terminal emulator for gtk | 10 | Description: IBM 3270 Terminal emulator for gtk |
| 11 | IBM 3270 terminal emulator gtk. It can be used to communicate with | 11 | IBM 3270 terminal emulator gtk. It can be used to communicate with |
| 12 | any IBM host that supports 3270-style connections over TELNET. | 12 | any IBM host that supports 3270-style connections over TELNET. |
| 13 | 13 | ||
| 14 | +Package: lib3270 | ||
| 15 | +Architecture: any | ||
| 16 | +Section: libs | ||
| 17 | +Depends: ${misc:Depends}, binutils (>= 2.14.90.0.7) | ||
| 18 | +Description: pw3270 shared libraries. | ||
| 19 | + This package contains the pw3270 shared library for the core application. | ||
| 14 | 20 | ||
| 21 | +Package: lib3270-dev | ||
| 22 | +Architecture: any | ||
| 23 | +Section: libdevel | ||
| 24 | +Depends: ${misc:Depends}, lib3270 (= ${binary:Version}) | ||
| 25 | +Description: lib3270 development files. | ||
| 26 | + This package contains the files needed for development of lib3270 based applications |
debian/compat
No preview for this file type
debian/control
| @@ -1,26 +0,0 @@ | @@ -1,26 +0,0 @@ | ||
| 1 | -Source: pw3270 | ||
| 2 | -Section: unknown | ||
| 3 | -Priority: optional | ||
| 4 | -Maintainer: Perry Werneck <perry.werneck@gmail.com> | ||
| 5 | -Build-Depends: debhelper (>= 7), autotools-dev, autoconf, libgtk-3-dev, gettext, libssl-dev, desktop-file-utils, xsltproc, librsvg2-bin | ||
| 6 | - | ||
| 7 | -Package: pw3270 | ||
| 8 | -Architecture: any | ||
| 9 | -Depends: ${shlibs:Depends}, lib3270 (= ${binary:Version}) | ||
| 10 | -Description: IBM 3270 Terminal emulator for gtk | ||
| 11 | - IBM 3270 terminal emulator gtk. It can be used to communicate with | ||
| 12 | - any IBM host that supports 3270-style connections over TELNET. | ||
| 13 | - | ||
| 14 | -Package: lib3270 | ||
| 15 | -Architecture: any | ||
| 16 | -Section: libs | ||
| 17 | -Depends: ${misc:Depends}, binutils (>= 2.14.90.0.7) | ||
| 18 | -Description: pw3270 shared libraries. | ||
| 19 | - This package contains the pw3270 shared library for the core application. | ||
| 20 | - | ||
| 21 | -Package: lib3270-dev | ||
| 22 | -Architecture: any | ||
| 23 | -Section: libdevel | ||
| 24 | -Depends: ${misc:Depends}, lib3270 (= ${binary:Version}) | ||
| 25 | -Description: lib3270 development files. | ||
| 26 | - This package contains the files needed for development of lib3270 based applications |
debian/postinst
makedeb.sh
| @@ -5,7 +5,13 @@ VERSION=$(grep AC_INIT configure.ac | cut -d[ -f3 | cut -d] -f1) | @@ -5,7 +5,13 @@ VERSION=$(grep AC_INIT configure.ac | cut -d[ -f3 | cut -d] -f1) | ||
| 5 | TIMESTAMP=$(LANG=en_US date) | 5 | TIMESTAMP=$(LANG=en_US date) |
| 6 | . ./revision | 6 | . ./revision |
| 7 | 7 | ||
| 8 | -rm -f debian/changelog | 8 | +rm -fr debian |
| 9 | +mkdir debian | ||
| 10 | + | ||
| 11 | +echo 7 > debian/compat | ||
| 12 | +cp debian.control debian/control | ||
| 13 | +cp debian.rules debian/control | ||
| 14 | + | ||
| 9 | EDITOR=true dch --preserve -v $VERSION-$PACKAGE_LEVEL -u low --create --package pw3270 | 15 | EDITOR=true dch --preserve -v $VERSION-$PACKAGE_LEVEL -u low --create --package pw3270 |
| 10 | sed -i "s@UNRELEASED@unstable@;s@Initial release. (Closes: #XXXXXX)@SVN Revision $PACKAGE_REVISION@" debian/changelog | 16 | sed -i "s@UNRELEASED@unstable@;s@Initial release. (Closes: #XXXXXX)@SVN Revision $PACKAGE_REVISION@" debian/changelog |
| 11 | 17 |
po/pt_BR.po
| @@ -5,7 +5,7 @@ msgid "" | @@ -5,7 +5,7 @@ msgid "" | ||
| 5 | msgstr "" | 5 | msgstr "" |
| 6 | "Project-Id-Version: pw3270 5.0\n" | 6 | "Project-Id-Version: pw3270 5.0\n" |
| 7 | "Report-Msgid-Bugs-To: \n" | 7 | "Report-Msgid-Bugs-To: \n" |
| 8 | -"POT-Creation-Date: 2012-09-12 12:27-0300\n" | 8 | +"POT-Creation-Date: 2012-09-12 17:29-0300\n" |
| 9 | "PO-Revision-Date: 2012-09-05 09:05-0300\n" | 9 | "PO-Revision-Date: 2012-09-05 09:05-0300\n" |
| 10 | "Last-Translator: Perry Werneck <perry.werneck@gmail.com>\n" | 10 | "Last-Translator: Perry Werneck <perry.werneck@gmail.com>\n" |
| 11 | "Language-Team: Português do Brasil <>\n" | 11 | "Language-Team: Português do Brasil <>\n" |
src/lib3270/Makefile.in
src/pw3270/Makefile.in
| @@ -203,5 +203,6 @@ clean: clean-common | @@ -203,5 +203,6 @@ clean: clean-common | ||
| 203 | @rm -fr uiparser/.obj | 203 | @rm -fr uiparser/.obj |
| 204 | @rm -fr v3270/.bin | 204 | @rm -fr v3270/.bin |
| 205 | @rm -fr v3270/.obj | 205 | @rm -fr v3270/.obj |
| 206 | + @rm -fr debian | ||
| 206 | @rm -f $(PACKAGE_NAME).desktop | 207 | @rm -f $(PACKAGE_NAME).desktop |
| 207 | 208 |