Compare commits
62 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
01cda32985 | ||
|
|
0249b0776b | ||
|
|
c109edeed5 | ||
|
|
fc81c28b0a | ||
|
|
c623fcd896 | ||
|
|
caa129c6a4 | ||
|
|
1e08e04f56 | ||
|
|
4759973d54 | ||
|
|
2179451c3e | ||
|
|
ca4aa6ccd9 | ||
|
|
922fdf169c | ||
| 3604607f00 | |||
|
|
08c1c3ba3e | ||
|
|
ebf77d2b1f | ||
|
|
d06be02b03 | ||
|
|
08d5c22bb2 | ||
|
|
d07d5f9be9 | ||
|
|
e3c2929dfc | ||
|
|
b294edd594 | ||
|
|
02d9556a76 | ||
|
|
211936b464 | ||
|
|
cf35e61e27 | ||
|
|
37e90f7cd1 | ||
|
|
989a767743 | ||
|
|
735a6a1b7e | ||
|
|
2898427a94 | ||
|
|
26e77d97e0 | ||
|
|
c32261764c | ||
|
|
77e5db339f | ||
|
|
772dff0efd | ||
|
|
5f970fbe99 | ||
|
|
27c393150f | ||
|
|
59c36e9571 | ||
|
|
9a95218700 | ||
|
|
6d10021e2e | ||
|
|
7064fc56a5 | ||
|
|
cdf3b4c571 | ||
|
|
9932ed6eb4 | ||
|
|
d4b707c470 | ||
|
|
52af4577ea | ||
|
|
76136e0e5a | ||
|
|
b57f25312e | ||
|
|
77924ba338 | ||
|
|
669b673d76 | ||
|
|
dd24307221 | ||
|
|
c77fdd14d3 | ||
|
|
a11918115b | ||
|
|
5f9112ea96 | ||
|
|
4ded21fd86 | ||
|
|
ab5b024e1b | ||
|
|
0d2878b01d | ||
|
|
1fd64ab317 | ||
|
|
030e319773 | ||
|
|
36d4224337 | ||
|
|
ad77e1f5f5 | ||
|
|
73e8cab87c | ||
|
|
c5cefc7390 | ||
|
|
cf15b7ac7e | ||
|
|
52411f2f99 | ||
|
|
7a3abbbf91 | ||
|
|
12dc8c240c | ||
|
|
1fa766361f |
5 changed files with 1 additions and 165 deletions
9
.gitignore
vendored
9
.gitignore
vendored
|
|
@ -1,9 +0,0 @@
|
|||
/vte-0.27.0.tar.bz2
|
||||
/vte-0.27.2-gitd512516.tar.bz2
|
||||
/vte-0.27.2.tar.bz2
|
||||
/vte-0.27.3.tar.bz2
|
||||
/vte-0.27.4.tar.bz2
|
||||
/vte-0.27.5.tar.bz2
|
||||
/vte-0.27.90.tar.bz2
|
||||
/vte-0.28.0.tar.bz2
|
||||
/vte-0.28.1.tar.xz
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
Retire vte3 now that all dependencies have been ported to newer vte291.
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
diff -up vte-0.27.4/src/vte.c.grow-up vte-0.27.4/src/vte.c
|
||||
--- vte-0.27.4/src/vte.c.grow-up 2011-01-11 13:37:37.000000000 -0500
|
||||
+++ vte-0.27.4/src/vte.c 2011-01-14 11:31:27.159520002 -0500
|
||||
@@ -8133,6 +8133,24 @@ vte_terminal_init(VteTerminal *terminal)
|
||||
|
||||
_vte_debug_print(VTE_DEBUG_LIFECYCLE, "vte_terminal_init()\n");
|
||||
|
||||
+#if GTK_CHECK_VERSION (2, 91, 2)
|
||||
+ static GtkCssProvider *provider;
|
||||
+ GtkStyleContext *context;
|
||||
+
|
||||
+ if (provider == NULL) {
|
||||
+ provider = gtk_css_provider_new ();
|
||||
+ gtk_css_provider_load_from_data (GTK_CSS_PROVIDER (provider),
|
||||
+ "VteTerminal {\n"
|
||||
+ " -VteTerminal-inner-border: 1;\n"
|
||||
+ "}\n", -1, NULL);
|
||||
+ }
|
||||
+
|
||||
+ context = gtk_widget_get_style_context (GTK_WIDGET (terminal));
|
||||
+ gtk_style_context_add_provider (context,
|
||||
+ GTK_STYLE_PROVIDER (provider),
|
||||
+ GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
|
||||
+#endif
|
||||
+
|
||||
/* Initialize private data. */
|
||||
pvt = terminal->pvt = G_TYPE_INSTANCE_GET_PRIVATE (terminal, VTE_TYPE_TERMINAL, VteTerminalPrivate);
|
||||
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
33088ad48b02324b9530c50ffb1312df vte-0.28.1.tar.xz
|
||||
127
vte3.spec
127
vte3.spec
|
|
@ -1,127 +0,0 @@
|
|||
Name: vte3
|
||||
Version: 0.28.1
|
||||
Release: 1%{?dist}
|
||||
Summary: A terminal emulator
|
||||
License: LGPLv2+
|
||||
Group: User Interface/X
|
||||
#VCS: git:git://git.gnome.org/vte
|
||||
Source: http://download.gnome.org/sources/vte/0.28/vte-%{version}.tar.xz
|
||||
Patch0: honey-I-shrank-the-terminal.patch
|
||||
|
||||
|
||||
BuildRequires: gtk3-devel >= 3.0.0
|
||||
BuildRequires: ncurses-devel
|
||||
BuildRequires: gettext
|
||||
BuildRequires: libXt-devel
|
||||
BuildRequires: intltool
|
||||
BuildRequires: gobject-introspection-devel
|
||||
|
||||
# initscripts creates the utmp group
|
||||
Requires: initscripts
|
||||
|
||||
%description
|
||||
VTE is a terminal emulator widget for use with GTK+.
|
||||
|
||||
%package devel
|
||||
Summary: Files needed for developing applications which use vte
|
||||
Group: Development/Libraries
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: ncurses-devel
|
||||
|
||||
%description devel
|
||||
The vte-devel package includes the header files and developer docs
|
||||
for the vte package.
|
||||
|
||||
Install vte-devel if you want to develop programs which will use
|
||||
vte.
|
||||
|
||||
%prep
|
||||
%setup -q -n vte-%{version}
|
||||
%patch0 -p1 -b .grow-up
|
||||
|
||||
%build
|
||||
%configure \
|
||||
--enable-shared \
|
||||
--disable-static \
|
||||
--with-gtk=3.0 \
|
||||
--libexecdir=%{_libdir}/vte-2.90 \
|
||||
--without-glX \
|
||||
--disable-gtk-doc \
|
||||
--enable-introspection
|
||||
make
|
||||
|
||||
%install
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
||||
|
||||
%find_lang vte-2.90
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%files -f vte-2.90.lang
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING HACKING NEWS README
|
||||
%doc src/iso2022.txt
|
||||
%doc doc/utmpwtmp.txt doc/boxes.txt doc/openi18n/UTF-8.txt doc/openi18n/wrap.txt
|
||||
%{_libdir}/*.so.*
|
||||
%dir %{_libdir}/vte-2.90
|
||||
%attr(2711,root,utmp) %{_libdir}/vte-2.90/gnome-pty-helper
|
||||
%{_datadir}/vte
|
||||
%{_libdir}/girepository-1.0
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%{_includedir}/*
|
||||
%{_libdir}/*.so
|
||||
%{_libdir}/pkgconfig/*
|
||||
%{_bindir}/vte2_90
|
||||
%doc %{_datadir}/gtk-doc/html/vte-2.90
|
||||
%{_datadir}/gir-1.0
|
||||
|
||||
|
||||
%changelog
|
||||
* Thu Jun 16 2011 Tomas Bzatek <tbzatek@redhat.com> - 0.28.1-1
|
||||
- Update to 0.28.1
|
||||
|
||||
* Mon Apr 4 2011 Matthias Clasen <mclasen@redhat.com> 0.28.0-1
|
||||
- Update to 0.28.0
|
||||
|
||||
* Thu Feb 24 2011 Matthias Clasen <mclasen@redhat.com> 0.27.90-2
|
||||
- Enable introspection
|
||||
|
||||
* Tue Feb 22 2011 Matthias Clasen <mclasen@redhat.com> 0.27.90-1
|
||||
- Update to 0.27.90
|
||||
|
||||
* Thu Feb 10 2011 Matthias Clasen <mclasen@redhat.com> 0.27.5-3
|
||||
- Rebuild against newer gtk
|
||||
|
||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.27.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Wed Feb 2 2011 Matthias Clasen <mclasen@redhat.com> 0.27.5-1
|
||||
- 0.27.5
|
||||
|
||||
* Fri Jan 14 2011 Matthias Clasen <mclasen@redhat.com> 0.27.4-2
|
||||
- Stop shrinking-terminal disease
|
||||
|
||||
* Tue Jan 11 2011 Matthias Clasen <mclasen@redhat.com> 0.27.4-1
|
||||
- Update to 0.27.4
|
||||
|
||||
* Fri Jan 7 2011 Matthias Clasen <mclasen@redhat.com> 0.27.3-1
|
||||
- Update to 0.27.3
|
||||
|
||||
* Fri Dec 3 2010 Matthias Clasen <mclasen@redhat.com> 0.27.2-2
|
||||
- Rebuild against new gtk
|
||||
|
||||
* Thu Nov 11 2010 Matthias Clasen <mclasen@redhat.com> 0.27.2-1
|
||||
- Update to 0.27.2
|
||||
|
||||
* Mon Nov 1 2010 Matthias Clasen <mclasen@redhat.com> 0.27.2-0.1.git512516
|
||||
- Git snapshot that builds with recent gtk3
|
||||
|
||||
* Mon Oct 4 2010 Matthias Clasen <mclasen@redhat.com> 0.27.0-1
|
||||
- Initial packaging
|
||||
Loading…
Add table
Add a link
Reference in a new issue