Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 May 2021 12:36:46 +0200
From:      Mathieu Arnold <mat@freebsd.org>
To:        Neel Chauhan <nc@freebsd.org>
Cc:        ports-committers@freebsd.org, dev-commits-ports-all@freebsd.org, dev-commits-ports-main@freebsd.org
Subject:   Re: git: 7eacfa59f9ec - main - x11-toolkits/tepl6: New port
Message-ID:  <20210527103646.xnddjqrh3moa2lkt@aching.in.mat.cc>
In-Reply-To: <202105261923.14QJNxHD059056@gitrepo.freebsd.org>

index | next in thread | previous in thread | raw e-mail

[-- Attachment #1 --]
On Wed, May 26, 2021 at 07:23:59PM +0000, Neel Chauhan wrote:
> The branch main has been updated by nc:
> 
> URL: https://cgit.FreeBSD.org/ports/commit/?id=7eacfa59f9ec5a9f60a492586b0ac201dc0c8cc5
> 
> commit 7eacfa59f9ec5a9f60a492586b0ac201dc0c8cc5
> Author:     Neel Chauhan <nc@FreeBSD.org>
> AuthorDate: 2021-05-26 18:51:32 +0000
> Commit:     Neel Chauhan <nc@FreeBSD.org>
> CommitDate: 2021-05-26 19:24:03 +0000
> 
>     x11-toolkits/tepl6: New port
> ---
>  Mk/bsd.sites.mk              |  2 +-
>  x11-toolkits/Makefile        |  1 +
>  x11-toolkits/tepl6/Makefile  | 22 ++++++++++++++
>  x11-toolkits/tepl6/distinfo  |  3 ++
>  x11-toolkits/tepl6/pkg-descr |  9 ++++++
>  x11-toolkits/tepl6/pkg-plist | 69 ++++++++++++++++++++++++++++++++++++++++++++
>  6 files changed, 105 insertions(+), 1 deletion(-)
> 
> diff --git a/Mk/bsd.sites.mk b/Mk/bsd.sites.mk
> index ba3124b51421..da9d563878e2 100644
> --- a/Mk/bsd.sites.mk
> +++ b/Mk/bsd.sites.mk
> @@ -1248,7 +1248,7 @@ MASTER_SITES_SUBDIRS=	APACHE_COMMONS_BINARIES:${PORTNAME:S,commons-,,} \
>  			GIMP:${PORTNAME}/${PORTVERSION:R}/ \
>  			GITHUB:${GH_ACCOUNT}/${GH_PROJECT}/tar.gz/${GH_TAGNAME}?dummy=/ \
>  			GITHUB_CLOUD:${GH_ACCOUNT}/${GH_PROJECT}/ \
> -			GNOME:sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} \
> +			GNOME:sources/${PORTNAME}/${PORTVERSION:R} \

Please revert that change, it was not tested against all the tree.

