All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 [2011.03-maintenance]] Changed the Source-URI from (currently?) dead openmoko SVN-Server to new git-repository at git.yoctoproject.org
@ 2012-03-09  6:07 Daniel Zauner
  2012-03-12 21:00 ` Denys Dmytriyenko
  0 siblings, 1 reply; 6+ messages in thread
From: Daniel Zauner @ 2012-03-09  6:07 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Daniel Zauner <daniel.zauner@me.com>
---
 recipes/opkg-utils/opkg-utils_git.bb |   27 +++++++++++++++++++++++++++
 recipes/opkg-utils/opkg-utils_svn.bb |   25 -------------------------
 2 files changed, 27 insertions(+), 25 deletions(-)
 create mode 100644 recipes/opkg-utils/opkg-utils_git.bb
 delete mode 100644 recipes/opkg-utils/opkg-utils_svn.bb

diff --git a/recipes/opkg-utils/opkg-utils_git.bb b/recipes/opkg-utils/opkg-utils_git.bb
new file mode 100644
index 0000000..6adc7c1
--- /dev/null
+++ b/recipes/opkg-utils/opkg-utils_git.bb
@@ -0,0 +1,27 @@
+DESCRIPTION = "OPKG Package Manager Utilities"
+SECTION = "base"
+HOMEPAGE = "http://wiki.openmoko.org/wiki/Opkg"
+PRIORITY = "optional"
+LICENSE = "GPLv2"
+RDEPENDS_${PN} = "python"
+RDEPENDS_${PN}_virtclass-native = ""
+SRCREV = "002d29bc605d7c2d02e4cf20a43c5277c15f5597"
+PV = "0.1.8+gitr${SRCPV}"
+PR = "r0"
+
+SRC_URI = "git://git.yoctoproject.org/opkg-utils;protocol=git \
+           file://index-ignore-filenotfound.patch \
+           file://arfile_header_split.patch \
+           file://mtime-int.patch"
+
+S = "${WORKDIR}/git"
+
+# Avoid circular dependencies from package_ipk.bbclass
+PACKAGES_virtclass-native = ""
+
+do_install() {
+        oe_runmake PREFIX=${prefix} DESTDIR=${D} install
+}
+
+BBCLASSEXTEND = "native"
+TARGET_CC_ARCH += "${LDFLAGS}"
diff --git a/recipes/opkg-utils/opkg-utils_svn.bb b/recipes/opkg-utils/opkg-utils_svn.bb
deleted file mode 100644
index 6b8d3ea..0000000
--- a/recipes/opkg-utils/opkg-utils_svn.bb
+++ /dev/null
@@ -1,25 +0,0 @@
-DESCRIPTION = "OPKG Package Manager Utilities"
-SECTION = "base"
-HOMEPAGE = "http://wiki.openmoko.org/wiki/Opkg"
-PRIORITY = "optional"
-RDEPENDS_${PN} = "python"
-RDEPENDS_${PN}_virtclass-native = ""
-SRCREV = "4747"
-PV = "0.1.8+svnr${SRCPV}"
-PR = "r6"
-
-SRC_URI = "svn://svn.openmoko.org/trunk/src/host/;module=opkg-utils;proto=http \
-           file://index-ignore-filenotfound.patch \
-           file://mtime-int.patch"
-
-S = "${WORKDIR}/opkg-utils"
-
-# Avoid circular dependencies from package_ipk.bbclass
-PACKAGES_virtclass-native = ""
-
-do_install() {
-        oe_runmake PREFIX=${prefix} DESTDIR=${D} install
-}
-
-BBCLASSEXTEND = "native"
-TARGET_CC_ARCH += "${LDFLAGS}"
-- 
1.7.2.5




^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH v2 [2011.03-maintenance]] Changed the Source-URI from (currently?) dead openmoko SVN-Server to new git-repository at git.yoctoproject.org
  2012-03-09  6:07 [PATCH v2 [2011.03-maintenance]] Changed the Source-URI from (currently?) dead openmoko SVN-Server to new git-repository at git.yoctoproject.org Daniel Zauner
@ 2012-03-12 21:00 ` Denys Dmytriyenko
  2012-03-12 21:06   ` Daniel Zauner
  0 siblings, 1 reply; 6+ messages in thread
From: Denys Dmytriyenko @ 2012-03-12 21:00 UTC (permalink / raw)
  To: openembedded-devel

Two comments:

1. The patch description got messed up and went all in the Subject. Don't use 
nested square brackets [[]], use them in sequence [][] or just one of those.

2. Use -M flag to git-format-patch so it catches the rename and makes the 
patch readable again.

-- 
Denys


On Fri, Mar 09, 2012 at 07:07:47AM +0100, Daniel Zauner wrote:
> Signed-off-by: Daniel Zauner <daniel.zauner@me.com>
> ---
>  recipes/opkg-utils/opkg-utils_git.bb |   27 +++++++++++++++++++++++++++
>  recipes/opkg-utils/opkg-utils_svn.bb |   25 -------------------------
>  2 files changed, 27 insertions(+), 25 deletions(-)
>  create mode 100644 recipes/opkg-utils/opkg-utils_git.bb
>  delete mode 100644 recipes/opkg-utils/opkg-utils_svn.bb
> 
> diff --git a/recipes/opkg-utils/opkg-utils_git.bb b/recipes/opkg-utils/opkg-utils_git.bb
> new file mode 100644
> index 0000000..6adc7c1
> --- /dev/null
> +++ b/recipes/opkg-utils/opkg-utils_git.bb
> @@ -0,0 +1,27 @@
> +DESCRIPTION = "OPKG Package Manager Utilities"
> +SECTION = "base"
> +HOMEPAGE = "http://wiki.openmoko.org/wiki/Opkg"
> +PRIORITY = "optional"
> +LICENSE = "GPLv2"
> +RDEPENDS_${PN} = "python"
> +RDEPENDS_${PN}_virtclass-native = ""
> +SRCREV = "002d29bc605d7c2d02e4cf20a43c5277c15f5597"
> +PV = "0.1.8+gitr${SRCPV}"
> +PR = "r0"
> +
> +SRC_URI = "git://git.yoctoproject.org/opkg-utils;protocol=git \
> +           file://index-ignore-filenotfound.patch \
> +           file://arfile_header_split.patch \
> +           file://mtime-int.patch"
> +
> +S = "${WORKDIR}/git"
> +
> +# Avoid circular dependencies from package_ipk.bbclass
> +PACKAGES_virtclass-native = ""
> +
> +do_install() {
> +        oe_runmake PREFIX=${prefix} DESTDIR=${D} install
> +}
> +
> +BBCLASSEXTEND = "native"
> +TARGET_CC_ARCH += "${LDFLAGS}"
> diff --git a/recipes/opkg-utils/opkg-utils_svn.bb b/recipes/opkg-utils/opkg-utils_svn.bb
> deleted file mode 100644
> index 6b8d3ea..0000000
> --- a/recipes/opkg-utils/opkg-utils_svn.bb
> +++ /dev/null
> @@ -1,25 +0,0 @@
> -DESCRIPTION = "OPKG Package Manager Utilities"
> -SECTION = "base"
> -HOMEPAGE = "http://wiki.openmoko.org/wiki/Opkg"
> -PRIORITY = "optional"
> -RDEPENDS_${PN} = "python"
> -RDEPENDS_${PN}_virtclass-native = ""
> -SRCREV = "4747"
> -PV = "0.1.8+svnr${SRCPV}"
> -PR = "r6"
> -
> -SRC_URI = "svn://svn.openmoko.org/trunk/src/host/;module=opkg-utils;proto=http \
> -           file://index-ignore-filenotfound.patch \
> -           file://mtime-int.patch"
> -
> -S = "${WORKDIR}/opkg-utils"
> -
> -# Avoid circular dependencies from package_ipk.bbclass
> -PACKAGES_virtclass-native = ""
> -
> -do_install() {
> -        oe_runmake PREFIX=${prefix} DESTDIR=${D} install
> -}
> -
> -BBCLASSEXTEND = "native"
> -TARGET_CC_ARCH += "${LDFLAGS}"
> -- 
> 1.7.2.5
> 
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2 [2011.03-maintenance]] Changed the Source-URI from (currently?) dead openmoko SVN-Server to new git-repository at git.yoctoproject.org
  2012-03-12 21:00 ` Denys Dmytriyenko
