[oe] [PATCH] synergy: project has moved from synergy.googlecode.com

Rudolf J Streif rudolf.streif at gmail.com
Thu Aug 20 21:46:35 UTC 2015


The synergy project on synergy.googlecode.com is defunct. The
sources cannot be downloaded from there anymore. The new project
home is synergy-project.org, but sources can only be downloaded
from ther with a login. The source code repo is on github.com/synergy.

New recipe to check out the code from GitHub. The code contains
zip archives for gmock and gtest, which need to be extracted before
do_configure. The license file has changed from COPYING to LICENSE. The
authors apparently added their copyright information before the GPLv2
license text. Hence, the md5sum is different.

Removed the synergy_1.3.8.bb recipe.

Signed-off-by: Rudolf J Streif <rudolf.streif at gmail.com>
---
 meta-oe/recipes-support/synergy/synergy_1.3.8.bb | 24 -----------------
 meta-oe/recipes-support/synergy/synergy_git.bb   | 34 
++++++++++++++++++++++++
 2 files changed, 34 insertions(+), 24 deletions(-)
 delete mode 100644 meta-oe/recipes-support/synergy/synergy_1.3.8.bb
 create mode 100644 meta-oe/recipes-support/synergy/synergy_git.bb

diff --git a/meta-oe/recipes-support/synergy/synergy_1.3.8.bb b/meta-
oe/recipes-support/synergy/synergy_1.3.8.bb
deleted file mode 100644
index 545f9fa..0000000
--- a/meta-oe/recipes-support/synergy/synergy_1.3.8.bb
+++ /dev/null
@@ -1,24 +0,0 @@
-SUMMARY = "Synergy - control multiple computers with one keyboard and mouse"
-HOMEPAGE = "http://synergy.googlecode.com"
-LIC_FILES_CHKSUM = "file://COPYING;md5=9772a11e3569985855e2ce450e56f991"
-LICENSE = "GPL-2.0"
-SECTION = "x11/utils"
-
-DEPENDS = "virtual/libx11 libxtst libxinerama"
-
-SRC_URI = "http://synergy.googlecode.com/files/synergy-${PV}-Source.tar.gz"
-
-SRC_URI[md5sum] = "3534c65ecfa6e47d7899c57975442f03"
-SRC_URI[sha256sum] = 
"0afc83e4ed0b46ed497d4229b2b2854e8d3c581a112f4da05110943edbfacc03"
-
-S = "${WORKDIR}/${BP}-Source"
-
-inherit cmake distro_features_check
-# depends on virtual/libx11
-REQUIRED_DISTRO_FEATURES = "x11"
-
-do_install() {
-    install -d ${D}/usr/bin
-    install -m 0755 ${S}/bin/synergy* ${D}/usr/bin/
-}
-
diff --git a/meta-oe/recipes-support/synergy/synergy_git.bb b/meta-oe/recipes-
support/synergy/synergy_git.bb
new file mode 100644
index 0000000..cb842c8
--- /dev/null
+++ b/meta-oe/recipes-support/synergy/synergy_git.bb
@@ -0,0 +1,34 @@
+SUMMARY = "Synergy - control multiple computers with one keyboard and mouse"
+HOMEPAGE = "http://synergy-project.org"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=0f366945b209c5523e39889f636af00a"
+LICENSE = "GPL-2.0"
+SECTION = "x11/utils"
+
+DEPENDS = "virtual/libx11 libxtst libxinerama"
+
+# depends on virtual/libx11
+REQUIRED_DISTRO_FEATURES = "x11"
+
+SRC_URI = "git://github.com/synergy/synergy.git;protocol=http"
+
+# Version 1.7.4-rc8
+SRCREV ?= "588fb4b805dd452556d05dbc03fe29ea5b4e43c0"
+PV = "1.7.3+1.7.4-rc8+${SRCPV}"
+
+S = "${WORKDIR}/git"
+
+inherit cmake distro_features_check
+
+do_unpack_extra() {
+    cd ${S}/ext
+    for file in *.zip; do
+        fname="${file##*/}"
+        unzip $file -d ${fname%.*}
+    done
+}
+addtask unpack_extra after do_unpack before do_patch
+
+do_install() {
+    install -d ${D}/usr/bin
+    install -m 0755 ${S}/bin/synergy* ${D}/usr/bin/
+}
-- 
2.1.0

>Remove
>meta-openembedded/meta-oe/recipes-support/synergy/synergy_1.3.8.bb
>n the same commit.

Done.

> Add comment in commit message explaining why license checksum is
> different in this version.
> 

Done. Authors apparently. added their copyright on top of the GPLv2 license 
text.

> Why did you drop virtual from libx11?
> 
> DEPENDS = "virtual/libx11 libxtst libxinerama"

I accidentally based my recipe on an older version of synergy_1.3.8.bb. Sorry.

> 
> > +
> > +SRC_URI = "git://github.com/synergy/synergy.git;protocol=http"
> > +
> > +# HEAD
> > +SRCREV_pn-synergy ?= "${AUTOREV}"
> 
> NAK

removed

> 
> > +
> > +# Version 1.7.4-rc8
> > +SRCREV_pn-synergy ?= "c734bab59ecb7703605e01438e6bff4338b5cb34"
> 
> Drop "_pn-synergy ?"
> 

done

> normal assignment is enough
> 
> Set PV "1.7.3+1.7.4-rc8+${SRCPV}"
> 

done

> > +
> > +S = "${WORKDIR}/git"
> > +
> > +inherit cmake
> 
> What happened with distro_features_check from original recipe?
> 

I accidentally based my recipe on an older version of synergy_1.3.8.bb. Sorry.





More information about the Openembedded-devel mailing list