Skip to content
Commits on Source (188)
......@@ -646,7 +646,7 @@ the "copyright" line and a pointer to where the full notice is found.
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
along with this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
......@@ -665,7 +665,7 @@ might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<http://www.gnu.org/licenses/>.
<https://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
......
This diff is collapsed.
Parts of code copied from xterm, under this licence:
Copyright 2013-2019,2020 by Ross Combs
Copyright 2013-2019,2020 by Thomas E. Dickey
All Rights Reserved
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name(s) of the above copyright
holders shall not be used in advertising or otherwise to promote the
sale, use or other dealings in this Software without prior written
authorization.
# Copyright © 2019 Christian Persch
#
# This library is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 3 of the License, or (at your
# option) any later version.
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
# General Public License for more details.
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library. If not, see <https://www.gnu.org/licenses/>.
......@@ -24,6 +24,8 @@ NTHREADS = 1
NJOBS = -j$(NTHREADS)
NINJA = ninja $(NJOBS)
MESON = meson
#
all:
......@@ -46,3 +48,9 @@ install:
uninstall:
$(NINJA) uninstall
dist:
$(MESON) dist --no-tests
distcheck:
$(MESON) dist
# Copyright © 2018, 2019 Iñigo Martínez
# Copyright © 2019 Christian Persch
#
# This library is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 3 of the License, or (at your
# option) any later version.
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
# General Public License for more details.
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library. If not, see <https://www.gnu.org/licenses/>.
......
# Copyright © 2020 Aleksandr Mezin
# Copyright © 2020 Christian Persch
#
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library. If not, see <https://www.gnu.org/licenses/>.
gladedir = vte_datadir / 'glade'
cataloguedir = gladedir / 'catalogs'
pixmapdir = gladedir / 'pixmaps'
catalog_conf = configuration_data()
catalog_conf.set('VTE_API_VERSION', vte_gtk3_api_version)
catalog_conf.set('VERSION', vte_version)
configure_file(
input: 'vte.xml.in',
configuration: catalog_conf,
install_dir: cataloguedir,
output: vte_gtk3_api_name + '.xml',
)
install_data(
'hicolor_actions_16x16_widget-vte-terminal.png',
install_dir: pixmapdir / 'hicolor' / '16x16' / 'actions',
rename: 'widget-vte-terminal.png',
)
install_data(
'hicolor_actions_22x22_widget-vte-terminal.png',
install_dir: pixmapdir / 'hicolor' / '22x22' / 'actions',
rename: 'widget-vte-terminal.png',
)
<?xml version="1.0" encoding="UTF-8"?>
<glade-catalog name="vte-@VTE_API_VERSION@"
version="@VERSION@"
library="vte-@VTE_API_VERSION@"
domain="vte-@VTE_API_VERSION@"
depends="gtk+"
book="vte"
icon-prefix="vte"
supports="gtkbuilder">
<glade-widget-classes>
<glade-widget-class title="VTE Terminal" name="VteTerminal" generic-name="terminal" />
</glade-widget-classes>
<glade-widget-group name="vte-terminal" title="VTE Terminal">
<glade-widget-class-ref name="VteTerminal"/>
</glade-widget-group>
</glade-catalog>
# Copyright © 2018, 2019 Iñigo Martínez
# Copyright © 2019 Christian Persch
#
# This library is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 3 of the License, or (at your
# option) any later version.
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
# General Public License for more details.
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library. If not, see <https://www.gnu.org/licenses/>.
if get_option('glade') and get_option('gtk3')
subdir('glade')
endif
if get_option('gir') and (get_option('gtk3') or get_option('gtk4'))
subdir('gir')
endif
......
......@@ -2,18 +2,18 @@
<!--
Copyright © 2014 Christian Persch
This program is free software; you can redistribute it and/or modify
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope conf it will be useful,
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<gresources>
<gresource prefix="/org/gnome/vte/test/app">
......
......@@ -4,7 +4,7 @@
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
......@@ -13,7 +13,7 @@
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
namespace Test
......
# Copyright © 2018, 2019 Iñigo Martínez
# Copyright © 2019 Christian Persch
#
# This library is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 3 of the License, or (at your
# option) any later version.
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
# General Public License for more details.
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library. If not, see <https://www.gnu.org/licenses/>.
......
vte2.91 (0.64.2-1ubuntu1) UNRELEASED; urgency=medium
* Merge with debian experimental. Remaining changes:
- Add 91_keep_fds.patch since gdebi still requires it (LP: #1756238)
- Breaks/Replaces with libvte-2.91-0 (<= 0.60.0-2ubuntu1)
- Ubuntu gbp.conf and debian/control VCS information
* Refresh 91_keep_fds.patch
-- Gunnar Hjalmarsson <gunnarhj@ubuntu.com> Sun, 27 Jun 2021 03:03:18 +0200
vte2.91 (0.64.2-1) experimental; urgency=medium
* d/gbp.conf: Back to upstream/latest
* New upstream release
* Bump to debhelper-compat 13
* d/libvte-2.91-dev.install:
- Install glade/catalogs/vte-2.91.xml
* d/libvte-2.91-common.install:
- Install glade/pixmaps/hicolor/*/actions/widget-vte-terminal.png
* d/libvte-2.91-0.symbols: Add new symbols
* Refresh patch
-- Gunnar Hjalmarsson <gunnarhj@debian.org> Sun, 27 Jun 2021 01:28:22 +0200
vte2.91 (0.62.3-1ubuntu1) hirsute; urgency=medium
* Merge with debian. Remaining changes:
......
......@@ -8,7 +8,7 @@ Priority: optional
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
XSBC-Original-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
Uploaders: Iain Lane <laney@debian.org>, Jeremy Bicha <jbicha@debian.org>, Laurent Bigonville <bigon@debian.org>
Build-Depends: debhelper-compat (= 12),
Build-Depends: debhelper-compat (= 13),
dh-sequence-gnome,
dh-sequence-gir,
gettext,
......
......@@ -4,7 +4,7 @@ Priority: optional
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
XSBC-Original-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
Uploaders: @GNOME_TEAM@
Build-Depends: debhelper-compat (= 12),
Build-Depends: debhelper-compat (= 13),
dh-sequence-gnome,
dh-sequence-gir,
gettext,
......
[DEFAULT]
pristine-tar = True
debian-branch = ubuntu/master
upstream-branch = upstream/0.62.x
upstream-branch = upstream/latest
upstream-vcs-tag = %(version)s
debian-tag = ubuntu/%(version)s
......
......@@ -63,6 +63,7 @@ libvte-2.91.so.0 libvte-2.91-0 #MINVER#
vte_terminal_get_cursor_position@Base 0
vte_terminal_get_cursor_shape@Base 0
vte_terminal_get_enable_bidi@Base 0.57.90
vte_terminal_get_enable_fallback_scrolling@Base 0.64.2
vte_terminal_get_enable_shaping@Base 0.57.90
vte_terminal_get_enable_sixel@Base 0.61.91
vte_terminal_get_encoding@Base 0
......@@ -132,6 +133,7 @@ libvte-2.91.so.0 libvte-2.91-0 #MINVER#
vte_terminal_set_default_colors@Base 0
vte_terminal_set_delete_binding@Base 0
vte_terminal_set_enable_bidi@Base 0.57.90
vte_terminal_set_enable_fallback_scrolling@Base 0.64.2
vte_terminal_set_enable_shaping@Base 0.57.90
vte_terminal_set_enable_sixel@Base 0.61.91
vte_terminal_set_encoding@Base 0
......@@ -159,3 +161,4 @@ libvte-2.91.so.0 libvte-2.91-0 #MINVER#
(optional=template|regex)"_ZN.*@Base" 0
(optional=template|regex)"_ZS.*@Base" 0
(optional=template|regex)"_ZT.*@Base" 0
_ZZNSt19_Sp_make_shared_tag5_S_tiEvE5__tag@Base 0.64.2
......@@ -2,3 +2,4 @@ etc/profile.d/
usr/lib/systemd/
usr/libexec/
usr/share/locale
usr/share/glade/pixmaps
......@@ -3,3 +3,4 @@ usr/lib/*/libvte-2.91.so
usr/lib/*/pkgconfig/vte-2.91.pc
usr/share/gir-1.0
usr/share/vala/vapi
usr/share/glade/catalogs