Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Leap:16.0:Staging:adi:37
nautilus-dropbox
98.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 98.patch of Package nautilus-dropbox
From 7663ee00906b1adbde980c96b661c6b79478efa4 Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger <dimstar@opensuse.org> Date: Thu, 18 Feb 2021 18:55:51 +0100 Subject: [PATCH] build: handle (in some way) the new GNOME versioning scheme With GNOME switching from odd/even versioning for unsstable/stable branches to 40.alpha, 40.beta, we need to trick the versioning to our liking. In case NAUTILUS_VERSION_MINOR contains letters, we reset it to 0. This means we treat 40.alpha as 40.0 (as if it was the final release of the 40 series) Fixes issue#97 --- configure.ac | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure.ac b/configure.ac index d3f75ee..025289c 100644 --- a/configure.ac +++ b/configure.ac @@ -97,6 +97,11 @@ NAUTILUS_VERSION=`$PKG_CONFIG --modversion libnautilus-extension` if test -n "$NAUTILUS_VERSION"; then NAUTILUS_VERSION_MAJOR=`echo -n $NAUTILUS_VERSION | cut -d . -f 1` NAUTILUS_VERSION_MINOR=`echo -n $NAUTILUS_VERSION | cut -d . -f 2` + case "$NAUTILUS_VERSION_MINOR" in + *[[a-zA-Z]]* ) + NAUTILUS_VERSION_MINOR=0 + ;; + esac NAUTILUS_VERSION_MICRO=`echo -n $NAUTILUS_VERSION | cut -d . -f 3` fi
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor