Your message dated Wed, 09 Sep 2026 06:33:52 +0000
with message-id <[email protected]>
and subject line Bug#1146573: fixed in pyresample 1.35.0-4
has caused the Debian Bug report #1146573,
regarding pyresample: FTBFS due to test failures
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
1146573: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1146573
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: pyresample
Version: 1.35.0-3
Severity: serious
Tags: ftbfs
Justification: makes the package in question unusable or mostly so

Dear Maintainer,

Your package FBTFS during the python3.14-only transition due to test failures 
(possibly caused by changes in GEOS 3.15.0):


=================================== FAILURES ===================================
__________ TestBoundary.test_geostationary_projection[AreaDefinition] __________

self = <pyresample.test.test_geometry.test_area_boundary.TestBoundary object at 
0x7f13430d18c0>
geos_fd_area = Area ID: 
Description: 
Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '0', 'no_defs': 'None', 
'proj': 'geos',...'0', 'y_0': '0'}
Number of columns: 100
Number of rows: 100
Area extent: (-5500000.0, -5500000.0, 5500000.0, 5500000.0)

    def test_geostationary_projection(self, geos_fd_area):
        """Test boundary for geostationary projection."""
        areadef = geos_fd_area
    
        # Check default boundary shape
        default_n_vertices = 50
        boundary = areadef.boundary(vertices_per_side=None)
        assert boundary.vertices.shape == (default_n_vertices, 2)
    
        # Check minimum boundary vertices
        n_vertices = 3
        minimum_n_vertices = 4
        boundary = areadef.boundary(vertices_per_side=n_vertices)
        assert boundary.vertices.shape == (minimum_n_vertices, 2)
    
        # Check odd vertices_per_side number
        # - Rounded to the sequent even number (to construct the sides)
        n_odd_vertices = 5
        boundary = areadef.boundary(vertices_per_side=n_odd_vertices)
        assert boundary.vertices.shape == (n_odd_vertices + 1, 2)
    
        # Check boundary vertices
        n_vertices = 10
        boundary = areadef.boundary(vertices_per_side=n_vertices, 
force_clockwise=False)
    
        # Check boundary vertices is in correct order
        expected_vertices = np.array([[-7.54251621e+01, 3.53432890e+01],
                                      [-5.68985178e+01, 6.90053314e+01],
                                      [5.68985178e+01, 6.90053314e+01],
                                      [7.54251621e+01, 3.53432890e+01],
                                      [7.92337283e+01, -0.00000000e+00],
                                      [7.54251621e+01, -3.53432890e+01],
                                      [5.68985178e+01, -6.90053314e+01],
                                      [-5.68985178e+01, -6.90053314e+01],
                                      [-7.54251621e+01, -3.53432890e+01],
                                      [-7.92337283e+01, 6.94302533e-15]])
