<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-openembedded.git/meta-xfce/recipes-apps/xfce4-screenshooter, branch krogoth</title>
<subtitle>Mirror of git.openembedded.org/meta-openembedded</subtitle>
<id>https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=krogoth</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-openembedded.git/atom?h=krogoth'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/'/>
<updated>2015-10-13T10:27:47+00:00</updated>
<entry>
<title>xfce4-screenshooter: ensure output directory is created</title>
<updated>2015-10-13T10:27:47+00:00</updated>
<author>
<name>Jackie Huang</name>
<email>jackie.huang@windriver.com</email>
</author>
<published>2015-09-21T08:48:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=f53738634d131cb996e16b422398a7d896450bd5'/>
<id>urn:sha1:f53738634d131cb996e16b422398a7d896450bd5</id>
<content type='text'>
When build with B != S, the output directory for desktop
file doesn't exist so it will fail if it's not created
before generating the file:
/bin/sh: line 1: src/xfce4-screenshooter.desktop.in: No such file or directory

Add "$(MKDIR_P) $(dir $@)" to the rule to fix this.

Signed-off-by: Jackie Huang &lt;jackie.huang@windriver.com&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>xfce4-screenshooter: update to 1.8.2</title>
<updated>2015-02-19T09:09:58+00:00</updated>
<author>
<name>Andreas Müller</name>
<email>schnitzeltony@googlemail.com</email>
</author>
<published>2015-01-26T09:32:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=f26d42cd3469cdea025f00502d2de8f98d6a2b02'/>
<id>urn:sha1:f26d42cd3469cdea025f00502d2de8f98d6a2b02</id>
<content type='text'>
0001-Fix-panel-plugin-build.patch was applied mainline

Signed-off-by: Andreas Müller &lt;schnitzeltony@googlemail.com&gt;
</content>
</entry>
<entry>
<title>xfce4-screenshooter: Ensure lib directory exists.</title>
<updated>2014-06-13T11:38:11+00:00</updated>
<author>
<name>Ash Charles</name>
<email>ashcharles@gmail.com</email>
</author>
<published>2014-06-10T16:36:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=2d80699e8a2685b7b1b17c8326f597a87d7dd714'/>
<id>urn:sha1:2d80699e8a2685b7b1b17c8326f597a87d7dd714</id>
<content type='text'>
Screenshooter autogenerates screenshooter-marshal.[ch] in lib/ during
compilation.  The source directory contains a lib/ but this directory
doesn't exist in a build directory by default so we add one manually.
Really, this should be corrected in the upstream package.

Signed-off-by: Ash Charles &lt;ashcharles@gmail.com&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>recipes: convert remaining SUMMARY/DESCRIPTION cosmetic issues</title>
<updated>2014-02-23T22:20:02+00:00</updated>
<author>
<name>Matthieu CRAPET</name>
<email>Matthieu.CRAPET@ingenico.com</email>
</author>
<published>2014-02-19T14:47:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=c95e155780a0cf3a8fb59a2f86db6367d18116fc'/>
<id>urn:sha1:c95e155780a0cf3a8fb59a2f86db6367d18116fc</id>
<content type='text'>
Changes:
- rename SUMMARY with length &gt; 80 to DESCRIPTION
- rename DESCRIPTION with length &lt; 80 to (non present tag) SUMMARY
- drop final point character at the end of SUMMARY string
- remove trailing whitespace of SUMMARY line

Note: don't bump PR

Signed-off-by: Matthieu Crapet &lt;Matthieu.Crapet@ingenico.com&gt;
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>recipes: Unify indentation</title>
<updated>2013-04-15T14:23:17+00:00</updated>
<author>
<name>Martin Jansa</name>
<email>Martin.Jansa@gmail.com</email>
</author>
<published>2013-04-13T20:49:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=a45830a39bb47a9eab27980d52966226c9504ea4'/>
<id>urn:sha1:a45830a39bb47a9eab27980d52966226c9504ea4</id>
<content type='text'>
* This change is only aesthetic (unlike indentation in Python
  tasks).
