[gentoo-commits] repo/gentoo:master commit in: app-office/dia2code/

2024-04-20 Thread Arthur Zamarin
commit: 78ff089a2a3a0189229813cff0352b3a6431680d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr 20 14:54:10 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr 20 14:54:10 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78ff089a

app-office/dia2code: Keyword 1.0.0-r1 arm64, #907102

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-office/dia2code/dia2code-1.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/dia2code/dia2code-1.0.0-r1.ebuild 
b/app-office/dia2code/dia2code-1.0.0-r1.ebuild
index 58e26fc2f4bd..fe4abda5db36 100644
--- a/app-office/dia2code/dia2code-1.0.0-r1.ebuild
+++ b/app-office/dia2code/dia2code-1.0.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: app-office/dia2code/

2024-04-19 Thread Arthur Zamarin
commit: 7c93269ec7a878beb5db08d24815d72b53e5ff09
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Apr 19 20:27:13 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Apr 19 20:27:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c93269e

app-office/dia2code: unkeyword 1.0.0-r1 for ~ia64, ~ppc, ~sparc

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-office/dia2code/dia2code-1.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/dia2code/dia2code-1.0.0-r1.ebuild 
b/app-office/dia2code/dia2code-1.0.0-r1.ebuild
index 62f52319e79f..58e26fc2f4bd 100644
--- a/app-office/dia2code/dia2code-1.0.0-r1.ebuild
+++ b/app-office/dia2code/dia2code-1.0.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="amd64 ~ia64 ~ppc ~sparc x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: app-office/dia2code/files/, app-office/dia2code/

2024-04-19 Thread Arthur Zamarin
commit: a69218670e793a50d3c7a32901f1cde97c108ffe
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Apr 19 20:24:35 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Apr 19 20:25:51 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6921867

app-office/dia2code: fix compile, RDEPEND, EAPI=8

- fix unknown uint8_t
- fix RDEPEND wrong assign
- EAPI=8
- small refactor

Closes: https://bugs.gentoo.org/895298
Closes: https://bugs.gentoo.org/886083
Signed-off-by: Arthur Zamarin  gentoo.org>

 .../{dia2code-1.0.0.ebuild => dia2code-1.0.0-r1.ebuild} | 17 ++---
 .../dia2code/files/dia2code-1.0.0-fix-imports.patch | 12 
 2 files changed, 22 insertions(+), 7 deletions(-)

diff --git a/app-office/dia2code/dia2code-1.0.0.ebuild 
b/app-office/dia2code/dia2code-1.0.0-r1.ebuild
similarity index 72%
rename from app-office/dia2code/dia2code-1.0.0.ebuild
rename to app-office/dia2code/dia2code-1.0.0-r1.ebuild
index be9dbe3f8d5d..62f52319e79f 100644
--- a/app-office/dia2code/dia2code-1.0.0.ebuild
+++ b/app-office/dia2code/dia2code-1.0.0-r1.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
+
 inherit gnome2
 
 DESCRIPTION="Convert UML diagrams produced with Dia to various source code 
flavours"
@@ -14,16 +15,18 @@ KEYWORDS="amd64 ~ia64 ~ppc ~sparc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 
-RDEPEND="${DEPEND}"
-DEPEND="
-   dev-libs/libxml2
+RDEPEND="dev-libs/libxml2"
+DEPEND="${RDEPEND}
test? ( app-shells/bash )
 "
 
+PATCHES=(
+   "${FILESDIR}"/${P}-fix-imports.patch
+)
+
 src_prepare() {
# Script makes use of arrays
-   sed -e 's:/bin/sh:/bin/bash:' \
-   -i tests/tests.sh || die
+   sed -e 's:/bin/sh:/bin/bash:' -i tests/tests.sh || die
gnome2_src_prepare
 }
 

diff --git a/app-office/dia2code/files/dia2code-1.0.0-fix-imports.patch 
b/app-office/dia2code/files/dia2code-1.0.0-fix-imports.patch
new file mode 100644
index ..e12d38806b6d
--- /dev/null
+++ b/app-office/dia2code/files/dia2code-1.0.0-fix-imports.patch
@@ -0,0 +1,12 @@
+https://bugs.gentoo.org/895298
+
+--- a/src/decls.hpp
 b/src/decls.hpp
