From: "Andreas K. Hüttel" <dilfridge@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/klayout/
Date: Tue, 14 Mar 2023 13:09:18 +0000 (UTC) [thread overview]
Message-ID: <1678799243.4c08ce3befecb11223fe395c0a882ec7908b52f9.dilfridge@gentoo> (raw)
commit: 4c08ce3befecb11223fe395c0a882ec7908b52f9
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 14 13:07:23 2023 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Tue Mar 14 13:07:23 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c08ce3b
sci-electronics/klayout: version bump 0.28.5
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
sci-electronics/klayout/Manifest | 1 +
sci-electronics/klayout/klayout-0.28.5.ebuild | 91 +++++++++++++++++++++++++++
2 files changed, 92 insertions(+)
diff --git a/sci-electronics/klayout/Manifest b/sci-electronics/klayout/Manifest
index 06d674ca2e45..ea7cf38b29af 100644
--- a/sci-electronics/klayout/Manifest
+++ b/sci-electronics/klayout/Manifest
@@ -1,2 +1,3 @@
DIST klayout-0.27.10.tar.gz 57428098 BLAKE2B 3f64ed6a65ec7d2732691594f50d02f160725a3306cd0d0593f8c2b5978d5cf76e004ed3347bb6e9d9473b8e0974bc04de101ec3bf168faf147e6c64c5f0bdcb SHA512 a637b0a0bd1eaa3c858c333791c5592bc8a4dc1db7413b83432d7bedce9ba7e1210c76086a4f39504bc23a11778a45370b86262c88daa579517e1dee940ecda7
DIST klayout-0.27.12.tar.gz 57616686 BLAKE2B 18c69c799412554547f9b671c80f097b93b15fb04272c4ea6f06b54783fa97ac0da5f50ea61fbf88e75e5436524c9271ffdb7560911b7b8e130a4a287ba2cf60 SHA512 25bb854b9f265801a9ee13bdead0ae1fa4ce21bd0d018c10b0c89aff72f48d4131e80987750bd47e3996296ced1936fffb4ed02daa5a7bdff5f05ae6e820e067
+DIST klayout-0.28.5.tar.gz 88218961 BLAKE2B 59154bc1cc6596c4deb10b9c59f8957c2fcb8815b8d8ab09e79521a2e281e82d5437a222a48e0f378188b34162cd92229694c58e15ff74b6cde4c2b65df7bfe7 SHA512 ae2f4a08d8939eccba41f2a76ef3e1a97bdd61925329f3d3c314206dfc2783e0db0ffad58cc1357355f0853079987b9c083dde78ae29914b4db8aadc24181082
diff --git a/sci-electronics/klayout/klayout-0.28.5.ebuild b/sci-electronics/klayout/klayout-0.28.5.ebuild
new file mode 100644
index 000000000000..8aceae0ea200
--- /dev/null
+++ b/sci-electronics/klayout/klayout-0.28.5.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+RUBY_OPTIONAL=no
+USE_RUBY="ruby27"
+# note: define maximally ONE implementation here
+
+PYTHON_COMPAT=( python3_{9,10,11} )
+
+inherit toolchain-funcs python-single-r1 ruby-ng
+
+if [[ ${PV} = 9999* ]]; then
+ EGIT_REPO_URI="https://github.com/klayoutmatthias/${PN}.git"
+ inherit git-r3
+ EGIT_CHECKOUT_DIR=${WORKDIR}/all/${P}
+else
+ SRC_URI="https://www.klayout.org/downloads/source/${P}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Viewer and editor for GDS and OASIS integrated circuit layouts"
+HOMEPAGE="https://www.klayout.de/"
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+RDEPEND="
+ dev-qt/designer:5
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtmultimedia:5[widgets]
+ dev-qt/qtnetwork:5[ssl]
+ dev-qt/qtprintsupport:5
+ dev-qt/qtsql:5
+ dev-qt/qtsvg:5
+ dev-qt/qttest:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtxml:5
+ dev-qt/qtxmlpatterns:5
+ sys-libs/zlib
+ ${PYTHON_DEPS}
+ $(ruby_implementations_depend)
+"
+DEPEND="${RDEPEND}"
+
+pkg_setup() {
+ python-single-r1_pkg_setup
+ ruby-ng_pkg_setup
+}
+
+each_ruby_configure() {
+ tc-export CC CXX AR LD RANLIB
+ export CFLAGS CXXFLAGS
+ ./build.sh \
+ -expert \
+ -dry-run \
+ -qmake "$EPREFIX/usr/$(get_libdir)/qt5/bin/qmake" \
+ -ruby "${RUBY}" \
+ -python "${PYTHON}" \
+ -build . \
+ -bin "${T}/bin" \
+ -rpath "$EPREFIX/usr/$(get_libdir)/klayout" \
+ -option "${MAKEOPTS}" \
+ -with-qtbinding \
+ -without-64bit-coord \
+ -qt5 || die "Configuration failed"
+}
+
+each_ruby_compile() {
+ emake all
+}
+
+each_ruby_install() {
+ emake install
+
+ cd "${T}/bin" || die
+
+ dodir "/usr/$(get_libdir)/klayout"
+ mv lib* lay_plugins db_plugins "${ED}/usr/$(get_libdir)/klayout/" || die
+
+ mkdir -p "${D}/$(python_get_sitedir)" || die
+ mv pymod/* "${D}/$(python_get_sitedir)/" || die
+ rmdir pymod || die
+
+ dobin *
+
+ python_optimize
+}
next reply other threads:[~2023-03-14 13:09 UTC|newest]
Thread overview: 72+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-14 13:09 Andreas K. Hüttel [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-08 18:54 [gentoo-commits] repo/gentoo:master commit in: sci-electronics/klayout/ Arthur Zamarin
2025-02-22 17:51 Andreas K. Hüttel
2025-02-15 16:19 Andreas K. Hüttel
2025-02-04 13:33 Andreas K. Hüttel
2025-02-04 13:33 Andreas K. Hüttel
2025-02-04 12:56 Andreas K. Hüttel
2024-10-07 5:39 Sam James
2024-09-27 11:34 Andreas K. Hüttel
2023-06-25 20:18 Andreas K. Hüttel
2023-06-25 20:18 Andreas K. Hüttel
2023-06-25 20:18 Andreas K. Hüttel
2023-06-18 13:18 Andreas K. Hüttel
2023-03-29 13:04 Sam James
2023-03-29 12:29 Sam James
2023-03-28 22:19 Sam James
2023-03-28 22:19 Sam James
2023-03-14 13:09 Andreas K. Hüttel
2023-03-14 13:09 Andreas K. Hüttel
2022-11-24 19:18 Andreas K. Hüttel
2022-11-24 19:18 Andreas K. Hüttel
2022-11-24 19:18 Andreas K. Hüttel
2022-07-09 12:26 Andreas K. Hüttel
2022-07-09 11:48 Andreas K. Hüttel
2022-07-09 11:48 Andreas K. Hüttel
2022-07-09 11:48 Andreas K. Hüttel
2022-02-06 15:12 Andreas K. Hüttel
2022-02-06 15:12 Andreas K. Hüttel
2022-02-06 15:12 Andreas K. Hüttel
2021-09-18 19:55 Andreas K. Hüttel
2021-09-18 19:55 Andreas K. Hüttel
2021-05-29 13:27 Andreas K. Hüttel
2021-05-29 13:27 Andreas K. Hüttel
2021-05-29 13:27 Andreas K. Hüttel
2021-03-12 23:58 Andreas K. Hüttel
2021-02-28 21:21 Andreas K. Hüttel
2021-02-28 21:21 Andreas K. Hüttel
2021-01-23 11:20 Andreas K. Hüttel
2021-01-21 20:53 Andreas K. Hüttel
2020-09-29 9:11 Andreas K. Hüttel
2020-09-29 9:11 Andreas K. Hüttel
2020-09-19 22:56 Andreas K. Hüttel
2020-06-04 20:00 Andreas K. Hüttel
2020-05-06 21:15 Andreas K. Hüttel
2020-05-06 21:15 Andreas K. Hüttel
2020-04-19 21:01 Andreas K. Hüttel
2020-04-19 14:33 Andreas K. Hüttel
2020-03-30 5:39 Hans de Graaff
2020-02-10 12:12 Michał Górny
2019-08-13 7:40 Michał Górny
2019-08-12 17:58 Michał Górny
2018-12-14 17:12 Andreas K. Hüttel
2018-06-09 14:09 Aaron Bauman
2018-04-14 7:28 Hans de Graaff
2018-03-19 0:54 Andreas Hüttel
2018-01-25 20:33 Andreas Sturmlechner
2018-01-25 20:32 Andreas Sturmlechner
2018-01-25 18:06 Andreas Sturmlechner
2018-01-25 16:43 Andreas Sturmlechner
2018-01-25 16:43 Andreas Sturmlechner
2018-01-25 16:43 Andreas Sturmlechner
2017-12-27 18:39 Andreas Hüttel
2017-10-09 23:44 Andreas Hüttel
2017-10-01 6:04 Andreas Hüttel
2017-09-30 1:48 Andreas Hüttel
2017-09-29 13:18 Andreas Hüttel
2017-09-29 13:18 Andreas Hüttel
2017-08-20 8:59 Hans de Graaff
2017-08-20 8:59 Hans de Graaff
2017-08-06 7:47 Andreas Hüttel
2016-12-13 20:50 Andreas Hüttel
2016-12-03 7:36 Hans de Graaff
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1678799243.4c08ce3befecb11223fe395c0a882ec7908b52f9.dilfridge@gentoo \
--to=dilfridge@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox