Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

Commit

Permalink
Merge branch 'beta8'
Browse files Browse the repository at this point in the history
  • Loading branch information
teejee2008 committed Jul 2, 2017
2 parents 0c77c84 + dcc77e3 commit b2e1573
Show file tree
Hide file tree
Showing 94 changed files with 5,671 additions and 2,439 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Polo is a modern, light-weight file manager for Linux with support for multiple

[![](https://2.bp.blogspot.com/-ztn3NTFgZ7g/WSFeSyKB_CI/AAAAAAAAGv0/KqTj5Bd5VKkpqOED08G1fMtMznR980-FQCLcB/s1600/polo_layout_classic_list.png)](https://2.bp.blogspot.com/-ztn3NTFgZ7g/WSFeSyKB_CI/AAAAAAAAGv0/KqTj5Bd5VKkpqOED08G1fMtMznR980-FQCLcB/s1600/polo_layout_classic_list.png)

![](https://1.bp.blogspot.com/-i0M8VMXGW2E/WSFeS7_XqBI/AAAAAAAAGvw/hWYkNIpn1w8IHvRqorNgjwcopfL6ZofvgCLcB/s1600/polo_layout_commander_icons.png)](https://1.bp.blogspot.com/-i0M8VMXGW2E/WSFeS7_XqBI/AAAAAAAAGvw/hWYkNIpn1w8IHvRqorNgjwcopfL6ZofvgCLcB/s1600/polo_layout_commander_icons.png)
[![](https://1.bp.blogspot.com/-i0M8VMXGW2E/WSFeS7_XqBI/AAAAAAAAGvw/hWYkNIpn1w8IHvRqorNgjwcopfL6ZofvgCLcB/s1600/polo_layout_commander_icons.png)](https://1.bp.blogspot.com/-i0M8VMXGW2E/WSFeS7_XqBI/AAAAAAAAGvw/hWYkNIpn1w8IHvRqorNgjwcopfL6ZofvgCLcB/s1600/polo_layout_commander_icons.png)

[![](https://4.bp.blogspot.com/-SoXr3INsUYo/WSFeTl19N_I/AAAAAAAAGv8/29ZnneUnWtYZhI-t3rQCx2z_n1JcjLtJQCLcB/s1600/polo_layout_commander_list.png)](https://4.bp.blogspot.com/-SoXr3INsUYo/WSFeTl19N_I/AAAAAAAAGv8/29ZnneUnWtYZhI-t3rQCx2z_n1JcjLtJQCLcB/s1600/polo_layout_commander_list.png)

Expand Down
1 change: 1 addition & 0 deletions app_name
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
polo
20 changes: 0 additions & 20 deletions build-deb

This file was deleted.

52 changes: 52 additions & 0 deletions build-deb.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
#!/bin/bash

app_name=$(cat app_name)
pkg_name=$(cat pkg_name)

tgz="../../pbuilder/"
dsc="../../builds/${pkg_name}*.dsc"
libs="../../libs"

backup=`pwd`
DIR="$( cd "$( dirname "$0" )" && pwd )"
cd $DIR

sh build-source.sh

cd installer

for arch in i386 amd64
do

echo ""
echo "=========================================================================="
echo " build-deb.sh : $arch"
echo "=========================================================================="
echo ""

rm -rfv ${arch}
mkdir -pv ${arch}

echo "-------------------------------------------------------------------------"

sudo pbuilder --build --buildresult ${arch} --basetgz "${tgz}base-${arch}.tgz" ${dsc}

#check for errors
if [ $? -ne 0 ]; then
cd "$backup"; echo "Failed"; exit 1;
fi

echo "--------------------------------------------------------------------------"

cp -pv --no-preserve=ownership ./${arch}/${pkg_name}*.deb ./${pkg_name}-${arch}.deb

#check for errors
if [ $? -ne 0 ]; then
cd "$backup"; echo "Failed"; exit 1;
fi

echo "--------------------------------------------------------------------------"

done

cd "$backup"
68 changes: 0 additions & 68 deletions build-installer

This file was deleted.

50 changes: 50 additions & 0 deletions build-installers.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#!/bin/bash

backup=`pwd`
DIR="$( cd "$( dirname "$0" )" && pwd )"
cd $DIR

app_name=$(cat app_name)
pkg_name=$(cat pkg_name)

# build debs
sh build-deb.sh

cd installer

for arch in i386 amd64
do

rm -rfv ${arch}/files
mkdir -pv ${arch}/files

echo ""
echo "=========================================================================="
echo " build-installers.sh : $arch"
echo "=========================================================================="
echo ""

dpkg-deb -x ${arch}/${pkg_name}*.deb ${arch}/files

#check for errors
if [ $? -ne 0 ]; then
cd "$backup"; echo "Failed"; exit 1;
fi

echo "--------------------------------------------------------------------------"

rm -rfv ${arch}/${pkg_name}*.* # remove extra files
cp -pv --no-preserve=ownership ./sanity.config ./${arch}/sanity.config
sanity --generate --base-path ./${arch} --out-path . --arch ${arch}

#check for errors
if [ $? -ne 0 ]; then
cd "$backup"; echo "Failed"; exit 1;
fi

echo "--------------------------------------------------------------------------"

done


cd "$backup"
27 changes: 0 additions & 27 deletions build-source

This file was deleted.

46 changes: 46 additions & 0 deletions build-source.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
#!/bin/bash

backup=`pwd`
DIR="$( cd "$( dirname "$0" )" && pwd )"
cd "$DIR"

app_name=$(cat app_name)
pkg_name=$(cat pkg_name)

echo ""
echo "=========================================================================="
echo " build-source.sh"
echo "=========================================================================="
echo ""

echo "app_name: $app_name"
echo "pkg_name: $pkg_name"
echo "--------------------------------------------------------------------------"

# commit to bzr repo
bzr add *
bzr commit -m "updated"

#skip errors as commit may fail if no changes

echo "--------------------------------------------------------------------------"

# clean build dir
rm -rf ../builds

# build source
bzr builddeb --source --native --build-dir ../builds/temp --result-dir ../builds

#check for errors
if [ $? -ne 0 ]; then
cd "$backup"; echo "Failed"; exit 1;
fi

echo "--------------------------------------------------------------------------"

# list files
ls -l ../builds

echo "-------------------------------------------------------------------------"

cd "$backup"
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@

polo-file-manager (17.7) xenial; urgency=low

* Beta 8

-- Tony George <tony.george.kol@gmail.com> Sat, 01 Jul 2017 10:00:00 +0530


polo-file-manager (17.6) xenial; urgency=low

* Beta 7
Expand Down
4 changes: 2 additions & 2 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Homepage: http://teejeetech.blogspot.in/

Package: polo-file-manager
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, rsync, ffmpeg, mediainfo, p7zip, p7zip-full, p7zip-rar, tar, gzip | pigz, bzip2 | pbzip2, xz-utils, fish, qemu-kvm
Recommends: libimage-exiftool-perl
Depends: ${shlibs:Depends}, ${misc:Depends}, libgee-0.8-2, libvte-2.91-0, libjson-glib-1.0-0, libxml2, rsync, ffmpeg, mediainfo, p7zip, p7zip-full, p7zip-rar, tar, gzip | pigz, bzip2 | pbzip2, xz-utils, fish, qemu-kvm, qemu-utils
Recommends: libimage-exiftool-perl, ghostscript
Description: A modern, light-weight file manager for Linux
A modern, light-weight file manager for Linux
Loading

0 comments on commit b2e1573

Please sign in to comment.