Date: Sunday, March 12, 2023 @ 16:02:57
Author: jelle
Revision: 1419358
archrelease: copy trunk to community-x86_64
Added:
beebeep/repos/community-x86_64/PKGBUILD
(from rev 1419357, beebeep/trunk/PKGBUILD)
beebeep/repos/community-x86_64/install-target.patch
(from rev 1419357, beebeep/trunk/install-target.patch)
Deleted:
beebeep/repos/community-x86_64/PKGBUILD
beebeep/repos/community-x86_64/install-target.patch
----------------------+
PKGBUILD | 68 ++++++-------
install-target.patch | 248 ++++++++++++++++++++++++-------------------------
2 files changed, 158 insertions(+), 158 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-03-12 16:02:49 UTC (rev 1419357)
+++ PKGBUILD 2023-03-12 16:02:57 UTC (rev 1419358)
@@ -1,34 +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=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
-}
Copied: beebeep/repos/community-x86_64/PKGBUILD (from rev 1419357,
beebeep/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-03-12 16:02:57 UTC (rev 1419358)
@@ -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=6
+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: install-target.patch
===================================================================
--- install-target.patch 2023-03-12 16:02:49 UTC (rev 1419357)
+++ install-target.patch 2023-03-12 16:02:57 UTC (rev 1419358)
@@ -1,124 +0,0 @@
-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
-+}
Copied: beebeep/repos/community-x86_64/install-target.patch (from rev 1419357,
beebeep/trunk/install-target.patch)
===================================================================
--- install-target.patch (rev 0)
+++ install-target.patch 2023-03-12 16:02:57 UTC (rev 1419358)
@@ -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
++}