>  			GNU:${PORTNAME} \
>  			GNUPG:${PORTNAME} \
>  			GNU_ALPHA:${PORTNAME} \
> diff --git a/x11-toolkits/Makefile b/x11-toolkits/Makefile
> index 6a881230ad40..7f1391d1de0a 100644
> --- a/x11-toolkits/Makefile
> +++ b/x11-toolkits/Makefile
> @@ -200,6 +200,7 @@
>      SUBDIR += soqt
>      SUBDIR += swt
>      SUBDIR += tepl
> +    SUBDIR += tepl6
>      SUBDIR += termit
>      SUBDIR += tix
>      SUBDIR += tk-wrapper
> diff --git a/x11-toolkits/tepl6/Makefile b/x11-toolkits/tepl6/Makefile
> new file mode 100644
> index 000000000000..7e1e46181b9b
> --- /dev/null
> +++ b/x11-toolkits/tepl6/Makefile
> @@ -0,0 +1,22 @@
> +PORTNAME=	tepl
> +DISTVERSION=	6.00.0
> +CATEGORIES=	x11-toolkits
> +MASTER_SITES=	GNOME
> +PKGNAMESUFFIX=	6
> +DIST_SUBDIR=	gnome
> +
> +MAINTAINER=	gnome@FreeBSD.org
> +COMMENT=	Text editor product line
> +
> +LICENSE=	LGPL3
> +LICENSE_FILE=	${WRKSRC}/LICENSES/LGPL-3.0-or-later.txt
> +
> +LIB_DEPENDS=	libamtk-5.so:x11-toolkits/amtk \
> +		libicuuc.so:devel/icu \
> +		libuchardet.so:textproc/uchardet
> +
> +USES=		compiler:c11 gettext gnome meson pkgconfig tar:xz
> +USE_GNOME=	cairo gdkpixbuf2 gtksourceview4 libxml2
> +USE_LDCONFIG=	yes
> +
> +.include <bsd.port.mk>
> diff --git a/x11-toolkits/tepl6/distinfo b/x11-toolkits/tepl6/distinfo
> new file mode 100644
> index 000000000000..95e93e56b701
> --- /dev/null
> +++ b/x11-toolkits/tepl6/distinfo
> @@ -0,0 +1,3 @@
> +TIMESTAMP = 1622048377
> +SHA256 (gnome/tepl-6.00.0.tar.xz) = a86397a895dca9c0de7a5ccb063bda8f7ef691cccb950ce2cfdee367903e7a63
> +SIZE (gnome/tepl-6.00.0.tar.xz) = 141908
> diff --git a/x11-toolkits/tepl6/pkg-descr b/x11-toolkits/tepl6/pkg-descr
> new file mode 100644
> index 000000000000..8f1187aff948
> --- /dev/null
> +++ b/x11-toolkits/tepl6/pkg-descr
> @@ -0,0 +1,9 @@
> +Tepl is a library that eases the development of GtkSourceView-based text
> +editors and IDEs. Tepl is the acronym for "Text editor product line".
> +It serves as an incubator for GtkSourceView.
> +
> +Tepl was previously named Gtef (GTK+ text editor framework). The project has
> +been renamed in June 2017 to have a more beautiful name. The end of Tepl is
> +pronounced like in "apple".
> +
> +WWW: https://wiki.gnome.org/Projects/Tepl
> diff --git a/x11-toolkits/tepl6/pkg-plist b/x11-toolkits/tepl6/pkg-plist
> new file mode 100644
> index 000000000000..5933e7429641
> --- /dev/null
> +++ b/x11-toolkits/tepl6/pkg-plist
> @@ -0,0 +1,69 @@
> +include/tepl-6/tepl/tepl-abstract-factory.h
> +include/tepl-6/tepl/tepl-application-window.h
> +include/tepl-6/tepl/tepl-application.h
> +include/tepl-6/tepl/tepl-buffer.h
> +include/tepl-6/tepl/tepl-enum-types.h
> +include/tepl-6/tepl/tepl-file-chooser.h
> +include/tepl-6/tepl/tepl-file-loader.h
> +include/tepl-6/tepl/tepl-file-saver.h
> +include/tepl-6/tepl/tepl-file.h
> +include/tepl-6/tepl/tepl-fold-region.h
> +include/tepl-6/tepl/tepl-goto-line-bar.h
> +include/tepl-6/tepl/tepl-gutter-renderer-folds.h
> +include/tepl-6/tepl/tepl-info-bar.h
> +include/tepl-6/tepl/tepl-init.h
> +include/tepl-6/tepl/tepl-io-error-info-bars.h
> +include/tepl-6/tepl/tepl-iter.h
> +include/tepl-6/tepl/tepl-language-chooser-dialog.h
> +include/tepl-6/tepl/tepl-language-chooser-widget.h
> +include/tepl-6/tepl/tepl-language-chooser.h
> +include/tepl-6/tepl/tepl-macros.h
> +include/tepl-6/tepl/tepl-menu-shell.h
> +include/tepl-6/tepl/tepl-metadata-manager.h
> +include/tepl-6/tepl/tepl-metadata.h
> +include/tepl-6/tepl/tepl-notebook.h
> +include/tepl-6/tepl/tepl-panel.h
> +include/tepl-6/tepl/tepl-pango.h
> +include/tepl-6/tepl/tepl-progress-info-bar.h
> +include/tepl-6/tepl/tepl-signal-group.h
> +include/tepl-6/tepl/tepl-space-drawer-prefs.h
> +include/tepl-6/tepl/tepl-statusbar.h
> +include/tepl-6/tepl/tepl-style-scheme-chooser-widget.h
> +include/tepl-6/tepl/tepl-tab-group.h
> +include/tepl-6/tepl/tepl-tab-label.h
> +include/tepl-6/tepl/tepl-tab-loading.h
> +include/tepl-6/tepl/tepl-tab-saving.h
> +include/tepl-6/tepl/tepl-tab.h
> +include/tepl-6/tepl/tepl-utils.h
> +include/tepl-6/tepl/tepl-view.h
> +include/tepl-6/tepl/tepl.h
> +lib/girepository-1.0/Tepl-6.typelib
> +lib/libtepl-6.so
> +lib/libtepl-6.so.0
> +lib/libtepl-6.so.0.0.0
> +libdata/pkgconfig/tepl-6.pc
> +share/gir-1.0/Tepl-6.gir
> +share/locale/ca/LC_MESSAGES/tepl-6.mo
> +share/locale/cs/LC_MESSAGES/tepl-6.mo
> +share/locale/da/LC_MESSAGES/tepl-6.mo
> +share/locale/de/LC_MESSAGES/tepl-6.mo
> +share/locale/el/LC_MESSAGES/tepl-6.mo
> +share/locale/en_GB/LC_MESSAGES/tepl-6.mo
> +share/locale/es/LC_MESSAGES/tepl-6.mo
> +share/locale/eu/LC_MESSAGES/tepl-6.mo
> +share/locale/fur/LC_MESSAGES/tepl-6.mo
> +share/locale/hr/LC_MESSAGES/tepl-6.mo
> +share/locale/hu/LC_MESSAGES/tepl-6.mo
> +share/locale/id/LC_MESSAGES/tepl-6.mo
> +share/locale/ja/LC_MESSAGES/tepl-6.mo
> +share/locale/nl/LC_MESSAGES/tepl-6.mo
> +share/locale/pl/LC_MESSAGES/tepl-6.mo
> +share/locale/pt_BR/LC_MESSAGES/tepl-6.mo
> +share/locale/ro/LC_MESSAGES/tepl-6.mo
> +share/locale/ru/LC_MESSAGES/tepl-6.mo
> +share/locale/sl/LC_MESSAGES/tepl-6.mo
> +share/locale/sr/LC_MESSAGES/tepl-6.mo
> +share/locale/sv/LC_MESSAGES/tepl-6.mo
> +share/locale/tr/LC_MESSAGES/tepl-6.mo
> +share/locale/uk/LC_MESSAGES/tepl-6.mo
> +share/locale/zh_CN/LC_MESSAGES/tepl-6.mo
> 

