app-misc/*: simple name change and update

Signed-off-by: Quincy Fleming <quincyf467@protonmail.com>
This commit is contained in:
Quincy Fleming
2023-07-10 13:46:19 -05:00
parent ef7a8c4faf
commit 7d3da3fe4d
7 changed files with 12 additions and 15 deletions

View File

@@ -1,2 +0,0 @@
DIST Clipboard-0.7.1.tar.gz 29187709 BLAKE2B 9e33b0aa81ea434936e6c4fb6584e1df82726ebb98e933740f469454095c0810cc3e979a85009d2774d27b8e12d46c7affb82f4345cbf8425179040b0c448c88 SHA512 29c50c73d5b6860bc49c41fccbd04a7b8904876a2925916471039b22abb6a964d04dbbdb5fa7a97da346c85c1c47ab5b76a3f9a77ce11446c6fc7a5754c699fe
DIST Clipboard-0.8.0.tar.gz 29340849 BLAKE2B 91635f16eee4c7fec588f3ceae34571e815680a34553ecf352f67b77c0749ad4c4ee848713d1b65d7e0a4dee0a2a597b29f59abab9082400dc02acba00ab7326 SHA512 b600e8425e48625ed2ad068500e381b1a0d40eacce92e05d45af21c1f5517dcac516287fbcdc1c03fe87cd5bdd5933258ffccf31460a03dfd7e306dc22442c63

View File

@@ -0,0 +1,2 @@
DIST clipboard-0.8.0.tar.gz 29340849 BLAKE2B 91635f16eee4c7fec588f3ceae34571e815680a34553ecf352f67b77c0749ad4c4ee848713d1b65d7e0a4dee0a2a597b29f59abab9082400dc02acba00ab7326 SHA512 b600e8425e48625ed2ad068500e381b1a0d40eacce92e05d45af21c1f5517dcac516287fbcdc1c03fe87cd5bdd5933258ffccf31460a03dfd7e306dc22442c63
DIST clipboard-0.8.1.tar.gz 31510477 BLAKE2B 25243b59af15ef692f466fcb2b6c35cdd05e2ebaee95ddf2b1c6a555c2225d2273c4d0cc7785fb2da8cfdf8a5afeac968a48cc191c45e1df6966a8dfcfccff0b SHA512 b4c2c857cc734c6470990348c67f31b706cb61b116794135d5e60073d8e5389d4c93ee410e47a9c07998bd3a6578013879ee5f997eda9613c864ea312b54da2e

View File

@@ -5,9 +5,11 @@ EAPI=8
inherit cmake
MY_PN="Clipboard"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Cut, copy, and paste anything in your terminal"
HOMEPAGE="https://getclipboard.app/ https://github.com/Slackadays/Clipboard"
SRC_URI="https://github.com/Slackadays/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI="https://github.com/Slackadays/${MY_PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
@@ -20,6 +22,8 @@ RDEPEND="X? ( x11-libs/libX11 )
dev-libs/wayland
)
"
S="${WORKDIR}/${MY_P}"
PATCHES=(
"${FILESDIR}/disable-git-and-lto.patch"
)

View File

@@ -5,9 +5,11 @@ EAPI=8
inherit cmake
MY_PN="Clipboard"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Cut, copy, and paste anything in your terminal"
HOMEPAGE="https://getclipboard.app/ https://github.com/Slackadays/Clipboard"
SRC_URI="https://github.com/Slackadays/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI="https://github.com/Slackadays/${MY_PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
@@ -20,6 +22,8 @@ RDEPEND="X? ( x11-libs/libX11 )
dev-libs/wayland
)
"
S="${WORKDIR}/${MY_P}"
PATCHES=(
"${FILESDIR}/disable-git-and-lto.patch"
)
@@ -43,14 +47,3 @@ src_configure() {
)
cmake_src_configure
}
pkg_postinst() {
ewarn "The new history feature makes CB incompatible with how older versions stored clipboard contents."
ewarn "If you have existing content when you upgrade, then it might not appear in CB, although it won't be deleted."
ewarn "To fix this, take everything stored in the data folder of your existing clipboards"
ewarn "and move them to a \"0\" subfolder within data."
ewarn "So, if you have the file Foobar stored under data, the new setup will look like the folder 0 under data,"
ewarn "and 0 stores the file Foobar."
ewarn "To find where CB keeps your clipboards, use the cb info command and check the line that says Stored in...."
ewarn "If you don't already have content stored with CB, then this warning doesn't apply to you."
}