Re: [Qgis-user] STEPS TO BUILD FROM SOURCE QGIS DESKTOP INCLUDING ORACLE LIBRARIES

2023-09-29 Thread Jürgen E . Fischer via QGIS-User
Hi Richard,

On Fri, 29. Sep 2023 at 14:39:01 +0200, Richard Duivenvoorde via QGIS-User 
wrote:
> Ubercool! These lines even work on my current Debian Bookworm \o/

Although I'd change the dch line to bookworm-oracle in that case.
 
> One question: the result is:
> qgis-build-deps_3.32.3~sid~oracle1_all.deb
 
> but where does it install after
> sudo dpkg -i qgis-build-deps_3.32.3~sid~oracle1_all.deb
> or
> sudo gdebi qgis-build-deps_3.32.3~sid~oracle1_all.deb
> 
> I could not find it in /usr/bin. I can only find it in the
> qgis-3.32.3~sid~oracle1/debian/build/output/bin/qgis
> or
> qgis-3.32.3~sid~oracle1/debian/qgis/usr/bin/qgis
> 
> should it not be installed on the user's disk?

Sure, because that is the actual result (or the main part of it).

qgis-build-deps is just an empty package from mk-build-deps that depends on all
packages which qgis needs to build.   So it installing what apt-get build-dep
would, just for the dependencies of the current source (listed in
debian/control) and not the package in the repository.

> PS: I think this deserves a place in the (linux specific) docs ( while it is
> working :-) )...

ack. ;)


Jürgen

-- 
Jürgen E. Fischer   norBIT GmbH Tel. +49-4931-918175-31
Dipl.-Inf. (FH) Rheinstraße 13  Fax. +49-4931-918175-50
Software Engineer   D-26506 Nordenhttps://www.norbit.de
QGIS release manager (PSC)  Germany IRC: jef on Libera|OFTC


signature.asc
Description: PGP signature
___
QGIS-User mailing list
QGIS-User@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Jochens OSM vector tiles demo

2023-09-29 Thread Richard Duivenvoorde via QGIS-User

For those interested, Jochen Topf of OSM fame put a demo together about a 
realtime OSM vector tile server.

See: https://community.openstreetmap.org/t/minutely-updated-vector-tiles/104197

You can add it to QGIS too, and it looks very nice, see my comments there on 
what to use as source url's:

https://community.openstreetmap.org/t/minutely-updated-vector-tiles/104197/13

Would be nice if every country in the world would serve up OSM vector tiles in 
their own CRS's :-)

Regards,

Richard Duivenvoorde
___
QGIS-User mailing list
QGIS-User@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] STEPS TO BUILD FROM SOURCE QGIS DESKTOP INCLUDING ORACLE LIBRARIES

2023-09-29 Thread Richard Duivenvoorde via QGIS-User

Hi Juergen,

Ubercool! These lines even work on my current Debian Bookworm \o/

One question: the result is:
qgis-build-deps_3.32.3~sid~oracle1_all.deb

but where does it install after
sudo dpkg -i qgis-build-deps_3.32.3~sid~oracle1_all.deb
or
sudo gdebi qgis-build-deps_3.32.3~sid~oracle1_all.deb

I could not find it in /usr/bin. I can only find it in the
qgis-3.32.3~sid~oracle1/debian/build/output/bin/qgis
or
qgis-3.32.3~sid~oracle1/debian/qgis/usr/bin/qgis

should it not be installed on the user's disk?

PS: I think this deserves a place in the (linux specific) docs ( while it is 
working :-) )...

Regards,

Richard Duivenvoorde

On 9/29/23 08:04, Jürgen E. Fischer via QGIS-User wrote:

Hi Fredy,

On Thu, 28. Sep 2023 at 14:32:26 +, Fredy Varon via QGIS-User wrote:

Anyone has the steps to build and compile qgis desktop on Linux Ubuntu to
permits Access to Oracle databases


sudo apt install devscripts alien
curl -JLO 
https://download.oracle.com/otn_software/linux/instantclient/2111000/oracle-instantclient-devel-21.11.0.0.0-1.el8.x86_64.rpm
curl -JLO 
https://download.oracle.com/otn_software/linux/instantclient/2111000/oracle-instantclient-basiclite-21.11.0.0.0-1.el8.x86_64.rpm
fakeroot alien oracle-instantclient-devel-21.11.0.0.0-1.el8.x86_64.rpm 
oracle-instantclient-basiclite-21.11.0.0.0-1.el8.x86_64.rpm
sudo dpkg -i oracle-instantclient-devel_21.11.0.0.0-2_amd64.deb 
oracle-instantclient-basiclite_21.11.0.0.0-2_amd64.deb

curl -JLO https://download.qgis.org/downloads/qgis-3.32.3.tar.bz2
tar xjf qgis-3.32.3.tar.bz2
cd qgis-3.32.3
sed -i -e "s#18.5#21#" debian/rules
sed -i -e "s#12.1##" debian/control.in
dch -l ~sid~oracle --force-distribution --distribution sid-oracle "sid build with 
oracle"
debian/rules templates
sudo mk-build-deps -i
dpkg-buildpackage -us -uc -b


Jürgen


___
QGIS-User mailing list
QGIS-User@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user


___
QGIS-User mailing list
QGIS-User@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] STEPS TO BUILD FROM SOURCE QGIS DESKTOP INCLUDING ORACLE LIBRARIES

2023-09-29 Thread Jürgen E . Fischer via QGIS-User
Hi Fredy,

On Thu, 28. Sep 2023 at 14:32:26 +, Fredy Varon via QGIS-User wrote:
> Anyone has the steps to build and compile qgis desktop on Linux Ubuntu to
> permits Access to Oracle databases

sudo apt install devscripts alien
curl -JLO 
https://download.oracle.com/otn_software/linux/instantclient/2111000/oracle-instantclient-devel-21.11.0.0.0-1.el8.x86_64.rpm
curl -JLO 
https://download.oracle.com/otn_software/linux/instantclient/2111000/oracle-instantclient-basiclite-21.11.0.0.0-1.el8.x86_64.rpm
fakeroot alien oracle-instantclient-devel-21.11.0.0.0-1.el8.x86_64.rpm 
oracle-instantclient-basiclite-21.11.0.0.0-1.el8.x86_64.rpm
sudo dpkg -i oracle-instantclient-devel_21.11.0.0.0-2_amd64.deb 
oracle-instantclient-basiclite_21.11.0.0.0-2_amd64.deb

curl -JLO https://download.qgis.org/downloads/qgis-3.32.3.tar.bz2
tar xjf qgis-3.32.3.tar.bz2
cd qgis-3.32.3
sed -i -e "s#18.5#21#" debian/rules
sed -i -e "s#12.1##" debian/control.in
dch -l ~sid~oracle --force-distribution --distribution sid-oracle "sid build 
with oracle"
debian/rules templates
sudo mk-build-deps -i
dpkg-buildpackage -us -uc -b


Jürgen

-- 
Jürgen E. Fischer   norBIT GmbH Tel. +49-4931-918175-31
Dipl.-Inf. (FH) Rheinstraße 13  Fax. +49-4931-918175-50
Software Engineer   D-26506 Nordenhttps://www.norbit.de
QGIS release manager (PSC)  Germany IRC: jef on Libera|OFTC


signature.asc
Description: PGP signature
___
QGIS-User mailing list
QGIS-User@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user