Re: Update x11/terminator 1.91 to 1.92

2020-09-10 Thread Elias M. Mariani
Okey, let's go with the patch.
Do I have your OK ?

Cheers.
mariani@

On Thu, Sep 10, 2020 at 4:28 AM Bjorn Ketelaars  wrote:
>
> On Wed 09/09/2020 14:33, Elias M. Mariani wrote:
> > > On 2020/09/09 17:29, Bjorn Ketelaars wrote:
> > > Please sort RDEPS, and group MODPY_*.
> > Done.
> >
> > > 'make test' fails. Maybe this is something that can be fixed by
> > > MODPY_ADJ_FILES?
> > On Wed, Sep 9, 2020 at 2:05 PM Stuart Henderson  
> > wrote:
> > > or symlink MODPY_BIN to WRKDIR/bin/python ..
> >
> > I think is better to just call to each file.
> > It seems that They are moving to pytest on the next version:
> > https://github.com/gnome-terminator/terminator/blob/master/pytest.ini
> >
> > So, changes will be needed anyways...
> > Let me know what you guys think.
>
> I think the diff below is a bit nicer:
>
>
> diff --git Makefile Makefile
> index 71e93e721d7..0fe60145b8b 100644
> --- Makefile
> +++ Makefile
> @@ -36,8 +36,7 @@ MODPY_VERSION =   ${MODPY_DEFAULT_VERSION_3}
>  MODPY_DISTUTILS_INSTALL = install --prefix=${LOCALBASE} --root=${DESTDIR}
>
>  do-test:
> -   ${MODPY_BIN} ${WRKDIST}/tests/test_doctests.py
> -   ${MODPY_BIN} ${WRKDIST}/tests/testborg.py
> -   ${MODPY_BIN} ${WRKDIST}/tests/testsignalman.py
> +   ${SUBST_CMD} ${WRKSRC}/run_tests
> +   cd ${WRKSRC} && /bin/sh ./run_tests
>
>  .include 
> diff --git patches/patch-run_tests patches/patch-run_tests
> new file mode 100644
> index 000..5ece2504985
> --- /dev/null
> +++ patches/patch-run_tests
> @@ -0,0 +1,14 @@
> +$OpenBSD$
> +
> +Index: run_tests
> +--- run_tests.orig
>  run_tests
> +@@ -4,7 +4,7 @@ for t in tests/test*; do
> + echo $t
> + file_type=$(file -b $t)
> + case ${file_type} in
> +-*[Pp]ython*) python ${t} ;;
> ++*[Pp]ython*) ${MODPY_BIN} ${t} ;;
> + *Bourne*) bash ${t} ;;
> + *bash*)   bash ${t} ;;
> + *perl*)   perl ${t} ;;



Re: Update x11/terminator 1.91 to 1.92

2020-09-10 Thread Bjorn Ketelaars
On Wed 09/09/2020 14:33, Elias M. Mariani wrote:
> > On 2020/09/09 17:29, Bjorn Ketelaars wrote:
> > Please sort RDEPS, and group MODPY_*.
> Done.
> 
> > 'make test' fails. Maybe this is something that can be fixed by
> > MODPY_ADJ_FILES?
> On Wed, Sep 9, 2020 at 2:05 PM Stuart Henderson  wrote:
> > or symlink MODPY_BIN to WRKDIR/bin/python ..
> 
> I think is better to just call to each file.
> It seems that They are moving to pytest on the next version:
> https://github.com/gnome-terminator/terminator/blob/master/pytest.ini
> 
> So, changes will be needed anyways...
> Let me know what you guys think.

I think the diff below is a bit nicer:


diff --git Makefile Makefile
index 71e93e721d7..0fe60145b8b 100644
--- Makefile
+++ Makefile
@@ -36,8 +36,7 @@ MODPY_VERSION =   ${MODPY_DEFAULT_VERSION_3}
 MODPY_DISTUTILS_INSTALL = install --prefix=${LOCALBASE} --root=${DESTDIR}
 
 do-test:
-   ${MODPY_BIN} ${WRKDIST}/tests/test_doctests.py
-   ${MODPY_BIN} ${WRKDIST}/tests/testborg.py
-   ${MODPY_BIN} ${WRKDIST}/tests/testsignalman.py
+   ${SUBST_CMD} ${WRKSRC}/run_tests
+   cd ${WRKSRC} && /bin/sh ./run_tests
 
 .include 
diff --git patches/patch-run_tests patches/patch-run_tests
new file mode 100644
index 000..5ece2504985
--- /dev/null
+++ patches/patch-run_tests
@@ -0,0 +1,14 @@
+$OpenBSD$
+
+Index: run_tests
+--- run_tests.orig
 run_tests
+@@ -4,7 +4,7 @@ for t in tests/test*; do
+ echo $t
+ file_type=$(file -b $t)
+ case ${file_type} in
+-*[Pp]ython*) python ${t} ;;
++*[Pp]ython*) ${MODPY_BIN} ${t} ;;
+ *Bourne*) bash ${t} ;;
+ *bash*)   bash ${t} ;;
+ *perl*)   perl ${t} ;;



Re: Update x11/terminator 1.91 to 1.92

2020-09-09 Thread Elias M . Mariani
> On 2020/09/09 17:29, Bjorn Ketelaars wrote:
> Please sort RDEPS, and group MODPY_*.
Done.

> 'make test' fails. Maybe this is something that can be fixed by
> MODPY_ADJ_FILES?
On Wed, Sep 9, 2020 at 2:05 PM Stuart Henderson  wrote:
> or symlink MODPY_BIN to WRKDIR/bin/python ..

I think is better to just call to each file.
It seems that They are moving to pytest on the next version:
https://github.com/gnome-terminator/terminator/blob/master/pytest.ini

So, changes will be needed anyways...
Let me know what you guys think.

Cheers.
mariani@

Index: Makefile
===
RCS file: /cvs/ports/x11/terminator/Makefile,v
retrieving revision 1.21
diff -u -p -r1.21 Makefile
--- Makefile12 Jul 2019 20:51:22 -  1.21
+++ Makefile9 Sep 2020 20:21:32 -
@@ -2,36 +2,42 @@
 
 COMMENT =  GTK3 terminal emulator with split-window and tabs 
support
 
-MODPY_EGG_VERSION =1.91
-DISTNAME = terminator-${MODPY_EGG_VERSION}
-REVISION = 1
+VERSION =  1.92
+DISTNAME = terminator-${VERSION}
 
 CATEGORIES =   x11
 
-HOMEPAGE = https://gnometerminator.blogspot.com/p/introduction.html
+HOMEPAGE = https://gnome-terminator.org
 
 # GPLv2
 PERMIT_PACKAGE=Yes
 
-MASTER_SITES = 
https://launchpad.net/terminator/gtk3/${MODPY_EGG_VERSION}/+download/
+MASTER_SITES = 
https://github.com/gnome-terminator/terminator/releases/download/v${VERSION}/
 
 MODULES =  lang/python \
textproc/intltool
 
 RUN_DEPENDS =  devel/desktop-file-utils \
devel/gsettings-desktop-schemas \
-   devel/py-gobject3 \
-   devel/py-notify \
+   devel/libnotify \
+   devel/py-configobj${MODPY_FLAVOR} \
+   devel/py-gobject3${MODPY_FLAVOR} \
devel/vte3 \
-   sysutils/py-psutil \
-   x11/gtk+3,-guic \
+   sysutils/py-psutil${MODPY_FLAVOR} \
x11/gtk+3 \
+   x11/gtk+3,-guic \
x11/keybinder3
 
 MODPY_SETUPTOOLS = Yes
 MODPY_SETUP_ARGS = --without-icon-cache
+MODPY_VERSION =${MODPY_DEFAULT_VERSION_3}
 
 # --single-version-externally-managed option used by MODPY doesn't exist
 MODPY_DISTUTILS_INSTALL = install --prefix=${LOCALBASE} --root=${DESTDIR}
+
+do-test:
+   ${MODPY_BIN} ${WRKDIST}/tests/test_doctests.py
+   ${MODPY_BIN} ${WRKDIST}/tests/testborg.py
+   ${MODPY_BIN} ${WRKDIST}/tests/testsignalman.py
 
 .include 
Index: distinfo
===
RCS file: /cvs/ports/x11/terminator/distinfo,v
retrieving revision 1.5
diff -u -p -r1.5 distinfo
--- distinfo26 Jun 2018 21:25:04 -  1.5
+++ distinfo9 Sep 2020 20:21:32 -
@@ -1,2 +1,2 @@
-SHA256 (terminator-1.91.tar.gz) = lfduPAJTlW0ZzqsvjacJpJbxuc+bHFuNPNC22jzHvmk=
-SIZE (terminator-1.91.tar.gz) = 910536
+SHA256 (terminator-1.92.tar.gz) = H5TWdq1CyBThWeY3TcqB5OaKwfA/IBM5W6mbacF1c/E=
+SIZE (terminator-1.92.tar.gz) = 910613
Index: pkg/PLIST
===
RCS file: /cvs/ports/x11/terminator/pkg/PLIST,v
retrieving revision 1.9
diff -u -p -r1.9 PLIST
--- pkg/PLIST   29 Jun 2018 22:16:35 -  1.9
+++ pkg/PLIST   9 Sep 2020 20:21:32 -
@@ -2,90 +2,85 @@
 bin/remotinator
 bin/terminator
 bin/terminator.wrapper
-lib/python${MODPY_VERSION}/site-packages/terminator-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info
+lib/python${MODPY_VERSION}/site-packages/terminator-1.92-py${MODPY_VERSION}.egg-info
 lib/python${MODPY_VERSION}/site-packages/terminatorlib/
 lib/python${MODPY_VERSION}/site-packages/terminatorlib/__init__.py
