--- cutepaste-0.1.0.orig/debian/changelog +++ cutepaste-0.1.0/debian/changelog @@ -0,0 +1,35 @@ +cutepaste (0.1.0-0ubuntu6) noble; urgency=medium + + * No-change rebuild for CVE-2024-3094 + + -- William Grant Mon, 01 Apr 2024 16:43:12 +1100 + +cutepaste (0.1.0-0ubuntu5) noble; urgency=medium + + * No-change rebuild against libqt5core5t64 + + -- Steve Langasek Fri, 15 Mar 2024 04:09:50 +0000 + +cutepaste (0.1.0-0ubuntu4) focal; urgency=medium + + * No-change rebuild for libgcc-s1 package name change. + + -- Matthias Klose Mon, 23 Mar 2020 07:12:16 +0100 + +cutepaste (0.1.0-0ubuntu3) bionic; urgency=high + + * No change rebuild to pick up -fPIE compiler default + + -- Balint Reczey Tue, 03 Apr 2018 12:18:13 +0000 + +cutepaste (0.1.0-0ubuntu2) trusty; urgency=medium + + * No change rebuild against libqt5core5a. + + -- Dimitri John Ledkov Fri, 14 Mar 2014 11:14:18 +0000 + +cutepaste (0.1.0-0ubuntu1) trusty; urgency=low + + * Initial release (Closes: #1255895) + + -- Unicode Snowman Thu, 12 Dec 2013 20:40:38 +1100 --- cutepaste-0.1.0.orig/debian/compat +++ cutepaste-0.1.0/debian/compat @@ -0,0 +1 @@ +8 --- cutepaste-0.1.0.orig/debian/control +++ cutepaste-0.1.0/debian/control @@ -0,0 +1,14 @@ +Source: cutepaste +Section: utils +Priority: extra +Maintainer: Kubuntu Developers +Build-Depends: debhelper (>= 9.0.0), cmake, qtbase5-dev +Standards-Version: 3.9.4 +Homepage: https://projects.kde.org/projects/playground/network/cutepaste + +Package: cutepaste +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Paste application for KDE + cutepaste is a paste utility for KDE. It can be invoked from the commandline to + paste a file or content to http://paste.kde.org/ --- cutepaste-0.1.0.orig/debian/copyright +++ cutepaste-0.1.0/debian/copyright @@ -0,0 +1,22 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: cutepaste +Source: + +Files: * +Copyright: 2013 Laszlo Papp +License: LGPL-2.1+ + This program is free software; you can redistribute it and/or modify it + under the terms and conditions of the GNU Lesser General Public License, + version 2.1, as published by the Free Software Foundation. + . + This program is distributed in the hope 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 program; if not, write to the Free Software Foundation, + Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. + . + On Debian systems the full text of the GNU Lesser General Public Licnse, + version 2.1, can be found in the /usr/share/common-licenses/LGPL-2.1 file. --- cutepaste-0.1.0.orig/debian/cutepaste.1 +++ cutepaste-0.1.0/debian/cutepaste.1 @@ -0,0 +1,49 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" (C) Copyright 2013 Unicode Snowman , +.\" +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH CUTEPASTE 1 "December 12, 2013" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +cutepaste \- paste utility for KDE +.SH SYNOPSIS +.B cutepaste +.RI " file (optional)" ... +.SH DESCRIPTION +This manual page documents briefly the +.B cutepaste +command. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBcutepaste\fP is straightforward utility that uses the KDE Paste (paste.kde.org) API +to paste content. It uses the Qt framework. You can invoke cutepaste by providing a file: +.br +cutepaste myfile.txt +.br +Alternatively, if there is no command line argument cutepaste will read from stdin: +.br +echo "Hello There" | cutepaste +.br +If successful, cutepaste will return the URL. +.br +Tip: You can automatically open the URL in the browser by passing the URL to the browser: + +[your favorite browser] $(echo "Hello There" | cutepaste) + +.SH OPTIONS +This program does not support options. --- cutepaste-0.1.0.orig/debian/cutepaste.manpages +++ cutepaste-0.1.0/debian/cutepaste.manpages @@ -0,0 +1 @@ +debian/cutepaste.1 --- cutepaste-0.1.0.orig/debian/rules +++ cutepaste-0.1.0/debian/rules @@ -0,0 +1,13 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@