@ 2012-03-12 21:06   ` Daniel Zauner
  2012-03-13 17:50     ` Tom Rini
  0 siblings, 1 reply; 6+ messages in thread
From: Daniel Zauner @ 2012-03-12 21:06 UTC (permalink / raw)
  To: openembedded-devel

Thanks, will do. 
Do you want me to re-submit the patch?

Daniel

Am 12.03.2012 um 22:00 schrieb Denys Dmytriyenko:

> Two comments:
> 
> 1. The patch description got messed up and went all in the Subject. Don't use 
> nested square brackets [[]], use them in sequence [][] or just one of those.
> 
> 2. Use -M flag to git-format-patch so it catches the rename and makes the 
> patch readable again.
> 
> -- 
> Denys
> 
> 
> On Fri, Mar 09, 2012 at 07:07:47AM +0100, Daniel Zauner wrote:
>> Signed-off-by: Daniel Zauner <daniel.zauner@me.com>
>> ---
>> recipes/opkg-utils/opkg-utils_git.bb |   27 +++++++++++++++++++++++++++
>> recipes/opkg-utils/opkg-utils_svn.bb |   25 -------------------------
>> 2 files changed, 27 insertions(+), 25 deletions(-)
>> create mode 100644 recipes/opkg-utils/opkg-utils_git.bb
>> delete mode 100644 recipes/opkg-utils/opkg-utils_svn.bb
>> 
>> diff --git a/recipes/opkg-utils/opkg-utils_git.bb b/recipes/opkg-utils/opkg-utils_git.bb
>> new file mode 100644
>> index 0000000..6adc7c1
>> --- /dev/null
>> +++ b/recipes/opkg-utils/opkg-utils_git.bb
>> @@ -0,0 +1,27 @@
>> +DESCRIPTION = "OPKG Package Manager Utilities"
>> +SECTION = "base"
>> +HOMEPAGE = "http://wiki.openmoko.org/wiki/Opkg"
>> +PRIORITY = "optional"
>> +LICENSE = "GPLv2"
>> +RDEPENDS_${PN} = "python"
>> +RDEPENDS_${PN}_virtclass-native = ""
>> +SRCREV = "002d29bc605d7c2d02e4cf20a43c5277c15f5597"
>> +PV = "0.1.8+gitr${SRCPV}"
>> +PR = "r0"
>> +
>> +SRC_URI = "git://git.yoctoproject.org/opkg-utils;protocol=git \
>> +           file://index-ignore-filenotfound.patch \
>> +           file://arfile_header_split.patch \
>> +           file://mtime-int.patch"
>> +
>> +S = "${WORKDIR}/git"
>> +
>> +# Avoid circular dependencies from package_ipk.bbclass
>> +PACKAGES_virtclass-native = ""
>> +
>> +do_install() {
>> +        oe_runmake PREFIX=${prefix} DESTDIR=${D} install
>> +}
>> +
>> +BBCLASSEXTEND = "native"
>> +TARGET_CC_ARCH += "${LDFLAGS}"
>> diff --git a/recipes/opkg-utils/opkg-utils_svn.bb b/recipes/opkg-utils/opkg-utils_svn.bb
>> deleted file mode 100644
>> index 6b8d3ea..0000000
>> --- a/recipes/opkg-utils/opkg-utils_svn.bb
>> +++ /dev/null
>> @@ -1,25 +0,0 @@
>> -DESCRIPTION = "OPKG Package Manager Utilities"
>> -SECTION = "base"
>> -HOMEPAGE = "http://wiki.openmoko.org/wiki/Opkg"
>> -PRIORITY = "optional"
>> -RDEPENDS_${PN} = "python"
>> -RDEPENDS_${PN}_virtclass-native = ""
>> -SRCREV = "4747"
>> -PV = "0.1.8+svnr${SRCPV}"
>> -PR = "r6"
>> -
>> -SRC_URI = "svn://svn.openmoko.org/trunk/src/host/;module=opkg-utils;proto=http \
>> -           file://index-ignore-filenotfound.patch \
>> -           file://mtime-int.patch"
>> -
>> -S = "${WORKDIR}/opkg-utils"
>> -
>> -# Avoid circular dependencies from package_ipk.bbclass
>> -PACKAGES_virtclass-native = ""
>> -
>> -do_install() {
>> -        oe_runmake PREFIX=${prefix} DESTDIR=${D} install
>> -}
>> -
>> -BBCLASSEXTEND = "native"
>> -TARGET_CC_ARCH += "${LDFLAGS}"
>> -- 
>> 1.7.2.5
>> 
>> 
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2 [2011.03-maintenance]] Changed the Source-URI from (currently?) dead openmoko SVN-Server to new git-repository at git.yoctoproject.org
  2012-03-12 21:06   ` Daniel Zauner
@ 2012-03-13 17:50     ` Tom Rini
  2012-03-13 18:03       ` [PATCH v3][2011.03-maintenance] " Daniel Zauner
  0 siblings, 1 reply; 6+ messages in thread
From: Tom Rini @ 2012-03-13 17:50 UTC (permalink / raw)
  To: openembedded-devel

On Mon, Mar 12, 2012 at 10:06:45PM +0100, Daniel Zauner wrote:
> Thanks, will do. 
> Do you want me to re-submit the patch?

Yes, please.

-- 
Tom



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH v3][2011.03-maintenance] Changed the Source-URI from (currently?) dead openmoko SVN-Server to new git-repository at git.yoctoproject.org
  2012-03-13 17:50     ` Tom Rini
