From: Aaron W. Swenson Date: Sun, 7 Oct 2018 10:17:03 +0000 (-0400) Subject: app-office/gnucash: Cleanup old X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=271f77dca714091958915902161c731e1476ddba;p=gentoo.git app-office/gnucash: Cleanup old Package-Manager: Portage-2.3.49, Repoman-2.3.11 Signed-off-by: Aaron Swenson --- diff --git a/app-office/gnucash/Manifest b/app-office/gnucash/Manifest index 0cd972338cb2..c2508be77204 100644 --- a/app-office/gnucash/Manifest +++ b/app-office/gnucash/Manifest @@ -1,4 +1,3 @@ -DIST gnucash-2.7.4.tar.bz2 13364512 BLAKE2B 0a552efe5a4f024517c054516eb25b51abb2f934e6fc904afd4b0fb48283f9ebb89583b83b0efefba66d014df16c8997c413d05278d4290c44e4fa2278564b61 SHA512 d096ec2a3907dcd09c936f0a49ef6fb5028a17d2e0ade9e68eae7303530480ce19e08c1864efd862d363fda9ef6343260396b794b3c4ac74544baa2628a310eb DIST gnucash-3.2.tar.bz2 13383942 BLAKE2B ce4beb9eab290bbc85c4b3bf68b205a8ebb274056bf10ef1721bce48ec18e4df4b488ce885dc767b4f1e951dabcdc2ba702cb5fe239f249ec50c8d2d1d12a434 SHA512 ef74cbf396096a71316e14500a5b4e57670f9e9c0c5d46f3afe051ccbae2e46a5f14edd8dd805dfb61276b934db286d48ae044160699df82689e2718ed2f7573 DIST gnucash-3.3.tar.bz2 13440713 BLAKE2B a308af90d8a8e50eb732d29c7eadac1fb75b63006da5bbaa9044039c43c1c17976c6b6fdb1706a08a527b75b1300df3a8ed469151370097b0308a173a170e41b SHA512 4bf0369ca9b3c91c98a0d916f0befc7e5675a246559a6a72dba6592b64f56f3cbd1885b0711e44e8d9cca290be742812763691ae2f639ea31ec534e52e17b3f9 DIST gtest-1.8.0.tar.gz 1281617 BLAKE2B ac052b4d0eb0d8ded03a8c7dff05177818627b8a51f2dbc2c162b2ee2a5d1323539e7d0d02236d9ebb799995e018f0171c2fdaeb4de3bb339548265e50de79e6 SHA512 1dbece324473e53a83a60601b02c92c089f5d314761351974e097b2cf4d24af4296f9eb8653b6b03b1e363d9c5f793897acae1f0c7ac40149216035c4d395d9d diff --git a/app-office/gnucash/files/gnucash-2.7.4-double_free.patch b/app-office/gnucash/files/gnucash-2.7.4-double_free.patch deleted file mode 100644 index 9d82e72f96b3..000000000000 --- a/app-office/gnucash/files/gnucash-2.7.4-double_free.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/libgnucash/core-utils/test/test-userdata-dir.c b/libgnucash/core-utils/test/test-userdata-dir.c -index 5a8cd5c50..a702a56aa 100644 ---- a/libgnucash/core-utils/test/test-userdata-dir.c -+++ b/libgnucash/core-utils/test/test-userdata-dir.c -@@ -338,7 +338,6 @@ main(int argc, char **argv) - - /* Clean up the temporaries that were created for the GNC_DATA_HOME test run */ - g_free (home_dir); -- g_free (tmp_dir); - tmp_dir = g_build_filename(gnc_data_home_dir, "data", (gchar *)NULL); - g_rmdir (tmp_dir); - g_free (tmp_dir); diff --git a/app-office/gnucash/files/gnucash-2.7.4-fix-tests-for-32bit-platforms.patch b/app-office/gnucash/files/gnucash-2.7.4-fix-tests-for-32bit-platforms.patch deleted file mode 100644 index ec0e83a80bf5..000000000000 --- a/app-office/gnucash/files/gnucash-2.7.4-fix-tests-for-32bit-platforms.patch +++ /dev/null @@ -1,56 +0,0 @@ -From 3a0d2009741cdf825492020acab7c85867a60589 Mon Sep 17 00:00:00 2001 -From: Thomas Deutschmann -Date: Thu, 22 Feb 2018 12:27:36 +0100 -Subject: [PATCH] tests: Skip tests for dates on 32-bit platforms which cannot - be representated - -Tests "test_IANA_Perth_tz" and "test_IANA_Minsk_tz" are failing on 32-bit -platforms because the earliest timestamp which can be representated on a -32-bit platform is "1901-12-13 20:45:52" but the test ranges start before -that date. - -To be safe, this commit will add code to skip tests before year 1902 on -32-bit platforms. - -Bug: https://bugs.gentoo.org/647596 ---- - libgnucash/engine/test/gtest-gnc-timezone.cpp | 16 ++++++++++++++++ - 1 file changed, 16 insertions(+) - -diff --git a/libgnucash/engine/test/gtest-gnc-timezone.cpp b/libgnucash/engine/test/gtest-gnc-timezone.cpp -index 5c46b2618..298220f6e 100644 ---- a/libgnucash/engine/test/gtest-gnc-timezone.cpp -+++ b/libgnucash/engine/test/gtest-gnc-timezone.cpp -@@ -154,6 +154,14 @@ TEST(gnc_timezone_constructors, test_IANA_Perth_tz) - } - else if (year < 1916) - #else -+ if (year < 1902) -+ { -+ // Earliest timestamp which can be represented on a 32-bit -+ // system is "1901-12-13 20:45:52" -- so skip tests until we -+ // reach a year >1901 to be safe -+ continue; -+ } -+ - if (year < 1916) - #endif - { -@@ -216,6 +224,14 @@ TEST(gnc_timezone_constructors, test_IANA_Minsk_tz) - } - else if (year < 1924) - #else -+ if (year < 1902) -+ { -+ // Earliest timestamp which can be represented on a 32-bit -+ // system is "1901-12-13 20:45:52" -- so skip tests until we -+ // reach a year >1901 to be safe -+ continue; -+ } -+ - if (year < 1924) - #endif - { --- -2.16.2 - diff --git a/app-office/gnucash/gnucash-2.7.4-r1.ebuild b/app-office/gnucash/gnucash-2.7.4-r1.ebuild deleted file mode 100644 index 770723b97a17..000000000000 --- a/app-office/gnucash/gnucash-2.7.4-r1.ebuild +++ /dev/null @@ -1,165 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -# google{test,mock} version -GV="1.8.0" -PYTHON_COMPAT=( python2_7 ) - -inherit cmake-utils gnome2-utils python-single-r1 xdg-utils - -DESCRIPTION="A personal finance manager" -HOMEPAGE="http://www.gnucash.org/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2 - https://github.com/google/googletest/archive/release-${GV}.tar.gz -> gtest-${GV}.tar.gz" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="amd64 ~ppc ~ppc64 x86" - -# Add doc back in for 3.0 and bump app-doc/gnucash-docs -IUSE="aqbanking chipcard debug examples gnome-keyring mysql nls ofx postgres - python quotes -register2 sqlite" -REQUIRED_USE=" - chipcard? ( aqbanking ) - python? ( ${PYTHON_REQUIRED_USE} )" - -# libdbi version requirement for sqlite taken from bug #455134 -# -# dev-libs/boost must always be built with nls enabled. -RDEPEND=" - >=dev-libs/glib-2.40.0:2 - >=dev-libs/libxml2-2.7.0:2 - >=dev-scheme/guile-2.0.0:12=[regex] - >=sys-libs/zlib-1.1.4 - >=x11-libs/gtk+-3.14.0:3 - dev-libs/boost:=[icu,nls] - dev-libs/icu:= - dev-libs/libxslt - gnome-base/dconf - net-libs/webkit-gtk:4= - aqbanking? ( - >=net-libs/aqbanking-5[gtk,ofx?] - sys-libs/gwenhywfar[gtk] - chipcard? ( sys-libs/libchipcard ) - ) - gnome-keyring? ( >=app-crypt/libsecret-0.18 ) - mysql? ( - dev-db/libdbi - dev-db/libdbi-drivers[mysql] - ) - ofx? ( >=dev-libs/libofx-0.9.1 ) - postgres? ( - dev-db/libdbi - dev-db/libdbi-drivers[postgres] - ) - python? ( ${PYTHON_DEPS} ) - quotes? ( - >=dev-perl/Finance-Quote-1.11 - dev-perl/Date-Manip - dev-perl/HTML-TableExtract - ) - sqlite? ( - >=dev-db/libdbi-0.9.0 - >=dev-db/libdbi-drivers-0.9.0[sqlite] - ) -" - -DEPEND="${RDEPEND} - ~dev-cpp/gtest-${GV} - dev-lang/perl - dev-perl/XML-Parser - dev-util/intltool - gnome-base/gnome-common - sys-devel/libtool - virtual/pkgconfig -" - -# Uncomment for 3.0 -# PDEPEND="doc? ( -# ~app-doc/gnucash-docs-${PV} -# gnome-extra/yelp -# )" - -PATCHES=( - "${FILESDIR}"/${P}-double_free.patch - "${FILESDIR}"/${P}-fix-tests-for-32bit-platforms.patch -) - -pkg_setup() { - use python && python-single-r1_pkg_setup - xdg_environment_reset -} - -src_configure() { - local sql_on_off="OFF" - if use mysql || use postgres || use sqlite ; then - sql_on_off="ON" - fi - - local mycmakeargs=( - -DGMOCK_ROOT="${WORKDIR}"/googletest-release-${GV}/googlemock - -DGTEST_ROOT="${WORKDIR}"/googletest-release-${GV}/googletest - - -DDISABLE_NLS=$(usex !nls) - -DENABLE_REGISTER2=$(usex register2) - -DWITH_AQBANKING=$(usex aqbanking) - -DWITH_OFX=$(usex ofx) - -DWITH_PYTHON=$(usex python) - -DWITH_SQL=${sql_on_off} - ) - - cmake-utils_src_configure -} - -src_test() { - if use python ; then - cp common/test-core/unittest_support.py \ - "${BUILD_DIR}"/common/test-core/ || die - fi - - cd "${BUILD_DIR}" || die - XDG_DATA_HOME="${T}/$(whoami)" emake check -} - -src_install() { - cmake-utils_src_install - - rm "${ED%/}"/usr/share/doc/${PF}/README.dependencies || die - rm "${ED%/}"/usr/share/glib-2.0/schemas/gschemas.compiled || die - - if use examples ; then - mv "${ED%/}"/usr/share/doc/gnucash \ - "${ED%/}"/usr/share/doc/${PF}/examples || die - pushd "${ED%/}"/usr/share/doc/${PF}/examples/ > /dev/null || die - rm AUTHORS DOCUMENTERS LICENSE NEWS projects.html ChangeLog* \ - *win32-bin.txt || die - popd > /dev/null || die - docompress -x /usr/share/doc/${PF}/examples/ - else - rm -r "${ED%/}"/usr/share/doc/gnucash || die - fi - - use aqbanking && dodoc doc/README.HBCI - use ofx && dodoc doc/README.OFX -} - -pkg_postinst() { - gnome2_icon_cache_update - gnome2_schemas_update - xdg_desktop_database_update - xdg_mimeinfo_database_update - - ewarn "Backup all financial files or databases before using GnuCash >=2.7.0!" - ewarn - ewarn "GnuCash 2.7.0 introduced large changes in its file format and database" - ewarn "schema that WILL prevent you from reverting back to GnuCash 2.6." -} - -pkg_postrm() { - gnome2_icon_cache_update - gnome2_schemas_update - xdg_desktop_database_update - xdg_mimeinfo_database_update -} diff --git a/app-office/gnucash/gnucash-3.2.ebuild b/app-office/gnucash/gnucash-3.2.ebuild deleted file mode 100644 index 7d93329d0017..000000000000 --- a/app-office/gnucash/gnucash-3.2.ebuild +++ /dev/null @@ -1,160 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -# google{test,mock} version -GV="1.8.0" -PYTHON_COMPAT=( python3_{4,5,6} ) - -inherit cmake-utils gnome2-utils python-single-r1 xdg-utils - -DESCRIPTION="A personal finance manager" -HOMEPAGE="http://www.gnucash.org/" -SRC_URI="https://github.com/Gnucash/${PN}/releases/download/${PV}/${P}.tar.bz2 - https://github.com/google/googletest/archive/release-${GV}.tar.gz -> gtest-${GV}.tar.gz" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" - -IUSE="aqbanking chipcard debug doc examples gnome-keyring mysql nls ofx postgres - python quotes -register2 sqlite" -REQUIRED_USE=" - chipcard? ( aqbanking ) - python? ( ${PYTHON_REQUIRED_USE} )" - -# libdbi version requirement for sqlite taken from bug #455134 -# -# dev-libs/boost must always be built with nls enabled. -RDEPEND=" - >=dev-libs/glib-2.40.0:2 - >=dev-libs/libxml2-2.7.0:2 - >=dev-scheme/guile-2.0.0:12=[regex] - >=sys-libs/zlib-1.1.4 - >=x11-libs/gtk+-3.14.0:3 - dev-libs/boost:=[icu,nls] - dev-libs/icu:= - dev-libs/libxslt - gnome-base/dconf - net-libs/webkit-gtk:4= - aqbanking? ( - >=net-libs/aqbanking-5[gtk,ofx?] - sys-libs/gwenhywfar[gtk] - chipcard? ( sys-libs/libchipcard ) - ) - gnome-keyring? ( >=app-crypt/libsecret-0.18 ) - mysql? ( - dev-db/libdbi - dev-db/libdbi-drivers[mysql] - ) - ofx? ( >=dev-libs/libofx-0.9.1 ) - postgres? ( - dev-db/libdbi - dev-db/libdbi-drivers[postgres] - ) - python? ( ${PYTHON_DEPS} ) - quotes? ( - >=dev-perl/Finance-Quote-1.11 - dev-perl/Date-Manip - dev-perl/HTML-TableExtract - ) - sqlite? ( - >=dev-db/libdbi-0.9.0 - >=dev-db/libdbi-drivers-0.9.0[sqlite] - ) -" - -DEPEND="${RDEPEND} - ~dev-cpp/gtest-${GV} - >=sys-devel/gettext-0.19.6 - dev-lang/perl - dev-perl/XML-Parser - gnome-base/gnome-common - sys-devel/libtool - virtual/pkgconfig -" - -PDEPEND="doc? ( - ~app-doc/gnucash-docs-${PV} - gnome-extra/yelp -)" - -#PATCHES=( "${FILESDIR}"/${PN}-2.7.4-fix-tests-for-32bit-platforms.patch ) - -pkg_setup() { - use python && python-single-r1_pkg_setup - xdg_environment_reset -} - -src_configure() { - local sql_on_off="OFF" - if use mysql || use postgres || use sqlite ; then - sql_on_off="ON" - fi - - local mycmakeargs=( - -DGMOCK_ROOT="${WORKDIR}"/googletest-release-${GV}/googlemock - -DGTEST_ROOT="${WORKDIR}"/googletest-release-${GV}/googletest - - -DDISABLE_NLS=$(usex !nls) - -DENABLE_REGISTER2=$(usex register2) - -DWITH_AQBANKING=$(usex aqbanking) - -DWITH_OFX=$(usex ofx) - -DWITH_PYTHON=$(usex python) - -DWITH_SQL=${sql_on_off} - ) - - cmake-utils_src_configure -} - -src_test() { - if use python ; then - cp common/test-core/unittest_support.py \ - "${BUILD_DIR}"/common/test-core/ || die - fi - - cd "${BUILD_DIR}" || die - XDG_DATA_HOME="${T}/$(whoami)" emake check -} - -src_install() { - cmake-utils_src_install - - rm "${ED%/}"/usr/share/doc/${PF}/README.dependencies || die - rm "${ED%/}"/usr/share/glib-2.0/schemas/gschemas.compiled || die - - if use examples ; then - mv "${ED%/}"/usr/share/doc/gnucash \ - "${ED%/}"/usr/share/doc/${PF}/examples || die - pushd "${ED%/}"/usr/share/doc/${PF}/examples/ > /dev/null || die - rm AUTHORS DOCUMENTERS LICENSE NEWS projects.html ChangeLog* \ - *win32-bin.txt || die - popd > /dev/null || die - docompress -x /usr/share/doc/${PF}/examples/ - else - rm -r "${ED%/}"/usr/share/doc/gnucash || die - fi - - use aqbanking && dodoc doc/README.HBCI - use ofx && dodoc doc/README.OFX -} - -pkg_postinst() { - gnome2_icon_cache_update - gnome2_schemas_update - xdg_desktop_database_update - xdg_mimeinfo_database_update - - ewarn "Backup all financial files or databases before using GnuCash >=2.7.0!" - ewarn - ewarn "GnuCash 2.7.0 introduced large changes in its file format and database" - ewarn "schema that WILL prevent you from reverting back to GnuCash 2.6." -} - -pkg_postrm() { - gnome2_icon_cache_update - gnome2_schemas_update - xdg_desktop_database_update - xdg_mimeinfo_database_update -}