Date: Sunday, April 24, 2022 @ 12:38:47
Author: allan
Revision: 1189564
archrelease: copy trunk to community-x86_64
Added:
beebeep/repos/community-x86_64/PKGBUILD
(from rev 1189563, beebeep/trunk/PKGBUILD)
beebeep/repos/community-x86_64/install-target.patch
(from rev 1189563, beebeep/trunk/install-target.patch)
Deleted:
beebeep/repos/community-x86_64/PKGBUILD
beebeep/repos/community-x86_64/beebeep.appdata.xml
----------------------+
PKGBUILD | 69 +++++++++++++--------------
beebeep.appdata.xml | 21 --------
install-target.patch | 124 +++++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 158 insertions(+), 56 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-04-24 12:38:26 UTC (rev 1189563)
+++ PKGBUILD 2022-04-24 12:38:47 UTC (rev 1189564)
@@ -1,35 +0,0 @@
-# Maintainer: Balló György <ballogyor+arch at gmail dot com>
-# Contributor: Kevin Puertas <kevinpr at jkanetwork dot com>
-# Contributor: St.kai <[email protected]>
-# Contributor: ssysmso sending updated PKGBUILD
-# Contributor: Christoph Korn <christoph.korn at posteo dot de>
-
-pkgname=beebeep
-pkgver=5.8.4
-pkgrel=4
-pkgdesc='Secure LAN messenger and file sender'
-arch=('x86_64')
-url='https://www.beebeep.net/'
-license=('GPL3')
-depends=('qt5-multimedia' 'qt5-x11extras')
-source=("https://downloads.sourceforge.net/$pkgname/$pkgname-code-$pkgver.zip"
- 'beebeep.appdata.xml')
-sha256sums=('43e65a9d5249385fde782907d0cc3e26d6dd435bb623bcc0f93499055988f04c'
- '05c6add5d33f4e429b213f25d46053611f838fdd709c593af211133c96788ca7')
-
-build() {
- cd $pkgname-code-r*
- qmake-qt5
- make
-}
-
-package(){
- cd $pkgname-code-r*
- install -Dm755 test/beebeep "$pkgdir/usr/bin/beebeep"
- install -Dm644 test/lib*.so -t "$pkgdir/usr/lib/beebeep/"
- install -Dm644 locale/beebeep_*.qm -t "$pkgdir/usr/share/beebeep/"
- install -Dm644 src/images/beebeep.png "$pkgdir/usr/share/beebeep/beebeep.png"
- install -Dm644 misc/beep.wav "$pkgdir/usr/share/beebeep/beep.wav"
- install -Dm644 scripts/debian_amd64/$pkgname.desktop
"$pkgdir/usr/share/applications/$pkgname.desktop"
- install -Dm644 ../beebeep.appdata.xml
"$pkgdir/usr/share/metainfo/$pkgname.appdata.xml"
-}
Copied: beebeep/repos/community-x86_64/PKGBUILD (from rev 1189563,
beebeep/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-04-24 12:38:47 UTC (rev 1189564)
@@ -0,0 +1,34 @@
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+# Contributor: Kevin Puertas <kevinpr at jkanetwork dot com>
+# Contributor: St.kai <[email protected]>
+# Contributor: ssysmso sending updated PKGBUILD
+# Contributor: Christoph Korn <christoph.korn at posteo dot de>
+
+pkgname=beebeep
+pkgver=5.8.4
+pkgrel=5
+pkgdesc='Secure LAN messenger and file sender'
+arch=('x86_64')
+url='https://www.beebeep.net/'
+license=('GPL3')
+depends=('qt5-multimedia' 'qt5-x11extras')
+source=("https://downloads.sourceforge.net/$pkgname/$pkgname-code-$pkgver.zip"
+ 'install-target.patch')
+sha256sums=('43e65a9d5249385fde782907d0cc3e26d6dd435bb623bcc0f93499055988f04c'
+ '35f28432630bd9cf7ca3d99e33454cafe6e8127ef9d0935071f587ddb062269d')
+
+prepare() {
+ cd $pkgname-code-r*
+ patch -Np0 -i ../install-target.patch
+}
+
+build() {
+ cd $pkgname-code-r*
+ qmake-qt5 PREFIX=/usr
+ make
+}
+
+package(){
+ cd $pkgname-code-r*
+ make INSTALL_ROOT="$pkgdir" install
+}
Deleted: beebeep.appdata.xml
===================================================================
--- beebeep.appdata.xml 2022-04-24 12:38:26 UTC (rev 1189563)
+++ beebeep.appdata.xml 2022-04-24 12:38:47 UTC (rev 1189564)
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<component type="desktop-application">
- <id>net.beebeep.BeeBEEP</id>
- <launchable type="desktop-id">beebeep.desktop</launchable>
- <name>BeeBEEP</name>
- <summary>Free office messenger</summary>
- <metadata_license>CC0-1.0</metadata_license>
- <project_license>GPL-3.0</project_license>
- <developer_name>Marco Mastroddi</developer_name>
- <description>
- <p>This office messaging application, BeeBEEP, does not need an external
server to let users communicate with each other. In your office, in your
laboratory, at school, at home, in the hospital or in any other activity having
the need for security and privacy, BeeBEEP is the best way to keep your private
messages safe.</p>
- </description>
- <screenshots>
- <screenshot type="default">
-
<image>https://www.beebeep.net/images/shots/beebeep_in_action_windows.png</image>
- </screenshot>
- </screenshots>
- <url type="bugtracker">https://sourceforge.net/p/beebeep/tickets/</url>
- <url type="homepage">https://www.beebeep.net/</url>
- <update_contact>[email protected]</update_contact>
-</component>
Copied: beebeep/repos/community-x86_64/install-target.patch (from rev 1189563,
beebeep/trunk/install-target.patch)
===================================================================
--- install-target.patch (rev 0)
+++ install-target.patch 2022-04-24 12:38:47 UTC (rev 1189564)
@@ -0,0 +1,124 @@
+Index: beebeep.pri
+===================================================================
+--- beebeep.pri (revision 1502)
++++ beebeep.pri (working copy)
+@@ -21,4 +21,28 @@
+ UI_DIR = $$OBJECTS_DIR
+ MOC_DIR = $$OBJECTS_DIR
+ RCC_DIR = $$OBJECTS_DIR
++
++ isEmpty(PREFIX) {
++ PREFIX = /usr/local
++ }
++ isEmpty(BINDIR) {
++ BINDIR = $$PREFIX/bin
++ }
++ isEmpty(DATADIR) {
++ DATADIR = $$PREFIX/share
++ }
++ isEmpty(PLUGINDIR) {
++ PLUGINDIR = $$PREFIX/lib/beebeep
++ }
++
++ data.files = locale/*.qm src/images/beebeep.png misc/beep.wav
++ data.path = $$DATADIR/beebeep/
++
++ desktop.files = scripts/debian_amd64/beebeep.desktop
++ desktop.path = $$DATADIR/applications/
++
++ appdata.files = scripts/debian_amd64/beebeep.appdata.xml
++ appdata.path = $$DATADIR/metainfo/
++
++ INSTALLS += data desktop appdata
+ }
+Index: plugins/lifegame/lifegame.pro
+===================================================================
+--- plugins/lifegame/lifegame.pro (revision 1502)
++++ plugins/lifegame/lifegame.pro (working copy)
+@@ -21,3 +21,8 @@
+
+ FORMS += \
+ GuiLife.ui
++
++unix:!macx:!android: {
++ target.path = $$PLUGINDIR
++ INSTALLS += target
++}
+Index: plugins/numbertextmarker/numbertextmarker.pro
+===================================================================
+--- plugins/numbertextmarker/numbertextmarker.pro (revision 1502)
++++ plugins/numbertextmarker/numbertextmarker.pro (working copy)
+@@ -17,3 +17,8 @@
+
+ RESOURCES += \
+ numbertextmarker.qrc
++
++unix:!macx:!android: {
++ target.path = $$PLUGINDIR
++ INSTALLS += target
++}
+Index: plugins/rainbowtextmarker/rainbowtextmarker.pro
+===================================================================
+--- plugins/rainbowtextmarker/rainbowtextmarker.pro (revision 1502)
++++ plugins/rainbowtextmarker/rainbowtextmarker.pro (working copy)
+@@ -17,3 +17,8 @@
+
+ RESOURCES += \
+ rainbowtextmarker.qrc
++
++unix:!macx:!android: {
++ target.path = $$PLUGINDIR
++ INSTALLS += target
++}
+Index: plugins/regularboldtextmarker/regularboldtextmarker.pro
+===================================================================
+--- plugins/regularboldtextmarker/regularboldtextmarker.pro (revision 1502)
++++ plugins/regularboldtextmarker/regularboldtextmarker.pro (working copy)
+@@ -17,3 +17,8 @@
+
+ RESOURCES += \
+ regularboldtextmarker.qrc
++
++unix:!macx:!android: {
++ target.path = $$PLUGINDIR
++ INSTALLS += target
++}
+Index: scripts/debian_amd64/beebeep.appdata.xml
+===================================================================
+--- scripts/debian_amd64/beebeep.appdata.xml (nonexistent)
++++ scripts/debian_amd64/beebeep.appdata.xml (working copy)
+@@ -0,0 +1,21 @@
++<?xml version="1.0" encoding="UTF-8"?>
++<component type="desktop-application">
++ <id>net.beebeep.BeeBEEP</id>
++ <launchable type="desktop-id">beebeep.desktop</launchable>
++ <name>BeeBEEP</name>
++ <summary>Free office messenger</summary>
++ <metadata_license>CC0-1.0</metadata_license>
++ <project_license>GPL-3.0</project_license>
++ <developer_name>Marco Mastroddi</developer_name>
++ <description>
++ <p>This office messaging application, BeeBEEP, does not need an external
server to let users communicate with each other. In your office, in your
laboratory, at school, at home, in the hospital or in any other activity having
the need for security and privacy, BeeBEEP is the best way to keep your private
messages safe.</p>
++ </description>
++ <screenshots>
++ <screenshot type="default">
++
<image>https://www.beebeep.net/images/shots/beebeep_in_action_windows.png</image>
++ </screenshot>
++ </screenshots>
++ <url type="bugtracker">https://sourceforge.net/p/beebeep/tickets/</url>
++ <url type="homepage">https://www.beebeep.net/</url>
++ <update_contact>[email protected]</update_contact>
++</component>
+Index: src/src.pro
+===================================================================
+--- src/src.pro (revision 1502)
++++ src/src.pro (working copy)
+@@ -125,3 +125,8 @@
+ message( Object dir: $$OBJECTS_DIR )
+ unix: message( CXX flags: $$QMAKE_CXXFLAGS )
+ message( QT Plugins: $$QTPLUGIN )
++
++unix:!macx:!android: {
++ target.path = $$BINDIR
++ INSTALLS += target
++}