public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2016-04-29 21:47 Sebastien Fabbro
  0 siblings, 0 replies; 29+ messages in thread
From: Sebastien Fabbro @ 2016-04-29 21:47 UTC (permalink / raw
  To: gentoo-commits

commit:     6d0054720248742aaf5ada72d31a30a7e78d611d
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 29 21:47:04 2016 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Fri Apr 29 21:47:37 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d005472

sci-mathematics/pspp: Version bump

Package-Manager: portage-2.2.28

 sci-mathematics/pspp/Manifest           |  1 +
 sci-mathematics/pspp/pspp-0.10.1.ebuild | 79 +++++++++++++++++++++++++++++++++
 2 files changed, 80 insertions(+)

diff --git a/sci-mathematics/pspp/Manifest b/sci-mathematics/pspp/Manifest
index 2ba1ccf..7417e1e 100644
--- a/sci-mathematics/pspp/Manifest
+++ b/sci-mathematics/pspp/Manifest
@@ -1,2 +1,3 @@
+DIST pspp-0.10.1.tar.gz 7269109 SHA256 44cc08864de736880bc0d7e2b1f8c8493ac0e0c2164a4f9471077608f00c8677 SHA512 a7f4eec3858340743ff845e67028af76d79a58968ceaa19a87e0443751917b2d70251e53231ecce15c937c9640ac733e00603baa76b4266d693375ab70b870b5 WHIRLPOOL 9a195051d5279a86cd05d586ca5a845443f08346f47aec859a3e768c38d5517f23f47d40cc6fb00c6af6c01af624d251575edfb34dfb0f7c7ee3def1a008a1c7
 DIST pspp-0.8.1.tar.gz 6514528 SHA256 fd48145d2ff77c39f624e26bf3c9a5623c2afaee7c040675b06cb4ce57d31d62 SHA512 2df758b3a2d8eba724d84ce7d77a6c0bbe469a11b86a8eb4227ec12a4957f468e74b3af0f81c953d87403a962937eef2680979a21ceba4fe8b93b55252b84a18 WHIRLPOOL 5be6ebcecffc3d8a7da669ea49028307b784a5b8b5d8a510d0f9e82a3740800966da5390f8abc120b55c9c621850be906f7610f86404b92c994d9a72697d413d
 DIST pspp-0.8.3.tar.gz 6247760 SHA256 adb8de281098b0d8632a8f2ea2af6514100786cf946f07a3c268d4baff15316f SHA512 7645a2de09ed1d6f1a53900961791b64b9420f457278d19e62ca7dabdb02b01ee78cdab0efddae384dc7deff65f7c5256227538caed89537efa014437937a61c WHIRLPOOL cff5921acce8bb3654ab0d10d63c42af8d5a9745263f423900ee290a30f1748aff023739ba49fabca33517e3deaf3fb0513a5fac7d0cf50170ba4b870d0ededf

diff --git a/sci-mathematics/pspp/pspp-0.10.1.ebuild b/sci-mathematics/pspp/pspp-0.10.1.ebuild
new file mode 100644
index 0000000..bea2418
--- /dev/null
+++ b/sci-mathematics/pspp/pspp-0.10.1.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils elisp-common
+
+DESCRIPTION="Program for statistical analysis of sampled data"
+HOMEPAGE="https://www.gnu.org/software/pspp/pspp.html"
+SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="cairo doc emacs examples gtk ncurses nls perl postgres static-libs"
+
+RDEPEND="
+	dev-libs/libxml2:2=
+	sci-libs/gsl:0=
+	sys-devel/gettext:0=
+	sys-libs/readline:0=
+	sys-libs/zlib:0=
+	virtual/libiconv
+	cairo? ( x11-libs/cairo:0= )
+	emacs? ( virtual/emacs )
+	gtk? (
+			x11-libs/gtk+:3=
+			x11-libs/gtksourceview:3.0= )
+	ncurses? ( sys-libs/ncurses:0= )
+	postgres? ( dev-db/postgresql:=[server] )"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig
+	doc? ( virtual/latex-base )"
+
+SITEFILE=50${PN}-gentoo.el
+
+src_configure() {
+	econf \
+		$(use_enable nls) \
+		$(use_enable static-libs static) \
+		$(use_with cairo) \
+		$(use_with gtk gui) \
+		$(use_with ncurses libncurses) \
+		$(use_with perl perl-module) \
+		$(use_with postgres libpq)
+}
+
+src_compile() {
+	default
+	use doc && emake html pdf
+	use emacs && elisp-compile *.el
+}
+
+src_install() {
+	default
+	if use doc; then
+		dodoc doc/pspp{,-dev}.pdf
+		insinto /usr/share/doc/${PF}/html
+		dodoc -r doc/pspp{,-dev}.html
+	fi
+	if use examples; then
+		insinto /usr/share/doc/${PF}
+		doins -r examples
+	fi
+	if use emacs; then
+		elisp-install ${PN} *.el *.elc
+		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+	fi
+	prune_libtool_files --all
+}
+
+pkg_postinst () {
+	use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+	use emacs && elisp-site-regen
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2016-05-05 22:27 David Seifert
  0 siblings, 0 replies; 29+ messages in thread
From: David Seifert @ 2016-05-05 22:27 UTC (permalink / raw
  To: gentoo-commits

commit:     cf9ccf9b9953d23a51dce94d9966416d006ce07b
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu May  5 22:22:36 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu May  5 22:27:13 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf9ccf9b

sci-mathematics/pspp: Add missing 'svg' USE depend

Gentoo-Bug: 582166

Package-Manager: portage-2.2.28

 sci-mathematics/pspp/pspp-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-mathematics/pspp/pspp-0.10.1.ebuild b/sci-mathematics/pspp/pspp-0.10.1.ebuild
index bea2418..bcaea41 100644
--- a/sci-mathematics/pspp/pspp-0.10.1.ebuild
+++ b/sci-mathematics/pspp/pspp-0.10.1.ebuild
@@ -22,7 +22,7 @@ RDEPEND="
 	sys-libs/readline:0=
 	sys-libs/zlib:0=
 	virtual/libiconv
-	cairo? ( x11-libs/cairo:0= )
+	cairo? ( x11-libs/cairo:0=[svg] )
 	emacs? ( virtual/emacs )
 	gtk? (
 			x11-libs/gtk+:3=


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2016-05-05 22:27 David Seifert
  0 siblings, 0 replies; 29+ messages in thread
From: David Seifert @ 2016-05-05 22:27 UTC (permalink / raw
  To: gentoo-commits

commit:     c7a948042612dd9753964380309cf1a51c336a59
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu May  5 22:25:45 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu May  5 22:27:16 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7a94804

sci-mathematics/pspp: Add missing (sub-)slot dependency operators

Package-Manager: portage-2.2.28

 sci-mathematics/pspp/pspp-0.8.1-r1.ebuild | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/sci-mathematics/pspp/pspp-0.8.1-r1.ebuild b/sci-mathematics/pspp/pspp-0.8.1-r1.ebuild
index ae72b53..194c4cc 100644
--- a/sci-mathematics/pspp/pspp-0.8.1-r1.ebuild
+++ b/sci-mathematics/pspp/pspp-0.8.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -21,7 +21,7 @@ RDEPEND="
 	dev-libs/libxml2:2
 	sci-libs/gsl
 	sys-devel/gettext
-	sys-libs/readline
+	sys-libs/readline:0
 	sys-libs/zlib
 	virtual/libiconv
 	cairo? ( x11-libs/cairo )
@@ -30,8 +30,8 @@ RDEPEND="
 			gnome-base/libglade:2.0
 			x11-libs/gtk+:2
 			>=x11-libs/gtksourceview-2.2:2.0 )
-	ncurses? ( sys-libs/ncurses )
-	postgres? ( dev-db/postgresql[server] )"
+	ncurses? ( sys-libs/ncurses:0= )
+	postgres? ( dev-db/postgresql:*[server] )"
 DEPEND="${RDEPEND}
 	virtual/pkgconfig
 	doc? ( virtual/latex-base )"


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2016-05-05 22:27 David Seifert
  0 siblings, 0 replies; 29+ messages in thread
From: David Seifert @ 2016-05-05 22:27 UTC (permalink / raw
  To: gentoo-commits

commit:     3331b267eb99f3ae2e6f6854f044e08715437ffd
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu May  5 22:26:59 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu May  5 22:27:18 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3331b267

sci-mathematics/pspp: Add missing (sub-)slot dependency operators

Package-Manager: portage-2.2.28

 sci-mathematics/pspp/pspp-0.8.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-mathematics/pspp/pspp-0.8.3.ebuild b/sci-mathematics/pspp/pspp-0.8.3.ebuild
index 565a8dc..d240075 100644
--- a/sci-mathematics/pspp/pspp-0.8.3.ebuild
+++ b/sci-mathematics/pspp/pspp-0.8.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -30,7 +30,7 @@ RDEPEND="
 			gnome-base/libglade:2.0
 			x11-libs/gtk+:2
 			>=x11-libs/gtksourceview-2.2:2.0 )
-	ncurses? ( sys-libs/ncurses )
+	ncurses? ( sys-libs/ncurses:0= )
 	postgres? ( dev-db/postgresql:=[server] )"
 DEPEND="${RDEPEND}
 	virtual/pkgconfig


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2016-07-24 12:27 Jeroen Roovers
  0 siblings, 0 replies; 29+ messages in thread
From: Jeroen Roovers @ 2016-07-24 12:27 UTC (permalink / raw
  To: gentoo-commits

commit:     a9d78b3a5bc21f98448de6dbc8242a9fed52cdc2
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 24 12:27:23 2016 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sun Jul 24 12:27:46 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9d78b3a

sci-mathematics/pspp: Version bump.

Package-Manager: portage-2.3.0

 sci-mathematics/pspp/Manifest           |  1 +
 sci-mathematics/pspp/pspp-0.10.2.ebuild | 79 +++++++++++++++++++++++++++++++++
 2 files changed, 80 insertions(+)

diff --git a/sci-mathematics/pspp/Manifest b/sci-mathematics/pspp/Manifest
index 7417e1e..2a524b4 100644
--- a/sci-mathematics/pspp/Manifest
+++ b/sci-mathematics/pspp/Manifest
@@ -1,3 +1,4 @@
 DIST pspp-0.10.1.tar.gz 7269109 SHA256 44cc08864de736880bc0d7e2b1f8c8493ac0e0c2164a4f9471077608f00c8677 SHA512 a7f4eec3858340743ff845e67028af76d79a58968ceaa19a87e0443751917b2d70251e53231ecce15c937c9640ac733e00603baa76b4266d693375ab70b870b5 WHIRLPOOL 9a195051d5279a86cd05d586ca5a845443f08346f47aec859a3e768c38d5517f23f47d40cc6fb00c6af6c01af624d251575edfb34dfb0f7c7ee3def1a008a1c7
+DIST pspp-0.10.2.tar.gz 7316470 SHA256 f77cacae6948689a60f1a5808a5d2e183c1cd0847c7fc6142646c63814c0daa9 SHA512 7d6656c03da46b088e87cba7a947d1e56031ff50d704be8201a38563515cf5cf324a05f1d4999ba8aec7b2269a8fdbd09374a11374c9c1b9dd6d78d34fda4b76 WHIRLPOOL f66f0ca98dce4de4b323aa42445d0c8fe3c7d252cd8ed6d1ad1dd961186bf063b9c92114a92e9afb2149b35c03fa595720c8a35b33ff81a56eb5e9e029c85119
 DIST pspp-0.8.1.tar.gz 6514528 SHA256 fd48145d2ff77c39f624e26bf3c9a5623c2afaee7c040675b06cb4ce57d31d62 SHA512 2df758b3a2d8eba724d84ce7d77a6c0bbe469a11b86a8eb4227ec12a4957f468e74b3af0f81c953d87403a962937eef2680979a21ceba4fe8b93b55252b84a18 WHIRLPOOL 5be6ebcecffc3d8a7da669ea49028307b784a5b8b5d8a510d0f9e82a3740800966da5390f8abc120b55c9c621850be906f7610f86404b92c994d9a72697d413d
 DIST pspp-0.8.3.tar.gz 6247760 SHA256 adb8de281098b0d8632a8f2ea2af6514100786cf946f07a3c268d4baff15316f SHA512 7645a2de09ed1d6f1a53900961791b64b9420f457278d19e62ca7dabdb02b01ee78cdab0efddae384dc7deff65f7c5256227538caed89537efa014437937a61c WHIRLPOOL cff5921acce8bb3654ab0d10d63c42af8d5a9745263f423900ee290a30f1748aff023739ba49fabca33517e3deaf3fb0513a5fac7d0cf50170ba4b870d0ededf

diff --git a/sci-mathematics/pspp/pspp-0.10.2.ebuild b/sci-mathematics/pspp/pspp-0.10.2.ebuild
new file mode 100644
index 0000000..bcaea41
--- /dev/null
+++ b/sci-mathematics/pspp/pspp-0.10.2.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils elisp-common
+
+DESCRIPTION="Program for statistical analysis of sampled data"
+HOMEPAGE="https://www.gnu.org/software/pspp/pspp.html"
+SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="cairo doc emacs examples gtk ncurses nls perl postgres static-libs"
+
+RDEPEND="
+	dev-libs/libxml2:2=
+	sci-libs/gsl:0=
+	sys-devel/gettext:0=
+	sys-libs/readline:0=
+	sys-libs/zlib:0=
+	virtual/libiconv
+	cairo? ( x11-libs/cairo:0=[svg] )
+	emacs? ( virtual/emacs )
+	gtk? (
+			x11-libs/gtk+:3=
+			x11-libs/gtksourceview:3.0= )
+	ncurses? ( sys-libs/ncurses:0= )
+	postgres? ( dev-db/postgresql:=[server] )"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig
+	doc? ( virtual/latex-base )"
+
+SITEFILE=50${PN}-gentoo.el
+
+src_configure() {
+	econf \
+		$(use_enable nls) \
+		$(use_enable static-libs static) \
+		$(use_with cairo) \
+		$(use_with gtk gui) \
+		$(use_with ncurses libncurses) \
+		$(use_with perl perl-module) \
+		$(use_with postgres libpq)
+}
+
+src_compile() {
+	default
+	use doc && emake html pdf
+	use emacs && elisp-compile *.el
+}
+
+src_install() {
+	default
+	if use doc; then
+		dodoc doc/pspp{,-dev}.pdf
+		insinto /usr/share/doc/${PF}/html
+		dodoc -r doc/pspp{,-dev}.html
+	fi
+	if use examples; then
+		insinto /usr/share/doc/${PF}
+		doins -r examples
+	fi
+	if use emacs; then
+		elisp-install ${PN} *.el *.elc
+		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+	fi
+	prune_libtool_files --all
+}
+
+pkg_postinst () {
+	use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+	use emacs && elisp-site-regen
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2018-12-07 20:11 Alexey Shvetsov
  0 siblings, 0 replies; 29+ messages in thread
From: Alexey Shvetsov @ 2018-12-07 20:11 UTC (permalink / raw
  To: gentoo-commits

commit:     fba74311732b0000c59669bed487f7cf6ea511c2
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Fri Dec  7 20:00:30 2018 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Fri Dec  7 20:08:41 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fba74311

sci-mathematics/pspp: Version bump

Signed-off-by: Alexey Shvetsov <alexxy <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 sci-mathematics/pspp/Manifest          |  1 +
 sci-mathematics/pspp/pspp-1.2.0.ebuild | 79 ++++++++++++++++++++++++++++++++++
 2 files changed, 80 insertions(+)

diff --git a/sci-mathematics/pspp/Manifest b/sci-mathematics/pspp/Manifest
index 556d24960b2..0049a628c14 100644
--- a/sci-mathematics/pspp/Manifest
+++ b/sci-mathematics/pspp/Manifest
@@ -1,2 +1,3 @@
 DIST pspp-0.10.1.tar.gz 7269109 BLAKE2B 5f488b1bbe9d4cf833d847cd035485827e7e518fb82f0e5df98418e919da54553475e91fd8529df8819ee71d853fb8bdd079e27a9b8587b40074701a7d71a8c2 SHA512 a7f4eec3858340743ff845e67028af76d79a58968ceaa19a87e0443751917b2d70251e53231ecce15c937c9640ac733e00603baa76b4266d693375ab70b870b5
 DIST pspp-0.10.2.tar.gz 7316470 BLAKE2B 9bbccfc8151d83613f5c4f49f285959c6b9e74bdc99edb95dc719561fb05c01e54b10fc5b3a58b9e5beeae199235d0d936a6ee08277fe7c710c3e40ca6c389f7 SHA512 7d6656c03da46b088e87cba7a947d1e56031ff50d704be8201a38563515cf5cf324a05f1d4999ba8aec7b2269a8fdbd09374a11374c9c1b9dd6d78d34fda4b76
+DIST pspp-1.2.0.tar.gz 7213194 BLAKE2B f468c6e025f996c9f806fb03e94a4497f02b774c509457cc6295bbefe37abc7e2ecf10d2876c8cff9a979d7a4264c7c185e1cec5fd1d5f2f00f1c6eae4da775e SHA512 49eed2b55f10584abba18ff7d2020fd08691bbc1a3c2f332e6d283e32aa84e0abdae6092d17db9c1a539c63d85ecdfcc2dad40c94a06904b8893a1976e5e48d3

diff --git a/sci-mathematics/pspp/pspp-1.2.0.ebuild b/sci-mathematics/pspp/pspp-1.2.0.ebuild
new file mode 100644
index 00000000000..85f03f048b0
--- /dev/null
+++ b/sci-mathematics/pspp/pspp-1.2.0.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils elisp-common
+
+DESCRIPTION="Program for statistical analysis of sampled data"
+HOMEPAGE="https://www.gnu.org/software/pspp/pspp.html"
+SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="cairo doc emacs examples gtk ncurses nls perl postgres static-libs"
+
+RDEPEND="
+	dev-libs/libxml2:2=
+	sci-libs/gsl:0=
+	sys-devel/gettext:0=
+	sys-libs/readline:0=
+	sys-libs/zlib:0=
+	virtual/libiconv
+	cairo? ( x11-libs/cairo:0=[svg] )
+	emacs? ( virtual/emacs )
+	gtk? (
+			x11-libs/gtk+:3=
+			x11-libs/gtksourceview:3.0=
+			x11-libs/spread-sheet-widget )
+	ncurses? ( sys-libs/ncurses:0= )
+	postgres? ( dev-db/postgresql:=[server] )"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig
+	doc? ( virtual/latex-base )"
+
+SITEFILE=50${PN}-gentoo.el
+
+src_configure() {
+	econf \
+		$(use_enable nls) \
+		$(use_enable static-libs static) \
+		$(use_with cairo) \
+		$(use_with gtk gui) \
+		$(use_with ncurses libncurses) \
+		$(use_with perl perl-module) \
+		$(use_with postgres libpq)
+}
+
+src_compile() {
+	default
+	use doc && emake html pdf
+	use emacs && elisp-compile *.el
+}
+
+src_install() {
+	default
+	if use doc; then
+		dodoc doc/pspp{,-dev}.pdf
+		insinto /usr/share/doc/${PF}/html
+		dodoc -r doc/pspp{,-dev}.html
+	fi
+	if use examples; then
+		insinto /usr/share/doc/${PF}
+		doins -r examples
+	fi
+	if use emacs; then
+		elisp-install ${PN} *.el *.elc
+		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+	fi
+	prune_libtool_files --all
+}
+
+pkg_postinst () {
+	use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+	use emacs && elisp-site-regen
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2018-12-24 22:39 Zac Medico
  0 siblings, 0 replies; 29+ messages in thread
From: Zac Medico @ 2018-12-24 22:39 UTC (permalink / raw
  To: gentoo-commits

commit:     bf74a2b9bcb3c53247fb6360d0a0511f8f23c1cf
Author:     Marty E. Plummer <hanetzer <AT> startmail <DOT> com>
AuthorDate: Sat Dec 15 01:22:41 2018 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Mon Dec 24 22:39:15 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf74a2b9

sci-mathematics/pspp: remove trailing whitespace

Closes: https://github.com/gentoo/gentoo/pull/10643
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Marty E. Plummer <hanetzer <AT> startmail.com>
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>

 sci-mathematics/pspp/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-mathematics/pspp/metadata.xml b/sci-mathematics/pspp/metadata.xml
index 4f8e8d04e96..6928fff1b02 100644
--- a/sci-mathematics/pspp/metadata.xml
+++ b/sci-mathematics/pspp/metadata.xml
@@ -10,7 +10,7 @@
   interprets commands in the SPSS language and produces tabular and
   graphical output in ASCII, HTML, or PostScript format.
   PSPP supports a large subset of SPSS's transformation language. Its
-  statistical procedure support is limited but growing.	
+  statistical procedure support is limited but growing.
   PSPP has both text-based and a GTK+ based graphical user interfaces.
 </longdescription>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2019-01-02 19:01 Thomas Deutschmann
  0 siblings, 0 replies; 29+ messages in thread
From: Thomas Deutschmann @ 2019-01-02 19:01 UTC (permalink / raw
  To: gentoo-commits

commit:     bd857ddca7b27e0f2bfcb4c8fb70ae3992af994a
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Jan  2 19:00:18 2019 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Jan  2 19:01:32 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd857ddc

sci-mathematics/pspp: x86 stable (bug #625724)

Package-Manager: Portage-2.3.53, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 sci-mathematics/pspp/pspp-1.2.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-mathematics/pspp/pspp-1.2.0.ebuild b/sci-mathematics/pspp/pspp-1.2.0.ebuild
index 85f03f048b0..629f6d05da4 100644
--- a/sci-mathematics/pspp/pspp-1.2.0.ebuild
+++ b/sci-mathematics/pspp/pspp-1.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 x86 ~amd64-linux ~x86-linux"
 IUSE="cairo doc emacs examples gtk ncurses nls perl postgres static-libs"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2019-01-17 16:58 Mikle Kolyada
  0 siblings, 0 replies; 29+ messages in thread
From: Mikle Kolyada @ 2019-01-17 16:58 UTC (permalink / raw
  To: gentoo-commits

commit:     dcb3b630f4b9927e1971a7a3e8ed537a7b44b266
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 17 16:57:49 2019 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu Jan 17 16:57:49 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcb3b630

sci-mathematics/pspp: amd64 stable wrt bug #625724

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 sci-mathematics/pspp/pspp-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-mathematics/pspp/pspp-1.2.0.ebuild b/sci-mathematics/pspp/pspp-1.2.0.ebuild
index 629f6d05da4..f4a8b7ec810 100644
--- a/sci-mathematics/pspp/pspp-1.2.0.ebuild
+++ b/sci-mathematics/pspp/pspp-1.2.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
 IUSE="cairo doc emacs examples gtk ncurses nls perl postgres static-libs"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2019-01-26  1:36 Andreas K. Hüttel
  0 siblings, 0 replies; 29+ messages in thread
From: Andreas K. Hüttel @ 2019-01-26  1:36 UTC (permalink / raw
  To: gentoo-commits

commit:     b876fbf030e9ef9958d178e4891155ed2753c23f
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 26 01:35:46 2019 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Jan 26 01:35:46 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b876fbf0

sci-mathematics/pspp: Remove old

Bug: https://bugs.gentoo.org/625724
Package-Manager: Portage-2.3.57, Repoman-2.3.12
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>

 sci-mathematics/pspp/Manifest           |  2 -
 sci-mathematics/pspp/pspp-0.10.1.ebuild | 78 ---------------------------------
 sci-mathematics/pspp/pspp-0.10.2.ebuild | 78 ---------------------------------
 3 files changed, 158 deletions(-)

diff --git a/sci-mathematics/pspp/Manifest b/sci-mathematics/pspp/Manifest
index 0049a628c14..b6717e465c4 100644
--- a/sci-mathematics/pspp/Manifest
+++ b/sci-mathematics/pspp/Manifest
@@ -1,3 +1 @@
-DIST pspp-0.10.1.tar.gz 7269109 BLAKE2B 5f488b1bbe9d4cf833d847cd035485827e7e518fb82f0e5df98418e919da54553475e91fd8529df8819ee71d853fb8bdd079e27a9b8587b40074701a7d71a8c2 SHA512 a7f4eec3858340743ff845e67028af76d79a58968ceaa19a87e0443751917b2d70251e53231ecce15c937c9640ac733e00603baa76b4266d693375ab70b870b5
-DIST pspp-0.10.2.tar.gz 7316470 BLAKE2B 9bbccfc8151d83613f5c4f49f285959c6b9e74bdc99edb95dc719561fb05c01e54b10fc5b3a58b9e5beeae199235d0d936a6ee08277fe7c710c3e40ca6c389f7 SHA512 7d6656c03da46b088e87cba7a947d1e56031ff50d704be8201a38563515cf5cf324a05f1d4999ba8aec7b2269a8fdbd09374a11374c9c1b9dd6d78d34fda4b76
 DIST pspp-1.2.0.tar.gz 7213194 BLAKE2B f468c6e025f996c9f806fb03e94a4497f02b774c509457cc6295bbefe37abc7e2ecf10d2876c8cff9a979d7a4264c7c185e1cec5fd1d5f2f00f1c6eae4da775e SHA512 49eed2b55f10584abba18ff7d2020fd08691bbc1a3c2f332e6d283e32aa84e0abdae6092d17db9c1a539c63d85ecdfcc2dad40c94a06904b8893a1976e5e48d3

diff --git a/sci-mathematics/pspp/pspp-0.10.1.ebuild b/sci-mathematics/pspp/pspp-0.10.1.ebuild
deleted file mode 100644
index f1d6cf51359..00000000000
--- a/sci-mathematics/pspp/pspp-0.10.1.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils elisp-common
-
-DESCRIPTION="Program for statistical analysis of sampled data"
-HOMEPAGE="https://www.gnu.org/software/pspp/pspp.html"
-SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0/${PV}"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE="cairo doc emacs examples gtk ncurses nls perl postgres static-libs"
-
-RDEPEND="
-	dev-libs/libxml2:2=
-	sci-libs/gsl:0=
-	sys-devel/gettext:0=
-	sys-libs/readline:0=
-	sys-libs/zlib:0=
-	virtual/libiconv
-	cairo? ( x11-libs/cairo:0=[svg] )
-	emacs? ( virtual/emacs )
-	gtk? (
-			x11-libs/gtk+:3=
-			x11-libs/gtksourceview:3.0= )
-	ncurses? ( sys-libs/ncurses:0= )
-	postgres? ( dev-db/postgresql:=[server] )"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
-	doc? ( virtual/latex-base )"
-
-SITEFILE=50${PN}-gentoo.el
-
-src_configure() {
-	econf \
-		$(use_enable nls) \
-		$(use_enable static-libs static) \
-		$(use_with cairo) \
-		$(use_with gtk gui) \
-		$(use_with ncurses libncurses) \
-		$(use_with perl perl-module) \
-		$(use_with postgres libpq)
-}
-
-src_compile() {
-	default
-	use doc && emake html pdf
-	use emacs && elisp-compile *.el
-}
-
-src_install() {
-	default
-	if use doc; then
-		dodoc doc/pspp{,-dev}.pdf
-		insinto /usr/share/doc/${PF}/html
-		dodoc -r doc/pspp{,-dev}.html
-	fi
-	if use examples; then
-		insinto /usr/share/doc/${PF}
-		doins -r examples
-	fi
-	if use emacs; then
-		elisp-install ${PN} *.el *.elc
-		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-	fi
-	prune_libtool_files --all
-}
-
-pkg_postinst () {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}

diff --git a/sci-mathematics/pspp/pspp-0.10.2.ebuild b/sci-mathematics/pspp/pspp-0.10.2.ebuild
deleted file mode 100644
index 4492cc326fb..00000000000
--- a/sci-mathematics/pspp/pspp-0.10.2.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils elisp-common
-
-DESCRIPTION="Program for statistical analysis of sampled data"
-HOMEPAGE="https://www.gnu.org/software/pspp/pspp.html"
-SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="cairo doc emacs examples gtk ncurses nls perl postgres static-libs"
-
-RDEPEND="
-	dev-libs/libxml2:2=
-	sci-libs/gsl:0=
-	sys-devel/gettext:0=
-	sys-libs/readline:0=
-	sys-libs/zlib:0=
-	virtual/libiconv
-	cairo? ( x11-libs/cairo:0=[svg] )
-	emacs? ( virtual/emacs )
-	gtk? (
-			x11-libs/gtk+:3=
-			x11-libs/gtksourceview:3.0= )
-	ncurses? ( sys-libs/ncurses:0= )
-	postgres? ( dev-db/postgresql:=[server] )"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
-	doc? ( virtual/latex-base )"
-
-SITEFILE=50${PN}-gentoo.el
-
-src_configure() {
-	econf \
-		$(use_enable nls) \
-		$(use_enable static-libs static) \
-		$(use_with cairo) \
-		$(use_with gtk gui) \
-		$(use_with ncurses libncurses) \
-		$(use_with perl perl-module) \
-		$(use_with postgres libpq)
-}
-
-src_compile() {
-	default
-	use doc && emake html pdf
-	use emacs && elisp-compile *.el
-}
-
-src_install() {
-	default
-	if use doc; then
-		dodoc doc/pspp{,-dev}.pdf
-		insinto /usr/share/doc/${PF}/html
-		dodoc -r doc/pspp{,-dev}.html
-	fi
-	if use examples; then
-		insinto /usr/share/doc/${PF}
-		doins -r examples
-	fi
-	if use emacs; then
-		elisp-install ${PN} *.el *.elc
-		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-	fi
-	prune_libtool_files --all
-}
-
-pkg_postinst () {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2019-12-20 22:49 Ulrich Müller
  0 siblings, 0 replies; 29+ messages in thread
From: Ulrich Müller @ 2019-12-20 22:49 UTC (permalink / raw
  To: gentoo-commits

commit:     2198b0acef5f2057314bec7b8109a47536b07891
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 20 16:30:19 2019 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Fri Dec 20 22:48:51 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2198b0ac

sci-mathematics/pspp: Update virtual/emacs dependency.

The virtual is deprecated, depend on app-editors/emacs instead.

Package-Manager: Portage-2.3.82, Repoman-2.3.20
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 sci-mathematics/pspp/pspp-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-mathematics/pspp/pspp-1.2.0.ebuild b/sci-mathematics/pspp/pspp-1.2.0.ebuild
index f4a8b7ec810..656818f70b2 100644
--- a/sci-mathematics/pspp/pspp-1.2.0.ebuild
+++ b/sci-mathematics/pspp/pspp-1.2.0.ebuild
@@ -22,7 +22,7 @@ RDEPEND="
 	sys-libs/zlib:0=
 	virtual/libiconv
 	cairo? ( x11-libs/cairo:0=[svg] )
-	emacs? ( virtual/emacs )
+	emacs? ( >=app-editors/emacs-23.1:* )
 	gtk? (
 			x11-libs/gtk+:3=
 			x11-libs/gtksourceview:3.0=


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2020-10-18 15:11 Thomas Deutschmann
  0 siblings, 0 replies; 29+ messages in thread
From: Thomas Deutschmann @ 2020-10-18 15:11 UTC (permalink / raw
  To: gentoo-commits

commit:     41972686687aac7010bee2e3392ef2f8f854889c
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 18 15:11:20 2020 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Oct 18 15:11:51 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41972686

sci-mathematics/pspp: x86 stable (bug #679392)

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 sci-mathematics/pspp/pspp-1.2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-mathematics/pspp/pspp-1.2.0-r1.ebuild b/sci-mathematics/pspp/pspp-1.2.0-r1.ebuild
index 02e509da024..c3ea19d9093 100644
--- a/sci-mathematics/pspp/pspp-1.2.0-r1.ebuild
+++ b/sci-mathematics/pspp/pspp-1.2.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 x86 ~amd64-linux ~x86-linux"
 IUSE="cairo doc emacs examples gtk ncurses nls perl postgres test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="test? ( cairo )"


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2020-11-01 15:50 Sam James
  0 siblings, 0 replies; 29+ messages in thread
From: Sam James @ 2020-11-01 15:50 UTC (permalink / raw
  To: gentoo-commits

commit:     61a6cc90617bd63583f2f064f3cb7880714ec2bf
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  1 15:49:55 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Nov  1 15:49:55 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61a6cc90

sci-mathematics/pspp: Stabilize 1.2.0-r1 amd64, #679392

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-mathematics/pspp/pspp-1.2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-mathematics/pspp/pspp-1.2.0-r1.ebuild b/sci-mathematics/pspp/pspp-1.2.0-r1.ebuild
index c3ea19d9093..f76533116cc 100644
--- a/sci-mathematics/pspp/pspp-1.2.0-r1.ebuild
+++ b/sci-mathematics/pspp/pspp-1.2.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
 IUSE="cairo doc emacs examples gtk ncurses nls perl postgres test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="test? ( cairo )"


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2020-11-26 19:41 Sam James
  0 siblings, 0 replies; 29+ messages in thread
From: Sam James @ 2020-11-26 19:41 UTC (permalink / raw
  To: gentoo-commits

commit:     65b93994396ad5d40389327728e3457b24c29d61
Author:     John Helmert III <jchelmert3 <AT> posteo <DOT> net>
AuthorDate: Thu Nov 26 19:19:45 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 19:41:31 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65b93994

sci-mathematics/pspp: security cleanup (<1.2.0-r1)

Bug: https://bugs.gentoo.org/679392
Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: John Helmert III <jchelmert3 <AT> posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/18416
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-mathematics/pspp/pspp-1.2.0.ebuild | 79 ----------------------------------
 1 file changed, 79 deletions(-)

diff --git a/sci-mathematics/pspp/pspp-1.2.0.ebuild b/sci-mathematics/pspp/pspp-1.2.0.ebuild
deleted file mode 100644
index b0978a19cfa..00000000000
--- a/sci-mathematics/pspp/pspp-1.2.0.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils elisp-common ltprune
-
-DESCRIPTION="Program for statistical analysis of sampled data"
-HOMEPAGE="https://www.gnu.org/software/pspp/pspp.html"
-SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0/${PV}"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE="cairo doc emacs examples gtk ncurses nls perl postgres static-libs"
-
-RDEPEND="
-	dev-libs/libxml2:2=
-	sci-libs/gsl:0=
-	sys-devel/gettext:0=
-	sys-libs/readline:0=
-	sys-libs/zlib:0=
-	virtual/libiconv
-	cairo? ( x11-libs/cairo:0=[svg] )
-	emacs? ( >=app-editors/emacs-23.1:* )
-	gtk? (
-			x11-libs/gtk+:3=
-			x11-libs/gtksourceview:3.0=
-			x11-libs/spread-sheet-widget )
-	ncurses? ( sys-libs/ncurses:0= )
-	postgres? ( dev-db/postgresql:=[server] )"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
-	doc? ( virtual/latex-base )"
-
-SITEFILE=50${PN}-gentoo.el
-
-src_configure() {
-	econf \
-		$(use_enable nls) \
-		$(use_enable static-libs static) \
-		$(use_with cairo) \
-		$(use_with gtk gui) \
-		$(use_with ncurses libncurses) \
-		$(use_with perl perl-module) \
-		$(use_with postgres libpq)
-}
-
-src_compile() {
-	default
-	use doc && emake html pdf
-	use emacs && elisp-compile *.el
-}
-
-src_install() {
-	default
-	if use doc; then
-		dodoc doc/pspp{,-dev}.pdf
-		insinto /usr/share/doc/${PF}/html
-		dodoc -r doc/pspp{,-dev}.html
-	fi
-	if use examples; then
-		insinto /usr/share/doc/${PF}
-		doins -r examples
-	fi
-	if use emacs; then
-		elisp-install ${PN} *.el *.elc
-		elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-	fi
-	prune_libtool_files --all
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2020-11-26 22:56 David Seifert
  0 siblings, 0 replies; 29+ messages in thread
From: David Seifert @ 2020-11-26 22:56 UTC (permalink / raw
  To: gentoo-commits

commit:     7b0ba2efd3e40addd272c01c8d24f4d99c7b43e6
Author:     John Helmert III <jchelmert3 <AT> posteo <DOT> net>
AuthorDate: Thu Nov 26 22:56:28 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 22:56:28 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b0ba2ef

sci-mathematics/pspp: version bump to 1.4.1

Closes: https://github.com/gentoo/gentoo/pull/18417
Signed-off-by: John Helmert III <jchelmert3 <AT> posteo.net>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 sci-mathematics/pspp/Manifest          |  1 +
 sci-mathematics/pspp/pspp-1.4.1.ebuild | 90 ++++++++++++++++++++++++++++++++++
 2 files changed, 91 insertions(+)

diff --git a/sci-mathematics/pspp/Manifest b/sci-mathematics/pspp/Manifest
index b6717e465c4..c165db85af6 100644
--- a/sci-mathematics/pspp/Manifest
+++ b/sci-mathematics/pspp/Manifest
@@ -1 +1,2 @@
 DIST pspp-1.2.0.tar.gz 7213194 BLAKE2B f468c6e025f996c9f806fb03e94a4497f02b774c509457cc6295bbefe37abc7e2ecf10d2876c8cff9a979d7a4264c7c185e1cec5fd1d5f2f00f1c6eae4da775e SHA512 49eed2b55f10584abba18ff7d2020fd08691bbc1a3c2f332e6d283e32aa84e0abdae6092d17db9c1a539c63d85ecdfcc2dad40c94a06904b8893a1976e5e48d3
+DIST pspp-1.4.1.tar.gz 7848393 BLAKE2B c9232aa3d4905d4be54ae993db6a4b37b3696c748e15c8ba6c46c7e56f9974aefe597f893fdc5431af237ad3923da1ef271db39e4d94725ccf93f0a0df443ef4 SHA512 c664a6c6f4f1826db396ad776d81cadc791e4f661c603a7f164f70f9571a84cfae6fec116356b3f950991245b2b0dc9805e75193a055a242558cda1209e7830f

diff --git a/sci-mathematics/pspp/pspp-1.4.1.ebuild b/sci-mathematics/pspp/pspp-1.4.1.ebuild
new file mode 100644
index 00000000000..5c58d5dba49
--- /dev/null
+++ b/sci-mathematics/pspp/pspp-1.4.1.ebuild
@@ -0,0 +1,90 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit python-any-r1 xdg
+
+DESCRIPTION="Program for statistical analysis of sampled data"
+HOMEPAGE="https://www.gnu.org/software/pspp/pspp.html"
+SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="cairo doc examples gtk ncurses nls perl postgres test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="test? ( cairo )"
+
+RDEPEND="
+	dev-libs/libxml2:2
+	sci-libs/gsl:0=
+	sys-devel/gettext
+	sys-libs/ncurses:0=
+	sys-libs/readline:0=
+	sys-libs/zlib
+	virtual/libiconv
+	cairo? (
+		x11-libs/cairo[svg]
+		x11-libs/pango
+	)
+	gtk? (
+		x11-libs/gtk+:3
+		x11-libs/gtksourceview:3.0=
+		>=x11-libs/spread-sheet-widget-0.6
+		cairo? ( dev-util/glib-utils )
+	)
+	postgres? ( dev-db/postgresql:=[server] )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	sys-devel/gettext
+	virtual/pkgconfig
+	doc? ( virtual/latex-base )
+	test? ( ${PYTHON_DEPS} )"
+
+pkg_pretend() {
+	ewarn "Starting with pspp-1.4.0 the pspp-mode emacs package is no longer"
+	ewarn "shipped with pspp itself, and should instead be fetched from ELPA:"
+	ewarn "https://elpa.gnu.org/packages/pspp-mode.html"
+}
+
+pkg_setup() {
+	use test && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+	default
+	sed -i '/appdata$/s/appdata$/metainfo/' Makefile.in || die
+}
+
+src_configure() {
+	econf \
+		--disable-static \
+		$(use_enable nls) \
+		$(use_with cairo) \
+		$(use_with gtk gui) \
+		$(use_with perl perl-module) \
+		$(use_with postgres libpq)
+}
+
+src_compile() {
+	default
+	if use doc; then
+		emake html pdf
+		HTML_DOCS=( doc/pspp{,-dev}.html )
+	fi
+}
+
+src_install() {
+	default
+
+	use doc && dodoc doc/pspp{,-dev}.pdf
+	if use examples; then
+		dodoc -r examples
+		docompress -x /usr/share/doc/${PF}/examples
+	fi
+
+	find "${ED}" -name '*.la' -type f -delete || die
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2022-06-07  6:34 Sam James
  0 siblings, 0 replies; 29+ messages in thread
From: Sam James @ 2022-06-07  6:34 UTC (permalink / raw
  To: gentoo-commits

commit:     aeb44c63c5445484a7be798d2f47d29c51974943
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun  7 06:33:27 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun  7 06:34:00 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aeb44c63

sci-mathematics/pspp: add 1.6.0

Closes: https://bugs.gentoo.org/846278
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-mathematics/pspp/Manifest          |  1 +
 sci-mathematics/pspp/pspp-1.6.0.ebuild | 82 ++++++++++++++++++++++++++++++++++
 2 files changed, 83 insertions(+)

diff --git a/sci-mathematics/pspp/Manifest b/sci-mathematics/pspp/Manifest
index c165db85af66..a74e8e99b3d2 100644
--- a/sci-mathematics/pspp/Manifest
+++ b/sci-mathematics/pspp/Manifest
@@ -1,2 +1,3 @@
 DIST pspp-1.2.0.tar.gz 7213194 BLAKE2B f468c6e025f996c9f806fb03e94a4497f02b774c509457cc6295bbefe37abc7e2ecf10d2876c8cff9a979d7a4264c7c185e1cec5fd1d5f2f00f1c6eae4da775e SHA512 49eed2b55f10584abba18ff7d2020fd08691bbc1a3c2f332e6d283e32aa84e0abdae6092d17db9c1a539c63d85ecdfcc2dad40c94a06904b8893a1976e5e48d3
 DIST pspp-1.4.1.tar.gz 7848393 BLAKE2B c9232aa3d4905d4be54ae993db6a4b37b3696c748e15c8ba6c46c7e56f9974aefe597f893fdc5431af237ad3923da1ef271db39e4d94725ccf93f0a0df443ef4 SHA512 c664a6c6f4f1826db396ad776d81cadc791e4f661c603a7f164f70f9571a84cfae6fec116356b3f950991245b2b0dc9805e75193a055a242558cda1209e7830f
+DIST pspp-1.6.0.tar.gz 9553836 BLAKE2B 4c12003838d7f6c3613d76626d88b24f4dac4b6f507db54b03be5f09027472704ae8ee6ce44d8756c7cd1e12a65ab836cb1f7d004220df8da47f47af85c4a771 SHA512 c8b746b9ea802a95f048e377b22d723701c5e532358aa3e4993edcc73046c4823c440dd988833b69b4ea84ac6b02a442db7daac415bef4c1081efddd9857982d

diff --git a/sci-mathematics/pspp/pspp-1.6.0.ebuild b/sci-mathematics/pspp/pspp-1.6.0.ebuild
new file mode 100644
index 000000000000..0fcce2c4be8d
--- /dev/null
+++ b/sci-mathematics/pspp/pspp-1.6.0.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit python-any-r1 xdg
+
+DESCRIPTION="Program for statistical analysis of sampled data"
+HOMEPAGE="https://www.gnu.org/software/pspp/pspp.html"
+SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc examples gtk ncurses nls perl postgres"
+
+RDEPEND="
+	dev-libs/libxml2:2
+	sci-libs/gsl:0=
+	sys-devel/gettext
+	sys-libs/ncurses:0=
+	sys-libs/readline:0=
+	sys-libs/zlib
+	virtual/libiconv
+	x11-libs/cairo[svg]
+	x11-libs/pango
+	gtk? (
+		dev-util/glib-utils
+		x11-libs/gtk+:3
+		x11-libs/gtksourceview:4=
+		>=x11-libs/spread-sheet-widget-0.7
+	)
+	postgres? ( dev-db/postgresql:=[server] )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	${PYTHON_DEPS}
+	sys-devel/gettext
+	virtual/pkgconfig
+	doc? ( virtual/latex-base )"
+
+pkg_pretend() {
+	ewarn "Starting with pspp-1.4.0 the pspp-mode emacs package is no longer"
+	ewarn "shipped with pspp itself, and should instead be fetched from ELPA:"
+	ewarn "https://elpa.gnu.org/packages/pspp-mode.html"
+}
+
+src_prepare() {
+	default
+
+	sed -i '/appdata$/s/appdata$/metainfo/' Makefile.in || die
+}
+
+src_configure() {
+	econf \
+		$(use_enable nls) \
+		$(use_with gtk gui) \
+		$(use_with perl perl-module) \
+		$(use_with postgres libpq)
+}
+
+src_compile() {
+	default
+
+	if use doc; then
+		emake html pdf
+		HTML_DOCS=( doc/pspp{,-dev}.html )
+	fi
+}
+
+src_install() {
+	default
+
+	use doc && dodoc doc/pspp{,-dev}.pdf
+	if use examples; then
+		dodoc -r examples
+		docompress -x /usr/share/doc/${PF}/examples
+	fi
+
+	find "${ED}" -name '*.la' -type f -delete || die
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2022-06-23 18:42 Sam James
  0 siblings, 0 replies; 29+ messages in thread
From: Sam James @ 2022-06-23 18:42 UTC (permalink / raw
  To: gentoo-commits

commit:     fbe9688ab612fca24236ccd4d5602b56c70e38d0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 23 18:42:05 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jun 23 18:42:05 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbe9688a

sci-mathematics/pspp: Stabilize 1.6.0 amd64, #853601

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-mathematics/pspp/pspp-1.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-mathematics/pspp/pspp-1.6.0.ebuild b/sci-mathematics/pspp/pspp-1.6.0.ebuild
index 0fcce2c4be8d..9112d8e746d1 100644
--- a/sci-mathematics/pspp/pspp-1.6.0.ebuild
+++ b/sci-mathematics/pspp/pspp-1.6.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples gtk ncurses nls perl postgres"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2022-06-24  8:24 Agostino Sarubbo
  0 siblings, 0 replies; 29+ messages in thread
From: Agostino Sarubbo @ 2022-06-24  8:24 UTC (permalink / raw
  To: gentoo-commits

commit:     fff29f94d0deb40c62b9455f59a0c75c99b23a4a
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 24 08:24:26 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jun 24 08:24:26 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fff29f94

sci-mathematics/pspp: x86 stable wrt bug #853601

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 sci-mathematics/pspp/pspp-1.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-mathematics/pspp/pspp-1.6.0.ebuild b/sci-mathematics/pspp/pspp-1.6.0.ebuild
index 9112d8e746d1..886cf3d5f542 100644
--- a/sci-mathematics/pspp/pspp-1.6.0.ebuild
+++ b/sci-mathematics/pspp/pspp-1.6.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples gtk ncurses nls perl postgres"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2022-06-26  6:27 Sam James
  0 siblings, 0 replies; 29+ messages in thread
From: Sam James @ 2022-06-26  6:27 UTC (permalink / raw
  To: gentoo-commits

commit:     909f23681d6e3de994f7f9684c377234acedaf1f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 26 06:27:01 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jun 26 06:27:30 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=909f2368

sci-mathematics/pspp: add 1.6.1

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-mathematics/pspp/Manifest          |  1 +
 sci-mathematics/pspp/pspp-1.6.1.ebuild | 85 ++++++++++++++++++++++++++++++++++
 2 files changed, 86 insertions(+)

diff --git a/sci-mathematics/pspp/Manifest b/sci-mathematics/pspp/Manifest
index 84e479a3e5cf..27d27d926ddf 100644
--- a/sci-mathematics/pspp/Manifest
+++ b/sci-mathematics/pspp/Manifest
@@ -1 +1,2 @@
 DIST pspp-1.6.0.tar.gz 9553836 BLAKE2B 4c12003838d7f6c3613d76626d88b24f4dac4b6f507db54b03be5f09027472704ae8ee6ce44d8756c7cd1e12a65ab836cb1f7d004220df8da47f47af85c4a771 SHA512 c8b746b9ea802a95f048e377b22d723701c5e532358aa3e4993edcc73046c4823c440dd988833b69b4ea84ac6b02a442db7daac415bef4c1081efddd9857982d
+DIST pspp-1.6.1.tar.gz 9249022 BLAKE2B 306596cd428436df7f97dec627dbad6a089ff0b00b59b8152dac382a091687f4a82afd0ada7c98dea5bbc0369f0e07f1a85dcdbd84a21bfe09cbee9b43b02610 SHA512 29b475393cbe594bc93af681ec9414e56bdd664a29042017025b8f52e4e67eec1bfab638e79313a5a39929873d1d3a29095c33dbcdf40e226cc3e6010bb040a7

diff --git a/sci-mathematics/pspp/pspp-1.6.1.ebuild b/sci-mathematics/pspp/pspp-1.6.1.ebuild
new file mode 100644
index 000000000000..2fd9cf7edbdb
--- /dev/null
+++ b/sci-mathematics/pspp/pspp-1.6.1.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit python-any-r1 xdg
+
+DESCRIPTION="Program for statistical analysis of sampled data"
+HOMEPAGE="https://www.gnu.org/software/pspp/pspp.html"
+SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc examples gtk ncurses nls perl postgres test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-libs/libxml2:2
+	sci-libs/gsl:0=
+	sys-devel/gettext
+	sys-libs/ncurses:0=
+	sys-libs/readline:0=
+	sys-libs/zlib
+	virtual/libiconv
+	x11-libs/cairo[svg]
+	x11-libs/pango
+	gtk? (
+		dev-util/glib-utils
+		x11-libs/gtk+:3
+		x11-libs/gtksourceview:4=
+		>=x11-libs/spread-sheet-widget-0.7
+	)
+	postgres? ( dev-db/postgresql:=[server] )"
+DEPEND="${RDEPEND}"
+# which dep for tests: https://savannah.gnu.org/bugs/index.php?62675
+BDEPEND="
+	${PYTHON_DEPS}
+	sys-devel/gettext
+	virtual/pkgconfig
+	doc? ( virtual/latex-base )
+	test? ( sys-apps/which )"
+
+pkg_pretend() {
+	ewarn "Starting with pspp-1.4.0 the pspp-mode emacs package is no longer"
+	ewarn "shipped with pspp itself, and should instead be fetched from ELPA:"
+	ewarn "https://elpa.gnu.org/packages/pspp-mode.html"
+}
+
+src_prepare() {
+	default
+
+	sed -i '/appdata$/s/appdata$/metainfo/' Makefile.in || die
+}
+
+src_configure() {
+	econf \
+		$(use_enable nls) \
+		$(use_with gtk gui) \
+		$(use_with perl perl-module) \
+		$(use_with postgres libpq)
+}
+
+src_compile() {
+	default
+
+	if use doc; then
+		emake html pdf
+		HTML_DOCS=( doc/pspp{,-dev}.html )
+	fi
+}
+
+src_install() {
+	default
+
+	use doc && dodoc doc/pspp{,-dev}.pdf
+	if use examples; then
+		dodoc -r examples
+		docompress -x /usr/share/doc/${PF}/examples
+	fi
+
+	find "${ED}" -name '*.la' -type f -delete || die
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2022-07-05  3:57 Sam James
  0 siblings, 0 replies; 29+ messages in thread
From: Sam James @ 2022-07-05  3:57 UTC (permalink / raw
  To: gentoo-commits

commit:     ca781a9ccbf5601f1a72ed2410c27939bef530f0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul  5 03:57:43 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul  5 03:57:50 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca781a9c

sci-mathematics/pspp: add 1.6.2

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-mathematics/pspp/Manifest          |  1 +
 sci-mathematics/pspp/pspp-1.6.2.ebuild | 84 ++++++++++++++++++++++++++++++++++
 2 files changed, 85 insertions(+)

diff --git a/sci-mathematics/pspp/Manifest b/sci-mathematics/pspp/Manifest
index 27d27d926ddf..bbd88e3c34d3 100644
--- a/sci-mathematics/pspp/Manifest
+++ b/sci-mathematics/pspp/Manifest
@@ -1,2 +1,3 @@
 DIST pspp-1.6.0.tar.gz 9553836 BLAKE2B 4c12003838d7f6c3613d76626d88b24f4dac4b6f507db54b03be5f09027472704ae8ee6ce44d8756c7cd1e12a65ab836cb1f7d004220df8da47f47af85c4a771 SHA512 c8b746b9ea802a95f048e377b22d723701c5e532358aa3e4993edcc73046c4823c440dd988833b69b4ea84ac6b02a442db7daac415bef4c1081efddd9857982d
 DIST pspp-1.6.1.tar.gz 9249022 BLAKE2B 306596cd428436df7f97dec627dbad6a089ff0b00b59b8152dac382a091687f4a82afd0ada7c98dea5bbc0369f0e07f1a85dcdbd84a21bfe09cbee9b43b02610 SHA512 29b475393cbe594bc93af681ec9414e56bdd664a29042017025b8f52e4e67eec1bfab638e79313a5a39929873d1d3a29095c33dbcdf40e226cc3e6010bb040a7
+DIST pspp-1.6.2.tar.gz 9249366 BLAKE2B d1a4fb352615be8d5f3af3125d10760648ab16e8d2b42dbf0632de64a5bb5bbe87b9b56661c7f600ea09c6a359e477376d3efb821280023d1825d6eb7b0a299f SHA512 fd8b6b23ae4e4a1a560bf4d20c35e761d84dcde2e220648303303f11e9c17d56285a3d5b3c26e7dad44d52ecc82fdf93fdc51a3533ff907f2ca1f1474922e31f

diff --git a/sci-mathematics/pspp/pspp-1.6.2.ebuild b/sci-mathematics/pspp/pspp-1.6.2.ebuild
new file mode 100644
index 000000000000..ead310f8260b
--- /dev/null
+++ b/sci-mathematics/pspp/pspp-1.6.2.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit python-any-r1 xdg
+
+DESCRIPTION="Program for statistical analysis of sampled data"
+HOMEPAGE="https://www.gnu.org/software/pspp/pspp.html"
+SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+# Note: can drop test infra + which dep in next release!
+IUSE="doc examples gtk ncurses nls perl postgres test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-libs/libxml2:2
+	sci-libs/gsl:0=
+	sys-devel/gettext
+	sys-libs/ncurses:0=
+	sys-libs/readline:0=
+	sys-libs/zlib
+	virtual/libiconv
+	x11-libs/cairo[svg]
+	x11-libs/pango
+	gtk? (
+		dev-util/glib-utils
+		x11-libs/gtk+:3
+		x11-libs/gtksourceview:4=
+		>=x11-libs/spread-sheet-widget-0.7
+	)
+	postgres? ( dev-db/postgresql:=[server] )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	${PYTHON_DEPS}
+	sys-devel/gettext
+	virtual/pkgconfig
+	doc? ( virtual/latex-base )"
+
+pkg_pretend() {
+	ewarn "Starting with pspp-1.4.0 the pspp-mode emacs package is no longer"
+	ewarn "shipped with pspp itself, and should instead be fetched from ELPA:"
+	ewarn "https://elpa.gnu.org/packages/pspp-mode.html"
+}
+
+src_prepare() {
+	default
+
+	sed -i '/appdata$/s/appdata$/metainfo/' Makefile.in || die
+}
+
+src_configure() {
+	econf \
+		$(use_enable nls) \
+		$(use_with gtk gui) \
+		$(use_with perl perl-module) \
+		$(use_with postgres libpq)
+}
+
+src_compile() {
+	default
+
+	if use doc; then
+		emake html pdf
+		HTML_DOCS=( doc/pspp{,-dev}.html )
+	fi
+}
+
+src_install() {
+	default
+
+	use doc && dodoc doc/pspp{,-dev}.pdf
+	if use examples; then
+		dodoc -r examples
+		docompress -x /usr/share/doc/${PF}/examples
+	fi
+
+	find "${ED}" -name '*.la' -type f -delete || die
+}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2022-10-08 18:55 Sam James
  0 siblings, 0 replies; 29+ messages in thread
From: Sam James @ 2022-10-08 18:55 UTC (permalink / raw
  To: gentoo-commits

commit:     1cca6c34483d0ab877b9dcacfa5d30328fe2379a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  8 18:51:55 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Oct  8 18:51:55 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cca6c34

sci-mathematics/pspp: drop 1.6.1

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-mathematics/pspp/Manifest          |  1 -
 sci-mathematics/pspp/pspp-1.6.1.ebuild | 86 ----------------------------------
 2 files changed, 87 deletions(-)

diff --git a/sci-mathematics/pspp/Manifest b/sci-mathematics/pspp/Manifest
index bbd88e3c34d3..8f242c03278e 100644
--- a/sci-mathematics/pspp/Manifest
+++ b/sci-mathematics/pspp/Manifest
@@ -1,3 +1,2 @@
 DIST pspp-1.6.0.tar.gz 9553836 BLAKE2B 4c12003838d7f6c3613d76626d88b24f4dac4b6f507db54b03be5f09027472704ae8ee6ce44d8756c7cd1e12a65ab836cb1f7d004220df8da47f47af85c4a771 SHA512 c8b746b9ea802a95f048e377b22d723701c5e532358aa3e4993edcc73046c4823c440dd988833b69b4ea84ac6b02a442db7daac415bef4c1081efddd9857982d
-DIST pspp-1.6.1.tar.gz 9249022 BLAKE2B 306596cd428436df7f97dec627dbad6a089ff0b00b59b8152dac382a091687f4a82afd0ada7c98dea5bbc0369f0e07f1a85dcdbd84a21bfe09cbee9b43b02610 SHA512 29b475393cbe594bc93af681ec9414e56bdd664a29042017025b8f52e4e67eec1bfab638e79313a5a39929873d1d3a29095c33dbcdf40e226cc3e6010bb040a7
 DIST pspp-1.6.2.tar.gz 9249366 BLAKE2B d1a4fb352615be8d5f3af3125d10760648ab16e8d2b42dbf0632de64a5bb5bbe87b9b56661c7f600ea09c6a359e477376d3efb821280023d1825d6eb7b0a299f SHA512 fd8b6b23ae4e4a1a560bf4d20c35e761d84dcde2e220648303303f11e9c17d56285a3d5b3c26e7dad44d52ecc82fdf93fdc51a3533ff907f2ca1f1474922e31f

diff --git a/sci-mathematics/pspp/pspp-1.6.1.ebuild b/sci-mathematics/pspp/pspp-1.6.1.ebuild
deleted file mode 100644
index befeed9034a2..000000000000
--- a/sci-mathematics/pspp/pspp-1.6.1.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit python-any-r1 xdg
-
-DESCRIPTION="Program for statistical analysis of sampled data"
-HOMEPAGE="https://www.gnu.org/software/pspp/pspp.html"
-SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-# Note: can drop test infra + which dep in next release!
-IUSE="doc examples gtk ncurses nls perl postgres test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	dev-libs/libxml2:2
-	sci-libs/gsl:0=
-	sys-devel/gettext
-	sys-libs/ncurses:0=
-	sys-libs/readline:0=
-	sys-libs/zlib
-	virtual/libiconv
-	x11-libs/cairo[svg]
-	x11-libs/pango
-	gtk? (
-		dev-util/glib-utils
-		x11-libs/gtk+:3
-		x11-libs/gtksourceview:4=
-		>=x11-libs/spread-sheet-widget-0.7
-	)
-	postgres? ( dev-db/postgresql:=[server] )"
-DEPEND="${RDEPEND}"
-# which dep for tests: https://savannah.gnu.org/bugs/index.php?62675
-BDEPEND="
-	${PYTHON_DEPS}
-	sys-devel/gettext
-	virtual/pkgconfig
-	doc? ( virtual/latex-base )
-	test? ( sys-apps/which )"
-
-pkg_pretend() {
-	ewarn "Starting with pspp-1.4.0 the pspp-mode emacs package is no longer"
-	ewarn "shipped with pspp itself, and should instead be fetched from ELPA:"
-	ewarn "https://elpa.gnu.org/packages/pspp-mode.html"
-}
-
-src_prepare() {
-	default
-
-	sed -i '/appdata$/s/appdata$/metainfo/' Makefile.in || die
-}
-
-src_configure() {
-	econf \
-		$(use_enable nls) \
-		$(use_with gtk gui) \
-		$(use_with perl perl-module) \
-		$(use_with postgres libpq)
-}
-
-src_compile() {
-	default
-
-	if use doc; then
-		emake html pdf
-		HTML_DOCS=( doc/pspp{,-dev}.html )
-	fi
-}
-
-src_install() {
-	default
-
-	use doc && dodoc doc/pspp{,-dev}.pdf
-	if use examples; then
-		dodoc -r examples
-		docompress -x /usr/share/doc/${PF}/examples
-	fi
-
-	find "${ED}" -name '*.la' -type f -delete || die
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2022-10-08 18:55 Sam James
  0 siblings, 0 replies; 29+ messages in thread
From: Sam James @ 2022-10-08 18:55 UTC (permalink / raw
  To: gentoo-commits

commit:     aa3e31703d36ceef53ed8ea5050d71b641d9b2a1
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  8 18:52:58 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Oct  8 18:52:58 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa3e3170

sci-mathematics/pspp: fix MissingUseDepDefault on cairo

Closes: https://bugs.gentoo.org/875944
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-mathematics/pspp/{pspp-1.6.0.ebuild => pspp-1.6.0-r1.ebuild} | 2 +-
 sci-mathematics/pspp/{pspp-1.6.2.ebuild => pspp-1.6.2-r1.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-mathematics/pspp/pspp-1.6.0.ebuild b/sci-mathematics/pspp/pspp-1.6.0-r1.ebuild
similarity index 98%
rename from sci-mathematics/pspp/pspp-1.6.0.ebuild
rename to sci-mathematics/pspp/pspp-1.6.0-r1.ebuild
index 886cf3d5f542..e67b3942858f 100644
--- a/sci-mathematics/pspp/pspp-1.6.0.ebuild
+++ b/sci-mathematics/pspp/pspp-1.6.0-r1.ebuild
@@ -24,7 +24,7 @@ RDEPEND="
 	sys-libs/readline:0=
 	sys-libs/zlib
 	virtual/libiconv
-	x11-libs/cairo[svg]
+	x11-libs/cairo[svg(+)]
 	x11-libs/pango
 	gtk? (
 		dev-util/glib-utils

diff --git a/sci-mathematics/pspp/pspp-1.6.2.ebuild b/sci-mathematics/pspp/pspp-1.6.2-r1.ebuild
similarity index 98%
rename from sci-mathematics/pspp/pspp-1.6.2.ebuild
rename to sci-mathematics/pspp/pspp-1.6.2-r1.ebuild
index ead310f8260b..b326f6feb65a 100644
--- a/sci-mathematics/pspp/pspp-1.6.2.ebuild
+++ b/sci-mathematics/pspp/pspp-1.6.2-r1.ebuild
@@ -26,7 +26,7 @@ RDEPEND="
 	sys-libs/readline:0=
 	sys-libs/zlib
 	virtual/libiconv
-	x11-libs/cairo[svg]
+	x11-libs/cairo[svg(+)]
 	x11-libs/pango
 	gtk? (
 		dev-util/glib-utils


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2022-10-09  8:48 Agostino Sarubbo
  0 siblings, 0 replies; 29+ messages in thread
From: Agostino Sarubbo @ 2022-10-09  8:48 UTC (permalink / raw
  To: gentoo-commits

commit:     291b265e36ce2b9886b693b685f619e8f185824d
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  9 08:47:18 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Oct  9 08:47:18 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=291b265e

sci-mathematics/pspp: Stabilize 1.6.2-r1 amd64, #876202

Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 sci-mathematics/pspp/pspp-1.6.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-mathematics/pspp/pspp-1.6.2-r1.ebuild b/sci-mathematics/pspp/pspp-1.6.2-r1.ebuild
index b326f6feb65a..06a736209316 100644
--- a/sci-mathematics/pspp/pspp-1.6.2-r1.ebuild
+++ b/sci-mathematics/pspp/pspp-1.6.2-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
 # Note: can drop test infra + which dep in next release!
 IUSE="doc examples gtk ncurses nls perl postgres test"
 RESTRICT="!test? ( test )"


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2022-10-09  8:55 Agostino Sarubbo
  0 siblings, 0 replies; 29+ messages in thread
From: Agostino Sarubbo @ 2022-10-09  8:55 UTC (permalink / raw
  To: gentoo-commits

commit:     5f038b951ac1806a1c2ac749f0145b7e121defc8
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  9 08:54:39 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Oct  9 08:54:39 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f038b95

sci-mathematics/pspp: Stabilize 1.6.2-r1 x86, #876202

Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 sci-mathematics/pspp/pspp-1.6.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-mathematics/pspp/pspp-1.6.2-r1.ebuild b/sci-mathematics/pspp/pspp-1.6.2-r1.ebuild
index 06a736209316..d98c3b715f1f 100644
--- a/sci-mathematics/pspp/pspp-1.6.2-r1.ebuild
+++ b/sci-mathematics/pspp/pspp-1.6.2-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
 # Note: can drop test infra + which dep in next release!
 IUSE="doc examples gtk ncurses nls perl postgres test"
 RESTRICT="!test? ( test )"


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2022-10-18  2:18 Sam James
  0 siblings, 0 replies; 29+ messages in thread
From: Sam James @ 2022-10-18  2:18 UTC (permalink / raw
  To: gentoo-commits

commit:     39c6abd360836537c3d304d32fbf7efc931ab39d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 18 01:47:06 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 18 02:17:22 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39c6abd3

sci-mathematics/pspp: add savannah upstream metadata

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-mathematics/pspp/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/sci-mathematics/pspp/metadata.xml b/sci-mathematics/pspp/metadata.xml
index 1e1e65d1a849..9d571017a7f6 100644
--- a/sci-mathematics/pspp/metadata.xml
+++ b/sci-mathematics/pspp/metadata.xml
@@ -13,4 +13,7 @@
   statistical procedure support is limited but growing.
   PSPP has both text-based and a GTK+ based graphical user interfaces.
 </longdescription>
+  <upstream>
+    <remote-id type="savannah">pspp</remote-id>
+  </upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2023-01-13 16:52 Sam James
  0 siblings, 0 replies; 29+ messages in thread
From: Sam James @ 2023-01-13 16:52 UTC (permalink / raw
  To: gentoo-commits

commit:     e0dce28a1a32b41efdaf0dfcb9746f1ab3fc21ce
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 13 16:52:10 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 13 16:52:14 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0dce28a

sci-mathematics/pspp: Stabilize 1.6.2-r2 amd64, #890706

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-mathematics/pspp/pspp-1.6.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-mathematics/pspp/pspp-1.6.2-r2.ebuild b/sci-mathematics/pspp/pspp-1.6.2-r2.ebuild
index c6a645b2be9d..f2a368a45588 100644
--- a/sci-mathematics/pspp/pspp-1.6.2-r2.ebuild
+++ b/sci-mathematics/pspp/pspp-1.6.2-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3+ FDL-1.3+"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples gtk ncurses nls perl postgres"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2023-01-23 19:59 Arthur Zamarin
  0 siblings, 0 replies; 29+ messages in thread
From: Arthur Zamarin @ 2023-01-23 19:59 UTC (permalink / raw
  To: gentoo-commits

commit:     e0cdb550943e0931627c8add391f83a5a77984b2
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 23 19:59:44 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 23 19:59:44 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0cdb550

sci-mathematics/pspp: Stabilize 1.6.2-r2 x86, #890706

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sci-mathematics/pspp/pspp-1.6.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-mathematics/pspp/pspp-1.6.2-r2.ebuild b/sci-mathematics/pspp/pspp-1.6.2-r2.ebuild
index 997eac8a4074..e12dc7530437 100644
--- a/sci-mathematics/pspp/pspp-1.6.2-r2.ebuild
+++ b/sci-mathematics/pspp/pspp-1.6.2-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3+ FDL-1.3+"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples gtk ncurses nls perl postgres"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2023-01-23 20:58 Michael Orlitzky
  0 siblings, 0 replies; 29+ messages in thread
From: Michael Orlitzky @ 2023-01-23 20:58 UTC (permalink / raw
  To: gentoo-commits

commit:     e42bb93364b17252b6989b77566c9116e1ce7525
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 23 20:55:25 2023 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Mon Jan 23 20:58:23 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e42bb933

sci-mathematics/pspp: drop 1.6.0-r1, 1.6.2-r1

Bug: https://bugs.gentoo.org/868618
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>

 sci-mathematics/pspp/Manifest             |  1 -
 sci-mathematics/pspp/pspp-1.6.0-r1.ebuild | 82 ------------------------------
 sci-mathematics/pspp/pspp-1.6.2-r1.ebuild | 84 -------------------------------
 3 files changed, 167 deletions(-)

diff --git a/sci-mathematics/pspp/Manifest b/sci-mathematics/pspp/Manifest
index 8f242c03278e..325ce268c7ab 100644
--- a/sci-mathematics/pspp/Manifest
+++ b/sci-mathematics/pspp/Manifest
@@ -1,2 +1 @@
-DIST pspp-1.6.0.tar.gz 9553836 BLAKE2B 4c12003838d7f6c3613d76626d88b24f4dac4b6f507db54b03be5f09027472704ae8ee6ce44d8756c7cd1e12a65ab836cb1f7d004220df8da47f47af85c4a771 SHA512 c8b746b9ea802a95f048e377b22d723701c5e532358aa3e4993edcc73046c4823c440dd988833b69b4ea84ac6b02a442db7daac415bef4c1081efddd9857982d
 DIST pspp-1.6.2.tar.gz 9249366 BLAKE2B d1a4fb352615be8d5f3af3125d10760648ab16e8d2b42dbf0632de64a5bb5bbe87b9b56661c7f600ea09c6a359e477376d3efb821280023d1825d6eb7b0a299f SHA512 fd8b6b23ae4e4a1a560bf4d20c35e761d84dcde2e220648303303f11e9c17d56285a3d5b3c26e7dad44d52ecc82fdf93fdc51a3533ff907f2ca1f1474922e31f

diff --git a/sci-mathematics/pspp/pspp-1.6.0-r1.ebuild b/sci-mathematics/pspp/pspp-1.6.0-r1.ebuild
deleted file mode 100644
index 4eb6618546a6..000000000000
--- a/sci-mathematics/pspp/pspp-1.6.0-r1.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit python-any-r1 xdg
-
-DESCRIPTION="Program for statistical analysis of sampled data"
-HOMEPAGE="https://www.gnu.org/software/pspp/pspp.html"
-SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0/${PV}"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc examples gtk ncurses nls perl postgres"
-
-RDEPEND="
-	dev-libs/libxml2:2
-	sci-libs/gsl:0=
-	sys-devel/gettext
-	sys-libs/ncurses:0=
-	sys-libs/readline:0=
-	sys-libs/zlib
-	virtual/libiconv
-	x11-libs/cairo[svg(+)]
-	x11-libs/pango
-	gtk? (
-		dev-util/glib-utils
-		x11-libs/gtk+:3
-		x11-libs/gtksourceview:4=
-		>=x11-libs/spread-sheet-widget-0.7
-	)
-	postgres? ( dev-db/postgresql:=[server] )"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	${PYTHON_DEPS}
-	sys-devel/gettext
-	virtual/pkgconfig
-	doc? ( virtual/latex-base )"
-
-pkg_pretend() {
-	ewarn "Starting with pspp-1.4.0 the pspp-mode emacs package is no longer"
-	ewarn "shipped with pspp itself, and should instead be fetched from ELPA:"
-	ewarn "https://elpa.gnu.org/packages/pspp-mode.html"
-}
-
-src_prepare() {
-	default
-
-	sed -i '/appdata$/s/appdata$/metainfo/' Makefile.in || die
-}
-
-src_configure() {
-	econf \
-		$(use_enable nls) \
-		$(use_with gtk gui) \
-		$(use_with perl perl-module) \
-		$(use_with postgres libpq)
-}
-
-src_compile() {
-	default
-
-	if use doc; then
-		emake html pdf
-		HTML_DOCS=( doc/pspp{,-dev}.html )
-	fi
-}
-
-src_install() {
-	default
-
-	use doc && dodoc doc/pspp{,-dev}.pdf
-	if use examples; then
-		dodoc -r examples
-		docompress -x /usr/share/doc/${PF}/examples
-	fi
-
-	find "${ED}" -name '*.la' -type f -delete || die
-}

diff --git a/sci-mathematics/pspp/pspp-1.6.2-r1.ebuild b/sci-mathematics/pspp/pspp-1.6.2-r1.ebuild
deleted file mode 100644
index 0c8dc2aa7ca4..000000000000
--- a/sci-mathematics/pspp/pspp-1.6.2-r1.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit python-any-r1 xdg
-
-DESCRIPTION="Program for statistical analysis of sampled data"
-HOMEPAGE="https://www.gnu.org/software/pspp/pspp.html"
-SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0/${PV}"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-# Note: can drop test infra + which dep in next release!
-IUSE="doc examples gtk ncurses nls perl postgres test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	dev-libs/libxml2:2
-	sci-libs/gsl:0=
-	sys-devel/gettext
-	sys-libs/ncurses:0=
-	sys-libs/readline:0=
-	sys-libs/zlib
-	virtual/libiconv
-	x11-libs/cairo[svg(+)]
-	x11-libs/pango
-	gtk? (
-		dev-util/glib-utils
-		x11-libs/gtk+:3
-		x11-libs/gtksourceview:4=
-		>=x11-libs/spread-sheet-widget-0.7
-	)
-	postgres? ( dev-db/postgresql:=[server] )"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	${PYTHON_DEPS}
-	sys-devel/gettext
-	virtual/pkgconfig
-	doc? ( virtual/latex-base )"
-
-pkg_pretend() {
-	ewarn "Starting with pspp-1.4.0 the pspp-mode emacs package is no longer"
-	ewarn "shipped with pspp itself, and should instead be fetched from ELPA:"
-	ewarn "https://elpa.gnu.org/packages/pspp-mode.html"
-}
-
-src_prepare() {
-	default
-
-	sed -i '/appdata$/s/appdata$/metainfo/' Makefile.in || die
-}
-
-src_configure() {
-	econf \
-		$(use_enable nls) \
-		$(use_with gtk gui) \
-		$(use_with perl perl-module) \
-		$(use_with postgres libpq)
-}
-
-src_compile() {
-	default
-
-	if use doc; then
-		emake html pdf
-		HTML_DOCS=( doc/pspp{,-dev}.html )
-	fi
-}
-
-src_install() {
-	default
-
-	use doc && dodoc doc/pspp{,-dev}.pdf
-	if use examples; then
-		dodoc -r examples
-		docompress -x /usr/share/doc/${PF}/examples
-	fi
-
-	find "${ED}" -name '*.la' -type f -delete || die
-}


^ permalink raw reply related	[flat|nested] 29+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/
@ 2024-07-31  9:24 Pacho Ramos
  0 siblings, 0 replies; 29+ messages in thread
From: Pacho Ramos @ 2024-07-31  9:24 UTC (permalink / raw
  To: gentoo-commits

commit:     816b27161748ac6545ccbc5ba1ff51a7c9a15c75
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 31 08:36:23 2024 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Jul 31 09:23:08 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=816b2716

sci-mathematics/pspp: enable py3.12

Closes: https://bugs.gentoo.org/929796
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 sci-mathematics/pspp/pspp-1.6.2-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-mathematics/pspp/pspp-1.6.2-r2.ebuild b/sci-mathematics/pspp/pspp-1.6.2-r2.ebuild
index 997eac8a4074..7bd92ddfe088 100644
--- a/sci-mathematics/pspp/pspp-1.6.2-r2.ebuild
+++ b/sci-mathematics/pspp/pspp-1.6.2-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit python-any-r1 xdg
 


^ permalink raw reply related	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2024-07-31  9:24 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-05  3:57 [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pspp/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-07-31  9:24 Pacho Ramos
2023-01-23 20:58 Michael Orlitzky
2023-01-23 19:59 Arthur Zamarin
2023-01-13 16:52 Sam James
2022-10-18  2:18 Sam James
2022-10-09  8:55 Agostino Sarubbo
2022-10-09  8:48 Agostino Sarubbo
2022-10-08 18:55 Sam James
2022-10-08 18:55 Sam James
2022-06-26  6:27 Sam James
2022-06-24  8:24 Agostino Sarubbo
2022-06-23 18:42 Sam James
2022-06-07  6:34 Sam James
2020-11-26 22:56 David Seifert
2020-11-26 19:41 Sam James
2020-11-01 15:50 Sam James
2020-10-18 15:11 Thomas Deutschmann
2019-12-20 22:49 Ulrich Müller
2019-01-26  1:36 Andreas K. Hüttel
2019-01-17 16:58 Mikle Kolyada
2019-01-02 19:01 Thomas Deutschmann
2018-12-24 22:39 Zac Medico
2018-12-07 20:11 Alexey Shvetsov
2016-07-24 12:27 Jeroen Roovers
2016-05-05 22:27 David Seifert
2016-05-05 22:27 David Seifert
2016-05-05 22:27 David Seifert
2016-04-29 21:47 Sebastien Fabbro

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox