mirror of OpenBSD xenocara tree github.com/openbsd/xenocara
openbsd
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update xbitmaps to version 1.1.3 - no actual changes

matthieu 28b6ffc1 f20d5d56

+87 -8
+60 -1
data/bitmaps/ChangeLog
··· 1 + commit aed8d7ced841f9c5af757bf24e5488828d5c77e6 2 + Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3 + Date: Thu Feb 23 09:04:47 2023 -0800 4 + 5 + xbitmaps 1.1.3 6 + 7 + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8 + 9 + commit 3245526ace9e0525b7b6c77b60446673c178a2f6 10 + Author: Alan Coopersmith <alan.coopersmith@oracle.com> 11 + Date: Wed Feb 15 12:47:22 2023 -0800 12 + 13 + Switch to XORG_DEFAULT_NOCODE_OPTIONS 14 + 15 + Stop running all sorts of compiler tests we don't need since there 16 + is no code in this module to compile. Requires xorg-macros 1.20. 17 + 18 + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 19 + 20 + commit 99145beca020d2d5dac8d27ed18013b2f57727ec 21 + Author: Alan Coopersmith <alan.coopersmith@oracle.com> 22 + Date: Thu Jul 28 17:30:21 2022 -0700 23 + 24 + gitlab CI: stop requiring Signed-off-by in commits 25 + 26 + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 27 + 28 + commit 4b773145753cf1f2069fee9c9f505ded1abadb6a 29 + Author: Alan Coopersmith <alan.coopersmith@oracle.com> 30 + Date: Tue Dec 7 16:51:26 2021 -0800 31 + 32 + Build xz tarballs instead of bzip2 33 + 34 + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 35 + 36 + commit f9a45fa5bdeffcdf6e32d556abb74a9b39227961 37 + Author: Alan Coopersmith <alan.coopersmith@oracle.com> 38 + Date: Thu Dec 2 17:30:19 2021 -0800 39 + 40 + gitlab CI: add a basic build test 41 + 42 + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 43 + 44 + commit 76bb0405b2b291204e5dacc71fa8dc049464928f 45 + Author: Alan Coopersmith <alan.coopersmith@oracle.com> 46 + Date: Sun Nov 25 12:40:34 2018 -0800 47 + 48 + Update configure.ac bug URL for gitlab migration 49 + 50 + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 51 + 52 + commit 089dbde684d6b9a109ca18e865edaa1952f16dfb 53 + Author: Alan Coopersmith <alan.coopersmith@oracle.com> 54 + Date: Fri Nov 16 23:36:02 2018 -0800 55 + 56 + Update README for gitlab migration 57 + 58 + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 59 + 1 60 commit 61eebdfde170841ae933cf65ba27346fbf2f8018 2 61 Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3 62 Date: Fri Mar 9 22:36:07 2018 -0800 ··· 309 368 - Update modular Xorg version 310 369 311 370 commit e064819df8ea9f09c925772056aa441cd36d7aab 312 - Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 371 + Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 313 372 Date: Fri Jul 15 16:43:19 2005 +0000 314 373 315 374 Build system for bitmaps
+2
data/bitmaps/Makefile.am
··· 88 88 $(CHANGELOG_CMD) 89 89 90 90 dist-hook: ChangeLog INSTALL 91 + 92 + EXTRA_DIST = README.md
+18
data/bitmaps/README.md
··· 1 + This package contains bitmaps commonly used in X.Org applications. 2 + The bitmaps are in the X BitMap (XBM) format. 3 + 4 + All questions regarding this software should be directed at the 5 + Xorg mailing list: 6 + 7 + https://lists.x.org/mailman/listinfo/xorg 8 + 9 + The primary development code repository can be found at: 10 + 11 + https://gitlab.freedesktop.org/xorg/data/bitmaps 12 + 13 + Please submit bug reports and requests to merge patches there. 14 + 15 + For patch submission instructions, see: 16 + 17 + https://www.x.org/wiki/Development/Documentation/SubmittingPatches 18 +
+7 -7
data/bitmaps/configure.ac
··· 2 2 3 3 # Initialize Autoconf 4 4 AC_PREREQ([2.60]) 5 - AC_INIT([xbitmaps], [1.1.2], 6 - [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [xbitmaps]) 5 + AC_INIT([xbitmaps], [1.1.3], 6 + [https://gitlab.freedesktop.org/xorg/data/bitmaps/-/issues], [xbitmaps]) 7 7 AC_CONFIG_SRCDIR([Makefile.am]) 8 8 AC_CONFIG_HEADERS([config.h]) 9 9 10 10 # Initialize Automake 11 - AM_INIT_AUTOMAKE([foreign dist-bzip2]) 11 + AM_INIT_AUTOMAKE([foreign dist-xz]) 12 12 13 - # Require xorg-macros 1.3 or later: XORG_DEFAULT_OPTIONS 13 + # Require xorg-macros 1.20 or later: XORG_DEFAULT_NOCODE_OPTIONS 14 14 m4_ifndef([XORG_MACROS_VERSION], 15 - [m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])]) 16 - XORG_MACROS_VERSION(1.3) 17 - XORG_DEFAULT_OPTIONS 15 + [m4_fatal([must install xorg-macros 1.20 or later before running autoconf/autogen])]) 16 + XORG_MACROS_VERSION(1.20) 17 + XORG_DEFAULT_NOCODE_OPTIONS 18 18 19 19 AC_CONFIG_FILES([Makefile 20 20 xbitmaps.pc