diff options
author | Viorel Munteanu <ceamac@gentoo.org> | 2023-04-10 12:19:19 +0300 |
---|---|---|
committer | Viorel Munteanu <ceamac@gentoo.org> | 2023-04-10 12:19:19 +0300 |
commit | 4a3d3c4e838d37afaed64288e03082be86ee16e5 (patch) | |
tree | 1bd6bfc13c0724687a96d131bf040ebc89e16dd5 /dev-embedded | |
parent | dev-ruby/racc: run rake for a valid Ruby (diff) | |
download | gentoo-4a3d3c4e838d37afaed64288e03082be86ee16e5.tar.gz gentoo-4a3d3c4e838d37afaed64288e03082be86ee16e5.tar.bz2 gentoo-4a3d3c4e838d37afaed64288e03082be86ee16e5.zip |
dev-embedded/gputils: drop 1.5.0
Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
Diffstat (limited to 'dev-embedded')
-rw-r--r-- | dev-embedded/gputils/Manifest | 1 | ||||
-rw-r--r-- | dev-embedded/gputils/files/gputils-1.5.0-respect-flags.patch | 123 | ||||
-rw-r--r-- | dev-embedded/gputils/gputils-1.5.0.ebuild | 42 |
3 files changed, 0 insertions, 166 deletions
diff --git a/dev-embedded/gputils/Manifest b/dev-embedded/gputils/Manifest index 3b4ccf1b585b..007cca7187a7 100644 --- a/dev-embedded/gputils/Manifest +++ b/dev-embedded/gputils/Manifest @@ -1,2 +1 @@ -DIST gputils-1.5.0.tar.gz 13155377 BLAKE2B 68f6ed2ba93f83eaae0573dde5fe8d3a67ec6cf4349832e5edcab70ec35db7d8210f28d46bf3272a7b7f9b52299b1289792b1ca2a75b952e7ea2fc263448c8b9 SHA512 fc74e92ddfe2c9c7ee272a712a411bf01790358c310afc9a802f503902675fa4717410354bf8791f64da45b63f0b1f562b55fdd7127d3989f4295ebe5f80b645 DIST gputils-1.5.2.tar.bz2 7231711 BLAKE2B c52bd75ee408b2ff98f63679b18834e8e41b5aea4f2b4b659860acb8fa4dd3f922aa6307f99ae0fc024a4fc6f56d3be262cd873cf112ebac444d41eeca635d3b SHA512 43ed508d164152bf36e4f27b09656e6e3d58fc174806ad57d6415e6e2726a56381b1323be3acfc635f2a05babade695e9777b0db8b5f4b90da00b9d29e75eddc diff --git a/dev-embedded/gputils/files/gputils-1.5.0-respect-flags.patch b/dev-embedded/gputils/files/gputils-1.5.0-respect-flags.patch deleted file mode 100644 index 01d13dedab0f..000000000000 --- a/dev-embedded/gputils/files/gputils-1.5.0-respect-flags.patch +++ /dev/null @@ -1,123 +0,0 @@ -https://sourceforge.net/p/gputils/code/1288 -https://bugs.gentoo.org/722648 - ---- a/configure.ac -+++ b/configure.ac -@@ -160,29 +160,41 @@ - AC_CHECK_FUNCS(strndup, , [IBERTYOBJS="$IBERTYOBJS strndup.o"]) - AC_CHECK_FUNCS(strverscmp, , [IBERTYOBJS="$IBERTYOBJS strverscmp.o"]) - --AM_CFLAGS= -+VERSION_MAJOR=`echo $PACKAGE_VERSION | $AWK 'BEGIN {FS="."} {print $1}'` -+VERSION_MINOR=`echo $PACKAGE_VERSION | $AWK 'BEGIN {FS="."} {print $2}'` -+VERSION_MICRO=`echo $PACKAGE_VERSION | $AWK 'BEGIN {FS="."} {print $3}'` -+ -+AC_DEFINE_UNQUOTED(GPUTILS_VERSION_MAJOR, $VERSION_MAJOR, [gputils major version number]) -+AC_DEFINE_UNQUOTED(GPUTILS_VERSION_MINOR, $VERSION_MINOR, [gputils minor version number]) -+AC_DEFINE_UNQUOTED(GPUTILS_VERSION_MICRO, $VERSION_MICRO, [gputils micro version number]) -+AC_DEFINE_UNQUOTED(GPUTILS_VERSION_STR, "$PACKAGE_VERSION", [gputils version string]) -+ -+AM_GPUTILS_SVN_VERSION="\$(shell \$(top_srcdir)/get_cl_revision.sh \$(top_srcdir)/ChangeLog)" -+AM_PACKAGE_SVN_VERSION=`./get_cl_revision.sh ChangeLog` -+ -+AM_CFLAGS="-DGPUTILS_SVN_VERSION=\$(AM_GPUTILS_SVN_VERSION)" - AM_LDFLAGS= - - # Options for the system on which the package will run. - case "${host}" in - *cygwin* ) - if test "x$GCC" = "xyes"; then -- AM_CFLAGS="-Wall -pedantic" -+ AM_CFLAGS="$AM_CFLAGS -Wall -pedantic" - AM_LDFLAGS="-Wl,-warn-common -Wl,-warn-once" - fi - ;; - *darwin* ) - if test "x$CC" = "xclang"; then -- AM_CFLAGS="-Wall -pedantic -Wformat -Wtautological-compare -Wimplicit-function-declaration -Wformat-security" -+ AM_CFLAGS="$AM_CFLAGS -Wall -pedantic -Wformat -Wtautological-compare -Wimplicit-function-declaration -Wformat-security" - fi - ;; - *linux* ) - if test "x$CC" = "xclang"; then -- AM_CFLAGS="-Wall -pedantic -Wformat -Wtautological-compare -Wimplicit-function-declaration -Wformat-security" -+ AM_CFLAGS="$AM_CFLAGS -Wall -pedantic -Wformat -Wtautological-compare -Wimplicit-function-declaration -Wformat-security" - AM_LDFLAGS="-Wl,-warn-common -Wl,-warn-once" - else - if test "x$GCC" = "xyes"; then -- AM_CFLAGS="-Wall -pedantic -Wformat -Wimplicit-function-declaration -Wformat-security" -+ AM_CFLAGS="$AM_CFLAGS -Wall -pedantic -Wformat -Wimplicit-function-declaration -Wformat-security" - AM_LDFLAGS="-Wl,-warn-common -Wl,-warn-once" - fi - fi -@@ -192,33 +204,20 @@ - *-pc-os2_emx | *-pc-os2-emx ) - EXEEXT=".exe" - if test "x$GCC" = "xyes"; then -- AM_CFLAGS="-Zcrtdll" -+ AM_CFLAGS="$AM_CFLAGS -Zcrtdll" - fi - ;; - *sun* ) - # sunos cc needs the -xCC flag for // comments - if test "x$GCC" != "xyes"; then -- AM_CFLAGS="-xCC" -+ AM_CFLAGS="$AM_CFLAGS -xCC" - fi - ;; - esac -- --VERSION_MAJOR=`echo $PACKAGE_VERSION | $AWK 'BEGIN {FS="."} {print $1}'` --VERSION_MINOR=`echo $PACKAGE_VERSION | $AWK 'BEGIN {FS="."} {print $2}'` --VERSION_MICRO=`echo $PACKAGE_VERSION | $AWK 'BEGIN {FS="."} {print $3}'` -- --AC_DEFINE_UNQUOTED(GPUTILS_VERSION_MAJOR, $VERSION_MAJOR, [gputils major version number]) --AC_DEFINE_UNQUOTED(GPUTILS_VERSION_MINOR, $VERSION_MINOR, [gputils minor version number]) --AC_DEFINE_UNQUOTED(GPUTILS_VERSION_MICRO, $VERSION_MICRO, [gputils micro version number]) --AC_DEFINE_UNQUOTED(GPUTILS_VERSION_STR, "$PACKAGE_VERSION", [gputils version string]) -- --AM_GPUTILS_SVN_VERSION="\$(shell \$(top_srcdir)/get_cl_revision.sh \$(top_srcdir)/ChangeLog)" --AM_PACKAGE_SVN_VERSION=`./get_cl_revision.sh ChangeLog` --CFLAGS="-DGPUTILS_SVN_VERSION=\$(AM_GPUTILS_SVN_VERSION)" - - # Host filesystem options. - case "${host}" in -- *mingw* | *-pc-os2_emx | *-pc-os2-emx | *djgpp*) -+ *mingw* | *-pc-os2_emx | *-pc-os2-emx | *djgpp* ) - AC_DEFINE(HAVE_DOS_BASED_FILE_SYSTEM, 1, - [Define if your host uses a DOS based file system.]) - ;; -@@ -231,15 +230,13 @@ - fi - - if test x$enable_gdb_debuginfo = xyes; then -- CFLAGS="$CFLAGS -ggdb" -+ AM_CFLAGS="$AM_CFLAGS -ggdb" - fi - - if test x$enable_gputils_path = xyes; then - AC_DEFINE(USE_DEFAULT_PATHS, 1, - [Define if you want to add default search paths.]) - fi -- --LDFLAGS= - - # Substitute configuration variables. - AC_SUBST(ENABLE_HTML_DOC) -@@ -248,8 +245,6 @@ - AC_SUBST(AM_PACKAGE_SVN_VERSION) - AC_SUBST(AM_CFLAGS) - AC_SUBST(AM_LDFLAGS) --AC_SUBST(CFLAGS) --AC_SUBST(LDFLAGS) - AC_SUBST(GPUTILS_HEADER_PATH) - AC_SUBST(GPUTILS_LKR_PATH) - AC_SUBST(GPUTILS_LIB_PATH) -@@ -301,6 +296,7 @@ - Source directory: $srcdir - Installation prefix: $prefix - C compiler: $CC $AM_CFLAGS $CFLAGS -+ C linker: $CC $AM_LDFLAGS - Location of MPLAB-X: $DEFAULT_MPLABX_PATH - - ]) diff --git a/dev-embedded/gputils/gputils-1.5.0.ebuild b/dev-embedded/gputils/gputils-1.5.0.ebuild deleted file mode 100644 index 508c9285573c..000000000000 --- a/dev-embedded/gputils/gputils-1.5.0.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools toolchain-funcs - -DESCRIPTION="Tools including assembler, linker and librarian for PIC microcontrollers" -HOMEPAGE="https://gputils.sourceforge.io" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86" - -PATCHES=( - "${FILESDIR}"/${P}-respect-flags.patch -) - -src_prepare() { - default - - # Only needed for the flags patch, if a new release ever comes... - eautoreconf -} - -src_configure() { - # bug #369291, bug #818802 - tc-ld-disable-gold - - # Their configure script tries to do funky things with default - # compiler selection. Force our own defaults instead. - tc-export CC - - econf -} - -src_install() { - default - - dodoc doc/gputils.pdf -} |