-lib/python${MODPY_VERSION}/site-packages/terminatorlib/__init__.pyc
+${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}/
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}borg.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}config.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}container.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}cwd.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}debugserver.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}editablelabel.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}encoding.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${M

Re: Update x11/terminator 1.91 to 1.92

2020-09-09 Thread Stuart Henderson
On 2020/09/09 17:29, Bjorn Ketelaars wrote:
> On Wed 09/09/2020 08:05, Elias M. Mariani wrote:
> > "New maintainers took care of the project in April of 2020 and moved
> > the main development over to GitHub."
> > - From https://launchpad.net/terminator
> > 
> > - Use github as MASTER_SITES.
> > - Update HOMEPAGE.
> > - Switch to python3.
> > 
> > - Changelog:
> > https://github.com/gnome-terminator/terminator/blob/master/CHANGELOG.md#v192-2020-04-18
> > 
> > It seems that devel/py-notify is no longer needed, they use
> > py3-gobject3 to link against libnotify.
> > 
> > Tested OK on amd64.
> > 
> > Comments?
> > OK?
> 
> Please sort RDEPS, and group MODPY_*.
> 
> 'make test' fails. Maybe this is something that can be fixed by
> MODPY_ADJ_FILES?
> 
> ===>  Regression tests for terminator-1.92
> running test
> tests/test_doctests.py
> run_tests: line 7: python: command not found
> 
> tests/testborg.py
> run_tests: line 7: python: command not found
> 
> tests/testsignalman.py
> run_tests: line 7: python: command not found
> 
> /usr/local/lib/python3.8/distutils/dist.py:274: UserWarning: Unknown 
> distribution option: 'install_requires'
>   warnings.warn(msg)
> 

or symlink MODPY_BIN to WRKDIR/bin/python ..



Re: Update x11/terminator 1.91 to 1.92

2020-09-09 Thread Bjorn Ketelaars
On Wed 09/09/2020 08:05, Elias M. Mariani wrote:
> "New maintainers took care of the project in April of 2020 and moved
> the main development over to GitHub."
> - From https://launchpad.net/terminator
> 
> - Use github as MASTER_SITES.
> - Update HOMEPAGE.
> - Switch to python3.
> 
> - Changelog:
> https://github.com/gnome-terminator/terminator/blob/master/CHANGELOG.md#v192-2020-04-18
> 
> It seems that devel/py-notify is no longer needed, they use
> py3-gobject3 to link against libnotify.
> 
> Tested OK on amd64.
> 
> Comments?
> OK?

Please sort RDEPS, and group MODPY_*.

'make test' fails. Maybe this is something that can be fixed by
MODPY_ADJ_FILES?

===>  Regression tests for terminator-1.92
running test
tests/test_doctests.py
run_tests: line 7: python: command not found

tests/testborg.py
run_tests: line 7: python: command not found

tests/testsignalman.py
run_tests: line 7: python: command not found

/usr/local/lib/python3.8/distutils/dist.py:274: UserWarning: Unknown 
distribution option: 'install_requires'
  warnings.warn(msg)



Update x11/terminator 1.91 to 1.92

2020-09-09 Thread Elias M . Mariani
"New maintainers took care of the project in April of 2020 and moved
the main development over to GitHub."
- From https://launchpad.net/terminator

- Use github as MASTER_SITES.
- Update HOMEPAGE.
- Switch to python3.

- Changelog:
https://github.com/gnome-terminator/terminator/blob/master/CHANGELOG.md#v192-2020-04-18

It seems that devel/py-notify is no longer needed, they use
py3-gobject3 to link against libnotify.

Tested OK on amd64.

Comments?
OK?

Cheers.
Elias mariani@

Index: Makefile
===
RCS file: /cvs/ports/x11/terminator/Makefile,v
retrieving revision 1.21
diff -u -p -r1.21 Makefile
--- Makefile12 Jul 2019 20:51:22 -  1.21
+++ Makefile9 Sep 2020 13:46:28 -
@@ -2,28 +2,30 @@
 
 COMMENT =  GTK3 terminal emulator with split-window and tabs 
support
 
-MODPY_EGG_VERSION =1.91
-DISTNAME = terminator-${MODPY_EGG_VERSION}
-REVISION = 1
+VERSION =  1.92
+DISTNAME = terminator-${VERSION}
 
 CATEGORIES =   x11
 
-HOMEPAGE = https://gnometerminator.blogspot.com/p/introduction.html
+HOMEPAGE = https://gnome-terminator.org
 
 # GPLv2
 PERMIT_PACKAGE=Yes
 
-MASTER_SITES = 
https://launchpad.net/terminator/gtk3/${MODPY_EGG_VERSION}/+download/
+MASTER_SITES = 
https://github.com/gnome-terminator/terminator/releases/download/v${VERSION}/
 
 MODULES =  lang/python \
textproc/intltool
 
+MODPY_VERSION =${MODPY_DEFAULT_VERSION_3}
+
 RUN_DEPENDS =  devel/desktop-file-utils \
devel/gsettings-desktop-schemas \
-   devel/py-gobject3 \
-   devel/py-notify \
+   devel/py-configobj${MODPY_FLAVOR} \
+   devel/py-gobject3${MODPY_FLAVOR} \
+   devel/libnotify \
devel/vte3 \
-   sysutils/py-psutil \
+   sysutils/py-psutil${MODPY_FLAVOR} \
x11/gtk+3,-guic \
x11/gtk+3 \
x11/keybinder3
Index: distinfo
===
RCS file: /cvs/ports/x11/terminator/distinfo,v
retrieving revision 1.5
diff -u -p -r1.5 distinfo
--- distinfo26 Jun 2018 21:25:04 -  1.5
+++ distinfo9 Sep 2020 13:46:28 -
@@ -1,2 +1,2 @@
-SHA256 (terminator-1.91.tar.gz) = lfduPAJTlW0ZzqsvjacJpJbxuc+bHFuNPNC22jzHvmk=
-SIZE (terminator-1.91.tar.gz) = 910536
+SHA256 (terminator-1.92.tar.gz) = H5TWdq1CyBThWeY3TcqB5OaKwfA/IBM5W6mbacF1c/E=
+SIZE (terminator-1.92.tar.gz) = 910613
Index: pkg/PLIST
===
RCS file: /cvs/ports/x11/terminator/pkg/PLIST,v
retrieving revision 1.9
diff -u -p -r1.9 PLIST
--- pkg/PLIST   29 Jun 2018 22:16:35 -  1.9
+++ pkg/PLIST   9 Sep 2020 13:46:28 -
@@ -2,90 +2,85 @@
 bin/remotinator
 bin/terminator
 bin/terminator.wrapper
-lib/python${MODPY_VERSION}/site-packages/terminator-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info
+lib/python${MODPY_VERSION}/site-packages/terminator-1.92-py${MODPY_VERSION}.egg-info
 lib/python${MODPY_VERSION}/site-packages/terminatorlib/
 lib/python${MODPY_VERSION}/site-packages/terminatorlib/__init__.py
-lib/python${MODPY_VERSION}/site-packages/terminatorlib/__init__.pyc
+${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}/
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}borg.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}config.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}container.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}cwd.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}debugserver.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}editablelabel.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}encoding.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}factory.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}freebsd.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}ipc.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}keybindings.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/terminatorlib/${MODPY_PYCACHE}layoutlauncher.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-package

Re: [UPDATE] x11/terminator 0.98 -> 1.91

2018-06-26 Thread Elias M. Mariani
Weekly bump.

2018-06-06 20:33 GMT-03:00 Elias M. Mariani :
> Hi,
> Attached you will find the update from terminator 0.98 to 1.91.
> Terminator 0.98 is a GTK+2 terminal emulator supporting dividing the
> console in tabs and splitting it.
> The new branch 1.90+ moves to GTK+3, the 0.98 version is been abandoned.
>
> Tested OK in a vanilla OpenBSD installation with only the requirements
> for the package.
>
> It can not be used by root:
> Traceback (most recent call last):
>   File 
> "/usr/local/lib/python2.7/site-packages/terminatorlib/terminal_popup_menu.py",
> line 133, in 
> self.terminal.get_cwd()))
>   File "/usr/local/lib/python2.7/site-packages/terminatorlib/terminal.py",
> line 225, in get_cwd
> return(self.terminator.pid_cwd(self.pid))
>   File "/usr/local/lib/python2.7/site-packages/terminatorlib/cwd.py",
> line 85, in psutil_cwd
> return psutil.Process(pid).as_dict()['cwd']
>   File "/usr/local/lib/python2.7/site-packages/psutil/__init__.py",
> line 528, in as_dict
> ret = meth()
>   File "/usr/local/lib/python2.7/site-packages/psutil/__init__.py",
> line 865, in threads
> return self._proc.threads()
>   File "/usr/local/lib/python2.7/site-packages/psutil/_psbsd.py", line
> 504, in wrapper
> return fun(self, *args, **kwargs)
>   File "/usr/local/lib/python2.7/site-packages/psutil/_psbsd.py", line
> 691, in threads
> rawlist = cext.proc_threads(self.pid)
> RuntimeError: kvm_openfiles() syscall failed
>
> My wild guess is that is related with psutil getting "cwd" (current
> working directory) for root.
> I do not know if take this as a bug from terminator or from psutil or
> not a bug at all... I would go for the later one.
> Just don't use this ports as root, period.
>
> portlocatedb did not return any conflicts...
>
> Any thoughts ?
> Commit? :D
>
> Cheers.
> Elias.


terminator.diff
Description: Binary data


Re: [UPDATE] x11/terminator 0.98 -> 1.91

2018-06-19 Thread Elias M. Mariani
Weekly bump.
El lun., 11 jun. 2018 a las 15:38, Elias M. Mariani
() escribió:
>
> Find attached the diff with the directory removal.
> Thanks landry@ for the explanation about this on CVS.
>
>
> 2018-06-11 4:35 GMT-03:00 Elias M. Mariani :
> > OK, sorry, new to CVS...
> > But I don't even see any mention of the patch file been deleted, maybe
> > I need to specify this to CVS?
> >
> > Cheers.
> > Elias.
> >
> > 2018-06-11 2:39 GMT-03:00 Landry Breuil :
> >> On Sun, Jun 10, 2018 at 08:31:57PM -0300, Elias M. Mariani wrote:
> >>> This is not a ping...
> >>> I noticed that the diff didn't have the removal of the patches
> >>> directory, there is no need for that one patch anymore in this
> >>> version.
> >>>
> >>> If someone decides to commit this must remove the directory.
> >>
> >> cvs has no concept of directory removal, once a dir is empty cvs up -PAd
> >> will remove the dir from the local checkout.
> >>



Re: [UPDATE] x11/terminator 0.98 -> 1.91

2018-06-11 Thread Elias M. Mariani
Find attached the diff with the directory removal.
Thanks landry@ for the explanation about this on CVS.


2018-06-11 4:35 GMT-03:00 Elias M. Mariani :
> OK, sorry, new to CVS...
> But I don't even see any mention of the patch file been deleted, maybe
> I need to specify this to CVS?
>
> Cheers.
> Elias.
>
> 2018-06-11 2:39 GMT-03:00 Landry Breuil :
>> On Sun, Jun 10, 2018 at 08:31:57PM -0300, Elias M. Mariani wrote:
>>> This is not a ping...
>>> I noticed that the diff didn't have the removal of the patches
>>> directory, there is no need for that one patch anymore in this
>>> version.
>>>
>>> If someone decides to commit this must remove the directory.
>>
>> cvs has no concept of directory removal, once a dir is empty cvs up -PAd
>> will remove the dir from the local checkout.
>>


terminator.diff
Description: Binary data


Re: [UPDATE] x11/terminator 0.98 -> 1.91

2018-06-11 Thread Elias M. Mariani
OK, sorry, new to CVS...
But I don't even see any mention of the patch file been deleted, maybe
I need to specify this to CVS?

Cheers.
Elias.

2018-06-11 2:39 GMT-03:00 Landry Breuil :
> On Sun, Jun 10, 2018 at 08:31:57PM -0300, Elias M. Mariani wrote:
>> This is not a ping...
>> I noticed that the diff didn't have the removal of the patches
>> directory, there is no need for that one patch anymore in this
>> version.
>>
>> If someone decides to commit this must remove the directory.
>
> cvs has no concept of directory removal, once a dir is empty cvs up -PAd
> will remove the dir from the local checkout.
>



Re: [UPDATE] x11/terminator 0.98 -> 1.91

2018-06-10 Thread Landry Breuil
On Sun, Jun 10, 2018 at 08:31:57PM -0300, Elias M. Mariani wrote:
> This is not a ping...
> I noticed that the diff didn't have the removal of the patches
> directory, there is no need for that one patch anymore in this
> version.
> 
> If someone decides to commit this must remove the directory.

cvs has no concept of directory removal, once a dir is empty cvs up -PAd
will remove the dir from the local checkout.



Re: [UPDATE] x11/terminator 0.98 -> 1.91

2018-06-10 Thread Elias M. Mariani
This is not a ping...
I noticed that the diff didn't have the removal of the patches
directory, there is no need for that one patch anymore in this
version.

If someone decides to commit this must remove the directory.

Cheers.
Elias.