* Some recipes were using tabs.
* Some were using 8 spaces.
* Some were using mix or different number of spaces.
* Make them consistently use 4 spaces everywhere.
* Yocto styleguide advises to use tabs (but the only reason to keep
  tabs is the need to update a lot of recipes). Lately this advice
  was also merged into the styleguide on the OE wiki.
* Using 4 spaces in both types of tasks is better because it's less
  error prone when someone is not sure if e.g.
  do_generate_toolchain_file() is Python or shell task and also allows
  to highlight every tab used in .bb, .inc, .bbappend, .bbclass as
  potentially bad (shouldn't be used for indenting of multiline
  variable assignments and cannot be used for Python tasks).
* Don't indent closing quote on multiline variables
  we're quite inconsistent wheater it's first character on line
  under opening quote or under first non-whitespace character in
  previous line.

Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
Acked-by: Koen Kooi &lt;koen@dominion.thruhere.net&gt;
</content>
</entry>
<entry>
<title>meta-openembedded: use correct format of Upstream-Status</title>
<updated>2012-12-23T08:40:44+00:00</updated>
<author>
<name>Martin Jansa</name>
<email>Martin.Jansa@gmail.com</email>
</author>
<published>2012-12-23T08:40:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=580fd6c7438ac99956cfb376913109f226fc6bd0'/>
<id>urn:sha1:580fd6c7438ac99956cfb376913109f226fc6bd0</id>
<content type='text'>
* some patches have also incorrect value, but e.g. "Unknown" is as good as
  "Pending" to me

Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
</entry>
<entry>
<title>xfce4-screenshooter: update to 1.8.1</title>
<updated>2012-09-18T13:54:02+00:00</updated>
<author>
<name>Andreas Müller</name>
<email>schnitzeltony@googlemail.com</email>
</author>
<published>2012-09-16T22:41:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=343f63335438edde126df540a274b939d38dcfc5'/>
<id>urn:sha1:343f63335438edde126df540a274b939d38dcfc5</id>
<content type='text'>
Signed-off-by: Andreas Müller &lt;schnitzeltony@googlemail.com&gt;
</content>
</entry>
<entry>
<title>xfce-app.bbclass: just set SRC_URI commmon to most xfce-apps</title>
<updated>2011-10-31T10:25:55+00:00</updated>
<author>
<name>Andreas Müller</name>
<email>schnitzeltony@gmx.de</email>
</author>
<published>2011-10-30T11:47:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=7faafa8b3c0b1de2a2d8b6fe49076473f25589c0'/>
<id>urn:sha1:7faafa8b3c0b1de2a2d8b6fe49076473f25589c0</id>
<content type='text'>
* build tested with source download for xfce4-notifyd and xfce4-screenshooter
* run tested on overo

Signed-off-by: Andreas Müller &lt;schnitzeltony@gmx.de&gt;
Signed-off-by: Koen Kooi &lt;koen@dominion.thruhere.net&gt;
</content>
</entry>
<entry>
<title>xfce4-screenshooter: Add initial recipe with version 1.8.0</title>
<updated>2011-08-15T06:56:18+00:00</updated>
<author>
<name>Andreas Müller</name>
<email>schnitzeltony@gmx.de</email>
</author>
<published>2011-08-14T01:13:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-openembedded.git/commit/?id=99bb5f584c61c6d54b2d1385e41c11387a36c97e'/>
<id>urn:sha1:99bb5f584c61c6d54b2d1385e41c11387a36c97e</id>
<content type='text'>
Acked-by: Paul Menzel &lt;paulepanter@users.sourceforge.net&gt;
Signed-off-by: Andreas Mueller &lt;schnitzeltony@gmx.de&gt;
Signed-off-by: Koen Kooi &lt;koen@dominion.thruhere.net&gt;
</content>
</entry>
</feed>