@ 2012-03-13 18:03       ` Daniel Zauner
  2012-03-14  0:31         ` Denys Dmytriyenko
  0 siblings, 1 reply; 6+ messages in thread
From: Daniel Zauner @ 2012-03-13 18:03 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Daniel Zauner <daniel.zauner@me.com>
---
 .../{opkg-utils_svn.bb => opkg-utils_git.bb}       |   12 +++++++-----
 1 files changed, 7 insertions(+), 5 deletions(-)
 rename recipes/opkg-utils/{opkg-utils_svn.bb => opkg-utils_git.bb} (68%)

diff --git a/recipes/opkg-utils/opkg-utils_svn.bb b/recipes/opkg-utils/opkg-utils_git.bb
similarity index 68%
rename from recipes/opkg-utils/opkg-utils_svn.bb
rename to recipes/opkg-utils/opkg-utils_git.bb
index 6b8d3ea..6adc7c1 100644
--- a/recipes/opkg-utils/opkg-utils_svn.bb
+++ b/recipes/opkg-utils/opkg-utils_git.bb
@@ -2,17 +2,19 @@ DESCRIPTION = "OPKG Package Manager Utilities"
 SECTION = "base"
 HOMEPAGE = "http://wiki.openmoko.org/wiki/Opkg"
 PRIORITY = "optional"
