Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c160d89f27 |
10 changed files with 3 additions and 553 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
|
@ -1,6 +0,0 @@
|
|||
/clipit-1.4.1.tar.gz
|
||||
/clipit-1.4.2.tar.gz
|
||||
/v1.4.4.tar.gz
|
||||
/v1.4.5.tar.gz
|
||||
/ClipIt-20210922T1754.tar.gz
|
||||
/ClipIt-20250116T2347.tar.gz
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
From 39179ef368fc104c891ce50fd100c626f06f26b0 Mon Sep 17 00:00:00 2001
|
||||
From: Michael Simacek <msimacek@redhat.com>
|
||||
Date: Fri, 29 Jun 2018 10:45:42 +0200
|
||||
Subject: [PATCH 1/2] Autostart in MATE
|
||||
|
||||
---
|
||||
data/clipit-startup.desktop.in | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/data/clipit-startup.desktop.in b/data/clipit-startup.desktop.in
|
||||
index 63d6a72..427de24 100644
|
||||
--- a/data/clipit-startup.desktop.in
|
||||
+++ b/data/clipit-startup.desktop.in
|
||||
@@ -5,5 +5,5 @@ Icon=clipit-trayicon
|
||||
Exec=clipit
|
||||
Terminal=false
|
||||
Type=Application
|
||||
-OnlyShowIn=GNOME;XFCE;LXDE;Unity;
|
||||
+OnlyShowIn=GNOME;XFCE;LXDE;Unity;MATE;
|
||||
X-GNOME-Autostart-enabled=true
|
||||
--
|
||||
2.17.1
|
||||
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
--- ClipIt-1.4.5/src/main.c.nowayland 2020-06-11 14:33:56.000000000 +0900
|
||||
+++ ClipIt-1.4.5/src/main.c 2021-03-30 00:28:10.301811018 +0900
|
||||
@@ -1086,6 +1086,7 @@ int main(int argc, char **argv) {
|
||||
bindtextdomain(GETTEXT_PACKAGE, CLIPITLOCALEDIR);
|
||||
bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
|
||||
textdomain(GETTEXT_PACKAGE);
|
||||
+ setenv("GDK_BACKEND", "x11", 1);
|
||||
|
||||
input_buffer[0] = '\0';
|
||||
input_index = 0;
|
||||
|
|
@ -1,55 +0,0 @@
|
|||
From 46c53082bd81c769d3422f1bedbab57bc73e8007 Mon Sep 17 00:00:00 2001
|
||||
From: Mamoru TASAKA <mtasaka@fedoraproject.org>
|
||||
Date: Fri, 17 Jan 2025 00:23:31 +0900
|
||||
Subject: [PATCH] Fix function prototype for g_timer_add family for C23
|
||||
|
||||
g_timer_add or g_timeout_add_seconds manual says that
|
||||
the second argument must have type of GSourceFunc, i.e.
|
||||
function with one gpointer argument returning gboolean.
|
||||
|
||||
Fixing so, unless compilation fails with C23.
|
||||
---
|
||||
src/manage.c | 2 +-
|
||||
src/manage.h | 2 +-
|
||||
src/preferences.c | 2 +-
|
||||
3 files changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/src/manage.c b/src/manage.c
|
||||
index 25f7b75..25ed6d4 100644
|
||||
--- a/src/manage.c
|
||||
+++ b/src/manage.c
|
||||
@@ -331,7 +331,7 @@ void search_window_response(GtkDialog *dialog, gint response_id, gpointer user_d
|
||||
}
|
||||
|
||||
/* Shows the search dialog */
|
||||
-gboolean show_search()
|
||||
+gboolean show_search(gpointer user_data)
|
||||
{
|
||||
/* Prevent multiple instances */
|
||||
if(gtk_grab_get_current()) {
|
||||
diff --git a/src/manage.h b/src/manage.h
|
||||
index 8740c0f..b810e74 100644
|
||||
--- a/src/manage.h
|
||||
+++ b/src/manage.h
|
||||
@@ -24,7 +24,7 @@
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
-gboolean show_search();
|
||||
+gboolean show_search(gpointer);
|
||||
void remove_all_selected(gpointer);
|
||||
|
||||
G_END_DECLS
|
||||
diff --git a/src/preferences.c b/src/preferences.c
|
||||
index 4e9a9ed..8222758 100644
|
||||
--- a/src/preferences.c
|
||||
+++ b/src/preferences.c
|
||||
@@ -430,7 +430,7 @@ static void start_purge_timer(gint timeout_seconds);
|
||||
static void stop_purge_timer();
|
||||
|
||||
/* Purge history if history_timeout is enabled. This function is called every prefs.history_timeout_seconds */
|
||||
-static gboolean purge_history() {
|
||||
+static gboolean purge_history(gpointer user_data) {
|
||||
if (prefs.history_timeout) {
|
||||
g_list_free(history);
|
||||
history = NULL;
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<application>
|
||||
<id type="desktop">clipit.desktop</id>
|
||||
<metadata_licence>CC0</metadata_licence>
|
||||
<project_license>GPL-3.0+</project_license>
|
||||
<name>ClipIt</name>
|
||||
<summary>A lightweight, fully featured clipboard manager</summary>
|
||||
<description>
|
||||
<p>
|
||||
ClipIt is a lightweight, fully featured GTK+ clipboard manager.
|
||||
It was forked from Parcellite, adding additional features and bugfixes to the project.
|
||||
</p>
|
||||
<p>ClipIt's main features are:</p>
|
||||
<ul>
|
||||
<li>Save a history of your last copied items</li>
|
||||
<li>Search through the history</li>
|
||||
<li>Global hot-keys for most used functions</li>
|
||||
<li>Execute actions with clipboard items</li>
|
||||
<li>Exclude specific items from history</li>
|
||||
</ul>
|
||||
</description>
|
||||
<screenshots>
|
||||
<screenshot type="default" width="626" height="647">https://fedoraproject.org/w/uploads/3/3a/ClipIt.jpg</screenshot>
|
||||
</screenshots>
|
||||
<url type="homepage">https://github.com/CristianHenzel/ClipIt</url>
|
||||
</application>
|
||||
320
clipit.spec
320
clipit.spec
|
|
@ -1,320 +0,0 @@
|
|||
%global main_ver 1.4.5
|
||||
|
||||
%global reponame ClipIt
|
||||
%global gitdate 20241103
|
||||
%global gitcommit f35db540c9d3c57b13439d66597736e917e8c9a1
|
||||
%global shortcommit %(c=%{gitcommit}; echo ${c:0:7})
|
||||
|
||||
%global tarballdate 20250116
|
||||
%global tarballtime 2347
|
||||
|
||||
%global use_release 0
|
||||
%global use_gitbare 1
|
||||
%global use_gitcommit_as_ver 1
|
||||
|
||||
%if 0%{?use_gitbare} < 1
|
||||
%global use_release 1
|
||||
%endif
|
||||
|
||||
%if 0%{?use_gitcommit_as_ver} >= 1
|
||||
%global rpm_ver %{main_ver}^%{gitdate}git%{shortcommit}
|
||||
%global builddir_ver %{main_ver}-%{gitdate}git%{shortcommit}
|
||||
%else
|
||||
%define rpmver %{main_ver}
|
||||
%global builddir_ver %{main_ver}
|
||||
%endif
|
||||
|
||||
|
||||
Name: clipit
|
||||
Version: %{rpm_ver}
|
||||
Release: 3%{?dist}
|
||||
Summary: A lightweight, fully featured GTK+ clipboard manager
|
||||
|
||||
# meson.build says: GPL-3.0-or-later
|
||||
# src/eggaccelerators.{c,h} LGPL-2.1-or-later
|
||||
# src/keybinder.{c,h} LGPL-2.1-or-later
|
||||
# Other source GPL-3.0-or-later
|
||||
# SPDX confirmed
|
||||
License: GPL-3.0-or-later AND LGPL-2.1-or-later
|
||||
URL: https://github.com/CristianHenzel/ClipIt
|
||||
%if 0%{?use_release} >= 1
|
||||
Source0: https://github.com/CristianHenzel/ClipIt/archive/v%{version}.tar.gz
|
||||
%endif
|
||||
%if 0%{?use_gitbare} >= 1
|
||||
Source0: %{reponame}-%{tarballdate}T%{tarballtime}.tar.gz
|
||||
%endif
|
||||
Source1: %{name}.appdata.xml
|
||||
Source2: create-clipit-git-bare-tarball.sh
|
||||
# clipit doesn't autostart in MATE
|
||||
# Fixed upstream but not yet merged
|
||||
Patch0: 0001-Autostart-in-MATE.patch
|
||||
# Force GDK_BACKEND to x11
|
||||
Patch1: clipit-1.4.5-force-gdk_backend-x11.patch
|
||||
# Fix -Werror=incompatible-pointer-types
|
||||
Patch3: https://sources.debian.org/data/main/c/clipit/1.4.5%2Bgit20210313-3/debian/patches/incompatible-pointer-types.patch
|
||||
# https://github.com/CristianHenzel/ClipIt/pull/211
|
||||
# Fix compilation with C23 struct function prototype
|
||||
Patch4: clipit-pr211-c23-function-prototype.patch
|
||||
|
||||
%if 0%{?use_gitbare} >= 1
|
||||
BuildRequires: git
|
||||
%endif
|
||||
BuildRequires: automake
|
||||
BuildRequires: gcc
|
||||
BuildRequires: make
|
||||
BuildRequires: pkgconfig(gtk+-3.0)
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: intltool
|
||||
BuildRequires: gettext
|
||||
BuildRequires: /usr/bin/appstream-util
|
||||
Requires: xdotool
|
||||
|
||||
%description
|
||||
ClipIt is a lightweight, fully featured GTK+ clipboard manager. It was forked
|
||||
from Parcellite, adding additional features and bug-fixes to the project.
|
||||
ClipIts main features are:
|
||||
* Save a history of your last copied items
|
||||
* Search through the history
|
||||
* Global hot-keys for most used functions
|
||||
* Execute actions with clipboard items
|
||||
* Exclude specific items from history
|
||||
|
||||
|
||||
%prep
|
||||
%if 0%{?use_release} >= 1
|
||||
%setup -q -n %{reponame}-%{builddir_ver}
|
||||
%endif
|
||||
|
||||
%if 0%{?use_gitbare} >= 1
|
||||
%setup -q -c -n %{reponame}-%{builddir_ver} -T -a 0
|
||||
git clone ./%{reponame}.git
|
||||
|
||||
cd %{reponame}
|
||||
git checkout -b fedora-%{builddir_ver}-head %{gitcommit}
|
||||
cp -a [A-Z]* ..
|
||||
|
||||
git config user.name "%{name} Fedora maintainer"
|
||||
git config user.email "%{name}-maintainers@fedoraproject.org"
|
||||
%endif
|
||||
|
||||
%patch -P0 -p1 -b .mate
|
||||
%patch -P1 -p1 -b .nowayland
|
||||
%patch -P3 -p1 -b .c99_cast
|
||||
%patch -P4 -p1 -b .c23
|
||||
|
||||
sed -i data/clipit.desktop.in -e '\@_Comment.*hr@d'
|
||||
sed -i data/clipit-startup.desktop.in -e '\@_Comment.*hr@d'
|
||||
|
||||
%if 0%{?use_gitbare} >= 1
|
||||
git commit -m "Apply Fedora specific configuration" -a
|
||||
%endif
|
||||
|
||||
./autogen.sh
|
||||
|
||||
%build
|
||||
%if 0%{?use_gitbare} >= 1
|
||||
cd %{reponame}
|
||||
%endif
|
||||
|
||||
%configure \
|
||||
--with-gtk3 \
|
||||
%{nil}
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%if 0%{?use_gitbare} >= 1
|
||||
cd %{reponame}
|
||||
%endif
|
||||
|
||||
%make_install
|
||||
|
||||
%if 0%{?use_gitbare} >= 1
|
||||
cd ..
|
||||
%endif
|
||||
|
||||
%find_lang %{name}
|
||||
|
||||
desktop-file-install --delete-original \
|
||||
--remove-category=Application \
|
||||
--dir %{buildroot}%{_datadir}/applications \
|
||||
%{buildroot}%{_datadir}/applications/%{name}.desktop
|
||||
|
||||
desktop-file-install --delete-original \
|
||||
--dir %{buildroot}%{_sysconfdir}/xdg/autostart \
|
||||
%{buildroot}%{_sysconfdir}/xdg/autostart/%{name}-startup.desktop
|
||||
|
||||
mkdir -p %{buildroot}%{_metainfodir}
|
||||
install -c -p -m 644 %{SOURCE1} %{buildroot}%{_metainfodir}/%{name}.appdata.xml
|
||||
|
||||
%check
|
||||
appstream-util validate-relax --nonet %{buildroot}%{_metainfodir}/%{name}.appdata.xml
|
||||
|
||||
%files -f %{name}.lang
|
||||
%license COPYING
|
||||
%doc AUTHORS
|
||||
%doc ChangeLog
|
||||
%doc README.md
|
||||
|
||||
%{_bindir}/%{name}
|
||||
%{_mandir}/man1/%{name}.1.*
|
||||
%{_datadir}/icons/hicolor/scalable/apps/%{name}-trayicon*.svg
|
||||
%{_metainfodir}/%{name}.appdata.xml
|
||||
|
||||
%{_datadir}/applications/%{name}.desktop
|
||||
%config(noreplace) %{_sysconfdir}/xdg/autostart/%{name}-startup.desktop
|
||||
|
||||
%changelog
|
||||
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.5^20241103gitf35db54-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Fri Jan 24 2025 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.4.5^20241103gitf35db54-2
|
||||
- Remove debugging -std= option
|
||||
|
||||
* Thu Jan 16 2025 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.4.5^20241103gitf35db54-1
|
||||
- Update to the latest git (20241103gitf35db54)
|
||||
- Fix compilation with C23 for struct function prototypes
|
||||
|
||||
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.5^20210513gite5fa64c-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Tue Oct 08 2024 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.4.5^20210513gite5fa64c-6
|
||||
- Apply debian patch for -Werror=incompatible-pointer-types
|
||||
|
||||
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.5^20210513gite5fa64c-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.5^20210513gite5fa64c-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.5^20210513gite5fa64c-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.4.5^20210513gite5fa64c-2
|
||||
- Change -Wincompatible-pointer-types from error to warning
|
||||
|
||||
* Wed Jan 10 2024 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.4.5^20210513gite5fa64c-1
|
||||
- Use hat for release, change EVR scheme
|
||||
- SPDX migration
|
||||
|
||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.5-4.D20210513gite5fa64c.5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.5-4.D20210513gite5fa64c.4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Wed Dec 14 2022 Florian Weimer <fweimer@redhat.com> - 1.4.5-4.D20210513gite5fa64c.3
|
||||
- C99 compatibility fixes
|
||||
|
||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.5-4.D20210513gite5fa64c.2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.5-4.D20210513gite5fa64c.1
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Wed Sep 22 2021 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.4.5-4.D20210513gite5fa64c
|
||||
- Update to the latest git
|
||||
- increase POPUP_DELAY to workaround hotkey popup issue
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.5-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Mon Mar 29 2021 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.4.5-2
|
||||
- Force GDK_BACKEND to x11 (bug 1943480, bug 1943509)
|
||||
|
||||
* Fri Mar 19 2021 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.4.5-1
|
||||
- 1.4.5
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.4-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Fri Sep 11 2020 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.4.4-8
|
||||
- Backport upstream patch to fix history purge time being too short (bug 1640765)
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.4-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.4-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.4-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.4-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Tue Jul 03 2018 Michael Simacek <msimacek@redhat.com> - 1.4.4-2
|
||||
- Fix starting outside terminal
|
||||
|
||||
* Fri Jun 29 2018 Michael Simacek <msimacek@redhat.com> - 1.4.4-1
|
||||
- Update to upstream version 1.4.4
|
||||
|
||||
* Mon Feb 19 2018 Michael Simacek <msimacek@redhat.com> - 1.4.2-17
|
||||
- AppData fixes
|
||||
- Specfile cleanup
|
||||
- Add BRs on gcc and make
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.2-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Sun Jan 07 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.4.2-15
|
||||
- Remove obsolete scriptlets
|
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.2-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.2-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.2-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.2-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Mon Dec 15 2014 Nikos Roussos <nikos@autoverse.net> 1.4.2-9
|
||||
- Fix appdata syntax
|
||||
|
||||
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Fri May 02 2014 Nikos Roussos <nikos@autoverse.net> 1.4.2-6
|
||||
- Add EPEL support
|
||||
|
||||
* Thu Sep 12 2013 Nikos Roussos <nikos@autoverse.net> 1.4.2-5
|
||||
- Fix MATE autostart. Add appdata
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Fri Apr 27 2012 Nikos Roussos <nikos@autoverse.net> 1.4.2-1
|
||||
- Update to 1.4.2
|
||||
|
||||
* Wed Feb 29 2012 Nikos Roussos <nikos@autoverse.net> 1.4.1-5
|
||||
- Fix gtk+ inclusion bug, see patch1
|
||||
|
||||
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Thu Jul 14 2011 Nikos Roussos <nikos@autoverse.net> 1.4.1-3
|
||||
- Fixed dependency missing, de translation bug, desktop icon bug
|
||||
|
||||
* Fri Jul 01 2011 Nikos Roussos <nikos@autoverse.net> 1.4.1-2
|
||||
- Fixed config warning and more spec errors
|
||||
|
||||
* Wed Jun 01 2011 Nikos Roussos <nikos@autoverse.net> 1.4.1-1
|
||||
- Initial Fedora RPM
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -x
|
||||
set -e
|
||||
|
||||
REPONAME=ClipIt
|
||||
GITURL=https://github.com/CristianHenzel/${REPONAME}.git
|
||||
|
||||
DATE=$(date '+%Y%m%d')
|
||||
TIME=$(date '+%H%M')
|
||||
|
||||
TARNAME=${REPONAME}-${DATE}T${TIME}.tar.gz
|
||||
|
||||
PWDDIR=$(pwd)
|
||||
TMPDIR=$(mktemp -d /var/tmp/${REPONAME}-XXXXXX)
|
||||
pushd $TMPDIR
|
||||
|
||||
git clone --mirror $GITURL
|
||||
|
||||
mkdir TMP
|
||||
pushd TMP
|
||||
git clone ../${REPONAME}.git
|
||||
cd ${REPONAME}
|
||||
git log --format=fuller 2>&1 | head -n 8
|
||||
#grep version README.md
|
||||
echo
|
||||
popd
|
||||
|
||||
tar czf ${TARNAME} ${REPONAME}.git/
|
||||
|
||||
cp -p ${TARNAME} $PWDDIR
|
||||
popd
|
||||
rm -rf $TMPDIR
|
||||
3
dead.package
Normal file
3
dead.package
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
2017-02-17: Retired orphaned package, because it was orphaned for
|
||||
more than six weeks.
|
||||
|
||||
|
|
@ -1,79 +0,0 @@
|
|||
Author: Andreas Beckmann <anbe@debian.org>
|
||||
Description: fix building with -Werror=incompatible-pointer-types
|
||||
|
||||
--- a/src/keybinder.c
|
||||
+++ b/src/keybinder.c
|
||||
@@ -310,7 +310,7 @@ keybinder_is_modifier (guint keycode)
|
||||
gboolean retval = FALSE;
|
||||
|
||||
mod_keymap = XGetModifierMapping (
|
||||
- GDK_WINDOW_XDISPLAY(gdk_display_get_default()));
|
||||
+ GDK_DISPLAY_XDISPLAY(gdk_display_get_default()));
|
||||
|
||||
map_size = 8 * mod_keymap->max_keypermod;
|
||||
|
||||
--- a/src/main.c
|
||||
+++ b/src/main.c
|
||||
@@ -614,7 +614,7 @@ void underline_match(char* match, GtkMen
|
||||
PangoAttrList* attr_list = pango_attr_list_new();
|
||||
pango_attr_list_insert (attr_list, underline);
|
||||
|
||||
- GtkWidget* gtk_label = gtk_bin_get_child (GTK_BIN (menu_item));
|
||||
+ GtkLabel* gtk_label = (GtkLabel *) gtk_bin_get_child (GTK_BIN (menu_item));
|
||||
gtk_label_set_attributes (gtk_label, attr_list);
|
||||
}
|
||||
|
||||
@@ -638,7 +638,7 @@ gboolean selected_by_input(const GtkWidg
|
||||
append_to_input_buffer(event->string);
|
||||
|
||||
GtkMenuShell* menu = (GtkMenuShell *) history_menu;
|
||||
- GList* element = gtk_container_get_children(menu);
|
||||
+ GList* element = gtk_container_get_children((GtkContainer *) menu);
|
||||
GtkMenuItem *menu_item, *first_match = 0;
|
||||
|
||||
const gchar* menu_label;
|
||||
@@ -657,9 +657,9 @@ gboolean selected_by_input(const GtkWidg
|
||||
first_match = menu_item;
|
||||
match_count++;
|
||||
underline_match(match, menu_item, menu_label);
|
||||
- gtk_widget_set_sensitive(menu_item, true);
|
||||
+ gtk_widget_set_sensitive((GtkWidget *) menu_item, true);
|
||||
} else {
|
||||
- gtk_widget_set_sensitive(menu_item, false);
|
||||
+ gtk_widget_set_sensitive((GtkWidget *) menu_item, false);
|
||||
}
|
||||
element = element->next;
|
||||
count++;
|
||||
@@ -667,7 +667,7 @@ gboolean selected_by_input(const GtkWidg
|
||||
|
||||
if (first_match && match_count != prefs.items_menu) {
|
||||
gtk_menu_item_select(first_match);
|
||||
- gtk_menu_shell_select_item(menu, first_match);
|
||||
+ gtk_menu_shell_select_item(menu, (GtkWidget *) first_match);
|
||||
return TRUE;
|
||||
}
|
||||
return FALSE;
|
||||
--- a/src/preferences.c
|
||||
+++ b/src/preferences.c
|
||||
@@ -723,7 +723,7 @@ void show_preferences(gint tab) {
|
||||
*alignment, *hbox,
|
||||
*vbox;
|
||||
|
||||
- GtkWidget *adjustment, *adjustment_small, *adjustment_statics;
|
||||
+ GtkAdjustment *adjustment, *adjustment_small, *adjustment_statics;
|
||||
GtkTreeViewColumn *tree_column;
|
||||
|
||||
/* Create the dialog */
|
||||
@@ -898,9 +898,9 @@ void show_preferences(gint tab) {
|
||||
gtk_misc_set_alignment((GtkMisc*)label, 0.0, 0.50);
|
||||
gtk_box_pack_start((GtkBox*)hbox, label, FALSE, FALSE, 0);
|
||||
ellipsize_combo = gtk_combo_box_text_new();
|
||||
- gtk_combo_box_text_append_text((GtkComboBox*)ellipsize_combo, _("Beginning"));
|
||||
- gtk_combo_box_text_append_text((GtkComboBox*)ellipsize_combo, _("Middle"));
|
||||
- gtk_combo_box_text_append_text((GtkComboBox*)ellipsize_combo, _("End"));
|
||||
+ gtk_combo_box_text_append_text((GtkComboBoxText*)ellipsize_combo, _("Beginning"));
|
||||
+ gtk_combo_box_text_append_text((GtkComboBoxText*)ellipsize_combo, _("Middle"));
|
||||
+ gtk_combo_box_text_append_text((GtkComboBoxText*)ellipsize_combo, _("End"));
|
||||
gtk_box_pack_start((GtkBox*)hbox, ellipsize_combo, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start((GtkBox*)vbox_history, frame, FALSE, FALSE, 0);
|
||||
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
SHA512 (ClipIt-20250116T2347.tar.gz) = c99a3b5633018f9a4f168cca8d81f6ec75b398579c4a875fe9ad258410548b3f6c012f0914ea33af7ffb6c40c7cf47732f3420def042a2a5b8976fdf8e011c35
|
||||
Loading…
Add table
Add a link
Reference in a new issue