public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: media-gfx/oda-file-converter/
@ 2021-06-11  7:26 Rui Huang
  0 siblings, 0 replies; 9+ messages in thread
From: Rui Huang @ 2021-06-11  7:26 UTC (permalink / raw
  To: gentoo-commits

commit:     cbff1ace412223d896f439b7f07183003aebc564
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Fri Jun 11 07:26:32 2021 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Fri Jun 11 07:26:32 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cbff1ace

media-gfx/oda-file-converter: new package

For converting between different versions of .dwg and .dxf

Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-gfx/oda-file-converter/Manifest              |  1 +
 media-gfx/oda-file-converter/metadata.xml          | 21 +++++++++
 .../oda-file-converter-22.5.0.0.ebuild             | 50 ++++++++++++++++++++++
 3 files changed, 72 insertions(+)

diff --git a/media-gfx/oda-file-converter/Manifest b/media-gfx/oda-file-converter/Manifest
new file mode 100644
index 000000000..534541321
--- /dev/null
+++ b/media-gfx/oda-file-converter/Manifest
@@ -0,0 +1 @@
+DIST ODAFileConverter_QT5_lnxX64_7.2dll_22.5.deb 26269172 BLAKE2B 5676736a9acb21794d951f5737231f14970bac4c4d50156e9e4b5972f0f2eebc9b5ea547a12e2f6bece930164f836395d46664e434a0fc552ae22f9bb7306dfd SHA512 64d034011239943cb3bae1bd11111c7abe294cee12fb4f3dec4ae6447b742d1149add01fccad7e7f51fd11b2afcf9040a6575f4e669df6225a4975786405131b

diff --git a/media-gfx/oda-file-converter/metadata.xml b/media-gfx/oda-file-converter/metadata.xml
new file mode 100644
index 000000000..b275135fb
--- /dev/null
+++ b/media-gfx/oda-file-converter/metadata.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>vowstar@gmail.com</email>
+		<name>Huang Rui</name>
+	</maintainer>
+	<longdescription lang="en">
+	For converting between different versions of .dwg and .dxf
+	ODA File Converter application features a graphical interface and a
+	command-line interface.
+	Upon execution, the application identifies all files in the specified
+	source directory that match the specified filter, then loads and saves each
+	of these files to the specified output directory as the specified output
+	version/type.
+	If the audit flag is enabled, an audit/repair operation will be applied to
+	each file as it is loaded.
+	If the recursive flag is enabled, subdirectories within the source
+	directory will be processed recursively.
+	</longdescription>
+</pkgmetadata>

diff --git a/media-gfx/oda-file-converter/oda-file-converter-22.5.0.0.ebuild b/media-gfx/oda-file-converter/oda-file-converter-22.5.0.0.ebuild
new file mode 100644
index 000000000..e2cde787b
--- /dev/null
+++ b/media-gfx/oda-file-converter/oda-file-converter-22.5.0.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PV="$(ver_cut 1-2)"
+
+inherit desktop unpacker xdg
+
+DESCRIPTION="For converting between different versions of .dwg and .dxf"
+HOMEPAGE="https://www.opendesign.com"
+
+SRC_URI="https://download.opendesign.com/guestfiles/Demo/ODAFileConverter_QT5_lnxX64_7.2dll_${MY_PV}.deb"
+
+LICENSE="all-rights-reserved"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+
+RDEPEND="
+	dev-qt/qtcore
+	x11-themes/hicolor-icon-theme
+"
+
+DEPEND="${RDEPEND}"
+
+BDEPEND="dev-util/patchelf"
+
+S="${WORKDIR}"
+
+QA_PREBUILT="*"
+QA_DESKTOP_FILE="usr/share/applications/ODAFileConverter.*\\.desktop"
+
+src_compile() {
+	patchelf --set-rpath \
+		"/usr/bin/ODAFileConverter_${PV}" \
+		"usr/bin/ODAFileConverter_${PV}/ODAFileConverter" \
+		|| die "Failed to fix insecure RPATH"
+}
+
+src_install() {
+	exeinto /usr/bin
+	doexe usr/bin/ODAFileConverter
+	exeinto /usr/bin/ODAFileConverter_${PV}
+	doexe usr/bin/ODAFileConverter_${PV}/*
+	domenu usr/share/applications/*.desktop
+	doicon -s 16 usr/share/icons/hicolor/16x16/apps/ODAFileConverter.png
+	doicon -s 32 usr/share/icons/hicolor/32x32/apps/ODAFileConverter.png
+	doicon -s 64 usr/share/icons/hicolor/64x64/apps/ODAFileConverter.png
+	doicon -s 128 usr/share/icons/hicolor/128x128/apps/ODAFileConverter.png
+}
\ No newline at end of file


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

* [gentoo-commits] repo/proj/guru:dev commit in: media-gfx/oda-file-converter/
@ 2021-06-14  7:34 Rui Huang
  0 siblings, 0 replies; 9+ messages in thread
From: Rui Huang @ 2021-06-14  7:34 UTC (permalink / raw
  To: gentoo-commits

commit:     7cf107db9cebd5af3d096734335bfbf1b84ba3ee
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Mon Jun 14 07:34:27 2021 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Mon Jun 14 07:34:27 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7cf107db

media-gfx/oda-file-converter: add missing RDEPEND

Bug: https://bugs.gentoo.org/795762
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 ...onverter-22.5.0.0.ebuild => oda-file-converter-22.5.0.0-r1.ebuild} | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/media-gfx/oda-file-converter/oda-file-converter-22.5.0.0.ebuild b/media-gfx/oda-file-converter/oda-file-converter-22.5.0.0-r1.ebuild
similarity index 95%
rename from media-gfx/oda-file-converter/oda-file-converter-22.5.0.0.ebuild
rename to media-gfx/oda-file-converter/oda-file-converter-22.5.0.0-r1.ebuild
index e2cde787b..6626a79f6 100644
--- a/media-gfx/oda-file-converter/oda-file-converter-22.5.0.0.ebuild
+++ b/media-gfx/oda-file-converter/oda-file-converter-22.5.0.0-r1.ebuild
@@ -17,7 +17,9 @@ SLOT="0"
 KEYWORDS="-* ~amd64"
 
 RDEPEND="
-	dev-qt/qtcore
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtwidgets:5
 	x11-themes/hicolor-icon-theme
 "
 


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

* [gentoo-commits] repo/proj/guru:dev commit in: media-gfx/oda-file-converter/
@ 2021-06-15  7:17 Andrew Ammerlaan
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Ammerlaan @ 2021-06-15  7:17 UTC (permalink / raw
  To: gentoo-commits

commit:     ee5f70704539c00452784b0cdce58cd3da962706
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 15 07:15:40 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Tue Jun 15 07:15:40 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ee5f7070

media-gfx/oda-file-converter: add missing final line

Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 media-gfx/oda-file-converter/oda-file-converter-22.5.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/oda-file-converter/oda-file-converter-22.5.0.0-r1.ebuild b/media-gfx/oda-file-converter/oda-file-converter-22.5.0.0-r1.ebuild
index 6626a79f6..4a8dcbed0 100644
--- a/media-gfx/oda-file-converter/oda-file-converter-22.5.0.0-r1.ebuild
+++ b/media-gfx/oda-file-converter/oda-file-converter-22.5.0.0-r1.ebuild
@@ -49,4 +49,4 @@ src_install() {
 	doicon -s 32 usr/share/icons/hicolor/32x32/apps/ODAFileConverter.png
 	doicon -s 64 usr/share/icons/hicolor/64x64/apps/ODAFileConverter.png
 	doicon -s 128 usr/share/icons/hicolor/128x128/apps/ODAFileConverter.png
-}
\ No newline at end of file
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: media-gfx/oda-file-converter/
@ 2022-04-01  3:12 Rui Huang
  0 siblings, 0 replies; 9+ messages in thread
From: Rui Huang @ 2022-04-01  3:12 UTC (permalink / raw
  To: gentoo-commits

commit:     e5597981a63794ee501d31de9dbc57ef396de963
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Fri Apr  1 03:12:19 2022 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Fri Apr  1 03:12:19 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e5597981

media-gfx/oda-file-converter: bump to 22.10.0.0

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-gfx/oda-file-converter/Manifest              |  1 +
 .../oda-file-converter-22.10.0.0.ebuild            | 53 ++++++++++++++++++++++
 2 files changed, 54 insertions(+)

diff --git a/media-gfx/oda-file-converter/Manifest b/media-gfx/oda-file-converter/Manifest
index 534541321..1d4014ed9 100644
--- a/media-gfx/oda-file-converter/Manifest
+++ b/media-gfx/oda-file-converter/Manifest
@@ -1 +1,2 @@
+DIST ODAFileConverter_QT5_lnxX64_7.2dll_22.10.deb 45661460 BLAKE2B 8297a7001dbe43b7d20c3f22b1c597eacdd47780f1f742e3301ac91a2e111a180b3344310774fbd6d5f37fd58548fea29b879eb65a0e48e63117025c059190cf SHA512 8d78183781d7d01164d78e700f614ade66277075dbff21455834cc2404585ab35c07b1924cadb8c5e2b38a50a6ebc62a0a8206d8b792c36ec0acb6a5a2e31d68
 DIST ODAFileConverter_QT5_lnxX64_7.2dll_22.5.deb 26269172 BLAKE2B 5676736a9acb21794d951f5737231f14970bac4c4d50156e9e4b5972f0f2eebc9b5ea547a12e2f6bece930164f836395d46664e434a0fc552ae22f9bb7306dfd SHA512 64d034011239943cb3bae1bd11111c7abe294cee12fb4f3dec4ae6447b742d1149add01fccad7e7f51fd11b2afcf9040a6575f4e669df6225a4975786405131b

diff --git a/media-gfx/oda-file-converter/oda-file-converter-22.10.0.0.ebuild b/media-gfx/oda-file-converter/oda-file-converter-22.10.0.0.ebuild
new file mode 100644
index 000000000..7be7e8cf5
--- /dev/null
+++ b/media-gfx/oda-file-converter/oda-file-converter-22.10.0.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PV="$(ver_cut 1-2)"
+
+inherit desktop unpacker xdg
+
+DESCRIPTION="For converting between different versions of .dwg and .dxf"
+HOMEPAGE="https://www.opendesign.com"
+
+SRC_URI="https://download.opendesign.com/guestfiles/Demo/ODAFileConverter_QT5_lnxX64_7.2dll_${MY_PV}.deb"
+
+LICENSE="all-rights-reserved"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+
+RDEPEND="
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtwidgets:5
+	x11-themes/hicolor-icon-theme
+"
+
+DEPEND="${RDEPEND}"
+
+BDEPEND="dev-util/patchelf"
+
+S="${WORKDIR}"
+
+QA_PREBUILT="*"
+QA_DESKTOP_FILE="usr/share/applications/ODAFileConverter.*\\.desktop"
+
+src_compile() {
+	patchelf --set-rpath \
+		"/usr/bin/ODAFileConverter_${PV}" \
+		"usr/bin/ODAFileConverter_${PV}/ODAFileConverter" \
+		|| die "Failed to fix insecure RPATH"
+	rm -rf usr/bin/ODAFileConverter_${PV}/qt.conf || die "Failed to fix qt.conf"
+}
+
+src_install() {
+	exeinto /usr/bin
+	doexe usr/bin/ODAFileConverter
+	exeinto /usr/bin/ODAFileConverter_${PV}
+	doexe usr/bin/ODAFileConverter_${PV}/*
+	domenu usr/share/applications/*.desktop
+	doicon -s 16 usr/share/icons/hicolor/16x16/apps/ODAFileConverter.png
+	doicon -s 32 usr/share/icons/hicolor/32x32/apps/ODAFileConverter.png
+	doicon -s 64 usr/share/icons/hicolor/64x64/apps/ODAFileConverter.png
+	doicon -s 128 usr/share/icons/hicolor/128x128/apps/ODAFileConverter.png
+}
\ No newline at end of file


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

* [gentoo-commits] repo/proj/guru:dev commit in: media-gfx/oda-file-converter/
@ 2022-04-01  3:13 Rui Huang
  0 siblings, 0 replies; 9+ messages in thread
From: Rui Huang @ 2022-04-01  3:13 UTC (permalink / raw
  To: gentoo-commits

commit:     49e92c7846d4c6b6b831ac76991cc1528b0f59aa
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Fri Apr  1 03:13:12 2022 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Fri Apr  1 03:13:12 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=49e92c78

media-gfx/oda-file-converter: drop old

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-gfx/oda-file-converter/Manifest              |  1 -
 .../oda-file-converter-22.5.0.0-r1.ebuild          | 52 ----------------------
 2 files changed, 53 deletions(-)

diff --git a/media-gfx/oda-file-converter/Manifest b/media-gfx/oda-file-converter/Manifest
index 1d4014ed9..c09ff6ece 100644
--- a/media-gfx/oda-file-converter/Manifest
+++ b/media-gfx/oda-file-converter/Manifest
@@ -1,2 +1 @@
 DIST ODAFileConverter_QT5_lnxX64_7.2dll_22.10.deb 45661460 BLAKE2B 8297a7001dbe43b7d20c3f22b1c597eacdd47780f1f742e3301ac91a2e111a180b3344310774fbd6d5f37fd58548fea29b879eb65a0e48e63117025c059190cf SHA512 8d78183781d7d01164d78e700f614ade66277075dbff21455834cc2404585ab35c07b1924cadb8c5e2b38a50a6ebc62a0a8206d8b792c36ec0acb6a5a2e31d68
-DIST ODAFileConverter_QT5_lnxX64_7.2dll_22.5.deb 26269172 BLAKE2B 5676736a9acb21794d951f5737231f14970bac4c4d50156e9e4b5972f0f2eebc9b5ea547a12e2f6bece930164f836395d46664e434a0fc552ae22f9bb7306dfd SHA512 64d034011239943cb3bae1bd11111c7abe294cee12fb4f3dec4ae6447b742d1149add01fccad7e7f51fd11b2afcf9040a6575f4e669df6225a4975786405131b

diff --git a/media-gfx/oda-file-converter/oda-file-converter-22.5.0.0-r1.ebuild b/media-gfx/oda-file-converter/oda-file-converter-22.5.0.0-r1.ebuild
deleted file mode 100644
index 4a8dcbed0..000000000
--- a/media-gfx/oda-file-converter/oda-file-converter-22.5.0.0-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PV="$(ver_cut 1-2)"
-
-inherit desktop unpacker xdg
-
-DESCRIPTION="For converting between different versions of .dwg and .dxf"
-HOMEPAGE="https://www.opendesign.com"
-
-SRC_URI="https://download.opendesign.com/guestfiles/Demo/ODAFileConverter_QT5_lnxX64_7.2dll_${MY_PV}.deb"
-
-LICENSE="all-rights-reserved"
-SLOT="0"
-KEYWORDS="-* ~amd64"
-
-RDEPEND="
-	dev-qt/qtcore:5
-	dev-qt/qtgui:5
-	dev-qt/qtwidgets:5
-	x11-themes/hicolor-icon-theme
-"
-
-DEPEND="${RDEPEND}"
-
-BDEPEND="dev-util/patchelf"
-
-S="${WORKDIR}"
-
-QA_PREBUILT="*"
-QA_DESKTOP_FILE="usr/share/applications/ODAFileConverter.*\\.desktop"
-
-src_compile() {
-	patchelf --set-rpath \
-		"/usr/bin/ODAFileConverter_${PV}" \
-		"usr/bin/ODAFileConverter_${PV}/ODAFileConverter" \
-		|| die "Failed to fix insecure RPATH"
-}
-
-src_install() {
-	exeinto /usr/bin
-	doexe usr/bin/ODAFileConverter
-	exeinto /usr/bin/ODAFileConverter_${PV}
-	doexe usr/bin/ODAFileConverter_${PV}/*
-	domenu usr/share/applications/*.desktop
-	doicon -s 16 usr/share/icons/hicolor/16x16/apps/ODAFileConverter.png
-	doicon -s 32 usr/share/icons/hicolor/32x32/apps/ODAFileConverter.png
-	doicon -s 64 usr/share/icons/hicolor/64x64/apps/ODAFileConverter.png
-	doicon -s 128 usr/share/icons/hicolor/128x128/apps/ODAFileConverter.png
-}


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

* [gentoo-commits] repo/proj/guru:dev commit in: media-gfx/oda-file-converter/
@ 2022-04-04 14:38 Andrew Ammerlaan
  0 siblings, 0 replies; 9+ messages in thread
From: Andrew Ammerlaan @ 2022-04-04 14:38 UTC (permalink / raw
  To: gentoo-commits

commit:     e3a4bc2a96bca0e5c4f5e50016c73926aca25e6b
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Mon Apr  4 14:37:17 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Mon Apr  4 14:37:17 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e3a4bc2a

media-gfx/oda-file-converter: add missing final line

Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 media-gfx/oda-file-converter/oda-file-converter-22.10.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/oda-file-converter/oda-file-converter-22.10.0.0.ebuild b/media-gfx/oda-file-converter/oda-file-converter-22.10.0.0.ebuild
index 7be7e8cf5..b93df7220 100644
--- a/media-gfx/oda-file-converter/oda-file-converter-22.10.0.0.ebuild
+++ b/media-gfx/oda-file-converter/oda-file-converter-22.10.0.0.ebuild
@@ -50,4 +50,4 @@ src_install() {
 	doicon -s 32 usr/share/icons/hicolor/32x32/apps/ODAFileConverter.png
 	doicon -s 64 usr/share/icons/hicolor/64x64/apps/ODAFileConverter.png
 	doicon -s 128 usr/share/icons/hicolor/128x128/apps/ODAFileConverter.png
-}
\ No newline at end of file
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: media-gfx/oda-file-converter/
@ 2022-07-08  4:57 Rui Huang
  0 siblings, 0 replies; 9+ messages in thread
From: Rui Huang @ 2022-07-08  4:57 UTC (permalink / raw
  To: gentoo-commits

commit:     01c08e606dfec8bed650485d29b9ed2f14965db7
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Fri Jul  8 04:55:48 2022 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Fri Jul  8 04:55:48 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=01c08e60

media-gfx/oda-file-converter: add end of new line

Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-gfx/oda-file-converter/oda-file-converter-23.5.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/oda-file-converter/oda-file-converter-23.5.0.0.ebuild b/media-gfx/oda-file-converter/oda-file-converter-23.5.0.0.ebuild
index 0ed56daa2..277974d07 100644
--- a/media-gfx/oda-file-converter/oda-file-converter-23.5.0.0.ebuild
+++ b/media-gfx/oda-file-converter/oda-file-converter-23.5.0.0.ebuild
@@ -50,4 +50,4 @@ src_install() {
 	doicon -s 32 usr/share/icons/hicolor/32x32/apps/ODAFileConverter.png
 	doicon -s 64 usr/share/icons/hicolor/64x64/apps/ODAFileConverter.png
 	doicon -s 128 usr/share/icons/hicolor/128x128/apps/ODAFileConverter.png
-}
\ No newline at end of file
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: media-gfx/oda-file-converter/
@ 2022-07-08  4:57 Rui Huang
  0 siblings, 0 replies; 9+ messages in thread
From: Rui Huang @ 2022-07-08  4:57 UTC (permalink / raw
  To: gentoo-commits

commit:     0cbe011dd55ed092c6d7675af086645e13eb3341
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Fri Jul  8 04:55:25 2022 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Fri Jul  8 04:55:25 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0cbe011d

media-gfx/oda-file-converter: add 23.5.0.0

Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-gfx/oda-file-converter/Manifest              |  1 +
 .../oda-file-converter-23.5.0.0.ebuild             | 53 ++++++++++++++++++++++
 2 files changed, 54 insertions(+)

diff --git a/media-gfx/oda-file-converter/Manifest b/media-gfx/oda-file-converter/Manifest
index c09ff6ece..bf9de0fb6 100644
--- a/media-gfx/oda-file-converter/Manifest
+++ b/media-gfx/oda-file-converter/Manifest
@@ -1 +1,2 @@
 DIST ODAFileConverter_QT5_lnxX64_7.2dll_22.10.deb 45661460 BLAKE2B 8297a7001dbe43b7d20c3f22b1c597eacdd47780f1f742e3301ac91a2e111a180b3344310774fbd6d5f37fd58548fea29b879eb65a0e48e63117025c059190cf SHA512 8d78183781d7d01164d78e700f614ade66277075dbff21455834cc2404585ab35c07b1924cadb8c5e2b38a50a6ebc62a0a8206d8b792c36ec0acb6a5a2e31d68
+DIST ODAFileConverter_QT5_lnxX64_8.3dll_23.5.deb 47326628 BLAKE2B 4f88c987427848d79d9f9bf59f230ff3a9bad654fe842f5d7c18ac36688e4fc9633b9d390e092be29458252dab920c957dc4b410c6a505a1cdd3f97deb07ddee SHA512 2a0e3b4cbbe227d98886307ec4db8aca1ab91f1adf6023a09dbd64d1278691c5bdb51bd3931511bd0c838c86a67a2d9a80abcc8a9ec82244851a26d9ca07ed49

diff --git a/media-gfx/oda-file-converter/oda-file-converter-23.5.0.0.ebuild b/media-gfx/oda-file-converter/oda-file-converter-23.5.0.0.ebuild
new file mode 100644
index 000000000..0ed56daa2
--- /dev/null
+++ b/media-gfx/oda-file-converter/oda-file-converter-23.5.0.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PV="$(ver_cut 1-2)"
+
+inherit desktop unpacker xdg
+
+DESCRIPTION="For converting between different versions of .dwg and .dxf"
+HOMEPAGE="https://www.opendesign.com"
+
+SRC_URI="https://download.opendesign.com/guestfiles/Demo/ODAFileConverter_QT5_lnxX64_8.3dll_${MY_PV}.deb"
+
+LICENSE="all-rights-reserved"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+
+RDEPEND="
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtwidgets:5
+	x11-themes/hicolor-icon-theme
+"
+
+DEPEND="${RDEPEND}"
+
+BDEPEND="dev-util/patchelf"
+
+S="${WORKDIR}"
+
+QA_PREBUILT="*"
+QA_DESKTOP_FILE="usr/share/applications/ODAFileConverter.*\\.desktop"
+
+src_compile() {
+	patchelf --set-rpath \
+		"/usr/bin/ODAFileConverter_${PV}" \
+		"usr/bin/ODAFileConverter_${PV}/ODAFileConverter" \
+		|| die "Failed to fix insecure RPATH"
+	rm -rf usr/bin/ODAFileConverter_${PV}/qt.conf || die "Failed to fix qt.conf"
+}
+
+src_install() {
+	exeinto /usr/bin
+	doexe usr/bin/ODAFileConverter
+	exeinto /usr/bin/ODAFileConverter_${PV}
+	doexe usr/bin/ODAFileConverter_${PV}/*
+	domenu usr/share/applications/*.desktop
+	doicon -s 16 usr/share/icons/hicolor/16x16/apps/ODAFileConverter.png
+	doicon -s 32 usr/share/icons/hicolor/32x32/apps/ODAFileConverter.png
+	doicon -s 64 usr/share/icons/hicolor/64x64/apps/ODAFileConverter.png
+	doicon -s 128 usr/share/icons/hicolor/128x128/apps/ODAFileConverter.png
+}
\ No newline at end of file


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

* [gentoo-commits] repo/proj/guru:dev commit in: media-gfx/oda-file-converter/
@ 2022-07-08  4:57 Rui Huang
  0 siblings, 0 replies; 9+ messages in thread
From: Rui Huang @ 2022-07-08  4:57 UTC (permalink / raw
  To: gentoo-commits

commit:     9f0c91c9e8ff81b7b822fac61b827347f494d5b2
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Fri Jul  8 04:57:01 2022 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Fri Jul  8 04:57:01 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9f0c91c9

media-gfx/oda-file-converter: drop 22.10.0.0

Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-gfx/oda-file-converter/Manifest              |  1 -
 .../oda-file-converter-22.10.0.0.ebuild            | 53 ----------------------
 2 files changed, 54 deletions(-)

diff --git a/media-gfx/oda-file-converter/Manifest b/media-gfx/oda-file-converter/Manifest
index bf9de0fb6..4d77d4b86 100644
--- a/media-gfx/oda-file-converter/Manifest
+++ b/media-gfx/oda-file-converter/Manifest
@@ -1,2 +1 @@
-DIST ODAFileConverter_QT5_lnxX64_7.2dll_22.10.deb 45661460 BLAKE2B 8297a7001dbe43b7d20c3f22b1c597eacdd47780f1f742e3301ac91a2e111a180b3344310774fbd6d5f37fd58548fea29b879eb65a0e48e63117025c059190cf SHA512 8d78183781d7d01164d78e700f614ade66277075dbff21455834cc2404585ab35c07b1924cadb8c5e2b38a50a6ebc62a0a8206d8b792c36ec0acb6a5a2e31d68
 DIST ODAFileConverter_QT5_lnxX64_8.3dll_23.5.deb 47326628 BLAKE2B 4f88c987427848d79d9f9bf59f230ff3a9bad654fe842f5d7c18ac36688e4fc9633b9d390e092be29458252dab920c957dc4b410c6a505a1cdd3f97deb07ddee SHA512 2a0e3b4cbbe227d98886307ec4db8aca1ab91f1adf6023a09dbd64d1278691c5bdb51bd3931511bd0c838c86a67a2d9a80abcc8a9ec82244851a26d9ca07ed49

diff --git a/media-gfx/oda-file-converter/oda-file-converter-22.10.0.0.ebuild b/media-gfx/oda-file-converter/oda-file-converter-22.10.0.0.ebuild
deleted file mode 100644
index b93df7220..000000000
--- a/media-gfx/oda-file-converter/oda-file-converter-22.10.0.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_PV="$(ver_cut 1-2)"
-
-inherit desktop unpacker xdg
-
-DESCRIPTION="For converting between different versions of .dwg and .dxf"
-HOMEPAGE="https://www.opendesign.com"
-
-SRC_URI="https://download.opendesign.com/guestfiles/Demo/ODAFileConverter_QT5_lnxX64_7.2dll_${MY_PV}.deb"
-
-LICENSE="all-rights-reserved"
-SLOT="0"
-KEYWORDS="-* ~amd64"
-
-RDEPEND="
-	dev-qt/qtcore:5
-	dev-qt/qtgui:5
-	dev-qt/qtwidgets:5
-	x11-themes/hicolor-icon-theme
-"
-
-DEPEND="${RDEPEND}"
-
-BDEPEND="dev-util/patchelf"
-
-S="${WORKDIR}"
-
-QA_PREBUILT="*"
-QA_DESKTOP_FILE="usr/share/applications/ODAFileConverter.*\\.desktop"
-
-src_compile() {
-	patchelf --set-rpath \
-		"/usr/bin/ODAFileConverter_${PV}" \
-		"usr/bin/ODAFileConverter_${PV}/ODAFileConverter" \
-		|| die "Failed to fix insecure RPATH"
-	rm -rf usr/bin/ODAFileConverter_${PV}/qt.conf || die "Failed to fix qt.conf"
-}
-
-src_install() {
-	exeinto /usr/bin
-	doexe usr/bin/ODAFileConverter
-	exeinto /usr/bin/ODAFileConverter_${PV}
-	doexe usr/bin/ODAFileConverter_${PV}/*
-	domenu usr/share/applications/*.desktop
-	doicon -s 16 usr/share/icons/hicolor/16x16/apps/ODAFileConverter.png
-	doicon -s 32 usr/share/icons/hicolor/32x32/apps/ODAFileConverter.png
-	doicon -s 64 usr/share/icons/hicolor/64x64/apps/ODAFileConverter.png
-	doicon -s 128 usr/share/icons/hicolor/128x128/apps/ODAFileConverter.png
-}


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

end of thread, other threads:[~2022-07-08  4:57 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-11  7:26 [gentoo-commits] repo/proj/guru:dev commit in: media-gfx/oda-file-converter/ Rui Huang
  -- strict thread matches above, loose matches on Subject: below --
2021-06-14  7:34 Rui Huang
2021-06-15  7:17 Andrew Ammerlaan
2022-04-01  3:12 Rui Huang
2022-04-01  3:13 Rui Huang
2022-04-04 14:38 Andrew Ammerlaan
2022-07-08  4:57 Rui Huang
2022-07-08  4:57 Rui Huang
2022-07-08  4:57 Rui Huang

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