+@@ -23,6 +23,7 @@ along with this program.  If not, see 
.
+ #include "config.h"
+
+ #include "umlPackage.hpp"
++#include 
+
+ /* Package processing auxiliary structure:
+"Declarations" are UML packages (which map to IDL module or C++



[gentoo-commits] repo/gentoo:master commit in: app-office/dia2code/

2017-12-20 Thread Mart Raudsepp
commit: 9a2b013a60a6e91367df81d5f3d3a7cf12cce823
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Wed Dec 20 19:41:34 2017 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Wed Dec 20 20:21:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a2b013a

app-office/dia2code: remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-office/dia2code/Manifest  |  1 -
 app-office/dia2code/dia2code-0.8.8.ebuild | 22 --
 2 files changed, 23 deletions(-)

diff --git a/app-office/dia2code/Manifest b/app-office/dia2code/Manifest
index fa271cef054..ffb132b37e7 100644
--- a/app-office/dia2code/Manifest
+++ b/app-office/dia2code/Manifest
@@ -1,2 +1 @@
-DIST dia2code-0.8.8.tar.gz 480548 BLAKE2B 
9e257c21f5dfb6afdf38024a1a002745fc83bc4e2396d0d048f086d95e8c1ce52f2805f5d83a88db16d15bc3a458706b5725c5385eb50d3b9e587d654fd23a21
 SHA512 
15dfbad66fc7855f0ccc31cfd32488de13380653dcd72a7a47cfcec60727aea265373da3b829f2bb62c4aade5cb06b0cb884fa29b197545a5268b03c75e717a2
 DIST dia2code-1.0.0.tar.gz 946967 BLAKE2B 
48e6c29e9178032d17816726fe2b60c7a87518b898c22f0caec94b31d8cb10e50da4c093f178cad62f8c107bc55c3bbddef692e8608bbb73aed3afb156a2f2be
 SHA512 
6669352e624fddc9436a30263ad591494d473ca09e662a9de90902e4b4a7a7eb6d3de9b28cf162c63ebeea36f86b33822d510ac87ce97c5f196c761bac85

diff --git a/app-office/dia2code/dia2code-0.8.8.ebuild 
b/app-office/dia2code/dia2code-0.8.8.ebuild
deleted file mode 100644
index e52a9960e57..000
--- a/app-office/dia2code/dia2code-0.8.8.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="Convert UML diagrams produced with Dia to various source code 
flavours"
-HOMEPAGE="http://dia2code.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ia64 ~ppc ~sparc x86"
-IUSE=""
-
-DEPEND="dev-libs/libxml2"
-RDEPEND="${DEPEND}"
-
-src_install() {
-   gnome2_src_install
-   doman dia2code.1
-}



[gentoo-commits] repo/gentoo:master commit in: app-office/dia2code/

2017-08-20 Thread Gilles Dartiguelongue
commit: 0a3ba7d57a80d29226e388867e50bbc57a93da7e
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sun Aug 20 09:43:37 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sun Aug 20 10:13:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a3ba7d5

app-office/dia2code: version bump 0.8.8 → 1.0.0

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 app-office/dia2code/Manifest  |  1 +
 app-office/dia2code/dia2code-1.0.0.ebuild | 32 +++
 2 files changed, 33 insertions(+)

diff --git a/app-office/dia2code/Manifest b/app-office/dia2code/Manifest
index 868d13bd0a5..8298d0e6964 100644
--- a/app-office/dia2code/Manifest
+++ b/app-office/dia2code/Manifest
@@ -1 +1,2 @@
 DIST dia2code-0.8.8.tar.gz 480548 SHA256 
b7431a3f8a9f703397e4b849f304897a2c7150a378fe6069ae17cd2bfc1e6294 SHA512 
15dfbad66fc7855f0ccc31cfd32488de13380653dcd72a7a47cfcec60727aea265373da3b829f2bb62c4aade5cb06b0cb884fa29b197545a5268b03c75e717a2
 WHIRLPOOL 
2cbdfaab1e733c4752ca7457a2763b539a1ed48eb351e6bd62264757fa862a11dc1f012a8d957cd05d3e199e88649b2b9c68cf8058e1da52ddc070053e35d6ba
+DIST dia2code-1.0.0.tar.gz 946967 SHA256 
c7746379cd15267fc3f600af16f77490e28f3becd260b7440f53776239ad491d SHA512 
6669352e624fddc9436a30263ad591494d473ca09e662a9de90902e4b4a7a7eb6d3de9b28cf162c63ebeea36f86b33822d510ac87ce97c5f196c761bac85
 WHIRLPOOL 
4ae059ee2e4fce0e08a45dcfce24b368a3945c87cbab587886567c1ed916689b3e6ee3c626825e1a4d27925cd8de3a29f0d1c68c9f4b0032729ea9b248cbf396

diff --git a/app-office/dia2code/dia2code-1.0.0.ebuild 
b/app-office/dia2code/dia2code-1.0.0.ebuild
new file mode 100644
index 000..627ca3ef520
--- /dev/null
+++ b/app-office/dia2code/dia2code-1.0.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit gnome2
+
+DESCRIPTION="Convert UML diagrams produced with Dia to various source code 
flavours"
+HOMEPAGE="http://dia2code.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
+IUSE="test"
+
+RDEPEND="${DEPEND}"
+DEPEND="
+   dev-libs/libxml2
+   test? ( app-shells/bash )
+"
+
+src_prepare() {
+   # Script makes use of arrays
+   sed -e 's:/bin/sh:/bin/bash:' \
+   -i tests/tests.sh || die
+   gnome2_src_prepare
+}
+
+src_install() {
+   gnome2_src_install
+   doman docs/dia2code.1
+}



[gentoo-commits] repo/gentoo:master commit in: app-office/dia2code/

2017-01-22 Thread Pacho Ramos
commit: 4afd7138bc036346f6d98acf8d6767f5517a1271
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Jan 22 12:49:54 2017 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Jan 22 12:49:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4afd7138

app-office/dia2code: Drop old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-office/dia2code/Manifest  |  1 -
 app-office/dia2code/dia2code-0.8.7.ebuild | 25 -
 2 files changed, 26 deletions(-)

diff --git a/app-office/dia2code/Manifest b/app-office/dia2code/Manifest
index 22f4ac3..868d13b 100644
--- a/app-office/dia2code/Manifest
+++ b/app-office/dia2code/Manifest
@@ -1,2 +1 @@
-DIST dia2code-0.8.7.tar.gz 173733 SHA256 
bebeeea56370bea416241128502144736d54d560b32d875174c5927089843adf SHA512 
b02eea93488ab388aa6560ed62aef68d8d0f33e8ebf0237122d5038fd007dd1035180bcfe818edbdeb825d7767553d5c8f115acf57fce8085676cfbf6cb821e3
 WHIRLPOOL 
43e68f100ceca7acbd062847150086fa7c25edd5c0a819970d5e676ed6037d5d3140807cd57a0784d45cc863178521d721015b253bd745d37c73cb037fbbfa7b
 DIST dia2code-0.8.8.tar.gz 480548 SHA256 
b7431a3f8a9f703397e4b849f304897a2c7150a378fe6069ae17cd2bfc1e6294 SHA512 
15dfbad66fc7855f0ccc31cfd32488de13380653dcd72a7a47cfcec60727aea265373da3b829f2bb62c4aade5cb06b0cb884fa29b197545a5268b03c75e717a2
 WHIRLPOOL 
2cbdfaab1e733c4752ca7457a2763b539a1ed48eb351e6bd62264757fa862a11dc1f012a8d957cd05d3e199e88649b2b9c68cf8058e1da52ddc070053e35d6ba

diff --git a/app-office/dia2code/dia2code-0.8.7.ebuild 
b/app-office/dia2code/dia2code-0.8.7.ebuild
deleted file mode 100644
index 611c791..
--- a/app-office/dia2code/dia2code-0.8.7.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-GCONF_DEBUG="no"
-
-inherit gnome2
-
-DESCRIPTION="Convert UML diagrams produced with Dia to various source code 
flavours"
-HOMEPAGE="http://dia2code.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ia64 ~ppc ~sparc x86"
-IUSE=""
-
-DEPEND="dev-libs/libxml2"
-RDEPEND="${DEPEND}"
-
-src_install() {
-   gnome2_src_install
-   doman dia2code.1
-}



[gentoo-commits] repo/gentoo:master commit in: app-office/dia2code/

2016-08-04 Thread Pacho Ramos
commit: f0c57d51cb9aed7bb7687d2e8cfb21758f0686b1
Author: Pacho Ramos  gentoo  org>
AuthorDate: Thu Aug  4 19:10:26 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Thu Aug  4 19:15:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0c57d51

app-office/dia2code: Version bump (#590258 by Pál Csányi)

Package-Manager: portage-2.3.0

 app-office/dia2code/Manifest  |  1 +
 app-office/dia2code/dia2code-0.8.8.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/app-office/dia2code/Manifest b/app-office/dia2code/Manifest
index eb50abe..22f4ac3 100644
--- a/app-office/dia2code/Manifest
+++ b/app-office/dia2code/Manifest
@@ -1 +1,2 @@
 DIST dia2code-0.8.7.tar.gz 173733 SHA256 
bebeeea56370bea416241128502144736d54d560b32d875174c5927089843adf SHA512 
b02eea93488ab388aa6560ed62aef68d8d0f33e8ebf0237122d5038fd007dd1035180bcfe818edbdeb825d7767553d5c8f115acf57fce8085676cfbf6cb821e3
 WHIRLPOOL 
43e68f100ceca7acbd062847150086fa7c25edd5c0a819970d5e676ed6037d5d3140807cd57a0784d45cc863178521d721015b253bd745d37c73cb037fbbfa7b
+DIST dia2code-0.8.8.tar.gz 480548 SHA256 
b7431a3f8a9f703397e4b849f304897a2c7150a378fe6069ae17cd2bfc1e6294 SHA512 
15dfbad66fc7855f0ccc31cfd32488de13380653dcd72a7a47cfcec60727aea265373da3b829f2bb62c4aade5cb06b0cb884fa29b197545a5268b03c75e717a2
 WHIRLPOOL 
2cbdfaab1e733c4752ca7457a2763b539a1ed48eb351e6bd62264757fa862a11dc1f012a8d957cd05d3e199e88649b2b9c68cf8058e1da52ddc070053e35d6ba

diff --git a/app-office/dia2code/dia2code-0.8.8.ebuild 
b/app-office/dia2code/dia2code-0.8.8.ebuild
new file mode 100644
index 000..821a356
--- /dev/null
+++ b/app-office/dia2code/dia2code-0.8.8.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit gnome2
+
+DESCRIPTION="Convert UML diagrams produced with Dia to various source code 
flavours"
+HOMEPAGE="http://dia2code.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
+IUSE=""
+
+DEPEND="dev-libs/libxml2"
+RDEPEND="${DEPEND}"
+
+src_install() {
+   gnome2_src_install
+   doman dia2code.1
+}



[gentoo-commits] repo/gentoo:master commit in: app-office/dia2code/files/

2016-07-13 Thread Patrice Clement
commit: e8b6e37e982e3c16e5013ed8c0cf31eadc2e540f
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Tue Jul 12 17:28:43 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Jul 13 10:17:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8b6e37e

app-office/dia2code: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/1876

Signed-off-by: Patrice Clement  gentoo.org>

 app-office/dia2code/files/dia2code-0.8.5-ar.patch | 24 ---
 1 file changed, 24 deletions(-)

diff --git a/app-office/dia2code/files/dia2code-0.8.5-ar.patch 
b/app-office/dia2code/files/dia2code-0.8.5-ar.patch
deleted file mode 100644
index 308b2fc..000
--- a/app-office/dia2code/files/dia2code-0.8.5-ar.patch
+++ /dev/null
@@ -1,24 +0,0 @@
 configure.in   2012-07-07 15:52:28.0 +0200
-+++ configure.in   2013-05-31 21:56:05.155859911 +0200
-@@ -8,6 +8,10 @@
- dnl Checks for programs.
- AC_PROG_CC
- AC_PROG_RANLIB
-+AN_MAKEVAR([AR], [AC_PROG_AR])
-+AN_PROGRAM([ar], [AC_PROG_AR])
-+AC_DEFUN([AC_PROG_AR], [AC_CHECK_TOOL(AR, ar, :)])
-+AC_PROG_AR
- dnl Checks for libraries.
- 
- AC_PATH_PROG(XML_CONFIG, xml2-config, no)
 dia2code/Makefile.in   2007-01-06 18:34:14.0 +0100
-+++ dia2code/Makefile.in   2013-05-31 21:56:46.765920940 +0200
-@@ -208,7 +208,7 @@
- Makefile:  $(srcdir)/Makefile.in  $(top_builddir)/config.status
-   cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ 
$(am__depfiles_maybe)
- 
--AR = ar
-+AR = @AR@
- 
- clean-noinstLIBRARIES:
-   -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)