2018-06-06 20:33 GMT-03:00 Elias M. Mariani :
> Hi,
> Attached you will find the update from terminator 0.98 to 1.91.
> Terminator 0.98 is a GTK+2 terminal emulator supporting dividing the
> console in tabs and splitting it.
> The new branch 1.90+ moves to GTK+3, the 0.98 version is been abandoned.
>
> Tested OK in a vanilla OpenBSD installation with only the requirements
> for the package.
>
> It can not be used by root:
> Traceback (most recent call last):
>   File 
> "/usr/local/lib/python2.7/site-packages/terminatorlib/terminal_popup_menu.py",
> line 133, in 
> self.terminal.get_cwd()))
>   File "/usr/local/lib/python2.7/site-packages/terminatorlib/terminal.py",
> line 225, in get_cwd
> return(self.terminator.pid_cwd(self.pid))
>   File "/usr/local/lib/python2.7/site-packages/terminatorlib/cwd.py",
> line 85, in psutil_cwd
> return psutil.Process(pid).as_dict()['cwd']
>   File "/usr/local/lib/python2.7/site-packages/psutil/__init__.py",
> line 528, in as_dict
> ret = meth()
>   File "/usr/local/lib/python2.7/site-packages/psutil/__init__.py",
> line 865, in threads
> return self._proc.threads()
>   File "/usr/local/lib/python2.7/site-packages/psutil/_psbsd.py", line
> 504, in wrapper
> return fun(self, *args, **kwargs)
>   File "/usr/local/lib/python2.7/site-packages/psutil/_psbsd.py", line
> 691, in threads
> rawlist = cext.proc_threads(self.pid)
> RuntimeError: kvm_openfiles() syscall failed
>
> My wild guess is that is related with psutil getting "cwd" (current
> working directory) for root.
> I do not know if take this as a bug from terminator or from psutil or
> not a bug at all... I would go for the later one.
> Just don't use this ports as root, period.
>
> portlocatedb did not return any conflicts...
>
> Any thoughts ?
> OK?
> Commit? :D
>
> Cheers.
> Elias.



[UPDATE] x11/terminator 0.98 -> 1.91

2018-06-06 Thread Elias M. Mariani
Hi,
Attached you will find the update from terminator 0.98 to 1.91.
Terminator 0.98 is a GTK+2 terminal emulator supporting dividing the
console in tabs and splitting it.
The new branch 1.90+ moves to GTK+3, the 0.98 version is been abandoned.

Tested OK in a vanilla OpenBSD installation with only the requirements
for the package.

It can not be used by root:
Traceback (most recent call last):
  File 
"/usr/local/lib/python2.7/site-packages/terminatorlib/terminal_popup_menu.py",
line 133, in 
self.terminal.get_cwd()))
  File "/usr/local/lib/python2.7/site-packages/terminatorlib/terminal.py",
line 225, in get_cwd
return(self.terminator.pid_cwd(self.pid))
  File "/usr/local/lib/python2.7/site-packages/terminatorlib/cwd.py",
line 85, in psutil_cwd
return psutil.Process(pid).as_dict()['cwd']
  File "/usr/local/lib/python2.7/site-packages/psutil/__init__.py",
line 528, in as_dict
ret = meth()
  File "/usr/local/lib/python2.7/site-packages/psutil/__init__.py",
line 865, in threads
return self._proc.threads()
  File "/usr/local/lib/python2.7/site-packages/psutil/_psbsd.py", line
504, in wrapper
return fun(self, *args, **kwargs)
  File "/usr/local/lib/python2.7/site-packages/psutil/_psbsd.py", line
691, in threads
rawlist = cext.proc_threads(self.pid)
RuntimeError: kvm_openfiles() syscall failed

My wild guess is that is related with psutil getting "cwd" (current
working directory) for root.
I do not know if take this as a bug from terminator or from psutil or
not a bug at all... I would go for the later one.
Just don't use this ports as root, period.

portlocatedb did not return any conflicts...

Any thoughts ?
OK?
Commit? :D

Cheers.
Elias.


terminator.diff
Description: Binary data


UPDATE: x11/terminator 0.98 => 1.91

2017-06-06 Thread Brian Callahan
Hi ports --

Attached is an update to x11/terminator, bringing it to its latest version.
I was never maintainer of this but I'll take it now.

~Brian

Index: Makefile
===
RCS file: /cvs/ports/x11/terminator/Makefile,v
retrieving revision 1.17
diff -u -p -u -p -r1.17 Makefile
--- Makefile5 May 2016 02:32:55 -   1.17
+++ Makefile6 Jun 2017 13:42:19 -
@@ -2,24 +2,26 @@
 
 COMMENT =  GTK2 terminal emulator with split-window and tabs 
support
 
-MODPY_EGG_VERSION =0.98
+MODPY_EGG_VERSION =1.91
 DISTNAME = terminator-${MODPY_EGG_VERSION}
-REVISION = 0
 
 CATEGORIES =   x11
 
 HOMEPAGE = https://gnometerminator.blogspot.com/p/introduction.html
+MAINTAINER =   Brian Callahan 
 
 # GPLv2
 PERMIT_PACKAGE_CDROM=  Yes
 
-MASTER_SITES = 
http://launchpad.net/terminator/trunk/${MODPY_EGG_VERSION}/+download/
+MASTER_SITES = 
http://launchpad.net/terminator/gtk3/${MODPY_EGG_VERSION}/+download/
 
 MODULES =  lang/python \
textproc/intltool
 RUN_DEPENDS =  devel/vte,-python \
+   devel/py-gobject3 \
devel/py-notify \
devel/desktop-file-utils \
+   sysutils/py-psutil \
x11/gtk+3,-guic \
x11/keybinder,-python
 
Index: distinfo
===
RCS file: /cvs/ports/x11/terminator/distinfo,v
retrieving revision 1.4
diff -u -p -u -p -r1.4 distinfo
--- distinfo26 Oct 2015 18:31:57 -  1.4
+++ distinfo6 Jun 2017 13:42:19 -
@@ -1,2 +1,2 @@
-SHA256 (terminator-0.98.tar.gz) = Cm2Mn/421n5glo+/J1LFIeXUmM7aQu8XGtPpZsAvJsE=
-SIZE (terminator-0.98.tar.gz) = 6007243
+SHA256 (terminator-1.91.tar.gz) = lfduPAJTlW0ZzqsvjacJpJbxuc+bHFuNPNC22jzHvmk=
+SIZE (terminator-1.91.tar.gz) = 910536
Index: patches/patch-doc_terminator_1
===
RCS file: patches/patch-doc_terminator_1
diff -N patches/patch-doc_terminator_1
--- patches/patch-doc_terminator_1  3 May 2013 23:21:17 -   1.2
+++ /dev/null   1 Jan 1970 00:00:00 -
@@ -1,19 +0,0 @@
-$OpenBSD: patch-doc_terminator_1,v 1.2 2013/05/03 23:21:17 bcallah Exp $
 doc/terminator.1.orig  Fri May  3 18:13:12 2013
-+++ doc/terminator.1   Fri May  3 18:15:11 2013
-@@ -89,7 +89,6 @@ will be displayed
- .B \-\-new-tab
- If this is specified and Terminator is already running, DBus will be
- used to spawn a new tab in the first Terminator window.
--.TP
- .SH "KEYBINDINGS"
- The following keybindings can be used to control Terminator:
- .TP 
-@@ -212,7 +211,6 @@ part of the same Terminator process)
- .TP
- .B Super+i
- Spawn a new Terminator process
--.TP
- .SH "Drag and Drop"
- The layout can be modified by moving terminals with Drag and Drop.
- To start dragging a terminal, click and hold on its titlebar.
Index: pkg/PLIST
===
RCS file: /cvs/ports/x11/terminator/pkg/PLIST,v
retrieving revision 1.6
diff -u -p -u -p -r1.6 PLIST
--- pkg/PLIST   26 Oct 2015 18:31:57 -  1.6
+++ pkg/PLIST   6 Jun 2017 13:42:19 -
@@ -2,7 +2,7 @@
 bin/remotinator
 bin/terminator
 bin/terminator.wrapper
-lib/python${MODPY_VERSION}/site-packages/Terminator-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info
+lib/python${MODPY_VERSION}/site-packages/terminator-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info
 lib/python${MODPY_VERSION}/site-packages/terminatorlib/
 lib/python${MODPY_VERSION}/site-packages/terminatorlib/__init__.py
 lib/python${MODPY_VERSION}/site-packages/terminatorlib/__init__.pyc
@@ -91,218 +91,6 @@ lib/python${MODPY_VERSION}/site-packages
 share/appdata/
 share/appdata/terminator.appdata.xml
 share/applications/terminator.desktop
-share/doc/terminator/
-share/doc/terminator/apidoc/
-share/doc/terminator/apidoc/.buildinfo
-share/doc/terminator/apidoc/_modules/
-share/doc/terminator/apidoc/_modules/index.html
-share/doc/terminator/apidoc/_modules/terminatorlib/
-share/doc/terminator/apidoc/_modules/terminatorlib/borg.html
-share/doc/terminator/apidoc/_modules/terminatorlib/config.html
-share/doc/terminator/apidoc/_modules/terminatorlib/configobj/
-share/doc/terminator/apidoc/_modules/terminatorlib/configobj/configobj.html
-share/doc/terminator/apidoc/_modules/terminatorlib/configobj/validate.html
-share/doc/terminator/apidoc/_modules/terminatorlib/container.html
-share/doc/terminator/apidoc/_modules/terminatorlib/cwd.html
-share/doc/terminator/apidoc/_modules/terminatorlib/debugserver.html
-share/doc/terminator/apidoc/_modules/terminatorlib/editablelabel.html
-share/doc/terminator/apidoc/_modules/terminatorlib/encoding.html
-share/doc/terminator/apidoc/_modules/terminatorlib/factory.html
-share/doc/terminator/apidoc/_modules/terminatorlib/freebsd.html
-sha

UPDATE: x11/terminator

2013-05-03 Thread Juan Francisco Cantero Hurtado
New version of terminator.

Release notes:

Lots of bug fixes and some minor features in preparation for a 1.0 release.
Changelog:

terminator 0.97:
  - Allow font dimming in inactive terminals
  - Allow URL handler plugins to override label text for URL context
menus
  - When copying a URL, run it through the URL handler first so the
resulting URL is copied, rather than the original text
  - Allow users to configure a custom URL handler, since the default GTK
library option is failing a lot of users in non-GNOME environments.
  - Allow rotation of a group of terminals (Andre Hilsendeger)
  - Add a keyboard shortcut to insert a terminal's number (Stephen J
Boddy)
  - Add a keyboard shortcut to edit the window title (Stephen J Boddy)
  - Add an easy way to balance terminals by double clicking on their
separator (Stephen J Boddy)
  - Add a plugin by Sinan Nalkaya to log the contents of terminals.
  - Support configuration of TERM and COLORTERM, via a patch from John
Feuerstein
  - Support reading configuration from alternate files, via a patch from
Pavel Khlebovich
  - Allow creation of new tabs in existing Terminators, via DBus
  - Support the Solarized palettes (Juan Francisco Cantero Hurtado)
  - Translation support for the Preferences window.
  - Lots of translation updates (thanks to everyone who helped!)
  - Bug fixes




Index: Makefile
===
RCS file: /cvs/ports/x11/terminator/Makefile,v
retrieving revision 1.9
diff -u -p -r1.9 Makefile
--- Makefile11 Mar 2013 11:46:16 -  1.9
+++ Makefile3 May 2013 21:05:19 -
@@ -2,7 +2,7 @@
 
 COMMENT=   GTK2 terminal emulator with split-window and tabs 
support
 
-MODPY_EGG_VERSION= 0.96
+MODPY_EGG_VERSION= 0.97
 DISTNAME=  terminator-${MODPY_EGG_VERSION}
 
 CATEGORIES=x11
Index: distinfo
===
RCS file: /cvs/ports/x11/terminator/distinfo,v
retrieving revision 1.2
diff -u -p -r1.2 distinfo
--- distinfo30 Jan 2013 16:12:36 -  1.2
+++ distinfo3 May 2013 21:05:19 -
@@ -1,2 +1,2 @@
-SHA256 (terminator-0.96.tar.gz) = 1wjHg8NiM/yvvQE5qRRiR4rkD1z2lu9Kz8r1iRqEMgE=
-SIZE (terminator-0.96.tar.gz) = 264226
+SHA256 (terminator-0.97.tar.gz) = kTGEcCP6IvEc+BL2zv9RtdZtFAtlGK1B1/qLB0K/0/c=
+SIZE (terminator-0.97.tar.gz) = 343857
Index: patches/patch-doc_terminator_1
===
RCS file: /cvs/ports/x11/terminator/patches/patch-doc_terminator_1,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 patch-doc_terminator_1
--- patches/patch-doc_terminator_1  23 May 2011 20:36:20 -  1.1.1.1
+++ patches/patch-doc_terminator_1  3 May 2013 21:05:19 -
@@ -1,14 +1,15 @@
 doc/terminator.1.orig  Thu May 19 15:37:28 2011
-+++ doc/terminator.1   Thu May 19 15:38:03 2011
-@@ -73,7 +73,6 @@
- only be printed from the specified functions. If this is specified in
- addition to \-\-debug-classes, only the intersection of the two lists
- will be displayed
+$OpenBSD$
+--- doc/terminator.1.orig  Fri May  3 18:13:12 2013
 doc/terminator.1   Fri May  3 18:15:11 2013
+@@ -89,7 +89,6 @@ will be displayed
+ .B \-\-new-tab
+ If this is specified and Terminator is already running, DBus will be
+ used to spawn a new tab in the first Terminator window.
 -.TP
  .SH "KEYBINDINGS"
  The following keybindings can be used to control Terminator:
  .TP 
-@@ -190,7 +189,6 @@
+@@ -212,7 +211,6 @@ part of the same Terminator process)
  .TP
  .B Super+i
  Spawn a new Terminator process
Index: patches/patch-setup_py
===
RCS file: patches/patch-setup_py
diff -N patches/patch-setup_py
--- patches/patch-setup_py  23 May 2011 20:36:20 -  1.1.1.1
+++ /dev/null   1 Jan 1970 00:00:00 -
@@ -1,11 +0,0 @@
 setup.py.orig  Thu May 19 15:21:23 2011
-+++ setup.py   Thu May 19 15:23:40 2011
-@@ -150,7 +150,7 @@
- return data_files
- 
- 
--if platform.system() == 'FreeBSD':
-+if platform.system() in ['FreeBSD', 'OpenBSD']:
-   man_dir = 'man'
- else:
-   man_dir = 'share/man'
Index: pkg/PLIST
===
RCS file: /cvs/ports/x11/terminator/pkg/PLIST,v
retrieving revision 1.4
diff -u -p -r1.4 PLIST
--- pkg/PLIST   30 Jan 2013 16:12:36 -  1.4
+++ pkg/PLIST   3 May 2013 21:05:19 -
@@ -1,4 +1,5 @@
 @comment $OpenBSD: PLIST,v 1.4 2013/01/30 16:12:36 bcallah Exp $
+bin/remotinator
 bin/terminator
 
lib/python${MODPY_VERSION}/site-packages/Terminator-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info
 lib/python${MODPY_VERSION}/site-packages/terminatorlib/
@@ -46,6 +47,8 @@ lib/python${MODPY_VERSION}/site-packages
 
lib/python${MODPY_VERSION}/site-packages/terminatorlib/plugins/activitywatch.pyc
 
lib/python${MODPY_VERSION}/site-packages/terminatorlib/plugins/custom_comma

Re: UPDATE: x11/terminator

2013-01-29 Thread Brian Callahan

On 1/28/2013 2:24 PM, Juan Francisco Cantero Hurtado wrote:

On Mon, Jan 28, 2013 at 08:19:55AM +0100, Landry Breuil wrote:

On Sun, Jan 27, 2013 at 08:30:52PM -0500, Brian Callahan wrote:

On 1/27/2013 8:14 PM, Juan Francisco Cantero Hurtado wrote:

New diff without both deps.

Index: Makefile
===
RCS file: /cvsync/ports/x11/terminator/Makefile,v
retrieving revision 1.7
diff -u -p -r1.7 Makefile
--- Makefile15 Jun 2012 08:30:24 -  1.7
+++ Makefile28 Jan 2013 01:11:17 -
@@ -2,15 +2,14 @@

  COMMENT=  GTK2 terminal emulator with split-window and tabs 
support

-MODPY_EGG_VERSION= 0.95
+MODPY_EGG_VERSION= 0.96
  DISTNAME= terminator-${MODPY_EGG_VERSION}
-REVISION=  5

  CATEGORIES=   x11

  HOMEPAGE= http://www.tenshu.net/terminator/

-MAINTAINER=Jochem Kossen 
+MAINTAINER=Juan Francisco Cantero Hurtado 

  # GPLv2
  PERMIT_PACKAGE_CDROM= Yes
@@ -25,13 +24,13 @@ MODULES=lang/python \
  RUN_DEPENDS=  devel/vte,-python \
devel/py-notify \
devel/desktop-file-utils \
-   x11/gtk+2,-guic
+   x11/keybinder,-python


Why removing x11/gtk+2,-guic ? It's usual to keep it as an explicit
run_depends for the @exec/@unexec lines, even if it's provided by
another run_depends.


Is it always necessary add x11/gtk+2,-guic to the py-gtk ports?. I
removed the dep because I thought it was a error.



Now that x11/keybinder is in, I can commit this if someone wants to give 
me an OK. I've been running this OK on amd64 and powerpc.


~Brian



Index: Makefile
===
RCS file: /cvsync/ports/x11/terminator/Makefile,v
retrieving revision 1.7
diff -u -p -r1.7 Makefile
--- Makefile15 Jun 2012 08:30:24 -  1.7
+++ Makefile28 Jan 2013 19:20:30 -
@@ -2,15 +2,14 @@

  COMMENT=  GTK2 terminal emulator with split-window and tabs 
support

-MODPY_EGG_VERSION= 0.95
+MODPY_EGG_VERSION= 0.96
  DISTNAME= terminator-${MODPY_EGG_VERSION}
-REVISION=  5

  CATEGORIES=   x11

  HOMEPAGE= http://www.tenshu.net/terminator/

-MAINTAINER=Jochem Kossen 
+MAINTAINER=Juan Francisco Cantero Hurtado 

  # GPLv2
  PERMIT_PACKAGE_CDROM= Yes
@@ -25,13 +24,14 @@ MODULES=lang/python \
  RUN_DEPENDS=  devel/vte,-python \
devel/py-notify \
devel/desktop-file-utils \
-   x11/gtk+2,-guic
+   x11/gtk+2,-guic \
+   x11/keybinder,-python

  NO_REGRESS=   Yes

  MODPY_SETUPTOOLS= Yes
  MODPY_SETUP=  setup.py --without-icon-cache
-# --single-version-externally-managed option used by MODPY doesn't exist (from 
audio/picard)
+# --single-version-externally-managed option used by MODPY doesn't exist
  MODPY_DISTUTILS_INSTALL=install --prefix=${LOCALBASE} --root=${DESTDIR}

  .include 
Index: distinfo
===
RCS file: /cvsync/ports/x11/terminator/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- distinfo23 May 2011 20:36:20 -  1.1.1.1
+++ distinfo27 Jan 2013 23:35:17 -
@@ -1,5 +1,2 @@
-MD5 (terminator-0.95.tar.gz) = zq5ciZxxucgOSAg8F6YxrQ==
-RMD160 (terminator-0.95.tar.gz) = YJZFTJsnGD7/NCLWGgG0pNKHP2E=
-SHA1 (terminator-0.95.tar.gz) = v3ZBVtax9RFqFSmLDWnyy+rQYLo=
-SHA256 (terminator-0.95.tar.gz) = BReHhbDs2qoUlJ/SP7v341XWWCvRG2vCmWkp8pK+HhM=
-SIZE (terminator-0.95.tar.gz) = 222782
+SHA256 (terminator-0.96.tar.gz) = 1wjHg8NiM/yvvQE5qRRiR4rkD1z2lu9Kz8r1iRqEMgE=
+SIZE (terminator-0.96.tar.gz) = 264226
Index: pkg/PLIST
===
RCS file: /cvsync/ports/x11/terminator/pkg/PLIST,v
retrieving revision 1.3
diff -u -p -r1.3 PLIST
--- pkg/PLIST   15 Jun 2012 08:30:24 -  1.3
+++ pkg/PLIST   27 Jan 2013 23:38:06 -
@@ -94,15 +94,17 @@ share/icons/hicolor/24x24/apps/terminato
  share/icons/hicolor/32x32/apps/terminator.png
  share/icons/hicolor/48x48/apps/terminator.png
  share/icons/hicolor/scalable/apps/terminator.svg
+share/locale/af/LC_MESSAGES/terminator.mo
  share/locale/ar/LC_MESSAGES/terminator.mo
+share/locale/ast/LC_MESSAGES/terminator.mo
  share/locale/bg/LC_MESSAGES/terminator.mo
+share/locale/bn/LC_MESSAGES/terminator.mo
  share/locale/ca/LC_MESSAGES/terminator.mo
+share/locale/ca@valencia/LC_MESSAGES/terminator.mo
  share/locale/cs/LC_MESSAGES/terminator.mo
  share/locale/da/LC_MESSAGES/terminator.mo
  share/locale/de/LC_MESSAGES/terminator.mo
  share/locale/el/LC_MESSAGES/terminator.mo
-share/locale/en_AU/
-share/locale/en_AU/LC_MESSAGES/
  share/locale/en_AU/LC_MESSAGES/terminator.mo
  share/locale/en_CA/LC_MESSAGES/t

Re: UPDATE: x11/terminator

2013-01-28 Thread Juan Francisco Cantero Hurtado
On Mon, Jan 28, 2013 at 09:17:19PM +, Stuart Henderson wrote:
> On 2013/01/28 20:24, Juan Francisco Cantero Hurtado wrote:
> > Is it always necessary add x11/gtk+2,-guic to the py-gtk ports?. I
> > removed the dep because I thought it was a error.
> 
> If the icon cache needs to be updated, then it should have this run dep.
> (guic = gtk-update-icon-cache)

It makes sense. Thanks for the help guys.

-- 
Juan Francisco Cantero Hurtado http://juanfra.info



Re: UPDATE: x11/terminator

2013-01-28 Thread Stuart Henderson
On 2013/01/28 20:24, Juan Francisco Cantero Hurtado wrote:
> Is it always necessary add x11/gtk+2,-guic to the py-gtk ports?. I
> removed the dep because I thought it was a error.

If the icon cache needs to be updated, then it should have this run dep.
(guic = gtk-update-icon-cache)



Re: UPDATE: x11/terminator

2013-01-28 Thread Juan Francisco Cantero Hurtado
On Mon, Jan 28, 2013 at 08:19:55AM +0100, Landry Breuil wrote:
> On Sun, Jan 27, 2013 at 08:30:52PM -0500, Brian Callahan wrote:
> > On 1/27/2013 8:14 PM, Juan Francisco Cantero Hurtado wrote:
> > >New diff without both deps.
> > >
> > >Index: Makefile
> > >===
> > >RCS file: /cvsync/ports/x11/terminator/Makefile,v
> > >retrieving revision 1.7
> > >diff -u -p -r1.7 Makefile
> > >--- Makefile   15 Jun 2012 08:30:24 -  1.7
> > >+++ Makefile   28 Jan 2013 01:11:17 -
> > >@@ -2,15 +2,14 @@
> > >
> > >  COMMENT= GTK2 terminal emulator with split-window and tabs 
> > > support
> > >
> > >-MODPY_EGG_VERSION=0.95
> > >+MODPY_EGG_VERSION=0.96
> > >  DISTNAME=terminator-${MODPY_EGG_VERSION}
> > >-REVISION= 5
> > >
> > >  CATEGORIES=  x11
> > >
> > >  HOMEPAGE=http://www.tenshu.net/terminator/
> > >
> > >-MAINTAINER=   Jochem Kossen 
> > >+MAINTAINER=   Juan Francisco Cantero Hurtado 
> > >
> > >
> > >  # GPLv2
> > >  PERMIT_PACKAGE_CDROM=Yes
> > >@@ -25,13 +24,13 @@ MODULES=   lang/python \
> > >  RUN_DEPENDS= devel/vte,-python \
> > >   devel/py-notify \
> > >   devel/desktop-file-utils \
> > >-  x11/gtk+2,-guic
> > >+  x11/keybinder,-python
> 
> Why removing x11/gtk+2,-guic ? It's usual to keep it as an explicit
> run_depends for the @exec/@unexec lines, even if it's provided by
> another run_depends.

Is it always necessary add x11/gtk+2,-guic to the py-gtk ports?. I
removed the dep because I thought it was a error.


Index: Makefile
===
RCS file: /cvsync/ports/x11/terminator/Makefile,v
retrieving revision 1.7
diff -u -p -r1.7 Makefile
--- Makefile15 Jun 2012 08:30:24 -  1.7
+++ Makefile28 Jan 2013 19:20:30 -
@@ -2,15 +2,14 @@
 
 COMMENT=   GTK2 terminal emulator with split-window and tabs 
support
 
-MODPY_EGG_VERSION= 0.95
+MODPY_EGG_VERSION= 0.96
 DISTNAME=  terminator-${MODPY_EGG_VERSION}
-REVISION=  5
 
 CATEGORIES=x11
 
 HOMEPAGE=  http://www.tenshu.net/terminator/
 
-MAINTAINER=Jochem Kossen 
+MAINTAINER=Juan Francisco Cantero Hurtado 
 
 # GPLv2
 PERMIT_PACKAGE_CDROM=  Yes
@@ -25,13 +24,14 @@ MODULES=lang/python \
 RUN_DEPENDS=   devel/vte,-python \
devel/py-notify \
devel/desktop-file-utils \
-   x11/gtk+2,-guic
+   x11/gtk+2,-guic \
+   x11/keybinder,-python
 
 NO_REGRESS=Yes
 
 MODPY_SETUPTOOLS=  Yes
 MODPY_SETUP=   setup.py --without-icon-cache
-# --single-version-externally-managed option used by MODPY doesn't exist (from 
audio/picard)
+# --single-version-externally-managed option used by MODPY doesn't exist
 MODPY_DISTUTILS_INSTALL=install --prefix=${LOCALBASE} --root=${DESTDIR}
 
 .include 
Index: distinfo
===
RCS file: /cvsync/ports/x11/terminator/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- distinfo23 May 2011 20:36:20 -  1.1.1.1
+++ distinfo27 Jan 2013 23:35:17 -
@@ -1,5 +1,2 @@
-MD5 (terminator-0.95.tar.gz) = zq5ciZxxucgOSAg8F6YxrQ==
-RMD160 (terminator-0.95.tar.gz) = YJZFTJsnGD7/NCLWGgG0pNKHP2E=
-SHA1 (terminator-0.95.tar.gz) = v3ZBVtax9RFqFSmLDWnyy+rQYLo=
-SHA256 (terminator-0.95.tar.gz) = BReHhbDs2qoUlJ/SP7v341XWWCvRG2vCmWkp8pK+HhM=
-SIZE (terminator-0.95.tar.gz) = 222782
+SHA256 (terminator-0.96.tar.gz) = 1wjHg8NiM/yvvQE5qRRiR4rkD1z2lu9Kz8r1iRqEMgE=
+SIZE (terminator-0.96.tar.gz) = 264226
Index: pkg/PLIST
===
RCS file: /cvsync/ports/x11/terminator/pkg/PLIST,v
retrieving revision 1.3
diff -u -p -r1.3 PLIST
--- pkg/PLIST   15 Jun 2012 08:30:24 -  1.3
+++ pkg/PLIST   27 Jan 2013 23:38:06 -
@@ -94,15 +94,17 @@ share/icons/hicolor/24x24/apps/terminato
 share/icons/hicolor/32x32/apps/terminator.png
 share/icons/hicolor/48x48/apps/terminator.png
 share/icons/hicolor/scalable/apps/terminator.svg
+share/locale/af/LC_MESSAGES/terminator.mo
 share/locale/ar/LC_MESSAGES/terminator.mo
+share/locale/ast/LC_MESSAGES/terminator.mo
 share/locale/bg/LC_MESSAGES/terminator.mo
+share/locale/bn/LC_MESSAGES/terminator.mo
 share/locale/ca/LC_MESSAGES/terminator.mo
+share/locale/ca@valencia/LC_MESSAGES/terminator.mo
 share/locale/cs/LC_MESSAGES/terminator.mo
 share/locale/da/LC_MESSAGES/terminator.mo
 share/locale/de/LC_MESSAGES/terminator.mo
 share/locale/el/LC_MESSAGES/terminator.mo
-share/locale/en_AU/
-share/locale/en_AU/LC_MESSAGES/
 share/locale/en_AU/LC_MESSAGES/terminator.mo
 share/locale/en_CA/LC_MESSAGES/terminator.mo
 share/l

Re: UPDATE: x11/terminator

2013-01-27 Thread Landry Breuil
On Sun, Jan 27, 2013 at 08:30:52PM -0500, Brian Callahan wrote:
> On 1/27/2013 8:14 PM, Juan Francisco Cantero Hurtado wrote:
> >New diff without both deps.
> >
> >Index: Makefile
> >===
> >RCS file: /cvsync/ports/x11/terminator/Makefile,v
> >retrieving revision 1.7
> >diff -u -p -r1.7 Makefile
> >--- Makefile 15 Jun 2012 08:30:24 -  1.7
> >+++ Makefile 28 Jan 2013 01:11:17 -
> >@@ -2,15 +2,14 @@
> >
> >  COMMENT=   GTK2 terminal emulator with split-window and tabs 
> > support
> >
> >-MODPY_EGG_VERSION=  0.95
> >+MODPY_EGG_VERSION=  0.96
> >  DISTNAME=  terminator-${MODPY_EGG_VERSION}
> >-REVISION=   5
> >
> >  CATEGORIES=x11
> >
> >  HOMEPAGE=  http://www.tenshu.net/terminator/
> >
> >-MAINTAINER= Jochem Kossen 
> >+MAINTAINER= Juan Francisco Cantero Hurtado 
> >
> >  # GPLv2
> >  PERMIT_PACKAGE_CDROM=  Yes
> >@@ -25,13 +24,13 @@ MODULES= lang/python \
> >  RUN_DEPENDS=   devel/vte,-python \
> > devel/py-notify \
> > devel/desktop-file-utils \
> >-x11/gtk+2,-guic
> >+x11/keybinder,-python

Why removing x11/gtk+2,-guic ? It's usual to keep it as an explicit
run_depends for the @exec/@unexec lines, even if it's provided by
another run_depends.

Landry



Re: UPDATE: x11/terminator

2013-01-27 Thread Brian Callahan

On 1/27/2013 8:14 PM, Juan Francisco Cantero Hurtado wrote:

New diff without both deps.

Index: Makefile
===
RCS file: /cvsync/ports/x11/terminator/Makefile,v
retrieving revision 1.7
diff -u -p -r1.7 Makefile
--- Makefile15 Jun 2012 08:30:24 -  1.7
+++ Makefile28 Jan 2013 01:11:17 -
@@ -2,15 +2,14 @@

  COMMENT=  GTK2 terminal emulator with split-window and tabs 
support

-MODPY_EGG_VERSION= 0.95
+MODPY_EGG_VERSION= 0.96
  DISTNAME= terminator-${MODPY_EGG_VERSION}
-REVISION=  5

  CATEGORIES=   x11

  HOMEPAGE= http://www.tenshu.net/terminator/

-MAINTAINER=Jochem Kossen 
+MAINTAINER=Juan Francisco Cantero Hurtado 

  # GPLv2
  PERMIT_PACKAGE_CDROM= Yes
@@ -25,13 +24,13 @@ MODULES=lang/python \
  RUN_DEPENDS=  devel/vte,-python \
devel/py-notify \
devel/desktop-file-utils \
-   x11/gtk+2,-guic
+   x11/keybinder,-python

  NO_REGRESS=   Yes

  MODPY_SETUPTOOLS= Yes
  MODPY_SETUP=  setup.py --without-icon-cache
-# --single-version-externally-managed option used by MODPY doesn't exist (from 
audio/picard)
+# --single-version-externally-managed option used by MODPY doesn't exist
  MODPY_DISTUTILS_INSTALL=install --prefix=${LOCALBASE} --root=${DESTDIR}

  .include 
Index: distinfo
===
RCS file: /cvsync/ports/x11/terminator/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- distinfo23 May 2011 20:36:20 -  1.1.1.1
+++ distinfo27 Jan 2013 23:35:17 -
@@ -1,5 +1,2 @@
-MD5 (terminator-0.95.tar.gz) = zq5ciZxxucgOSAg8F6YxrQ==
-RMD160 (terminator-0.95.tar.gz) = YJZFTJsnGD7/NCLWGgG0pNKHP2E=
-SHA1 (terminator-0.95.tar.gz) = v3ZBVtax9RFqFSmLDWnyy+rQYLo=
-SHA256 (terminator-0.95.tar.gz) = BReHhbDs2qoUlJ/SP7v341XWWCvRG2vCmWkp8pK+HhM=
-SIZE (terminator-0.95.tar.gz) = 222782
+SHA256 (terminator-0.96.tar.gz) = 1wjHg8NiM/yvvQE5qRRiR4rkD1z2lu9Kz8r1iRqEMgE=
+SIZE (terminator-0.96.tar.gz) = 264226
Index: pkg/PLIST
===
RCS file: /cvsync/ports/x11/terminator/pkg/PLIST,v
retrieving revision 1.3
diff -u -p -r1.3 PLIST
--- pkg/PLIST   15 Jun 2012 08:30:24 -  1.3
+++ pkg/PLIST   27 Jan 2013 23:38:06 -
@@ -94,15 +94,17 @@ share/icons/hicolor/24x24/apps/terminato
  share/icons/hicolor/32x32/apps/terminator.png
  share/icons/hicolor/48x48/apps/terminator.png
  share/icons/hicolor/scalable/apps/terminator.svg
+share/locale/af/LC_MESSAGES/terminator.mo
  share/locale/ar/LC_MESSAGES/terminator.mo
+share/locale/ast/LC_MESSAGES/terminator.mo
  share/locale/bg/LC_MESSAGES/terminator.mo
+share/locale/bn/LC_MESSAGES/terminator.mo
  share/locale/ca/LC_MESSAGES/terminator.mo
+share/locale/ca@valencia/LC_MESSAGES/terminator.mo
  share/locale/cs/LC_MESSAGES/terminator.mo
  share/locale/da/LC_MESSAGES/terminator.mo
  share/locale/de/LC_MESSAGES/terminator.mo
  share/locale/el/LC_MESSAGES/terminator.mo
-share/locale/en_AU/
-share/locale/en_AU/LC_MESSAGES/
  share/locale/en_AU/LC_MESSAGES/terminator.mo
  share/locale/en_CA/LC_MESSAGES/terminator.mo
  share/locale/en_GB/LC_MESSAGES/terminator.mo
@@ -159,6 +161,9 @@ share/locale/ta/LC_MESSAGES/terminator.m
  share/locale/te/LC_MESSAGES/terminator.mo
  share/locale/th/LC_MESSAGES/terminator.mo
  share/locale/tr/LC_MESSAGES/terminator.mo
+share/locale/tyv/
+share/locale/tyv/LC_MESSAGES/
+share/locale/tyv/LC_MESSAGES/terminator.mo
  share/locale/uk/LC_MESSAGES/terminator.mo
  share/locale/ur/LC_MESSAGES/terminator.mo
  share/locale/zh_CN/LC_MESSAGES/terminator.mo



OK for me but you'll have to wait until I import x11/keybinder.

~Brian



Re: UPDATE: x11/terminator

2013-01-27 Thread Juan Francisco Cantero Hurtado
New diff without both deps.

Index: Makefile
===
RCS file: /cvsync/ports/x11/terminator/Makefile,v
retrieving revision 1.7
diff -u -p -r1.7 Makefile
--- Makefile15 Jun 2012 08:30:24 -  1.7
+++ Makefile28 Jan 2013 01:11:17 -
@@ -2,15 +2,14 @@
 
 COMMENT=   GTK2 terminal emulator with split-window and tabs 
support
 
-MODPY_EGG_VERSION= 0.95
+MODPY_EGG_VERSION= 0.96
 DISTNAME=  terminator-${MODPY_EGG_VERSION}
-REVISION=  5
 
 CATEGORIES=x11
 
 HOMEPAGE=  http://www.tenshu.net/terminator/
 
-MAINTAINER=Jochem Kossen 
+MAINTAINER=Juan Francisco Cantero Hurtado 
 
 # GPLv2
 PERMIT_PACKAGE_CDROM=  Yes
@@ -25,13 +24,13 @@ MODULES=lang/python \
 RUN_DEPENDS=   devel/vte,-python \
devel/py-notify \
devel/desktop-file-utils \
-   x11/gtk+2,-guic
+   x11/keybinder,-python
 
 NO_REGRESS=Yes
 
 MODPY_SETUPTOOLS=  Yes
 MODPY_SETUP=   setup.py --without-icon-cache
-# --single-version-externally-managed option used by MODPY doesn't exist (from 
audio/picard)
+# --single-version-externally-managed option used by MODPY doesn't exist
 MODPY_DISTUTILS_INSTALL=install --prefix=${LOCALBASE} --root=${DESTDIR}
 
 .include 
Index: distinfo
===
RCS file: /cvsync/ports/x11/terminator/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- distinfo23 May 2011 20:36:20 -  1.1.1.1
+++ distinfo27 Jan 2013 23:35:17 -
@@ -1,5 +1,2 @@
-MD5 (terminator-0.95.tar.gz) = zq5ciZxxucgOSAg8F6YxrQ==
-RMD160 (terminator-0.95.tar.gz) = YJZFTJsnGD7/NCLWGgG0pNKHP2E=
-SHA1 (terminator-0.95.tar.gz) = v3ZBVtax9RFqFSmLDWnyy+rQYLo=
-SHA256 (terminator-0.95.tar.gz) = BReHhbDs2qoUlJ/SP7v341XWWCvRG2vCmWkp8pK+HhM=
-SIZE (terminator-0.95.tar.gz) = 222782
+SHA256 (terminator-0.96.tar.gz) = 1wjHg8NiM/yvvQE5qRRiR4rkD1z2lu9Kz8r1iRqEMgE=
+SIZE (terminator-0.96.tar.gz) = 264226
Index: pkg/PLIST
===
RCS file: /cvsync/ports/x11/terminator/pkg/PLIST,v
retrieving revision 1.3
diff -u -p -r1.3 PLIST
--- pkg/PLIST   15 Jun 2012 08:30:24 -  1.3
+++ pkg/PLIST   27 Jan 2013 23:38:06 -
@@ -94,15 +94,17 @@ share/icons/hicolor/24x24/apps/terminato
 share/icons/hicolor/32x32/apps/terminator.png
 share/icons/hicolor/48x48/apps/terminator.png
 share/icons/hicolor/scalable/apps/terminator.svg
+share/locale/af/LC_MESSAGES/terminator.mo
 share/locale/ar/LC_MESSAGES/terminator.mo
+share/locale/ast/LC_MESSAGES/terminator.mo
 share/locale/bg/LC_MESSAGES/terminator.mo
+share/locale/bn/LC_MESSAGES/terminator.mo
 share/locale/ca/LC_MESSAGES/terminator.mo
+share/locale/ca@valencia/LC_MESSAGES/terminator.mo
 share/locale/cs/LC_MESSAGES/terminator.mo
 share/locale/da/LC_MESSAGES/terminator.mo
 share/locale/de/LC_MESSAGES/terminator.mo
 share/locale/el/LC_MESSAGES/terminator.mo
-share/locale/en_AU/
-share/locale/en_AU/LC_MESSAGES/
 share/locale/en_AU/LC_MESSAGES/terminator.mo
 share/locale/en_CA/LC_MESSAGES/terminator.mo
 share/locale/en_GB/LC_MESSAGES/terminator.mo
@@ -159,6 +161,9 @@ share/locale/ta/LC_MESSAGES/terminator.m
 share/locale/te/LC_MESSAGES/terminator.mo
 share/locale/th/LC_MESSAGES/terminator.mo
 share/locale/tr/LC_MESSAGES/terminator.mo
+share/locale/tyv/
+share/locale/tyv/LC_MESSAGES/
+share/locale/tyv/LC_MESSAGES/terminator.mo
 share/locale/uk/LC_MESSAGES/terminator.mo
 share/locale/ur/LC_MESSAGES/terminator.mo
 share/locale/zh_CN/LC_MESSAGES/terminator.mo



Re: UPDATE: x11/terminator

2013-01-27 Thread Brian Callahan

On 1/27/2013 6:45 PM, Juan Francisco Cantero Hurtado wrote:

On Sat, Jan 26, 2013 at 08:00:31PM -0500, Brian Callahan wrote:

Hi ports --

I found a bump for x11/terminator posted to ports@ about 3 weeks ago
with no response. Attached is a patch that will update terminator to
0.96. It is slightly different from the one posted three weeks ago,
adding x11/keybinder as a RUN_DEPENDS (see my other email about
this).

Tested OK on amd64 and powerpc.

Juan: I left you as MAINTAINER. Do you still want it?

OK?

~Brian




? terminator96.diff
Index: Makefile
===
RCS file: /cvs/ports/x11/terminator/Makefile,v
retrieving revision 1.7
diff -u -p -r1.7 Makefile
--- Makefile15 Jun 2012 08:30:24 -  1.7
+++ Makefile27 Jan 2013 00:49:08 -
@@ -2,15 +2,14 @@

  COMMENT=  GTK2 terminal emulator with split-window and tabs 
support

-MODPY_EGG_VERSION= 0.95
+MODPY_EGG_VERSION= 0.96
  DISTNAME= terminator-${MODPY_EGG_VERSION}
-REVISION=  5

  CATEGORIES=   x11

  HOMEPAGE= http://www.tenshu.net/terminator/

-MAINTAINER=Jochem Kossen 
+MAINTAINER=Juan Francisco Cantero Hurtado 

  # GPLv2
  PERMIT_PACKAGE_CDROM= Yes
@@ -25,13 +24,14 @@ MODULES=lang/python \
  RUN_DEPENDS=  devel/vte,-python \
devel/py-notify \
devel/desktop-file-utils \
-   x11/gtk+2,-guic
+   x11/keybinder \


Change "x11/keybinder" to "x11/keybinder,-python".

The import fails with the former.



This also makes x11/py-gtk2 redundant, so remove it from RUN_DEPENDS.


+   x11/py-gtk2

  NO_REGRESS=   Yes

  MODPY_SETUPTOOLS= Yes
  MODPY_SETUP=  setup.py --without-icon-cache
-# --single-version-externally-managed option used by MODPY doesn't exist (from 
audio/picard)
+# --single-version-externally-managed option used by MODPY doesn't exist
  MODPY_DISTUTILS_INSTALL=install --prefix=${LOCALBASE} --root=${DESTDIR}

  .include 
Index: distinfo
===
RCS file: /cvs/ports/x11/terminator/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- distinfo23 May 2011 20:36:20 -  1.1.1.1
+++ distinfo27 Jan 2013 00:49:08 -
@@ -1,5 +1,2 @@
-MD5 (terminator-0.95.tar.gz) = zq5ciZxxucgOSAg8F6YxrQ==
-RMD160 (terminator-0.95.tar.gz) = YJZFTJsnGD7/NCLWGgG0pNKHP2E=
-SHA1 (terminator-0.95.tar.gz) = v3ZBVtax9RFqFSmLDWnyy+rQYLo=
-SHA256 (terminator-0.95.tar.gz) = BReHhbDs2qoUlJ/SP7v341XWWCvRG2vCmWkp8pK+HhM=
-SIZE (terminator-0.95.tar.gz) = 222782
+SHA256 (terminator-0.96.tar.gz) = 1wjHg8NiM/yvvQE5qRRiR4rkD1z2lu9Kz8r1iRqEMgE=
+SIZE (terminator-0.96.tar.gz) = 264226
Index: pkg/PLIST
===
RCS file: /cvs/ports/x11/terminator/pkg/PLIST,v
retrieving revision 1.3
diff -u -p -r1.3 PLIST
--- pkg/PLIST   15 Jun 2012 08:30:24 -  1.3
+++ pkg/PLIST   27 Jan 2013 00:49:08 -
@@ -94,9 +94,13 @@ share/icons/hicolor/24x24/apps/terminato
  share/icons/hicolor/32x32/apps/terminator.png
  share/icons/hicolor/48x48/apps/terminator.png
  share/icons/hicolor/scalable/apps/terminator.svg
+share/locale/af/LC_MESSAGES/terminator.mo
  share/locale/ar/LC_MESSAGES/terminator.mo
+share/locale/ast/LC_MESSAGES/terminator.mo
  share/locale/bg/LC_MESSAGES/terminator.mo
+share/locale/bn/LC_MESSAGES/terminator.mo
  share/locale/ca/LC_MESSAGES/terminator.mo
+share/locale/ca@valencia/LC_MESSAGES/terminator.mo
  share/locale/cs/LC_MESSAGES/terminator.mo
  share/locale/da/LC_MESSAGES/terminator.mo
  share/locale/de/LC_MESSAGES/terminator.mo
@@ -159,6 +163,9 @@ share/locale/ta/LC_MESSAGES/terminator.m
  share/locale/te/LC_MESSAGES/terminator.mo
  share/locale/th/LC_MESSAGES/terminator.mo
  share/locale/tr/LC_MESSAGES/terminator.mo
+share/locale/tyv/
+share/locale/tyv/LC_MESSAGES/
+share/locale/tyv/LC_MESSAGES/terminator.mo
  share/locale/uk/LC_MESSAGES/terminator.mo
  share/locale/ur/LC_MESSAGES/terminator.mo
  share/locale/zh_CN/LC_MESSAGES/terminator.mo


It works like a charm :)





Re: UPDATE: x11/terminator