-- 
Mathieu Arnold

[-- Attachment #2 --]
-----BEGIN PGP SIGNATURE-----

iQKTBAABCgB9FiEEVhwchfRfuV0unqO5KesJApEdfgIFAmCvdjlfFIAAAAAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDU2
MUMxQzg1RjQ1RkI5NUQyRTlFQTNCOTI5RUIwOTAyOTExRDdFMDIACgkQKesJApEd
fgJ7Tg/+IdWS7hxJyoE+OjTIEgp+pqlWRIpeFIseoVKpUEH+s7gT6vmjc79hIq1G
MGUjBfLKN/+BLonMwYTmTlmlqXZJozOIXfxiUxPIpm/rz5osqrLIaRFcM5xEy9vb
Ta/OGutbSV+Vt/W5buExi02d6pLWqZG4URVT+RPwx4Uw2Nlcg8O4UeeK6sn0KYOQ
fHtq49xnD4B/E8xaDprY4twNZDSijjncYl/QV7r0mzceuKv+BdPR4xuVpWofTC1f
OR2vqSlFV2SL5ztvxOZrOAItUniqTSf7r7rxIb1ccuOUCZWrphtRzC0HXpT3z5Oe
xgcTwzBKcVR9hvuSfsfsXzFXRbFebMfvbIEdNPzkg/fr0Hpno6nLLaVXktWd4/bX
cw3tmkVkXlDX9a4XTFDP4YdNC4uQjKOHFK3KnwYkhoGuC06VoG0dwZh0YQXMT69O
+QlPaEXo6QlPMBLyFQAh53BH4VxtdpTFOIsnwfmJ2X7Fl7X8ASe1lf3oAkOrttoN
7SpeRGOj6pfzGemi7pKUQlk6DEjH79GEFIuEqF9Tr6PN6+QBLVWMqU+ZpJUVcGyo
4hIS5N4ZGKstZsTZyVa2dn7wSUxTx1hUjJHLbGG2ojrZ3X9S2mRaOKVwyt1DMOFY
BM8ItZGWCUKh3hQcl8StYiFG4aPplgedaeMclNa5ILATGX5RD5o=
=Ybwo
-----END PGP SIGNATURE-----
home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20210527103646.xnddjqrh3moa2lkt>