summaryrefslogtreecommitdiff
path: root/www-misc
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-03-18 18:31:43 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-03-18 18:31:43 +0000
commitcd0d9000770337b445051f1852fe3971ceb7a6e2 (patch)
tree49c82dbb14c2d960e04e7482bdefe6ed2d53a173 /www-misc
parent12c505f7fcc9ddc89e96ed178df05aceec162d92 (diff)
gentoo auto-resync : 18:03:2023 - 18:31:42
Diffstat (limited to 'www-misc')
-rw-r--r--www-misc/Manifest.gzbin2919 -> 2756 bytes
-rw-r--r--www-misc/wsmake/Manifest5
-rw-r--r--www-misc/wsmake/files/wsmake-0.6.4-fix-const-va_list.patch29
-rw-r--r--www-misc/wsmake/files/wsmake-0.6.4-gcc43.patch33
-rw-r--r--www-misc/wsmake/metadata.xml5
-rw-r--r--www-misc/wsmake/wsmake-0.6.4-r1.ebuild44
6 files changed, 0 insertions, 116 deletions
diff --git a/www-misc/Manifest.gz b/www-misc/Manifest.gz
index 64b5eb98f37c..9859f5832007 100644
--- a/www-misc/Manifest.gz
+++ b/www-misc/Manifest.gz
Binary files differ
diff --git a/www-misc/wsmake/Manifest b/www-misc/wsmake/Manifest
deleted file mode 100644
index bdd468789072..000000000000
--- a/www-misc/wsmake/Manifest
+++ /dev/null
@@ -1,5 +0,0 @@
-AUX wsmake-0.6.4-fix-const-va_list.patch 781 BLAKE2B e73ff7c6c7fb2edd44c0d174ac3a738fe4aab3e15622eec5e6e3c3d7eb68a700b733548ab0c1e06f5304c092ba0813915b4ad2836c6b18c63418934b581f05ec SHA512 ceae38c3fc09f8e88d4ba9eb64467df5266b8332b365fe217354bf362343fa074e1e4407303d93de7f82b444a02f79d719dc0173156254501eba9144975f6867
-AUX wsmake-0.6.4-gcc43.patch 771 BLAKE2B 0eb6b683f2a50a3f7e65175fa4de9100109733e924d9a846fdeaaa0f80f8bb50f48f2750f798aa1160db8e0e8f1b188e83f6f214c5419930d62712de52d17817 SHA512 d155fd9b7bfe27bff396c2adaad39b9bcaa876d5a5b7dc77d0bb6932e548a65b088f79c36570036c7a06b1f1ae3d433716e696f57cea1bb74ac4fdb48fb9bee8
-DIST wsmake-0.6.4.tar.bz2 351688 BLAKE2B 4e810b1b5f697bc8a7bbb27a4023ff50f90fbcab5f9bf7890277ebb95d5fbf90cfaad51f181c4a76bd532f802fd4eaf07dbab6757a15ee242f80dbef19ce0b08 SHA512 0f5d125053222c624f9c19f4147f0d97311acb11050e09112ae7b13175ea64d0ba75942c5772e2ffe12d2913cea370ed663d7cb649eef67e0f8379775a3459c4
-EBUILD wsmake-0.6.4-r1.ebuild 833 BLAKE2B 10a8a21cc6c6f4f2f6c78754bb1c5cf2861c971c74b2f7f7486849a96b65c206ed1d597275ae1b8002b7b7d98266f8d2b8644f1c07090365a306424ffe7260c8 SHA512 07e3969de508bda2d687d05ebd12cdd164eaef1c4a45be09d3f7c4a34bfbdc6e60aa09b545ac96cb3b240be05ed15aec9b53fc41d50ab0ca54b77fbcae80473d
-MISC metadata.xml 167 BLAKE2B 868e3b584722eaacf68273db062bb773d8c7e5d7ab2b81ca7e8397643bf7cc106c3a1033594401c99c54f667bb45d6b73f9048fc335580bbd44b4589ad26a832 SHA512 30caadd1496c3b9969136038239a1d8e01f236726b4022c2d7e19ca7575f25f735e556835e581afbf44fbd3e4104c40f2b5ef5fa70118d75c881fdf871962d0a
diff --git a/www-misc/wsmake/files/wsmake-0.6.4-fix-const-va_list.patch b/www-misc/wsmake/files/wsmake-0.6.4-fix-const-va_list.patch
deleted file mode 100644
index 420bbb61b030..000000000000
--- a/www-misc/wsmake/files/wsmake-0.6.4-fix-const-va_list.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- a/libwsmake/wsUtil.cpp
-+++ b/libwsmake/wsUtil.cpp
-@@ -710,13 +710,13 @@
- }
- }
-
--void std::__wsmake_print_it(FILE *out, const char *output, const va_list *ap)
-+void std::__wsmake_print_it(FILE *out, const char *output, va_list *ap)
- {
- if(__wsmake_quiet) return;
-
- vfprintf(out,output,*ap);
- //BV: this does not compile: va_end((void*&)*ap);
-- va_end((char*&)*ap);
-+ va_end(*ap);
- }
-
- #ifdef DEBUG
---- a/libwsmake/wsUtil.h
-+++ b/libwsmake/wsUtil.h
-@@ -77,7 +77,7 @@
- void __wsmake_print_error(const char *, ...);
- void __wsmake_print(const char *, ...);
- void __wsmake_print(int, const char *, ...);
-- void __wsmake_print_it(FILE *, const char *, const va_list *);
-+ void __wsmake_print_it(FILE *, const char *, va_list *);
- }
-
- #endif /* __WSUTIL_H__ */
diff --git a/www-misc/wsmake/files/wsmake-0.6.4-gcc43.patch b/www-misc/wsmake/files/wsmake-0.6.4-gcc43.patch
deleted file mode 100644
index 9028c0695546..000000000000
--- a/www-misc/wsmake/files/wsmake-0.6.4-gcc43.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-https://bugs.gentoo.org/show_bug.cgi?id=251745
-https://sourceforge.net/tracker/index.php?func=detail&aid=2520894&group_id=5982&atid=105982
-
---- a/libwsmake/wsSubTag.cpp
-+++ b/libwsmake/wsSubTag.cpp
-@@ -22,6 +22,7 @@
- ***********************************************************************/
- #include <cstdio>
- #include <cstring>
-+#include <cstdlib>
-
- #include <unistd.h>
- #ifdef HAVE_SYS_WAIT_H
---- a/libwsmake/wsWebPage.cpp
-+++ b/libwsmake/wsWebPage.cpp
-@@ -23,6 +23,7 @@
- #include <cassert>
- #include <cerrno>
- #include <ctime>
-+#include <cstdlib>
-
- #include "wsmake.h"
-
---- a/libwsmake/wsUtil.cpp
-+++ b/libwsmake/wsUtil.cpp
-@@ -28,6 +28,7 @@
- #include <cassert>
- #include <cerrno>
- #include <cstring>
-+#include <cstdlib>
-
- #ifdef HAVE_UTIME_H
- #include <utime.h>
diff --git a/www-misc/wsmake/metadata.xml b/www-misc/wsmake/metadata.xml
deleted file mode 100644
index 85e4ed814fa2..000000000000
--- a/www-misc/wsmake/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>
diff --git a/www-misc/wsmake/wsmake-0.6.4-r1.ebuild b/www-misc/wsmake/wsmake-0.6.4-r1.ebuild
deleted file mode 100644
index a0bf513caf90..000000000000
--- a/www-misc/wsmake/wsmake-0.6.4-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="Website pre-processor features tag substitution and page ordering"
-HOMEPAGE="https://sourceforge.net/projects/wsmake/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2+ Artistic"
-SLOT="0"
-KEYWORDS="~amd64 x86"
-IUSE="examples"
-
-PATCHES=(
- "${FILESDIR}"/${P}-bv.diff
- "${FILESDIR}"/${P}-gcc43.patch # 251745
- "${FILESDIR}"/${P}-fix-const-va_list.patch
-)
-
-src_unpack() {
- default
-
- cd "${S}"/doc || die
- tar -cf examples.tar examples || die
-}
-
-src_configure() {
- tc-export CXX
- default
-}
-
-src_install() {
- default
- dodoc doc/manual.txt
-
- if use examples; then
- rm -r doc/examples/CVS || die
- dodoc -r doc/examples
- docompress -x /usr/share/doc/${PF}/examples
- fi
-}