2013-01-27 Thread Juan Francisco Cantero Hurtado
On Sat, Jan 26, 2013 at 08:00:31PM -0500, Brian Callahan wrote:
> Hi ports --
> 
> I found a bump for x11/terminator posted to ports@ about 3 weeks ago
> with no response. Attached is a patch that will update terminator to
> 0.96. It is slightly different from the one posted three weeks ago,
> adding x11/keybinder as a RUN_DEPENDS (see my other email about
> this).
> 
> Tested OK on amd64 and powerpc.
> 
> Juan: I left you as MAINTAINER. Do you still want it?
> 
> OK?
> 
> ~Brian
> 

> ? terminator96.diff
> Index: Makefile
> ===
> RCS file: /cvs/ports/x11/terminator/Makefile,v
> retrieving revision 1.7
> diff -u -p -r1.7 Makefile
> --- Makefile  15 Jun 2012 08:30:24 -  1.7
> +++ Makefile  27 Jan 2013 00:49:08 -
> @@ -2,15 +2,14 @@
>  
>  COMMENT= GTK2 terminal emulator with split-window and tabs 
> support
>  
> -MODPY_EGG_VERSION=   0.95
> +MODPY_EGG_VERSION=   0.96
>  DISTNAME=terminator-${MODPY_EGG_VERSION}
> -REVISION=5
>  
>  CATEGORIES=  x11
>  
>  HOMEPAGE=http://www.tenshu.net/terminator/
>  
> -MAINTAINER=  Jochem Kossen 
> +MAINTAINER=  Juan Francisco Cantero Hurtado 
>  
>  # GPLv2
>  PERMIT_PACKAGE_CDROM=Yes
> @@ -25,13 +24,14 @@ MODULES=  lang/python \
>  RUN_DEPENDS= devel/vte,-python \
>   devel/py-notify \
>   devel/desktop-file-utils \
> - x11/gtk+2,-guic
> + x11/keybinder \

Change "x11/keybinder" to "x11/keybinder,-python".

The import fails with the former.

> + x11/py-gtk2
>  
>  NO_REGRESS=  Yes
>  
>  MODPY_SETUPTOOLS=Yes
>  MODPY_SETUP= setup.py --without-icon-cache
> -# --single-version-externally-managed option used by MODPY doesn't exist 
> (from audio/picard)
> +# --single-version-externally-managed option used by MODPY doesn't exist
>  MODPY_DISTUTILS_INSTALL=install --prefix=${LOCALBASE} --root=${DESTDIR}
>  
>  .include 
> Index: distinfo
> ===
> RCS file: /cvs/ports/x11/terminator/distinfo,v
> retrieving revision 1.1.1.1
> diff -u -p -r1.1.1.1 distinfo
> --- distinfo  23 May 2011 20:36:20 -  1.1.1.1
> +++ distinfo  27 Jan 2013 00:49:08 -
> @@ -1,5 +1,2 @@
> -MD5 (terminator-0.95.tar.gz) = zq5ciZxxucgOSAg8F6YxrQ==
> -RMD160 (terminator-0.95.tar.gz) = YJZFTJsnGD7/NCLWGgG0pNKHP2E=
> -SHA1 (terminator-0.95.tar.gz) = v3ZBVtax9RFqFSmLDWnyy+rQYLo=
> -SHA256 (terminator-0.95.tar.gz) = 
> BReHhbDs2qoUlJ/SP7v341XWWCvRG2vCmWkp8pK+HhM=
> -SIZE (terminator-0.95.tar.gz) = 222782
> +SHA256 (terminator-0.96.tar.gz) = 
> 1wjHg8NiM/yvvQE5qRRiR4rkD1z2lu9Kz8r1iRqEMgE=
> +SIZE (terminator-0.96.tar.gz) = 264226
> Index: pkg/PLIST
> ===
> RCS file: /cvs/ports/x11/terminator/pkg/PLIST,v
> retrieving revision 1.3
> diff -u -p -r1.3 PLIST
> --- pkg/PLIST 15 Jun 2012 08:30:24 -  1.3
> +++ pkg/PLIST 27 Jan 2013 00:49:08 -
> @@ -94,9 +94,13 @@ share/icons/hicolor/24x24/apps/terminato
>  share/icons/hicolor/32x32/apps/terminator.png
>  share/icons/hicolor/48x48/apps/terminator.png
>  share/icons/hicolor/scalable/apps/terminator.svg
> +share/locale/af/LC_MESSAGES/terminator.mo
>  share/locale/ar/LC_MESSAGES/terminator.mo
> +share/locale/ast/LC_MESSAGES/terminator.mo
>  share/locale/bg/LC_MESSAGES/terminator.mo
> +share/locale/bn/LC_MESSAGES/terminator.mo
>  share/locale/ca/LC_MESSAGES/terminator.mo
> +share/locale/ca@valencia/LC_MESSAGES/terminator.mo
>  share/locale/cs/LC_MESSAGES/terminator.mo
>  share/locale/da/LC_MESSAGES/terminator.mo
>  share/locale/de/LC_MESSAGES/terminator.mo
> @@ -159,6 +163,9 @@ share/locale/ta/LC_MESSAGES/terminator.m
>  share/locale/te/LC_MESSAGES/terminator.mo
>  share/locale/th/LC_MESSAGES/terminator.mo
>  share/locale/tr/LC_MESSAGES/terminator.mo
> +share/locale/tyv/
> +share/locale/tyv/LC_MESSAGES/
> +share/locale/tyv/LC_MESSAGES/terminator.mo
>  share/locale/uk/LC_MESSAGES/terminator.mo
>  share/locale/ur/LC_MESSAGES/terminator.mo
>  share/locale/zh_CN/LC_MESSAGES/terminator.mo

It works like a charm :)

-- 
Juan Francisco Cantero Hurtado http://juanfra.info



Re: UPDATE: x11/terminator

2013-01-27 Thread Juan Francisco Cantero Hurtado
On Sat, Jan 26, 2013 at 08:00:31PM -0500, Brian Callahan wrote:
> Hi ports --
> 
> I found a bump for x11/terminator posted to ports@ about 3 weeks ago
> with no response. Attached is a patch that will update terminator to
> 0.96. It is slightly different from the one posted three weeks ago,
> adding x11/keybinder as a RUN_DEPENDS (see my other email about
> this).
> 
> Tested OK on amd64 and powerpc.
> 
> Juan: I left you as MAINTAINER. Do you still want it?

Yes.

> 
> OK?
> 
> ~Brian
> 

I will test both ports this evening.

Thanks.

-- 
Juan Francisco Cantero Hurtado http://juanfra.info



UPDATE: x11/terminator

2013-01-26 Thread Brian Callahan

Hi ports --

I found a bump for x11/terminator posted to ports@ about 3 weeks ago 
with no response. Attached is a patch that will update terminator to 
0.96. It is slightly different from the one posted three weeks ago, 
adding x11/keybinder as a RUN_DEPENDS (see my other email about this).


Tested OK on amd64 and powerpc.

Juan: I left you as MAINTAINER. Do you still want it?

OK?

~Brian

? terminator96.diff
Index: Makefile
===
RCS file: /cvs/ports/x11/terminator/Makefile,v
retrieving revision 1.7
diff -u -p -r1.7 Makefile
--- Makefile15 Jun 2012 08:30:24 -  1.7
+++ Makefile27 Jan 2013 00:49:08 -
@@ -2,15 +2,14 @@
 
 COMMENT=   GTK2 terminal emulator with split-window and tabs 
support
 
-MODPY_EGG_VERSION= 0.95
+MODPY_EGG_VERSION= 0.96
 DISTNAME=  terminator-${MODPY_EGG_VERSION}
-REVISION=  5
 
 CATEGORIES=x11
 
 HOMEPAGE=  http://www.tenshu.net/terminator/
 
-MAINTAINER=Jochem Kossen 
+MAINTAINER=Juan Francisco Cantero Hurtado 
 
 # GPLv2
 PERMIT_PACKAGE_CDROM=  Yes
@@ -25,13 +24,14 @@ MODULES=lang/python \
 RUN_DEPENDS=   devel/vte,-python \
devel/py-notify \
devel/desktop-file-utils \
-   x11/gtk+2,-guic
+   x11/keybinder \
+   x11/py-gtk2
 
 NO_REGRESS=Yes
 
 MODPY_SETUPTOOLS=  Yes
 MODPY_SETUP=   setup.py --without-icon-cache
-# --single-version-externally-managed option used by MODPY doesn't exist (from 
audio/picard)
+# --single-version-externally-managed option used by MODPY doesn't exist
 MODPY_DISTUTILS_INSTALL=install --prefix=${LOCALBASE} --root=${DESTDIR}
 
 .include 
Index: distinfo
===
RCS file: /cvs/ports/x11/terminator/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- distinfo23 May 2011 20:36:20 -  1.1.1.1
+++ distinfo27 Jan 2013 00:49:08 -
@@ -1,5 +1,2 @@
-MD5 (terminator-0.95.tar.gz) = zq5ciZxxucgOSAg8F6YxrQ==
-RMD160 (terminator-0.95.tar.gz) = YJZFTJsnGD7/NCLWGgG0pNKHP2E=
-SHA1 (terminator-0.95.tar.gz) = v3ZBVtax9RFqFSmLDWnyy+rQYLo=
-SHA256 (terminator-0.95.tar.gz) = BReHhbDs2qoUlJ/SP7v341XWWCvRG2vCmWkp8pK+HhM=
-SIZE (terminator-0.95.tar.gz) = 222782
+SHA256 (terminator-0.96.tar.gz) = 1wjHg8NiM/yvvQE5qRRiR4rkD1z2lu9Kz8r1iRqEMgE=
+SIZE (terminator-0.96.tar.gz) = 264226
Index: pkg/PLIST
===
RCS file: /cvs/ports/x11/terminator/pkg/PLIST,v
retrieving revision 1.3
diff -u -p -r1.3 PLIST
--- pkg/PLIST   15 Jun 2012 08:30:24 -  1.3
+++ pkg/PLIST   27 Jan 2013 00:49:08 -
@@ -94,9 +94,13 @@ share/icons/hicolor/24x24/apps/terminato
 share/icons/hicolor/32x32/apps/terminator.png
 share/icons/hicolor/48x48/apps/terminator.png
 share/icons/hicolor/scalable/apps/terminator.svg
+share/locale/af/LC_MESSAGES/terminator.mo
 share/locale/ar/LC_MESSAGES/terminator.mo
+share/locale/ast/LC_MESSAGES/terminator.mo
 share/locale/bg/LC_MESSAGES/terminator.mo
+share/locale/bn/LC_MESSAGES/terminator.mo
 share/locale/ca/LC_MESSAGES/terminator.mo
+share/locale/ca@valencia/LC_MESSAGES/terminator.mo
 share/locale/cs/LC_MESSAGES/terminator.mo
 share/locale/da/LC_MESSAGES/terminator.mo
 share/locale/de/LC_MESSAGES/terminator.mo
@@ -159,6 +163,9 @@ share/locale/ta/LC_MESSAGES/terminator.m
 share/locale/te/LC_MESSAGES/terminator.mo
 share/locale/th/LC_MESSAGES/terminator.mo
 share/locale/tr/LC_MESSAGES/terminator.mo
+share/locale/tyv/
+share/locale/tyv/LC_MESSAGES/
+share/locale/tyv/LC_MESSAGES/terminator.mo
 share/locale/uk/LC_MESSAGES/terminator.mo
 share/locale/ur/LC_MESSAGES/terminator.mo
 share/locale/zh_CN/LC_MESSAGES/terminator.mo


Re: UPDATE x11/terminator

2013-01-02 Thread Juan Francisco Cantero Hurtado
On Fri, Dec 28, 2012 at 03:12:18AM +0100, Juan Francisco Cantero Hurtado wrote:
> The version in ports has more than two years. I've updated the port to
> the last version (0.96 2011/09/23).
> 
> The former maintainer agrees with the change of maintainer: "you're
> welcome to take over maintainership".
> 
> Changelog:
> terminator 0.96:
>   - Unity support for opening new windows (Lucian Adrian Grijincu)
>   - Fix searching with infinite scrollback (Julien Thewys #755077)
>   - Fix searching on Ubuntu 10.10 and 11.04, and implement searching by
> regular expression (Roberto Aguilar #709018)
>   - Optimise various low level components so they are dramatically
> faster (Stephen Boddy)
>   - Fix various bugs (Stephen Boddy)
>   - Fix cursor colours (#700969) and a cursor blink issue (Tony Baker)
>   - Improve and extend drag&drop support to include more sources of
> text, e.g. Gtk file chooser path buttons (#643425)
>   - Add a plugin to watch a terminal for inactvity (i.e. silence)
>   - Fix loading layouts with more than two tabs (#646826)
>   - Fix order of tabs created from saved layouts (#615930)
>   - Add configuration to remove terminal dimensions from titlebars
> (patch from Joo Pinto #691213)
>   - Restore split positions more accurately (patch from Glenn Moss
> #797953)
>   - Fix activity notification in active terminals. (patch from Chris
> Newton #748681)
>   - Stop leaking child processes if terminals are closed using the
> context menu (#308025)
>   - Don't forget tab order and custom labels when closing terminals in
> them (#711356)
>   - Each terminal is assigned a unique identifier and this is exposed to
> the processes inside the terminal via the environment variable
> TERMINATOR_UUID
>   - Expand dbus support to start covering useful methods. Also add a
> commandline tool called 'remotinator' that can be used to control
> Terminator from a terminal running inside it.
>   - Fix terminal font settings for users of older Linux distributions

Ping.

> 
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/x11/terminator/Makefile,v
> retrieving revision 1.7
> diff -u -p -r1.7 Makefile
> --- Makefile  15 Jun 2012 08:30:24 -  1.7
> +++ Makefile  28 Dec 2012 01:51:22 -
> @@ -2,15 +2,14 @@
>  
>  COMMENT= GTK2 terminal emulator with split-window and tabs 
> support
>  
> -MODPY_EGG_VERSION=   0.95
> +MODPY_EGG_VERSION=   0.96
>  DISTNAME=terminator-${MODPY_EGG_VERSION}
> -REVISION=5
>  
>  CATEGORIES=  x11
>  
>  HOMEPAGE=http://www.tenshu.net/terminator/
>  
> -MAINTAINER=  Jochem Kossen 
> +MAINTAINER=  Juan Francisco Cantero Hurtado 
>  
>  # GPLv2
>  PERMIT_PACKAGE_CDROM=Yes
> @@ -25,13 +24,13 @@ MODULES=  lang/python \
>  RUN_DEPENDS= devel/vte,-python \
>   devel/py-notify \
>   devel/desktop-file-utils \
> - x11/gtk+2,-guic
> + x11/py-gtk2
>  
>  NO_REGRESS=  Yes
>  
>  MODPY_SETUPTOOLS=Yes
>  MODPY_SETUP= setup.py --without-icon-cache
> -# --single-version-externally-managed option used by MODPY doesn't exist 
> (from audio/picard)
> +# --single-version-externally-managed option used by MODPY doesn't exist
>  MODPY_DISTUTILS_INSTALL=install --prefix=${LOCALBASE} --root=${DESTDIR}
>  
>  .include 
> Index: distinfo
> ===
> RCS file: /cvs/ports/x11/terminator/distinfo,v
> retrieving revision 1.1.1.1
> diff -u -p -r1.1.1.1 distinfo
> --- distinfo  23 May 2011 20:36:20 -  1.1.1.1
> +++ distinfo  28 Dec 2012 01:51:22 -
> @@ -1,5 +1,2 @@
> -MD5 (terminator-0.95.tar.gz) = zq5ciZxxucgOSAg8F6YxrQ==
> -RMD160 (terminator-0.95.tar.gz) = YJZFTJsnGD7/NCLWGgG0pNKHP2E=
> -SHA1 (terminator-0.95.tar.gz) = v3ZBVtax9RFqFSmLDWnyy+rQYLo=
> -SHA256 (terminator-0.95.tar.gz) = 
> BReHhbDs2qoUlJ/SP7v341XWWCvRG2vCmWkp8pK+HhM=
> -SIZE (terminator-0.95.tar.gz) = 222782
> +SHA256 (terminator-0.96.tar.gz) = 
> 1wjHg8NiM/yvvQE5qRRiR4rkD1z2lu9Kz8r1iRqEMgE=
> +SIZE (terminator-0.96.tar.gz) = 264226
> Index: pkg/PLIST
> ===
> RCS file: /cvs/ports/x11/terminator/pkg/PLIST,v
> retrieving revision 1.3
> diff -u -p -r1.3 PLIST
> --- pkg/PLIST 15 Jun 2012 08:30:24 -  1.3
> +++ pkg/PLIST 28 Dec 2012 01:51:22 -
> @@ -94,9 +94,13 @@ share/icons/hicolor/24x24/apps/terminato
>  share/icons/hicolor/32x32/apps/terminator.png
>  share/icons/hicolor/48x48/apps/terminator.png
>  share/icons/hicolor/scalable/apps/terminator.svg
> +share/locale/af/LC_MESSAGES/terminator.mo
>  share/locale/ar/LC_MESSAGES/terminator.mo
> +share/locale/ast/LC_MESSAGES/terminator.mo
>  share/locale/bg/LC_MESSAGES/terminator.mo
> +share/locale/bn/LC_MESSAGES/terminator.mo
>  share/locale/ca/LC_MESSAGES/t

UPDATE x11/terminator

2012-12-27 Thread Juan Francisco Cantero Hurtado
The version in ports has more than two years. I've updated the port to
the last version (0.96 2011/09/23).

The former maintainer agrees with the change of maintainer: "you're
welcome to take over maintainership".

Changelog:
terminator 0.96:
  - Unity support for opening new windows (Lucian Adrian Grijincu)
  - Fix searching with infinite scrollback (Julien Thewys #755077)
  - Fix searching on Ubuntu 10.10 and 11.04, and implement searching by
regular expression (Roberto Aguilar #709018)
  - Optimise various low level components so they are dramatically
faster (Stephen Boddy)
  - Fix various bugs (Stephen Boddy)
  - Fix cursor colours (#700969) and a cursor blink issue (Tony Baker)
  - Improve and extend drag&drop support to include more sources of
text, e.g. Gtk file chooser path buttons (#643425)
  - Add a plugin to watch a terminal for inactvity (i.e. silence)
  - Fix loading layouts with more than two tabs (#646826)
  - Fix order of tabs created from saved layouts (#615930)
  - Add configuration to remove terminal dimensions from titlebars
(patch from Joo Pinto #691213)
  - Restore split positions more accurately (patch from Glenn Moss
#797953)
  - Fix activity notification in active terminals. (patch from Chris
Newton #748681)
  - Stop leaking child processes if terminals are closed using the
context menu (#308025)
  - Don't forget tab order and custom labels when closing terminals in
them (#711356)
  - Each terminal is assigned a unique identifier and this is exposed to
the processes inside the terminal via the environment variable
TERMINATOR_UUID
  - Expand dbus support to start covering useful methods. Also add a
commandline tool called 'remotinator' that can be used to control
Terminator from a terminal running inside it.
  - Fix terminal font settings for users of older Linux distributions


Index: Makefile
===
RCS file: /cvs/ports/x11/terminator/Makefile,v
retrieving revision 1.7
diff -u -p -r1.7 Makefile
--- Makefile15 Jun 2012 08:30:24 -  1.7
+++ Makefile28 Dec 2012 01:51:22 -
@@ -2,15 +2,14 @@
 
 COMMENT=   GTK2 terminal emulator with split-window and tabs 
support
 
-MODPY_EGG_VERSION= 0.95
+MODPY_EGG_VERSION= 0.96
 DISTNAME=  terminator-${MODPY_EGG_VERSION}
-REVISION=  5
 
 CATEGORIES=x11
 
 HOMEPAGE=  http://www.tenshu.net/terminator/
 
-MAINTAINER=Jochem Kossen 
+MAINTAINER=Juan Francisco Cantero Hurtado 
 
 # GPLv2
 PERMIT_PACKAGE_CDROM=  Yes
@@ -25,13 +24,13 @@ MODULES=lang/python \
 RUN_DEPENDS=   devel/vte,-python \
devel/py-notify \
devel/desktop-file-utils \
-   x11/gtk+2,-guic
+   x11/py-gtk2
 
 NO_REGRESS=Yes
 
 MODPY_SETUPTOOLS=  Yes
 MODPY_SETUP=   setup.py --without-icon-cache
-# --single-version-externally-managed option used by MODPY doesn't exist (from 
audio/picard)
+# --single-version-externally-managed option used by MODPY doesn't exist
 MODPY_DISTUTILS_INSTALL=install --prefix=${LOCALBASE} --root=${DESTDIR}
 
 .include 
Index: distinfo
===
RCS file: /cvs/ports/x11/terminator/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- distinfo23 May 2011 20:36:20 -  1.1.1.1
+++ distinfo28 Dec 2012 01:51:22 -
@@ -1,5 +1,2 @@
-MD5 (terminator-0.95.tar.gz) = zq5ciZxxucgOSAg8F6YxrQ==
-RMD160 (terminator-0.95.tar.gz) = YJZFTJsnGD7/NCLWGgG0pNKHP2E=
-SHA1 (terminator-0.95.tar.gz) = v3ZBVtax9RFqFSmLDWnyy+rQYLo=
-SHA256 (terminator-0.95.tar.gz) = BReHhbDs2qoUlJ/SP7v341XWWCvRG2vCmWkp8pK+HhM=
-SIZE (terminator-0.95.tar.gz) = 222782
+SHA256 (terminator-0.96.tar.gz) = 1wjHg8NiM/yvvQE5qRRiR4rkD1z2lu9Kz8r1iRqEMgE=
+SIZE (terminator-0.96.tar.gz) = 264226
Index: pkg/PLIST
===
RCS file: /cvs/ports/x11/terminator/pkg/PLIST,v
retrieving revision 1.3
diff -u -p -r1.3 PLIST
--- pkg/PLIST   15 Jun 2012 08:30:24 -  1.3
+++ pkg/PLIST   28 Dec 2012 01:51:22 -
@@ -94,9 +94,13 @@ share/icons/hicolor/24x24/apps/terminato
 share/icons/hicolor/32x32/apps/terminator.png
 share/icons/hicolor/48x48/apps/terminator.png
 share/icons/hicolor/scalable/apps/terminator.svg
+share/locale/af/LC_MESSAGES/terminator.mo
 share/locale/ar/LC_MESSAGES/terminator.mo
+share/locale/ast/LC_MESSAGES/terminator.mo
 share/locale/bg/LC_MESSAGES/terminator.mo
+share/locale/bn/LC_MESSAGES/terminator.mo
 share/locale/ca/LC_MESSAGES/terminator.mo
+share/locale/ca@valencia/LC_MESSAGES/terminator.mo
 share/locale/cs/LC_MESSAGES/terminator.mo
 share/locale/da/LC_MESSAGES/terminator.mo
 share/locale/de/LC_MESSAGES/terminator.mo
@@ -159,6 +163,9 @@ share/locale/ta/LC_MESSAGES/terminator.m
 share/locale/te/LC_MESSAGE