All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] ccrypt: new package
@ 2014-07-09 10:38 David Bachelart
  2014-07-09 11:03 ` Baruch Siach
  0 siblings, 1 reply; 6+ messages in thread
From: David Bachelart @ 2014-07-09 10:38 UTC (permalink / raw
  To: buildroot

ccrypt is a utility for encrypting and decrypting files and streams.

Signed-off-by: David Bachelart <david.bachelart@bbright.com>
---
 package/Config.in        |    1 +
 package/ccrypt/Config.in |    6 ++++++
 package/ccrypt/ccrypt.mk |   20 ++++++++++++++++++++
 3 files changed, 27 insertions(+)
 create mode 100644 package/ccrypt/Config.in
 create mode 100644 package/ccrypt/ccrypt.mk

diff --git a/package/Config.in b/package/Config.in
index f30c25f..c626968 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -1094,6 +1094,7 @@ if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
 endif
 comment "Utilities"
 	source "package/at/Config.in"
+	source "package/ccrypt/Config.in"
 	source "package/dialog/Config.in"
 	source "package/dtach/Config.in"
 	source "package/file/Config.in"
diff --git a/package/ccrypt/Config.in b/package/ccrypt/Config.in
new file mode 100644
index 0000000..99c4d47
--- /dev/null
+++ b/package/ccrypt/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_CCRYPT
+        bool "ccrypt"
+        help
+          ccrypt is a utility for encrypting and decrypting files and streams.
+
+          http://ccrypt.sourceforge.net/
diff --git a/package/ccrypt/ccrypt.mk b/package/ccrypt/ccrypt.mk
new file mode 100644
index 0000000..51696c0
--- /dev/null
+++ b/package/ccrypt/ccrypt.mk
@@ -0,0 +1,20 @@
+################################################################################
+#
+# ccrypt
+#
+################################################################################
+
+CCRYPT_VERSION = 1.10
+CCRYPT_SOURCE = ccrypt-$(CCRYPT_VERSION).tar.gz
+CCRYPT_SITE = http://ccrypt.sourceforge.net/download/
+
+CCRYPT_INSTALL_STAGING = NO
+CCRYPT_INSTALL_TARGET = YES
+CCRYPT_CONF_OPT = 
+
+CCRYPT_LICENSE = GPLv2
+CCRYPT_LICENSE_FILES = COPYING
+
+CCRYPT_DEPENDENCIES = 
+
+$(eval $(autotools-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH 1/1] ccrypt: new package
  2014-07-09 10:38 David Bachelart
@ 2014-07-09 11:03 ` Baruch Siach
  2014-07-09 11:55   ` David Bachelart
  0 siblings, 1 reply; 6+ messages in thread
From: Baruch Siach @ 2014-07-09 11:03 UTC (permalink / raw
  To: buildroot

Hi David,

On Wed, Jul 09, 2014 at 12:38:24PM +0200, David Bachelart wrote:
> ccrypt is a utility for encrypting and decrypting files and streams.
> 
> Signed-off-by: David Bachelart <david.bachelart@bbright.com>
> ---
>  package/Config.in        |    1 +
>  package/ccrypt/Config.in |    6 ++++++
>  package/ccrypt/ccrypt.mk |   20 ++++++++++++++++++++
>  3 files changed, 27 insertions(+)
>  create mode 100644 package/ccrypt/Config.in
>  create mode 100644 package/ccrypt/ccrypt.mk
> 
> diff --git a/package/Config.in b/package/Config.in
> index f30c25f..c626968 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -1094,6 +1094,7 @@ if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
>  endif
>  comment "Utilities"
>  	source "package/at/Config.in"
> +	source "package/ccrypt/Config.in"
>  	source "package/dialog/Config.in"
>  	source "package/dtach/Config.in"
>  	source "package/file/Config.in"
> diff --git a/package/ccrypt/Config.in b/package/ccrypt/Config.in
> new file mode 100644
> index 0000000..99c4d47
> --- /dev/null
> +++ b/package/ccrypt/Config.in
> @@ -0,0 +1,6 @@
> +config BR2_PACKAGE_CCRYPT
> +        bool "ccrypt"
> +        help
> +          ccrypt is a utility for encrypting and decrypting files and streams.
> +
> +          http://ccrypt.sourceforge.net/
> diff --git a/package/ccrypt/ccrypt.mk b/package/ccrypt/ccrypt.mk
> new file mode 100644
> index 0000000..51696c0
> --- /dev/null
> +++ b/package/ccrypt/ccrypt.mk
> @@ -0,0 +1,20 @@
> +################################################################################
> +#
> +# ccrypt
> +#
> +################################################################################
> +
> +CCRYPT_VERSION = 1.10
> +CCRYPT_SOURCE = ccrypt-$(CCRYPT_VERSION).tar.gz

This is the default. Please remove.

> +CCRYPT_SITE = http://ccrypt.sourceforge.net/download/
> +
> +CCRYPT_INSTALL_STAGING = NO
> +CCRYPT_INSTALL_TARGET = YES
> +CCRYPT_CONF_OPT = 

All three are default. Please remove.

> +CCRYPT_LICENSE = GPLv2

The website (http://ccrypt.sourceforge.net/) and the README file has the "any 
later version" language, so this should be GPLv2+.

> +CCRYPT_LICENSE_FILES = COPYING
> +
> +CCRYPT_DEPENDENCIES = 

This is default. Please remove.

> +$(eval $(autotools-package))

baruch

-- 
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

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

* [Buildroot] [PATCH 1/1] ccrypt: new package
  2014-07-09 11:03 ` Baruch Siach
