Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
le5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Linux Educacional 5
le5
Commits
64575713
Commit
64575713
authored
Sep 26, 2012
by
Klismann Smoger Mottin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
le-proinfodata-installer: Add dummy package for the installer of proinfodata
parent
5c0c32f8
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
74 additions
and
0 deletions
+74
-0
le-proinfodata-installer/README
le-proinfodata-installer/README
+4
-0
le-proinfodata-installer/VERSAO
le-proinfodata-installer/VERSAO
+1
-0
le-proinfodata-installer/gerar.sh
le-proinfodata-installer/gerar.sh
+62
-0
le-proinfodata-installer/le-proinfodata-installer_0.0.1_i386.deb
...nfodata-installer/le-proinfodata-installer_0.0.1_i386.deb
+0
-0
le-proinfodata-installer/pacote/DEBIAN/control
le-proinfodata-installer/pacote/DEBIAN/control
+7
-0
No files found.
le-proinfodata-installer/README
0 → 100644
View file @
64575713
le-proinfodata-installer:
=========================
Instalador do PROINFODATA no LE
le-proinfodata-installer/VERSAO
0 → 100644
View file @
64575713
0.0.1
le-proinfodata-installer/gerar.sh
0 → 100755
View file @
64575713
#!/bin/bash
# gerar.sh
# Copyright (c) 2006 by Bruno Ribas <ribas@ufpr.br>
DIRTMP
=
$(
mktemp
-d
)
VERSAO
=
$(
cat
VERSAO
)
#arrumar versao
#$1 tipo de incremento
MAJOR
=
$(
echo
$VERSAO
|
cut
-d
'.'
-f1
)
MINOR
=
$(
echo
$VERSAO
|
cut
-d
'.'
-f2
)
REVISION
=
$(
echo
$VERSAO
|
cut
-d
'.'
-f3
)
case
$1
in
Minor
)
((
MINOR++
))
REVISION
=
0
;;
Major
)
((
MAJOR++
))
MINOR
=
0
REVISION
=
0
;;
help
)
echo
"Uso:
$0
Major|Minor|Revision"
echo
' Major - Altera versao Major'
echo
' Minor - Altera versao Minor'
exit
;;
*
)
((
REVISION++
))
;;
esac
VERSAO
=
"
${
MAJOR
}
.
${
MINOR
}
.
${
REVISION
}
"
echo
"
$VERSAO
"
>
VERSAO
#Compila a documentacao do pacote no diretorio doc/
#cd doc/
#hevea -text *.tex
#hevea -text *.tex
#cd ../
cp
-r
pacote
$DIRTMP
#Copia a documentacao compilada para dentro do pacote.
#cp doc/*.txt $DIRTMP/pacote/usr/share/doc/prd-*
cd
$DIRTMP
find
.
-name
".svn"
-exec
rm
-rf
{}
\;
&>/dev/null
sed
-i
-e
"s/Version:/Version:
$VERSAO
/"
pacote/DEBIAN/control
fakeroot dpkg
-b
pacote
.
cd
-
cp
$DIRTMP
/
*
deb
.
rm
-rf
$DIRTMP
# vim:tabstop=4:shiftwidth=4:encoding=iso-8859-1
le-proinfodata-installer/le-proinfodata-installer_0.0.1_i386.deb
0 → 100644
View file @
64575713
File added
le-proinfodata-installer/pacote/DEBIAN/control
0 → 100755
View file @
64575713
Package: le-proinfodata-installer
Version:
Maintainer: <proinfodata@c3sl.ufpr.br>
Architecture: i386
Section: main
Priority: important
Description: Installer of the agent of PROINFODATA project designed for LE
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment