* [gentoo-commits] proj/kde:master commit in: app-i18n/pology/
@ 2020-09-19 20:03 Andreas Sturmlechner
0 siblings, 0 replies; 3+ messages in thread
From: Andreas Sturmlechner @ 2020-09-19 20:03 UTC (permalink / raw
To: gentoo-commits
commit: 011a0ad3f04c47009c2bd48bda18347339302e91
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 19 13:13:47 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Sep 19 20:03:14 2020 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=011a0ad3
app-i18n/pology: live ebuild moved from Gentoo ebuild repo
Package-Manager: Portage-3.0.7, Repoman-3.0.1
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
app-i18n/pology/metadata.xml | 8 +++++
app-i18n/pology/pology-9999.ebuild | 71 ++++++++++++++++++++++++++++++++++++++
2 files changed, 79 insertions(+)
diff --git a/app-i18n/pology/metadata.xml b/app-i18n/pology/metadata.xml
new file mode 100644
index 0000000000..2fdbf33d96
--- /dev/null
+++ b/app-i18n/pology/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>kde@gentoo.org</email>
+ <name>Gentoo KDE Project</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/app-i18n/pology/pology-9999.ebuild b/app-i18n/pology/pology-9999.ebuild
new file mode 100644
index 0000000000..302eb26949
--- /dev/null
+++ b/app-i18n/pology/pology-9999.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+KDE_ORG_CATEGORY=sdk
+PYTHON_COMPAT=( python2_7 )
+inherit bash-completion-r1 cmake kde.org python-single-r1
+
+DESCRIPTION="A framework for custom processing of PO files"
+HOMEPAGE="http://pology.nedohodnik.net"
+
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+ SRC_URI="http://pology.nedohodnik.net/release/${P}.tar.bz2"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE=""
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+BDEPEND="
+ app-text/docbook-xsl-stylesheets
+ app-text/docbook-xml-dtd:4.5
+"
+RDEPEND="${PYTHON_DEPS}
+ dev-libs/libxml2
+ dev-libs/libxslt
+ $(python_gen_cond_dep '
+ dev-python/dbus-python[${PYTHON_MULTI_USEDEP}]
+ ')
+ sys-devel/gettext
+"
+DEPEND="${RDEPEND}"
+
+# Magic on python parsing makes it impossible to make it parallel safe
+MAKEOPTS+=" -j1"
+
+src_prepare() {
+ cmake_src_prepare
+ sed -e "/DOC_INSTALL_DIR/s/^/#DONT/" -i CMakeLists.txt || die
+ python_fix_shebang .
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DDOC_INSTALL_DIR="${EPREFIX}"/usr/share/doc/${PF}
+ -DCMAKE_DISABLE_FIND_PACKAGE_Epydoc=ON
+ -DCMAKE_DISABLE_FIND_PACKAGE_Pygments=ON
+ )
+ cmake_src_configure
+}
+
+src_install() {
+ cmake_src_install
+ python_optimize
+
+ dosym ../../../pology/syntax/kate/synder.xml /usr/share/apps/katepart/syntax/synder.xml
+
+ newbashcomp "${ED}"/usr/share/pology/completion/bash/pology posieve
+ bashcomp_alias {posieve,poediff}{,.py}
+
+ elog "You should also consider following packages to install:"
+ elog " app-text/aspell"
+ elog " app-text/hunspell"
+ elog " dev-vcs/git"
+ elog " dev-vcs/subversion"
+ elog " sci-misc/apertium"
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/kde:master commit in: app-i18n/pology/
@ 2020-10-11 21:33 Andreas Sturmlechner
0 siblings, 0 replies; 3+ messages in thread
From: Andreas Sturmlechner @ 2020-10-11 21:33 UTC (permalink / raw
To: gentoo-commits
commit: bbf1646dc67dde76a2836bbdc7fa27ce22e74f6e
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 11 21:25:58 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Oct 11 21:26:35 2020 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=bbf1646d
app-i18n/pology: Remove package following dbus-python[python2--]
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
app-i18n/pology/metadata.xml | 8 -----
app-i18n/pology/pology-9999.ebuild | 71 --------------------------------------
2 files changed, 79 deletions(-)
diff --git a/app-i18n/pology/metadata.xml b/app-i18n/pology/metadata.xml
deleted file mode 100644
index 2fdbf33d96..0000000000
--- a/app-i18n/pology/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>kde@gentoo.org</email>
- <name>Gentoo KDE Project</name>
- </maintainer>
-</pkgmetadata>
diff --git a/app-i18n/pology/pology-9999.ebuild b/app-i18n/pology/pology-9999.ebuild
deleted file mode 100644
index 302eb26949..0000000000
--- a/app-i18n/pology/pology-9999.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-KDE_ORG_CATEGORY=sdk
-PYTHON_COMPAT=( python2_7 )
-inherit bash-completion-r1 cmake kde.org python-single-r1
-
-DESCRIPTION="A framework for custom processing of PO files"
-HOMEPAGE="http://pology.nedohodnik.net"
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
- SRC_URI="http://pology.nedohodnik.net/release/${P}.tar.bz2"
- KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE=""
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-BDEPEND="
- app-text/docbook-xsl-stylesheets
- app-text/docbook-xml-dtd:4.5
-"
-RDEPEND="${PYTHON_DEPS}
- dev-libs/libxml2
- dev-libs/libxslt
- $(python_gen_cond_dep '
- dev-python/dbus-python[${PYTHON_MULTI_USEDEP}]
- ')
- sys-devel/gettext
-"
-DEPEND="${RDEPEND}"
-
-# Magic on python parsing makes it impossible to make it parallel safe
-MAKEOPTS+=" -j1"
-
-src_prepare() {
- cmake_src_prepare
- sed -e "/DOC_INSTALL_DIR/s/^/#DONT/" -i CMakeLists.txt || die
- python_fix_shebang .
-}
-
-src_configure() {
- local mycmakeargs=(
- -DDOC_INSTALL_DIR="${EPREFIX}"/usr/share/doc/${PF}
- -DCMAKE_DISABLE_FIND_PACKAGE_Epydoc=ON
- -DCMAKE_DISABLE_FIND_PACKAGE_Pygments=ON
- )
- cmake_src_configure
-}
-
-src_install() {
- cmake_src_install
- python_optimize
-
- dosym ../../../pology/syntax/kate/synder.xml /usr/share/apps/katepart/syntax/synder.xml
-
- newbashcomp "${ED}"/usr/share/pology/completion/bash/pology posieve
- bashcomp_alias {posieve,poediff}{,.py}
-
- elog "You should also consider following packages to install:"
- elog " app-text/aspell"
- elog " app-text/hunspell"
- elog " dev-vcs/git"
- elog " dev-vcs/subversion"
- elog " sci-misc/apertium"
-}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/kde:master commit in: app-i18n/pology/
@ 2023-03-29 16:49 Andreas Sturmlechner
0 siblings, 0 replies; 3+ messages in thread
From: Andreas Sturmlechner @ 2023-03-29 16:49 UTC (permalink / raw
To: gentoo-commits
commit: 589ec2a484fa1fc5d4d6a231804178bb5a008e30
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 30 15:26:01 2022 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Mar 29 16:47:50 2023 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=589ec2a4
app-i18n/pology: Re-add package with Python3 support
See also: https://invent.kde.org/sdk/pology/-/issues/1#note_586250
Bug: https://bugs.gentoo.org/735222
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
app-i18n/pology/metadata.xml | 8 +++++
app-i18n/pology/pology-9999.ebuild | 72 ++++++++++++++++++++++++++++++++++++++
2 files changed, 80 insertions(+)
diff --git a/app-i18n/pology/metadata.xml b/app-i18n/pology/metadata.xml
new file mode 100644
index 0000000000..2fdbf33d96
--- /dev/null
+++ b/app-i18n/pology/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>kde@gentoo.org</email>
+ <name>Gentoo KDE Project</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/app-i18n/pology/pology-9999.ebuild b/app-i18n/pology/pology-9999.ebuild
new file mode 100644
index 0000000000..079ecb8e6c
--- /dev/null
+++ b/app-i18n/pology/pology-9999.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+KDE_ORG_CATEGORY="sdk"
+PYTHON_COMPAT=( python3_{9..11} )
+inherit bash-completion-r1 cmake kde.org python-single-r1
+
+DESCRIPTION="A framework for custom processing of PO files"
+HOMEPAGE="http://pology.nedohodnik.net"
+
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+ SRC_URI="http://pology.nedohodnik.net/release/${P}.tar.bz2"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE=""
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+ dev-libs/libxml2
+ dev-libs/libxslt
+ $(python_gen_cond_dep '
+ dev-python/dbus-python[${PYTHON_USEDEP}]
+ ')
+ sys-devel/gettext
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ app-text/docbook-xsl-stylesheets
+ app-text/docbook-xml-dtd:4.5
+"
+
+# Magic on python parsing makes it impossible to make it parallel safe
+MAKEOPTS+=" -j1"
+
+src_prepare() {
+ cmake_src_prepare
+ sed -e "/DOC_INSTALL_DIR/s/^/#DONT/" -i CMakeLists.txt || die
+ sed -e "/install.*pycfiles.*instdir/d" -i cmake/Python3Tools.cmake || die
+ python_fix_shebang .
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DDOC_INSTALL_DIR="${EPREFIX}"/usr/share/doc/${PF}
+ -DCMAKE_DISABLE_FIND_PACKAGE_Epydoc=ON
+ -DCMAKE_DISABLE_FIND_PACKAGE_Pygments=ON
+ )
+ cmake_src_configure
+}
+
+src_install() {
+ cmake_src_install
+ python_optimize
+
+ dosym ../../../pology/syntax/kate/synder.xml /usr/share/apps/katepart/syntax/synder.xml
+
+ newbashcomp "${ED}"/usr/share/pology/completion/bash/pology posieve
+ bashcomp_alias {posieve,poediff}{,.py}
+
+ elog "You should also consider following packages to install:"
+ elog " app-text/aspell"
+ elog " app-text/hunspell"
+ elog " dev-vcs/git"
+ elog " dev-vcs/subversion"
+ elog " sci-misc/apertium"
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-03-29 16:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-11 21:33 [gentoo-commits] proj/kde:master commit in: app-i18n/pology/ Andreas Sturmlechner
-- strict thread matches above, loose matches on Subject: below --
2023-03-29 16:49 Andreas Sturmlechner
2020-09-19 20:03 Andreas Sturmlechner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox