Package Details: python-gpxpy 1.6.2-1

Git Clone URL: https://aur.archlinux.org/python-gpxpy.git (read-only, click to copy)
Package Base: python-gpxpy
Description: Python GPX (GPS eXchange format) parser
Upstream URL: https://github.com/tkrajina/gpxpy
Keywords: gps gpx
Licenses: Apache
Submitter: webmeister
Maintainer: fordprefect
Last Packager: fordprefect
Votes: 11
Popularity: 0.77
First Submitted: 2015-10-10 09:51 (UTC)
Last Updated: 2023-11-30 11:58 (UTC)

Latest Comments

fordprefect commented on 2023-10-09 09:24 (UTC)

Just opened an issue to tag a new release so we can build from that instead of dev branch.

MarsSeed commented on 2023-10-07 15:09 (UTC)

Last tagged release, v1.5.0 is from 2021.

I think it might be better to update from 'dev' branch.

Proper Python3 conversion only happened after release v1.5.0, and there are many fix commits as well:

https://github.com/tkrajina/gpxpy/compare/v1.5.0...dev

dreieck commented on 2023-07-18 19:43 (UTC)

You should switch away from setup.py to python -m build -m installer (and requiring the corresponding packages as makedepends, maybe also python-wheel):

/usr/lib/python3.11/site-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated.
!!

        ********************************************************************************
        Please avoid running ``setup.py`` directly.
        Instead, use pypa/build, pypa/installer or other
        standards-based tools.

        See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details.
        ********************************************************************************

!!

Regards!

eclairevoyant commented on 2023-06-05 14:45 (UTC)

Please rename the source to follow AUR guidelines, as per https://wiki.archlinux.org/title/PKGBUILD#source:

The downloaded source filename must be unique because the SRCDEST directory can be the same for all packages. For instance, using the version number of the project as a filename potentially conflicts with other projects with the same version number. In this case, the alternative unique filename to be used is provided with the syntax source=('unique_package_name::file_uri'); e.g. source=("$pkgname-$pkgver.tar.gz::https://github.com/coder/program/archive/v$pkgver.tar.gz").

carlosal1015 commented on 2023-01-30 21:21 (UTC)

Hi, I have the following message error:

==> Making package: python-gpxpy 1.5.0-1 (Mon Jan 30 16:20:22 2023)
==> Retrieving sources...
  -> Downloading v1.5.0.tar.gz...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  110k    0  110k    0     0   265k      0 --:--:-- --:--:-- --:--:-- 4750k
==> Validating source files with sha256sums...
    v1.5.0.tar.gz ... FAILED
==> ERROR: One or more files did not pass the validity check!
 -> error downloading sources: python-gpxpy 
         context: exit status 1 


 -> python>=3.2 not satisfied, flushing install queue
==> Making package: python-gpxpy 1.5.0-1 (Mon Jan 30 16:20:23 2023)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Found v1.5.0.tar.gz
==> Validating source files with sha256sums...
    v1.5.0.tar.gz ... FAILED
==> ERROR: One or more files did not pass the validity check!
checking dependencies...
:: python optionally requires python-setuptools

peterge commented on 2020-09-21 07:56 (UTC) (edited on 2020-09-21 07:57 (UTC) by peterge)

==> Making package: python-gpxpy 1.4.2-1 (Mon 21 Sep 2020 09:55:24 AM CEST)
==> Retrieving sources...
  -> Found v1.4.2.tar.gz
==> Validating source files with sha256sums...
    v1.4.2.tar.gz ... FAILED
==> ERROR: One or more files did not pass the validity check!
error downloading sources: python-gpxpy

Please update the signatures!

jose1711 commented on 2019-03-25 07:15 (UTC)

--- PKGBUILD.orig   2019-03-25 08:11:34.443475609 +0100
+++ PKGBUILD    2019-03-25 08:14:29.104085497 +0100
@@ -1,6 +1,6 @@
 # Contributor: Andrey Mikhaylenko <neithere at gmail dot com>
 pkgname=python-gpxpy
-pkgver=1.1.2
+pkgver=1.3.5
 pkgrel=1
 pkgdesc="Python GPX (GPS eXchange format) parser"
 arch=(any)
@@ -14,8 +14,8 @@
 backup=()
 options=(!emptydirs)
 install=
-source=(https://pypi.python.org/packages/51/3c/29004507bc4d5c1248a1a37ec01c2030b2e977609c219244d81f3041b745/gpxpy-1.1.2.tar.gz)
-sha256sums=('c46b8fe738c6402638d2b5434020bc6ccd24b15090d7234fe9b158fdea14f354')
+source=(https://pypi.python.org/packages/source/G/GpxPy/gpxpy-${pkgver}.tar.gz)
+sha256sums=('b09e3212c9af83188d308214428c20c57b4ec1d45c3a3fc40f4b3d49c758aebf')

 package() {
    cd "${srcdir}/gpxpy-${pkgver}"

fordprefect commented on 2017-07-17 03:12 (UTC)

hi, please remove '|| exit 1' as PKGBUILDs are run in bash -e mode and will thus terminate whenever a command fails.