+LICENSE = "GPLv2"
 RDEPENDS_${PN} = "python"
 RDEPENDS_${PN}_virtclass-native = ""
-SRCREV = "4747"
-PV = "0.1.8+svnr${SRCPV}"
-PR = "r6"
+SRCREV = "002d29bc605d7c2d02e4cf20a43c5277c15f5597"
+PV = "0.1.8+gitr${SRCPV}"
+PR = "r0"
 
-SRC_URI = "svn://svn.openmoko.org/trunk/src/host/;module=opkg-utils;proto=http \
+SRC_URI = "git://git.yoctoproject.org/opkg-utils;protocol=git \
            file://index-ignore-filenotfound.patch \
+           file://arfile_header_split.patch \
            file://mtime-int.patch"
 
-S = "${WORKDIR}/opkg-utils"
+S = "${WORKDIR}/git"
 
 # Avoid circular dependencies from package_ipk.bbclass
 PACKAGES_virtclass-native = ""
-- 
1.7.2.5




^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH v3][2011.03-maintenance] Changed the Source-URI from (currently?) dead openmoko SVN-Server to new git-repository at git.yoctoproject.org
  2012-03-13 18:03       ` [PATCH v3][2011.03-maintenance] " Daniel Zauner
@ 2012-03-14  0:31         ` Denys Dmytriyenko
  0 siblings, 0 replies; 6+ messages in thread
