Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/socialsharing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2017-04-26 14:49:27 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2017-04-26 14:50:22 +0300
commitadbeff843a2d6be4719e2b687a1a2ab27ababaac (patch)
tree9897f2298151ea462432b4d137789943e15379a8
parenta6feb3f24976753b2abaac030ef4089fdc1e6321 (diff)
Bump to v1.0.0
Ready for first appstore release. * Bumped to v1.0.0 * Added makefiles * Appstore category is social Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
-rw-r--r--socialsharing_diaspora/Makefile36
-rw-r--r--socialsharing_diaspora/appinfo/info.xml3
-rw-r--r--socialsharing_email/Makefile36
-rw-r--r--socialsharing_email/appinfo/info.xml3
-rw-r--r--socialsharing_facebook/Makefile36
-rw-r--r--socialsharing_facebook/appinfo/info.xml3
-rw-r--r--socialsharing_googleplus/Makefile36
-rw-r--r--socialsharing_googleplus/appinfo/info.xml3
-rw-r--r--socialsharing_twitter/Makefile36
-rw-r--r--socialsharing_twitter/appinfo/info.xml3
10 files changed, 190 insertions, 5 deletions
diff --git a/socialsharing_diaspora/Makefile b/socialsharing_diaspora/Makefile
new file mode 100644
index 0000000..2f5cdf5
--- /dev/null
+++ b/socialsharing_diaspora/Makefile
@@ -0,0 +1,36 @@
+# Makefile for building the project
+
+app_name=socialsharing_diaspora
+project_dir=$(CURDIR)/../$(app_name)
+build_dir=$(CURDIR)/build/artifacts
+sign_dir=$(build_dir)/sign
+appstore_dir=$(build_dir)/appstore
+source_dir=$(build_dir)/source
+package_name=$(app_name)
+cert_dir=$(HOME)/.nextcloud/certificates
+
+appstore:
+ mkdir -p $(sign_dir)
+ rsync -a \
+ --exclude=.git \
+ --exclude=build \
+ --exclude=.gitignore \
+ --exclude=.travis.yml \
+ --exclude=.scrutinizer.yml \
+ --exclude=CONTRIBUTING.md \
+ --exclude=composer.json \
+ --exclude=composer.lock \
+ --exclude=composer.phar \
+ --exclude=l10n/.tx \
+ --exclude=l10n/no-php \
+ --exclude=Makefile \
+ --exclude=nbproject \
+ --exclude=screenshots \
+ --exclude=phpunit*xml \
+ --exclude=tests \
+ --exclude=vendor/bin \
+ $(project_dir) $(sign_dir)
+ @echo "Signing…"
+ tar -czf $(build_dir)/$(app_name).tar.gz \
+ -C $(sign_dir) $(app_name)
+ openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name).tar.gz | openssl base64
diff --git a/socialsharing_diaspora/appinfo/info.xml b/socialsharing_diaspora/appinfo/info.xml
index 6f8e437..33662c2 100644
--- a/socialsharing_diaspora/appinfo/info.xml
+++ b/socialsharing_diaspora/appinfo/info.xml
@@ -7,7 +7,8 @@
<description>
This allows the user to directly share link shares to diaspora
</description>
- <version>0.0.1</version>
+ <version>1.0.0</version>
+ <category>social</category>
<namespace>SocialSharingDiaspora</namespace>
<dependencies>
<nextcloud min-version="12" max-version="12" />
diff --git a/socialsharing_email/Makefile b/socialsharing_email/Makefile
new file mode 100644
index 0000000..70ab068
--- /dev/null
+++ b/socialsharing_email/Makefile
@@ -0,0 +1,36 @@
+# Makefile for building the project
+
+app_name=socialsharing_email
+project_dir=$(CURDIR)/../$(app_name)
+build_dir=$(CURDIR)/build/artifacts
+sign_dir=$(build_dir)/sign
+appstore_dir=$(build_dir)/appstore
+source_dir=$(build_dir)/source
+package_name=$(app_name)
+cert_dir=$(HOME)/.nextcloud/certificates
+
+appstore:
+ mkdir -p $(sign_dir)
+ rsync -a \
+ --exclude=.git \
+ --exclude=build \
+ --exclude=.gitignore \
+ --exclude=.travis.yml \
+ --exclude=.scrutinizer.yml \
+ --exclude=CONTRIBUTING.md \
+ --exclude=composer.json \
+ --exclude=composer.lock \
+ --exclude=composer.phar \
+ --exclude=l10n/.tx \
+ --exclude=l10n/no-php \
+ --exclude=Makefile \
+ --exclude=nbproject \
+ --exclude=screenshots \
+ --exclude=phpunit*xml \
+ --exclude=tests \
+ --exclude=vendor/bin \
+ $(project_dir) $(sign_dir)
+ @echo "Signing…"
+ tar -czf $(build_dir)/$(app_name).tar.gz \
+ -C $(sign_dir) $(app_name)
+ openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name).tar.gz | openssl base64
diff --git a/socialsharing_email/appinfo/info.xml b/socialsharing_email/appinfo/info.xml
index fe144e5..98114be 100644
--- a/socialsharing_email/appinfo/info.xml
+++ b/socialsharing_email/appinfo/info.xml
@@ -7,7 +7,8 @@
<description>
This allows the user to directly share link shares to email.
</description>
- <version>0.0.1</version>
+ <version>1.0.0</version>
+ <category>social</category>
<namespace>SocialSharingEmail</namespace>
<dependencies>
<nextcloud min-version="12" max-version="12" />
diff --git a/socialsharing_facebook/Makefile b/socialsharing_facebook/Makefile
new file mode 100644
index 0000000..60ccd7f
--- /dev/null
+++ b/socialsharing_facebook/Makefile
@@ -0,0 +1,36 @@
+# Makefile for building the project
+
+app_name=socialsharing_facebook
+project_dir=$(CURDIR)/../$(app_name)
+build_dir=$(CURDIR)/build/artifacts
+sign_dir=$(build_dir)/sign
+appstore_dir=$(build_dir)/appstore
+source_dir=$(build_dir)/source
+package_name=$(app_name)
+cert_dir=$(HOME)/.nextcloud/certificates
+
+appstore:
+ mkdir -p $(sign_dir)
+ rsync -a \
+ --exclude=.git \
+ --exclude=build \
+ --exclude=.gitignore \
+ --exclude=.travis.yml \
+ --exclude=.scrutinizer.yml \
+ --exclude=CONTRIBUTING.md \
+ --exclude=composer.json \
+ --exclude=composer.lock \
+ --exclude=composer.phar \
+ --exclude=l10n/.tx \
+ --exclude=l10n/no-php \
+ --exclude=Makefile \
+ --exclude=nbproject \
+ --exclude=screenshots \
+ --exclude=phpunit*xml \
+ --exclude=tests \
+ --exclude=vendor/bin \
+ $(project_dir) $(sign_dir)
+ @echo "Signing…"
+ tar -czf $(build_dir)/$(app_name).tar.gz \
+ -C $(sign_dir) $(app_name)
+ openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name).tar.gz | openssl base64
diff --git a/socialsharing_facebook/appinfo/info.xml b/socialsharing_facebook/appinfo/info.xml
index 0c3c34e..31f9370 100644
--- a/socialsharing_facebook/appinfo/info.xml
+++ b/socialsharing_facebook/appinfo/info.xml
@@ -7,7 +7,8 @@
<description>
This allows the user to directly share link shares to facebook.
</description>
- <version>0.0.1</version>
+ <version>1.0.0</version>
+ <category>social</category>
<namespace>SocialSharingFacebook</namespace>
<dependencies>
<nextcloud min-version="12" max-version="12" />
diff --git a/socialsharing_googleplus/Makefile b/socialsharing_googleplus/Makefile
new file mode 100644
index 0000000..cd03889
--- /dev/null
+++ b/socialsharing_googleplus/Makefile
@@ -0,0 +1,36 @@
+# Makefile for building the project
+
+app_name=socialsharing_googleplus
+project_dir=$(CURDIR)/../$(app_name)
+build_dir=$(CURDIR)/build/artifacts
+sign_dir=$(build_dir)/sign
+appstore_dir=$(build_dir)/appstore
+source_dir=$(build_dir)/source
+package_name=$(app_name)
+cert_dir=$(HOME)/.nextcloud/certificates
+
+appstore:
+ mkdir -p $(sign_dir)
+ rsync -a \
+ --exclude=.git \
+ --exclude=build \
+ --exclude=.gitignore \
+ --exclude=.travis.yml \
+ --exclude=.scrutinizer.yml \
+ --exclude=CONTRIBUTING.md \
+ --exclude=composer.json \
+ --exclude=composer.lock \
+ --exclude=composer.phar \
+ --exclude=l10n/.tx \
+ --exclude=l10n/no-php \
+ --exclude=Makefile \
+ --exclude=nbproject \
+ --exclude=screenshots \
+ --exclude=phpunit*xml \
+ --exclude=tests \
+ --exclude=vendor/bin \
+ $(project_dir) $(sign_dir)
+ @echo "Signing…"
+ tar -czf $(build_dir)/$(app_name).tar.gz \
+ -C $(sign_dir) $(app_name)
+ openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name).tar.gz | openssl base64
diff --git a/socialsharing_googleplus/appinfo/info.xml b/socialsharing_googleplus/appinfo/info.xml
index 6b80e7e..3a3bc5d 100644
--- a/socialsharing_googleplus/appinfo/info.xml
+++ b/socialsharing_googleplus/appinfo/info.xml
@@ -7,7 +7,8 @@
<description>
This allows the user to directly share link shares to google+.
</description>
- <version>0.0.1</version>
+ <version>1.0.0</version>
+ <category>social</category>
<namespace>SocialSharingGooglePlus</namespace>
<dependencies>
<nextcloud min-version="12" max-version="12" />
diff --git a/socialsharing_twitter/Makefile b/socialsharing_twitter/Makefile
new file mode 100644
index 0000000..5783dd9
--- /dev/null
+++ b/socialsharing_twitter/Makefile
@@ -0,0 +1,36 @@
+# Makefile for building the project
+
+app_name=socialsharing_twitter
+project_dir=$(CURDIR)/../$(app_name)
+build_dir=$(CURDIR)/build/artifacts
+sign_dir=$(build_dir)/sign
+appstore_dir=$(build_dir)/appstore
+source_dir=$(build_dir)/source
+package_name=$(app_name)
+cert_dir=$(HOME)/.nextcloud/certificates
+
+appstore:
+ mkdir -p $(sign_dir)
+ rsync -a \
+ --exclude=.git \
+ --exclude=build \
+ --exclude=.gitignore \
+ --exclude=.travis.yml \
+ --exclude=.scrutinizer.yml \
+ --exclude=CONTRIBUTING.md \
+ --exclude=composer.json \
+ --exclude=composer.lock \
+ --exclude=composer.phar \
+ --exclude=l10n/.tx \
+ --exclude=l10n/no-php \
+ --exclude=Makefile \
+ --exclude=nbproject \
+ --exclude=screenshots \
+ --exclude=phpunit*xml \
+ --exclude=tests \
+ --exclude=vendor/bin \
+ $(project_dir) $(sign_dir)
+ @echo "Signing…"
+ tar -czf $(build_dir)/$(app_name).tar.gz \
+ -C $(sign_dir) $(app_name)
+ openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name).tar.gz | openssl base64
diff --git a/socialsharing_twitter/appinfo/info.xml b/socialsharing_twitter/appinfo/info.xml
index 244e23b..524538a 100644
--- a/socialsharing_twitter/appinfo/info.xml
+++ b/socialsharing_twitter/appinfo/info.xml
@@ -7,7 +7,8 @@
<description>
This allows the user to directly share link shares to twitter
</description>
- <version>0.0.1</version>
+ <version>1.0.0</version>
+ <category>social</category>
<namespace>SocialSharingTwitter</namespace>
<dependencies>
<nextcloud min-version="12" max-version="12" />