debian/changelog | 8 ++++++++ debian/control | 6 +++--- debian/copyright | 2 +- debian/watch | 2 +- src/compat-api.h | 8 ++++++++ 5 files changed, 21 insertions(+), 5 deletions(-)
New commits: commit f4bde6c63a24d8c1b0d569093ac1d4358619cc57 Author: Andreas Boll <andreas.boll....@gmail.com> Date: Fri Nov 18 12:36:10 2016 +0100 Update a bunch of URLs in packaging to https. diff --git a/debian/changelog b/debian/changelog index 650fb2f..dcd289d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ xserver-xorg-video-savage (1:2.3.8-2) UNRELEASED; urgency=medium * Cherry-pick commit de3e180 (Adapt Block/WakeupHandler signature for ABI 23) from upstream master branch. + * Update a bunch of URLs in packaging to https. -- Andreas Boll <andreas.boll....@gmail.com> Fri, 18 Nov 2016 12:23:22 +0100 diff --git a/debian/control b/debian/control index 16512bd..63e92df 100644 --- a/debian/control +++ b/debian/control @@ -22,8 +22,8 @@ Build-Depends: quilt, xutils-dev (>= 1:7.5+4), Standards-Version: 3.9.2 -Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-savage -Vcs-Browser: http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-savage.git +Vcs-Git: https://anonscm.debian.org/git/pkg-xorg/driver/xserver-xorg-video-savage.git +Vcs-Browser: https://anonscm.debian.org/git/pkg-xorg/driver/xserver-xorg-video-savage.git Package: xserver-xorg-video-savage Architecture: any @@ -38,6 +38,6 @@ Description: X.Org X server -- Savage display driver of chipsets. . More information about X.Org can be found at: - <URL:http://www.X.org> + <URL:https://www.X.org> . This package is built from the X.org xf86-video-savage driver module. diff --git a/debian/copyright b/debian/copyright index 4bcafb4..d92f298 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,5 +1,5 @@ This package was downloaded from -http://xorg.freedesktop.org/releases/individual/driver/ +https://xorg.freedesktop.org/releases/individual/driver/ Copyright (C) 1994-2000 The XFree86 Project, Inc. All Rights Reserved. Copyright (c) 2003-2006, X.Org Foundation diff --git a/debian/watch b/debian/watch index bf9394e..02aec3a 100644 --- a/debian/watch +++ b/debian/watch @@ -1,4 +1,4 @@ #git=git://anongit.freedesktop.org/xorg/driver/xf86-video-savage version=3 opts="pgpsigurlmangle=s/$/.sig/" \ -http://xorg.freedesktop.org/releases/individual/driver/ xf86-video-savage-(.*)\.tar\.gz +https://xorg.freedesktop.org/releases/individual/driver/ xf86-video-savage-(.*)\.tar\.gz commit 8380f674a90fa71e44c6708c793ad29513c88935 Author: Andreas Boll <andreas.boll....@gmail.com> Date: Fri Nov 18 12:23:30 2016 +0100 Document the cherry-pick in debian/changelog diff --git a/debian/changelog b/debian/changelog index 4a78e38..650fb2f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +xserver-xorg-video-savage (1:2.3.8-2) UNRELEASED; urgency=medium + + * Cherry-pick commit de3e180 (Adapt Block/WakeupHandler signature for + ABI 23) from upstream master branch. + + -- Andreas Boll <andreas.boll....@gmail.com> Fri, 18 Nov 2016 12:23:22 +0100 + xserver-xorg-video-savage (1:2.3.8-1) unstable; urgency=medium * New upstream release. commit dd25432b9c47ebb9232294507ab41f675bb6beba Author: Adam Jackson <a...@redhat.com> Date: Tue Jul 19 10:03:56 2016 -0400 Adapt Block/WakeupHandler signature for ABI 23 Signed-off-by: Adam Jackson <a...@redhat.com> (cherry picked from commit de3e1803314820968502156703d5bfe3fab24972) diff --git a/src/compat-api.h b/src/compat-api.h index 98ba435..44daea4 100644 --- a/src/compat-api.h +++ b/src/compat-api.h @@ -78,11 +78,19 @@ #define SCREEN_INIT_ARGS_DECL ScreenPtr pScreen, int argc, char **argv +#if ABI_VIDEODRV_VERSION >= SET_ABI_VERSION(23, 0) +#define BLOCKHANDLER_ARGS_DECL ScreenPtr arg, pointer pTimeout +#define BLOCKHANDLER_ARGS arg, pTimeout + +#define WAKEUPHANDLER_ARGS_DECL ScreenPtr arg, unsigned long result +#define WAKEUPHANDLER_ARGS arg, result +#else #define BLOCKHANDLER_ARGS_DECL ScreenPtr arg, pointer pTimeout, pointer pReadmask #define BLOCKHANDLER_ARGS arg, pTimeout, pReadmask #define WAKEUPHANDLER_ARGS_DECL ScreenPtr arg, unsigned long result, pointer read_mask #define WAKEUPHANDLER_ARGS arg, result, read_mask +#endif #define CLOSE_SCREEN_ARGS_DECL ScreenPtr pScreen #define CLOSE_SCREEN_ARGS pScreen