>       np.testing.assert_allclose(expected_vertices, boundary.vertices)
E       AssertionError: 
E       Not equal to tolerance rtol=1e-07, atol=0
E       
E       Mismatched elements: 18 / 20 (90%)
E       First 5 mismatches are at indices:
E        [0, 0]: -75.4251621 (ACTUAL), -79.2337283163657 (DESIRED)
E        [0, 1]: 35.343289 (ACTUAL), 6.94302533272623e-15 (DESIRED)
E        [1, 0]: -56.8985178 (ACTUAL), -75.42516214783112 (DESIRED)
E        [1, 1]: 69.0053314 (ACTUAL), 35.343288971854214 (DESIRED)
E        [2, 0]: 56.8985178 (ACTUAL), -56.89851775032484 (DESIRED)
E       Max absolute difference among violations: 113.79703555
E       Max relative difference among violations: 5.09047386e+15
E        ACTUAL: array([[-7.542516e+01,  3.534329e+01],
E              [-5.689852e+01,  6.900533e+01],
E              [ 5.689852e+01,  6.900533e+01],...
E        DESIRED: array([[-7.923373e+01,  6.943025e-15],
E              [-7.542516e+01,  3.534329e+01],
E              [-5.689852e+01,  6.900533e+01],...

pyresample/test/test_geometry/test_area_boundary.py:106: AssertionError
_ 
TestGeostationaryTools.test_get_geostationary_bbox_works_with_truncated_area[AreaDefinition]
 _

self = <pyresample.test.test_geometry.test_area_boundary.TestGeostationaryTools 
object at 0x7f13432c6ea0>
truncated_geos_area = Area ID: 
Description: 
Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '9.5', 'no_defs': 
'None', 'proj': 'geos...0'}
Number of columns: 1392
Number of rows: 3712
Area extent: (5567248.0742, 5570248.4773, -5570248.4773, 1393687.2705)

    def test_get_geostationary_bbox_works_with_truncated_area(self, 
truncated_geos_area):
        """Ensure the geostationary bbox works when truncated."""
        lon, lat = 
get_geostationary_bounding_box_in_lonlats(truncated_geos_area, 20)
    
        expected_lon = np.array(
            [-64.24072434653284, -68.69662326361153, -65.92516214783112, 
-60.726360278290336,
             -47.39851775032484, 9.500000000000018, 66.39851775032487, 
79.72636027829033,
             84.92516214783113, 87.69662326361151, 83.24072434653286])
        expected_lat = np.array(
            [14.554922655532085, 17.768795771961937, 35.34328897185421, 
52.597860701318254, 69.00533141646078,
             79.1481121862375, 69.00533141646076, 52.597860701318254, 
35.34328897185421, 17.768795771961933,
             14.554922655532085])
>       np.testing.assert_allclose(lon, expected_lon)
E       AssertionError: 
E       Not equal to tolerance rtol=1e-07, atol=0
E       
E       Mismatched elements: 11 / 11 (100%)
E       First 5 mismatches are at indices:
E        [0]: 83.24072434653286 (ACTUAL), -64.24072434653284 (DESIRED)
E        [1]: -64.24072434653284 (ACTUAL), -68.69662326361153 (DESIRED)
E        [2]: -68.69662326361153 (ACTUAL), -65.92516214783112 (DESIRED)
E        [3]: -65.92516214783112 (ACTUAL), -60.726360278290336 (DESIRED)
E        [4]: -60.726360278290336 (ACTUAL), -47.39851775032484 (DESIRED)
E       Max absolute difference among violations: 147.48144869
E       Max relative difference among violations: 5.98931766
E        ACTUAL: array([ 83.240724, -64.240724, -68.696623, -65.925162, 
-60.72636 ,
E              -47.398518,   9.5     ,  66.398518,  79.72636 ,  84.925162,
E               87.696623])
E        DESIRED: array([-64.240724, -68.696623, -65.925162, -60.72636 , 
-47.398518,
E                9.5     ,  66.398518,  79.72636 ,  84.925162,  87.696623,
E               83.240724])

pyresample/test/test_geometry/test_area_boundary.py:207: AssertionError
_ 
TestGeostationaryTools.test_get_geostationary_bbox_works_with_truncated_area_proj_coords[AreaDefinition]
 _

self = <pyresample.test.test_geometry.test_area_boundary.TestGeostationaryTools 
object at 0x7f13430d2360>
truncated_geos_area = Area ID: 
Description: 
Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '9.5', 'no_defs': 
'None', 'proj': 'geos...0'}
Number of columns: 1392
Number of rows: 3712
Area extent: (5567248.0742, 5570248.4773, -5570248.4773, 1393687.2705)

    def test_get_geostationary_bbox_works_with_truncated_area_proj_coords(self, 
truncated_geos_area):
        """Ensure the geostationary bbox works when truncated."""
        x, y = 
get_geostationary_bounding_box_in_proj_coords(truncated_geos_area, 20)
    
        expected_x = np.array(
            [-5209128.302753595, -5164828.965702432, -4393465.934674804, 
-3192039.8468840676, -1678154.6586309497,
             3.325297262895822e-10, 1678154.6586309501, 3192039.846884068, 
4393465.934674805, 5164828.965702432,
             5209128.302753594])
        expected_y = np.array(
            [1393687.2705, 1672427.7900638399, 3181146.6955466354, 
4378472.798117005, 5147203.47659387,
             5412090.016106332, 5147203.476593869, 4378472.798117005, 
3181146.695546635, 1672427.7900638392,
             1393687.2705])
    
>       np.testing.assert_allclose(x, expected_x)
E       AssertionError: 
E       Not equal to tolerance rtol=1e-07, atol=0
E       
E       Mismatched elements: 11 / 11 (100%)
E       First 5 mismatches are at indices:
E        [0]: 5209128.302753594 (ACTUAL), -5209128.302753595 (DESIRED)
E        [1]: -5209128.302753595 (ACTUAL), -5164828.965702432 (DESIRED)
E        [2]: -5164828.965702432 (ACTUAL), -4393465.934674804 (DESIRED)
E        [3]: -4393465.934674804 (ACTUAL), -3192039.8468840676 (DESIRED)
E        [4]: -3192039.8468840676 (ACTUAL), -1678154.6586309497 (DESIRED)
E       Max absolute difference among violations: 10418256.60550719
E       Max relative difference among violations: 5.0466305e+15
E        ACTUAL: array([ 5.209128e+06, -5.209128e+06, -5.164829e+06, 
-4.393466e+06,
E              -3.192040e+06, -1.678155e+06,  3.325297e-10,  1.678155e+06,
E               3.192040e+06,  4.393466e+06,  5.164829e+06])
E        DESIRED: array([-5.209128e+06, -5.164829e+06, -4.393466e+06, 
-3.192040e+06,
E              -1.678155e+06,  3.325297e-10,  1.678155e+06,  3.192040e+06,
E               4.393466e+06,  5.164829e+06,  5.209128e+06])

pyresample/test/test_geometry/test_area_boundary.py:223: AssertionError
_______ TestBoundary.test_geostationary_projection[LegacyAreaDefinition] _______

self = <pyresample.test.test_geometry.test_area_boundary.TestBoundary object at 
0x7f13487f4710>
geos_fd_area = Area ID: test_area
Description: 
Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '0', 'no_defs': 'None', 
'proj'...'0', 'y_0': '0'}
Number of columns: 100
Number of rows: 100
Area extent: (-5500000.0, -5500000.0, 5500000.0, 5500000.0)

    def test_geostationary_projection(self, geos_fd_area):
        """Test boundary for geostationary projection."""
        areadef = geos_fd_area
    
        # Check default boundary shape
        default_n_vertices = 50
        boundary = areadef.boundary(vertices_per_side=None)
        assert boundary.vertices.shape == (default_n_vertices, 2)
    
        # Check minimum boundary vertices
        n_vertices = 3
        minimum_n_vertices = 4
        boundary = areadef.boundary(vertices_per_side=n_vertices)
        assert boundary.vertices.shape == (minimum_n_vertices, 2)
    
        # Check odd vertices_per_side number
        # - Rounded to the sequent even number (to construct the sides)
        n_odd_vertices = 5
        boundary = areadef.boundary(vertices_per_side=n_odd_vertices)
        assert boundary.vertices.shape == (n_odd_vertices + 1, 2)
    
        # Check boundary vertices
        n_vertices = 10
        boundary = areadef.boundary(vertices_per_side=n_vertices, 
force_clockwise=False)
    
        # Check boundary vertices is in correct order
        expected_vertices = np.array([[-7.54251621e+01, 3.53432890e+01],
                                      [-5.68985178e+01, 6.90053314e+01],
                                      [5.68985178e+01, 6.90053314e+01],
                                      [7.54251621e+01, 3.53432890e+01],
                                      [7.92337283e+01, -0.00000000e+00],
                                      [7.54251621e+01, -3.53432890e+01],
                                      [5.68985178e+01, -6.90053314e+01],
                                      [-5.68985178e+01, -6.90053314e+01],
                                      [-7.54251621e+01, -3.53432890e+01],
                                      [-7.92337283e+01, 6.94302533e-15]])
>       np.testing.assert_allclose(expected_vertices, boundary.vertices)
E       AssertionError: 
E       Not equal to tolerance rtol=1e-07, atol=0
E       
E       Mismatched elements: 18 / 20 (90%)
E       First 5 mismatches are at indices:
E        [0, 0]: -75.4251621 (ACTUAL), -79.2337283163657 (DESIRED)
E        [0, 1]: 35.343289 (ACTUAL), 6.94302533272623e-15 (DESIRED)
E        [1, 0]: -56.8985178 (ACTUAL), -75.42516214783112 (DESIRED)
E        [1, 1]: 69.0053314 (ACTUAL), 35.343288971854214 (DESIRED)
E        [2, 0]: 56.8985178 (ACTUAL), -56.89851775032484 (DESIRED)
E       Max absolute difference among violations: 113.79703555
E       Max relative difference among violations: 5.09047386e+15
E        ACTUAL: array([[-7.542516e+01,  3.534329e+01],
E              [-5.689852e+01,  6.900533e+01],
E              [ 5.689852e+01,  6.900533e+01],...
E        DESIRED: array([[-7.923373e+01,  6.943025e-15],
E              [-7.542516e+01,  3.534329e+01],
E              [-5.689852e+01,  6.900533e+01],...

pyresample/test/test_geometry/test_area_boundary.py:106: AssertionError
_ 
TestGeostationaryTools.test_get_geostationary_bbox_works_with_truncated_area[LegacyAreaDefinition]
 _

self = <pyresample.test.test_geometry.test_area_boundary.TestGeostationaryTools 
object at 0x7f13432c6d70>
truncated_geos_area = Area ID: test_area
Description: 
Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '9.5', 'no_defs': 
'None', 'pro...0'}
Number of columns: 1392
Number of rows: 3712
Area extent: (5567248.0742, 5570248.4773, -5570248.4773, 1393687.2705)

    def test_get_geostationary_bbox_works_with_truncated_area(self, 
truncated_geos_area):
        """Ensure the geostationary bbox works when truncated."""
        lon, lat = 
get_geostationary_bounding_box_in_lonlats(truncated_geos_area, 20)
    
        expected_lon = np.array(
            [-64.24072434653284, -68.69662326361153, -65.92516214783112, 
-60.726360278290336,
             -47.39851775032484, 9.500000000000018, 66.39851775032487, 
79.72636027829033,
             84.92516214783113, 87.69662326361151, 83.24072434653286])
        expected_lat = np.array(
            [14.554922655532085, 17.768795771961937, 35.34328897185421, 
52.597860701318254, 69.00533141646078,
             79.1481121862375, 69.00533141646076, 52.597860701318254, 
35.34328897185421, 17.768795771961933,
             14.554922655532085])
>       np.testing.assert_allclose(lon, expected_lon)
E       AssertionError: 
E       Not equal to tolerance rtol=1e-07, atol=0
E       
E       Mismatched elements: 11 / 11 (100%)
E       First 5 mismatches are at indices:
E        [0]: 83.24072434653286 (ACTUAL), -64.24072434653284 (DESIRED)
E        [1]: -64.24072434653284 (ACTUAL), -68.69662326361153 (DESIRED)
E        [2]: -68.69662326361153 (ACTUAL), -65.92516214783112 (DESIRED)
E        [3]: -65.92516214783112 (ACTUAL), -60.726360278290336 (DESIRED)
E        [4]: -60.726360278290336 (ACTUAL), -47.39851775032484 (DESIRED)
E       Max absolute difference among violations: 147.48144869
E       Max relative difference among violations: 5.98931766
E        ACTUAL: array([ 83.240724, -64.240724, -68.696623, -65.925162, 
-60.72636 ,
E              -47.398518,   9.5     ,  66.398518,  79.72636 ,  84.925162,
E               87.696623])
E        DESIRED: array([-64.240724, -68.696623, -65.925162, -60.72636 , 
-47.398518,
E                9.5     ,  66.398518,  79.72636 ,  84.925162,  87.696623,
E               83.240724])

pyresample/test/test_geometry/test_area_boundary.py:207: AssertionError
_ 
TestGeostationaryTools.test_get_geostationary_bbox_works_with_truncated_area_proj_coords[LegacyAreaDefinition]
 _

self = <pyresample.test.test_geometry.test_area_boundary.TestGeostationaryTools 
object at 0x7f13487f4830>
truncated_geos_area = Area ID: test_area
Description: 
Projection: {'a': '6378169', 'h': '35785831', 'lon_0': '9.5', 'no_defs': 
'None', 'pro...0'}
Number of columns: 1392
Number of rows: 3712
Area extent: (5567248.0742, 5570248.4773, -5570248.4773, 1393687.2705)

    def test_get_geostationary_bbox_works_with_truncated_area_proj_coords(self, 
truncated_geos_area):
        """Ensure the geostationary bbox works when truncated."""
        x, y = 
get_geostationary_bounding_box_in_proj_coords(truncated_geos_area, 20)
    
        expected_x = np.array(
            [-5209128.302753595, -5164828.965702432, -4393465.934674804, 
-3192039.8468840676, -1678154.6586309497,
             3.325297262895822e-10, 1678154.6586309501, 3192039.846884068, 
4393465.934674805, 5164828.965702432,
             5209128.302753594])
        expected_y = np.array(
            [1393687.2705, 1672427.7900638399, 3181146.6955466354, 
4378472.798117005, 5147203.47659387,
             5412090.016106332, 5147203.476593869, 4378472.798117005, 
3181146.695546635, 1672427.7900638392,
             1393687.2705])
    
>       np.testing.assert_allclose(x, expected_x)
E       AssertionError: 
E       Not equal to tolerance rtol=1e-07, atol=0
E       
E       Mismatched elements: 11 / 11 (100%)
E       First 5 mismatches are at indices:
E        [0]: 5209128.302753594 (ACTUAL), -5209128.302753595 (DESIRED)
E        [1]: -5209128.302753595 (ACTUAL), -5164828.965702432 (DESIRED)
E        [2]: -5164828.965702432 (ACTUAL), -4393465.934674804 (DESIRED)
E        [3]: -4393465.934674804 (ACTUAL), -3192039.8468840676 (DESIRED)
E        [4]: -3192039.8468840676 (ACTUAL), -1678154.6586309497 (DESIRED)
E       Max absolute difference among violations: 10418256.60550719
E       Max relative difference among violations: 5.0466305e+15
E        ACTUAL: array([ 5.209128e+06, -5.209128e+06, -5.164829e+06, 
-4.393466e+06,
E              -3.192040e+06, -1.678155e+06,  3.325297e-10,  1.678155e+06,
E               3.192040e+06,  4.393466e+06,  5.164829e+06])
E        DESIRED: array([-5.209128e+06, -5.164829e+06, -4.393466e+06, 
-3.192040e+06,
E              -1.678155e+06,  3.325297e-10,  1.678155e+06,  3.192040e+06,
E               4.393466e+06,  5.164829e+06,  5.209128e+06])

pyresample/test/test_geometry/test_area_boundary.py:223: AssertionError
______________ TestGeostationaryTools.test_get_geostationary_bbox ______________

self = <pyresample.test.test_geometry.test_area_boundary.TestGeostationaryTools 
object at 0x7f13487a27b0>

    def test_get_geostationary_bbox(self):
        """Get the geostationary bbox."""
        geos_area = MagicMock()
        lon_0 = 0
        proj_dict = {'a': 6378169.00,
                     'b': 6356583.80,
                     'h': 35785831.00,
                     'lon_0': lon_0,
                     'proj': 'geos'}
        geos_area.crs = CRS(proj_dict)
        geos_area.area_extent = [-5500000., -5500000., 5500000., 5500000.]
    
        lon, lat = get_geostationary_bounding_box_in_lonlats(geos_area, 20)
        expected_lon = np.array([-78.19662326, -75.42516215, -70.22636028,
                                 -56.89851775, 0., 56.89851775, 70.22636028,
                                 75.42516215, 78.19662326, 79.23372832, 
78.19662326,
                                 75.42516215, 70.22636028, 56.89851775, 0.,
                                 -56.89851775, -70.22636028, -75.42516215, 
-78.19662326, -79.23372832, ])
        expected_lat = np.array([17.76879577, 35.34328897, 52.5978607,
                                 69.00533142, 79.14811219, 69.00533142, 
52.5978607,
                                 35.34328897, 17.76879577, -0., -17.76879577,
                                 -35.34328897, -52.5978607, -69.00533142, 
-79.14811219,
                                 -69.00533142, -52.5978607, -35.34328897, 
-17.76879577, 0.])
    
>       np.testing.assert_allclose(lon, expected_lon, atol=1e-07)
E       AssertionError: 
E       Not equal to tolerance rtol=1e-07, atol=1e-07
E       
E       Mismatched elements: 20 / 20 (100%)
E       First 5 mismatches are at indices:
E        [0]: -79.2337283163657 (ACTUAL), -78.19662326 (DESIRED)
E        [1]: -78.19662326361153 (ACTUAL), -75.42516215 (DESIRED)
E        [2]: -75.42516214783112 (ACTUAL), -70.22636028 (DESIRED)
E        [3]: -70.22636027829033 (ACTUAL), -56.89851775 (DESIRED)
E        [4]: -56.89851775032484 (ACTUAL), 0.0 (DESIRED)
E       Max absolute difference among violations: 56.89851775
E       Max relative difference among violations: 1.
E        ACTUAL: array([-7.923373e+01, -7.819662e+01, -7.542516e+01, 
-7.022636e+01,
E              -5.689852e+01,  1.810069e-14,  5.689852e+01,  7.022636e+01,
E               7.542516e+01,  7.819662e+01,  7.923373e+01,  7.819662e+01,...
E        DESIRED: array([-78.196623, -75.425162, -70.22636 , -56.898518,   0.   
   ,
E               56.898518,  70.22636 ,  75.425162,  78.196623,  79.233728,
E               78.196623,  75.425162,  70.22636 ,  56.898518,   0.      ,
E              -56.898518, -70.22636 , -75.425162, -78.196623, -79.233728])

pyresample/test/test_geometry/test_area_boundary.py:263: AssertionError

https://buildd.debian.org/status/fetch.php?pkg=pyresample&arch=amd64&ver=1.35.0-3%2Bb1&stamp=1788394240&raw=0

--- End Message ---
--- Begin Message ---
Source: pyresample
Source-Version: 1.35.0-4
Done: Antonio Valentino <[email protected]>

We believe that the bug you reported is fixed in the latest version of
pyresample, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Antonio Valentino <[email protected]> (supplier of updated 
pyresample package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Wed, 09 Sep 2026 06:06:47 +0000
Source: pyresample
Architecture: source
Version: 1.35.0-4
Distribution: unstable
Urgency: medium
Maintainer: Debian GIS Project <[email protected]>
Changed-By: Antonio Valentino <[email protected]>
Closes: 1146573
Changes:
 pyresample (1.35.0-4) unstable; urgency=medium
 .
   [ Bas Couwenberg ]
   * Add patch by Maximiliano Curia to fix FTBFS with GEOS 3.15.
     (closes: #1146573)
Checksums-Sha1:
 765d98cd1d6b4bcb903b8b451c6ee2358ce466c0 3351 pyresample_1.35.0-4.dsc
 03ddc658b2a35415bebdb2f272fd02ea9846e527 13976 
pyresample_1.35.0-4.debian.tar.xz
 2f5e9866cf1032095782ddce3dc0cb752bb05b93 14137 
pyresample_1.35.0-4_source.buildinfo
Checksums-Sha256:
 2da189033931e6a357a6aabf95d673192e0107e89335c1fdec1bc5019b65b325 3351 
pyresample_1.35.0-4.dsc
 96cc5af5fc081ab517a739390b4d337ccc76e382c56511be50a97725363aa846 13976 
pyresample_1.35.0-4.debian.tar.xz
 8abad2aaa27092952575946bd1a5ca7f327373ff2a03626b8a8c9c127a2fc031 14137 
pyresample_1.35.0-4_source.buildinfo
Files:
 fe0bd581b508a075f45b97e96c0d43d4 3351 python optional pyresample_1.35.0-4.dsc
 147350879469f49a4faa16a6e83cb6b5 13976 python optional 
pyresample_1.35.0-4.debian.tar.xz
 a70bc1203f4065d59e57284b2362d835 14137 python optional 
pyresample_1.35.0-4_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQJRBAEBCgA7FiEEO3DyCaX/1okDxHLF6/SKslePmBIFAmqg998dHGFudG9uaW8u
dmFsZW50aW5vQHRpc2NhbGkuaXQACgkQ6/SKslePmBLfLQ//dDr5l7JdlBWSttMM
5o4wvCnnlgrPKGdKsWHRlCjdtOELp9uxMmJDQI53OJQb1ASMrVrJeP36Ydi5jWR+
joJ4UIokZ0AQOEjGdDx/0zmieo6RhLDkZAbeMQSRO5n+jffo6aMcnuv3no8j3BFd
MEN3E2RoKc39G2KGBsCFwewO9dmbRAdNslyLW/+Zk0YbCWdnz4d1j557rEs4FEaN
JREAaoQEfhuSH9WJnVgNhUNYR1KjnLR46JUZ1+wgNJMuVLmt5dWLOw/h1lW4ito2
JF/RPbVlqQnZSoX+RT/FUD4K/WczdDKSflU9p60kpIa+BHXxnWQi8YtXRry8Wpc4
fanWuI42wNyxJiaw7gxxlDsA0t+AimD6eCggmApM59jXaRfTUwq8cNLDpqSx7go8
R1YL8BreMoYrA6qMVIQtbEYyQAu9IePuIJdPkuU7UAD4JUbXUzkT15PwMa/MSrSy
fu/6/PlToRtRsqXzu63953LROgXM3djXFD4zeQcdWZaVDgz3XbqeHx0XEEqiBfrC
bOToNPDPGM762lgXxfc2vwF5aAVoH03TtWd7edN27GY4GeXw6zB4BfVeo/+A7zd0
hbOVhF/QqQAV2R7dRmUSU21cHD1UTFBxDn6lCDyE6L2dcwQgt+z1qnlve5QQZp8z
ikzuyyLdQqpjVo/n1N4dIKY+/m4=
=hVXA
-----END PGP SIGNATURE-----

Attachment: pgps8qv61O1cS.pgp
Description: PGP signature


--- End Message ---
_______________________________________________
Pkg-grass-devel mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-grass-devel

Reply via email to