@ 2014-07-09 11:55   ` David Bachelart
  0 siblings, 0 replies; 6+ messages in thread
From: David Bachelart @ 2014-07-09 11:55 UTC (permalink / raw
  To: buildroot

Hi Baruch,

I'll send a new patch.

Thanks
David
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20140709/02d78e5a/attachment.html>

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

* [Buildroot] [PATCH 1/1] ccrypt: new package
@ 2014-07-09 11:55 David Bachelart
  2014-07-09 12:14 ` Baruch Siach
  0 siblings, 1 reply; 6+ messages in thread
From: David Bachelart @ 2014-07-09 11:55 UTC (permalink / raw
  To: buildroot

ccrypt is a utility for encrypting and decrypting files and streams.

Signed-off-by: David Bachelart <david.bachelart@bbright.com>
---
 package/Config.in        |    1 +
 package/ccrypt/Config.in |    6 ++++++
 package/ccrypt/ccrypt.mk |   12 ++++++++++++
 3 files changed, 19 insertions(+)
 create mode 100644 package/ccrypt/Config.in
 create mode 100644 package/ccrypt/ccrypt.mk

diff --git a/package/Config.in b/package/Config.in
index f30c25f..c626968 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -1094,6 +1094,7 @@ if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
 endif
 comment "Utilities"
 	source "package/at/Config.in"
+	source "package/ccrypt/Config.in"
 	source "package/dialog/Config.in"
 	source "package/dtach/Config.in"
 	source "package/file/Config.in"
diff --git a/package/ccrypt/Config.in b/package/ccrypt/Config.in
new file mode 100644
index 0000000..99c4d47
--- /dev/null
+++ b/package/ccrypt/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_CCRYPT
+        bool "ccrypt"
+        help
+          ccrypt is a utility for encrypting and decrypting files and streams.
+
+          http://ccrypt.sourceforge.net/
diff --git a/package/ccrypt/ccrypt.mk b/package/ccrypt/ccrypt.mk
new file mode 100644
index 0000000..a32f149
--- /dev/null
+++ b/package/ccrypt/ccrypt.mk
@@ -0,0 +1,12 @@
+################################################################################
+#
+# ccrypt
+#
+################################################################################
+
+CCRYPT_VERSION = 1.10
+CCRYPT_SITE = http://ccrypt.sourceforge.net/download/
+
+CCRYPT_LICENSE = GPLv2+
+
+$(eval $(autotools-package))
-- 
1.7.10.4

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

* [Buildroot] [PATCH 1/1] ccrypt: new package
  2014-07-09 11:55 [Buildroot] [PATCH 1/1] ccrypt: new package David Bachelart
@ 2014-07-09 12:14 ` Baruch Siach
  2014-07-09 12:34   ` David Bachelart
  0 siblings, 1 reply; 6+ messages in thread
From: Baruch Siach @ 2014-07-09 12:14 UTC (permalink / raw
  To: buildroot

Hi David,

Thanks for following up.

When sending a new version of a patch we usually mark this in the subject line 
with [PATCH v2]. You can use the --subject-prefix parameter of 'git 
format-patch' to do this. Something like:

	git format-patch --subject-prefix='PATCH v2' ...

For git version 1.8.2 and later this can be reduced to 'git format-patch -v2'

One more comment below.

On Wed, Jul 09, 2014 at 01:55:38PM +0200, David Bachelart wrote:
> ccrypt is a utility for encrypting and decrypting files and streams.
> 
> Signed-off-by: David Bachelart <david.bachelart@bbright.com>
> ---
>  package/Config.in        |    1 +
>  package/ccrypt/Config.in |    6 ++++++
>  package/ccrypt/ccrypt.mk |   12 ++++++++++++
>  3 files changed, 19 insertions(+)
>  create mode 100644 package/ccrypt/Config.in
>  create mode 100644 package/ccrypt/ccrypt.mk
> 
> diff --git a/package/Config.in b/package/Config.in
> index f30c25f..c626968 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -1094,6 +1094,7 @@ if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
>  endif
>  comment "Utilities"
>  	source "package/at/Config.in"
> +	source "package/ccrypt/Config.in"
>  	source "package/dialog/Config.in"
>  	source "package/dtach/Config.in"
>  	source "package/file/Config.in"
> diff --git a/package/ccrypt/Config.in b/package/ccrypt/Config.in
> new file mode 100644
> index 0000000..99c4d47
> --- /dev/null
> +++ b/package/ccrypt/Config.in
> @@ -0,0 +1,6 @@
> +config BR2_PACKAGE_CCRYPT
> +        bool "ccrypt"
> +        help
> +          ccrypt is a utility for encrypting and decrypting files and streams.
> +
> +          http://ccrypt.sourceforge.net/
> diff --git a/package/ccrypt/ccrypt.mk b/package/ccrypt/ccrypt.mk
> new file mode 100644
> index 0000000..a32f149
> --- /dev/null
> +++ b/package/ccrypt/ccrypt.mk
> @@ -0,0 +1,12 @@
> +################################################################################
> +#
> +# ccrypt
> +#
> +################################################################################
> +
> +CCRYPT_VERSION = 1.10
> +CCRYPT_SITE = http://ccrypt.sourceforge.net/download/
> +
> +CCRYPT_LICENSE = GPLv2+

CCRYPT_LICENSE_FILES is missing.

> +$(eval $(autotools-package))

baruch

-- 
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

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

* [Buildroot] [PATCH 1/1] ccrypt: new package
  2014-07-09 12:14 ` Baruch Siach
@ 2014-07-09 12:34   ` David Bachelart
  0 siblings, 0 replies; 6+ messages in thread
From: David Bachelart @ 2014-07-09 12:34 UTC (permalink / raw
  To: buildroot

Ok

Thanks !

David


2014-07-09 14:14 GMT+02:00 Baruch Siach <baruch@tkos.co.il>:

> Hi David,
>
> Thanks for following up.
>
> When sending a new version of a patch we usually mark this in the subject
> line
> with [PATCH v2]. You can use the --subject-prefix parameter of 'git
> format-patch' to do this. Something like:
>
>         git format-patch --subject-prefix='PATCH v2' ...
>
> For git version 1.8.2 and later this can be reduced to 'git format-patch
> -v2'
>
> One more comment below.
>
> On Wed, Jul 09, 2014 at 01:55:38PM +0200, David Bachelart wrote:
> > ccrypt is a utility for encrypting and decrypting files and streams.
> >
> > Signed-off-by: David Bachelart <david.bachelart@bbright.com>
> > ---
> >  package/Config.in        |    1 +
> >  package/ccrypt/Config.in |    6 ++++++
> >  package/ccrypt/ccrypt.mk |   12 ++++++++++++
> >  3 files changed, 19 insertions(+)
> >  create mode 100644 package/ccrypt/Config.in
> >  create mode 100644 package/ccrypt/ccrypt.mk
> >
> > diff --git a/package/Config.in b/package/Config.in
> > index f30c25f..c626968 100644
> > --- a/package/Config.in
> > +++ b/package/Config.in
> > @@ -1094,6 +1094,7 @@ if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
> >  endif
> >  comment "Utilities"
> >       source "package/at/Config.in"
> > +     source "package/ccrypt/Config.in"
> >       source "package/dialog/Config.in"
> >       source "package/dtach/Config.in"
> >       source "package/file/Config.in"
> > diff --git a/package/ccrypt/Config.in b/package/ccrypt/Config.in
> > new file mode 100644
> > index 0000000..99c4d47
> > --- /dev/null
> > +++ b/package/ccrypt/Config.in
> > @@ -0,0 +1,6 @@
> > +config BR2_PACKAGE_CCRYPT
> > +        bool "ccrypt"
> > +        help
> > +          ccrypt is a utility for encrypting and decrypting files and
> streams.
> > +
> > +          http://ccrypt.sourceforge.net/
> > diff --git a/package/ccrypt/ccrypt.mk b/package/ccrypt/ccrypt.mk
> > new file mode 100644
> > index 0000000..a32f149
> > --- /dev/null
> > +++ b/package/ccrypt/ccrypt.mk
> > @@ -0,0 +1,12 @@
> >
> +################################################################################
> > +#
> > +# ccrypt
> > +#
> >
> +################################################################################
> > +
> > +CCRYPT_VERSION = 1.10
> > +CCRYPT_SITE = http://ccrypt.sourceforge.net/download/
> > +
> > +CCRYPT_LICENSE = GPLv2+
>
> CCRYPT_LICENSE_FILES is missing.
>
> > +$(eval $(autotools-package))
>
> baruch
>
> --
>      http://baruch.siach.name/blog/                  ~. .~   Tk Open
> Systems
> =}------------------------------------------------ooO--U--Ooo------------{=
>    - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20140709/9a9d4d44/attachment.html>

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

end of thread, other threads:[~2014-07-09 12:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-09 11:55 [Buildroot] [PATCH 1/1] ccrypt: new package David Bachelart
2014-07-09 12:14 ` Baruch Siach
2014-07-09 12:34   ` David Bachelart
  -- strict thread matches above, loose matches on Subject: below --
2014-07-09 10:38 David Bachelart
2014-07-09 11:03 ` Baruch Siach
2014-07-09 11:55   ` David Bachelart

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.