* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/linsmith/
@ 2015-11-30 18:11 Thomas Beierlein
0 siblings, 0 replies; 7+ messages in thread
From: Thomas Beierlein @ 2015-11-30 18:11 UTC (permalink / raw
To: gentoo-commits
commit: a919e9ed8525ed1f2feee7a53471743ead534a79
Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 30 18:10:55 2015 +0000
Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
CommitDate: Mon Nov 30 18:10:55 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a919e9ed
Version bump
Package-Manager: portage-2.2.26
sci-electronics/linsmith/Manifest | 1 +
sci-electronics/linsmith/linsmith-0.99.30.ebuild | 66 ++++++++++++++++++++++++
2 files changed, 67 insertions(+)
diff --git a/sci-electronics/linsmith/Manifest b/sci-electronics/linsmith/Manifest
index 343b1a8..56f8576 100644
--- a/sci-electronics/linsmith/Manifest
+++ b/sci-electronics/linsmith/Manifest
@@ -1 +1,2 @@
DIST linsmith-0.99.28.tar.gz 1132315 SHA256 22196edb6e4c72a45a3d0a794a0bb140ab5932a5e59a40e2e9ee143b53c4235d SHA512 0e8811b64703884dc44e0d8c6a6eeefbb3ba65d8af7573a87e1985e9061d3d947f5e35631dbca2444a9ef2600b523358d6b65089ae746312f9e3397a9dd99118 WHIRLPOOL 41416593eb0eb8913bbd1b9d4cc104830f18eb0835b5c262e8725f3a45162a012167d396205dfc362b9908ed35a7643540dc4fe055772c8806d7c02743746dcb
+DIST linsmith-0.99.30.tar.gz 1132438 SHA256 76739c0cdc13f193793842ea4ddd027a27143a6672994de485b9902c32a41aa3 SHA512 d1f6cd3895b7c217de49c214f8b86b1bb9ce97d540546f0004b7f320b7cf142652cf0ec51ce48cf32b89564bf408546bf10d5f4937544cf9e8a4d87d1db5bed5 WHIRLPOOL c79553bea2f35a4ed04ee028ca92c06856f13d1cb966242a1538e3719ea69330f531b1e7dcba7d6f38cdc29cedda987a2544545cea4aa1648393bcbbbeea0ac5
diff --git a/sci-electronics/linsmith/linsmith-0.99.30.ebuild b/sci-electronics/linsmith/linsmith-0.99.30.ebuild
new file mode 100644
index 0000000..8d7a910
--- /dev/null
+++ b/sci-electronics/linsmith/linsmith-0.99.30.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils autotools
+
+DESCRIPTION="Smith charting program, mainly designed for educational use"
+HOMEPAGE="http://www.jcoppens.com/soft/linsmith/index.en.php"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc examples"
+
+RDEPEND="
+ x11-libs/gtk+:2
+ dev-libs/libxml2:2
+ dev-libs/glib:2
+ dev-libs/atk
+ gnome-base/libgnome
+ gnome-base/libgnomecanvas
+ gnome-base/libgnomeui"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
+
+src_prepare() {
+ # This patch is to prevent make install copying
+ # the examples in /usr/share/linsmith
+ # Now they are cp to the correct location.
+ epatch \
+ "${FILESDIR}"/${PN}-datafiles.patch
+
+ # fix QA warnings about wrong categories in .desktop file
+ sed -i -e "s/Application;Engineering;/Education;Science;Electronics;/" \
+ -e "s/Encoding=/#Encoding=/" \
+ ${PN}.desktop || die
+
+ # fix QA warnings about 'maintainer mode'
+ eautoreconf
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+
+ insinto "/usr/share/${PN}"
+ doins datafiles/conv0809
+
+ dodoc AUTHORS ChangeLog NEWS NOTES README THANKS TODO
+ doman doc/${PN}.1
+
+ domenu ${PN}.desktop
+ doicon ${PN}_icon.xpm
+
+ if use doc; then
+ insinto "/usr/share/doc/${PF}"
+ doins doc/manual.pdf
+ fi
+
+ if use examples; then
+ insinto "/usr/share/doc/${PF}/examples"
+ doins datafiles/*.circ datafiles/*.load || die
+ fi
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/linsmith/
@ 2016-09-26 12:36 Agostino Sarubbo
0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo @ 2016-09-26 12:36 UTC (permalink / raw
To: gentoo-commits
commit: 9b34b23a18b3d482b50deffd88ce4b30cacc182f
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 26 12:33:14 2016 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Sep 26 12:35:27 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b34b23a
sci-electronics/linsmith: amd64 stable wrt bug #592632
Package-Manager: portage-2.2.28
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sci-electronics/linsmith/linsmith-0.99.30.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-electronics/linsmith/linsmith-0.99.30.ebuild b/sci-electronics/linsmith/linsmith-0.99.30.ebuild
index 8d7a910..e91c600 100644
--- a/sci-electronics/linsmith/linsmith-0.99.30.ebuild
+++ b/sci-electronics/linsmith/linsmith-0.99.30.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="doc examples"
RDEPEND="
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/linsmith/
@ 2017-01-03 16:45 Thomas Beierlein
0 siblings, 0 replies; 7+ messages in thread
From: Thomas Beierlein @ 2017-01-03 16:45 UTC (permalink / raw
To: gentoo-commits
commit: 95cbb77a18d2b1d533995886ad0bb156b6fad541
Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 3 16:44:28 2017 +0000
Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
CommitDate: Tue Jan 3 16:44:28 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95cbb77a
sci-electronics/linsmith: fix icon path (bug #604314). Thks A. Truccone
Package-Manager: Portage-2.3.3, Repoman-2.3.1
.../linsmith/linsmith-0.99.30-r1.ebuild | 68 ++++++++++++++++++++++
1 file changed, 68 insertions(+)
diff --git a/sci-electronics/linsmith/linsmith-0.99.30-r1.ebuild b/sci-electronics/linsmith/linsmith-0.99.30-r1.ebuild
new file mode 100644
index 00000000..b8bc4e2
--- /dev/null
+++ b/sci-electronics/linsmith/linsmith-0.99.30-r1.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils autotools
+
+DESCRIPTION="Smith charting program, mainly designed for educational use"
+HOMEPAGE="http://www.jcoppens.com/soft/linsmith/index.en.php"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc examples"
+
+RDEPEND="
+ x11-libs/gtk+:2
+ dev-libs/libxml2:2
+ dev-libs/glib:2
+ dev-libs/atk
+ gnome-base/libgnome
+ gnome-base/libgnomecanvas
+ gnome-base/libgnomeui"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
+
+src_prepare() {
+ # This patch is to prevent make install copying
+ # the examples in /usr/share/linsmith
+ # Now they are cp to the correct location.
+ epatch \
+ "${FILESDIR}"/${PN}-datafiles.patch
+
+ # fix QA warnings about wrong categories and location of icon file
+ # in .desktop file
+ sed -i -e "s/Application;Engineering;/Education;Science;Electronics;/" \
+ -e "s/Encoding=/#Encoding=/" \
+ -e "s#pixmaps/linsmith/l#pixmaps/l#" \
+ ${PN}.desktop || die
+
+ # fix QA warnings about 'maintainer mode'
+ eautoreconf
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+
+ insinto "/usr/share/${PN}"
+ doins datafiles/conv0809
+
+ dodoc AUTHORS ChangeLog NEWS NOTES README THANKS TODO
+ doman doc/${PN}.1
+
+ domenu ${PN}.desktop
+ doicon ${PN}_icon.xpm
+
+ if use doc; then
+ insinto "/usr/share/doc/${PF}"
+ doins doc/manual.pdf
+ fi
+
+ if use examples; then
+ insinto "/usr/share/doc/${PF}/examples"
+ doins datafiles/*.circ datafiles/*.load || die
+ fi
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/linsmith/
@ 2017-06-08 12:44 Agostino Sarubbo
0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo @ 2017-06-08 12:44 UTC (permalink / raw
To: gentoo-commits
commit: 7ce0138eabe1d175d29e8c88ae0c654d7ba0af10
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 8 12:44:29 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Jun 8 12:44:29 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ce0138e
sci-electronics/linsmith: amd64 stable wrt bug #620998
Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sci-electronics/linsmith/linsmith-0.99.30-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-electronics/linsmith/linsmith-0.99.30-r1.ebuild b/sci-electronics/linsmith/linsmith-0.99.30-r1.ebuild
index 77a6b3b5c69..a03d8b16fd5 100644
--- a/sci-electronics/linsmith/linsmith-0.99.30-r1.ebuild
+++ b/sci-electronics/linsmith/linsmith-0.99.30-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="doc examples"
RDEPEND="
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/linsmith/
@ 2017-06-24 11:01 Thomas Beierlein
0 siblings, 0 replies; 7+ messages in thread
From: Thomas Beierlein @ 2017-06-24 11:01 UTC (permalink / raw
To: gentoo-commits
commit: a516c52822d2b2d22864268fd941025bc9bdf623
Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 24 11:01:34 2017 +0000
Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
CommitDate: Sat Jun 24 11:01:34 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a516c528
Drop old
Package-Manager: Portage-2.3.6, Repoman-2.3.2
sci-electronics/linsmith/Manifest | 1 -
sci-electronics/linsmith/linsmith-0.99.28.ebuild | 65 ------------------------
sci-electronics/linsmith/linsmith-0.99.30.ebuild | 65 ------------------------
3 files changed, 131 deletions(-)
diff --git a/sci-electronics/linsmith/Manifest b/sci-electronics/linsmith/Manifest
index 56f8576fa37..dd993c8b29b 100644
--- a/sci-electronics/linsmith/Manifest
+++ b/sci-electronics/linsmith/Manifest
@@ -1,2 +1 @@
-DIST linsmith-0.99.28.tar.gz 1132315 SHA256 22196edb6e4c72a45a3d0a794a0bb140ab5932a5e59a40e2e9ee143b53c4235d SHA512 0e8811b64703884dc44e0d8c6a6eeefbb3ba65d8af7573a87e1985e9061d3d947f5e35631dbca2444a9ef2600b523358d6b65089ae746312f9e3397a9dd99118 WHIRLPOOL 41416593eb0eb8913bbd1b9d4cc104830f18eb0835b5c262e8725f3a45162a012167d396205dfc362b9908ed35a7643540dc4fe055772c8806d7c02743746dcb
DIST linsmith-0.99.30.tar.gz 1132438 SHA256 76739c0cdc13f193793842ea4ddd027a27143a6672994de485b9902c32a41aa3 SHA512 d1f6cd3895b7c217de49c214f8b86b1bb9ce97d540546f0004b7f320b7cf142652cf0ec51ce48cf32b89564bf408546bf10d5f4937544cf9e8a4d87d1db5bed5 WHIRLPOOL c79553bea2f35a4ed04ee028ca92c06856f13d1cb966242a1538e3719ea69330f531b1e7dcba7d6f38cdc29cedda987a2544545cea4aa1648393bcbbbeea0ac5
diff --git a/sci-electronics/linsmith/linsmith-0.99.28.ebuild b/sci-electronics/linsmith/linsmith-0.99.28.ebuild
deleted file mode 100644
index 8323a48a295..00000000000
--- a/sci-electronics/linsmith/linsmith-0.99.28.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils autotools
-
-DESCRIPTION="Smith charting program, mainly designed for educational use"
-HOMEPAGE="http://www.jcoppens.com/soft/linsmith/index.en.php"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc examples"
-
-RDEPEND="
- x11-libs/gtk+:2
- dev-libs/libxml2:2
- dev-libs/glib:2
- dev-libs/atk
- gnome-base/libgnome
- gnome-base/libgnomecanvas
- gnome-base/libgnomeui"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_prepare() {
- # This patch is to prevent make install copying
- # the examples in /usr/share/linsmith
- # Now they are cp to the correct location.
- epatch \
- "${FILESDIR}"/${PN}-datafiles.patch
-
- # fix QA warnings about wrong categories in .desktop file
- sed -i -e "s/Application;Engineering;/Education;Science;Electronics;/" \
- -e "s/Encoding=/#Encoding=/" \
- ${PN}.desktop || die
-
- # fix QA warnings about 'maintainer mode'
- eautoreconf
-}
-
-src_install() {
- emake DESTDIR="${D}" install
-
- insinto "/usr/share/${PN}"
- doins datafiles/conv0809
-
- dodoc AUTHORS ChangeLog NEWS NOTES README THANKS TODO
- doman doc/${PN}.1
-
- domenu ${PN}.desktop
- doicon ${PN}_icon.xpm
-
- if use doc; then
- insinto "/usr/share/doc/${PF}"
- doins doc/manual.pdf
- fi
-
- if use examples; then
- insinto "/usr/share/doc/${PF}/examples"
- doins datafiles/*.circ datafiles/*.load || die
- fi
-}
diff --git a/sci-electronics/linsmith/linsmith-0.99.30.ebuild b/sci-electronics/linsmith/linsmith-0.99.30.ebuild
deleted file mode 100644
index 9ab130e8919..00000000000
--- a/sci-electronics/linsmith/linsmith-0.99.30.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils autotools
-
-DESCRIPTION="Smith charting program, mainly designed for educational use"
-HOMEPAGE="http://www.jcoppens.com/soft/linsmith/index.en.php"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc examples"
-
-RDEPEND="
- x11-libs/gtk+:2
- dev-libs/libxml2:2
- dev-libs/glib:2
- dev-libs/atk
- gnome-base/libgnome
- gnome-base/libgnomecanvas
- gnome-base/libgnomeui"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_prepare() {
- # This patch is to prevent make install copying
- # the examples in /usr/share/linsmith
- # Now they are cp to the correct location.
- epatch \
- "${FILESDIR}"/${PN}-datafiles.patch
-
- # fix QA warnings about wrong categories in .desktop file
- sed -i -e "s/Application;Engineering;/Education;Science;Electronics;/" \
- -e "s/Encoding=/#Encoding=/" \
- ${PN}.desktop || die
-
- # fix QA warnings about 'maintainer mode'
- eautoreconf
-}
-
-src_install() {
- emake DESTDIR="${D}" install
-
- insinto "/usr/share/${PN}"
- doins datafiles/conv0809
-
- dodoc AUTHORS ChangeLog NEWS NOTES README THANKS TODO
- doman doc/${PN}.1
-
- domenu ${PN}.desktop
- doicon ${PN}_icon.xpm
-
- if use doc; then
- insinto "/usr/share/doc/${PF}"
- doins doc/manual.pdf
- fi
-
- if use examples; then
- insinto "/usr/share/doc/${PF}/examples"
- doins datafiles/*.circ datafiles/*.load || die
- fi
-}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/linsmith/
@ 2018-07-30 14:58 Thomas Beierlein
0 siblings, 0 replies; 7+ messages in thread
From: Thomas Beierlein @ 2018-07-30 14:58 UTC (permalink / raw
To: gentoo-commits
commit: fe8e2d343f5a9aa351759be72bae2be00c53f554
Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 30 14:54:27 2018 +0000
Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
CommitDate: Mon Jul 30 14:57:47 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe8e2d34
sci-electronics/linsmith: Minor maintenance release
Package-Manager: Portage-2.3.44, Repoman-2.3.10
sci-electronics/linsmith/Manifest | 1 +
sci-electronics/linsmith/linsmith-0.99.31.ebuild | 70 ++++++++++++++++++++++++
2 files changed, 71 insertions(+)
diff --git a/sci-electronics/linsmith/Manifest b/sci-electronics/linsmith/Manifest
index bd57a1676e1..96f5ae64740 100644
--- a/sci-electronics/linsmith/Manifest
+++ b/sci-electronics/linsmith/Manifest
@@ -1 +1,2 @@
DIST linsmith-0.99.30.tar.gz 1132438 BLAKE2B fda024052d0aa1af7254aa37975a62bcb1bd2dbeb020202853bc32c85e6859bda6153fb5e6af8f18a4bf29a11c5eb7bd5eaacc68ebbf20b7d2622cc0d04d77d1 SHA512 d1f6cd3895b7c217de49c214f8b86b1bb9ce97d540546f0004b7f320b7cf142652cf0ec51ce48cf32b89564bf408546bf10d5f4937544cf9e8a4d87d1db5bed5
+DIST linsmith-0.99.31.tar.gz 1138998 BLAKE2B c8b32bf2530b87a0bb9f2b7914e5ccdb6c8ad28b57b919b93c4ed0fb272a2e61f588adb3794b81565580a68413f3cb4e43ac861c4a70cce105d3e821d21eccf3 SHA512 0218992243ff5db6efa39e01d7eddf6d44d921fe4caf131d020416d320a542f19bd577a3bbd9fc8df5f1ccb62ba152d02f825bab8fae55dadd262c5dce47c076
diff --git a/sci-electronics/linsmith/linsmith-0.99.31.ebuild b/sci-electronics/linsmith/linsmith-0.99.31.ebuild
new file mode 100644
index 00000000000..af9078102c2
--- /dev/null
+++ b/sci-electronics/linsmith/linsmith-0.99.31.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools desktop
+
+DESCRIPTION="Smith charting program, mainly designed for educational use"
+HOMEPAGE="http://www.jcoppens.com/soft/linsmith/index.en.php"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc examples"
+
+RDEPEND="
+ x11-libs/gtk+:2
+ dev-libs/libxml2:2
+ dev-libs/glib:2
+ dev-libs/atk
+ gnome-base/libgnome
+ gnome-base/libgnomecanvas
+ gnome-base/libgnomeui"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog NEWS NOTES README THANKS TODO )
+
+src_prepare() {
+ eapply_user
+
+ # This patch is to prevent make install copying
+ # the examples in /usr/share/linsmith
+ # Now they are cp to the correct location.
+ eapply -p0 "${FILESDIR}"/${PN}-datafiles.patch
+
+ # fix QA warnings about wrong categories and location of icon file
+ # in .desktop file
+ sed -i -e "s/Application;Engineering;/Education;Science;Electronics;/" \
+ -e "s/Encoding=/#Encoding=/" \
+ -e "s#pixmaps/linsmith/l#pixmaps/l#" \
+ ${PN}.desktop || die
+
+ # fix QA warnings about 'maintainer mode'
+ eautoreconf
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+
+ insinto "/usr/share/${PN}"
+ doins datafiles/conv0809
+
+ einstalldocs
+ doman doc/${PN}.1
+
+ domenu ${PN}.desktop
+ doicon ${PN}_icon.xpm
+
+ if use doc; then
+ insinto "/usr/share/doc/${PF}"
+ doins doc/manual.pdf
+ fi
+
+ if use examples; then
+ insinto "/usr/share/doc/${PF}/examples"
+ doins datafiles/*.circ datafiles/*.load || die
+ fi
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-electronics/linsmith/
@ 2019-03-16 21:39 Agostino Sarubbo
0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo @ 2019-03-16 21:39 UTC (permalink / raw
To: gentoo-commits
commit: 4bbba8ab18abcfef727e2448872940fe0bd216d0
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 16 21:38:23 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Mar 16 21:38:23 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bbba8ab
sci-electronics/linsmith: amd64 stable wrt bug #672080
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"
sci-electronics/linsmith/linsmith-0.99.31.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sci-electronics/linsmith/linsmith-0.99.31.ebuild b/sci-electronics/linsmith/linsmith-0.99.31.ebuild
index af9078102c2..734d77c95d5 100644
--- a/sci-electronics/linsmith/linsmith-0.99.31.ebuild
+++ b/sci-electronics/linsmith/linsmith-0.99.31.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="doc examples"
RDEPEND="
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2019-03-16 21:39 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-30 14:58 [gentoo-commits] repo/gentoo:master commit in: sci-electronics/linsmith/ Thomas Beierlein
-- strict thread matches above, loose matches on Subject: below --
2019-03-16 21:39 Agostino Sarubbo
2017-06-24 11:01 Thomas Beierlein
2017-06-08 12:44 Agostino Sarubbo
2017-01-03 16:45 Thomas Beierlein
2016-09-26 12:36 Agostino Sarubbo
2015-11-30 18:11 Thomas Beierlein
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox