Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
804eadb3
Commit
804eadb3
authored
Sep 12, 2015
by
Claes Sjöfors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ubuntu 64 build
parent
94ec7899
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
25 additions
and
31 deletions
+25
-31
src/tools/pkg/ubu_x86_64/pwr/build.sh
src/tools/pkg/ubu_x86_64/pwr/build.sh
+3
-0
src/tools/pkg/ubu_x86_64/pwr/control
src/tools/pkg/ubu_x86_64/pwr/control
+4
-4
src/tools/pkg/ubu_x86_64/pwrdemo/build.sh
src/tools/pkg/ubu_x86_64/pwrdemo/build.sh
+3
-0
src/tools/pkg/ubu_x86_64/pwrdemo/control
src/tools/pkg/ubu_x86_64/pwrdemo/control
+4
-4
src/tools/pkg/ubu_x86_64/pwrrpi/control
src/tools/pkg/ubu_x86_64/pwrrpi/control
+5
-17
src/tools/pkg/ubu_x86_64/pwrrt/control
src/tools/pkg/ubu_x86_64/pwrrt/control
+3
-3
src/tools/pkg/ubu_x86_64/pwrsev/control
src/tools/pkg/ubu_x86_64/pwrsev/control
+3
-3
No files found.
src/tools/pkg/ubu_x86_64/pwr/build.sh
View file @
804eadb3
...
@@ -101,6 +101,7 @@ echo "-- Building pwr$ver"
...
@@ -101,6 +101,7 @@ echo "-- Building pwr$ver"
# Create directories
# Create directories
mkdir
-p
$pkgroot
/DEBIAN
mkdir
-p
$pkgroot
/DEBIAN
mkdir
-p
$pkgroot
/usr/share/doc/pwr
$ver
mkdir
-p
$pkgroot
/usr/share/doc/pwr
$ver
mkdir
-p
$pkgroot
/usr/share/applications
mkdir
-p
$pkgroot
/usr/pwrp
mkdir
-p
$pkgroot
/usr/pwrp
mkdir
-p
$pkgroot
/etc
mkdir
-p
$pkgroot
/etc
...
@@ -193,6 +194,8 @@ cp $pwre_sroot/tools/pkg/deb/user/wtt_init1.pwr_com $pkgroot/usr/pwr$ver/$pwre_t
...
@@ -193,6 +194,8 @@ cp $pwre_sroot/tools/pkg/deb/user/wtt_init1.pwr_com $pkgroot/usr/pwr$ver/$pwre_t
echo
"Categories=GNOME;GTK;Application;"
echo
"Categories=GNOME;GTK;Application;"
}
>
$pkgroot
/usr/pwr
$ver
/
$pwre_target
/exp/cnf/user/proview
$ver
.desktop
}
>
$pkgroot
/usr/pwr
$ver
/
$pwre_target
/exp/cnf/user/proview
$ver
.desktop
cp
$pkgroot
/usr/pwr
$ver
/
$pwre_target
/exp/cnf/user/proview
$ver
.desktop
$pkgroot
/usr/share/applications/
# Create package
# Create package
echo
"-- Building package"
echo
"-- Building package"
if
which fakeroot
>
/dev/null
;
then
if
which fakeroot
>
/dev/null
;
then
...
...
src/tools/pkg/ubu_x86_64/pwr/control
View file @
804eadb3
Source: pwrsrc
Source: pwrsrc
Section: devel
Section: devel
Package: pwr5
2
Package: pwr5
3
Priority: optional
Priority: optional
Maintainer: Proview <postmaster@proview.se>
Maintainer: Proview <postmaster@proview.se>
Version: 5.
2
.1-1
Version: 5.
3
.1-1
Architecture: amd64
Architecture: amd64
Depends: libc6 (>= 2.19-0ubuntu6), libgtk2.0-0 (>= 2.24.23-0ubuntu1.1), libasound2 (>= 1.0.27.2-3ubuntu7), libdb5.3 (>=5.3.28-3ubuntu3), libdb5.3++ (>=5.3.28-3ubuntu3), libmysql++3 (>= 3.2.0+pristine-1), libsqlite3-0 (>= 3.8.2-1ubuntu2), librsvg2-2 (>= 2.40.2-1), g++ (>= 4:4.8.2-1ubuntu6), xfonts-100dpi
Depends: libc6 (>= 2.19-0ubuntu6), libgtk2.0-0 (>= 2.24.23-0ubuntu1.1), libasound2 (>= 1.0.27.2-3ubuntu7), libdb5.3 (>=5.3.28-3ubuntu3), libdb5.3++ (>=5.3.28-3ubuntu3), libmysql++3 (>= 3.2.0+pristine-1), libsqlite3-0 (>= 3.8.2-1ubuntu2), librsvg2-2 (>= 2.40.2-1), g++ (>= 4:4.8.2-1ubuntu6), xfonts-100dpi
Replaces: pwrrt,pwr34,pwr39,pwr40,pwr41,pwr42,pwr43,pwr44,pwr45,pwr46,pwr47,pwr48,pwr50,pwr51
Replaces: pwrrt,pwr34,pwr39,pwr40,pwr41,pwr42,pwr43,pwr44,pwr45,pwr46,pwr47,pwr48,pwr50,pwr51
,pwr52
Homepage: http://www.proview.se
Homepage: http://www.proview.se
Installed-Size: 1114020
Installed-Size: 1114020
Description: Proview development and runtime environment package
Description: Proview development and runtime environment package
Proview development and runtime environment
Proview development and runtime environment
5.
2.0
-1 Base release
5.
3.1
-1 Base release
src/tools/pkg/ubu_x86_64/pwrdemo/build.sh
View file @
804eadb3
...
@@ -23,6 +23,7 @@ echo "-- Building pwrdemo$ver"
...
@@ -23,6 +23,7 @@ echo "-- Building pwrdemo$ver"
# Create directories
# Create directories
mkdir
-p
$pkgroot
/DEBIAN
mkdir
-p
$pkgroot
/DEBIAN
mkdir
-p
$pkgroot
/usr/share/doc/pwrdemo
$ver
mkdir
-p
$pkgroot
/usr/share/doc/pwrdemo
$ver
mkdir
-p
$pkgroot
/usr/share/applications
mkdir
-p
$pkgroot
/usr/pwrp
mkdir
-p
$pkgroot
/usr/pwrp
find
$pkgroot
-type
d | xargs
chmod
755
find
$pkgroot
-type
d | xargs
chmod
755
...
@@ -83,6 +84,8 @@ cd $currentdir
...
@@ -83,6 +84,8 @@ cd $currentdir
echo
"Categories=GNOME;GTK;Application;"
echo
"Categories=GNOME;GTK;Application;"
}
>
$pkgroot
/usr/pwrp/pwrdemo
$ver
/cnf/proviewdemo
$ver
.desktop
}
>
$pkgroot
/usr/pwrp/pwrdemo
$ver
/cnf/proviewdemo
$ver
.desktop
cp
$pkgroot
/usr/pwrp/pwrdemo
$ver
/cnf/proviewdemo
$ver
.desktop
$pkgroot
/usr/share/applications/
# Create package
# Create package
echo
"-- Building package"
echo
"-- Building package"
if
which fakeroot
>
/dev/null
;
then
if
which fakeroot
>
/dev/null
;
then
...
...
src/tools/pkg/ubu_x86_64/pwrdemo/control
View file @
804eadb3
Package: pwrdemo5
2
Package: pwrdemo5
3
Version: 5.
2
.1-1
Version: 5.
3
.1-1
Section: base
Section: base
Priority: optional
Priority: optional
Architecture: amd64
Architecture: amd64
Depends: pwr5
2 (>= 5.2
.1-1)
Depends: pwr5
3 (>= 5.3
.1-1)
Replaces:
Replaces:
Maintainer: Proview <postmaster@proview.se>
Maintainer: Proview <postmaster@proview.se>
Description: Proview Demo Project package
Description: Proview Demo Project package
Proview Demo Project
Proview Demo Project
5.
2.0
-1 Base release
5.
3.1
-1 Base release
src/tools/pkg/ubu_x86_64/pwrrpi/control
View file @
804eadb3
Package: pwrrpi5
1
Package: pwrrpi5
3
Version: 5.
1.0-4
Version: 5.
3.1-1
Section: base
Section: base
Priority: optional
Priority: optional
Architecture: amd64
Architecture: amd64
Depends: pwr5
1 (>= 5.1.0-4
)
Depends: pwr5
3 (>= 5.3.1-1
)
Replaces: pwr5
1
Replaces: pwr5
3
Maintainer: Proview <postmaster@proview.se>
Maintainer: Proview <postmaster@proview.se>
Description: Proview RPI development package
Description: Proview RPI development package
Proview RPI development environment
Proview RPI development environment
5.1.0-1 Base release
5.3.1-1 Base release
5.1.0-2
- Wb history html file size limited to 1000 rows.
- Ge polyline draw bugfix for subwindows.
- Web, open graph from pwg-files as default, methods for pwg-graphs added.
5.1.0-3
- Class AppLink added.
- Ge trend and xycurve fix for subwindows.
5.1.0-4
- Support for Gertbord and PiFace.
- wb load of DataArithmL bugfix.
- Ge bugfix for scale with snap to grid.
- Xtt read struct fix, element name buffer increased.
src/tools/pkg/ubu_x86_64/pwrrt/control
View file @
804eadb3
Package: pwrrt
Package: pwrrt
Version: 5.
2
.1-1
Version: 5.
3
.1-1
Section: base
Section: base
Priority: optional
Priority: optional
Architecture: amd64
Architecture: amd64
Depends: libc6 (>= 2.19-93ubuntu4), libgtk2.0-0 (>= 2.24.20-1ubuntu1), libasound2 (>= 1.0.27.2-1ubuntu6), libdb5.3 (>=5.3.21-2), libsqlite3-0 (>= 3.7.17-1ubuntu1), librsvg2-2 (>= 2.36.4-2), xfonts-100dpi
Depends: libc6 (>= 2.19-93ubuntu4), libgtk2.0-0 (>= 2.24.20-1ubuntu1), libasound2 (>= 1.0.27.2-1ubuntu6), libdb5.3 (>=5.3.21-2), libsqlite3-0 (>= 3.7.17-1ubuntu1), librsvg2-2 (>= 2.36.4-2), xfonts-100dpi
Replaces: pwr34,pwr39,pwr40,pwr41,pwr42,pwr43,pwr44,pwr45,pwr46,pwr47,pwr48,pwr50,pwr51
Replaces: pwr34,pwr39,pwr40,pwr41,pwr42,pwr43,pwr44,pwr45,pwr46,pwr47,pwr48,pwr50,pwr51
,pwr52
Maintainer: Proview <postmaster@proview.se>
Maintainer: Proview <postmaster@proview.se>
Homepage: http://www.proview.se
Homepage: http://www.proview.se
Installed-Size: 955344
Installed-Size: 955344
Description:
Description:
Proview runtime environment
Proview runtime environment
5.
2.0
-1 Base release
5.
3.1
-1 Base release
src/tools/pkg/ubu_x86_64/pwrsev/control
View file @
804eadb3
Package: pwrsev
Package: pwrsev
Version: 5.
2
.1-1
Version: 5.
3
.1-1
Section: base
Section: base
Priority: optional
Priority: optional
Architecture: amd64
Architecture: amd64
Depends: libc6 (>= 2.19-0ubuntu6), libgtk2.0-0 (>= 2.24.23-0ubuntu1.1), libasound2 (>= 1.0.27.2-3ubuntu7), libdb5.3 (>=5.3.28-3ubuntu3), libmysql++3 (>= 3.2.0+pristine-1), libsqlite3-0 (>= 3.8.2-1ubuntu2), xfonts-100dpi
Depends: libc6 (>= 2.19-0ubuntu6), libgtk2.0-0 (>= 2.24.23-0ubuntu1.1), libasound2 (>= 1.0.27.2-3ubuntu7), libdb5.3 (>=5.3.28-3ubuntu3), libmysql++3 (>= 3.2.0+pristine-1), libsqlite3-0 (>= 3.8.2-1ubuntu2), xfonts-100dpi
Replaces: pwr34,pwr39,pwr40,pwr41,pwr42,pwr43,pwr44,pwr45,pwr46,pwr47,pwr48,pwr50,pwr51
Replaces: pwr34,pwr39,pwr40,pwr41,pwr42,pwr43,pwr44,pwr45,pwr46,pwr47,pwr48,pwr50,pwr51
,pwr52
Maintainer: Proview <postmaster@proview.se>
Maintainer: Proview <postmaster@proview.se>
Description:
Description:
Proview storage environment
Proview storage environment
5.
2.0
-1 Base release
5.
3.1
-1 Base release
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