From 0f558761aa2dee1017b4751e4017205e015a9560 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 29 Jun 2022 12:04:12 +0100 Subject: gentoo resync : 29.12.2022 --- dev-util/geany-plugins/Manifest | 5 +- .../files/geany-plugins-1.37_use-stdbool.patch | 39 ------- .../geany-plugins/geany-plugins-1.37-r101.ebuild | 126 --------------------- .../geany-plugins/geany-plugins-1.38-r1.ebuild | 2 +- 4 files changed, 2 insertions(+), 170 deletions(-) delete mode 100644 dev-util/geany-plugins/files/geany-plugins-1.37_use-stdbool.patch delete mode 100644 dev-util/geany-plugins/geany-plugins-1.37-r101.ebuild (limited to 'dev-util/geany-plugins') diff --git a/dev-util/geany-plugins/Manifest b/dev-util/geany-plugins/Manifest index ca406619002f..49f9a946b80b 100644 --- a/dev-util/geany-plugins/Manifest +++ b/dev-util/geany-plugins/Manifest @@ -1,6 +1,3 @@ -AUX geany-plugins-1.37_use-stdbool.patch 1392 BLAKE2B ff3e64bb921b01cd35943d9fcb0a860d65ac71eb70298456c36c84713e71431838cb05823886faaa1d93050b759090625513dd263187649b89120cc3217a202d SHA512 9fa5960d9eb6418de7acb8efe94f9148deae1cb72864c149abc4ae1b22e23f53bd6905f72a901e052f33a445d31d8c5c0cd3dd8efe535ee58910585e759b0dbd -DIST geany-plugins-1.37.tar.gz 4711239 BLAKE2B 7f4fd121f6f0784aecf2dcc04d208c89e502b23debcbc40889f93c1421e414c33c8634376cfe01e91c370f70818d33b373b88698f5cb0ee23dff5edee9d781cf SHA512 47f8d7170593114c773067a8132c724471cbf881582a0a739da578ca42533783d8ecbccb04e039f2990ceed440bbd2d94e4be4a28e336c7f74b8e11a15ba4ce9 DIST geany-plugins-1.38.tar.gz 4783970 BLAKE2B 386a05d7136183799059ef6d73b28a0d67d738939b0dc57649ac68f1049104568fe7c8453ebf2144277f60ee0834564b19bf4e756168864f1551962ba2411c14 SHA512 82d04331e23c5d81765b11e081a960a7a17172184cabe94efd2ddb37ac94668349b036e6083f77c867ac650fa7b251ba3970ae26b562b4568d6e313652763339 -EBUILD geany-plugins-1.37-r101.ebuild 2958 BLAKE2B 3603524165c8758bfd9b2a5812fe8a3835ceb77490638c712ba8ac91fdb71f052207024aacfdb889847c5a4e85b4e225d3badede012e2e65c29c3c5b24ebfd38 SHA512 19f06e58c5587a16809ad2557b7a292412e3adee3dbbfc16173545520ae3b7f07e1debdb1eb495b5ac5d4ae3254460956f575c3549402e8487f33274ae2b10db -EBUILD geany-plugins-1.38-r1.ebuild 2915 BLAKE2B 1981ccbe9ee07e5a2569fbe4193f672dfa95ce90793f90b3662bba5985a6c12c3e7bc288a17b8d1e868f1a5a79cd4a518f485b2b01ee29b84059984743644891 SHA512 754918721f18731235d43e4e536858c02353814413f3265f15cb7fc617d11464584a345f6c946c38e2d4bbe473e623a4e608c866a67ad931f8a863f747f380f1 +EBUILD geany-plugins-1.38-r1.ebuild 2910 BLAKE2B 76181571b98ee1e7296a5f2859aea3b0acb51cda51fb729e670ea9c4d3818377b5d9d54d8399a9af866a0451b82fea5198cc13eb9b233682357b64849a14bbbb SHA512 e7f18ef4f0f9ba326050e9ff48aed4bd3a493be4d71ede5e76da1952c870b78c8c56d1d9cb5401b8fdec0cf0cf2248e11e84cb5aee7f32c266dbe24441460f89 MISC metadata.xml 1201 BLAKE2B 4ee72164edb11f331607e02bc93f143214ca497d7ef461e6bb621d1dae99d128bc2243ec712707d63a935969bdacc6309ce4edb5d4f30eda08b2827c8674aa79 SHA512 5180861ae35b043f48125ac03dc6f28864f83186c84b6a3b0111da3b264537553ddb296e960dd2bbb8b7626b8bb842e4ff76931837210d39ab885213608ef51a diff --git a/dev-util/geany-plugins/files/geany-plugins-1.37_use-stdbool.patch b/dev-util/geany-plugins/files/geany-plugins-1.37_use-stdbool.patch deleted file mode 100644 index e4f3990c0015..000000000000 --- a/dev-util/geany-plugins/files/geany-plugins-1.37_use-stdbool.patch +++ /dev/null @@ -1,39 +0,0 @@ -From ad50d3ed2ddfe11cd07954786b96725602fb4ddd Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Alexander=20F=2E=20R=C3=B8dseth?= -Date: Tue, 5 Jan 2021 12:57:27 +0100 -Subject: [PATCH] Use stdbool.h istead of redefining bool - -Redefining bool causes errors when used together with ie. GCC 10.2.0 ---- - pretty-printer/src/PrettyPrinter.h | 5 ++--- - 1 file changed, 2 insertions(+), 3 deletions(-) - -diff --git a/pretty-printer/src/PrettyPrinter.h b/pretty-printer/src/PrettyPrinter.h -index 268986e95..4200db612 100644 ---- a/pretty-printer/src/PrettyPrinter.h -+++ b/pretty-printer/src/PrettyPrinter.h -@@ -29,6 +29,7 @@ - #include - #include - #include -+#include - - #ifdef HAVE_GLIB - #include -@@ -52,15 +53,13 @@ - #define TRUE !(FALSE) - #endif - --typedef unsigned int bool; -- - /*========================================== STRUCTURES =======================================================*/ - - /** - * The PrettyPrintingOptions struct allows the programmer to tell the - * PrettyPrinter how it must format the XML output. - */ --typedef struct -+typedef struct - { - const char* newLineChars; /* char used to generate a new line (generally \r\n) */ - char indentChar; /* char used for indentation */ diff --git a/dev-util/geany-plugins/geany-plugins-1.37-r101.ebuild b/dev-util/geany-plugins/geany-plugins-1.37-r101.ebuild deleted file mode 100644 index 607708251221..000000000000 --- a/dev-util/geany-plugins/geany-plugins-1.37-r101.ebuild +++ /dev/null @@ -1,126 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -LUA_COMPAT=( lua5-1 ) - -inherit lua-single - -DESCRIPTION="A collection of different plugins for Geany" -HOMEPAGE="https://plugins.geany.org" -SRC_URI="https://plugins.geany.org/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 arm ppc ppc64 ~sparc x86" - -IUSE="ctags debugger enchant git gpg gtkspell lua markdown nls pretty-printer scope soup workbench" -REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )" - -DEPEND=" - dev-libs/glib:2 - >=dev-util/geany-1.37[-gtk2(-)] - x11-libs/gtk+:3 - ctags? ( dev-util/ctags ) - debugger? ( - x11-libs/vte:2.91 - ) - enchant? ( app-text/enchant:= ) - git? ( dev-libs/libgit2:= ) - gpg? ( app-crypt/gpgme:= ) - gtkspell? ( app-text/gtkspell:3= ) - lua? ( ${LUA_DEPS} ) - markdown? ( - app-text/discount - net-libs/webkit-gtk:4 - ) - pretty-printer? ( dev-libs/libxml2:2 ) - scope? ( x11-libs/vte:2.91 ) - soup? ( net-libs/libsoup:2.4 ) - workbench? ( dev-libs/libgit2:= ) -" -RDEPEND="${DEPEND} - scope? ( sys-devel/gdb ) -" -BDEPEND="virtual/pkgconfig - nls? ( sys-devel/gettext ) -" - -PATCHES=( "${FILESDIR}"/${P}_use-stdbool.patch ) - -pkg_setup() { - use lua && lua-single_pkg_setup -} - -src_configure() { - local myeconfargs=( - --disable-cppcheck - --disable-extra-c-warnings - $(use_enable nls) - --enable-utilslib - # Plugins - --enable-addons - --enable-autoclose - --enable-automark - --enable-codenav - --enable-commander - --enable-defineformat - --enable-geanyextrasel - --enable-geanyinsertnum - --enable-geanymacro - --enable-geanyminiscript - --enable-geanynumberedbookmarks - --enable-geanyprj - --enable-geanyvc $(use_enable gtkspell) - --enable-keyrecord - --enable-latex - --enable-lineoperations - --enable-lipsum - --enable-overview - --enable-pairtaghighlighter - --enable-pohelper - --enable-projectorganizer - --enable-sendmail - --enable-shiftcolumn - --enable-tableconvert - --enable-treebrowser - --enable-vimode - --enable-xmlsnippets - $(use_enable debugger) - $(use_enable ctags geanyctags) - $(use_enable lua geanylua) - $(use_enable gpg geanypg) - $(use_enable soup geniuspaste) - $(use_enable git gitchangebar) - $(use_enable markdown) --disable-peg-markdown # using app-text/discount instead - $(use_enable pretty-printer) - $(use_enable scope) - $(use_enable enchant spellcheck) - # Having updatechecker… when you’re using a package manager? - $(use_enable soup updatechecker) - $(use_enable workbench) - # GeanyGenDoc requires ctpl which isn’t yet in portage - --disable-geanygendoc - # Require obsolete and vulnerable webkit-gtk versions - --disable-devhelp - --disable-webhelper - # GTK 2 only - --disable-geanydoc - --disable-geanypy - --disable-multiterm - ) - - econf "${myeconfargs[@]}" -} - -src_install() { - default - - find "${D}" -name '*.la' -delete || die - - # make installs all translations if LINGUAS is empty - if [[ -z "${LINGUAS-x}" ]]; then - rm -r "${ED}/usr/share/locale/" || die - fi -} diff --git a/dev-util/geany-plugins/geany-plugins-1.38-r1.ebuild b/dev-util/geany-plugins/geany-plugins-1.38-r1.ebuild index 0e369c95bfdc..75c0519d993a 100644 --- a/dev-util/geany-plugins/geany-plugins-1.38-r1.ebuild +++ b/dev-util/geany-plugins/geany-plugins-1.38-r1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://plugins.geany.org/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="amd64 arm ppc ppc64 ~sparc x86" IUSE="ctags debugger enchant git gpg gtkspell lua markdown nls pretty-printer scope soup workbench" REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )" -- cgit v1.2.3