From: Denys Dmytriyenko @ 2012-03-14  0:31 UTC (permalink / raw)
  To: openembedded-devel

Well, this time it's better, but you still didn't make the description 
properly. Did you forget to provide a short one-liner and then after an empty 
line a more descriptive changelog?

Please follow the Guidelines at:
http://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines

-- 
Denys


On Tue, Mar 13, 2012 at 07:03:51PM +0100, Daniel Zauner wrote:
> Signed-off-by: Daniel Zauner <daniel.zauner@me.com>
> ---
>  .../{opkg-utils_svn.bb => opkg-utils_git.bb}       |   12 +++++++-----
>  1 files changed, 7 insertions(+), 5 deletions(-)
>  rename recipes/opkg-utils/{opkg-utils_svn.bb => opkg-utils_git.bb} (68%)
> 
> diff --git a/recipes/opkg-utils/opkg-utils_svn.bb b/recipes/opkg-utils/opkg-utils_git.bb
> similarity index 68%
> rename from recipes/opkg-utils/opkg-utils_svn.bb
> rename to recipes/opkg-utils/opkg-utils_git.bb
> index 6b8d3ea..6adc7c1 100644
> --- a/recipes/opkg-utils/opkg-utils_svn.bb
> +++ b/recipes/opkg-utils/opkg-utils_git.bb
> @@ -2,17 +2,19 @@ DESCRIPTION = "OPKG Package Manager Utilities"
>  SECTION = "base"
>  HOMEPAGE = "http://wiki.openmoko.org/wiki/Opkg"
>  PRIORITY = "optional"
> +LICENSE = "GPLv2"
>  RDEPENDS_${PN} = "python"
>  RDEPENDS_${PN}_virtclass-native = ""
> -SRCREV = "4747"
> -PV = "0.1.8+svnr${SRCPV}"
> -PR = "r6"
> +SRCREV = "002d29bc605d7c2d02e4cf20a43c5277c15f5597"
> +PV = "0.1.8+gitr${SRCPV}"
> +PR = "r0"
>  
> -SRC_URI = "svn://svn.openmoko.org/trunk/src/host/;module=opkg-utils;proto=http \
> +SRC_URI = "git://git.yoctoproject.org/opkg-utils;protocol=git \
>             file://index-ignore-filenotfound.patch \
> +           file://arfile_header_split.patch \
>             file://mtime-int.patch"
>  
> -S = "${WORKDIR}/opkg-utils"
> +S = "${WORKDIR}/git"
>  
>  # Avoid circular dependencies from package_ipk.bbclass
>  PACKAGES_virtclass-native = ""
> -- 
> 1.7.2.5
> 
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-03-14  1:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-09  6:07 [PATCH v2 [2011.03-maintenance]] Changed the Source-URI from (currently?) dead openmoko SVN-Server to new git-repository at git.yoctoproject.org Daniel Zauner
2012-03-12 21:00 ` Denys Dmytriyenko
2012-03-12 21:06   ` Daniel Zauner
2012-03-13 17:50     ` Tom Rini
2012-03-13 18:03       ` [PATCH v3][2011.03-maintenance] " Daniel Zauner
2012-03-14  0:31         ` Denys Dmytriyenko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.